linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/4] mfd: add support for Diolan DLN-2
@ 2014-09-25 16:07 Octavian Purdila
  2014-09-25 16:07 ` [PATCH v6 1/4] mfd: add support for Diolan DLN-2 devices Octavian Purdila
                   ` (3 more replies)
  0 siblings, 4 replies; 23+ messages in thread
From: Octavian Purdila @ 2014-09-25 16:07 UTC (permalink / raw)
  To: gregkh, linus.walleij, gnurou, wsa, sameo, lee.jones
  Cc: arnd, johan, daniel.baluta, laurentiu.palcu, linux-usb,
	linux-kernel, linux-gpio, linux-i2c, Octavian Purdila

This patch series adds support for Diolan USB-I2C/GPIO Master Adapter
DLN-2. Details about device can be found here:

https://www.diolan.com/i2c/i2c_interface.html.

Changes since v5:

* MFD: use enum for handles, fix a couple of miss spells, rename a few
  fields for clarity, rework the disconnect mechanism, fix a couple of
  missing newlines in printks, use straight list_for_each instead of
  RCU versions in the update sides, used busnum << 8 | devnum as id in
  mfd_add_devices()

* GPIO: renamed pin_dir to output_enabled, disable GPIO if we failed
  getting the direction, don't set platform's driver owner field

* I2C: update Documentation/ABI for the added sysfs attributed, stored
  the port number in the dln2_i2c structure, used a temporary pointer
  to the tx/rx struct for readability, don't set platform's driver
  owner field

Daniel Baluta (1):
  gpio: add support for the Diolan DLN-2 USB GPIO driver

Laurentiu Palcu (1):
  i2c: add support for Diolan DLN-2 USB-I2C adapter

Octavian Purdila (2):
  mfd: add support for Diolan DLN-2 devices
  gpiolib: add irq_not_threaded flag to gpio_chip

 .../ABI/testing/sysfs-bus-i2c-busses-dln2          |   5 +
 drivers/gpio/Kconfig                               |  12 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/gpio-dln2.c                           | 556 +++++++++++++++
 drivers/gpio/gpiolib.c                             |   2 +-
 drivers/i2c/busses/Kconfig                         |  10 +
 drivers/i2c/busses/Makefile                        |   1 +
 drivers/i2c/busses/i2c-dln2.c                      | 378 +++++++++++
 drivers/mfd/Kconfig                                |   9 +
 drivers/mfd/Makefile                               |   1 +
 drivers/mfd/dln2.c                                 | 752 +++++++++++++++++++++
 include/linux/gpio/driver.h                        |   3 +
 include/linux/mfd/dln2.h                           |  67 ++
 13 files changed, 1796 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-i2c-busses-dln2
 create mode 100644 drivers/gpio/gpio-dln2.c
 create mode 100644 drivers/i2c/busses/i2c-dln2.c
 create mode 100644 drivers/mfd/dln2.c
 create mode 100644 include/linux/mfd/dln2.h

-- 
1.9.1


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

end of thread, other threads:[~2014-10-09 13:16 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-25 16:07 [PATCH v6 0/4] mfd: add support for Diolan DLN-2 Octavian Purdila
2014-09-25 16:07 ` [PATCH v6 1/4] mfd: add support for Diolan DLN-2 devices Octavian Purdila
     [not found]   ` <1411661254-5204-2-git-send-email-octavian.purdila-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-03 17:12     ` Johan Hovold
2014-10-06 12:17       ` Octavian Purdila
2014-10-07 17:10         ` Johan Hovold
2014-10-07 18:01           ` Octavian Purdila
2014-10-08  9:30             ` Johan Hovold
2014-10-08  9:23   ` Johan Hovold
2014-10-08 10:54     ` Octavian Purdila
     [not found]       ` <CAE1zotKHq1Fj_AqKzfnBHoypetb6Yz3OsHnqfeHN5PrVJtuHVw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-10-08 12:04         ` Johan Hovold
2014-10-08 12:33           ` Octavian Purdila
     [not found]             ` <CAE1zot+muJn5ngxpq8LeF9J+7kZqCiStzvcxLLP0wf08TjWG4A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-10-09 13:16               ` Johan Hovold
     [not found] ` <1411661254-5204-1-git-send-email-octavian.purdila-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-09-25 16:07   ` [PATCH v6 2/4] i2c: add support for Diolan DLN-2 USB-I2C adapter Octavian Purdila
     [not found]     ` <1411661254-5204-3-git-send-email-octavian.purdila-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-03  1:14       ` Wolfram Sang
2014-10-03 12:30         ` Octavian Purdila
2014-10-07 16:46       ` Johan Hovold
2014-10-07 17:52         ` Octavian Purdila
     [not found]           ` <CAE1zotKiYGXDbE0yVOz1ROuTxMf_Sfpn-0ghOM1dLEu1oEGZuw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-10-07 17:55             ` Johan Hovold
2014-10-08 10:42     ` Johan Hovold
2014-10-08 11:07       ` Octavian Purdila
2014-09-25 16:07 ` [PATCH v6 3/4] gpiolib: add irq_not_threaded flag to gpio_chip Octavian Purdila
2014-09-25 16:07 ` [PATCH v6 4/4] gpio: add support for the Diolan DLN-2 USB GPIO driver Octavian Purdila
     [not found]   ` <1411661254-5204-5-git-send-email-octavian.purdila-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-07 16:56     ` Johan Hovold

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).