public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ian Lartey <ian@slimlogic.co.uk>
To: Ian Lartey <ian@slimlogic.co.uk>
Cc: linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux-leds@vger.kernel.org,
	linux-watchdog@vger.kernel.org, swarren@wwwdotorg.org,
	grant.likely@secretlab.ca, broonie@opensource.wolfsonmicro.com,
	rob.herring@calxeda.com, rob@landley.net, mturquette@linaro.org,
	linus.walleij@linaro.org, cooloney@gmail.com, rpurdie@rpsys.net,
	sameo@linux.intel.com, wim@iguana.be, lgirdwood@gmail.com,
	gg@slimlogic.co.uk, j-keerthy@ti.com, ldewangan@nvidia.com,
	t-kristo@ti.com
Subject: [PATCH v8 0/12] Palmas Updates
Date: Thu, 07 Mar 2013 13:23:47 +0000	[thread overview]
Message-ID: <513894E3.1070206@slimlogic.co.uk> (raw)
In-Reply-To: <1362662276-20792-1-git-send-email-ian@slimlogic.co.uk>

This patchset adds to the support for the Palmas iseries of PMIC chips.

Some of the patches have previously been submitted individually.
The DT bindings doc has been added first due to comments that it was 
missing.

Patches based on linux-next-20130306

mfd: DT bindings for the palmas family MFD
mfd: palmas: is_palmas_charger needed by multiple driv
mfd: palmas add variant and OTP detection
regulator: palmas correct dt parsing
watchdog: add Palmas Watchdog support
watchdog: Kconfig for Palmas watchdog
gpio: palmas: add in GPIO support for palmas charger
gpio: palmas: Enable DT support for palmas gpio
leds: Add support for Palmas LEDs
leds: Kconfig for Palmas LEDs
clk: add a clock driver for palmas
clk: Kconfig for Palmas clock driver

  .../devicetree/bindings/clock/palmas-clk.txt       |   25 +
  .../devicetree/bindings/gpio/gpio-palmas.txt       |   21 +
  .../devicetree/bindings/input/palmas-pwrbutton.txt |   22 +
  .../devicetree/bindings/leds/leds-palmas.txt       |   35 ++
  Documentation/devicetree/bindings/mfd/palmas.txt   |   70 +++
  .../devicetree/bindings/regulator/palmas-pmic.txt  |  168 ++++++
  .../devicetree/bindings/rtc/palmas-rtc.txt         |   22 +
  .../devicetree/bindings/watchdog/palmas-wdt.txt    |   22 +
  drivers/clk/Kconfig                                |    8 +
  drivers/clk/Makefile                               |    1 +
  drivers/clk/clk-palmas.c                           |  268 ++++++++++
  drivers/gpio/gpio-palmas.c                         |   90 +++-
  drivers/leds/Kconfig                               |    9 +
  drivers/leds/Makefile                              |    1 +
  drivers/leds/leds-palmas.c                         |  560 
++++++++++++++++++++
  drivers/mfd/palmas.c                               |  103 +++-
  drivers/regulator/palmas-regulator.c               |   36 +-
  drivers/watchdog/Kconfig                           |    8 +
  drivers/watchdog/Makefile                          |    1 +
  drivers/watchdog/palmas_wdt.c                      |  170 ++++++
  include/linux/mfd/palmas.h                         |  119 ++++-
  21 files changed, 1703 insertions(+), 56 deletions(-)
  create mode 100644 Documentation/devicetree/bindings/clock/palmas-clk.txt
  create mode 100644 Documentation/devicetree/bindings/gpio/gpio-palmas.txt
  create mode 100644 
Documentation/devicetree/bindings/input/palmas-pwrbutton.txt
  create mode 100644 Documentation/devicetree/bindings/leds/leds-palmas.txt
  create mode 100644 Documentation/devicetree/bindings/mfd/palmas.txt
  create mode 100644 
Documentation/devicetree/bindings/regulator/palmas-pmic.txt
  create mode 100644 Documentation/devicetree/bindings/rtc/palmas-rtc.txt
  create mode 100644 
Documentation/devicetree/bindings/watchdog/palmas-wdt.txt
  create mode 100644 drivers/clk/clk-palmas.c
  create mode 100644 drivers/leds/leds-palmas.c
  create mode 100644 drivers/watchdog/palmas_wdt.c

  parent reply	other threads:[~2013-03-07 13:23 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-07 13:17 [PATCH v8 01/12] mfd: DT bindings for the palmas family MFD Ian Lartey
2013-03-07 13:17 ` [PATCH v8 02/12] mfd: palmas: is_palmas_charger needed by multiple drivers Ian Lartey
2013-03-07 13:17 ` [PATCH v8 03/12] mfd: palmas add variant and OTP detection Ian Lartey
2013-03-07 13:17 ` [PATCH v8 04/12] regulator: palmas correct dt parsing Ian Lartey
2013-03-08  9:44   ` Mark Brown
2013-03-07 13:17 ` [PATCH v8 05/12] watchdog: add Palmas Watchdog support Ian Lartey
2013-03-07 13:17 ` [PATCH v8 06/12] watchdog: Kconfig for Palmas watchdog Ian Lartey
2013-03-07 13:17 ` [PATCH v8 07/12] gpio: palmas: add in GPIO support for palmas charger Ian Lartey
2013-03-13 14:15   ` Linus Walleij
2013-03-14 11:58     ` Ian Lartey
2013-03-07 13:17 ` [PATCH v8 08/12] gpio: palmas: Enable DT support for palmas gpio Ian Lartey
2013-03-13 14:20   ` Linus Walleij
2013-03-07 13:17 ` [PATCH v8 09/12] leds: Add support for Palmas LEDs Ian Lartey
2013-03-07 13:17 ` [PATCH v8 10/12] clk: Kconfig for Palmas clock driver Ian Lartey
2013-03-07 13:17 ` [PATCH v8 11/12] leds: Kconfig for Palmas LEDs Ian Lartey
2013-03-07 13:17 ` [PATCH v8 12/12] clk: add a clock driver for palmas Ian Lartey
2013-03-21 21:23   ` Mike Turquette
2013-03-07 13:23 ` Ian Lartey [this message]
2013-03-08  7:12   ` [PATCH v8 0/12] Palmas Updates Linus Walleij
2013-03-08 17:12     ` Ian Lartey
2013-03-13 20:28 ` [PATCH v8 01/12] mfd: DT bindings for the palmas family MFD Stephen Warren

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=513894E3.1070206@slimlogic.co.uk \
    --to=ian@slimlogic.co.uk \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=cooloney@gmail.com \
    --cc=gg@slimlogic.co.uk \
    --cc=grant.likely@secretlab.ca \
    --cc=j-keerthy@ti.com \
    --cc=ldewangan@nvidia.com \
    --cc=lgirdwood@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=mturquette@linaro.org \
    --cc=rob.herring@calxeda.com \
    --cc=rob@landley.net \
    --cc=rpurdie@rpsys.net \
    --cc=sameo@linux.intel.com \
    --cc=swarren@wwwdotorg.org \
    --cc=t-kristo@ti.com \
    --cc=wim@iguana.be \
    /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