036f1f327cb3f1bac10a0e20ea70223687506771
[platform/kernel/u-boot.git] / include / configs / tseries.h
1 /*
2  * tseries.h
3  *
4  * specific parts for B&R T-Series Motherboard
5  *
6  * Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at> -
7  * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
8  *
9  * SPDX-License-Identifier:        GPL-2.0+
10  */
11
12 #ifndef __CONFIG_TSERIES_H__
13 #define __CONFIG_TSERIES_H__
14
15 #include <configs/bur_cfg_common.h>
16 #include <configs/bur_am335x_common.h>
17 /* ------------------------------------------------------------------------- */
18 #define CONFIG_AM335X_LCD
19 #define CONFIG_LCD
20 #define CONFIG_LCD_ROTATION
21 #define CONFIG_LCD_DT_SIMPLEFB
22 #define CONFIG_SYS_WHITE_ON_BLACK
23 #define LCD_BPP                         LCD_COLOR32
24
25 #define CONFIG_HW_WATCHDOG
26 #define CONFIG_OMAP_WATCHDOG
27 #define CONFIG_SPL_WATCHDOG_SUPPORT
28
29 #define CONFIG_SPL_GPIO_SUPPORT
30 /* Bootcount using the RTC block */
31 #define CONFIG_SYS_BOOTCOUNT_ADDR       0x44E3E000
32 #define CONFIG_BOOTCOUNT_LIMIT
33 #define CONFIG_BOOTCOUNT_AM33XX
34
35 /* memory */
36 #define CONFIG_SYS_MALLOC_LEN           (5 * 1024 * 1024)
37
38 /* Clock Defines */
39 #define V_OSCK                          26000000  /* Clock output from T2 */
40 #define V_SCLK                          (V_OSCK)
41
42 #define CONFIG_POWER_TPS65217
43
44 /* Support both device trees and ATAGs. */
45 #define CONFIG_USE_FDT                  /* use fdt within board code */
46 #define CONFIG_OF_BOARD_SETUP
47 #define CONFIG_CMDLINE_TAG
48 #define CONFIG_SETUP_MEMORY_TAGS
49 #define CONFIG_INITRD_TAG
50 #define CONFIG_CMD_BOOTZ
51 /*#define CONFIG_MACH_TYPE              3589*/
52 #define CONFIG_MACH_TYPE                0xFFFFFFFF /* TODO: check with kernel*/
53
54 /* MMC/SD IP block */
55 #if defined(CONFIG_EMMC_BOOT)
56  #define CONFIG_MMC
57  #define CONFIG_GENERIC_MMC
58  #define CONFIG_OMAP_HSMMC
59  #define CONFIG_CMD_MMC
60  #define CONFIG_SUPPORT_EMMC_BOOT
61 /* RAW SD card / eMMC locations. */
62  #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR        0x300 /*addr. 0x60000 */
63  #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS             0x200 /* 256 KB */
64  #define CONFIG_SPL_MMC_SUPPORT
65 #endif /* CONFIG_EMMC_BOOT */
66
67 /*
68  * When we have SPI or NAND flash we expect to be making use of mtdparts,
69  * both for ease of use in U-Boot and for passing information on to
70  * the Linux kernel.
71  */
72 #if defined(CONFIG_SPI_BOOT) || defined(CONFIG_NAND)
73 #define CONFIG_MTD_DEVICE               /* Required for mtdparts */
74 #define CONFIG_CMD_MTDPARTS
75 #endif /* CONFIG_SPI_BOOT, ... */
76
77 #undef CONFIG_SPL_OS_BOOT
78 #ifdef CONFIG_SPL_OS_BOOT
79 #define CONFIG_SYS_SPL_ARGS_ADDR                0x80F80000
80
81 /* RAW SD card / eMMC */
82 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x900   /* address 0x120000 */
83 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR   0x80    /* address 0x10000 */
84 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS  0x80    /* 64KiB */
85
86 /* NAND */
87 #ifdef CONFIG_NAND
88 #define CONFIG_CMD_SPL_NAND_OFS                 0x080000 /* end of u-boot */
89 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS         0x140000
90 #define CONFIG_CMD_SPL_WRITE_SIZE               0x2000
91 #endif /* CONFIG_NAND */
92 #endif /* CONFIG_SPL_OS_BOOT */
93
94 #ifdef CONFIG_NAND
95 #define CONFIG_SPL_NAND_AM33XX_BCH      /* OMAP4 and later ELM support */
96 #define CONFIG_SPL_NAND_SUPPORT
97 #define CONFIG_SPL_NAND_BASE
98 #define CONFIG_SPL_NAND_DRIVERS
99 #define CONFIG_SPL_NAND_ECC
100 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
101 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x80000
102 #endif /* CONFIG_NAND */
103
104 /* Always 64 KiB env size */
105 #define CONFIG_ENV_SIZE                 (64 << 10)
106
107 #ifdef CONFIG_NAND
108 #define NANDARGS \
109         "mtdids=" MTDIDS_DEFAULT "\0" \
110         "mtdparts=" MTDPARTS_DEFAULT "\0" \
111         "nandargs=setenv bootargs console=${console} " \
112                 "${optargs} " \
113                 "${optargs_rot} " \
114                 "root=mtd6 " \
115                 "rootfstype=jffs2\0" \
116         "kernelsize=0x400000\0" \
117         "nandboot=echo booting from nand ...; " \
118                 "run nandargs; " \
119                 "nand read ${loadaddr} kernel ${kernelsize}; " \
120                 "bootz ${loadaddr} - ${dtbaddr}\0" \
121         "defboot=run nandboot\0" \
122         "bootlimit=1\0" \
123         "simplefb=1\0 " \
124         "altbootcmd=run usbscript\0"
125 #else
126 #define NANDARGS ""
127 #endif /* CONFIG_NAND */
128
129 #ifdef CONFIG_MMC
130 #define MMCARGS \
131 "dtbdev=mmc\0" \
132 "dtbpart=0:1\0" \
133 "mmcroot0=setenv bootargs ${optargs_rot} ${optargs} console=${console}\0" \
134 "mmcroot1=setenv bootargs ${optargs_rot} ${optargs} console=${console} " \
135         "root=/dev/mmcblk0p2 rootfstype=ext4\0" \
136 "mmcboot0=echo booting Updatesystem from mmc (ext4-fs) ...; " \
137         "setenv simplefb 1; " \
138         "ext4load mmc 0:1 ${loadaddr} /${kernel}; " \
139         "ext4load mmc 0:1 ${ramaddr} /${ramdisk}; " \
140         "run mmcroot0; bootz ${loadaddr} ${ramaddr} ${dtbaddr};\0" \
141 "mmcboot1=echo booting PPT-OS from mmc (ext4-fs) ...; " \
142         "setenv simplefb 0; " \
143         "ext4load mmc 0:2 ${loadaddr} /boot/${kernel}; " \
144         "run mmcroot1; bootz ${loadaddr} - ${dtbaddr};\0" \
145 "defboot=ext4load mmc 0:2 ${loadaddr} /boot/PPTImage.md5 && run mmcboot1; " \
146         "ext4load mmc 0:1 ${dtbaddr} /$dtb && run mmcboot0; " \
147         "run ramboot; run usbscript;\0" \
148 "bootlimit=1\0" \
149 "altbootcmd=run mmcboot0;\0" \
150 "upduboot=dhcp; " \
151         "tftp ${loadaddr} MLO && mmc write ${loadaddr} 100 100; " \
152         "tftp ${loadaddr} u-boot.img && mmc write ${loadaddr} 300 400;\0"
153 #else
154 #define MMCARGS ""
155 #endif /* CONFIG_MMC */
156
157 #ifndef CONFIG_SPL_BUILD
158 #define CONFIG_EXTRA_ENV_SETTINGS \
159 BUR_COMMON_ENV \
160 "verify=no\0" \
161 "autoload=0\0" \
162 "dtb=bur-ppt-ts30.dtb\0" \
163 "dtbaddr=0x80100000\0" \
164 "loadaddr=0x80200000\0" \
165 "ramaddr=0x80A00000\0" \
166 "kernel=zImage\0" \
167 "ramdisk=rootfs.cpio.uboot\0" \
168 "console=ttyO0,115200n8\0" \
169 "optargs=consoleblank=0 quiet panic=2\0" \
170 "nfsroot=/tftpboot/tseries/rootfs-small\0" \
171 "nfsopts=nolock\0" \
172 "ramargs=setenv bootargs ${optargs} console=${console} root=/dev/ram0\0" \
173 "netargs=setenv bootargs console=${console} " \
174         "${optargs} " \
175         "root=/dev/nfs " \
176         "nfsroot=${serverip}:${nfsroot},${nfsopts} rw " \
177         "ip=dhcp\0" \
178 "netboot=echo Booting from network ...; " \
179         "dhcp; " \
180         "tftp ${loadaddr} ${kernel}; " \
181         "tftp ${dtbaddr} ${dtb}; " \
182         "run netargs; " \
183         "bootz ${loadaddr} - ${dtbaddr}\0" \
184 "ramboot=echo Booting from network into RAM ...; "\
185         "if dhcp; then; " \
186         "tftp ${loadaddr} ${kernel}; " \
187         "tftp ${ramaddr} ${ramdisk}; " \
188         "if ext4load ${dtbdev} ${dtbpart} ${dtbaddr} /${dtb}; " \
189         "then; else tftp ${dtbaddr} ${dtb}; fi;" \
190         "run mmcroot0; " \
191         "bootz ${loadaddr} ${ramaddr} ${dtbaddr}; fi;\0" \
192 "netupdate=echo Updating UBOOT from Network (TFTP) ...; " \
193         "setenv autoload 0; " \
194         "dhcp && tftp 0x80000000 updateUBOOT.img && source;\0" \
195 NANDARGS \
196 MMCARGS
197 #endif /* !CONFIG_SPL_BUILD*/
198
199 #define CONFIG_BOOTCOMMAND \
200         "run defboot;"
201 #define CONFIG_BOOTDELAY                0
202
203 #ifdef CONFIG_NAND
204 /*
205  * GPMC  block.  We support 1 device and the physical address to
206  * access CS0 at is 0x8000000.
207  */
208 #define CONFIG_SYS_MAX_NAND_DEVICE      1
209 #define CONFIG_SYS_NAND_BASE            0x8000000
210 #define CONFIG_NAND_OMAP_GPMC
211 /* don't change OMAP_ELM, ECCSCHEME. ROM code only supports this */
212 #define CONFIG_NAND_OMAP_ELM
213 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_BCH8_CODE_HW
214 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
215 #define CONFIG_SYS_NAND_BLOCK_SIZE      (128*1024)
216 #define CONFIG_SYS_NAND_PAGE_SIZE       2048
217 #define CONFIG_SYS_NAND_PAGE_COUNT      (CONFIG_SYS_NAND_BLOCK_SIZE / \
218                                         CONFIG_SYS_NAND_PAGE_SIZE)
219 #define CONFIG_SYS_NAND_OOBSIZE         64
220 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   NAND_LARGE_BADBLOCK_POS
221 #define CONFIG_SYS_NAND_ECCPOS          {2, 3, 4, 5, 6, 7, 8, 9, \
222                                         10, 11, 12, 13, 14, 15, 16, 17, \
223                                         18, 19, 20, 21, 22, 23, 24, 25, \
224                                         26, 27, 28, 29, 30, 31, 32, 33, \
225                                         34, 35, 36, 37, 38, 39, 40, 41, \
226                                         42, 43, 44, 45, 46, 47, 48, 49, \
227                                         50, 51, 52, 53, 54, 55, 56, 57, }
228
229 #define CONFIG_SYS_NAND_ECCSIZE         512
230 #define CONFIG_SYS_NAND_ECCBYTES        14
231
232 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
233 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x80000
234
235 #define MTDIDS_DEFAULT                  "nand0=omap2-nand.0"
236 #define MTDPARTS_DEFAULT                "mtdparts=omap2-nand.0:" \
237                                         "128k(MLO)," \
238                                         "128k(MLO.backup)," \
239                                         "128k(dtb)," \
240                                         "128k(u-boot-env)," \
241                                         "512k(u-boot)," \
242                                         "4m(kernel),"\
243                                         "128m(rootfs),"\
244                                         "-(user)"
245 #define CONFIG_NAND_OMAP_GPMC_WSCFG     1
246 #endif /* CONFIG_NAND */
247
248 /* USB configuration */
249 #define CONFIG_USB_MUSB_DSPS
250 #define CONFIG_ARCH_MISC_INIT
251 #define CONFIG_USB_MUSB_PIO_ONLY
252 #define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
253 /* attention! not only for gadget, enables also highspeed in hostmode */
254 #define CONFIG_USB_GADGET_DUALSPEED
255 #define CONFIG_AM335X_USB0
256 #define CONFIG_AM335X_USB0_MODE MUSB_HOST
257 #define CONFIG_AM335X_USB1
258 #define CONFIG_AM335X_USB1_MODE MUSB_HOST
259
260 #if defined(CONFIG_SPI_BOOT)
261 /* McSPI IP block */
262 #define CONFIG_SPI
263 #define CONFIG_OMAP3_SPI
264 #define CONFIG_SF_DEFAULT_SPEED         24000000
265
266 #define CONFIG_SPL_SPI_SUPPORT
267 #define CONFIG_SPL_SPI_FLASH_SUPPORT
268 #define CONFIG_SPL_SPI_LOAD
269 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x20000
270 #undef CONFIG_ENV_IS_NOWHERE
271 #define CONFIG_ENV_IS_IN_SPI_FLASH
272 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
273 #define CONFIG_ENV_SPI_MAX_HZ           CONFIG_SF_DEFAULT_SPEED
274 #define CONFIG_ENV_SECT_SIZE            (4 << 10) /* 4 KB sectors */
275 #define CONFIG_ENV_OFFSET               (768 << 10) /* 768 KiB in */
276 #define CONFIG_ENV_OFFSET_REDUND        (896 << 10) /* 896 KiB in */
277
278 #elif defined(CONFIG_EMMC_BOOT)
279 #undef CONFIG_ENV_IS_NOWHERE
280 #define CONFIG_ENV_IS_IN_MMC
281 #define CONFIG_SYS_MMC_ENV_DEV          0
282 #define CONFIG_SYS_MMC_ENV_PART         2
283 #define CONFIG_ENV_OFFSET               0x40000 /* TODO: Adresse definieren */
284 #define CONFIG_ENV_OFFSET_REDUND        (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
285 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
286
287 #elif defined(CONFIG_NAND)
288 /* No NAND env support in SPL */
289 #ifdef CONFIG_SPL_BUILD
290 #define CONFIG_ENV_IS_NOWHERE
291 #else
292 #define CONFIG_ENV_IS_IN_NAND
293 #endif
294 #define CONFIG_ENV_OFFSET               0x60000
295 #define CONFIG_SYS_ENV_SECT_SIZE        CONFIG_ENV_SIZE
296 #else
297 #error "no storage for Environment defined!"
298 #endif
299 /*
300  * Common filesystems support.  When we have removable storage we
301  * enabled a number of useful commands and support.
302  */
303 #if defined(CONFIG_MMC) || defined(CONFIG_USB_STORAGE)
304 #define CONFIG_DOS_PARTITION
305 #define CONFIG_CMD_FAT
306 #define CONFIG_FAT_WRITE
307 #define CONFIG_FS_EXT4
308 #define CONFIG_EXT4_WRITE
309 #define CONFIG_CMD_EXT4
310 #define CONFIG_CMD_EXT4_WRITE
311 #define CONFIG_CMD_FS_GENERIC
312 #endif /* CONFIG_MMC, ... */
313
314 #endif  /* ! __CONFIG_TSERIES_H__ */