]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/etamin.h
Kconfig: Migrate FS_FAT / FAT_WRITE
[people/ms/u-boot.git] / include / configs / etamin.h
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_ETAMIN_H
14 #define __CONFIG_ETAMIN_H
15
16 #include "siemens-am33x-common.h"
17 /* NAND specific changes for etamin due to different page size */
18 #undef CONFIG_SYS_NAND_PAGE_SIZE
19 #undef CONFIG_SYS_NAND_OOBSIZE
20 #undef CONFIG_SYS_NAND_BLOCK_SIZE
21 #undef CONFIG_SYS_NAND_ECCPOS
22 #undef CONFIG_SYS_NAND_U_BOOT_OFFS
23 #undef CONFIG_SYS_ENV_SECT_SIZE
24 #undef CONFIG_ENV_OFFSET
25 #undef CONFIG_NAND_OMAP_ECCSCHEME
26 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH16_CODE_HW
27
28 #define CONFIG_ENV_OFFSET 0x980000
29 #define CONFIG_SYS_ENV_SECT_SIZE (512 << 10) /* 512 KiB */
30 #define CONFIG_SYS_NAND_PAGE_SIZE 4096
31 #define CONFIG_SYS_NAND_OOBSIZE 224
32 #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * CONFIG_SYS_NAND_PAGE_SIZE)
33 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
34 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, \
35 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, \
36 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, \
37 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, \
38 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, \
39 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, \
40 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, \
41 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, \
42 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, \
43 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, \
44 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, \
45 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, \
46 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, \
47 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, \
48 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, \
49 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, \
50 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, \
51 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, \
52 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, \
53 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, \
54 }
55
56 #undef CONFIG_SYS_NAND_ECCSIZE
57 #undef CONFIG_SYS_NAND_ECCBYTES
58 #define CONFIG_SYS_NAND_ECCSIZE 512
59 #define CONFIG_SYS_NAND_ECCBYTES 26
60
61 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x200000
62
63 #define CONFIG_SYS_NAND_MAX_CHIPS 1
64
65 #undef CONFIG_SYS_MAX_NAND_DEVICE
66 #define CONFIG_SYS_MAX_NAND_DEVICE 3
67 #define CONFIG_SYS_NAND_BASE2 (0x18000000) /* physical address */
68 #define CONFIG_SYS_NAND_BASE_LIST {CONFIG_SYS_NAND_BASE, \
69 CONFIG_SYS_NAND_BASE2}
70
71 #define CONFIG_SYS_NAND_ONFI_DETECTION
72 #define DDR_PLL_FREQ 303
73 #undef CONFIG_SPL_AM33XX_ENABLE_RTC32K_OSC
74
75 /* FWD Button = 27
76 * SRV Button = 87 */
77 #define BOARD_DFU_BUTTON_GPIO 27
78 #define GPIO_LAN9303_NRST 88 /* GPIO2_24 = gpio88 */
79 /* In dfu mode keep led1 on */
80 #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
81 "button_dfu0=27\0" \
82 "button_dfu1=87\0" \
83 "led0=3,0,1\0" \
84 "led1=4,0,0\0" \
85 "led2=5,0,1\0" \
86 "led3=87,0,1\0" \
87 "led4=60,0,1\0" \
88 "led5=63,0,1\0"
89
90 /* Physical Memory Map */
91 #define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
92
93 /* I2C Configuration */
94 #define CONFIG_SYS_I2C_SPEED 100000
95
96 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
97 #define EEPROM_ADDR_DDR3 0x90
98 #define EEPROM_ADDR_CHIP 0x120
99
100 #undef CONFIG_MII
101 #undef CONFIG_PHY_GIGE
102 #define CONFIG_PHY_SMSC
103
104 #define CONFIG_FACTORYSET
105
106 /* use both define to compile a SPL compliance test */
107 /*
108 #define CONFIG_SPL_CMT
109 #define CONFIG_SPL_CMT_DEBUG
110 */
111
112 /* nedded by compliance test in read mode */
113 #if defined(CONFIG_SPL_CMT)
114 #define CONFIG_SYS_DCACHE_OFF
115 #endif
116
117 /* Define own nand partitions */
118 #define CONFIG_ENV_OFFSET_REDUND 0xB80000
119 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
120 #define CONFIG_ENV_RANGE (4 * CONFIG_SYS_ENV_SECT_SIZE)
121
122
123
124 #define CONFIG_DFU_MTD
125 #undef COMMON_ENV_DFU_ARGS
126 #define COMMON_ENV_DFU_ARGS "dfu_args=run bootargs_defaults;" \
127 "setenv bootargs ${bootargs};" \
128 "mtdparts default;" \
129 "draco_led 1;" \
130 "dfu 0 mtd 0;" \
131 "draco_led 0;\0" \
132
133 #undef DFU_ALT_INFO_NAND_V2
134 #define DFU_ALT_INFO_NAND_V2 \
135 "spl mtddev;" \
136 "spl.backup1 mtddev;" \
137 "spl.backup2 mtddev;" \
138 "spl.backup3 mtddev;" \
139 "u-boot mtddev;" \
140 "u-boot.env0 mtddev;" \
141 "u-boot.env1 mtddev;" \
142 "rootfs mtddevubi" \
143
144 #undef MTDIDS_NAME_STR
145 #define MTDIDS_NAME_STR "omap2-nand_concat"
146 #undef MTDIDS_DEFAULT
147 #define MTDIDS_DEFAULT "nand2=" MTDIDS_NAME_STR
148
149 #undef MTDPARTS_DEFAULT_V2
150 #define MTDPARTS_DEFAULT_V2 "mtdparts=" MTDIDS_NAME_STR ":" \
151 "512k(spl)," \
152 "512k(spl.backup1)," \
153 "512k(spl.backup2)," \
154 "512k(spl.backup3)," \
155 "7680k(u-boot)," \
156 "2048k(u-boot.env0)," \
157 "2048k(u-boot.env1)," \
158 "2048k(mtdoops)," \
159 "-(rootfs)"
160
161 #undef MTDPARTS_DEFAULT
162 #define MTDPARTS_DEFAULT MTDPARTS_DEFAULT_V2
163
164 #undef CONFIG_ENV_SETTINGS_NAND_V2
165 #define CONFIG_ENV_SETTINGS_NAND_V2 \
166 "nand_active_ubi_vol=rootfs_a\0" \
167 "rootfs_name=rootfs\0" \
168 "kernel_name=uImage\0"\
169 "nand_root_fs_type=ubifs rootwait=1\0" \
170 "nand_args=run bootargs_defaults;" \
171 "mtdparts default;" \
172 "setenv ${partitionset_active} true;" \
173 "if test -n ${A}; then " \
174 "setenv nand_active_ubi_vol ${rootfs_name}_a;" \
175 "fi;" \
176 "if test -n ${B}; then " \
177 "setenv nand_active_ubi_vol ${rootfs_name}_b;" \
178 "fi;" \
179 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
180 "ubi.mtd=rootfs,${ubi_off};" \
181 "setenv bootargs ${bootargs} " \
182 "root=${nand_root} noinitrd ${mtdparts} " \
183 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
184 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
185 "=mtdoops\0" \
186 COMMON_ENV_DFU_ARGS \
187 "dfu_alt_info=" DFU_ALT_INFO_NAND_V2 "\0" \
188 COMMON_ENV_NAND_BOOT \
189 "ubi part rootfs ${ubi_off};" \
190 "ubifsmount ubi0:${nand_active_ubi_vol};" \
191 "ubifsload ${kloadaddr} boot/${kernel_name};" \
192 "ubifsload ${loadaddr} boot/${dtb_name}.dtb;" \
193 "bootm ${kloadaddr} - ${loadaddr}\0" \
194 "nand_boot_backup=ubifsload ${loadaddr} boot/am335x-draco.dtb;" \
195 "bootm ${kloadaddr} - ${loadaddr}\0" \
196 COMMON_ENV_NAND_CMDS
197
198 #ifndef CONFIG_SPL_BUILD
199
200 #define CONFIG_NAND_CS_INIT
201 #define ETAMIN_NAND_GPMC_CONFIG1 0x00000800
202 #define ETAMIN_NAND_GPMC_CONFIG2 0x001e1e00
203 #define ETAMIN_NAND_GPMC_CONFIG3 0x001e1e00
204 #define ETAMIN_NAND_GPMC_CONFIG4 0x16051807
205 #define ETAMIN_NAND_GPMC_CONFIG5 0x00151e1e
206 #define ETAMIN_NAND_GPMC_CONFIG6 0x16000f80
207 #define CONFIG_MTD_CONCAT
208
209 /* Default env settings */
210 #define CONFIG_EXTRA_ENV_SETTINGS \
211 "hostname=etamin\0" \
212 "ubi_off=4096\0"\
213 "nand_img_size=0x400000\0" \
214 "optargs=\0" \
215 "preboot=draco_led 0\0" \
216 CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
217 CONFIG_ENV_SETTINGS_V2 \
218 CONFIG_ENV_SETTINGS_NAND_V2
219
220 #ifndef CONFIG_RESTORE_FLASH
221
222 #define CONFIG_BOOTCOMMAND \
223 "if dfubutton; then " \
224 "run dfu_start; " \
225 "reset; " \
226 "fi;" \
227 "run nand_boot;" \
228 "run nand_boot_backup;" \
229 "reset;"
230
231
232 #else
233 #define CONFIG_BOOTCOMMAND \
234 "setenv autoload no; " \
235 "dhcp; " \
236 "if tftp 80000000 debrick.scr; then " \
237 "source 80000000; " \
238 "fi"
239 #endif
240 #endif /* CONFIG_SPL_BUILD */
241 #endif /* ! __CONFIG_ETAMIN_H */