All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] arm64: allwinner: a64: Enable DVFS on A64
@ 2020-01-04  6:35 ` Vasily Khoruzhick
  0 siblings, 0 replies; 36+ messages in thread
From: Vasily Khoruzhick @ 2020-01-04  6:35 UTC (permalink / raw)
  To: Maxime Ripard, Chen-Yu Tsai, Rob Herring, Mark Rutland,
	Michael Turquette, Stephen Boyd, linux-arm-kernel, devicetree,
	linux-clk
  Cc: Vasily Khoruzhick

This series enables DVFS on Allwinner A64. Operating points table is taken
from BSP kernel.

Icenowy Zheng (1):
  clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock

Vasily Khoruzhick (2):
  clk: sunxi-ng: a64: export CLK_CPUX clock for DVFS
  arm64: dts: allwinner: a64: enable DVFS

 .../allwinner/sun50i-a64-amarula-relic.dts    |   4 +
 .../dts/allwinner/sun50i-a64-bananapi-m64.dts |   4 +
 .../dts/allwinner/sun50i-a64-nanopi-a64.dts   |   4 +
 .../dts/allwinner/sun50i-a64-olinuxino.dts    |   4 +
 .../dts/allwinner/sun50i-a64-orangepi-win.dts |   4 +
 .../boot/dts/allwinner/sun50i-a64-pine64.dts  |   4 +
 .../dts/allwinner/sun50i-a64-pinebook.dts     |   4 +
 .../allwinner/sun50i-a64-sopine-baseboard.dts |   4 +
 .../boot/dts/allwinner/sun50i-a64-sopine.dtsi |   4 +
 .../boot/dts/allwinner/sun50i-a64-teres-i.dts |   4 +
 arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi | 102 ++++++++++++++++++
 drivers/clk/sunxi-ng/ccu-sun50i-a64.c         |  28 ++++-
 drivers/clk/sunxi-ng/ccu-sun50i-a64.h         |   1 -
 include/dt-bindings/clock/sun50i-a64-ccu.h    |   1 +
 14 files changed, 170 insertions(+), 2 deletions(-)

-- 
2.24.1


^ permalink raw reply	[flat|nested] 36+ messages in thread
* [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC
@ 2017-09-23  0:15 Icenowy Zheng
  2017-09-23  0:15   ` Icenowy Zheng
  0 siblings, 1 reply; 36+ messages in thread
From: Icenowy Zheng @ 2017-09-23  0:15 UTC (permalink / raw)
  To: Maxime Ripard, Chen-Yu Tsai
  Cc: linux-arm-kernel, devicetree, linux-kernel, linux-clk,
	linux-sunxi, Icenowy Zheng

This patchset imports simple DVFS support for Allwinner A64 SoC.

As the thermal sensor driver is not yet implemented and some boards
have still no AXP PMIC support, now only two OPPs are present --
648MHz@1.04V and 816MHz@1.1V to prevent overheat or undervoltage.

PATCH 1 is a fix to the CCU driver of A64, and the remaining patches
set up the device tree bits of the DVFS on Pine64.

Icenowy Zheng (3):
  clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock
  arm64: allwinner: a64: add CPU opp table
  arm64: allwinner: a64: set CPU regulator for Pine64

 .../arm64/boot/dts/allwinner/sun50i-a64-pine64.dts |  4 ++++
 arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi      | 24 +++++++++++++++++++
 drivers/clk/sunxi-ng/ccu-sun50i-a64.c              | 28 +++++++++++++++++++++-
 3 files changed, 55 insertions(+), 1 deletion(-)

-- 
2.13.5

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

end of thread, other threads:[~2020-01-07 17:09 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-04  6:35 [PATCH 0/3] arm64: allwinner: a64: Enable DVFS on A64 Vasily Khoruzhick
2020-01-04  6:35 ` Vasily Khoruzhick
2020-01-04  6:35 ` [PATCH 1/3] clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock Vasily Khoruzhick
2020-01-04  6:35   ` Vasily Khoruzhick
2020-01-04  6:42   ` Vasily Khoruzhick
2020-01-04  6:42     ` Vasily Khoruzhick
2020-01-04  8:18     ` Maxime Ripard
2020-01-04  8:18       ` Maxime Ripard
2020-01-04  6:35 ` [PATCH 2/3] clk: sunxi-ng: a64: export CLK_CPUX clock for DVFS Vasily Khoruzhick
2020-01-04  6:35   ` Vasily Khoruzhick
2020-01-04  8:18   ` Maxime Ripard
2020-01-04  8:18     ` Maxime Ripard
2020-01-04  6:35 ` [PATCH 3/3] arm64: dts: allwinner: a64: enable DVFS Vasily Khoruzhick
2020-01-04  6:35   ` Vasily Khoruzhick
2020-01-04  8:37   ` Maxime Ripard
2020-01-04  8:37     ` Maxime Ripard
2020-01-04 16:24     ` Vasily Khoruzhick
2020-01-04 16:24       ` Vasily Khoruzhick
2020-01-07 17:09       ` Maxime Ripard
2020-01-07 17:09         ` Maxime Ripard
  -- strict thread matches above, loose matches on Subject: below --
2017-09-23  0:15 [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC Icenowy Zheng
2017-09-23  0:15 ` [PATCH 1/3] clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock Icenowy Zheng
2017-09-23  0:15   ` Icenowy Zheng
2017-09-23  0:15   ` Icenowy Zheng
2017-09-28 10:27   ` Maxime Ripard
2017-09-28 10:27     ` Maxime Ripard
2017-09-28 10:27     ` Maxime Ripard
2017-09-28 10:42     ` icenowy
2017-09-28 10:42       ` icenowy at aosc.io
2017-09-28 10:42       ` icenowy-h8G6r0blFSE
2017-09-28 14:20       ` Maxime Ripard
2017-09-28 14:20         ` Maxime Ripard
2017-09-28 14:20         ` Maxime Ripard
2017-09-28 14:24         ` icenowy
2017-09-28 14:24           ` icenowy at aosc.io
2017-09-28 14:31           ` Maxime Ripard
2017-09-28 14:31             ` Maxime Ripard

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.