]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
iio: dac: mcp4725: add missing powerdown bits in store eeprom
authorJean-Francois Dagenais <jeff.dagenais@gmail.com>
Wed, 6 Mar 2019 20:56:06 +0000 (15:56 -0500)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 13 Aug 2019 11:38:42 +0000 (12:38 +0100)
commit 06003531502d06bc89d32528f6ec96bf978790f9 upstream.

When issuing the write DAC register and write eeprom command, the two
powerdown bits (PD0 and PD1) are assumed by the chip to be present in
the bytes sent. Leaving them at 0 implies "powerdown disabled" which is
a different state that the current one. By adding the current state of
the powerdown in the i2c write, the chip will correctly power-on exactly
like as it is at the moment of store_eeprom call.

This is documented in MCP4725's datasheet, FIGURE 6-2: "Write Commands
for DAC Input Register and EEPROM" and MCP4726's datasheet, FIGURE 6-3:
"Write All Memory Command".

Signed-off-by: Jean-Francois Dagenais <jeff.dagenais@gmail.com>
Acked-by: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
[bwh: Backported to 3.16: adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/iio/dac/mcp4725.c

index b4dde8315210c6519c7e2a7db4bd8bf3b6607988..89f695a958e964ea63f1365a5787cccebd01c1fa 100644 (file)
@@ -86,6 +86,7 @@ static ssize_t mcp4725_store_eeprom(struct device *dev,
                return 0;
 
        inoutbuf[0] = 0x60; /* write EEPROM */
+       inoutbuf[0] |= data->powerdown ? ((data->powerdown_mode + 1) << 1) : 0;
        inoutbuf[1] = data->dac_value >> 4;
        inoutbuf[2] = (data->dac_value & 0xf) << 4;