1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2017 Grinn - http://grinn-global.com/
6 #ifndef __CONFIG_CHILIBOARD_H
7 #define __CONFIG_CHILIBOARD_H
9 #include <configs/ti_am335x_common.h>
12 #define V_OSCK 24000000 /* Clock output from T2 */
13 #define V_SCLK (V_OSCK)
16 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
17 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
18 "nandargs=setenv bootargs console=${console} ${optargs} " \
21 "rootfstype=${nandrootfstype}\0" \
22 "nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system\0" \
23 "nandrootfstype=ubifs rootwait=1\0" \
24 "nandboot=echo Booting from nand ...; " \
26 "nand read ${fdt_addr} NAND.u-boot-spl-os; " \
27 "nand read ${loadaddr} NAND.kernel; " \
28 "bootz ${loadaddr} - ${fdt_addr}\0"
30 #define CONFIG_EXTRA_ENV_SETTINGS \
31 "loadaddr=0x82000000\0" \
32 "fdt_addr=0x87800000\0" \
34 "console=ttyO0,115200n8\0" \
36 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
40 "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
41 "bootscript=echo Running bootscript from mmc ...; " \
43 "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} " \
44 "${boot_dir}/${image}\0" \
45 "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} " \
46 "${boot_dir}/${fdt_file}\0" \
49 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
50 "mmcargs=setenv bootargs console=${console},${baudrate} ${optargs} " \
53 "mmcloados=run mmcargs; " \
54 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
55 "if run loadfdt; then " \
56 "bootz ${loadaddr} - ${fdt_addr}; " \
58 "if test ${boot_fdt} = try; then " \
61 "echo WARN: Cannot load the DT; " \
67 "mmcboot=mmc dev ${mmcdev}; " \
68 "if mmc rescan; then " \
69 "echo SD/MMC found on device ${mmcdev};" \
70 "if run loadimage; then " \
74 "netargs=setenv bootargs console=${console},${baudrate} ${optargs} " \
77 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
78 "netboot=echo Booting from net ...; " \
80 "if test ${ip_dyn} = yes; then " \
81 "setenv get_cmd dhcp; " \
83 "setenv get_cmd tftp; " \
85 "${get_cmd} ${image}; " \
86 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
87 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
88 "bootz ${loadaddr} - ${fdt_addr}; " \
90 "if test ${boot_fdt} = try; then " \
93 "echo WARN: Cannot load the DT; " \
101 /* NS16550 Configuration */
102 #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* UART0 */
103 #define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */
104 #define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */
105 #define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */
106 #define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */
107 #define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */
110 /* Bootcount using the RTC block */
111 #define CONFIG_SYS_BOOTCOUNT_BE
113 /* NAND: device related configs */
114 /* NAND: driver related configs */
115 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
116 10, 11, 12, 13, 14, 15, 16, 17, \
117 18, 19, 20, 21, 22, 23, 24, 25, \
118 26, 27, 28, 29, 30, 31, 32, 33, \
119 34, 35, 36, 37, 38, 39, 40, 41, \
120 42, 43, 44, 45, 46, 47, 48, 49, \
121 50, 51, 52, 53, 54, 55, 56, 57, }
123 #define CONFIG_SYS_NAND_ECCSIZE 512
124 #define CONFIG_SYS_NAND_ECCBYTES 14
126 #if defined(CONFIG_ENV_IS_IN_NAND)
127 #define CONFIG_SYS_ENV_SECT_SIZE CONFIG_SYS_NAND_BLOCK_SIZE
132 #endif /* ! __CONFIG_CHILIBOARD_H */