20a8e2657a105c41724b8def9dad2c41d36e5e18
[platform/kernel/u-boot.git] / include / configs / etamin.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2013 Siemens Schweiz AG
4  * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
5  *
6  * Based on:
7  * U-Boot file:/include/configs/am335x_evm.h
8  *
9  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
10  */
11
12 #ifndef __CONFIG_ETAMIN_H
13 #define __CONFIG_ETAMIN_H
14
15 #include "siemens-am33x-common.h"
16 /* NAND specific changes for etamin due to different page size */
17 #undef CONFIG_SYS_NAND_ECCPOS
18 #undef CONFIG_SYS_ENV_SECT_SIZE
19 #undef CONFIG_NAND_OMAP_ECCSCHEME
20 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_BCH16_CODE_HW
21
22 #define CONFIG_SYS_ENV_SECT_SIZE       (512 << 10)     /* 512 KiB */
23 #define CONFIG_SYS_NAND_ECCPOS  { 2, 3, 4, 5, 6, 7, 8, 9, \
24                                 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, \
25                                 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, \
26                                 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, \
27                                 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, \
28                                 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, \
29                                 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, \
30                                 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, \
31                                 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, \
32                                 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, \
33                         100, 101, 102, 103, 104, 105, 106, 107, 108, 109, \
34                         110, 111, 112, 113, 114, 115, 116, 117, 118, 119, \
35                         120, 121, 122, 123, 124, 125, 126, 127, 128, 129, \
36                         130, 131, 132, 133, 134, 135, 136, 137, 138, 139, \
37                         140, 141, 142, 143, 144, 145, 146, 147, 148, 149, \
38                         150, 151, 152, 153, 154, 155, 156, 157, 158, 159, \
39                         160, 161, 162, 163, 164, 165, 166, 167, 168, 169, \
40                         170, 171, 172, 173, 174, 175, 176, 177, 178, 179, \
41                         180, 181, 182, 183, 184, 185, 186, 187, 188, 189, \
42                         190, 191, 192, 193, 194, 195, 196, 197, 198, 199, \
43                         200, 201, 202, 203, 204, 205, 206, 207, 208, 209, \
44                         }
45
46 #undef CONFIG_SYS_NAND_ECCSIZE
47 #undef CONFIG_SYS_NAND_ECCBYTES
48 #define CONFIG_SYS_NAND_ECCSIZE 512
49 #define CONFIG_SYS_NAND_ECCBYTES 26
50
51 #undef CONFIG_SYS_MAX_NAND_DEVICE
52 #define CONFIG_SYS_MAX_NAND_DEVICE      3
53 #define CONFIG_SYS_NAND_BASE2           (0x18000000)    /* physical address */
54 #define CONFIG_SYS_NAND_BASE_LIST       {CONFIG_SYS_NAND_BASE, \
55                                         CONFIG_SYS_NAND_BASE2}
56
57 #define DDR_PLL_FREQ    303
58
59 /* FWD Button = 27
60  * SRV Button = 87 */
61 #define BOARD_DFU_BUTTON_GPIO   27
62 #define GPIO_LAN9303_NRST       88      /* GPIO2_24 = gpio88 */
63 /* In dfu mode keep led1 on */
64 #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
65         "button_dfu0=27\0" \
66         "button_dfu1=87\0" \
67         "led0=3,0,1\0" \
68         "led1=4,0,0\0" \
69         "led2=5,0,1\0" \
70         "led3=87,0,1\0" \
71         "led4=60,0,1\0" \
72         "led5=63,0,1\0"
73
74 /* Physical Memory Map */
75 #define CONFIG_MAX_RAM_BANK_SIZE       (1024 << 20)    /* 1GB */
76
77 #define EEPROM_ADDR_DDR3 0x90
78 #define EEPROM_ADDR_CHIP 0x120
79
80 #define CONFIG_FACTORYSET
81
82 /* use both define to compile a SPL compliance test  */
83 /*
84 #define CONFIG_SPL_CMT
85 #define CONFIG_SPL_CMT_DEBUG
86 */
87
88 /* nedded by compliance test in read mode */
89 #if defined(CONFIG_SPL_CMT)
90 #define CONFIG_SYS_DCACHE_OFF
91 #endif
92
93 /* Define own nand partitions */
94 #define CONFIG_ENV_RANGE                (4 * CONFIG_SYS_ENV_SECT_SIZE)
95
96
97 #undef COMMON_ENV_DFU_ARGS
98 #define COMMON_ENV_DFU_ARGS     "dfu_args=run bootargs_defaults;" \
99                                 "setenv bootargs ${bootargs};" \
100                                 "mtdparts default;" \
101                                 "draco_led 1;" \
102                                 "dfu 0 mtd 0;" \
103                                 "draco_led 0;\0" \
104
105 #undef DFU_ALT_INFO_NAND_V2
106 #define DFU_ALT_INFO_NAND_V2 \
107         "spl mtddev;" \
108         "spl.backup1 mtddev;" \
109         "spl.backup2 mtddev;" \
110         "spl.backup3 mtddev;" \
111         "u-boot mtddev;" \
112         "u-boot.env0 mtddev;" \
113         "u-boot.env1 mtddev;" \
114         "rootfs mtddevubi" \
115
116 #undef CONFIG_ENV_SETTINGS_NAND_V2
117 #define CONFIG_ENV_SETTINGS_NAND_V2 \
118         "nand_active_ubi_vol=rootfs_a\0" \
119         "rootfs_name=rootfs\0" \
120         "kernel_name=uImage\0"\
121         "nand_root_fs_type=ubifs rootwait=1\0" \
122         "nand_args=run bootargs_defaults;" \
123                 "mtdparts default;" \
124                 "setenv ${partitionset_active} true;" \
125                 "if test -n ${A}; then " \
126                         "setenv nand_active_ubi_vol ${rootfs_name}_a;" \
127                 "fi;" \
128                 "if test -n ${B}; then " \
129                         "setenv nand_active_ubi_vol ${rootfs_name}_b;" \
130                 "fi;" \
131                 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
132                 "ubi.mtd=rootfs,${ubi_off};" \
133                 "setenv bootargs ${bootargs} " \
134                 "root=${nand_root} noinitrd ${mtdparts} " \
135                 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
136                 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
137                 "=mtdoops\0" \
138         COMMON_ENV_DFU_ARGS \
139                 "dfu_alt_info=" DFU_ALT_INFO_NAND_V2 "\0" \
140         COMMON_ENV_NAND_BOOT \
141                 "ubi part rootfs ${ubi_off};" \
142                 "ubifsmount ubi0:${nand_active_ubi_vol};" \
143                 "ubifsload ${kloadaddr} boot/${kernel_name};" \
144                 "ubifsload ${loadaddr} boot/${dtb_name}.dtb;" \
145                 "bootm ${kloadaddr} - ${loadaddr}\0" \
146         "nand_boot_backup=ubifsload ${loadaddr} boot/am335x-draco.dtb;" \
147                 "bootm ${kloadaddr} - ${loadaddr}\0" \
148         COMMON_ENV_NAND_CMDS
149
150 #ifndef CONFIG_SPL_BUILD
151
152 #define CONFIG_NAND_CS_INIT
153 #define ETAMIN_NAND_GPMC_CONFIG1        0x00000800
154 #define ETAMIN_NAND_GPMC_CONFIG2        0x001e1e00
155 #define ETAMIN_NAND_GPMC_CONFIG3        0x001e1e00
156 #define ETAMIN_NAND_GPMC_CONFIG4        0x16051807
157 #define ETAMIN_NAND_GPMC_CONFIG5        0x00151e1e
158 #define ETAMIN_NAND_GPMC_CONFIG6        0x16000f80
159 #define CONFIG_MTD_CONCAT
160
161 /* Default env settings */
162 #define CONFIG_EXTRA_ENV_SETTINGS \
163         "hostname=etamin\0" \
164         "ubi_off=4096\0"\
165         "nand_img_size=0x400000\0" \
166         "optargs=\0" \
167         "preboot=draco_led 0\0" \
168         CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
169         CONFIG_ENV_SETTINGS_V2 \
170         CONFIG_ENV_SETTINGS_NAND_V2
171
172 #ifndef CONFIG_RESTORE_FLASH
173
174 #define CONFIG_BOOTCOMMAND \
175 "if dfubutton; then " \
176         "run dfu_start; " \
177         "reset; " \
178 "fi;" \
179 "run nand_boot;" \
180 "run nand_boot_backup;" \
181 "reset;"
182
183
184 #else
185 #define CONFIG_BOOTCOMMAND                      \
186         "setenv autoload no; "                  \
187         "dhcp; "                                \
188         "if tftp 80000000 debrick.scr; then "   \
189                 "source 80000000; "             \
190         "fi"
191 #endif
192 #endif  /* CONFIG_SPL_BUILD */
193 #endif  /* ! __CONFIG_ETAMIN_H */