Merge https://source.denx.de/u-boot/custodians/u-boot-riscv
[platform/kernel/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 #include <linux/stringify.h>
17 /* ------------------------------------------------------------------------- */
18 /* memory */
19 #define CONFIG_SYS_BOOTM_LEN            SZ_32M
20
21 /* Clock Defines */
22 #define V_OSCK                          26000000  /* Clock output from T2 */
23 #define V_SCLK                          (V_OSCK)
24
25 /*
26  * When we have NAND flash we expect to be making use of mtdparts,
27  * both for ease of use in U-Boot and for passing information on to
28  * the Linux kernel.
29  */
30
31 #ifdef CONFIG_SPL_OS_BOOT
32 #define CONFIG_SYS_SPL_ARGS_ADDR                0x80F80000
33
34 /* RAW SD card / eMMC */
35 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR   0x80    /* address 0x10000 */
36 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS  0x80    /* 64KiB */
37
38 /* NAND */
39 #ifdef CONFIG_MTD_RAW_NAND
40 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS         0x140000
41 #endif /* CONFIG_MTD_RAW_NAND */
42 #endif /* CONFIG_SPL_OS_BOOT */
43
44 #ifdef CONFIG_MTD_RAW_NAND
45 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
46 #endif /* CONFIG_MTD_RAW_NAND */
47
48 #ifdef CONFIG_MTD_RAW_NAND
49 #define NANDTGTS \
50 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
51 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
52 "cfgscr=mw ${dtbaddr} 0; nand read ${cfgaddr} cfgscr && source ${cfgaddr};" \
53 " fdt addr ${dtbaddr} || cp ${fdtcontroladdr} ${dtbaddr} 4000\0" \
54 "nandargs=setenv bootargs console=${console} ${optargs} ${optargs_rot} " \
55         "root=mtd6 rootfstype=jffs2 b_mode=${b_mode}\0" \
56 "b_nand=nand read ${loadaddr} kernel; nand read ${dtbaddr} dtb; " \
57         "run nandargs; run cfgscr; bootz ${loadaddr} - ${dtbaddr}\0" \
58 "b_tgts_std=usb0 nand net\0" \
59 "b_tgts_rcy=net usb0 nand\0" \
60 "b_tgts_pme=usb0 nand net\0"
61 #else
62 #define NANDTGTS ""
63 #endif /* CONFIG_MTD_RAW_NAND */
64
65 #define MMCSPI_TGTS \
66 "t30args#0=setenv bootargs ${optargs_rot} ${optargs} console=${console} " \
67         "b_mode=${b_mode} root=/dev/mmcblk0p2 rootfstype=ext4\0" \
68 "b_t30lgcy#0=" \
69         "load ${loaddev}:2 ${loadaddr} /boot/PPTImage.md5 && " \
70         "load ${loaddev}:2 ${loadaddr} /boot/zImage && " \
71         "load ${loaddev}:2 ${dtbaddr} /boot/am335x-ppt30.dtb || " \
72         "load ${loaddev}:1 ${dtbaddr} am335x-ppt30-legacy.dtb; "\
73         "run t30args#0; run cfgscr; bootz ${loadaddr} - ${dtbaddr}\0" \
74 "t30args#1=setenv bootargs ${optargs_rot} ${optargs} console=${console} " \
75         "b_mode=${b_mode}\0" \
76 "b_t30lgcy#1=" \
77         "load ${loaddev}:1 ${loadaddr} zImage && " \
78         "load ${loaddev}:1 ${dtbaddr} am335x-ppt30.dtb && " \
79         "load ${loaddev}:1 ${ramaddr} rootfsPPT30.uboot && " \
80         "run t30args#1; run cfgscr; bootz ${loadaddr} ${ramaddr} ${dtbaddr}\0" \
81 "b_mmc0=load ${loaddev}:1 ${scraddr} bootscr.img && source ${scraddr}\0" \
82 "b_mmc1=load ${loaddev}:1 ${scraddr} /boot/bootscr.img && source ${scraddr}\0" \
83 "b_tgts_std=mmc0 mmc1 t30lgcy#0 t30lgcy#1 usb0 net\0" \
84 "b_tgts_rcy=t30lgcy#1 usb0 net\0" \
85 "b_tgts_pme=net usb0 mmc0 mmc1\0" \
86 "loaddev=mmc 1\0"
87
88 #ifdef CONFIG_ENV_IS_IN_MMC
89 #define MMCTGTS \
90 MMCSPI_TGTS \
91 "cfgscr=mw ${dtbaddr} 0;" \
92 " mmc dev 1; mmc read ${cfgaddr} 200 80; source ${cfgaddr};" \
93 " fdt addr ${dtbaddr} || cp ${fdtcontroladdr} ${dtbaddr} 4000\0"
94 #else
95 #define MMCTGTS ""
96 #endif /* CONFIG_MMC */
97
98 #ifdef CONFIG_SPI
99 #define SPITGTS \
100 MMCSPI_TGTS \
101 "cfgscr=mw ${dtbaddr} 0;" \
102 " sf probe; sf read ${cfgaddr} 0xC0000 10000; source ${cfgaddr};" \
103 " fdt addr ${dtbaddr} || cp ${fdtcontroladdr} ${dtbaddr} 4000\0"
104 #else
105 #define SPITGTS ""
106 #endif /* CONFIG_SPI */
107
108 #define LOAD_OFFSET(x)                  0x8##x
109
110 #ifndef CONFIG_SPL_BUILD
111 #define CONFIG_EXTRA_ENV_SETTINGS \
112 BUR_COMMON_ENV \
113 "verify=no\0" \
114 "autoload=0\0" \
115 "scraddr=" __stringify(LOAD_OFFSET(0000000)) "\0" \
116 "cfgaddr=" __stringify(LOAD_OFFSET(0020000)) "\0" \
117 "dtbaddr=" __stringify(LOAD_OFFSET(0040000)) "\0" \
118 "loadaddr=" __stringify(LOAD_OFFSET(0100000)) "\0" \
119 "ramaddr=" __stringify(LOAD_OFFSET(2000000)) "\0" \
120 "console=ttyO0,115200n8\0" \
121 "optargs=consoleblank=0 quiet panic=2\0" \
122 "b_break=0\0" \
123 "b_usb0=usb start && load usb 0 ${scraddr} bootscr.img && source ${scraddr}\0" \
124 "b_net=tftp ${scraddr} netscript.img && source ${scraddr}\0" \
125 MMCTGTS \
126 SPITGTS \
127 NANDTGTS \
128 "b_deftgts=if test ${b_mode} = 12; then setenv b_tgts ${b_tgts_pme};" \
129 " elif test ${b_mode} = 0; then setenv b_tgts ${b_tgts_rcy};" \
130 " else setenv b_tgts ${b_tgts_std}; fi\0" \
131 "b_default=run b_deftgts; for target in ${b_tgts};"\
132 " do echo \"### booting ${target} ###\"; run b_${target};" \
133 " if test ${b_break} = 1; then; exit; fi; done\0"
134 #endif /* !CONFIG_SPL_BUILD*/
135
136 #ifdef CONFIG_MTD_RAW_NAND
137 /*
138  * GPMC  block.  We support 1 device and the physical address to
139  * access CS0 at is 0x8000000.
140  */
141 #define CONFIG_SYS_MAX_NAND_DEVICE      1
142 #define CONFIG_SYS_NAND_BASE            0x8000000
143 /* don't change OMAP_ELM, ECCSCHEME. ROM code only supports this */
144 #define CONFIG_SYS_NAND_ECCPOS          {2, 3, 4, 5, 6, 7, 8, 9, \
145                                         10, 11, 12, 13, 14, 15, 16, 17, \
146                                         18, 19, 20, 21, 22, 23, 24, 25, \
147                                         26, 27, 28, 29, 30, 31, 32, 33, \
148                                         34, 35, 36, 37, 38, 39, 40, 41, \
149                                         42, 43, 44, 45, 46, 47, 48, 49, \
150                                         50, 51, 52, 53, 54, 55, 56, 57, }
151
152 #define CONFIG_SYS_NAND_ECCSIZE         512
153 #define CONFIG_SYS_NAND_ECCBYTES        14
154
155 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
156
157 #define CONFIG_NAND_OMAP_GPMC_WSCFG     1
158 #endif /* CONFIG_MTD_RAW_NAND */
159
160 #if defined(CONFIG_ENV_IS_IN_NAND)
161 #define CONFIG_SYS_ENV_SECT_SIZE        CONFIG_ENV_SIZE
162 #endif
163
164 #endif  /* ! __CONFIG_BRPPT1_H__ */