All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] implement a generic PWM framework
@ 2011-06-30 10:41 ` Sascha Hauer
  0 siblings, 0 replies; 60+ messages in thread
From: Sascha Hauer @ 2011-06-30 10:41 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-arm-kernel, Arnd Bergmann, viresh kumar, Shawn Guo, Ryan Mallon

3rd version. No changes to the core except that I added F: drivers/pwm/ to
MAINTAINERS. Arnd, I looked through the comments to the first series again
and this was the only thing I could find I forgot. You referred to three
things. Is there more I forgot?

What changed though is the mxs pwm driver. I now register a pwm core
device which handles the shared enable register as suggested by Arnd.

Sascha

The following changes since commit b0af8dfdd67699e25083478c63eedef2e72ebd85:

  Linux 3.0-rc5 (2011-06-27 19:12:22 -0700)

are available in the git repository at:
  git://git.pengutronix.de/git/imx/linux-2.6.git pwm

Sascha Hauer (3):
      PWM: add pwm framework support
      ARM mxs: adjust pwm resources to what the driver expects
      pwm: Add a i.MX23/28 pwm driver

 Documentation/pwm.txt                        |   56 +++++
 MAINTAINERS                                  |    6 +
 arch/arm/mach-mxs/devices/platform-mxs-pwm.c |   32 +++-
 drivers/Kconfig                              |    2 +
 drivers/Makefile                             |    1 +
 drivers/pwm/Kconfig                          |   16 ++
 drivers/pwm/Makefile                         |    2 +
 drivers/pwm/core.c                           |  220 ++++++++++++++++++
 drivers/pwm/mxs-pwm.c                        |  312 ++++++++++++++++++++++++++
 include/linux/pwm.h                          |   37 +++
 10 files changed, 681 insertions(+), 3 deletions(-)
 create mode 100644 Documentation/pwm.txt
 create mode 100644 drivers/pwm/Kconfig
 create mode 100644 drivers/pwm/Makefile
 create mode 100644 drivers/pwm/core.c
 create mode 100644 drivers/pwm/mxs-pwm.c


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

end of thread, other threads:[~2011-12-14 11:37 UTC | newest]

Thread overview: 60+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-30 10:41 [PATCH v3] implement a generic PWM framework Sascha Hauer
2011-06-30 10:41 ` Sascha Hauer
2011-06-30 10:41 ` [PATCH 1/3] PWM: add pwm framework support Sascha Hauer
2011-06-30 10:41   ` Sascha Hauer
2011-06-30 11:07   ` Bill Gatliff
2011-06-30 11:07     ` Bill Gatliff
2011-06-30 12:41     ` Arnd Bergmann
2011-06-30 12:41       ` Arnd Bergmann
2011-06-30 16:17       ` Bill Gatliff
2011-06-30 16:17         ` Bill Gatliff
2011-06-30 17:02         ` Sascha Hauer
2011-06-30 17:02           ` Sascha Hauer
2011-06-30 19:45           ` Bill Gatliff
2011-06-30 19:45             ` Bill Gatliff
2011-06-30 23:24           ` Ryan Mallon
2011-06-30 23:24             ` Ryan Mallon
2011-07-01  0:33             ` H Hartley Sweeten
2011-07-01  0:33               ` H Hartley Sweeten
2011-07-01  0:55               ` Mike Frysinger
2011-07-01  0:55                 ` Mike Frysinger
2011-07-01  7:37             ` Sascha Hauer
2011-07-01  7:37               ` Sascha Hauer
2011-07-01  8:28               ` Ryan Mallon
2011-07-01  8:28                 ` Ryan Mallon
2011-07-01  8:54                 ` Sascha Hauer
2011-07-01  8:54                   ` Sascha Hauer
2011-07-02  0:40                   ` Ryan Mallon
2011-07-02  0:40                     ` Ryan Mallon
2011-07-04  7:55                     ` Sascha Hauer
2011-07-04  7:55                       ` Sascha Hauer
2011-07-04  8:50                       ` Dmitry Eremin-Solenikov
2011-07-04 10:43                       ` Ryan Mallon
2011-07-04 10:43                         ` Ryan Mallon
2011-07-04 11:05                         ` Kurt Van Dijck
2011-07-04 13:53                           ` Arnd Bergmann
2011-07-04 13:53                             ` Arnd Bergmann
2011-07-04 14:19                             ` Kurt Van Dijck
2011-07-04 12:43                         ` Sascha Hauer
2011-07-04 12:43                           ` Sascha Hauer
2011-07-04 14:07                           ` Arnd Bergmann
2011-07-04 14:07                             ` Arnd Bergmann
2011-12-07  8:53                             ` Thierry Reding
2011-12-07  8:53                               ` Thierry Reding
2011-12-07  9:07                               ` Sascha Hauer
2011-12-07  9:07                                 ` Sascha Hauer
2011-12-14 10:03                                 ` Thierry Reding
2011-12-14 10:03                                   ` Thierry Reding
2011-12-14 11:37                                   ` Sascha Hauer
2011-12-14 11:37                                     ` Sascha Hauer
2011-07-01  9:49               ` Dmitry Eremin-Solenikov
2011-06-30 10:41 ` [PATCH 2/3] ARM mxs: adjust pwm resources to what the driver expects Sascha Hauer
2011-06-30 10:41   ` Sascha Hauer
2011-06-30 11:30   ` Arnd Bergmann
2011-06-30 11:30     ` Arnd Bergmann
2011-06-30 10:41 ` [PATCH 3/3] pwm: Add a i.MX23/28 pwm driver Sascha Hauer
2011-06-30 10:41   ` Sascha Hauer
2011-06-30 11:42   ` Arnd Bergmann
2011-06-30 11:42     ` Arnd Bergmann
2011-06-30 15:11     ` Sascha Hauer
2011-06-30 15:11       ` Sascha Hauer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.