* [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
@ 2013-09-25 4:22 Milo Kim
2013-12-03 23:27 ` Milo Kim
2013-12-04 10:34 ` Thierry Reding
0 siblings, 2 replies; 8+ messages in thread
From: Milo Kim @ 2013-09-25 4:22 UTC (permalink / raw)
To: Lee Jones, Samuel Ortiz, Thierry Reding
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-pwm-u79uwXL29TY76Z2rM5mHXA, Linus Walleij, Milo Kim
LP3943 is an integrated device capable of driving 16 output channels.
It can be used for GPIO expander and PWM generators.
LP3493 registers are controlled via the I2C interface.
This patch-set consists of four parts - MFD, GPIO, PWM and documents.
Update from v3 to v4:
Move the driver description from the documentation to the MFD driver file.
Milo Kim (4):
mfd: add LP3943 MFD driver
gpio: add LP3943 I2C GPIO expander driver
pwm: add LP3943 PWM driver
Documentation: add LP3943 DT bindings and document
.../devicetree/bindings/gpio/gpio-lp3943.txt | 37 +++
Documentation/devicetree/bindings/mfd/lp3943.txt | 33 ++
.../devicetree/bindings/pwm/pwm-lp3943.txt | 58 ++++
drivers/gpio/Kconfig | 8 +
drivers/gpio/Makefile | 1 +
drivers/gpio/gpio-lp3943.c | 242 +++++++++++++++
drivers/mfd/Kconfig | 11 +
drivers/mfd/Makefile | 1 +
drivers/mfd/lp3943.c | 167 +++++++++++
drivers/pwm/Kconfig | 10 +
drivers/pwm/Makefile | 1 +
drivers/pwm/pwm-lp3943.c | 314 ++++++++++++++++++++
include/linux/mfd/lp3943.h | 114 +++++++
13 files changed, 997 insertions(+)
create mode 100644 Documentation/devicetree/bindings/gpio/gpio-lp3943.txt
create mode 100644 Documentation/devicetree/bindings/mfd/lp3943.txt
create mode 100644 Documentation/devicetree/bindings/pwm/pwm-lp3943.txt
create mode 100644 drivers/gpio/gpio-lp3943.c
create mode 100644 drivers/mfd/lp3943.c
create mode 100644 drivers/pwm/pwm-lp3943.c
create mode 100644 include/linux/mfd/lp3943.h
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
2013-09-25 4:22 [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator Milo Kim
@ 2013-12-03 23:27 ` Milo Kim
2013-12-04 8:05 ` Lee Jones
2013-12-04 10:34 ` Thierry Reding
1 sibling, 1 reply; 8+ messages in thread
From: Milo Kim @ 2013-12-03 23:27 UTC (permalink / raw)
To: Lee Jones, Samuel Ortiz
Cc: Milo Kim, Thierry Reding, linux-kernel, devicetree, linux-pwm,
Linus Walleij
Hello Guys,
Could you check this patchset?
Driver documentation was moved from 'Documentation' to
'drivers/mfd/lp3943.c'.
Thanks,
Milo
On 09/25/2013 01:22 PM, Milo Kim wrote:
> LP3943 is an integrated device capable of driving 16 output channels.
> It can be used for GPIO expander and PWM generators.
> LP3493 registers are controlled via the I2C interface.
>
> This patch-set consists of four parts - MFD, GPIO, PWM and documents.
>
> Update from v3 to v4:
> Move the driver description from the documentation to the MFD driver file.
>
> Milo Kim (4):
> mfd: add LP3943 MFD driver
> gpio: add LP3943 I2C GPIO expander driver
> pwm: add LP3943 PWM driver
> Documentation: add LP3943 DT bindings and document
>
> .../devicetree/bindings/gpio/gpio-lp3943.txt | 37 +++
> Documentation/devicetree/bindings/mfd/lp3943.txt | 33 ++
> .../devicetree/bindings/pwm/pwm-lp3943.txt | 58 ++++
> drivers/gpio/Kconfig | 8 +
> drivers/gpio/Makefile | 1 +
> drivers/gpio/gpio-lp3943.c | 242 +++++++++++++++
> drivers/mfd/Kconfig | 11 +
> drivers/mfd/Makefile | 1 +
> drivers/mfd/lp3943.c | 167 +++++++++++
> drivers/pwm/Kconfig | 10 +
> drivers/pwm/Makefile | 1 +
> drivers/pwm/pwm-lp3943.c | 314 ++++++++++++++++++++
> include/linux/mfd/lp3943.h | 114 +++++++
> 13 files changed, 997 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/gpio/gpio-lp3943.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/lp3943.txt
> create mode 100644 Documentation/devicetree/bindings/pwm/pwm-lp3943.txt
> create mode 100644 drivers/gpio/gpio-lp3943.c
> create mode 100644 drivers/mfd/lp3943.c
> create mode 100644 drivers/pwm/pwm-lp3943.c
> create mode 100644 include/linux/mfd/lp3943.h
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
2013-12-03 23:27 ` Milo Kim
@ 2013-12-04 8:05 ` Lee Jones
0 siblings, 0 replies; 8+ messages in thread
From: Lee Jones @ 2013-12-04 8:05 UTC (permalink / raw)
To: Milo Kim
Cc: Samuel Ortiz, Thierry Reding, linux-kernel, devicetree, linux-pwm,
Linus Walleij
> Could you check this patchset?
> Driver documentation was moved from 'Documentation' to
> 'drivers/mfd/lp3943.c'.
Well because the reset of the patch-set wasn't sent as replies to
[PATCH 0/X], it's now lost in the ulu. You will have to resubmit.
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
2013-09-25 4:22 [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator Milo Kim
2013-12-03 23:27 ` Milo Kim
@ 2013-12-04 10:34 ` Thierry Reding
2013-12-04 10:50 ` Lee Jones
2013-12-05 21:43 ` Mark Brown
1 sibling, 2 replies; 8+ messages in thread
From: Thierry Reding @ 2013-12-04 10:34 UTC (permalink / raw)
To: Milo Kim
Cc: Lee Jones, Samuel Ortiz, linux-kernel, devicetree, linux-pwm,
Linus Walleij
[-- Attachment #1: Type: text/plain, Size: 773 bytes --]
On Wed, Sep 25, 2013 at 01:22:55PM +0900, Milo Kim wrote:
> LP3943 is an integrated device capable of driving 16 output channels.
> It can be used for GPIO expander and PWM generators.
> LP3493 registers are controlled via the I2C interface.
>
> This patch-set consists of four parts - MFD, GPIO, PWM and documents.
>
> Update from v3 to v4:
> Move the driver description from the documentation to the MFD driver file.
>
> Milo Kim (4):
> mfd: add LP3943 MFD driver
> gpio: add LP3943 I2C GPIO expander driver
> pwm: add LP3943 PWM driver
> Documentation: add LP3943 DT bindings and document
I suspect that given the build-time dependencies Lee may want to take
all four patches through the MFD tree, so I've acked the PWM parts.
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
2013-12-04 10:34 ` Thierry Reding
@ 2013-12-04 10:50 ` Lee Jones
2013-12-05 21:43 ` Mark Brown
1 sibling, 0 replies; 8+ messages in thread
From: Lee Jones @ 2013-12-04 10:50 UTC (permalink / raw)
To: Thierry Reding
Cc: Milo Kim, Samuel Ortiz, linux-kernel, devicetree, linux-pwm,
Linus Walleij
> > LP3943 is an integrated device capable of driving 16 output channels.
> > It can be used for GPIO expander and PWM generators.
> > LP3493 registers are controlled via the I2C interface.
> >
> > This patch-set consists of four parts - MFD, GPIO, PWM and documents.
> >
> > Update from v3 to v4:
> > Move the driver description from the documentation to the MFD driver file.
> >
> > Milo Kim (4):
> > mfd: add LP3943 MFD driver
> > gpio: add LP3943 I2C GPIO expander driver
> > pwm: add LP3943 PWM driver
> > Documentation: add LP3943 DT bindings and document
>
> I suspect that given the build-time dependencies Lee may want to take
> all four patches through the MFD tree, so I've acked the PWM parts.
Thanks Thierry.
Milo, would you mind re-sending the patch-set complete with
Thierry's Acks please? Also, can you send [PATCH 1/X]..[PATCH X/X] as
replies to [PATCH 0/X], as it aids greatly with status tracking.
Please see git send-email options:
`--[no-]thread` and `--[no-]chain-reply-to`
For shallow threading, which is what I believe you want, you need:
`--thread --no-chain-reply-to`
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
2013-12-04 10:34 ` Thierry Reding
2013-12-04 10:50 ` Lee Jones
@ 2013-12-05 21:43 ` Mark Brown
2013-12-06 13:24 ` Thierry Reding
1 sibling, 1 reply; 8+ messages in thread
From: Mark Brown @ 2013-12-05 21:43 UTC (permalink / raw)
To: Thierry Reding
Cc: Milo Kim, Lee Jones, Samuel Ortiz, linux-kernel, devicetree,
linux-pwm, Linus Walleij
[-- Attachment #1: Type: text/plain, Size: 653 bytes --]
On Wed, Dec 04, 2013 at 11:34:32AM +0100, Thierry Reding wrote:
> On Wed, Sep 25, 2013 at 01:22:55PM +0900, Milo Kim wrote:
> > mfd: add LP3943 MFD driver
> > gpio: add LP3943 I2C GPIO expander driver
> > pwm: add LP3943 PWM driver
> > Documentation: add LP3943 DT bindings and document
> I suspect that given the build-time dependencies Lee may want to take
> all four patches through the MFD tree, so I've acked the PWM parts.
FWIW this isn't an issue with new MFDs - since the function drivers will
depend on the core driver it's not possible to enable them in Kconfig
until the core driver is also merged and you don't get bisect issues.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
2013-12-05 21:43 ` Mark Brown
@ 2013-12-06 13:24 ` Thierry Reding
2013-12-06 16:24 ` Lee Jones
0 siblings, 1 reply; 8+ messages in thread
From: Thierry Reding @ 2013-12-06 13:24 UTC (permalink / raw)
To: Mark Brown
Cc: Milo Kim, Lee Jones, Samuel Ortiz, linux-kernel, devicetree,
linux-pwm, Linus Walleij
[-- Attachment #1: Type: text/plain, Size: 832 bytes --]
On Thu, Dec 05, 2013 at 09:43:41PM +0000, Mark Brown wrote:
> On Wed, Dec 04, 2013 at 11:34:32AM +0100, Thierry Reding wrote:
> > On Wed, Sep 25, 2013 at 01:22:55PM +0900, Milo Kim wrote:
>
> > > mfd: add LP3943 MFD driver
> > > gpio: add LP3943 I2C GPIO expander driver
> > > pwm: add LP3943 PWM driver
> > > Documentation: add LP3943 DT bindings and document
>
> > I suspect that given the build-time dependencies Lee may want to take
> > all four patches through the MFD tree, so I've acked the PWM parts.
>
> FWIW this isn't an issue with new MFDs - since the function drivers will
> depend on the core driver it's not possible to enable them in Kconfig
> until the core driver is also merged and you don't get bisect issues.
Right. I hadn't thought about that. Thanks for mentioning it.
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator
2013-12-06 13:24 ` Thierry Reding
@ 2013-12-06 16:24 ` Lee Jones
0 siblings, 0 replies; 8+ messages in thread
From: Lee Jones @ 2013-12-06 16:24 UTC (permalink / raw)
To: Thierry Reding
Cc: Mark Brown, Milo Kim, Samuel Ortiz, linux-kernel, devicetree,
linux-pwm, Linus Walleij
On Fri, 06 Dec 2013, Thierry Reding wrote:
> On Thu, Dec 05, 2013 at 09:43:41PM +0000, Mark Brown wrote:
> > On Wed, Dec 04, 2013 at 11:34:32AM +0100, Thierry Reding wrote:
> > > On Wed, Sep 25, 2013 at 01:22:55PM +0900, Milo Kim wrote:
> >
> > > > mfd: add LP3943 MFD driver
> > > > gpio: add LP3943 I2C GPIO expander driver
> > > > pwm: add LP3943 PWM driver
> > > > Documentation: add LP3943 DT bindings and document
> >
> > > I suspect that given the build-time dependencies Lee may want to take
> > > all four patches through the MFD tree, so I've acked the PWM parts.
> >
> > FWIW this isn't an issue with new MFDs - since the function drivers will
> > depend on the core driver it's not possible to enable them in Kconfig
> > until the core driver is also merged and you don't get bisect issues.
>
> Right. I hadn't thought about that. Thanks for mentioning it.
I have applied them all with the relevant Acks in any case.
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-12-06 16:24 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-25 4:22 [PATCH v4 0/4] LP3943 MFD driver for a GPIO expander and a PWM generator Milo Kim
2013-12-03 23:27 ` Milo Kim
2013-12-04 8:05 ` Lee Jones
2013-12-04 10:34 ` Thierry Reding
2013-12-04 10:50 ` Lee Jones
2013-12-05 21:43 ` Mark Brown
2013-12-06 13:24 ` Thierry Reding
2013-12-06 16:24 ` Lee Jones
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).