From: Mike Turquette <mturquette@linaro.org>
To: Arun Kumar K <arun.kk@samsung.com>,
linux-samsung-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, cpufreq@vger.kernel.org
Cc: kgene.kim@samsung.com, rjw@rjwysocki.net,
viresh.kumar@linaro.org, tomasz.figa@gmail.com,
arjun.kv@samsung.com, abrestic@chromium.org,
arunkk.samsung@gmail.com
Subject: Re: [PATCH 2/3] clk: exynos5420: Add alias names for cpu clocks
Date: Thu, 19 Dec 2013 00:00:22 -0800 [thread overview]
Message-ID: <20131219080022.18119.20692@quantum> (raw)
In-Reply-To: <1386323284-15646-3-git-send-email-arun.kk@samsung.com>
Quoting Arun Kumar K (2013-12-06 01:48:03)
> Adds alias names for cpu clocks to be used in the cpufreq driver.
>
> Signed-off-by: Arun Kumar K <arun.kk@samsung.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
> ---
> drivers/clk/samsung/clk-exynos5420.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/clk/samsung/clk-exynos5420.c b/drivers/clk/samsung/clk-exynos5420.c
> index 48c4a93..c65c040 100644
> --- a/drivers/clk/samsung/clk-exynos5420.c
> +++ b/drivers/clk/samsung/clk-exynos5420.c
> @@ -316,9 +316,10 @@ static struct samsung_fixed_factor_clock exynos5420_fixed_factor_clks[] __initda
>
> static struct samsung_mux_clock exynos5420_mux_clks[] __initdata = {
> MUX(none, "mout_mspll_kfc", mspll_cpu_p, SRC_TOP7, 8, 2),
> - MUX(none, "mout_mspll_cpu", mspll_cpu_p, SRC_TOP7, 12, 2),
> - MUX(none, "mout_apll", apll_p, SRC_CPU, 0, 1),
> - MUX(none, "mout_cpu", cpu_p, SRC_CPU, 16, 1),
> + MUX_A(none, "mout_mspll_cpu", mspll_cpu_p, SRC_TOP7, 12, 2,
> + "mout_mspll_cpu"),
> + MUX_A(none, "mout_apll", apll_p, SRC_CPU, 0, 1, "mout_apll"),
> + MUX_A(none, "mout_cpu", cpu_p, SRC_CPU, 16, 1, "mout_cpu"),
> MUX(none, "mout_kpll", kpll_p, SRC_KFC, 0, 1),
> MUX(none, "mout_cpu_kfc", kfc_p, SRC_KFC, 16, 1),
>
> @@ -373,7 +374,7 @@ static struct samsung_mux_clock exynos5420_mux_clks[] __initdata = {
>
> MUX(none, "sclk_mpll", mpll_p, SRC_TOP6, 0, 1),
> MUX(none, "sclk_vpll", vpll_p, SRC_TOP6, 4, 1),
> - MUX(none, "sclk_spll", spll_p, SRC_TOP6, 8, 1),
> + MUX_A(none, "sclk_spll", spll_p, SRC_TOP6, 8, 1, "mout_spll"),
> MUX(none, "sclk_ipll", ipll_p, SRC_TOP6, 12, 1),
> MUX(none, "sclk_rpll", rpll_p, SRC_TOP6, 16, 1),
> MUX(none, "sclk_epll", epll_p, SRC_TOP6, 20, 1),
> --
> 1.7.9.5
>
WARNING: multiple messages have this Message-ID (diff)
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/3] clk: exynos5420: Add alias names for cpu clocks
Date: Thu, 19 Dec 2013 00:00:22 -0800 [thread overview]
Message-ID: <20131219080022.18119.20692@quantum> (raw)
In-Reply-To: <1386323284-15646-3-git-send-email-arun.kk@samsung.com>
Quoting Arun Kumar K (2013-12-06 01:48:03)
> Adds alias names for cpu clocks to be used in the cpufreq driver.
>
> Signed-off-by: Arun Kumar K <arun.kk@samsung.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
> ---
> drivers/clk/samsung/clk-exynos5420.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/clk/samsung/clk-exynos5420.c b/drivers/clk/samsung/clk-exynos5420.c
> index 48c4a93..c65c040 100644
> --- a/drivers/clk/samsung/clk-exynos5420.c
> +++ b/drivers/clk/samsung/clk-exynos5420.c
> @@ -316,9 +316,10 @@ static struct samsung_fixed_factor_clock exynos5420_fixed_factor_clks[] __initda
>
> static struct samsung_mux_clock exynos5420_mux_clks[] __initdata = {
> MUX(none, "mout_mspll_kfc", mspll_cpu_p, SRC_TOP7, 8, 2),
> - MUX(none, "mout_mspll_cpu", mspll_cpu_p, SRC_TOP7, 12, 2),
> - MUX(none, "mout_apll", apll_p, SRC_CPU, 0, 1),
> - MUX(none, "mout_cpu", cpu_p, SRC_CPU, 16, 1),
> + MUX_A(none, "mout_mspll_cpu", mspll_cpu_p, SRC_TOP7, 12, 2,
> + "mout_mspll_cpu"),
> + MUX_A(none, "mout_apll", apll_p, SRC_CPU, 0, 1, "mout_apll"),
> + MUX_A(none, "mout_cpu", cpu_p, SRC_CPU, 16, 1, "mout_cpu"),
> MUX(none, "mout_kpll", kpll_p, SRC_KFC, 0, 1),
> MUX(none, "mout_cpu_kfc", kfc_p, SRC_KFC, 16, 1),
>
> @@ -373,7 +374,7 @@ static struct samsung_mux_clock exynos5420_mux_clks[] __initdata = {
>
> MUX(none, "sclk_mpll", mpll_p, SRC_TOP6, 0, 1),
> MUX(none, "sclk_vpll", vpll_p, SRC_TOP6, 4, 1),
> - MUX(none, "sclk_spll", spll_p, SRC_TOP6, 8, 1),
> + MUX_A(none, "sclk_spll", spll_p, SRC_TOP6, 8, 1, "mout_spll"),
> MUX(none, "sclk_ipll", ipll_p, SRC_TOP6, 12, 1),
> MUX(none, "sclk_rpll", rpll_p, SRC_TOP6, 16, 1),
> MUX(none, "sclk_epll", epll_p, SRC_TOP6, 20, 1),
> --
> 1.7.9.5
>
next prev parent reply other threads:[~2013-12-19 8:00 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-06 9:48 [PATCH 0/3] Exynos5420 Cpufreq support Arun Kumar K
2013-12-06 9:48 ` Arun Kumar K
2013-12-06 9:48 ` [PATCH 1/3] ARM: EXYNOS: Add exynos5 CPU clock divider offsets Arun Kumar K
2013-12-06 9:48 ` Arun Kumar K
2013-12-20 21:23 ` Kukjin Kim
2013-12-20 21:23 ` Kukjin Kim
2013-12-06 9:48 ` [PATCH 2/3] clk: exynos5420: Add alias names for cpu clocks Arun Kumar K
2013-12-06 9:48 ` Arun Kumar K
2013-12-19 8:00 ` Mike Turquette [this message]
2013-12-19 8:00 ` Mike Turquette
2013-12-06 9:48 ` [PATCH 3/3] cpufreq: exynos: Add exynos5420 cpufreq driver Arun Kumar K
2013-12-06 9:48 ` Arun Kumar K
2013-12-09 8:23 ` Lukasz Majewski
2013-12-09 8:23 ` Lukasz Majewski
2013-12-10 4:40 ` Arun Kumar K
2013-12-10 4:40 ` Arun Kumar K
2013-12-10 16:32 ` Lukasz Majewski
2013-12-10 16:32 ` Lukasz Majewski
2013-12-17 7:07 ` Jassi Brar
2013-12-17 7:07 ` Jassi Brar
2013-12-17 8:14 ` Lukasz Majewski
2013-12-17 8:14 ` Lukasz Majewski
2013-12-17 8:21 ` Arun Kumar K
2013-12-17 8:21 ` Arun Kumar K
2013-12-17 6:12 ` Viresh Kumar
2013-12-17 6:12 ` Viresh Kumar
2013-12-17 8:00 ` Lukasz Majewski
2013-12-17 8:00 ` Lukasz Majewski
2013-12-17 8:03 ` Viresh Kumar
2013-12-17 8:03 ` Viresh Kumar
2013-12-17 8:05 ` Arun Kumar K
2013-12-17 8:05 ` Arun Kumar K
2013-12-17 9:09 ` Lukasz Majewski
2013-12-17 9:09 ` Lukasz Majewski
2013-12-17 8:03 ` Arun Kumar K
2013-12-17 8:03 ` Arun Kumar K
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=20131219080022.18119.20692@quantum \
--to=mturquette@linaro.org \
--cc=abrestic@chromium.org \
--cc=arjun.kv@samsung.com \
--cc=arun.kk@samsung.com \
--cc=arunkk.samsung@gmail.com \
--cc=cpufreq@vger.kernel.org \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=rjw@rjwysocki.net \
--cc=tomasz.figa@gmail.com \
--cc=viresh.kumar@linaro.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 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.