linux-pwm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] arm64: tegra: Add Tegra DFLL for Tegra210 Jetson TX1
@ 2016-04-22 10:31 Penny Chiu
  2016-04-22 10:31 ` [PATCH 01/11] clk: tegra: dfll: Fix voltage comparison Penny Chiu
                   ` (10 more replies)
  0 siblings, 11 replies; 23+ messages in thread
From: Penny Chiu @ 2016-04-22 10:31 UTC (permalink / raw)
  To: swarren, thierry.reding, gnurou, pdeschrijver, pgaikwad, rjw,
	viresh.kumar
  Cc: mturquette, sboyd, linux-tegra, linux-clk, linux-pwm, linux-pm,
	linux-arm-kernel, linux-kernel, Penny Chiu

This patch series implements the DFLL/CL-DVFS clock source on Tegra210
based on Tegra124 DFLL driver, Tegra210 support on Tegra124 cpufreq
driver, and exposes DFLL HW as a PWM controller and provides DFLL_PWM
driver to generate PWM signals to control an OpenVReg (PWM regulator)
for CPU rail.

This patch series has been tested on the Jetson TX1.

Penny Chiu (11):
  clk: tegra: dfll: Fix voltage comparison
  clk: tegra: dfll: Move SoC specific data into of_device_id
  clk: tegra: Add DFLL DVCO reset control for Tegra210
  clk: tegra: Add Tegra210 support in DFLL driver
  pwm: tegra-dfll: Add driver for Tegra DFLL PWM controller
  clk: tegra: dfll: Add PWM inferface
  cpufreq: tegra124: Add Tegra210 support
  arm64: tegra: Add PWM regulator for CPU rail on Jetson TX1
  arm64: tegra: Add DFLL clock node on Jetson TX1
  arm64: tegra: Add clock properties on cpu0 for Tegra210
  arm64: config: Enable CPUFreq-DT, Tegra DFLL PWM, and PWM regulator

 .../bindings/clock/nvidia,tegra124-dfll.txt        |  21 +-
 .../bindings/pwm/nvidia,tegra-dfll-pwm.txt         |  48 +++
 arch/arm64/boot/dts/nvidia/tegra210-p2180.dtsi     |  56 +++
 arch/arm64/boot/dts/nvidia/tegra210-p2371-2180.dts |  23 ++
 arch/arm64/boot/dts/nvidia/tegra210.dtsi           |  21 +
 arch/arm64/configs/defconfig                       |   4 +
 drivers/clk/tegra/Makefile                         |   4 +-
 drivers/clk/tegra/clk-dfll.c                       | 422 +++++++++++++++------
 drivers/clk/tegra/clk-dfll.h                       |   1 +
 drivers/clk/tegra/clk-tegra124-dfll-fcpu.c         | 127 ++++++-
 drivers/clk/tegra/clk-tegra210.c                   |  68 ++++
 drivers/clk/tegra/cvb.c                            |  12 +-
 drivers/clk/tegra/cvb.h                            |   8 +-
 drivers/cpufreq/tegra124-cpufreq.c                 |   3 +-
 drivers/pwm/Kconfig                                |  10 +
 drivers/pwm/Makefile                               |   1 +
 drivers/pwm/pwm-tegra-dfll.c                       | 322 ++++++++++++++++
 include/dt-bindings/reset/tegra210-car.h           |  12 +
 include/soc/tegra/pwm-tegra-dfll.h                 |  27 ++
 19 files changed, 1046 insertions(+), 144 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/pwm/nvidia,tegra-dfll-pwm.txt
 create mode 100644 drivers/pwm/pwm-tegra-dfll.c
 create mode 100644 include/dt-bindings/reset/tegra210-car.h
 create mode 100644 include/soc/tegra/pwm-tegra-dfll.h

-- 
2.8.1


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

end of thread, other threads:[~2016-05-06 23:21 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-22 10:31 [PATCH 00/11] arm64: tegra: Add Tegra DFLL for Tegra210 Jetson TX1 Penny Chiu
2016-04-22 10:31 ` [PATCH 01/11] clk: tegra: dfll: Fix voltage comparison Penny Chiu
2016-04-22 10:31 ` [PATCH 02/11] clk: tegra: dfll: Move SoC specific data into of_device_id Penny Chiu
2016-04-22 13:04   ` Thierry Reding
2016-04-22 10:31 ` [PATCH 03/11] clk: tegra: Add DFLL DVCO reset control for Tegra210 Penny Chiu
2016-04-22 13:11   ` Thierry Reding
2016-04-22 10:31 ` [PATCH 04/11] clk: tegra: Add Tegra210 support in DFLL driver Penny Chiu
2016-04-22 13:16   ` Thierry Reding
2016-04-22 10:31 ` [PATCH 05/11] pwm: tegra-dfll: Add driver for Tegra DFLL PWM controller Penny Chiu
2016-04-22 12:55   ` Thierry Reding
2016-05-06 23:15     ` Stephen Boyd
2016-05-06 23:21       ` Stephen Warren
2016-04-22 10:31 ` [PATCH 06/11] clk: tegra: dfll: Add PWM inferface Penny Chiu
2016-04-22 10:31 ` [PATCH 07/11] cpufreq: tegra124: Add Tegra210 support Penny Chiu
     [not found]   ` <1461321071-6431-8-git-send-email-pchiu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-22 11:00     ` Viresh Kumar
2016-04-22 10:31 ` [PATCH 08/11] arm64: tegra: Add PWM regulator for CPU rail on Jetson TX1 Penny Chiu
2016-04-22 10:31 ` [PATCH 09/11] arm64: tegra: Add DFLL clock node " Penny Chiu
     [not found]   ` <1461321071-6431-10-git-send-email-pchiu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-22 13:28     ` Thierry Reding
2016-04-22 10:31 ` [PATCH 10/11] arm64: tegra: Add clock properties on cpu0 for Tegra210 Penny Chiu
2016-04-22 11:44   ` Jon Hunter
2016-04-22 13:23     ` Thierry Reding
2016-04-22 13:36       ` Jon Hunter
     [not found] ` <1461321071-6431-1-git-send-email-pchiu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-22 10:31   ` [PATCH 11/11] arm64: config: Enable CPUFreq-DT, Tegra DFLL PWM, and PWM regulator Penny Chiu

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