From: horms@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 00/15] Renesas ARM based SoC boot cleanup for v3.11
Date: Fri, 14 Jun 2013 10:29:25 +0900 [thread overview]
Message-ID: <20130614012925.GA24731@verge.net.au> (raw)
In-Reply-To: <1371106793-25071-1-git-send-email-horms+renesas@verge.net.au>
On Thu, Jun 13, 2013 at 03:59:38PM +0900, Simon Horman wrote:
> Hi Olof, Hi Arnd,
>
> This pull request is based on renesas-pinmux-for-v3.11, which you have
> already pulled, in order to provide pre-requisites.
>
> The following changes since commit 5fcf4a3c3a5bc08bf72a50ef1332501a3c1b96bb:
>
> ARM: shmobile: marzen: Use RCAR_GP_PIN macro (2013-06-05 17:18:24 +0900)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-cleanup-boot-for-v3.11
>
> for you to fetch changes up to 9da629661d207299ad119a6735eb2411f54fd45f:
>
> ARM: shmobile: Remove Bonito board support (2013-06-13 14:26:04 +0900)
Sorry about this but it seems that there is still some discussion,
which I was not previously aware of, about the patch to remove the AP4EVB
board.
Please ignore this pull-request for now.
>
> ----------------------------------------------------------------
> Renesas ARM based SoC boot cleanup for v3.11
>
> Work by Magnus Damm and others to clean up the boot of and move
> things closer to supporting MULTIARCH.
>
> As a side effect of this work it was decided to remove support for
> two boards, Bonito and APE4EVM. Those patches are included in this
> series as they depend on earlier patches in the series.
>
> ----------------------------------------------------------------
> Kuninori Morimoto (1):
> ARM: shmobile: Remove Bonito board support
>
> Magnus Damm (14):
> ARM: shmobile: uImage load address rework
> ARM: shmobile: Let romImage rely on default ATAGS
> ARM: shmobile: Remove romImage CONFIG_MEMORY_START
> ARM: shmobile: Rework sh7372 sleep code to use virt_to_phys()
> ARM: shmobile: Add SMP boot function and argument
> ARM: shmobile: Add SCU boot function using argument
> ARM: shmobile: r8a7779 SMP with SCU boot fn and args
> ARM: shmobile: sh73a0 SMP with SCU boot fn and args
> ARM: shmobile: EMEV2 SMP with SCU boot fn and args
> ARM: shmobile: Remove old SCU boot code
> ARM: shmobile: Enable ARM_PATCH_PHYS_VIRT
> ARM: shmobile: Remove MEMORY_START/SIZE
> ARM: shmobile: Remove mach/memory.h
> ARM: shmobile: Remove AP4EVB board support
>
> arch/arm/Kconfig | 2 +-
> arch/arm/boot/compressed/head-shmobile.S | 21 +-
> arch/arm/configs/ap4evb_defconfig | 56 -
> arch/arm/configs/bonito_defconfig | 72 --
> arch/arm/mach-shmobile/Kconfig | 58 -
> arch/arm/mach-shmobile/Makefile | 2 -
> arch/arm/mach-shmobile/Makefile.boot | 18 +-
> arch/arm/mach-shmobile/board-ap4evb.c | 1310 --------------------
> arch/arm/mach-shmobile/board-bonito.c | 502 --------
> arch/arm/mach-shmobile/headsmp-scu.S | 29 +-
> arch/arm/mach-shmobile/headsmp.S | 13 +-
> arch/arm/mach-shmobile/include/mach/common.h | 6 +-
> .../arm/mach-shmobile/include/mach/head-ap4evb.txt | 93 --
> arch/arm/mach-shmobile/include/mach/memory.h | 7 -
> arch/arm/mach-shmobile/include/mach/mmc-ap4eb.h | 29 -
> arch/arm/mach-shmobile/include/mach/mmc.h | 4 +-
> arch/arm/mach-shmobile/include/mach/sh7372.h | 2 +
> arch/arm/mach-shmobile/include/mach/zboot.h | 6 +-
> arch/arm/mach-shmobile/pm-sh7372.c | 3 +
> arch/arm/mach-shmobile/sleep-sh7372.S | 5 +-
> arch/arm/mach-shmobile/smp-emev2.c | 6 +-
> arch/arm/mach-shmobile/smp-r8a7779.c | 6 +-
> arch/arm/mach-shmobile/smp-sh73a0.c | 6 +-
> 23 files changed, 68 insertions(+), 2188 deletions(-)
> delete mode 100644 arch/arm/configs/ap4evb_defconfig
> delete mode 100644 arch/arm/configs/bonito_defconfig
> delete mode 100644 arch/arm/mach-shmobile/board-ap4evb.c
> delete mode 100644 arch/arm/mach-shmobile/board-bonito.c
> delete mode 100644 arch/arm/mach-shmobile/include/mach/head-ap4evb.txt
> delete mode 100644 arch/arm/mach-shmobile/include/mach/memory.h
> delete mode 100644 arch/arm/mach-shmobile/include/mach/mmc-ap4eb.h
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
prev parent reply other threads:[~2013-06-14 1:29 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-13 6:59 [GIT PULL 00/15] Renesas ARM based SoC boot cleanup for v3.11 Simon Horman
2013-06-13 6:59 ` [PATCH 01/15] ARM: shmobile: uImage load address rework Simon Horman
2013-06-13 6:59 ` [PATCH 02/15] ARM: shmobile: Let romImage rely on default ATAGS Simon Horman
2013-06-13 6:59 ` [PATCH 03/15] ARM: shmobile: Remove romImage CONFIG_MEMORY_START Simon Horman
2013-06-13 6:59 ` [PATCH 04/15] ARM: shmobile: Rework sh7372 sleep code to use virt_to_phys() Simon Horman
2013-06-13 6:59 ` [PATCH 05/15] ARM: shmobile: Add SMP boot function and argument Simon Horman
2013-06-13 6:59 ` [PATCH 06/15] ARM: shmobile: Add SCU boot function using argument Simon Horman
2013-06-13 6:59 ` [PATCH 07/15] ARM: shmobile: r8a7779 SMP with SCU boot fn and args Simon Horman
2013-06-13 6:59 ` [PATCH 08/15] ARM: shmobile: sh73a0 " Simon Horman
2013-06-13 6:59 ` [PATCH 09/15] ARM: shmobile: EMEV2 " Simon Horman
2013-06-13 6:59 ` [PATCH 10/15] ARM: shmobile: Remove old SCU boot code Simon Horman
2013-06-13 6:59 ` [PATCH 11/15] ARM: shmobile: Enable ARM_PATCH_PHYS_VIRT Simon Horman
2013-06-13 6:59 ` [PATCH 12/15] ARM: shmobile: Remove MEMORY_START/SIZE Simon Horman
2013-06-13 6:59 ` [PATCH 13/15] ARM: shmobile: Remove mach/memory.h Simon Horman
2013-06-13 6:59 ` [PATCH 14/15] ARM: shmobile: Remove AP4EVB board support Simon Horman
2013-06-13 19:36 ` Guennadi Liakhovetski
2013-06-14 1:02 ` Simon Horman
2013-06-14 7:42 ` Guennadi Liakhovetski
2013-06-17 3:47 ` Magnus Damm
2013-06-14 9:10 ` Magnus Damm
2013-06-14 9:27 ` Guennadi Liakhovetski
2013-06-17 3:45 ` Magnus Damm
2013-06-17 6:12 ` Guennadi Liakhovetski
2013-06-17 6:22 ` Magnus Damm
2013-06-14 14:29 ` Arnd Bergmann
2013-06-17 4:05 ` Magnus Damm
2013-06-17 20:20 ` Arnd Bergmann
2013-06-18 1:02 ` Simon Horman
2013-06-13 6:59 ` [PATCH 15/15] ARM: shmobile: Remove Bonito " Simon Horman
2013-06-14 1:29 ` Simon Horman [this message]
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=20130614012925.GA24731@verge.net.au \
--to=horms@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).