All of lore.kernel.org
 help / color / mirror / Atom feed
From: Russell King - ARM Linux <linux@arm.linux.org.uk>
To: Catalin Marinas <catalin.marinas@arm.com>
Cc: "Anton Vorontsov" <avorontsov@mvista.com>,
	"Kukjin Kim" <kgene.kim@samsung.com>,
	"Srinidhi Kasagar" <srinidhi.kasagar@stericsson.com>,
	"Tony Lindgren" <tony@atomide.com>,
	"Jamie Iles" <jamie.iles@picochip.com>,
	"Colin Cross" <ccross@android.com>,
	linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	linux-tegra@vger.kernel.org, linux-omap@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/8] ARM: SCU: Add common routines for secondary CPU bootup
Date: Thu, 2 Dec 2010 15:24:28 +0000	[thread overview]
Message-ID: <20101202152428.GD10461@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <AANLkTikpjq-8BVanF5W76j0ZdDBur8DyHWSH8GGgJBQs@mail.gmail.com>

On Thu, Dec 02, 2010 at 03:19:05PM +0000, Catalin Marinas wrote:
> On 1 December 2010 00:25, Russell King - ARM Linux
> <linux@arm.linux.org.uk> wrote:
> > On Tue, Nov 30, 2010 at 11:32:04PM +0000, Russell King - ARM Linux wrote:
> >> Note that I'll go with factoring this out into arch/arm/kernel/smp_scu.c
> >> for the time being, but I'm not convinced about the other parts yet.
> >
> > IOW, something like the attached.  I've gone a little further and removed
> > the now unnecessary scu_enable() and scu_get_core_count() global functions,
> > making scu_enable() static, and eliminating scu_get_core_count() entirely.
> 
> There is some benefit in leaving get_core_count() in the platform
> code. For example, the SCU on Cortex-A15 doesn't expose the core count
> register and we have to get it from somewhere else (for now from some
> L2 cache controller register but in the future it may be hardcoded,
> passed via FDT or simply trying to boot maxcpus).

I notice that there's no way to tell what revision of SCU is implemented
on _any_ mpcore platform.

In light of that, I think there's no point what so ever trying to
consolidate this code - even the control register bits vary in
unpredictable ways between different MPcore implementations.

So we can't say "this is a SCU X and this is its register layout."

And really, having it undetectable except via DT (which from what I
can see, isn't happening any time soon) or via a command line argument
isn't acceptable.

So I think the idea of consolidating the SCU code is a lost cause.

WARNING: multiple messages have this Message-ID (diff)
From: linux@arm.linux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/8] ARM: SCU: Add common routines for secondary CPU bootup
Date: Thu, 2 Dec 2010 15:24:28 +0000	[thread overview]
Message-ID: <20101202152428.GD10461@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <AANLkTikpjq-8BVanF5W76j0ZdDBur8DyHWSH8GGgJBQs@mail.gmail.com>

On Thu, Dec 02, 2010 at 03:19:05PM +0000, Catalin Marinas wrote:
> On 1 December 2010 00:25, Russell King - ARM Linux
> <linux@arm.linux.org.uk> wrote:
> > On Tue, Nov 30, 2010 at 11:32:04PM +0000, Russell King - ARM Linux wrote:
> >> Note that I'll go with factoring this out into arch/arm/kernel/smp_scu.c
> >> for the time being, but I'm not convinced about the other parts yet.
> >
> > IOW, something like the attached. ?I've gone a little further and removed
> > the now unnecessary scu_enable() and scu_get_core_count() global functions,
> > making scu_enable() static, and eliminating scu_get_core_count() entirely.
> 
> There is some benefit in leaving get_core_count() in the platform
> code. For example, the SCU on Cortex-A15 doesn't expose the core count
> register and we have to get it from somewhere else (for now from some
> L2 cache controller register but in the future it may be hardcoded,
> passed via FDT or simply trying to boot maxcpus).

I notice that there's no way to tell what revision of SCU is implemented
on _any_ mpcore platform.

In light of that, I think there's no point what so ever trying to
consolidate this code - even the control register bits vary in
unpredictable ways between different MPcore implementations.

