All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
To: Thomas Abraham <thomas.ab@samsung.com>,
	Sylwester Nawrocki <s.nawrocki@samsung.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Kukjin Kim <kgene.kim@samsung.com>, Kukjin Kim <kgene@kernel.org>,
	Viresh Kumar <viresh.kumar@linaro.org>,
	Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: Tomasz Figa <tomasz.figa@gmail.com>,
	Lukasz Majewski <l.majewski@samsung.com>,
	Heiko Stuebner <heiko@sntech.de>,
	Chanwoo Choi <cw00.choi@samsung.com>,
	Kevin Hilman <khilman@linaro.org>,
	Javier Martinez Canillas <javier@dowhile0.org>,
	linux-samsung-soc@vger.kernel.org, linux-clk@vger.kernel.org,
	linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, b.zolnierkie@samsung.com
Subject: [PATCH v3 3/4] ARM: Exynos: switch to using generic cpufreq driver for Exynos5250
Date: Wed, 01 Jul 2015 15:10:37 +0200	[thread overview]
Message-ID: <1435756238-845-4-git-send-email-b.zolnierkie@samsung.com> (raw)
In-Reply-To: <1435756238-845-1-git-send-email-b.zolnierkie@samsung.com>

From: Thomas Abraham <thomas.ab@samsung.com>

The new CPU clock type allows the use of generic CPUfreq driver.
Switch Exynos5250 to using generic cpufreq driver.

Changes by Bartlomiej:
- split Exynos5250 support from the original patch

Cc: Tomasz Figa <tomasz.figa@gmail.com>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Cc: Javier Martinez Canillas <javier@dowhile0.org>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
---
 arch/arm/mach-exynos/exynos.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c
index 5f8ddcd..4015ec3 100644
--- a/arch/arm/mach-exynos/exynos.c
+++ b/arch/arm/mach-exynos/exynos.c
@@ -226,6 +226,7 @@ static void __init exynos_init_irq(void)
 
 static const struct of_device_id exynos_cpufreq_matches[] = {
 	{ .compatible = "samsung,exynos4210", .data = "cpufreq-dt" },
+	{ .compatible = "samsung,exynos5250", .data = "cpufreq-dt" },
 	{ /* sentinel */ }
 };
 
-- 
1.9.1


WARNING: multiple messages have this Message-ID (diff)
From: b.zolnierkie@samsung.com (Bartlomiej Zolnierkiewicz)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 3/4] ARM: Exynos: switch to using generic cpufreq driver for Exynos5250
Date: Wed, 01 Jul 2015 15:10:37 +0200	[thread overview]
Message-ID: <1435756238-845-4-git-send-email-b.zolnierkie@samsung.com> (raw)
In-Reply-To: <1435756238-845-1-git-send-email-b.zolnierkie@samsung.com>

From: Thomas Abraham <thomas.ab@samsung.com>

The new CPU clock type allows the use of generic CPUfreq driver.
Switch Exynos5250 to using generic cpufreq driver.

Changes by Bartlomiej:
- split Exynos5250 support from the original patch

Cc: Tomasz Figa <tomasz.figa@gmail.com>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Cc: Javier Martinez Canillas <javier@dowhile0.org>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
---
 arch/arm/mach-exynos/exynos.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c
index 5f8ddcd..4015ec3 100644
--- a/arch/arm/mach-exynos/exynos.c
+++ b/arch/arm/mach-exynos/exynos.c
@@ -226,6 +226,7 @@ static void __init exynos_init_irq(void)
 
 static const struct of_device_id exynos_cpufreq_matches[] = {
 	{ .compatible = "samsung,exynos4210", .data = "cpufreq-dt" },
+	{ .compatible = "samsung,exynos5250", .data = "cpufreq-dt" },
 	{ /* sentinel */ }
 };
 
-- 
1.9.1

  parent reply	other threads:[~2015-07-01 13:14 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-01 13:10 [PATCH v3 0/4] cpufreq: use generic cpufreq drivers for Exynos5250 platform Bartlomiej Zolnierkiewicz
2015-07-01 13:10 ` Bartlomiej Zolnierkiewicz
2015-07-01 13:10 ` [PATCH v3 1/4] clk: samsung: exynos5250: add cpu clock configuration data and instantiate cpu clock Bartlomiej Zolnierkiewicz
2015-07-01 13:10   ` Bartlomiej Zolnierkiewicz
2015-07-02 11:14   ` Javier Martinez Canillas
2015-07-02 11:14     ` Javier Martinez Canillas
2015-07-02 11:14     ` Javier Martinez Canillas
2015-07-02 11:14     ` Javier Martinez Canillas
2015-07-15 10:01   ` Sylwester nawrocki
2015-07-15 10:01     ` Sylwester nawrocki
2015-07-24  0:39   ` Michael Turquette
2015-07-24  0:39     ` Michael Turquette
2015-07-24  0:39     ` Michael Turquette
2015-07-24  3:48     ` Kukjin Kim
2015-07-24  3:48       ` Kukjin Kim
2015-07-01 13:10 ` [PATCH v3 2/4] ARM: dts: Exynos5250: add CPU OPP and regulator supply property Bartlomiej Zolnierkiewicz
2015-07-01 13:10   ` Bartlomiej Zolnierkiewicz
2015-07-01 23:53   ` Krzysztof Kozlowski
2015-07-01 23:53     ` Krzysztof Kozlowski
2015-07-01 23:53     ` Krzysztof Kozlowski
2015-07-02 11:14     ` Javier Martinez Canillas
2015-07-02 11:14       ` Javier Martinez Canillas
2015-07-02 11:14       ` Javier Martinez Canillas
2015-07-02 11:14       ` Javier Martinez Canillas
2015-07-16  1:34   ` Krzysztof Kozlowski
2015-07-16  1:34     ` Krzysztof Kozlowski
2015-07-16  1:38     ` Krzysztof Kozlowski
2015-07-16  1:38       ` Krzysztof Kozlowski
2015-07-01 13:10 ` Bartlomiej Zolnierkiewicz [this message]
2015-07-01 13:10   ` [PATCH v3 3/4] ARM: Exynos: switch to using generic cpufreq driver for Exynos5250 Bartlomiej Zolnierkiewicz
2015-07-02 11:15   ` Javier Martinez Canillas
2015-07-02 11:15     ` Javier Martinez Canillas
2015-07-02 11:15     ` Javier Martinez Canillas
2015-07-02 11:15     ` Javier Martinez Canillas
2015-07-01 13:10 ` [PATCH v3 4/4] cpufreq: exynos: remove Exynos5250 specific cpufreq driver support Bartlomiej Zolnierkiewicz
2015-07-01 13:10   ` Bartlomiej Zolnierkiewicz
2015-07-02 11:30   ` Javier Martinez Canillas
2015-07-02 11:30     ` Javier Martinez Canillas
2015-07-02 11:30     ` Javier Martinez Canillas
2015-07-09 10:22 ` [PATCH v3 0/4] cpufreq: use generic cpufreq drivers for Exynos5250 platform Viresh Kumar
2015-07-09 10:22   ` Viresh Kumar

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=1435756238-845-4-git-send-email-b.zolnierkie@samsung.com \
    --to=b.zolnierkie@samsung.com \
    --cc=cw00.choi@samsung.com \
    --cc=heiko@sntech.de \
    --cc=javier@dowhile0.org \
    --cc=k.kozlowski@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=kgene@kernel.org \
    --cc=khilman@linaro.org \
    --cc=l.majewski@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=s.nawrocki@samsung.com \
    --cc=thomas.ab@samsung.com \
    --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.