hwmon: (adt7410) Add support for the adt7310/adt7320
authorLars-Peter Clausen <lars@metafoo.de>
Tue, 12 Mar 2013 10:38:46 +0000 (11:38 +0100)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 8 Apr 2013 04:16:38 +0000 (21:16 -0700)
commit51c2a4871c1b47255ff8d74f0a86b2a0defff319
tree151e26fe0ff76d26dc69eb55d3f15562d598ea72
parentc55dc91e92bdf21427dd8f5ad779ed9d63caacbd
hwmon: (adt7410) Add support for the adt7310/adt7320

The adt7310/adt7320 is the SPI version of the adt7410/adt7420. The register map
layout is a bit different, i.e. the register addresses differ between the two
variants, but the bit layouts of the individual registers are identical. So both
chip variants can easily be supported by the same driver. The issue of non
matching register address layouts is solved by a simple look-up table which
translates the I2C addresses to the SPI addresses.

The patch moves the bulk of the adt7410 driver to a common module that will be
shared by the adt7410 and adt7310 drivers. This common module implements the
driver logic and uses a set of virtual functions to perform IO access. The
adt7410 and adt7310 driver modules provide proper implementations of these IO
accessor functions for I2C respective SPI.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Reviewed-by: Hartmut Knaack <knaack.h@gmx.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Documentation/hwmon/adt7410
drivers/hwmon/Kconfig
drivers/hwmon/Makefile
drivers/hwmon/adt7310.c [new file with mode: 0644]
drivers/hwmon/adt7410.c
drivers/hwmon/adt7x10.c [new file with mode: 0644]
drivers/hwmon/adt7x10.h [new file with mode: 0644]