linux-embedded.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PWM PATCH 0/5] Implements a common PWM API
@ 2010-02-02  7:14 Bill Gatliff
  2010-02-02  7:14 ` [PWM PATCH 1/5] API to consolidate PWM devices behind a common user and kernel interface Bill Gatliff
  2010-02-02 17:44 ` [PWM PATCH 0/5] Implements a common PWM API H Hartley Sweeten
  0 siblings, 2 replies; 30+ messages in thread
From: Bill Gatliff @ 2010-02-02  7:14 UTC (permalink / raw)
  To: linux-embedded; +Cc: linux-kernel, Bill Gatliff

This patch series implements a common PWM API.  This series incorporates
the feedback from the linux-embedded mailing list and elsewhere; the author
greatly appreciates the efforts of everyone who reviewed the previous version
of this code.

Bill Gatliff (5):
  API to consolidate PWM devices behind a common user and kernel
    interface
  Emulates PWM hardware using a high-resolution timer and a GPIO pin
  Expunge old Atmel PWMC driver, replacing it with one that conforms to
    the PWM API
  PWM-based LED control
  LED "dimmer" trigger

 Documentation/pwm.txt       |  260 ++++++++++++++++++
 drivers/leds/leds-pwm.c     |  224 +++++++++-------
 drivers/leds/ledtrig-dim.c  |   95 +++++++
 drivers/misc/Makefile       |    6 +-
 drivers/misc/atmel_pwm.c    |  409 ----------------------------
 drivers/pwm/atmel-pwm.c     |  589 ++++++++++++++++++++++++++++++++++++++++
 drivers/pwm/gpio.c          |  307 +++++++++++++++++++++
 drivers/pwm/pwm.c           |  633 +++++++++++++++++++++++++++++++++++++++++++
 include/linux/pwm.h         |   31 --
 include/linux/pwm/pwm-led.h |   34 +++
 include/linux/pwm/pwm.h     |  170 ++++++++++++
 11 files changed, 2217 insertions(+), 541 deletions(-)
 create mode 100644 Documentation/pwm.txt
 create mode 100644 drivers/leds/ledtrig-dim.c
 delete mode 100644 drivers/misc/atmel_pwm.c
 create mode 100644 drivers/pwm/atmel-pwm.c
 create mode 100644 drivers/pwm/gpio.c
 create mode 100644 drivers/pwm/pwm.c
 delete mode 100644 include/linux/pwm.h
 create mode 100644 include/linux/pwm/pwm-led.h
 create mode 100644 include/linux/pwm/pwm.h

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

end of thread, other threads:[~2010-02-16 18:12 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-02  7:14 [PWM PATCH 0/5] Implements a common PWM API Bill Gatliff
2010-02-02  7:14 ` [PWM PATCH 1/5] API to consolidate PWM devices behind a common user and kernel interface Bill Gatliff
2010-02-02  7:14   ` [PWM PATCH 2/5] Emulates PWM hardware using a high-resolution timer and a GPIO pin Bill Gatliff
2010-02-02  7:14     ` [PWM PATCH 3/5] Expunge old Atmel PWMC driver, replacing it with one that conforms to the PWM API Bill Gatliff
2010-02-02  7:14       ` [PWM PATCH 4/5] PWM-based LED control Bill Gatliff
2010-02-02  7:14         ` [PWM PATCH 5/5] LED "dimmer" trigger Bill Gatliff
2010-02-02  7:16       ` [PWM PATCH 3/5] Expunge old Atmel PWMC driver, replacing it with one that conforms to the PWM API Bill Gatliff
2010-02-02 17:52       ` H Hartley Sweeten
2010-02-03  4:10         ` Bill Gatliff
2010-02-11 20:07     ` [PWM PATCH 2/5] Emulates PWM hardware using a high-resolution timer and a GPIO pin Pavel Machek
2010-02-11 20:35       ` Bill Gatliff
2010-02-11 20:58         ` Pavel Machek
2010-02-12  7:22           ` Stanislav O. Bezzubtsev
2010-02-12 13:13             ` Geert Uytterhoeven
2010-02-12 13:41             ` Pavel Machek
2010-02-12 13:53         ` H Hartley Sweeten
2010-02-12 16:26           ` Bill Gatliff
2010-02-16 18:12             ` H Hartley Sweeten
2010-02-02 18:20   ` [PWM PATCH 1/5] API to consolidate PWM devices behind a common user and kernel interface H Hartley Sweeten
2010-02-03  4:12     ` Bill Gatliff
2010-02-04  1:39   ` H Hartley Sweeten
2010-02-04  5:31     ` Bill Gatliff
2010-02-04 17:30       ` Bill Gatliff
2010-02-11 20:04   ` Pavel Machek
2010-02-11 20:51     ` Bill Gatliff
2010-02-11 21:00       ` Pavel Machek
2010-02-02 17:44 ` [PWM PATCH 0/5] Implements a common PWM API H Hartley Sweeten
2010-02-03  4:08   ` Bill Gatliff
2010-02-04 23:20   ` H Hartley Sweeten
2010-02-05 18:53     ` Bill Gatliff

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