linux-embedded.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bill Gatliff <bgat@billgatliff.com>
To: linux-kernel@vger.kernel.org, linux-embedded@vger.kernel.org
Cc: Bill Gatliff <bgat@billgatliff.com>
Subject: [PWM v9 0/3] Implement a generic PWM framework
Date: Thu, 31 Mar 2011 22:59:49 -0500	[thread overview]
Message-ID: <1301630392-20793-1-git-send-email-bgat@billgatliff.com> (raw)

This patch series contains the ninth attempt at implementation of a
generic PWM device interface framework.  Think gpiolib, but for
devices and pseudo-devices that generate pulse-wave-modulated outputs.

Compared to the previous version, this patch series:

 * Fixes an unbalanced get_device()/put_device()

A git tree containing these patches may be found here:

    http://git.billgatliff.com/pwm.git


Regards,


b.g.

Bill Gatliff (3):
  PWM: Implement a generic PWM framework
  PWM: GPIO+hrtimer device emulation
  PWM: Atmel PWMC driver

 Documentation/pwm.txt    |  276 ++++++++++++++++++++++
 MAINTAINERS              |    8 +
 drivers/Kconfig          |    2 +
 drivers/Makefile         |    2 +
 drivers/pwm/Kconfig      |   29 +++
 drivers/pwm/Makefile     |    7 +
 drivers/pwm/atmel-pwmc.c |  452 ++++++++++++++++++++++++++++++++++++
 drivers/pwm/gpio-pwm.c   |  332 ++++++++++++++++++++++++++
 drivers/pwm/pwm.c        |  580 ++++++++++++++++++++++++++++++++++++++++++++++
 include/linux/pwm/pwm.h  |  143 ++++++++++++
 10 files changed, 1831 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/pwm.txt
 create mode 100644 drivers/pwm/Kconfig
 create mode 100644 drivers/pwm/Makefile
 create mode 100644 drivers/pwm/atmel-pwmc.c
 create mode 100644 drivers/pwm/gpio-pwm.c
 create mode 100644 drivers/pwm/pwm.c
 create mode 100644 include/linux/pwm/pwm.h

-- 
1.7.4.1

             reply	other threads:[~2011-04-01  3:59 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-01  3:59 Bill Gatliff [this message]
2011-04-01  3:59 ` [PWM v9 1/3] PWM: Implement a generic PWM framework Bill Gatliff
2011-04-14 19:49   ` Grant Likely
2011-04-14 19:58     ` Greg KH
2011-04-01  3:59 ` [PWM v9 2/3] PWM: GPIO+hrtimer device emulation Bill Gatliff
2011-04-06 13:17   ` Ben Gardiner
2011-04-01  3:59 ` [PWM v9 3/3] PWM: Atmel PWMC driver Bill Gatliff
2011-04-14 15:12 ` [PWM v9 0/3] Implement a generic PWM framework Bill Gatliff
2011-04-14 18:26   ` H Hartley Sweeten
2011-06-15 15:33 ` Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1301630392-20793-1-git-send-email-bgat@billgatliff.com \
    --to=bgat@billgatliff.com \
    --cc=linux-embedded@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).