From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Schwierzeck Date: Mon, 21 Dec 2015 18:01:12 +0100 Subject: [U-Boot] [PATCH v1 02/18] MIPS: initial infrastructure for Microchip PIC32 architecture. In-Reply-To: <5672F0C3.2080409@microchip.com> References: <5672F0C3.2080409@microchip.com> Message-ID: <56783058.5010801@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am 17.12.2015 um 18:28 schrieb Purna Chandra Mandal: > > Signed-off-by: Purna Chandra Mandal > --- > > arch/mips/Kconfig | 5 ++ > arch/mips/Makefile | 1 + > arch/mips/include/asm/arch-pic32/clock.h | 31 +++++++ > arch/mips/include/asm/arch-pic32/pic32.h | 145 +++++++++++++++++++++++++++++++ > arch/mips/mach-pic32/Kconfig | 20 +++++ > arch/mips/mach-pic32/Makefile | 7 ++ > arch/mips/mach-pic32/config.mk | 8 ++ > arch/mips/mach-pic32/cpu.c | 13 +++ > 8 files changed, 230 insertions(+) > create mode 100644 arch/mips/include/asm/arch-pic32/clock.h > create mode 100644 arch/mips/include/asm/arch-pic32/pic32.h I noticed in an other thread that CONFIG_ARCH_SYMLINKS is going to be deprecated. The preferred location for SoC specific header files is "arch/*/mach-*/include/mach/". A driver can then use "include ". I've already sent a patch for MIPS [1]. So please rebase to u-boot-mips/next and move those two files to arch/mips/mach-pic32/include/mach/. > create mode 100644 arch/mips/mach-pic32/Kconfig > create mode 100644 arch/mips/mach-pic32/Makefile > create mode 100644 arch/mips/mach-pic32/config.mk > create mode 100644 arch/mips/mach-pic32/cpu.c > [1] http://patchwork.ozlabs.org/patch/559581/ -- - Daniel