public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCHv5 0/4]Initial support for TPS65912 PMIC
@ 2011-06-09 19:49 Margarita Olaya
  2011-06-13 21:56 ` Margarita Olaya
  2011-06-20 13:46 ` Samuel Ortiz
  0 siblings, 2 replies; 4+ messages in thread
From: Margarita Olaya @ 2011-06-09 19:49 UTC (permalink / raw)
  To: linux-kernel; +Cc: sameo, Graeme Gregory, grant.likely, Girdwood, Liam

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 v4:
- Rename tps65912-gpio.c as gpio-tps65912.c
- Update the gpio makefile using the new name
- Keep alphabetic order in Kconfig
- Add base and ngpio to template_chip struct

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/gpio-tps65912.c           |  156 +++++++
 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, 2006 insertions(+), 0 deletions(-)
 create mode 100644 drivers/gpio/gpio-tps65912.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: [PATCHv5 0/4]Initial support for TPS65912 PMIC
  2011-06-09 19:49 [PATCHv5 0/4]Initial support for TPS65912 PMIC Margarita Olaya
@ 2011-06-13 21:56 ` Margarita Olaya
  2011-06-14  8:01   ` Samuel Ortiz
  2011-06-20 13:46 ` Samuel Ortiz
  1 sibling, 1 reply; 4+ messages in thread
From: Margarita Olaya @ 2011-06-13 21:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: sameo, Graeme Gregory, grant.likely, Girdwood, Liam

Hi Samuel,

On Thu, Jun 9, 2011 at 2:49 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.
>

All the patches have the ack, are you going to take them via MFD tree?

Thanks,
Margarita

> Changes from v4:
> - Rename tps65912-gpio.c as gpio-tps65912.c
> - Update the gpio makefile using the new name
> - Keep alphabetic order in Kconfig
> - Add base and ngpio to template_chip struct
>
> 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/gpio-tps65912.c           |  156 +++++++
>  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, 2006 insertions(+), 0 deletions(-)
>  create mode 100644 drivers/gpio/gpio-tps65912.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: [PATCHv5 0/4]Initial support for TPS65912 PMIC
  2011-06-13 21:56 ` Margarita Olaya
@ 2011-06-14  8:01   ` Samuel Ortiz
  0 siblings, 0 replies; 4+ messages in thread
From: Samuel Ortiz @ 2011-06-14  8:01 UTC (permalink / raw)
  To: Margarita Olaya
  Cc: linux-kernel, Graeme Gregory, grant.likely, Girdwood, Liam

Hi Margarita,

On Mon, Jun 13, 2011 at 04:56:54PM -0500, Margarita Olaya wrote:
> Hi Samuel,
> 
> On Thu, Jun 9, 2011 at 2:49 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.
> >
> 
> All the patches have the ack, are you going to take them via MFD tree?
I will, no worries. I haven't found time to go through my MFD backlog yet.

Cheers,
Samuel.

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

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

* Re: [PATCHv5 0/4]Initial support for TPS65912 PMIC
  2011-06-09 19:49 [PATCHv5 0/4]Initial support for TPS65912 PMIC Margarita Olaya
  2011-06-13 21:56 ` Margarita Olaya
@ 2011-06-20 13:46 ` Samuel Ortiz
  1 sibling, 0 replies; 4+ messages in thread
From: Samuel Ortiz @ 2011-06-20 13:46 UTC (permalink / raw)
  To: Margarita Olaya
  Cc: linux-kernel, Graeme Gregory, grant.likely, Girdwood, Liam

Hi Margarita,

On Thu, Jun 09, 2011 at 02:49:47PM -0500, Margarita Olaya 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.
All 4 patches applied, after some trivial whitespace fixing. Thanks a lot.

Cheers,
Samuel.

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

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

end of thread, other threads:[~2011-06-20 13:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-09 19:49 [PATCHv5 0/4]Initial support for TPS65912 PMIC Margarita Olaya
2011-06-13 21:56 ` Margarita Olaya
2011-06-14  8:01   ` Samuel Ortiz
2011-06-20 13:46 ` Samuel Ortiz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox