pwm: Add LP3943 PWM driver
authorMilo Kim <milo.kim@ti.com>
Fri, 6 Dec 2013 02:18:43 +0000 (11:18 +0900)
committerLee Jones <lee.jones@linaro.org>
Tue, 21 Jan 2014 08:28:00 +0000 (08:28 +0000)
commitaf66b3c0934e350059646651958306565313e145
tree5441be801d1a2950c465e8ba7dd879dec7393652
parent470eca47bded10f2e1a425b44d6f2b1418271a9f
pwm: Add LP3943 PWM driver

This is the other of the LP3943 MFD driver.
LP3943 can be used as a PWM generator, up to 2 channels.

* Two PWM generators supported

* Supported PWM operations
  request, free, config, enable and disable

* Pin assignment
  A driver data, 'pin_used' is checked when a PWM is requested.
  If the output pin is already assigned, then returns as failure.
  If the pin is available, 'pin_used' is set.
  When the PWM is not used anymore, then it is cleared.
  It is defined as unsigned long type for atomic bit operation APIs,
  but only LSB 16bits are used because LP3943 has 16 outputs.

Signed-off-by: Milo Kim <milo.kim@ti.com>
Acked-by: Thierry Reding <thierry.reding@gmail.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/pwm/Kconfig
drivers/pwm/Makefile
drivers/pwm/pwm-lp3943.c [new file with mode: 0644]