From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/17] AT91 cleanup for 3.20 #3
Date: Thu, 22 Jan 2015 11:31:21 +0100 [thread overview]
Message-ID: <54C0D179.700@atmel.com> (raw)
In-Reply-To: <1421359100-8930-1-git-send-email-alexandre.belloni@free-electrons.com>
Le 15/01/2015 22:58, Alexandre Belloni a ?crit :
> This patch sets is based on AT91 cleanup for 3.20 #2. it goes further in the
> cleanup.
>
> It merges board-dt ans soc files, ending up with only at91rm9200.c, at91sam9.c,
> sama5d3.c and sama5d4.c.
I'm not entirely comfortable with this this merge. Maybe I'm too used to
"board files" ;-)
On the other hand, there is also a phy fixup that will go into the sama5
board file (in "fixes for 3.19").
So, I may delay these changes a little bit.
> It merges all the SOC_AT91SAM9xxx config option under SOC_AT91SAM9.
>
> It also removes unused headers.
>
> There is also one fix regarding arm_pm_idle for sam9n12 and sam9g45.
I'm reordering these patches a little bit for creating a at91-cleanup3
tag that I can send quickly.
So, let's rework this series a little bit.
Bye,
> Alexandre Belloni (15):
> ARM: at91:remove unused mach/system_rev.h
> ARM: at91: fix sam9n12 and sam9x5 arm_pm_idle
> ARM: at91: sam9: set arm_pm_idle from sam9_dt_device_init
> ARM: at91: remove unused at91_ioremap_matrix and header
> ARM: at91: remove unused _matrix.h headers
> ARM: at91: stop using HAVE_AT91_DBGUx
> ARM: at91: pm: remove warning to remove SOC_AT91SAM9263 usage
> ARM: at91: merge SOC_AT91SAM9xxx
> ARM: at91: remove at91_boot_soc
> ARM: at91: rework initialization for rm9200 based boards
> ARM: at91: rework initialization for sam9 based boards
> ARM: at91: rework initialization for sama5 based boards
> ARM: at91: remove old setup
> ARM: at91: mark const init data with __initconst instead of __initdata
> ARM: at91: remove at91_dt_initialize
>
> Arnd Bergmann (2):
> ARM: at91: merge at91rm9200 files
> ARM: at91: move sama5 specific code into per-soc files
>
> arch/arm/Kconfig.debug | 6 +-
> arch/arm/configs/at91_dt_defconfig | 10 +-
> arch/arm/mach-at91/Kconfig | 111 ++----
> arch/arm/mach-at91/Makefile | 17 +-
> arch/arm/mach-at91/at91rm9200.c | 49 ++-
> arch/arm/mach-at91/{board-dt-sam9.c => at91sam9.c} | 21 +-
> arch/arm/mach-at91/at91sam9260.c | 32 --
> arch/arm/mach-at91/at91sam9261.c | 31 --
> arch/arm/mach-at91/at91sam9263.c | 30 --
> arch/arm/mach-at91/at91sam9g45.c | 30 --
> arch/arm/mach-at91/at91sam9n12.c | 20 -
> arch/arm/mach-at91/at91sam9rl.c | 32 --
> arch/arm/mach-at91/at91sam9x5.c | 20 -
> arch/arm/mach-at91/board-dt-rm9200.c | 54 ---
> arch/arm/mach-at91/board-dt-sama5.c | 60 ---
> arch/arm/mach-at91/generic.h | 11 -
> arch/arm/mach-at91/include/mach/at91_dbgu.h | 63 ----
> arch/arm/mach-at91/include/mach/at91_matrix.h | 23 --
> arch/arm/mach-at91/include/mach/at91_ramc.h | 6 -
> .../mach-at91/include/mach/at91sam9260_matrix.h | 80 ----
> .../mach-at91/include/mach/at91sam9261_matrix.h | 64 ----
> .../mach-at91/include/mach/at91sam9263_matrix.h | 129 -------
> arch/arm/mach-at91/include/mach/at91sam9_smc.h | 2 -
> .../mach-at91/include/mach/at91sam9g45_matrix.h | 153 --------
> .../mach-at91/include/mach/at91sam9n12_matrix.h | 53 ---
> .../arm/mach-at91/include/mach/at91sam9rl_matrix.h | 96 -----
> .../arm/mach-at91/include/mach/at91sam9x5_matrix.h | 53 ---
> arch/arm/mach-at91/include/mach/cpu.h | 240 ------------
> arch/arm/mach-at91/include/mach/system_rev.h | 27 --
> arch/arm/mach-at91/pm.c | 48 ++-
> arch/arm/mach-at91/pm_slowclock.S | 9 -
> arch/arm/mach-at91/sama5d3.c | 31 +-
> arch/arm/mach-at91/sama5d4.c | 35 +-
> arch/arm/mach-at91/setup.c | 407 ---------------------
> arch/arm/mach-at91/soc.h | 77 ----
> 35 files changed, 151 insertions(+), 1979 deletions(-)
> rename arch/arm/mach-at91/{board-dt-sam9.c => at91sam9.c} (71%)
> delete mode 100644 arch/arm/mach-at91/at91sam9260.c
> delete mode 100644 arch/arm/mach-at91/at91sam9261.c
> delete mode 100644 arch/arm/mach-at91/at91sam9263.c
> delete mode 100644 arch/arm/mach-at91/at91sam9g45.c
> delete mode 100644 arch/arm/mach-at91/at91sam9n12.c
> delete mode 100644 arch/arm/mach-at91/at91sam9rl.c
> delete mode 100644 arch/arm/mach-at91/at91sam9x5.c
> delete mode 100644 arch/arm/mach-at91/board-dt-rm9200.c
> delete mode 100644 arch/arm/mach-at91/board-dt-sama5.c
> delete mode 100644 arch/arm/mach-at91/include/mach/at91_dbgu.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9260_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9261_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9263_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9g45_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9n12_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9rl_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/at91sam9x5_matrix.h
> delete mode 100644 arch/arm/mach-at91/include/mach/cpu.h
> delete mode 100644 arch/arm/mach-at91/include/mach/system_rev.h
> delete mode 100644 arch/arm/mach-at91/setup.c
> delete mode 100644 arch/arm/mach-at91/soc.h
>
--
Nicolas Ferre
prev parent reply other threads:[~2015-01-22 10:31 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-15 21:58 [PATCH 00/17] AT91 cleanup for 3.20 #3 Alexandre Belloni
2015-01-15 21:58 ` [PATCH 01/17] ARM: at91: merge at91rm9200 files Alexandre Belloni
2015-01-15 21:58 ` [PATCH 02/17] ARM: at91: move sama5 specific code into per-soc files Alexandre Belloni
2015-01-15 21:58 ` [PATCH 03/17] ARM: at91:remove unused mach/system_rev.h Alexandre Belloni
2015-01-15 21:58 ` [PATCH 04/17] ARM: at91: fix sam9n12 and sam9x5 arm_pm_idle Alexandre Belloni
2015-01-15 21:58 ` [PATCH 05/17] ARM: at91: sam9: set arm_pm_idle from sam9_dt_device_init Alexandre Belloni
2015-01-15 21:58 ` [PATCH 06/17] ARM: at91: remove unused at91_ioremap_matrix and header Alexandre Belloni
2015-01-15 21:58 ` [PATCH 07/17] ARM: at91: remove unused _matrix.h headers Alexandre Belloni
2015-01-15 21:58 ` [PATCH 08/17] ARM: at91: stop using HAVE_AT91_DBGUx Alexandre Belloni
2015-01-20 10:34 ` Nicolas Ferre
2015-01-20 15:12 ` Alexandre Belloni
2015-01-15 21:58 ` [PATCH 09/17] ARM: at91: pm: remove warning to remove SOC_AT91SAM9263 usage Alexandre Belloni
2015-01-15 21:58 ` [PATCH 10/17] ARM: at91: merge SOC_AT91SAM9xxx Alexandre Belloni
2015-01-22 10:22 ` Nicolas Ferre
2015-01-22 16:36 ` Alexandre Belloni
2015-01-26 17:49 ` [PATCH v2] " Nicolas Ferre
2015-01-15 21:58 ` [PATCH 11/17] ARM: at91: remove at91_boot_soc Alexandre Belloni
2015-01-26 18:08 ` [PATCH v2] ARM: at91: at91rm9200: set idle and restart from rm9200_dt_device_init() Nicolas Ferre
2015-01-26 19:01 ` Alexandre Belloni
2015-01-15 21:58 ` [PATCH 12/17] ARM: at91: rework initialization for rm9200 based boards Alexandre Belloni
2015-01-15 21:58 ` [PATCH 13/17] ARM: at91: rework initialization for sam9 " Alexandre Belloni
2015-01-15 21:58 ` [PATCH 14/17] ARM: at91: rework initialization for sama5 " Alexandre Belloni
2015-01-15 21:58 ` [PATCH 15/17] ARM: at91: remove old setup Alexandre Belloni
2015-01-21 16:29 ` Nicolas Ferre
2015-01-21 20:40 ` Alexandre Belloni
2015-01-15 21:58 ` [PATCH 16/17] ARM: at91: mark const init data with __initconst instead of __initdata Alexandre Belloni
2015-01-15 21:58 ` [PATCH 17/17] ARM: at91: remove at91_dt_initialize Alexandre Belloni
2015-01-22 10:31 ` Nicolas Ferre [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=54C0D179.700@atmel.com \
--to=nicolas.ferre@atmel.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).