linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Chander Kashyap <chander.kashyap@linaro.org>
To: linux-arm-kernel@lists.infradead.org
Cc: linux-samsung-soc@vger.kernel.org, linux-serial@vger.kernel.org,
	kgene.kim@samsung.com, t.figa@samsung.com,
	s.nawrocki@samsung.com, mark.rutland@arm.com,
	thomas.ab@samsung.com,
	Chander Kashyap <chander.kashyap@linaro.org>
Subject: [PATCH v4 02/10] ARM: dts: list the CPU nodes for Exynos5250
Date: Tue, 18 Jun 2013 11:59:14 +0530	[thread overview]
Message-ID: <1371536962-13322-3-git-send-email-chander.kashyap@linaro.org> (raw)
In-Reply-To: <1371536962-13322-1-git-send-email-chander.kashyap@linaro.org>

Instead of having to specify the number for CPUs in Exynos5250 in platsmp.c
file, let the number of CPUs be determined by having this information listed
in Exynos5250 device tree file.

Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Reviewed-by: Tomasz Figa <t.figa@samsung.com>
---
 arch/arm/boot/dts/exynos5250.dtsi |   16 ++++++++++++++++
 arch/arm/mach-exynos/platsmp.c    |   10 +++++++---
 2 files changed, 23 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi
index 63ca03d..1aeef98 100644
--- a/arch/arm/boot/dts/exynos5250.dtsi
+++ b/arch/arm/boot/dts/exynos5250.dtsi
@@ -50,6 +50,22 @@
 		pinctrl3 = &pinctrl_3;
 	};
 
+	cpus {
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		cpu@0 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a15";
+			reg = <0>;
+		};
+		cpu@1 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a15";
+			reg = <1>;
+		};
+	};
+
 	pd_gsc: gsc-power-domain@0x10044000 {
 		compatible = "samsung,exynos4210-pd";
 		reg = <0x10044000 0x20>;
diff --git a/arch/arm/mach-exynos/platsmp.c b/arch/arm/mach-exynos/platsmp.c
index 1a4e4e5..85ea4ca 100644
--- a/arch/arm/mach-exynos/platsmp.c
+++ b/arch/arm/mach-exynos/platsmp.c
@@ -180,10 +180,14 @@ static void __init exynos_smp_init_cpus(void)
 	void __iomem *scu_base = scu_base_addr();
 	unsigned int i, ncores;
 
-	if (soc_is_exynos5250())
-		ncores = 2;
-	else
+	if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A9)
 		ncores = scu_base ? scu_get_core_count(scu_base) : 1;
+	else
+		/*
+		 * CPU Nodes are passed thru DT and set_cpu_possible
+		 * is set by "arm_dt_init_cpu_maps".
+		 */
+		return;
 
 	/* sanity check */
 	if (ncores > nr_cpu_ids) {
-- 
1.7.9.5


  parent reply	other threads:[~2013-06-18  6:29 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-18  6:29 [PATCH v4 00/10] ARM: Exynos: Add Exynos5420 SoC support Chander Kashyap
2013-06-18  6:29 ` [PATCH v4 01/10] ARM: dts: fork out common Exynos5 nodes Chander Kashyap
2013-06-18  6:29 ` Chander Kashyap [this message]
2013-08-29  8:15   ` [PATCH v4 02/10] ARM: dts: list the CPU nodes for Exynos5250 Viresh Kumar
2013-08-29 11:51     ` Tomasz Figa
2013-09-02  6:37       ` Chander Kashyap
2013-09-02  7:10         ` Viresh Kumar
2013-09-10 11:19         ` Viresh Kumar
2013-06-18  6:29 ` [PATCH v4 03/10] ARM: Exynos: Add support for Exynos5420 SoC Chander Kashyap
2013-06-18  6:29 ` [PATCH v4 04/10] serial: samsung: select Exynos specific driver data if ARCH_EXYNOS is defined Chander Kashyap
2013-06-18  6:50   ` Girish KS
2013-06-18 10:14     ` Chander Kashyap
2013-06-18  6:29 ` [PATCH v4 05/10] ARM: Exynos: use four additional chipid bits to identify Exynos family Chander Kashyap
2013-06-18  6:29 ` [PATCH v4 06/10] clk: exynos5420: register clocks using common clock framework Chander Kashyap
2013-06-18 10:28   ` Kukjin Kim
2013-06-22 18:19     ` Mike Turquette
2013-06-18  6:29 ` [PATCH v4 07/10] ARM: dts: Add initial device tree support for Exynos5420 Chander Kashyap
2013-06-18  6:29 ` [PATCH v4 08/10] clocksource: exynos_mct: use (request/free)_irq calls for local timer registration Chander Kashyap
2013-06-18  6:29 ` [PATCH v4 09/10] ARM: Exynos: add secondary CPU boot base location for Exynos5420 Chander Kashyap
2013-06-18  6:29 ` [PATCH v4 10/10] ARM: Exynos: extend soft-reset support " Chander Kashyap
2013-06-18  9:49 ` [PATCH v4 00/10] ARM: Exynos: Add Exynos5420 SoC support Tomasz Figa
2013-06-18 10:13   ` Chander Kashyap
2013-06-18 10:26 ` Kukjin Kim
2013-06-18 10:32   ` Chander Kashyap

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=1371536962-13322-3-git-send-email-chander.kashyap@linaro.org \
    --to=chander.kashyap@linaro.org \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=s.nawrocki@samsung.com \
    --cc=t.figa@samsung.com \
    --cc=thomas.ab@samsung.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 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).