3 * Texas Instruments Incorporated.
4 * Aneesh V <aneesh@ti.com>
5 * Steve Sakoman <steve@sakoman.com>
7 * TI OMAP4 common configuration settings
9 * SPDX-License-Identifier: GPL-2.0+
12 #ifndef __CONFIG_TI_OMAP4_COMMON_H
13 #define __CONFIG_TI_OMAP4_COMMON_H
16 * High Level Configuration Options
18 #define CONFIG_OMAP4430 1 /* which is in a 4430 */
19 #define CONFIG_MISC_INIT_R
20 #define CONFIG_ARCH_CPU_INIT
21 #define CONFIG_DISPLAY_CPUINFO 1
22 #define CONFIG_DISPLAY_BOARDINFO 1
24 #define CONFIG_SYS_THUMB_BUILD
26 #ifndef CONFIG_SYS_L2CACHE_OFF
27 #define CONFIG_SYS_L2_PL310 1
28 #define CONFIG_SYS_PL310_BASE 0x48242000
30 #define CONFIG_SYS_CACHELINE_SIZE 32
33 #include <asm/arch/cpu.h>
34 #include <asm/arch/omap.h>
36 /* Use General purpose timer 1 */
37 #define CONFIG_SYS_TIMERBASE GPT2_BASE
40 * Total Size Environment - 128k
42 #define CONFIG_ENV_SIZE (128 << 10)
45 * For the DDR timing information we can either dynamically determine
46 * the timings to use or use pre-determined timings (based on using the
47 * dynamic method. Default to the static timing infomation.
49 #define CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
50 #ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
51 #define CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
52 #define CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
55 #include <configs/ti_armv7_omap.h>
60 #define CONFIG_SYS_NS16550
61 #if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_DM_SERIAL)
62 #define CONFIG_SYS_NS16550_SERIAL
63 #define CONFIG_SYS_NS16550_REG_SIZE (-4)
64 #define CONFIG_SYS_NS16550_CLK 48000000
65 #define CONFIG_SYS_NS16550_COM3 UART3_BASE
67 #define CONFIG_OMAP_SERIAL
69 #define CONFIG_CONS_INDEX 3
72 #ifndef CONFIG_SPL_BUILD
73 #define CONFIG_TWL6030_POWER 1
77 #define CONFIG_USB_MUSB_UDC 1
78 #define CONFIG_USB_OMAP3 1
80 /* USB device configuration */
81 #define CONFIG_USB_DEVICE 1
82 #define CONFIG_USB_TTY 1
83 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
88 #define CONFIG_EXTRA_ENV_SETTINGS \
89 DEFAULT_LINUX_BOOT_ENV \
91 "console=ttyO2,115200n8\0" \
92 "fdtfile=undefined\0" \
98 "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
99 "bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
100 "source ${loadaddr}\0" \
101 "loadbootenv=load mmc ${mmcdev} ${loadaddr} uEnv.txt\0" \
102 "importbootenv=echo Importing environment from mmc${mmcdev} ...; " \
103 "env import -t ${loadaddr} ${filesize}\0" \
104 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
105 "loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
106 "mmcboot=echo Booting from mmc${mmcdev} ...; " \
108 "bootz ${loadaddr} - ${fdtaddr}\0" \
109 "uimageboot=echo Booting from mmc${mmcdev} ...; " \
111 "bootm ${loadaddr}\0" \
113 "if test $board_name = sdp4430; then " \
114 "setenv fdtfile omap4-sdp.dtb; fi; " \
115 "if test $board_name = panda; then " \
116 "setenv fdtfile omap4-panda.dtb; fi;" \
117 "if test $board_name = panda-a4; then " \
118 "setenv fdtfile omap4-panda-a4.dtb; fi;" \
119 "if test $board_name = panda-es; then " \
120 "setenv fdtfile omap4-panda-es.dtb; fi;" \
121 "if test $board_name = duovero; then " \
122 "setenv fdtfile omap4-duovero-parlor.dtb; fi;" \
123 "if test $fdtfile = undefined; then " \
124 "echo WARNING: Could not determine device tree to use; fi; \0" \
125 "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
127 #define CONFIG_BOOTCOMMAND \
129 "mmc dev ${mmcdev}; if mmc rescan; then " \
130 "echo SD/MMC found on device ${mmcdev};" \
131 "if run loadbootscript; then " \
134 "if run loadbootenv; then " \
135 "run importbootenv; " \
137 "if test -n ${uenvcmd}; then " \
138 "echo Running uenvcmd ...;" \
142 "if run loadimage; then " \
146 "if run loaduimage; then " \
153 * It is known that this will break HS devices. Since the current size of
154 * SPL is overlapped with public stack and breaking non HS devices to boot.
155 * So moving TEXT_BASE down to non-HS limit.
157 #define CONFIG_SPL_TEXT_BASE 0x40300000
158 #define CONFIG_SPL_MAX_SIZE (0x4030C000 - CONFIG_SPL_TEXT_BASE)
159 #define CONFIG_SPL_DISPLAY_PRINT
160 #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
161 #define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_SDRAM_BASE + \
165 #define CONFIG_SPL_NAND_AM33XX_BCH /* ELM support */
168 #ifdef CONFIG_SPL_BUILD
169 /* No need for i2c in SPL mode as we will use SRI2C for PMIC access on OMAP4 */
170 #undef CONFIG_SYS_I2C
171 #undef CONFIG_SYS_I2C_OMAP24XX
172 #undef CONFIG_SPL_I2C_SUPPORT
175 #endif /* __CONFIG_TI_OMAP4_COMMON_H */