linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Trilok Soni <tsoni@codeaurora.org>
To: linux-kernel@vger.kernel.org
Cc: linux-input@vger.kernel.org, rtc-linux@googlegroups.com,
	linux-arm-msm@vger.kernel.org, Trilok Soni <tsoni@codeaurora.org>
Subject: [RFC v1 PATCH 0/6] Qualcomm PMIC8058 sub-device drivers
Date: Wed, 10 Nov 2010 18:17:55 +0530	[thread overview]
Message-ID: <1289393281-4459-1-git-send-email-tsoni@codeaurora.org> (raw)

This patch series contains sub-device drivers for Qualcomm PMIC8058.
It is submitted here as RFC, due the dependent drivers like PMIC8058 core
driver and SSBI bus driver are not yet merged into the mainline. So we
are sending these patches early to get the feedback from the community.

If you want to refer the PMIC8058 core and SSBI driver then they are
here:

PMIC8058 core driver:
https://www.codeaurora.org/gitweb/quic/la/?p=kernel/msm.git;a=blob;f=drivers/mfd/pmic8058.c;h=dc561988c474721d76178ab1a2f82a3a4d1b03a1;hb=refs/heads/msm-2.6.35

SSBI driver:
https://www.codeaurora.org/gitweb/quic/la/?p=kernel/msm.git;a=blob;f=drivers/i2c/busses/i2c-ssbi.c;h=5bfcf3cb96f0c2e0f1a6b7f789458d2faf67f260;hb=refs/heads/msm-2.6.35

Anirudh Ghayal (2):
  input: pmic8058-othc: Add support for PM8058 based OTHC
  drivers: rtc: Add support for Qualcomm PMIC8058 RTC

Trilok Soni (4):
  matrix_keypad: Increase the max limit of rows and columns
  input: pm8058_keypad: Qualcomm PMIC8058 keypad controller driver
  led: pmic8058: Add PMIC8058 leds driver
  input: pmic8058_pwrkey: Add support for power key

 drivers/input/keyboard/Kconfig           |   11 +
 drivers/input/keyboard/Makefile          |    1 +
 drivers/input/keyboard/pmic8058-keypad.c |  769 ++++++++++++++++++++++++++++++
 drivers/input/misc/Kconfig               |   21 +
 drivers/input/misc/Makefile              |    2 +
 drivers/input/misc/pmic8058-othc.c       |  544 +++++++++++++++++++++
 drivers/input/misc/pmic8058-pwrkey.c     |  322 +++++++++++++
 drivers/leds/Kconfig                     |   11 +
 drivers/leds/Makefile                    |    1 +
 drivers/leds/leds-pmic8058.c             |  405 ++++++++++++++++
 drivers/rtc/Kconfig                      |    9 +
 drivers/rtc/Makefile                     |    1 +
 drivers/rtc/rtc-pm8058.c                 |  487 +++++++++++++++++++
 include/linux/input/matrix_keypad.h      |    8 +-
 include/linux/input/pmic8058-keypad.h    |   58 +++
 include/linux/input/pmic8058-othc.h      |  117 +++++
 include/linux/input/pmic8058-pwrkey.h    |   37 ++
 include/linux/leds-pmic8058.h            |   63 +++
 include/linux/rtc/rtc-pm8058.h           |   29 ++
 19 files changed, 2892 insertions(+), 4 deletions(-)
 create mode 100644 drivers/input/keyboard/pmic8058-keypad.c
 create mode 100644 drivers/input/misc/pmic8058-othc.c
 create mode 100644 drivers/input/misc/pmic8058-pwrkey.c
 create mode 100644 drivers/leds/leds-pmic8058.c
 create mode 100644 drivers/rtc/rtc-pm8058.c
 create mode 100644 include/linux/input/pmic8058-keypad.h
 create mode 100644 include/linux/input/pmic8058-othc.h
 create mode 100644 include/linux/input/pmic8058-pwrkey.h
 create mode 100644 include/linux/leds-pmic8058.h
 create mode 100644 include/linux/rtc/rtc-pm8058.h


             reply	other threads:[~2010-11-10 12:48 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-10 12:47 Trilok Soni [this message]
2010-11-10 12:47 ` [RFC v1 PATCH 1/6] matrix_keypad: Increase the max limit of rows and columns Trilok Soni
2010-11-10 18:33   ` Eric Miao
2010-11-10 23:30     ` Dmitry Torokhov
2010-11-17 17:54       ` Dmitry Torokhov
2010-11-10 12:47 ` [RFC v1 PATCH 2/6] input: pm8058_keypad: Qualcomm PMIC8058 keypad controller driver Trilok Soni
2010-11-16  3:49   ` Trilok Soni
2010-11-17 18:02   ` Dmitry Torokhov
2010-12-06 18:14   ` Dmitry Torokhov
2010-12-07  9:22     ` Trilok Soni
2010-12-07  9:30       ` Dmitry Torokhov
2010-12-07  9:32         ` Trilok Soni
2011-01-06 11:56     ` [rtc-linux] " Anirudh Ghayal
2010-11-10 12:47 ` [RFC v1 PATCH 3/6] led: pmic8058: Add PMIC8058 leds driver Trilok Soni
2010-11-10 20:45   ` Lars-Peter Clausen
2010-11-10 23:28     ` Dmitry Torokhov
2010-11-10 23:50       ` Lars-Peter Clausen
2010-11-11 12:15     ` Trilok Soni
2010-12-06 13:44       ` Trilok Soni
2010-12-07 15:11         ` Lars-Peter Clausen
2010-12-07 15:47           ` Trilok Soni
2010-11-10 12:47 ` [RFC v1 PATCH 4/6] input: pmic8058_pwrkey: Add support for power key Trilok Soni
2010-11-11  7:21   ` Dmitry Torokhov
2010-11-11 12:00     ` Trilok Soni
2010-11-12  0:57       ` Dmitry Torokhov
2010-11-12  8:56         ` Trilok Soni
2010-11-12 19:58           ` Dmitry Torokhov
2010-11-10 12:48 ` [RFC v1 PATCH 5/6] input: pmic8058-othc: Add support for PM8058 based OTHC Trilok Soni
2010-11-16  3:08   ` Trilok Soni
2010-11-16  5:36   ` Datta, Shubhrajyoti
2010-11-16  6:36     ` Trilok Soni
2010-12-01  5:34       ` Anirudh Ghayal
2010-12-07 10:04   ` Dmitry Torokhov
2010-12-07 12:10     ` Anirudh Ghayal
2010-11-10 12:48 ` [RFC v1 PATCH 6/6] drivers: rtc: Add support for Qualcomm PMIC8058 RTC Trilok Soni
2010-11-12  8:53   ` Trilok Soni
2010-11-12 12:53   ` Lars-Peter Clausen
2010-11-12 15:17     ` [rtc-linux] " Anirudh Ghayal

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=1289393281-4459-1-git-send-email-tsoni@codeaurora.org \
    --to=tsoni@codeaurora.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rtc-linux@googlegroups.com \
    /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 NNTP newsgroup(s).