ARM: define MON_MODEAdd a MON_MODE define for ARM's monitor mode. This can be used later bya secure monitor to avoid hard-coding mode IDs.Signed-off-by: Stephen Warren <swarren@nvidia.com>Signe
ARM: define MON_MODEAdd a MON_MODE define for ARM's monitor mode. This can be used later bya secure monitor to avoid hard-coding mode IDs.Signed-off-by: Stephen Warren <swarren@nvidia.com>Signed-off-by: Tom Warren <twarren@nvidia.com>
show more ...
ARM: add missing HYP mode constantIn order to be able to use the various mode constants (far morereadable than random hex values), add the missing HYP and Avalues.Also update arm/lib/interrupts
ARM: add missing HYP mode constantIn order to be able to use the various mode constants (far morereadable than random hex values), add the missing HYP and Avalues.Also update arm/lib/interrupts.c to display HYP instead of anunknown value.Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>Acked-by: Ian Campbell <ijc@hellion.org.uk>
arm: Fix armv8 compilation errorFix following compilation error when CONFIG_ARM64 is definedError: unknown or missing system register name at operand 2-- `mrs x0,daifmsr daifset,#3'Signed-off-
arm: Fix armv8 compilation errorFix following compilation error when CONFIG_ARM64 is definedError: unknown or missing system register name at operand 2-- `mrs x0,daifmsr daifset,#3'Signed-off-by: Shaibal.Dutta <shaibal.dutta@broadcom.com>Signed-off-by: Darwin Rambo <drambo@broadcom.com>Reviewed-by: Darwin Rambo <drambo@broadcom.com>
Remove ${objtree}/include/asm/proc/ linkmkconfig links ${objtree}/include/asm/proc/ to${srctree}/arch/${arch}/include/asm/proc-armv/. This seems to be aremnant from the past. Ever since its intro
Remove ${objtree}/include/asm/proc/ linkmkconfig links ${objtree}/include/asm/proc/ to${srctree}/arch/${arch}/include/asm/proc-armv/. This seems to be aremnant from the past. Ever since its introduction in 2003 it is usedonly in ARM build and always links to same place, so let's simplifythe code, remove it and reference directly where needed.Successful MAKEALL for ARM and PowerPC verified on Linux.Signed-off-by: Vasili Galka <vvv444@gmail.com>
arm64: core supportRelocation code based on a patch by Scott Wood, which is:Signed-off-by: Scott Wood <scottwood@freescale.com>Signed-off-by: David Feng <fenghua@phytium.com.cn>
include: delete include/linux/config.hLinux Kernel abolished include/linux/config.h long time ago.(around version v2.6.18..v2.6.19)We don't need to provide Linux copatibility any more.This com
include: delete include/linux/config.hLinux Kernel abolished include/linux/config.h long time ago.(around version v2.6.18..v2.6.19)We don't need to provide Linux copatibility any more.This commit deletes include/linux/config.hand fixes source files not to include this.Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Move architecture-specific includes to arch/$ARCH/include/asmThis helps to clean up the include/ directory so that it only containsnon-architecture-specific headers and also matches Linux's direct
Move architecture-specific includes to arch/$ARCH/include/asmThis helps to clean up the include/ directory so that it only containsnon-architecture-specific headers and also matches Linux's directorylayout which many U-Boot developers are already familiar with.Signed-off-by: Peter Tyser <ptyser@xes-inc.com>