So we can't say "this is a SCU X and this is its register layout."

And really, having it undetectable except via DT (which from what I
can see, isn't happening any time soon) or via a command line argument
isn't acceptable.

So I think the idea of consolidating the SCU code is a lost cause.

  reply	other threads:[~2010-12-02 15:24 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-30 17:16 [PATCH v4 0/8] SMP support for CNS3xxx + some SMP SCU cleanups Anton Vorontsov
2010-11-30 17:16 ` Anton Vorontsov
2010-11-30 17:16 ` [PATCH 1/8] ARM: SCU: Add common routines for secondary CPU bootup Anton Vorontsov
2010-11-30 17:16   ` Anton Vorontsov
2010-11-30 17:16   ` Anton Vorontsov
2010-11-30 22:24   ` Russell King - ARM Linux
2010-11-30 22:24     ` Russell King - ARM Linux
2010-11-30 23:32   ` Russell King - ARM Linux
2010-11-30 23:32     ` Russell King - ARM Linux
2010-12-01  0:25     ` Russell King - ARM Linux
2010-12-01  0:25       ` Russell King - ARM Linux
2010-12-02 15:19       ` Catalin Marinas
2010-12-02 15:19         ` Catalin Marinas
2010-12-02 15:19         ` Catalin Marinas
2010-12-02 15:24         ` Russell King - ARM Linux [this message]
2010-12-02 15:24           ` Russell King - ARM Linux
2010-12-02 16:28           ` Catalin Marinas
2010-12-02 16:28             ` Catalin Marinas
2010-12-02 17:38             ` Russell King - ARM Linux
2010-12-02 17:38               ` Russell King - ARM Linux
2010-12-02 17:55               ` Catalin Marinas
2010-12-02 17:55                 ` Catalin Marinas
2010-12-02 18:01               ` Russell King - ARM Linux
2010-12-02 18:01                 ` Russell King - ARM Linux
2010-12-04  8:48                 ` Russell King - ARM Linux
2010-12-04  8:48                   ` Russell King - ARM Linux
2010-12-04  8:48                   ` Russell King - ARM Linux
2010-12-06  7:28                   ` [PATCH 1/8] ARM: SCU: Add common routines for secondary CPUbootup Santosh Shilimkar
2010-12-06  7:28                     ` Santosh Shilimkar
2010-12-06  7:28                     ` Santosh Shilimkar
2010-12-06  7:28                   ` Santosh Shilimkar
2010-12-04  8:48                 ` [PATCH 1/8] ARM: SCU: Add common routines for secondary CPU bootup Russell King - ARM Linux
2010-12-01  6:21     ` Srinidhi Kasagar
2010-12-01  6:21       ` Srinidhi Kasagar
2010-11-30 17:17 ` [PATCH 2/8] ARM: cns3xxx: Add support for SMP Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 18:14   ` Russell King - ARM Linux
2010-11-30 18:14     ` Russell King - ARM Linux
2010-11-30 17:17 ` [PATCH 3/8] ARM: VExpress: Switch to generic SCU routines Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 23:27   ` Russell King - ARM Linux
2010-11-30 23:27     ` Russell King - ARM Linux
2010-11-30 17:17 ` [PATCH 4/8] ARM: RealView: " Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 17:17 ` [PATCH 5/8] ARM: S5PV310: " Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 17:17 ` [PATCH 6/8] ARM: ux500: " Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 17:17 ` [PATCH 7/8] ARM: tegra: " Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov
2010-11-30 17:17 ` [PATCH 8/8] ARM: OMAP2: " Anton Vorontsov
2010-11-30 17:17   ` Anton Vorontsov

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=20101202152428.GD10461@n2100.arm.linux.org.uk \
    --to=linux@arm.linux.org.uk \
    --cc=avorontsov@mvista.com \
    --cc=catalin.marinas@arm.com \
    --cc=ccross@android.com \
    --cc=jamie.iles@picochip.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=srinidhi.kasagar@stericsson.com \
    --cc=tony@atomide.com \
    --cc=u.kleine-koenig@pengutronix.de \
    /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.