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