]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mfd: Add LP3943 MFD driver
authorMilo Kim <milo.kim@ti.com>
Fri, 6 Dec 2013 02:18:41 +0000 (11:18 +0900)
committerLee Jones <lee.jones@linaro.org>
Fri, 6 Dec 2013 16:10:04 +0000 (16:10 +0000)
commit0cb8b1632611ef27ef7f725db8aefbcc4cc53e68
treea5c67d975d743a50ff4728f734df28b64f80abe6
parenta4cb691b22056221f11950f81466cd17431b3eb3
mfd: Add LP3943 MFD driver

LP3943 has 16 output pins which can be used as GPIO expander and PWM generator.

* Regmap I2C interface for R/W LP3943 registers

* Atomic operations for output pin assignment
  The driver should check whether requested pin is available or not.
  If the pin is already used, pin request returns as a failure.
  A driver data, 'pin_used' is checked when gpio_request() and
  pwm_request() are called. If the pin is available, then pin_used is set.
  And it is cleared when gpio_free() and pwm_free().

* Device tree support
  Compatible strings for GPIO and PWM driver.
  LP3943 platform data is PWM related, so parsing the device tree is
  implemented in the PWM driver.

Signed-off-by: Milo Kim <milo.kim@ti.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/Kconfig
drivers/mfd/Makefile
drivers/mfd/lp3943.c [new file with mode: 0644]
include/linux/mfd/lp3943.h [new file with mode: 0644]