From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Herring Date: Thu, 03 Oct 2013 16:51:02 -0500 Subject: [U-Boot] [PATCH v13 1/6] core support of arm64 In-Reply-To: <524DE337.9030008@gmail.com> References: <1380202529-52241-1-git-send-email-fenghua@phytium.com.cn> <1380202529-52241-2-git-send-email-fenghua@phytium.com.cn> <524DE337.9030008@gmail.com> Message-ID: <524DE6C6.4070508@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 On 10/03/2013 04:35 PM, Rob Herring wrote: > On 09/26/2013 08:35 AM, fenghua at phytium.com.cn wrote: >> From: David Feng >> >> Signed-off-by: David Feng >> --- >> arch/arm/config.mk | 4 + > > FYI, some recent mainline changes to config.mk break the build for me. > >> arch/arm/cpu/armv8/Makefile | 38 +++++ >> arch/arm/cpu/armv8/cache.S | 130 +++++++++++++++++ >> arch/arm/cpu/armv8/cache_v8.c | 218 ++++++++++++++++++++++++++++ >> arch/arm/cpu/armv8/config.mk | 16 +++ >> arch/arm/cpu/armv8/cpu.c | 67 +++++++++ >> arch/arm/cpu/armv8/exceptions.S | 115 +++++++++++++++ >> arch/arm/cpu/armv8/start.S | 234 +++++++++++++++++++++++++++++++ >> arch/arm/cpu/armv8/timer.c | 80 +++++++++++ >> arch/arm/cpu/armv8/tlb.S | 30 ++++ >> arch/arm/cpu/armv8/u-boot.lds | 71 ++++++++++ >> arch/arm/include/asm/arch-armv8/gpio.h | 11 ++ >> arch/arm/include/asm/arch-armv8/mmu.h | 110 +++++++++++++++ Also, this directory is mutually exclusive with arch-${soc}. I think this should be moved up a level. gpio.h is probably fine as a default version. Rob