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