From mboxrd@z Thu Jan 1 00:00:00 1970 From: nicolas.ferre@atmel.com (Nicolas Ferre) Date: Fri, 13 Mar 2015 16:28:54 +0100 Subject: [PATCH v4 0/9] ARM: at91 cleanups for 4.1 #1 In-Reply-To: <1426172071-20743-1-git-send-email-alexandre.belloni@free-electrons.com> References: <1426172071-20743-1-git-send-email-alexandre.belloni@free-electrons.com> Message-ID: <55030236.40509@atmel.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Le 12/03/2015 15:54, Alexandre Belloni a ?crit : > This series removes more mach/headers. > > Then it introduces a more scalable SoC detection infrastructure which allows to > remove the at91_map_io/at91_alt_map_io and iotable_init ugliness. > > Changes in v4: > - Changes soc family and name display, as requested by Nicolas > > Changes in v3: > - Stop trying to unmap a range that failed ot be mapped > > Changes in v2: > - All the SoC names are lowercased > - Removed the unused compatible string > - Use name/subname to display the type and subtype > > > Alexandre Belloni (7): > ARM: at91: remove unused at91_ioremap_matrix and header > ARM: at91: remove unused _matrix.h headers > ARM: at91/dt: introduce atmel,-dbgu > ARM: at91: at91rm9200 use SoC detection infrastructure > ARM: at91: at91sam9: use SoC detection infrastructure > ARM: at91: sama5 use SoC detection infrastructure > ARM: at91: remove old setup > > Arnd Bergmann (1): > ARM: at91: remove NEED_MACH_IO_H > > Boris BREZILLON (1): > ARM: at91: add soc detection infrastructure Fully satisfied with the whole series: Acked-by: Nicolas Ferre I take everything for at91-4.1-cleanup. Bye, > .../devicetree/bindings/serial/atmel-usart.txt | 3 +- > arch/arm/Kconfig | 2 +- > arch/arm/boot/dts/at91rm9200.dtsi | 2 +- > arch/arm/boot/dts/at91sam9260.dtsi | 2 +- > arch/arm/boot/dts/at91sam9261.dtsi | 2 +- > arch/arm/boot/dts/at91sam9263.dtsi | 2 +- > arch/arm/boot/dts/at91sam9g45.dtsi | 2 +- > arch/arm/boot/dts/at91sam9n12.dtsi | 2 +- > arch/arm/boot/dts/at91sam9rl.dtsi | 2 +- > arch/arm/boot/dts/at91sam9x5.dtsi | 2 +- > arch/arm/boot/dts/sama5d3.dtsi | 2 +- > arch/arm/boot/dts/sama5d4.dtsi | 2 +- > arch/arm/mach-at91/Kconfig | 1 + > arch/arm/mach-at91/Makefile | 2 +- > arch/arm/mach-at91/at91rm9200.c | 29 +- > arch/arm/mach-at91/at91sam9.c | 76 +++-- > arch/arm/mach-at91/generic.h | 4 - > arch/arm/mach-at91/include/mach/at91_matrix.h | 23 -- > .../mach-at91/include/mach/at91sam9260_matrix.h | 80 ----- > .../mach-at91/include/mach/at91sam9261_matrix.h | 64 ---- > .../mach-at91/include/mach/at91sam9263_matrix.h | 129 -------- > .../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/io.h | 27 -- > arch/arm/mach-at91/sama5.c | 49 ++- > arch/arm/mach-at91/setup.c | 330 --------------------- > arch/arm/mach-at91/soc.c | 97 ++++++ > arch/arm/mach-at91/soc.h | 78 +++++ > drivers/pcmcia/Kconfig | 1 + > drivers/pcmcia/at91_cf.c | 13 +- > 32 files changed, 301 insertions(+), 1082 deletions(-) > 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/io.h > delete mode 100644 arch/arm/mach-at91/setup.c > create mode 100644 arch/arm/mach-at91/soc.c > create mode 100644 arch/arm/mach-at91/soc.h > -- Nicolas Ferre From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757290AbbCMP3J (ORCPT ); Fri, 13 Mar 2015 11:29:09 -0400 Received: from eusmtp01.atmel.com ([212.144.249.243]:2303 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752951AbbCMP3E (ORCPT ); Fri, 13 Mar 2015 11:29:04 -0400 Message-ID: <55030236.40509@atmel.com> Date: Fri, 13 Mar 2015 16:28:54 +0100 From: Nicolas Ferre Organization: atmel User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Alexandre Belloni CC: Jean-Christophe Plagniol-Villard , , , "Boris Brezillon" , Alexander Stein Subject: Re: [PATCH v4 0/9] ARM: at91 cleanups for 4.1 #1 References: <1426172071-20743-1-git-send-email-alexandre.belloni@free-electrons.com> In-Reply-To: <1426172071-20743-1-git-send-email-alexandre.belloni@free-electrons.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 8bit X-Originating-IP: [10.161.30.18] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Le 12/03/2015 15:54, Alexandre Belloni a écrit : > This series removes more mach/headers. > > Then it introduces a more scalable SoC detection infrastructure which allows to > remove the at91_map_io/at91_alt_map_io and iotable_init ugliness. > > Changes in v4: > - Changes soc family and name display, as requested by Nicolas > > Changes in v3: > - Stop trying to unmap a range that failed ot be mapped > > Changes in v2: > - All the SoC names are lowercased > - Removed the unused compatible string > - Use name/subname to display the type and subtype > > > Alexandre Belloni (7): > ARM: at91: remove unused at91_ioremap_matrix and header > ARM: at91: remove unused _matrix.h headers > ARM: at91/dt: introduce atmel,-dbgu > ARM: at91: at91rm9200 use SoC detection infrastructure > ARM: at91: at91sam9: use SoC detection infrastructure > ARM: at91: sama5 use SoC detection infrastructure > ARM: at91: remove old setup > > Arnd Bergmann (1): > ARM: at91: remove NEED_MACH_IO_H > > Boris BREZILLON (1): > ARM: at91: add soc detection infrastructure Fully satisfied with the whole series: Acked-by: Nicolas Ferre I take everything for at91-4.1-cleanup. Bye, > .../devicetree/bindings/serial/atmel-usart.txt | 3 +- > arch/arm/Kconfig | 2 +- > arch/arm/boot/dts/at91rm9200.dtsi | 2 +- > arch/arm/boot/dts/at91sam9260.dtsi | 2 +- > arch/arm/boot/dts/at91sam9261.dtsi | 2 +- > arch/arm/boot/dts/at91sam9263.dtsi | 2 +- > arch/arm/boot/dts/at91sam9g45.dtsi | 2 +- > arch/arm/boot/dts/at91sam9n12.dtsi | 2 +- > arch/arm/boot/dts/at91sam9rl.dtsi | 2 +- > arch/arm/boot/dts/at91sam9x5.dtsi | 2 +- > arch/arm/boot/dts/sama5d3.dtsi | 2 +- > arch/arm/boot/dts/sama5d4.dtsi | 2 +- > arch/arm/mach-at91/Kconfig | 1 + > arch/arm/mach-at91/Makefile | 2 +- > arch/arm/mach-at91/at91rm9200.c | 29 +- > arch/arm/mach-at91/at91sam9.c | 76 +++-- > arch/arm/mach-at91/generic.h | 4 - > arch/arm/mach-at91/include/mach/at91_matrix.h | 23 -- > .../mach-at91/include/mach/at91sam9260_matrix.h | 80 ----- > .../mach-at91/include/mach/at91sam9261_matrix.h | 64 ---- > .../mach-at91/include/mach/at91sam9263_matrix.h | 129 -------- > .../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/io.h | 27 -- > arch/arm/mach-at91/sama5.c | 49 ++- > arch/arm/mach-at91/setup.c | 330 --------------------- > arch/arm/mach-at91/soc.c | 97 ++++++ > arch/arm/mach-at91/soc.h | 78 +++++ > drivers/pcmcia/Kconfig | 1 + > drivers/pcmcia/at91_cf.c | 13 +- > 32 files changed, 301 insertions(+), 1082 deletions(-) > 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/io.h > delete mode 100644 arch/arm/mach-at91/setup.c > create mode 100644 arch/arm/mach-at91/soc.c > create mode 100644 arch/arm/mach-at91/soc.h > -- Nicolas Ferre