All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC/RFT 0/6] qcom: Add runtime PM support
@ 2015-04-23  8:45 ` Rajendra Nayak
  0 siblings, 0 replies; 62+ messages in thread
From: Rajendra Nayak @ 2015-04-23  8:45 UTC (permalink / raw)
  To: linux-arm-msm, linux-arm-kernel, linux-pm; +Cc: Rajendra Nayak

The patches add runtime PM support (using PM clocks) for 
devices in qcom SoCs. Also converts serial/sdhci/i2c and
spi drivers to cleanup clock handling and use runtime PM
apis instead.

There are a couple [1][2] of other patch series that this one is
based off, so I have pushed a branch [3] with all the dependecies
if anyone wants to play with this series.
I have been able to test the serial and sdhci driver changes to a
fair extent, i2c for a sucessfull probe and could not test anything
on spi. So any testing on these drivers is highly appreciated.

[1] https://www.mail-archive.com/linux-arm-msm@vger.kernel.org/msg14157.html
[2] https://www.mail-archive.com/linux-arm-msm@vger.kernel.org/msg14268.html
[3] https://github.com/rrnayak/linux/tree/v4.0/runtime-rfc

Rajendra Nayak (6):
  PM / clock_ops: Make pm_clk_notify() do nothing in case DT passes
    power-domains
  clk: qcom: Add runtime support to handle clocks using PM clocks
  serial: msm: convert driver to use runtime PM apis
  mmc: sdhci-msm: convert driver to use runtime PM apis
  i2c: qup: Get rid of clock handling as its done using runtime
    callbacks
  spi: qup: Get rid of clock handling as its done using runtime
    callbacks

 drivers/base/power/clock_ops.c  |  8 ++++-
 drivers/clk/qcom/gdsc.c         | 20 +++++++++++
 drivers/i2c/busses/i2c-qup.c    | 74 +++++++++--------------------------------
 drivers/mmc/host/sdhci-msm.c    | 46 ++++++-------------------
 drivers/spi/spi-qup.c           | 54 ++++++------------------------
 drivers/tty/serial/msm_serial.c | 33 +++++++++---------
 6 files changed, 80 insertions(+), 155 deletions(-)

-- 
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation


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

end of thread, other threads:[~2015-04-30  9:02 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-23  8:45 [RFC/RFT 0/6] qcom: Add runtime PM support Rajendra Nayak
2015-04-23  8:45 ` Rajendra Nayak
2015-04-23  8:45 ` [RFC/RFT 1/6] PM / clock_ops: Make pm_clk_notify() do nothing in case DT passes power-domains Rajendra Nayak
2015-04-23  8:45   ` Rajendra Nayak
2015-04-23  8:45 ` [RFC/RFT 2/6] clk: qcom: Add runtime support to handle clocks using PM clocks Rajendra Nayak
2015-04-23  8:45   ` Rajendra Nayak
2015-04-24 10:03   ` Ulf Hansson
2015-04-24 10:03     ` Ulf Hansson
2015-04-24 10:58     ` Rajendra Nayak
2015-04-24 10:58       ` Rajendra Nayak
2015-04-26  8:49       ` Geert Uytterhoeven
2015-04-26  8:49         ` Geert Uytterhoeven
2015-04-27 20:02         ` Kevin Hilman
2015-04-27 20:02           ` Kevin Hilman
2015-04-28  2:52           ` Rajendra Nayak
2015-04-28  2:52             ` Rajendra Nayak
2015-04-28  7:25             ` Geert Uytterhoeven
2015-04-28  7:25               ` Geert Uytterhoeven
2015-04-29  9:49               ` Rajendra Nayak
2015-04-29  9:49                 ` Rajendra Nayak
2015-04-29 11:30                 ` Geert Uytterhoeven
2015-04-29 11:30                   ` Geert Uytterhoeven
2015-04-29 12:31                   ` Ulf Hansson
2015-04-29 12:31                     ` Ulf Hansson
2015-04-29 13:08                     ` Geert Uytterhoeven
2015-04-29 13:08                       ` Geert Uytterhoeven
2015-04-30  6:21                       ` Ulf Hansson
2015-04-30  6:21                         ` Ulf Hansson
2015-04-30  9:02                         ` Ulf Hansson
2015-04-30  9:02                           ` Ulf Hansson
2015-04-27  7:08       ` Ulf Hansson
2015-04-27  7:08         ` Ulf Hansson
2015-04-23  8:45 ` [RFC/RFT 3/6] serial: msm: convert driver to use runtime PM apis Rajendra Nayak
2015-04-23  8:45   ` Rajendra Nayak
2015-04-29  0:16   ` Stephen Boyd
2015-04-29  0:16     ` Stephen Boyd
2015-04-29  3:15     ` Rajendra Nayak
2015-04-29  3:15       ` Rajendra Nayak
2015-04-23  8:45 ` [RFC/RFT 4/6] mmc: sdhci-msm: " Rajendra Nayak
2015-04-23  8:45   ` Rajendra Nayak
2015-04-23 13:21   ` Ulf Hansson
2015-04-23 13:21     ` Ulf Hansson
2015-04-23 13:42     ` Rajendra Nayak
2015-04-23 13:42       ` Rajendra Nayak
2015-04-23 21:15       ` Kevin Hilman
2015-04-23 21:15         ` Kevin Hilman
2015-04-24  0:45         ` Rajendra Nayak
2015-04-24  0:45           ` Rajendra Nayak
2015-04-23 13:43     ` Rajendra Nayak
2015-04-23 13:43       ` Rajendra Nayak
2015-04-23  8:45 ` [RFC/RFT 5/6] i2c: qup: Get rid of clock handling as its done using runtime callbacks Rajendra Nayak
2015-04-23  8:45   ` Rajendra Nayak
2015-04-23 21:16   ` Kevin Hilman
2015-04-23 21:16     ` Kevin Hilman
2015-04-24  2:32     ` Rajendra Nayak
2015-04-24  2:32       ` Rajendra Nayak
2015-04-25  7:01   ` Ivan T. Ivanov
2015-04-25  7:01     ` Ivan T. Ivanov
2015-04-27  2:36     ` Rajendra Nayak
2015-04-27  2:36       ` Rajendra Nayak
2015-04-23  8:45 ` [RFC/RFT 6/6] spi: " Rajendra Nayak
2015-04-23  8:45   ` Rajendra Nayak

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.