From: Mikko Perttunen <mikko.perttunen-/1wQRMveznE@public.gmane.org>
To: Peter De Schrijver
<pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Cc: swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org,
thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
rjw-LthD3rsA81gm4RdzfppkhA@public.gmane.org,
viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
pwalmsley-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org,
vinceh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org,
pgaikwad-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
tuomas.tynkkynen-X3B1VOXEql0@public.gmane.org,
Tuomas Tynkkynen
<ttynkkynen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Subject: Re: [PATCH v7 05/16] clk: tegra: Add DFLL DVCO reset control for Tegra124
Date: Fri, 13 Feb 2015 12:39:03 +0200 [thread overview]
Message-ID: <54DDD447.8000404@kapsi.fi> (raw)
In-Reply-To: <20150212141944.GK20811-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>
On 02/12/2015 04:19 PM, Peter De Schrijver wrote:
> On Thu, Jan 08, 2015 at 03:22:08PM +0200, Mikko Perttunen wrote:
>> From: Paul Walmsley <pwalmsley-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>>
>> The DVCO present in the DFLL IP block has a separate reset line,
>> exposed via the CAR IP block. This reset line is asserted upon SoC
>> reset. Unless something (such as the DFLL driver) deasserts this
>> line, the DVCO will not oscillate, although reads and writes to the
>> DFLL IP block will complete.
>>
>> Thanks to Aleksandr Frid <afrid-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> for identifying this and
>> saving hours of debugging time.
>>
>
> Should this be done as a reset driver?
Probably through the already existing CAR reset driver. This reset
doesn't fit well with the existing numbering scheme there, though.
Perhaps a magic high-valued constant that represents it.
>
>> Signed-off-by: Paul Walmsley <pwalmsley-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>> [ttynkkynen: ported to tegra124 from tegra114]
>> Signed-off-by: Tuomas Tynkkynen <ttynkkynen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>> Signed-off-by: Mikko Perttunen <mikko.perttunen-/1wQRMveznE@public.gmane.org>
>> ---
>> drivers/clk/tegra/clk-tegra124.c | 47 ++++++++++++++++++++++++++++++++++++++++
>> drivers/clk/tegra/clk.h | 3 +++
>> 2 files changed, 50 insertions(+)
>>
>> diff --git a/drivers/clk/tegra/clk-tegra124.c b/drivers/clk/tegra/clk-tegra124.c
>> index f5f9bac..623b77f 100644
>> --- a/drivers/clk/tegra/clk-tegra124.c
>> +++ b/drivers/clk/tegra/clk-tegra124.c
>> @@ -31,6 +31,9 @@
>> #define CLK_SOURCE_CSITE 0x1d4
>> #define CLK_SOURCE_EMC 0x19c
>>
>> +#define RST_DFLL_DVCO 0x2f4
>> +#define DVFS_DFLL_RESET_SHIFT 0
>> +
>> #define PLLC_BASE 0x80
>> #define PLLC_OUT 0x84
>> #define PLLC_MISC2 0x88
>> @@ -1399,6 +1402,50 @@ static void __init tegra124_clock_apply_init_table(void)
>> tegra_init_from_table(init_table, clks, TEGRA124_CLK_CLK_MAX);
>> }
>>
>> +/**
>> + * tegra124_car_barrier - wait for pending writes to the CAR to complete
>> + *
>> + * Wait for any outstanding writes to the CAR MMIO space from this CPU
>> + * to complete before continuing execution. No return value.
>> + */
>> +static void tegra124_car_barrier(void)
>> +{
>> + readl_relaxed(clk_base + RST_DFLL_DVCO);
>> +}
>> +
>> +/**
>> + * tegra124_clock_assert_dfll_dvco_reset - assert the DFLL's DVCO reset
>> + *
>> + * Assert the reset line of the DFLL's DVCO. No return value.
>> + */
>> +void tegra124_clock_assert_dfll_dvco_reset(void)
>> +{
>> + u32 v;
>> +
>> + v = readl_relaxed(clk_base + RST_DFLL_DVCO);
>> + v |= (1 << DVFS_DFLL_RESET_SHIFT);
>> + writel_relaxed(v, clk_base + RST_DFLL_DVCO);
>> + tegra124_car_barrier();
>> +}
>> +EXPORT_SYMBOL(tegra124_clock_assert_dfll_dvco_reset);
>> +
>> +/**
>> + * tegra124_clock_deassert_dfll_dvco_reset - deassert the DFLL's DVCO reset
>> + *
>> + * Deassert the reset line of the DFLL's DVCO, allowing the DVCO to
>> + * operate. No return value.
>> + */
>> +void tegra124_clock_deassert_dfll_dvco_reset(void)
>> +{
>> + u32 v;
>> +
>> + v = readl_relaxed(clk_base + RST_DFLL_DVCO);
>> + v &= ~(1 << DVFS_DFLL_RESET_SHIFT);
>> + writel_relaxed(v, clk_base + RST_DFLL_DVCO);
>> + tegra124_car_barrier();
>> +}
>> +EXPORT_SYMBOL(tegra124_clock_deassert_dfll_dvco_reset);
>> +
>> static void __init tegra124_clock_init(struct device_node *np)
>> {
>> struct device_node *node;
>> diff --git a/drivers/clk/tegra/clk.h b/drivers/clk/tegra/clk.h
>> index 4e458aa..def0ea4 100644
>> --- a/drivers/clk/tegra/clk.h
>> +++ b/drivers/clk/tegra/clk.h
>> @@ -629,6 +629,9 @@ void tegra114_clock_tune_cpu_trimmers_init(void);
>> void tegra114_clock_assert_dfll_dvco_reset(void);
>> void tegra114_clock_deassert_dfll_dvco_reset(void);
>>
>> +void tegra124_clock_assert_dfll_dvco_reset(void);
>> +void tegra124_clock_deassert_dfll_dvco_reset(void);
>> +
>> typedef void (*tegra_clk_apply_init_table_func)(void);
>> extern tegra_clk_apply_init_table_func tegra_clk_apply_init_table;
>>
>> --
>> 2.2.1
>>
next prev parent reply other threads:[~2015-02-13 10:39 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-08 13:22 [PATCH v7 00/16] Tegra124 CL-DVFS / DFLL clocksource + cpufreq Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 02/16] clk: tegra: Add library for the DFLL clock source (open-loop mode) Mikko Perttunen
[not found] ` <1420723339-30735-3-git-send-email-mikko.perttunen-/1wQRMveznE@public.gmane.org>
2015-02-12 14:04 ` Peter De Schrijver
[not found] ` <1420723339-30735-1-git-send-email-mikko.perttunen-/1wQRMveznE@public.gmane.org>
2015-01-08 13:22 ` [PATCH v7 01/16] clk: tegra: Add binding for the Tegra124 DFLL clocksource Mikko Perttunen
2015-02-12 13:54 ` Peter De Schrijver
2015-02-13 10:19 ` Mikko Perttunen
2015-02-12 22:42 ` Thierry Reding
2015-02-13 9:38 ` Peter De Schrijver
2015-02-13 10:18 ` Mikko Perttunen
2015-02-16 7:11 ` Tuomas Tynkkynen
2015-01-08 13:22 ` [PATCH v7 03/16] clk: tegra: Add closed loop support for the DFLL Mikko Perttunen
2015-02-12 14:12 ` Peter De Schrijver
2015-01-08 13:22 ` [PATCH v7 16/16] ARM: tegra: enable Tegra124 cpufreq driver by default Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 04/16] clk: tegra: Add functions for parsing CVB tables Mikko Perttunen
2015-02-12 14:13 ` Peter De Schrijver
2015-01-08 13:22 ` [PATCH v7 05/16] clk: tegra: Add DFLL DVCO reset control for Tegra124 Mikko Perttunen
2015-02-12 14:19 ` Peter De Schrijver
[not found] ` <20150212141944.GK20811-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>
2015-02-13 10:39 ` Mikko Perttunen [this message]
2015-02-16 9:40 ` Peter De Schrijver
2015-01-08 13:22 ` [PATCH v7 06/16] clk: tegra: Add Tegra124 DFLL clocksource platform driver Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 07/16] clk: tegra: Save/restore CCLKG_BURST_POLICY on suspend Mikko Perttunen
2015-02-12 14:24 ` Peter De Schrijver
2015-01-08 13:22 ` [PATCH v7 08/16] clk: tegra: Add the DFLL as a possible parent of the cclk_g clock Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 09/16] ARM: tegra: Add the DFLL to Tegra124 device tree Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 10/16] ARM: tegra: Enable the DFLL on the Jetson TK1 Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 11/16] cpufreq: tegra124: Add device tree bindings Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 12/16] cpufreq: tegra: Rename tegra-cpufreq to tegra20-cpufreq Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 13/16] cpufreq: Add cpufreq driver for Tegra124 Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 14/16] ARM: tegra: Add entries for cpufreq on Tegra124 Mikko Perttunen
2015-01-08 13:22 ` [PATCH v7 15/16] ARM: tegra: Add CPU regulator to the Jetson TK1 device tree Mikko Perttunen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54DDD447.8000404@kapsi.fi \
--to=mikko.perttunen-/1wqrmvezne@public.gmane.org \
--cc=gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=pgaikwad-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=pwalmsley-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=rjw-LthD3rsA81gm4RdzfppkhA@public.gmane.org \
--cc=swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org \
--cc=thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=ttynkkynen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=tuomas.tynkkynen-X3B1VOXEql0@public.gmane.org \
--cc=vinceh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).