linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v9 0/12] Palmas updates
@ 2013-03-22 13:36 Ian Lartey
  2013-03-22 13:36 ` [PATCH v9 01/11] mfd: palmas: is_palmas_charger needed by multiple drivers Ian Lartey
                   ` (10 more replies)
  0 siblings, 11 replies; 16+ messages in thread
From: Ian Lartey @ 2013-03-22 13:36 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-doc, linux-arm-kernel, linux-leds, linux-watchdog,
	devicetree-discuss, swarren, grant.likely, broonie, rob.herring,
	rob, mturquette, linus.walleij, cooloney, sfr, rpurdie, akpm,
	sameo, wim, lgirdwood, gg, j-keerthy, ldewangan, t-kristo

This patchset adds to the support for the Palmas series 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-20130319

Changes since v8
The .compatible = "palmas-charger-xxx" has been removed from the DT 
for all palmas source files as the charger driver is not yet present.

[PATCH 01/12] mfd: DT bindings... - Added in missing descriptions for 
properties and added in properties that were missing

[PATCH 08/12] gpio: Palmas.... - Added
palmas_gpio_(read|write|update)  gpio parameter renamed to offset
palmas_gpio_write   renamed to palmas_gpio_clear_and_set  
as it no longer takes a data value instead it always sets the
offset bit and clears all other bits -
this is how it was being used by the callers

[PATCH 09/12] leds: Add support... -  Combined patches for 
drivers/leds/leds-palmas.c, drivers/leds/Kconfig and drivers/leds/Makefile.
palmas_dt_to_pdata - added bounds checking for DT values and
removed use of child node.
palmas_led.on_time and palmas_led.period both changed to enums.
palmas_get_crtl_and_period added which contains factored code 
from palmas_leds_work for maintainability.

[PATCH 10/12] clk: Add a clock... -  clock names taken from DT if provided

palmas-regulator not in patchset - patch Now applied by Mark Brown

[PATCH 12/12] regulator: palmas-charger-pmic removed from DT compatible list

 .../devicetree/bindings/clock/palmas-clk.txt       |   27 +
 .../devicetree/bindings/gpio/gpio-palmas.txt       |   35 ++
 .../devicetree/bindings/input/palmas-pwrbutton.txt |   26 +
 .../devicetree/bindings/leds/leds-palmas.txt       |   36 ++
 Documentation/devicetree/bindings/mfd/palmas.txt   |   81 +++
 .../devicetree/bindings/regulator/palmas-pmic.txt  |  168 ++++++
 .../devicetree/bindings/rtc/palmas-rtc.txt         |   21 +
 .../devicetree/bindings/watchdog/palmas-wdt.txt    |   21 +
 drivers/clk/Kconfig                                |    8 +
 drivers/clk/Makefile                               |    1 +
 drivers/clk/clk-palmas.c                           |  275 +++++++++
 drivers/gpio/gpio-palmas.c                         |   90 +++-
 drivers/leds/Kconfig                               |    9 +
 drivers/leds/Makefile                              |    1 +
 drivers/leds/leds-palmas.c                         |  590 ++++++++++++++++++++
 drivers/mfd/palmas.c                               |  102 +++-
 drivers/regulator/palmas-regulator.c               |    1 -
 drivers/watchdog/Kconfig                           |    8 +
 drivers/watchdog/Makefile                          |    1 +
 drivers/watchdog/palmas_wdt.c                      |  169 ++++++
 include/linux/mfd/palmas.h                         |  139 +++++-
 21 files changed, 1768 insertions(+), 41 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


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

end of thread, other threads:[~2013-03-27 13:16 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-22 13:36 [PATCH v9 0/12] Palmas updates Ian Lartey
2013-03-22 13:36 ` [PATCH v9 01/11] mfd: palmas: is_palmas_charger needed by multiple drivers Ian Lartey
2013-03-22 13:36 ` [PATCH v9 02/11] mfd: palmas add variant and OTP detection Ian Lartey
2013-03-22 13:36 ` [PATCH v9 03/11] watchdog: add Palmas Watchdog support Ian Lartey
2013-03-22 13:36 ` [PATCH v9 04/11] watchdog: Kconfig for Palmas watchdog Ian Lartey
2013-03-22 13:36 ` [PATCH v9 05/11] gpio: palmas: add in GPIO support for palmas charger Ian Lartey
2013-03-27 13:15   ` Linus Walleij
2013-03-22 13:36 ` [PATCH v9 06/11] gpio: palmas: Enable DT support for palmas gpio Ian Lartey
2013-03-22 13:36 ` [PATCH v9 07/11] gpio: Palmas palmas_gpio_(read|write|update) factoring Ian Lartey
2013-03-22 13:36 ` [PATCH v9 08/11] leds: Add support for Palmas LEDs Ian Lartey
2013-03-22 14:04   ` Graeme Gregory
2013-03-22 14:08     ` Ian Lartey
2013-03-22 13:36 ` [PATCH v9 09/11] clk: add a clock driver for palmas Ian Lartey
2013-03-22 13:36 ` [PATCH v9 10/11] clk: Kconfig for Palmas clock driver Ian Lartey
2013-03-22 13:36 ` [PATCH v9 11/11] regulator: palmas remove palmas-charger option from DT bindings Ian Lartey
2013-03-25  1:16   ` Mark Brown

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