tristate "Analog Devices AD5446 and similar single channel DACs driver"
        depends on SPI
        help
-         Say yes here to build support for Analog Devices AD5444, AD5446,
-         AD5512A, AD5541A, AD5542A, AD5543, AD5553, AD5601, AD5611, AD5620,
-         AD5621, AD5640, AD5660, AD5662 DACs.
+         Say yes here to build support for Analog Devices AD5444, AD5446, AD5450,
+         AD5451, AD5452, AD5453, AD5512A, AD5541A, AD5542A, AD5543, AD5553, AD5601,
+         AD5611, AD5620, AD5621, AD5640, AD5660, AD5662 DACs.
 
          To compile this driver as a module, choose M here: the
          module will be called ad5446.
 
                .channel = AD5446_CHANNEL(14, 16, 0),
                .write = ad5446_write,
        },
+       [ID_AD5450] = {
+               .channel = AD5446_CHANNEL(8, 16, 6),
+               .write = ad5446_write,
+       },
+       [ID_AD5451] = {
+               .channel = AD5446_CHANNEL(10, 16, 4),
+               .write = ad5446_write,
+       },
        [ID_AD5541A] = {
                .channel = AD5446_CHANNEL(16, 16, 0),
                .write = ad5446_write,
 static const struct spi_device_id ad5446_id[] = {
        {"ad5444", ID_AD5444},
        {"ad5446", ID_AD5446},
+       {"ad5450", ID_AD5450},
+       {"ad5451", ID_AD5451},
+       {"ad5452", ID_AD5444}, /* ad5452 is compatible to the ad5444 */
+       {"ad5453", ID_AD5446}, /* ad5453 is compatible to the ad5446 */
        {"ad5512a", ID_AD5512A},
        {"ad5541a", ID_AD5541A},
        {"ad5542a", ID_AD5541A}, /* ad5541a and ad5542a are compatible */