mbox

[GIT,PULL] pwm: Changes for v3.19-rc1

Message ID 20141217085625.GA3929@ulmo
State Not Applicable
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git tags/pwm/for-3.19-rc1

Message

Thierry Reding Dec. 17, 2014, 8:56 a.m. UTC
Hi Linus,

The following changes since commit cac7f2429872d3733dc3f9915857b1691da2eb2f:

  Linux 3.18-rc2 (2014-10-26 16:48:41 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git tags/pwm/for-3.19-rc1

for you to fetch changes up to 39e046f2c1dd0742976d7ee6e464744cf2122f41:

  pwm: atmel-hlcdc: add at91sam9x5 and sama5d3 errata handling (2014-12-04 11:32:36 +0100)

Thanks,
Thierry

----------------------------------------------------------------
pwm: Changes for v3.19-rc1

There are two new drivers, one for the BCM2835 (Raspberry Pi) and one
used in conjunction with the LCD controller on various Atmel SoCs. The
Samsung PWM driver can now be built for 64-bit ARM (Exynos7).

A couple of fixes have been applied to the FTM PWM driver and system
sleep support was added.

----------------------------------------------------------------
Abhilash Kesavan (1):
      pwm: samsung: Allow Samsung PWM driver to be enabled on Exynos7

Bart Tanghe (1):
      pwm: Add BCM2835 PWM driver

Boris BREZILLON (1):
      pwm: atmel-hlcdc: add at91sam9x5 and sama5d3 errata handling

Boris Brezillon (2):
      pwm: add support for atmel-hlcdc-pwm device
      pwm: add DT bindings documentation for atmel-hlcdc-pwm driver

Xiubo Li (3):
      pwm: ftm: Correctly track usage count
      pwm: ftm: Add regmap rbtree type cache support
      pwm: ftm: Add Power Management support for FTM PWM

 .../devicetree/bindings/pwm/atmel-hlcdc-pwm.txt    |  29 ++
 .../devicetree/bindings/pwm/pwm-bcm2835.txt        |  30 +++
 drivers/pwm/Kconfig                                |  22 +-
 drivers/pwm/Makefile                               |   2 +
 drivers/pwm/pwm-atmel-hlcdc.c                      | 299 +++++++++++++++++++++
 drivers/pwm/pwm-bcm2835.c                          | 205 ++++++++++++++
 drivers/pwm/pwm-fsl-ftm.c                          |  64 ++++-
 7 files changed, 646 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/pwm/atmel-hlcdc-pwm.txt
 create mode 100644 Documentation/devicetree/bindings/pwm/pwm-bcm2835.txt
 create mode 100644 drivers/pwm/pwm-atmel-hlcdc.c
 create mode 100644 drivers/pwm/pwm-bcm2835.c