linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/5] Add Intel LJCA device driver
@ 2023-02-28  6:56 Ye Xiang
  2023-02-28  6:56 ` [PATCH v3 1/5] mfd: Add support for Intel LJCA device Ye Xiang
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Ye Xiang @ 2023-02-28  6:56 UTC (permalink / raw)
  To: Lee Jones, Wolfram Sang, Tyrone Ting, Mark Brown, Linus Walleij,
	Bartosz Golaszewski, linux-i2c, linux-kernel, linux-spi,
	linux-gpio
  Cc: srinivas.pandruvada, heikki.krogerus, andriy.shevchenko,
	sakari.ailus, zhifeng.wang, wentong.wu, lixu.zhang, Ye Xiang

Add driver for Intel La Jolla Cove Adapter (LJCA) device.
This is a USB-GPIO, USB-I2C and USB-SPI device. We add 4
drivers to support this device: a USB driver, a GPIO chip
driver, a I2C controller driver and a SPI controller driver.

---
v3:
 - spi: make ljca_spi_transfer inline and fix an endian issue.

v2:
 - ljca: remove reset command.
 - gpio/spi/i2c: add `default MFD_LJCA` in Kconfig.
 - gpio: add "select GPIOLIB_IRQCHIP" in Kconfig.

Ye Xiang (5):
  mfd: Add support for Intel LJCA device
  gpio: Add support for Intel LJCA USB GPIO driver
  i2c: Add support for Intel LJCA USB I2C driver
  spi: Add support for Intel LJCA USB SPI driver
  Documentation: Add ABI doc for attributes of LJCA device

 .../ABI/testing/sysfs-bus-usb-devices-ljca    |  22 +
 drivers/gpio/Kconfig                          |  12 +
 drivers/gpio/Makefile                         |   1 +
 drivers/gpio/gpio-ljca.c                      | 454 ++++++++
 drivers/i2c/busses/Kconfig                    |  11 +
 drivers/i2c/busses/Makefile                   |   1 +
 drivers/i2c/busses/i2c-ljca.c                 | 357 +++++++
 drivers/mfd/Kconfig                           |  13 +
 drivers/mfd/Makefile                          |   1 +
 drivers/mfd/ljca.c                            | 969 ++++++++++++++++++
 drivers/spi/Kconfig                           |  11 +
 drivers/spi/Makefile                          |   1 +
 drivers/spi/spi-ljca.c                        | 291 ++++++
 include/linux/mfd/ljca.h                      |  95 ++
 14 files changed, 2239 insertions(+)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-usb-devices-ljca
 create mode 100644 drivers/gpio/gpio-ljca.c
 create mode 100644 drivers/i2c/busses/i2c-ljca.c
 create mode 100644 drivers/mfd/ljca.c
 create mode 100644 drivers/spi/spi-ljca.c
 create mode 100644 include/linux/mfd/ljca.h

-- 
2.34.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-03-06 14:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-28  6:56 [PATCH v3 0/5] Add Intel LJCA device driver Ye Xiang
2023-02-28  6:56 ` [PATCH v3 1/5] mfd: Add support for Intel LJCA device Ye Xiang
2023-02-28  6:56 ` [PATCH v3 2/5] gpio: Add support for Intel LJCA USB GPIO driver Ye Xiang
2023-03-06 14:22   ` Linus Walleij
2023-02-28  6:56 ` [PATCH v3 3/5] i2c: Add support for Intel LJCA USB I2C driver Ye Xiang
2023-02-28  6:56 ` [PATCH v3 4/5] spi: Add support for Intel LJCA USB SPI driver Ye Xiang
2023-02-28  6:56 ` [PATCH v3 5/5] Documentation: Add ABI doc for attributes of LJCA device Ye Xiang
2023-03-01  3:10   ` kernel test robot
2023-03-01 20:44 ` [PATCH v3 0/5] Add Intel LJCA device driver Sakari Ailus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).