xref: /openbmc/u-boot/include/configs/twister.h (revision 92e30c07e02b84a3b63205fcb29ac57defd043f6)
1*92e30c07SStefano Babic /*
2*92e30c07SStefano Babic  * Copyright (C) 2011
3*92e30c07SStefano Babic  * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
4*92e30c07SStefano Babic  *
5*92e30c07SStefano Babic  * Copyright (C) 2009 TechNexion Ltd.
6*92e30c07SStefano Babic  *
7*92e30c07SStefano Babic  * Configuration for the Technexion twister board.
8*92e30c07SStefano Babic  *
9*92e30c07SStefano Babic  * This program is free software; you can redistribute it and/or modify
10*92e30c07SStefano Babic  * it under the terms of the GNU General Public License as published by
11*92e30c07SStefano Babic  * the Free Software Foundation; either version 2 of the License, or
12*92e30c07SStefano Babic  * (at your option) any later version.
13*92e30c07SStefano Babic  *
14*92e30c07SStefano Babic  * This program is distributed in the hope that it will be useful,
15*92e30c07SStefano Babic  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16*92e30c07SStefano Babic  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17*92e30c07SStefano Babic  * GNU General Public License for more details.
18*92e30c07SStefano Babic  *
19*92e30c07SStefano Babic  * You should have received a copy of the GNU General Public License
20*92e30c07SStefano Babic  * along with this program; if not, write to the Free Software
21*92e30c07SStefano Babic  * Foundation, Inc.
22*92e30c07SStefano Babic  */
23*92e30c07SStefano Babic 
24*92e30c07SStefano Babic #ifndef __CONFIG_H
25*92e30c07SStefano Babic #define __CONFIG_H
26*92e30c07SStefano Babic 
27*92e30c07SStefano Babic #include "tam3517-common.h"
28*92e30c07SStefano Babic 
29*92e30c07SStefano Babic #define MACH_TYPE_TAM3517	2818
30*92e30c07SStefano Babic #define CONFIG_MACH_TYPE	MACH_TYPE_TAM3517
31*92e30c07SStefano Babic 
32*92e30c07SStefano Babic #define CONFIG_TAM3517_SW3_SETTINGS
33*92e30c07SStefano Babic #define CONFIG_XR16L2751
34*92e30c07SStefano Babic 
35*92e30c07SStefano Babic #define CONFIG_BOOTDELAY	10
36*92e30c07SStefano Babic 
37*92e30c07SStefano Babic #define CONFIG_BOOTFILE		"uImage"
38*92e30c07SStefano Babic 
39*92e30c07SStefano Babic #define CONFIG_HOSTNAME twister
40*92e30c07SStefano Babic 
41*92e30c07SStefano Babic /*
42*92e30c07SStefano Babic  * Miscellaneous configurable options
43*92e30c07SStefano Babic  */
44*92e30c07SStefano Babic #define CONFIG_SYS_PROMPT		"twister => "
45*92e30c07SStefano Babic 
46*92e30c07SStefano Babic #define CONFIG_SMC911X
47*92e30c07SStefano Babic #define CONFIG_SMC911X_16_BIT
48*92e30c07SStefano Babic #define CONFIG_SMC911X_BASE		0x2C000000
49*92e30c07SStefano Babic #define CONFIG_SMC911X_NO_EEPROM
50*92e30c07SStefano Babic 
51*92e30c07SStefano Babic #define	CONFIG_EXTRA_ENV_SETTINGS	CONFIG_TAM3517_SETTINGS \
52*92e30c07SStefano Babic 	"bootcmd=run nandboot\0"
53*92e30c07SStefano Babic 
54*92e30c07SStefano Babic #endif /* __CONFIG_H */
55