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