1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2011 4 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. 5 * 6 * Copyright (C) 2009 TechNexion Ltd. 7 * 8 * Configuration for the Technexion twister board. 9 */ 10 11 #ifndef __CONFIG_H 12 #define __CONFIG_H 13 14 #include "tam3517-common.h" 15 16 #define CONFIG_MACH_TYPE MACH_TYPE_TAM3517 17 18 #define CONFIG_TAM3517_SW3_SETTINGS 19 #define CONFIG_XR16L2751 20 21 22 #define CONFIG_BOOTFILE "uImage" 23 24 #define CONFIG_HOSTNAME "twister" 25 26 #define CONFIG_EXTRA_ENV_SETTINGS CONFIG_TAM3517_SETTINGS \ 27 "bootcmd=run nandboot\0" 28 29 /* SPL OS boot options */ 30 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00200000 31 32 #define CONFIG_SYS_SPL_ARGS_ADDR (PHYS_SDRAM_1 + 0x100) 33 34 #endif /* __CONFIG_H */ 35