From: Kukjin Kim <kgene.kim@samsung.com>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: linux-samsung-soc@vger.kernel.org,
Mark Rutland <mark.rutland@arm.com>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
Thomas Abraham <ta.omasab@gmail.com>,
Tomasz Figa <t.figa@samsung.com>,
linux-kernel@vger.kernel.org, Kukjin Kim <kgene.kim@samsung.com>,
linux-arm-kernel@lists.infradead.org,
Marek Szyprowski <m.szyprowski@samsung.com>
Subject: Re: [PATCH v2] ARM: dts: add CPU nodes for Exynos4 SoCs
Date: Fri, 25 Jul 2014 08:31:06 +0900 [thread overview]
Message-ID: <53D1973A.9060907@samsung.com> (raw)
In-Reply-To: <1444042.RbiCcg7JnP@amdc1032>
On 07/21/14 22:57, Bartlomiej Zolnierkiewicz wrote:
> Recent patch by Tomasz Figa ("irqchip: gic: Fix core ID calculation
> when topology is read from DT") fixed GIC driver to filter cluster ID
> from values returned by cpu_logical_map() for SoCs having registers
> mapped without per-CPU banking making it is possible to add CPU nodes
> for Exynos4 SoCs. In case of Exynos SoCs these CPU nodes are also
> required by future changes adding initialization of cpuidle states in
> Exynos cpuidle driver through DT.
>
> Tested on Origen board (Exynos4210 SoC) and Trats2 (Exynos4412 SoC).
>
> Signed-off-by: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> ---
> Based on next-20140717 branch of linux-next tree +
> - [PATCH 2/6] ARM: EXYNOS: Fix core ID used by platsmp and hotplug code
> http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg32811.html
> - [PATCH] irqchip: gic: Fix core ID calculation when topology is read from DT
> http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg34277.html
>
> v2:
> - match the unit-address with the reg
>
> arch/arm/boot/dts/exynos4210.dtsi | 17 +++++++++++++++++
> arch/arm/boot/dts/exynos4212.dtsi | 17 +++++++++++++++++
> arch/arm/boot/dts/exynos4412.dtsi | 29 +++++++++++++++++++++++++++++
> 3 files changed, 63 insertions(+)
>
> diff --git a/arch/arm/boot/dts/exynos4210.dtsi b/arch/arm/boot/dts/exynos4210.dtsi
> index ee3001f..bc2b444 100644
> --- a/arch/arm/boot/dts/exynos4210.dtsi
> +++ b/arch/arm/boot/dts/exynos4210.dtsi
> @@ -31,6 +31,23 @@
> pinctrl2 =&pinctrl_2;
> };
>
> + cpus {
> + #address-cells =<1>;
> + #size-cells =<0>;
> +
> + cpu@900 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0x900>;
> + };
> +
> + cpu@901 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0x901>;
> + };
> + };
> +
> sysram@02020000 {
> compatible = "mmio-sram";
> reg =<0x02020000 0x20000>;
> diff --git a/arch/arm/boot/dts/exynos4212.dtsi b/arch/arm/boot/dts/exynos4212.dtsi
> index 3c00e6e..dd0a43e 100644
> --- a/arch/arm/boot/dts/exynos4212.dtsi
> +++ b/arch/arm/boot/dts/exynos4212.dtsi
> @@ -22,6 +22,23 @@
> / {
> compatible = "samsung,exynos4212", "samsung,exynos4";
>
> + cpus {
> + #address-cells =<1>;
> + #size-cells =<0>;
> +
> + cpu@A00 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA00>;
> + };
> +
> + cpu@A01 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA01>;
> + };
> + };
> +
> combiner: interrupt-controller@10440000 {
> samsung,combiner-nr =<18>;
> };
> diff --git a/arch/arm/boot/dts/exynos4412.dtsi b/arch/arm/boot/dts/exynos4412.dtsi
> index c42a3e1..435a722 100644
> --- a/arch/arm/boot/dts/exynos4412.dtsi
> +++ b/arch/arm/boot/dts/exynos4412.dtsi
> @@ -22,6 +22,35 @@
> / {
> compatible = "samsung,exynos4412", "samsung,exynos4";
>
> + cpus {
> + #address-cells =<1>;
> + #size-cells =<0>;
> +
> + cpu@A00 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA00>;
> + };
> +
> + cpu@A01 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA01>;
> + };
> +
> + cpu@A02 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA02>;
> + };
> +
> + cpu@A03 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA03>;
> + };
> + };
> +
> combiner: interrupt-controller@10440000 {
> samsung,combiner-nr =<20>;
> };
OK, I'm fine on this, will apply.
Thanks,
Kukjin
WARNING: multiple messages have this Message-ID (diff)
From: kgene.kim@samsung.com (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] ARM: dts: add CPU nodes for Exynos4 SoCs
Date: Fri, 25 Jul 2014 08:31:06 +0900 [thread overview]
Message-ID: <53D1973A.9060907@samsung.com> (raw)
In-Reply-To: <1444042.RbiCcg7JnP@amdc1032>
On 07/21/14 22:57, Bartlomiej Zolnierkiewicz wrote:
> Recent patch by Tomasz Figa ("irqchip: gic: Fix core ID calculation
> when topology is read from DT") fixed GIC driver to filter cluster ID
> from values returned by cpu_logical_map() for SoCs having registers
> mapped without per-CPU banking making it is possible to add CPU nodes
> for Exynos4 SoCs. In case of Exynos SoCs these CPU nodes are also
> required by future changes adding initialization of cpuidle states in
> Exynos cpuidle driver through DT.
>
> Tested on Origen board (Exynos4210 SoC) and Trats2 (Exynos4412 SoC).
>
> Signed-off-by: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> ---
> Based on next-20140717 branch of linux-next tree +
> - [PATCH 2/6] ARM: EXYNOS: Fix core ID used by platsmp and hotplug code
> http://www.mail-archive.com/linux-samsung-soc at vger.kernel.org/msg32811.html
> - [PATCH] irqchip: gic: Fix core ID calculation when topology is read from DT
> http://www.mail-archive.com/linux-samsung-soc at vger.kernel.org/msg34277.html
>
> v2:
> - match the unit-address with the reg
>
> arch/arm/boot/dts/exynos4210.dtsi | 17 +++++++++++++++++
> arch/arm/boot/dts/exynos4212.dtsi | 17 +++++++++++++++++
> arch/arm/boot/dts/exynos4412.dtsi | 29 +++++++++++++++++++++++++++++
> 3 files changed, 63 insertions(+)
>
> diff --git a/arch/arm/boot/dts/exynos4210.dtsi b/arch/arm/boot/dts/exynos4210.dtsi
> index ee3001f..bc2b444 100644
> --- a/arch/arm/boot/dts/exynos4210.dtsi
> +++ b/arch/arm/boot/dts/exynos4210.dtsi
> @@ -31,6 +31,23 @@
> pinctrl2 =&pinctrl_2;
> };
>
> + cpus {
> + #address-cells =<1>;
> + #size-cells =<0>;
> +
> + cpu at 900 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0x900>;
> + };
> +
> + cpu at 901 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0x901>;
> + };
> + };
> +
> sysram at 02020000 {
> compatible = "mmio-sram";
> reg =<0x02020000 0x20000>;
> diff --git a/arch/arm/boot/dts/exynos4212.dtsi b/arch/arm/boot/dts/exynos4212.dtsi
> index 3c00e6e..dd0a43e 100644
> --- a/arch/arm/boot/dts/exynos4212.dtsi
> +++ b/arch/arm/boot/dts/exynos4212.dtsi
> @@ -22,6 +22,23 @@
> / {
> compatible = "samsung,exynos4212", "samsung,exynos4";
>
> + cpus {
> + #address-cells =<1>;
> + #size-cells =<0>;
> +
> + cpu at A00 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA00>;
> + };
> +
> + cpu at A01 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA01>;
> + };
> + };
> +
> combiner: interrupt-controller at 10440000 {
> samsung,combiner-nr =<18>;
> };
> diff --git a/arch/arm/boot/dts/exynos4412.dtsi b/arch/arm/boot/dts/exynos4412.dtsi
> index c42a3e1..435a722 100644
> --- a/arch/arm/boot/dts/exynos4412.dtsi
> +++ b/arch/arm/boot/dts/exynos4412.dtsi
> @@ -22,6 +22,35 @@
> / {
> compatible = "samsung,exynos4412", "samsung,exynos4";
>
> + cpus {
> + #address-cells =<1>;
> + #size-cells =<0>;
> +
> + cpu at A00 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA00>;
> + };
> +
> + cpu at A01 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA01>;
> + };
> +
> + cpu at A02 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA02>;
> + };
> +
> + cpu at A03 {
> + device_type = "cpu";
> + compatible = "arm,cortex-a9";
> + reg =<0xA03>;
> + };
> + };
> +
> combiner: interrupt-controller at 10440000 {
> samsung,combiner-nr =<20>;
> };
OK, I'm fine on this, will apply.
Thanks,
Kukjin
next prev parent reply other threads:[~2014-07-24 23:31 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-21 13:57 [PATCH v2] ARM: dts: add CPU nodes for Exynos4 SoCs Bartlomiej Zolnierkiewicz
2014-07-21 13:57 ` Bartlomiej Zolnierkiewicz
2014-07-24 23:31 ` Kukjin Kim [this message]
2014-07-24 23:31 ` Kukjin Kim
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=53D1973A.9060907@samsung.com \
--to=kgene.kim@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=m.szyprowski@samsung.com \
--cc=mark.rutland@arm.com \
--cc=t.figa@samsung.com \
--cc=ta.omasab@gmail.com \
/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.