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