linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: robherring2@gmail.com (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: Resend [PATCH 00/10] ARM: SMP initialization consolidation
Date: Fri, 29 Apr 2011 21:08:07 -0500	[thread overview]
Message-ID: <1304129297-6614-1-git-send-email-robherring2@gmail.com> (raw)

From: Rob Herring <rob.herring@calxeda.com>

Resending since the patches didn't make it thru the 1st time.

In order to avoid duplicating the same platform code yet again for a new 
platform, this series consolidates platforms using similar SMP startup code to
a common implementation. A new kconfig entry SMP_COMMON_PEN is added for
platforms using the common pen functions.

OMAP uses a h/w mechansism for its pen, but it seems like it could use the same
mechansism.

Rob
Rob Herring (10):
  ARM: move Versatile SMP pen code to common location
  ARM: ux500: convert to use common secondary pen code
  ARM: msm: use common secondary pen code
  ARM: add common scu_init_cpus
  ARM: omap: use common scu_init_cpus
  ARM: realview: use common scu_init_cpus
  ARM: vexpress: use common scu_init_cpus
  ARM: ux500: use common scu_init_cpus
  ARM: shmobile: use common scu_init_cpus
  ARM: move set_cpu_present calls to common smp code

 arch/arm/Kconfig                             |    8 ++
 arch/arm/include/asm/smp.h                   |    4 +
 arch/arm/include/asm/smp_scu.h               |    1 +
 arch/arm/kernel/Makefile                     |    3 +-
 arch/arm/kernel/headsmp.S                    |   40 ++++++++++
 arch/arm/kernel/smp.c                        |    4 +
 arch/arm/kernel/smp_pen.c                    |  104 +++++++++++++++++++++++++
 arch/arm/kernel/smp_scu.c                    |   19 +++++
 arch/arm/mach-msm/Makefile                   |    2 +-
 arch/arm/mach-msm/headsmp.S                  |   40 ----------
 arch/arm/mach-msm/platsmp.c                  |   84 +-------------------
 arch/arm/mach-omap2/omap-smp.c               |   25 +------
 arch/arm/mach-realview/include/mach/smp.h    |    3 +
 arch/arm/mach-realview/platsmp.c             |   30 +-------
 arch/arm/mach-shmobile/include/mach/common.h |    2 +-
 arch/arm/mach-shmobile/platsmp.c             |   20 +-----
 arch/arm/mach-shmobile/smp-sh73a0.c          |    6 +-
 arch/arm/mach-ux500/Kconfig                  |    1 +
 arch/arm/mach-ux500/Makefile                 |    2 +-
 arch/arm/mach-ux500/headsmp.S                |   37 ---------
 arch/arm/mach-ux500/include/mach/smp.h       |    4 +-
 arch/arm/mach-ux500/platsmp.c                |  105 +-------------------------
 arch/arm/mach-vexpress/ct-ca9x4.c            |    9 +--
 arch/arm/mach-vexpress/include/mach/smp.h    |    3 +
 arch/arm/mach-vexpress/platsmp.c             |    9 +--
 arch/arm/plat-versatile/Makefile             |    1 -
 arch/arm/plat-versatile/headsmp.S            |   40 ----------
 arch/arm/plat-versatile/platsmp.c            |  104 -------------------------
 28 files changed, 210 insertions(+), 500 deletions(-)
 create mode 100644 arch/arm/kernel/headsmp.S
 create mode 100644 arch/arm/kernel/smp_pen.c
 delete mode 100644 arch/arm/mach-msm/headsmp.S
 delete mode 100644 arch/arm/mach-ux500/headsmp.S
 delete mode 100644 arch/arm/plat-versatile/headsmp.S
 delete mode 100644 arch/arm/plat-versatile/platsmp.c

             reply	other threads:[~2011-04-30  2:08 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-30  2:08 Rob Herring [this message]
2011-04-30  2:08 ` [PATCH 01/10] ARM: move Versatile SMP pen code to common location Rob Herring
2011-04-30  2:08 ` [PATCH 02/10] ARM: ux500: convert to use common secondary pen code Rob Herring
2011-04-30  2:08 ` [PATCH 03/10] ARM: msm: " Rob Herring
2011-04-30  2:08 ` [PATCH 04/10] ARM: add common scu_init_cpus Rob Herring
2011-04-30  2:08 ` [PATCH 05/10] ARM: omap: use " Rob Herring
2011-04-30  2:08 ` [PATCH 06/10] ARM: realview: " Rob Herring
2011-04-30  2:08 ` [PATCH 07/10] ARM: vexpress: " Rob Herring
2011-04-30  2:08 ` [PATCH 08/10] ARM: ux500: " Rob Herring
2011-04-30  2:08 ` [PATCH 09/10] ARM: shmobile: " Rob Herring
2011-04-30  2:08 ` [PATCH 10/10] ARM: move set_cpu_present calls to common smp code Rob Herring
2011-04-30  5:58 ` Resend [PATCH 00/10] ARM: SMP initialization consolidation Stephen Boyd
2011-05-02 23:40   ` Russell King - ARM Linux
2011-05-03 13:57     ` Arnd Bergmann
2011-05-08  9:42       ` Russell King - ARM Linux
2011-05-08 19:38         ` Rob Herring

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=1304129297-6614-1-git-send-email-robherring2@gmail.com \
    --to=robherring2@gmail.com \
    --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).