linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv4 0/4] Initial support for TPS65912 PMIC
@ 2011-05-16 23:02 Margarita Olaya
  2011-05-19 18:51 ` Margarita Olaya
  0 siblings, 1 reply; 4+ messages in thread
From: Margarita Olaya @ 2011-05-16 23:02 UTC (permalink / raw)
  To: linux-kernel; +Cc: Liam Girdwood, Mark Brown, sameo

Hi,

This is the initial version of the TPS65912 PMIC, a power management IC
for multimedia products.

The tps65912 consists of 4 DCDCs and 10 LDOs, that are able to supply
voltage to main processor and other components. The chip includes a
GPIO module.

Changes from V3:
- split core driver into tps65912-spi and tps65912-i2c
- create new function in regulator with common code in set/get mode

Margarita Olaya Cabrera (4):
  mfd: tps65912: Add new mfd device
  tps65912: irq: add interrupt controller
  tps65912: gpio: add gpio driver
  tps65912: add regulator driver

 drivers/gpio/Kconfig                   |    6 +
 drivers/gpio/Makefile                  |    1 +
 drivers/gpio/tps65912-gpio.c           |  159 +++++++
 drivers/mfd/Kconfig                    |   22 +
 drivers/mfd/Makefile                   |    4 +
 drivers/mfd/tps65912-core.c            |  177 +++++++
 drivers/mfd/tps65912-i2c.c             |  139 ++++++
 drivers/mfd/tps65912-irq.c             |  225 +++++++++
 drivers/mfd/tps65912-spi.c             |  142 ++++++
 drivers/regulator/Kconfig              |    6 +
 drivers/regulator/Makefile             |    1 +
 drivers/regulator/tps65912-regulator.c |  800 ++++++++++++++++++++++++++++++++
 include/linux/mfd/tps65912.h           |  327 +++++++++++++
 13 files changed, 2009 insertions(+), 0 deletions(-)
 create mode 100644 drivers/gpio/tps65912-gpio.c
 create mode 100644 drivers/mfd/tps65912-core.c
 create mode 100644 drivers/mfd/tps65912-i2c.c
 create mode 100644 drivers/mfd/tps65912-irq.c
 create mode 100644 drivers/mfd/tps65912-spi.c
 create mode 100644 drivers/regulator/tps65912-regulator.c
 create mode 100644 include/linux/mfd/tps65912.h

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

* Re: [PATCHv4 0/4] Initial support for TPS65912 PMIC
  2011-05-16 23:02 [PATCHv4 0/4] Initial support for TPS65912 PMIC Margarita Olaya
@ 2011-05-19 18:51 ` Margarita Olaya
  2011-05-21 10:53   ` Liam Girdwood
  0 siblings, 1 reply; 4+ messages in thread
From: Margarita Olaya @ 2011-05-19 18:51 UTC (permalink / raw)
  To: linux-kernel; +Cc: Liam Girdwood, Mark Brown, sameo, grant.likely

Hi,

On Mon, May 16, 2011 at 6:02 PM, Margarita Olaya <magi@slimlogic.co.uk> wrote:
> Hi,
>
> This is the initial version of the TPS65912 PMIC, a power management IC
> for multimedia products.
>
> The tps65912 consists of 4 DCDCs and 10 LDOs, that are able to supply
> voltage to main processor and other components. The chip includes a
> GPIO module.
>
> Changes from V3:
> - split core driver into tps65912-spi and tps65912-i2c
> - create new function in regulator with common code in set/get mode
>

Do you have any comments on this version of the driver? Please let me know them.

Regards,
Margarita

> Margarita Olaya Cabrera (4):
>  mfd: tps65912: Add new mfd device
>  tps65912: irq: add interrupt controller
>  tps65912: gpio: add gpio driver
>  tps65912: add regulator driver
>
>  drivers/gpio/Kconfig                   |    6 +
>  drivers/gpio/Makefile                  |    1 +
>  drivers/gpio/tps65912-gpio.c           |  159 +++++++
>  drivers/mfd/Kconfig                    |   22 +
>  drivers/mfd/Makefile                   |    4 +
>  drivers/mfd/tps65912-core.c            |  177 +++++++
>  drivers/mfd/tps65912-i2c.c             |  139 ++++++
>  drivers/mfd/tps65912-irq.c             |  225 +++++++++
>  drivers/mfd/tps65912-spi.c             |  142 ++++++
>  drivers/regulator/Kconfig              |    6 +
>  drivers/regulator/Makefile             |    1 +
>  drivers/regulator/tps65912-regulator.c |  800 ++++++++++++++++++++++++++++++++
>  include/linux/mfd/tps65912.h           |  327 +++++++++++++
>  13 files changed, 2009 insertions(+), 0 deletions(-)
>  create mode 100644 drivers/gpio/tps65912-gpio.c
>  create mode 100644 drivers/mfd/tps65912-core.c
>  create mode 100644 drivers/mfd/tps65912-i2c.c
>  create mode 100644 drivers/mfd/tps65912-irq.c
>  create mode 100644 drivers/mfd/tps65912-spi.c
>  create mode 100644 drivers/regulator/tps65912-regulator.c
>  create mode 100644 include/linux/mfd/tps65912.h
>

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

* Re: [PATCHv4 0/4] Initial support for TPS65912 PMIC
  2011-05-19 18:51 ` Margarita Olaya
