blob: 3a871924af38b06e4db27ab7b921897053599aa7 [file] [log] [blame]
Aneesh V16dc7022011-09-08 11:05:49 -04001/*
2 * (C) Copyright 2010
3 * Texas Instruments Incorporated.
4 * Aneesh V <aneesh@ti.com>
5 * Steve Sakoman <steve@sakoman.com>
6 *
7 * TI OMAP4 common configuration settings
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Aneesh V16dc7022011-09-08 11:05:49 -040010 */
11
Enric Balletbò i Serra6c0a0322013-12-06 21:30:18 +010012#ifndef __CONFIG_TI_OMAP4_COMMON_H
13#define __CONFIG_TI_OMAP4_COMMON_H
Aneesh V16dc7022011-09-08 11:05:49 -040014
Lokesh Vutla1d7b2892013-09-03 19:47:18 +053015#define CONFIG_MISC_INIT_R
Lokesh Vutla1d7b2892013-09-03 19:47:18 +053016
Lokesh Vutla1d7b2892013-09-03 19:47:18 +053017#ifndef CONFIG_SYS_L2CACHE_OFF
18#define CONFIG_SYS_L2_PL310 1
19#define CONFIG_SYS_PL310_BASE 0x48242000
20#endif
Aneesh V16dc7022011-09-08 11:05:49 -040021
22/* Get CPU defs */
23#include <asm/arch/cpu.h>
Sricharan508a58f2011-11-15 09:49:55 -050024#include <asm/arch/omap.h>
Aneesh V16dc7022011-09-08 11:05:49 -040025
Lokesh Vutla1d7b2892013-09-03 19:47:18 +053026/* Use General purpose timer 1 */
27#define CONFIG_SYS_TIMERBASE GPT2_BASE
Aneesh V16dc7022011-09-08 11:05:49 -040028
29/*
Aneesh V16dc7022011-09-08 11:05:49 -040030 * Total Size Environment - 128k
Aneesh V16dc7022011-09-08 11:05:49 -040031 */
32#define CONFIG_ENV_SIZE (128 << 10)
Lokesh Vutla1d7b2892013-09-03 19:47:18 +053033
34/*
35 * For the DDR timing information we can either dynamically determine
36 * the timings to use or use pre-determined timings (based on using the
37 * dynamic method. Default to the static timing infomation.
38 */
39#define CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
40#ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
41#define CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
42#define CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
43#endif
44
Nishanth Menon9a0f4002015-07-22 18:05:41 -050045#include <configs/ti_armv7_omap.h>
Aneesh V16dc7022011-09-08 11:05:49 -040046
47/*
48 * Hardware drivers
49 */
Thomas Chouc7b96862015-11-19 21:48:12 +080050#define CONFIG_SYS_NS16550_CLK 48000000
Tom Rini53ee6342015-09-17 16:47:03 -040051#if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_DM_SERIAL)
Aneesh V16dc7022011-09-08 11:05:49 -040052#define CONFIG_SYS_NS16550_SERIAL
53#define CONFIG_SYS_NS16550_REG_SIZE (-4)
Aneesh V16dc7022011-09-08 11:05:49 -040054#define CONFIG_SYS_NS16550_COM3 UART3_BASE
Tom Rini53ee6342015-09-17 16:47:03 -040055#endif
Aneesh V16dc7022011-09-08 11:05:49 -040056
Aneesh V16dc7022011-09-08 11:05:49 -040057/* TWL6030 */
Balaji T K14fa2dd2011-09-08 06:34:57 +000058#ifndef CONFIG_SPL_BUILD
Aneesh V16dc7022011-09-08 11:05:49 -040059#define CONFIG_TWL6030_POWER 1
Balaji T K14fa2dd2011-09-08 06:34:57 +000060#endif
Aneesh V16dc7022011-09-08 11:05:49 -040061
Aneesh V16dc7022011-09-08 11:05:49 -040062/* USB */
Aneesh V16dc7022011-09-08 11:05:49 -040063
64/* USB device configuration */
65#define CONFIG_USB_DEVICE 1
66#define CONFIG_USB_TTY 1
Aneesh V16dc7022011-09-08 11:05:49 -040067
Aneesh V16dc7022011-09-08 11:05:49 -040068/*
69 * Environment setup
70 */
Tom Rini2a1a29c2015-12-10 16:46:03 -050071#define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \
72 "bootcmd_" #devtypel #instance "=" \
73 "setenv mmcdev " #instance"; "\
74 "setenv bootpart " #instance":2 ; "\
75 "run mmcboot\0"
76
77#define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \
78 #devtypel #instance " "
79
80#define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
81 #devtypel #instance " "
82
83#define BOOT_TARGET_DEVICES(func) \
84 func(MMC, mmc, 0) \
85 func(LEGACY_MMC, legacy_mmc, 0) \
86 func(MMC, mmc, 1) \
87 func(LEGACY_MMC, legacy_mmc, 1) \
88 func(PXE, pxe, na) \
89 func(DHCP, dhcp, na)
90
Tom Rini2a1a29c2015-12-10 16:46:03 -050091#include <config_distro_bootcmd.h>
Sekhar Nori88fdfcd2017-04-06 14:52:56 +053092#include <environment/ti/mmc.h>
Tom Rini2a1a29c2015-12-10 16:46:03 -050093
Aneesh V16dc7022011-09-08 11:05:49 -040094#define CONFIG_EXTRA_ENV_SETTINGS \
Tom Rinifb3ad9b2014-03-28 15:03:29 -040095 DEFAULT_LINUX_BOOT_ENV \
Lokesh Vutla85d17be2015-08-28 13:35:07 +053096 DEFAULT_MMC_TI_ARGS \
Lokesh Vutla1e93cc82016-11-29 11:58:00 +053097 DEFAULT_FIT_TI_ARGS \
Aneesh Vd71a4912011-11-21 23:38:58 +000098 "console=ttyO2,115200n8\0" \
Dan Murphya7143212013-06-06 13:27:06 -050099 "fdtfile=undefined\0" \
SRICHARAN R143070d2013-04-04 23:39:27 +0000100 "bootpart=0:2\0" \
101 "bootdir=/boot\0" \
SRICHARAN Raaed0a22013-04-04 23:39:47 +0000102 "bootfile=zImage\0" \
Aneesh V16dc7022011-09-08 11:05:49 -0400103 "usbtty=cdc_acm\0" \
104 "vram=16M\0" \
Ash Charlesffe16912014-05-14 08:34:34 -0700105 "loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
Ash Charlesffe16912014-05-14 08:34:34 -0700106 "uimageboot=echo Booting from mmc${mmcdev} ...; " \
Lokesh Vutla85d17be2015-08-28 13:35:07 +0530107 "run args_mmc; " \
Ash Charlesffe16912014-05-14 08:34:34 -0700108 "bootm ${loadaddr}\0" \
SRICHARAN R143070d2013-04-04 23:39:27 +0000109 "findfdt="\
110 "if test $board_name = sdp4430; then " \
111 "setenv fdtfile omap4-sdp.dtb; fi; " \
112 "if test $board_name = panda; then " \
Dan Murphy34f667b2013-04-18 06:29:53 +0000113 "setenv fdtfile omap4-panda.dtb; fi;" \
Dan Murphy7d47d1c2013-06-13 11:21:13 -0500114 "if test $board_name = panda-a4; then " \
115 "setenv fdtfile omap4-panda-a4.dtb; fi;" \
Dan Murphy34f667b2013-04-18 06:29:53 +0000116 "if test $board_name = panda-es; then " \
Dan Murphya7143212013-06-06 13:27:06 -0500117 "setenv fdtfile omap4-panda-es.dtb; fi;" \
Ash Charlesffe16912014-05-14 08:34:34 -0700118 "if test $board_name = duovero; then " \
Ash Charles99907172014-06-06 11:36:50 -0700119 "setenv fdtfile omap4-duovero-parlor.dtb; fi;" \
Dan Murphya7143212013-06-06 13:27:06 -0500120 "if test $fdtfile = undefined; then " \
121 "echo WARNING: Could not determine device tree to use; fi; \0" \
Tom Rini2a1a29c2015-12-10 16:46:03 -0500122 BOOTENV
Aneesh V16dc7022011-09-08 11:05:49 -0400123
Lokesh Vutladcc23572013-12-04 12:22:55 +0530124/*
125 * Defines for SPL
126 * It is known that this will break HS devices. Since the current size of
127 * SPL is overlapped with public stack and breaking non HS devices to boot.
128 * So moving TEXT_BASE down to non-HS limit.
129 */
130#define CONFIG_SPL_TEXT_BASE 0x40300000
Tom Rinid3289aa2014-04-03 07:52:53 -0400131#define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_SDRAM_BASE + \
132 (128 << 20))
Aneesh V16dc7022011-09-08 11:05:49 -0400133
Nishanth Menon4f80d5b2014-01-07 20:06:56 -0600134#ifdef CONFIG_SPL_BUILD
135/* No need for i2c in SPL mode as we will use SRI2C for PMIC access on OMAP4 */
136#undef CONFIG_SYS_I2C
Nishanth Menon4f80d5b2014-01-07 20:06:56 -0600137#endif
138
Enric Balletbò i Serra6c0a0322013-12-06 21:30:18 +0100139#endif /* __CONFIG_TI_OMAP4_COMMON_H */