All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC v2 PATCH 0/7] Qualcomm PMIC8058 sub-device drivers
@ 2011-02-01 13:47 Anirudh Ghayal
  2011-02-01 13:47 ` [RFC v2 PATCH 1/7] matrix_keypad: Increase the max limit of rows and columns Anirudh Ghayal
                   ` (6 more replies)
  0 siblings, 7 replies; 19+ messages in thread
From: Anirudh Ghayal @ 2011-02-01 13:47 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-input, rtc-linux, linux-arm-msm, Anirudh Ghayal

This patch series contains the V2 RFC version of 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. We are sending these patches early to get
the feedback from the community.

In this V2 version we have added one new driver- PM8058 based vibrator.

If you want to refer the PMIC8058 core and SSBI driver they are available
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

Amy Maloche (1):
  input: misc: Add support for PM8058 based vibrator driver

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 |  754 ++++++++++++++++++++++++++++++
 drivers/input/misc/Kconfig               |   32 ++
 drivers/input/misc/Makefile              |    3 +
 drivers/input/misc/pmic8058-othc.c       |  535 +++++++++++++++++++++
 drivers/input/misc/pmic8058-pwrkey.c     |  318 +++++++++++++
 drivers/input/misc/pmic8058-vibrator.c   |  306 ++++++++++++
 drivers/leds/Kconfig                     |   11 +
 drivers/leds/Makefile                    |    1 +
 drivers/leds/leds-pmic8058.c             |  360 ++++++++++++++
 drivers/rtc/Kconfig                      |    9 +
 drivers/rtc/Makefile                     |    1 +
 drivers/rtc/rtc-pm8058.c                 |  488 +++++++++++++++++++
 include/linux/input/matrix_keypad.h      |    4 +-
 include/linux/input/pmic8058-keypad.h    |   53 +++
 include/linux/input/pmic8058-othc.h      |  117 +++++
 include/linux/input/pmic8058-pwrkey.h    |   37 ++
 include/linux/leds-pmic8058.h            |   61 +++
 include/linux/rtc/rtc-pm8058.h           |   29 ++
 20 files changed, 3129 insertions(+), 2 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/input/misc/pmic8058-vibrator.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

-- 
1.7.3.5

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

end of thread, other threads:[~2011-02-10 12:40 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-01 13:47 [RFC v2 PATCH 0/7] Qualcomm PMIC8058 sub-device drivers Anirudh Ghayal
2011-02-01 13:47 ` [RFC v2 PATCH 1/7] matrix_keypad: Increase the max limit of rows and columns Anirudh Ghayal
2011-02-09  8:02   ` Eric Miao
2011-02-09  8:02     ` Eric Miao
2011-02-10 12:20     ` Trilok Soni
2011-02-10 12:40       ` Eric Miao
2011-02-01 13:47 ` [RFC v2 PATCH 2/7] input: pm8058_keypad: Qualcomm PMIC8058 keypad controller driver Anirudh Ghayal
2011-02-01 13:47 ` [RFC v2 PATCH 3/7] led: pmic8058: Add PMIC8058 leds driver Anirudh Ghayal
2011-02-06  1:47   ` Lars-Peter Clausen
2011-02-01 13:47 ` [RFC v2 PATCH 4/7] input: pmic8058_pwrkey: Add support for power key Anirudh Ghayal
2011-02-01 17:49   ` Dmitry Torokhov
2011-02-02  7:43     ` Trilok Soni
2011-02-01 13:47 ` [RFC v2 PATCH 5/7] input: pmic8058-othc: Add support for PM8058 based OTHC Anirudh Ghayal
2011-02-01 14:33   ` [rtc-linux] " Mark Brown
2011-02-02  7:51     ` Trilok Soni
2011-02-01 13:47 ` [RFC v2 PATCH 6/7] drivers: rtc: Add support for Qualcomm PMIC8058 RTC Anirudh Ghayal
2011-02-01 13:47 ` [RFC v2 PATCH 7/7] input: misc: Add support for PM8058 based vibrator driver Anirudh Ghayal
2011-02-02  8:33   ` Dmitry Torokhov
2011-02-02  8:53     ` Trilok Soni

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.