Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1385181
| From | Jon Hunter <jonathanh@nvidia.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 10/11] arm64: tegra: Add clock properties on cpu0 for Tegra210 |
| Date | 2016-04-22 15:40 +0200 |
| Message-ID | <rqJtp-2Ga-23@gated-at.bofh.it> (permalink) |
| References | <rqGFb-vG-1@gated-at.bofh.it> <rqGFc-vG-15@gated-at.bofh.it> <rqHKW-1ip-5@gated-at.bofh.it> <rqJjH-2A9-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 22/04/16 14:23, Thierry Reding wrote:
> * PGP Signed by an unknown key
>
> On Fri, Apr 22, 2016 at 12:44:21PM +0100, Jon Hunter wrote:
>> Hi Penny,
>>
>> On 22/04/16 11:31, Penny Chiu wrote:
>>> Add clocks, clock-names, and clock-latency into cpu0 node.
>>> These properties will be used by cpufreq driver.
>>>
>>> Signed-off-by: Penny Chiu <pchiu@nvidia.com>
>>> ---
>>> arch/arm64/boot/dts/nvidia/tegra210.dtsi | 6 ++++++
>>> 1 file changed, 6 insertions(+)
>>>
>>> diff --git a/arch/arm64/boot/dts/nvidia/tegra210.dtsi b/arch/arm64/boot/dts/nvidia/tegra210.dtsi
>>> index 204d9cd..1a85857 100644
>>> --- a/arch/arm64/boot/dts/nvidia/tegra210.dtsi
>>> +++ b/arch/arm64/boot/dts/nvidia/tegra210.dtsi
>>> @@ -782,6 +782,12 @@
>>> device_type = "cpu";
>>> compatible = "arm,cortex-a57";
>>> reg = <0>;
>>> + clocks = <&tegra_car TEGRA210_CLK_CCLK_G>,
>>> + <&tegra_car TEGRA210_CLK_PLL_X>,
>>> + <&tegra_car TEGRA210_CLK_PLL_P_OUT4>,
>>> + <&dfll>;
>>> + clock-names = "cpu_g", "pll_x", "pll_p", "dfll";
>>> + clock-latency = <300000>;
>>> };
>>>
>>> cpu@1 {
>>>
>>
>> Can you include a patch with this series to update the binding
>> documentation for the nvidia,tegra124-cpufreq.txt? I think that although
>> there is no specific nvidia,tegra210-cpufreq compatible string the
>> documentation should state that both tegra124 and tegra210 are supported
>> so it is clear.
>>
>> Also I see the above binding no longer includes the "cpu_lp" for
>> tegra210 which I understand we don't use here. However, the binding
>> documentation should reflect this. Having said that, looking at the
>> driver it appears the "cpu_lp" clock is not even used for tegra124. I
>> wonder if we should drop this from the binding documentation and the
>> tegra124.dtsi altogether?
>>
>> What about the "vdd-cpu-supply" property? Don't we need this?
>
> For some reason that seems to have moved into the clock@70110000 node.
Yes I saw that. I surprised that the cpufreq driver would probe without
this, unless I am missing something ...
Jon
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 00/11] arm64: tegra: Add Tegra DFLL for Tegra210 Jetson TX1 Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
[PATCH 09/11] arm64: tegra: Add DFLL clock node on Jetson TX1 Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
Re: [PATCH 09/11] arm64: tegra: Add DFLL clock node on Jetson TX1 Thierry Reding <thierry.reding@gmail.com> - 2016-04-22 15:30 +0200
[PATCH 08/11] arm64: tegra: Add PWM regulator for CPU rail on Jetson TX1 Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
[PATCH 11/11] arm64: config: Enable CPUFreq-DT, Tegra DFLL PWM, and PWM regulator Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
[PATCH 10/11] arm64: tegra: Add clock properties on cpu0 for Tegra210 Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
Re: [PATCH 10/11] arm64: tegra: Add clock properties on cpu0 for Tegra210 Jon Hunter <jonathanh@nvidia.com> - 2016-04-22 13:50 +0200
Re: [PATCH 10/11] arm64: tegra: Add clock properties on cpu0 for Tegra210 Thierry Reding <thierry.reding@gmail.com> - 2016-04-22 15:30 +0200
Re: [PATCH 10/11] arm64: tegra: Add clock properties on cpu0 for Tegra210 Jon Hunter <jonathanh@nvidia.com> - 2016-04-22 15:40 +0200
[PATCH 06/11] clk: tegra: dfll: Add PWM inferface Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
[PATCH 02/11] clk: tegra: dfll: Move SoC specific data into of_device_id Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
Re: [PATCH 02/11] clk: tegra: dfll: Move SoC specific data into of_device_id Thierry Reding <thierry.reding@gmail.com> - 2016-04-22 15:10 +0200
[PATCH 03/11] clk: tegra: Add DFLL DVCO reset control for Tegra210 Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
Re: [PATCH 03/11] clk: tegra: Add DFLL DVCO reset control for Tegra210 Thierry Reding <thierry.reding@gmail.com> - 2016-04-22 15:20 +0200
[PATCH 01/11] clk: tegra: dfll: Fix voltage comparison Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
[PATCH 05/11] pwm: tegra-dfll: Add driver for Tegra DFLL PWM controller Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
Re: [PATCH 05/11] pwm: tegra-dfll: Add driver for Tegra DFLL PWM controller Thierry Reding <thierry.reding@gmail.com> - 2016-04-22 15:00 +0200
[PATCH 04/11] clk: tegra: Add Tegra210 support in DFLL driver Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
Re: [PATCH 04/11] clk: tegra: Add Tegra210 support in DFLL driver Thierry Reding <thierry.reding@gmail.com> - 2016-04-22 15:20 +0200
[PATCH 07/11] cpufreq: tegra124: Add Tegra210 support Penny Chiu <pchiu@nvidia.com> - 2016-04-22 12:40 +0200
Re: [PATCH 07/11] cpufreq: tegra124: Add Tegra210 support Viresh Kumar <viresh.kumar@linaro.org> - 2016-04-22 13:10 +0200
csiph-web