linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Simon Horman <horms+renesas@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 00/14] Renesas ARM based SoC SMP updates for v3.13
Date: Tue, 01 Oct 2013 02:35:35 +0000	[thread overview]
Message-ID: <cover.1380532277.git.horms+renesas@verge.net.au> (raw)

Hi Kevin, Olof and Arnd,

please consider these Renesas ARM based SoC SMP updates for v3.13.

This pull-request is based on renesas-cleanups-v3.13 which
I has also sent a pull-request for today. The reason for choosing
that base is to reduce conflicts.


The following changes since commit cde214a890f81797a5eee94fffc89c1de21ed991:

  ARM: shmobile: r8a7790: Constify platform data and resources (2013-09-19 14:33:44 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-smp-for-v3.13

for you to fetch changes up to 43651b15de94d6a5e188ea032311e9661ec708d2:

  ARM: shmobile: Include CA7 cores in APMU table (2013-09-30 17:56:11 +0900)

----------------------------------------------------------------
Renesas ARM based SoC SMP updates for v3.13

* Add CPU notifier based SCU boot vector code
  - Use on emev2, r8a7779 and sh73a0 SoCs
  - Remove now unused shmobile_smp_scu_boot_secondary()
* Add shared APMU SMP support code
  - Use to add SMP support for r8a7790 SoC
* Introduce shmobile_boot_size
* Expose shmobile_invalidate_start()
* Introduce shmobile_smp_cpu_disable()
  - Use on sh73a0 SoC
  - Remove now unused shmobile_smp_init_cpus()

----------------------------------------------------------------
Magnus Damm (14):
      ARM: shmobile: Introduce shmobile_smp_cpu_disable()
      ARM: shmobile: Use shmobile_smp_cpu_disable() on sh73a0
      ARM: shmobile: Remove unused shmobile_smp_init_cpus()
      ARM: shmobile: Expose shmobile_invalidate_start()
      ARM: shmobile: Introduce shmobile_boot_size
      ARM: shmobile: Shared APMU SMP support code without DT
      ARM: shmobile: Add r8a7790 SMP support using APMU code
      ARM: shmobile: Add CPU notifier based SCU boot vector code
      ARM: shmobile: Let sh73a0 rely on SCU CPU notifier
      ARM: shmobile: Let EMEV2 rely on SCU CPU notifier
      ARM: shmobile: Let r8a7779 rely on SCU CPU notifier
      ARM: shmobile: Remove shmobile_smp_scu_boot_secondary()
      ARM: shmobile: Extend APMU code to allow single cluster only
      ARM: shmobile: Include CA7 cores in APMU table

 arch/arm/mach-shmobile/Makefile                |   1 +
 arch/arm/mach-shmobile/board-lager-reference.c |   1 +
 arch/arm/mach-shmobile/board-lager.c           |   1 +
 arch/arm/mach-shmobile/headsmp.S               |   3 +
 arch/arm/mach-shmobile/include/mach/common.h   |  12 +-
 arch/arm/mach-shmobile/include/mach/r8a7790.h  |   1 +
 arch/arm/mach-shmobile/platsmp-apmu.c          | 195 +++++++++++++++++++++++++
 arch/arm/mach-shmobile/platsmp-scu.c           |  30 +++-
 arch/arm/mach-shmobile/platsmp.c               |  22 +--
 arch/arm/mach-shmobile/setup-r8a7790.c         |   1 +
 arch/arm/mach-shmobile/smp-emev2.c             |   6 -
 arch/arm/mach-shmobile/smp-r8a7779.c           |   4 -
 arch/arm/mach-shmobile/smp-r8a7790.c           |  67 +++++++++
 arch/arm/mach-shmobile/smp-sh73a0.c            |  14 +-
 14 files changed, 310 insertions(+), 48 deletions(-)
 create mode 100644 arch/arm/mach-shmobile/platsmp-apmu.c
 create mode 100644 arch/arm/mach-shmobile/smp-r8a7790.c

             reply	other threads:[~2013-10-01  2:35 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-01  2:35 Simon Horman [this message]
2013-10-01  2:35 ` [PATCH 01/14] ARM: shmobile: Introduce shmobile_smp_cpu_disable() Simon Horman
2013-10-01  2:35 ` [PATCH 02/14] ARM: shmobile: Use shmobile_smp_cpu_disable() on sh73a0 Simon Horman
2013-10-01  2:35 ` [PATCH 03/14] ARM: shmobile: Remove unused shmobile_smp_init_cpus() Simon Horman
2013-10-01  2:35 ` [PATCH 04/14] ARM: shmobile: Expose shmobile_invalidate_start() Simon Horman
2013-10-01  2:35 ` [PATCH 05/14] ARM: shmobile: Introduce shmobile_boot_size Simon Horman
2013-10-01  2:35 ` [PATCH 06/14] ARM: shmobile: Shared APMU SMP support code without DT Simon Horman
2013-10-01  2:35 ` [PATCH 07/14] ARM: shmobile: Add r8a7790 SMP support using APMU code Simon Horman
2013-10-01  2:35 ` [PATCH 08/14] ARM: shmobile: Add CPU notifier based SCU boot vector code Simon Horman
2013-10-01  2:35 ` [PATCH 09/14] ARM: shmobile: Let sh73a0 rely on SCU CPU notifier Simon Horman
2013-10-01  2:35 ` [PATCH 10/14] ARM: shmobile: Let EMEV2 " Simon Horman
2013-10-01  2:35 ` [PATCH 11/14] ARM: shmobile: Let r8a7779 " Simon Horman
2013-10-01  2:35 ` [PATCH 12/14] ARM: shmobile: Remove shmobile_smp_scu_boot_secondary() Simon Horman
2013-10-01  2:35 ` [PATCH 13/14] ARM: shmobile: Extend APMU code to allow single cluster only Simon Horman
2013-10-01  2:35 ` [PATCH 14/14] ARM: shmobile: Include CA7 cores in APMU table Simon Horman
2013-10-07 18:33 ` [GIT PULL 00/14] Renesas ARM based SoC SMP updates for v3.13 Olof Johansson

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=cover.1380532277.git.horms+renesas@verge.net.au \
    --to=horms+renesas@verge.net.au \
    --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).