0093f077ed35dcb5b03b3d501caf98b1b618c621
[platform/kernel/u-boot.git] / include / configs / am65x_evm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuration header file for K3 AM654 EVM
4  *
5  * Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
6  *      Lokesh Vutla <lokeshvutla@ti.com>
7  */
8
9 #ifndef __CONFIG_AM654_EVM_H
10 #define __CONFIG_AM654_EVM_H
11
12 #include <linux/sizes.h>
13 #include <environment/ti/mmc.h>
14 #include <environment/ti/k3_rproc.h>
15 #include <environment/ti/k3_dfu.h>
16
17 /* DDR Configuration */
18 #define CONFIG_SYS_SDRAM_BASE1          0x880000000
19
20 /* SPL Loader Configuration */
21 #ifdef CONFIG_TARGET_AM654_A53_EVM
22 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SPL_TEXT_BASE + SZ_4M)
23 #else
24 /*
25  * Maximum size in memory allocated to the SPL BSS. Keep it as tight as
26  * possible (to allow the build to go through), as this directly affects
27  * our memory footprint. The less we use for BSS the more we have available
28  * for everything else.
29  */
30 #define CONFIG_SPL_BSS_MAX_SIZE         0xc00
31 /*
32  * Link BSS to be within SPL in a dedicated region located near the top of
33  * the MCU SRAM, this way making it available also before relocation. Note
34  * that we are not using the actual top of the MCU SRAM as there is a memory
35  * location filled in by the boot ROM that we want to read out without any
36  * interference from the C context.
37  */
38 #define CONFIG_SPL_BSS_START_ADDR       (CONFIG_SYS_K3_BOOT_PARAM_TABLE_INDEX -\
39                                          CONFIG_SPL_BSS_MAX_SIZE)
40 /* Set the stack right below the SPL BSS section */
41 #define CONFIG_SYS_INIT_SP_ADDR         CONFIG_SPL_BSS_START_ADDR
42 /* Configure R5 SPL post-relocation malloc pool in DDR */
43 #define CONFIG_SYS_SPL_MALLOC_START     0x84000000
44 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_16M
45 #endif
46
47 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
48
49 #define PARTS_DEFAULT \
50         /* Linux partitions */ \
51         "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
52
53 /* U-Boot general configuration */
54 #define EXTRA_ENV_AM65X_BOARD_SETTINGS                                  \
55         "findfdt="                                                      \
56                 "setenv name_fdt k3-am654-base-board.dtb;"              \
57                 "setenv fdtfile ${name_fdt}\0"                          \
58         "name_kern=Image\0"                                             \
59         "console=ttyS2,115200n8\0"                                      \
60         "stdin=serial,usbkbd\0"                                         \
61         "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 "  \
62                 "${mtdparts}\0"                                         \
63         "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"            \
64
65 /* U-Boot MMC-specific configuration */
66 #define EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC                              \
67         "boot=mmc\0"                                                    \
68         "mmcdev=1\0"                                                    \
69         "bootpart=1:2\0"                                                \
70         "bootdir=/boot\0"                                               \
71         "rd_spec=-\0"                                                   \
72         "init_mmc=run args_all args_mmc\0"                              \
73         "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
74         "get_overlay_mmc="                                              \
75                 "fdt address ${fdtaddr};"                               \
76                 "fdt resize 0x100000;"                                  \
77                 "for overlay in $name_overlays;"                        \
78                 "do;"                                                   \
79                 "load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay};"       \
80                 "fdt apply ${dtboaddr};"                                \
81                 "done;\0"                                               \
82         "get_kern_mmc=load mmc ${bootpart} ${loadaddr} "                \
83                 "${bootdir}/${name_kern}\0"                             \
84         "get_fit_mmc=load mmc ${bootpart} ${addr_fit} "                 \
85                 "${bootdir}/${name_fit}\0"                              \
86         "partitions=" PARTS_DEFAULT
87
88 #ifdef DEFAULT_RPROCS
89 #undef DEFAULT_RPROCS
90 #endif
91 #define DEFAULT_RPROCS  ""                                              \
92                 "0 /lib/firmware/am65x-mcu-r5f0_0-fw "                  \
93                 "1 /lib/firmware/am65x-mcu-r5f0_1-fw "
94
95 #ifdef CONFIG_TARGET_AM654_A53_EVM
96 #define EXTRA_ENV_AM65X_BOARD_SETTINGS_MTD                              \
97         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0"                            \
98         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"
99 #else
100 #define EXTRA_ENV_AM65X_BOARD_SETTINGS_MTD
101 #endif
102
103 #define EXTRA_ENV_AM65X_BOARD_SETTINGS_UBI                              \
104         "init_ubi=run args_all args_ubi; sf probe; "                    \
105                 "ubi part ospi.rootfs; ubifsmount ubi:rootfs;\0"        \
106         "get_kern_ubi=ubifsload ${loadaddr} ${bootdir}/${name_kern}\0"  \
107         "get_fdt_ubi=ubifsload ${fdtaddr} ${bootdir}/${name_fdt}\0"     \
108         "args_ubi=setenv bootargs console=${console} ${optargs} "       \
109                 "rootfstype=ubifs root=ubi0:rootfs rw ubi.mtd=ospi.rootfs\0"
110
111 #define EXTRA_ENV_DFUARGS                                               \
112         DFU_ALT_INFO_MMC                                                \
113         DFU_ALT_INFO_RAM                                                \
114         DFU_ALT_INFO_EMMC                                               \
115         DFU_ALT_INFO_OSPI
116
117 #ifdef CONFIG_TARGET_AM654_A53_EVM
118 #define BOOT_TARGET_DEVICES(func) \
119         func(MMC, mmc, 1) \
120         func(MMC, mmc, 0)
121
122 #include <config_distro_bootcmd.h>
123 #else
124 #define BOOTENV
125 #endif
126
127 /* Incorporate settings into the U-Boot environment */
128 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
129         DEFAULT_LINUX_BOOT_ENV                                          \
130         DEFAULT_MMC_TI_ARGS                                             \
131         DEFAULT_FIT_TI_ARGS                                             \
132         EXTRA_ENV_AM65X_BOARD_SETTINGS                                  \
133         EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC                              \
134         EXTRA_ENV_AM65X_BOARD_SETTINGS_MTD                              \
135         EXTRA_ENV_AM65X_BOARD_SETTINGS_UBI                              \
136         EXTRA_ENV_RPROC_SETTINGS                                        \
137         EXTRA_ENV_DFUARGS                                               \
138         BOOTENV
139
140 #define CONFIG_SYS_USB_FAT_BOOT_PARTITION 1
141
142 /* Now for the remaining common defines */
143 #include <configs/ti_armv7_common.h>
144
145 #endif /* __CONFIG_AM654_EVM_H */