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