From: Lukas Wunner <lukas@wunner.de>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Mathias Duckeck <m.duckeck@kunbus.de>,
Phil Elwell <phil@raspberrypi.org>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Jonathan Cameron <jic23@kernel.org>,
Rojhalat Ibrahim <imr@rtschenk.de>,
Bart Van Assche <bart.vanassche@wdc.com>,
Alasdair Kergon <agk@redhat.com>,
Mike Snitzer <snitzer@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>,
Neil Brown <neilb@suse.com>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>, Theodore Ts'o <tytso@mit.edu>,
Borislav Petkov <bp@alien8.de>, "H. Peter Anvin" <hpa@zytor.com>,
Denys Vlasenko <dvlasenk@redhat.com>,
linux-kernel@vger.kernel.org
Subject: [PATCH v2 0/5] GPIO driver for Maxim MAX3191x
Date: Thu, 12 Oct 2017 12:40:10 +0200 [thread overview]
Message-ID: <cover.1507797496.git.lukas@wunner.de> (raw)
GPIO driver for Maxim MAX31910, MAX31911, MAX31912, MAX31913,
MAX31953 and MAX31963 industrial serializer, a daisy-chainable
chip to make 8 digital 24V inputs available via SPI. Supports
CRC checksums to guard against electromagnetic interference,
as well as undervoltage and overtemperature detection.
The chip is used by the "Revolution Pi" family of open source PLCs
based on the Raspberry Pi (https://revolution.kunbus.com/).
In a typical SCADA system, all input signals are read periodically,
say, every 5 or 10 ms, and stored in a so-called "process image".
To make this perform well with serializers, add a ->get_multiple
callback to struct gpio_chip, add corresponding consumer functions
and wire it up with linehandle_ioctl().
Changes v1 -> v2:
- Patch [1/5]: Change the argument order of assign_bit() to reflect
traditional "dst = src" in C. (Peter Zijlstra)
- Patch [2/5]: Update documentation. (Linus Walleij)
Drop const qualifier from struct gpio_desc ** in all function
signatures to avoid a cast when passing a non-const array created
with gpiod_get_array(), which is likely the most common use case.
- Patch [3/5]: Newly inserted patch to introduce common property for
number of daisy-chained devices.
- Patch [4/5]: Add vendor prefix to GPIO identifiers, use boolean
instead of integer to select mode, rename boolean to ignore
undervoltage alarms, separate compatible strings with newlines.
(Rob Herring)
- Patch [5/5]: Optimize algorithm in max3191x_get_multiple() to
iterate over the bits in the mask, instead of iterating over every
chip, thus implicitly skipping chips which are not selected at all
by the mask.
Support configurations where all chips in a daisy-chain share the
same modesel, fault or debounce pin.
Verify that the number of db0 and db1 GPIOs specified in the DT is
identical.
Link to v1:
https://www.spinics.net/lists/linux-gpio/msg25067.html
Thanks,
Lukas
Lukas Wunner (5):
bitops: Introduce assign_bit()
gpio: Introduce ->get_multiple callback
dt-bindings: Document common property for daisy-chained devices
dt-bindings: gpio: max3191x: Document new driver
gpio: Add driver for Maxim MAX3191x industrial serializer
.../devicetree/bindings/common-properties.txt | 26 ++
.../devicetree/bindings/gpio/gpio-max3191x.txt | 59 +++
Documentation/gpio/consumer.txt | 41 +-
drivers/gpio/Kconfig | 10 +
drivers/gpio/Makefile | 1 +
drivers/gpio/gpio-max3191x.c | 492 +++++++++++++++++++++
drivers/gpio/gpiolib.c | 179 +++++++-
drivers/gpio/gpiolib.h | 4 +
drivers/md/dm-mpath.c | 22 +-
include/linux/bitops.h | 24 +
include/linux/gpio/consumer.h | 43 ++
include/linux/gpio/driver.h | 5 +
12 files changed, 869 insertions(+), 37 deletions(-)
create mode 100644 Documentation/devicetree/bindings/gpio/gpio-max3191x.txt
create mode 100644 drivers/gpio/gpio-max3191x.c
--
2.11.0
next reply other threads:[~2017-10-12 10:40 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-12 10:40 Lukas Wunner [this message]
2017-10-12 10:40 ` [PATCH v2 1/5] bitops: Introduce assign_bit() Lukas Wunner
2017-10-12 18:30 ` Andrew Morton
2017-10-13 12:44 ` Linus Walleij
2017-10-12 10:40 ` [PATCH v2 2/5] gpio: Introduce ->get_multiple callback Lukas Wunner
2017-10-13 12:46 ` Linus Walleij
[not found] ` <cover.1507797496.git.lukas-JFq808J9C/izQB+pC5nmwQ@public.gmane.org>
2017-10-12 10:40 ` [PATCH v2 5/5] gpio: Add driver for Maxim MAX3191x industrial serializer Lukas Wunner
2017-10-13 11:11 ` Lukas Wunner
2017-10-13 16:53 ` David Daney
2017-10-13 21:29 ` Lukas Wunner
2017-10-13 22:12 ` David Daney
2017-10-14 11:24 ` Lukas Wunner
2017-10-19 20:41 ` Linus Walleij
2017-10-12 10:40 ` [PATCH v2 4/5] dt-bindings: gpio: max3191x: Document new driver Lukas Wunner
2017-10-17 20:30 ` Rob Herring
[not found] ` <57660f421f2080914940806394a9365ac959f5a8.1507797496.git.lukas-JFq808J9C/izQB+pC5nmwQ@public.gmane.org>
2017-10-19 20:36 ` Linus Walleij
2017-10-12 10:40 ` [PATCH v2 3/5] dt-bindings: Document common property for daisy-chained devices Lukas Wunner
[not found] ` <f0c3b0c5514f74717c5783360b60062dfe9b8c0f.1507797496.git.lukas-JFq808J9C/izQB+pC5nmwQ@public.gmane.org>
2017-10-15 11:30 ` Jonathan Cameron
2017-10-17 20:32 ` Rob Herring
2017-10-19 20:35 ` Linus Walleij
2017-10-13 12:48 ` [PATCH v2 0/5] GPIO driver for Maxim MAX3191x Linus Walleij
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1507797496.git.lukas@wunner.de \
--to=lukas@wunner.de \
--cc=agk@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=bart.vanassche@wdc.com \
--cc=bp@alien8.de \
--cc=devicetree@vger.kernel.org \
--cc=dvlasenk@redhat.com \
--cc=hpa@zytor.com \
--cc=imr@rtschenk.de \
--cc=jic23@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=m.duckeck@kunbus.de \
--cc=mark.rutland@arm.com \
--cc=mingo@redhat.com \
--cc=neilb@suse.com \
--cc=peterz@infradead.org \
--cc=phil@raspberrypi.org \
--cc=robh+dt@kernel.org \
--cc=snitzer@redhat.com \
--cc=tytso@mit.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).