From: linux@arm.linux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 00/10] Per SoC descriptor
Date: Thu, 13 Oct 2011 11:32:37 +0100 [thread overview]
Message-ID: <20111013103237.GS21648@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <1318255342-17451-1-git-send-email-marc.zyngier@arm.com>
On Mon, Oct 10, 2011 at 03:02:12PM +0100, Marc Zyngier wrote:
> arch/arm/include/asm/mach/arch.h | 2 +
> arch/arm/include/asm/smp.h | 15 -----
> arch/arm/include/asm/soc.h | 64 ++++++++++++++++++++
> arch/arm/kernel/setup.c | 8 +++
> arch/arm/kernel/smp.c | 73 ++++++++++++++++++++++-
> arch/arm/mach-exynos4/core.h | 14 ++++
> arch/arm/mach-exynos4/cpu.c | 8 +++
> arch/arm/mach-exynos4/hotplug.c | 8 ++-
> arch/arm/mach-exynos4/mach-armlex4210.c | 3 +
> arch/arm/mach-exynos4/mach-nuri.c | 3 +
> arch/arm/mach-exynos4/mach-origen.c | 3 +
> arch/arm/mach-exynos4/mach-smdk4x12.c | 4 +
> arch/arm/mach-exynos4/mach-smdkv310.c | 4 +
> arch/arm/mach-exynos4/mach-universal_c210.c | 3 +
> arch/arm/mach-exynos4/platsmp.c | 25 +++++++-
> arch/arm/mach-msm/Makefile | 2 +-
> arch/arm/mach-msm/board-msm8960.c | 3 +
> arch/arm/mach-msm/board-msm8x60.c | 7 ++
> arch/arm/mach-msm/core.c | 17 +++++
> arch/arm/mach-msm/core.h | 9 +++
> arch/arm/mach-msm/hotplug.c | 8 ++-
> arch/arm/mach-msm/platsmp.c | 24 ++++++-
> arch/arm/mach-omap2/board-4430sdp.c | 1 +
> arch/arm/mach-omap2/board-omap4panda.c | 1 +
> arch/arm/mach-omap2/include/mach/omap4-common.h | 14 ++++
> arch/arm/mach-omap2/omap-hotplug.c | 6 +-
> arch/arm/mach-omap2/omap-smp.c | 24 ++++++-
> arch/arm/mach-omap2/omap4-common.c | 7 ++
> arch/arm/mach-realview/core.c | 7 ++
> arch/arm/mach-realview/core.h | 9 +++
> arch/arm/mach-realview/hotplug.c | 6 +-
> arch/arm/mach-realview/platsmp.c | 24 ++++++-
> arch/arm/mach-realview/realview_eb.c | 1 +
> arch/arm/mach-realview/realview_pb1176.c | 1 +
> arch/arm/mach-realview/realview_pb11mp.c | 1 +
> arch/arm/mach-realview/realview_pba8.c | 1 +
> arch/arm/mach-realview/realview_pbx.c | 1 +
> arch/arm/mach-shmobile/Makefile | 2 +-
> arch/arm/mach-shmobile/board-ag5evm.c | 1 +
> arch/arm/mach-shmobile/hotplug.c | 8 ++-
> arch/arm/mach-shmobile/include/mach/common.h | 7 +-
> arch/arm/mach-shmobile/include/mach/sh73a0.h | 6 ++
> arch/arm/mach-shmobile/platsmp.c | 68 ---------------------
> arch/arm/mach-shmobile/setup-sh73a0.c | 6 ++
> arch/arm/mach-shmobile/smp-sh73a0.c | 35 ++++++++++-
> arch/arm/mach-tegra/board-dt.c | 2 +
> arch/arm/mach-tegra/board-harmony.c | 2 +
> arch/arm/mach-tegra/board-paz00.c | 2 +
> arch/arm/mach-tegra/board-seaboard.c | 4 +
> arch/arm/mach-tegra/board-trimslice.c | 2 +
> arch/arm/mach-tegra/common.c | 8 +++
> arch/arm/mach-tegra/common.h | 11 ++++
> arch/arm/mach-tegra/hotplug.c | 6 +-
> arch/arm/mach-tegra/platsmp.c | 26 +++++++-
> arch/arm/mach-ux500/board-mop500.c | 3 +
> arch/arm/mach-ux500/board-u5500.c | 1 +
> arch/arm/mach-ux500/hotplug.c | 8 ++-
> arch/arm/mach-ux500/include/mach/setup.h | 9 +++
> arch/arm/mach-ux500/platsmp.c | 23 ++++++-
> arch/arm/mach-vexpress/core.h | 10 +++
> arch/arm/mach-vexpress/hotplug.c | 6 +-
> arch/arm/mach-vexpress/platsmp.c | 24 ++++++-
> arch/arm/mach-vexpress/v2m.c | 9 +++
> arch/arm/plat-versatile/include/plat/platsmp.h | 14 ++++
> arch/arm/plat-versatile/platsmp.c | 4 +-
> 65 files changed, 569 insertions(+), 149 deletions(-)
This isn't particularly appealing for something that's supposed to
be a clean up - it's introducing 400+ new lines of code. It looks like
most of this comes from the platform stuff rather than core stuff.
Can't we do any better with this? We really need things to be going
in the other direction.
next prev parent reply other threads:[~2011-10-13 10:32 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-10 14:02 [PATCH v5 00/10] Per SoC descriptor Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 01/10] ARM: SoC: Introduce per " Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 02/10] ARM: SoC: Add per SoC SMP and CPU hotplug operations Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 03/10] ARM: SoC: convert VExpress/RealView to SoC descriptor Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 04/10] ARM: SoC: convert OMAP4 " Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 05/10] ARM: SoC: convert Tegra " Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 06/10] ARM: SoC: convert Exynos4 " Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 07/10] ARM: SoC: convert MSM SMP " Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 08/10] ARM: SoC: convert ux500 " Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 09/10] ARM: SoC: convert shmobile sh73a0 " Marc Zyngier
2011-10-10 14:02 ` [PATCH v5 10/10] ARM: smp: Make SoC descriptor mandatory for SMP platforms Marc Zyngier
2011-10-13 10:32 ` Russell King - ARM Linux [this message]
2011-10-13 15:25 ` [PATCH v5 00/10] Per SoC descriptor Marc Zyngier
2011-10-13 15:34 ` Russell King - ARM Linux
2011-10-13 16:14 ` Arnd Bergmann
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=20111013103237.GS21648@n2100.arm.linux.org.uk \
--to=linux@arm.linux.org.uk \
--cc=linux-arm-kernel@lists.infradead.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 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).