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