@ 2011-05-21 10:53   ` Liam Girdwood
  2011-05-22 20:37     ` Samuel Ortiz
  0 siblings, 1 reply; 4+ messages in thread
From: Liam Girdwood @ 2011-05-21 10:53 UTC (permalink / raw)
  To: Grant Likely, Samuel Ortiz; +Cc: linux-kernel, Mark Brown, Margarita Olaya

On Thu, 2011-05-19 at 13:51 -0500, Margarita Olaya wrote:
> Hi,
> 
> On Mon, May 16, 2011 at 6:02 PM, Margarita Olaya <magi@slimlogic.co.uk> wrote:
> > Hi,
> >
> > This is the initial version of the TPS65912 PMIC, a power management IC
> > for multimedia products.
> >
> > The tps65912 consists of 4 DCDCs and 10 LDOs, that are able to supply
> > voltage to main processor and other components. The chip includes a
> > GPIO module.
> >
> > Changes from V3:
> > - split core driver into tps65912-spi and tps65912-i2c
> > - create new function in regulator with common code in set/get mode
> >
> 
> Do you have any comments on this version of the driver? Please let me know them.
> 

Grant, Samuel,  If the mfd/gpio sections are fine with you I can take
via regulator. I plan to do the regulator pull request on Monday or
Tuesday.

Thanks !

Liam


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

* Re: [PATCHv4 0/4] Initial support for TPS65912 PMIC
  2011-05-21 10:53   ` Liam Girdwood
@ 2011-05-22 20:37     ` Samuel Ortiz
  0 siblings, 0 replies; 4+ messages in thread
From: Samuel Ortiz @ 2011-05-22 20:37 UTC (permalink / raw)
  To: Liam Girdwood; +Cc: Grant Likely, linux-kernel, Mark Brown, Margarita Olaya

Hi Liam,

On Sat, May 21, 2011 at 11:53:17AM +0100, Liam Girdwood wrote:
> On Thu, 2011-05-19 at 13:51 -0500, Margarita Olaya wrote:
> > Hi,
> > 
> > On Mon, May 16, 2011 at 6:02 PM, Margarita Olaya <magi@slimlogic.co.uk> wrote:
> > > Hi,
> > >
> > > This is the initial version of the TPS65912 PMIC, a power management IC
> > > for multimedia products.
> > >
> > > The tps65912 consists of 4 DCDCs and 10 LDOs, that are able to supply
> > > voltage to main processor and other components. The chip includes a
> > > GPIO module.
> > >
> > > Changes from V3:
> > > - split core driver into tps65912-spi and tps65912-i2c
> > > - create new function in regulator with common code in set/get mode
> > >
> > 
> > Do you have any comments on this version of the driver? Please let me know them.
> > 
> 
> Grant, Samuel,  If the mfd/gpio sections are fine with you I can take
> via regulator. I plan to do the regulator pull request on Monday or
> Tuesday.
I'm fine with it. Please add my:
Acked-by: Samuel Ortiz <sameo@linux.intel.com>

to patches #1 and #2 of this serie. Thanks for taking it.

Cheers,
Samuel.


> Thanks !
> 
> Liam
> 

-- 
Intel Open Source Technology Centre
http://oss.intel.com/

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

end of thread, other threads:[~2011-05-22 20:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-16 23:02 [PATCHv4 0/4] Initial support for TPS65912 PMIC Margarita Olaya
2011-05-19 18:51 ` Margarita Olaya
2011-05-21 10:53   ` Liam Girdwood
2011-05-22 20:37     ` Samuel Ortiz

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