linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V8 0/8] Add cpufreq and cci devfreq for mt8183, and SVS support
@ 2021-03-23 11:33 Andrew-sh.Cheng
  2021-03-23 11:33 ` [PATCH V8 1/8] PM / devfreq: Add cpu based scaling support to passive_governor Andrew-sh.Cheng
                   ` (7 more replies)
  0 siblings, 8 replies; 31+ messages in thread
From: Andrew-sh.Cheng @ 2021-03-23 11:33 UTC (permalink / raw)
  To: MyungJoo Ham, Kyungmin Park, Chanwoo Choi, Rob Herring,
	Mark Rutland, Matthias Brugger, Rafael J. Wysocki, Viresh Kumar,
	Nishanth Menon, Stephen Boyd, Liam Girdwood, Mark Brown
  Cc: linux-pm, devicetree, linux-arm-kernel, linux-mediatek,
	linux-kernel, srv_heupstream, Andrew-sh.Cheng

From: "Andrew-sh.Cheng" <andrew-sh.cheng@mediatek.com>

MT8183 supports CPU DVFS and CCI DVFS, and LITTLE cpus and CCI are in the same voltage domain.
So, this series is to add drivers to handle the voltage coupling between CPU and CCI DVFS.

For SVS support, need OPP_EVENT_ADJUST_VOLTAGE and corresponding reaction.

Change since v7:
	- Separate part of "[v7,6/8] cpufreq: mediatek: add opp notification for SVS support" into another patch.
		- "cpufreq: mediatek: Add record of previous desired vproc value"
		- This is for case of there are multiple users on Vproc.
		- cpufreq will record desired voltage.
	- For "[v7,8/8] arm64: dts: mediatek: add cpufreq and cci devfreq nodes for mt8183"
		- Add "required-opps" for cci to make cpufreq based passive governor work.
	- Depend on patches have already in K-5.12

Andrew-sh.Cheng (7):
  cpufreq: mediatek: Enable clock and regulator
  dt-bindings: devfreq: add compatible for mt8183 cci devfreq
  devfreq: add mediatek cci devfreq
  cpufreq: mediatek: Add record of previous desired vproc value
  cpufreq: mediatek: add opp notification for SVS support
  devfreq: mediatek: cci devfreq register opp notification for SVS
    support
  arm64: dts: mediatek: add cpufreq and cci devfreq nodes for mt8183

Saravana Kannan (1):
  PM / devfreq: Add cpu based scaling support to passive_governor

 .../devicetree/bindings/devfreq/mt8183-cci.yaml    |  51 ++++
 arch/arm64/boot/dts/mediatek/mt8183-evb.dts        |  36 +++
 arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi     |   4 +
 arch/arm64/boot/dts/mediatek/mt8183.dtsi           | 277 +++++++++++++++++
 drivers/cpufreq/mediatek-cpufreq.c                 | 122 +++++++-
 drivers/devfreq/Kconfig                            |  12 +
 drivers/devfreq/Makefile                           |   1 +
 drivers/devfreq/governor_passive.c                 | 329 ++++++++++++++++++++-
 drivers/devfreq/mt8183-cci-devfreq.c               | 225 ++++++++++++++
 include/linux/devfreq.h                            |  29 +-
 10 files changed, 1060 insertions(+), 26 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/devfreq/mt8183-cci.yaml
 create mode 100644 drivers/devfreq/mt8183-cci-devfreq.c

-- 
2.12.5
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2021-05-31  7:57 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-23 11:33 [PATCH V8 0/8] Add cpufreq and cci devfreq for mt8183, and SVS support Andrew-sh.Cheng
2021-03-23 11:33 ` [PATCH V8 1/8] PM / devfreq: Add cpu based scaling support to passive_governor Andrew-sh.Cheng
2021-03-25  7:42   ` Chanwoo Choi
2021-03-25  8:14   ` Chanwoo Choi
2021-03-31  8:03     ` andrew-sh.cheng
2021-03-31  8:27       ` Chanwoo Choi
2021-03-31  8:35         ` Chanwoo Choi
2021-03-31 13:03           ` andrew-sh.cheng
2021-04-01  0:16             ` Chanwoo Choi
2021-04-08  2:47               ` Chanwoo Choi
2021-04-22 13:34                 ` andrew-sh.cheng
2021-05-26  2:22                 ` andrew-sh.cheng
2021-05-26  3:08                   ` Chanwoo Choi
2021-05-31  3:22                     ` andrew-sh.cheng
2021-05-31  7:56                       ` Chanwoo Choi
     [not found]                         ` <CACb=7PUkpMkDOJ6dDHXhJ5ep4e9u8ZVYM8M2iC-iwHXn13t3DQ@mail.gmail.com>
2021-05-31  8:13                           ` Chanwoo Choi
2021-03-31 10:46     ` Hsin-Yi Wang
2021-03-23 11:33 ` [PATCH V8 2/8] cpufreq: mediatek: Enable clock and regulator Andrew-sh.Cheng
2021-03-30  4:36   ` Viresh Kumar
2021-03-31  5:21     ` andrew-sh.cheng
2021-03-31  6:17       ` Viresh Kumar
2021-03-23 11:33 ` [PATCH V8 3/8] dt-bindings: devfreq: add compatible for mt8183 cci devfreq Andrew-sh.Cheng
2021-03-23 11:33 ` [PATCH V8 4/8] devfreq: add mediatek " Andrew-sh.Cheng
2021-03-25  8:04   ` Chanwoo Choi
2021-03-31  6:21     ` andrew-sh.cheng
2021-03-23 11:33 ` [PATCH V8 5/8] cpufreq: mediatek: Add record of previous desired vproc value Andrew-sh.Cheng
2021-03-23 11:33 ` [PATCH V8 6/8] cpufreq: mediatek: add opp notification for SVS support Andrew-sh.Cheng
2021-03-23 11:34 ` [PATCH V8 7/8] devfreq: mediatek: cci devfreq register " Andrew-sh.Cheng
2021-03-25  8:11   ` Chanwoo Choi
2021-03-31  7:53     ` andrew-sh.cheng
2021-03-23 11:34 ` [PATCH V8 8/8] arm64: dts: mediatek: add cpufreq and cci devfreq nodes for mt8183 Andrew-sh.Cheng

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).