From mboxrd@z Thu Jan 1 00:00:00 1970 From: Purna Chandra Mandal Date: Tue, 22 Dec 2015 19:21:16 +0530 Subject: [U-Boot] [PATCH v1 02/18] MIPS: initial infrastructure for Microchip PIC32 architecture. In-Reply-To: <56783058.5010801@gmail.com> References: <5672F0C3.2080409@microchip.com> <56783058.5010801@gmail.com> Message-ID: <56795554.6010102@microchip.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 12/21/2015 10:31 PM, Daniel Schwierzeck wrote: > > 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/. Thanks. Will rebase and update accordingly. >> 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/ >