diff options
author | Patrick Williams <alpawi@amazon.com> | 2019-10-01 17:59:59 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2019-11-11 21:38:09 +0100 |
commit | 4d51b4cea21831422614366de4e929701846d801 (patch) | |
tree | dff4b3b8c54c27ed760084ffaa762bbdcd497bfe /drivers/i2c/busses/Kconfig | |
parent | i2c: cros-ec-tunnel: Make the device acpi compatible (diff) | |
download | linux-4d51b4cea21831422614366de4e929701846d801.tar.xz linux-4d51b4cea21831422614366de4e929701846d801.zip |
i2c: pxa: migrate to new i2c_slave APIs
The i2c subsystem was enhanced circa 2015 to support operating as
an i2c-slave device. Prior to that, the i2c-pxa driver supported
an i2c-slave but had its own APIs. There are no existing in-kernel
drivers or platforms that utilize the i2c-pxa APIs.
Migrate the i2c-pxa driver to the general i2c-slave APIs so that
existing drivers, such as the i2c-slave-eeprom, can be used.
This has been tested with a Marvell EspressoBin, using i2c-pxa and
i2c-slave-eeprom, acting as a slave, and a RaspeberryPi 3, using the
at24 driver, acting as a master.
Signed-off-by: Patrick Williams <alpawi@amazon.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/Kconfig')
-rw-r--r-- | drivers/i2c/busses/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index 89cb8d7c4853..45ca099e7315 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig @@ -875,6 +875,7 @@ config I2C_PXA_PCI config I2C_PXA_SLAVE bool "Intel PXA2XX I2C Slave comms support" depends on I2C_PXA && !X86_32 + select I2C_SLAVE help Support I2C slave mode communications on the PXA I2C bus. This is necessary for systems where the PXA may be a target on the |