1 /* 2 * Copyright 2009 Freescale Semiconductor, Inc. 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef _ASM_CONFIG_H_ 8 #define _ASM_CONFIG_H_ 9 10 #ifdef __aarch64__ 11 #define CONFIG_SYS_GENERIC_GLOBAL_DATA 12 #endif 13 14 #define CONFIG_LMB 15 #define CONFIG_SYS_BOOT_RAMDISK_HIGH 16 17 #ifdef CONFIG_ARM64 18 #define CONFIG_PHYS_64BIT 19 #define CONFIG_STATIC_RELA 20 #endif 21 22 #ifdef CONFIG_FSL_LSCH3 23 #include <asm/arch-fsl-lsch3/config.h> 24 #endif 25 26 #ifdef CONFIG_LS102XA 27 #include <asm/arch/config.h> 28 #endif 29 30 #endif 31