xref: /openbmc/u-boot/include/configs/rastaban.h (revision 72c10153)
1 /*
2  * (C) Copyright 2013 Siemens Schweiz AG
3  * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
4  *
5  * Based on:
6  * U-Boot file:/include/configs/am335x_evm.h
7  *
8  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 #ifndef __CONFIG_RASTABAN_H
14 #define __CONFIG_RASTABAN_H
15 
16 #include "siemens-am33x-common.h"
17 
18 #define CONFIG_SYS_MPUCLK	300
19 #define DDR_PLL_FREQ	303
20 #undef CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC
21 
22 /* FWD Button = 27
23  * SRV Button = 87 */
24 #define BOARD_DFU_BUTTON_GPIO	27
25 #define GPIO_LAN9303_NRST	88	/* GPIO2_24 = gpio88 */
26 /* In dfu mode keep led1 on */
27 #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
28 	"button_dfu0=27\0" \
29 	"button_dfu1=87\0" \
30 	"led0=3,0,1\0" \
31 	"led1=4,0,0\0" \
32 	"led2=5,0,1\0" \
33 	"led3=62,0,1\0" \
34 	"led4=60,0,1\0" \
35 	"led5=63,0,1\0"
36 
37 #undef CONFIG_DOS_PARTITION
38 
39 #define CONFIG_BOARD_LATE_INIT
40 
41  /* Physical Memory Map */
42 #define CONFIG_MAX_RAM_BANK_SIZE	(1024 << 20)	/* 1GB */
43 
44 /* I2C Configuration */
45 #define CONFIG_SYS_I2C_SPEED		100000
46 
47 #define CONFIG_SYS_I2C_EEPROM_ADDR              0x50
48 #define EEPROM_ADDR_DDR3 0x90
49 #define EEPROM_ADDR_CHIP 0x120
50 
51 #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS	0x300
52 
53 #undef CONFIG_MII
54 #undef CONFIG_PHY_GIGE
55 #define CONFIG_PHY_SMSC
56 
57 #define CONFIG_FACTORYSET
58 
59 /* Watchdog */
60 #define CONFIG_OMAP_WATCHDOG
61 
62 /* Define own nand partitions */
63 #define CONFIG_ENV_OFFSET_REDUND	0x2E0000
64 #define CONFIG_ENV_SIZE_REDUND		0x2000
65 #define CONFIG_ENV_RANGE		(4 * CONFIG_SYS_ENV_SECT_SIZE)
66 
67 #define MTDPARTS_DEFAULT	MTDPARTS_DEFAULT_V3
68 
69 #ifndef CONFIG_SPL_BUILD
70 
71 /* Default env settings */
72 #define CONFIG_EXTRA_ENV_SETTINGS \
73 	"hostname=rastaban\0" \
74 	"ubi_off=2048\0"\
75 	"nand_img_size=0x400000\0" \
76 	"optargs=\0" \
77 	"preboot=draco_led 0\0" \
78 	CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
79 	CONFIG_ENV_SETTINGS_V2 \
80 	CONFIG_ENV_SETTINGS_NAND_V2
81 
82 #ifndef CONFIG_RESTORE_FLASH
83 /* set to negative value for no autoboot */
84 
85 #define CONFIG_BOOTCOMMAND \
86 "if dfubutton; then " \
87 	"run dfu_start; " \
88 	"reset; " \
89 "fi;" \
90 "run nand_boot;" \
91 "run nand_boot_backup;" \
92 "reset;"
93 
94 #else
95 
96 #define CONFIG_BOOTCOMMAND			\
97 	"setenv autoload no; "			\
98 	"dhcp; "				\
99 	"if tftp 80000000 debrick.scr; then "	\
100 		"source 80000000; "		\
101 	"fi"
102 #endif
103 #endif	/* CONFIG_SPL_BUILD */
104 #endif	/* ! __CONFIG_RASTABAN_H */
105