blob: 0568946fc824394e1f4a0654e49a2cc9b0b47081 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Aneesh V00836d42011-09-08 11:05:49 -04002/*
3 * (C) Copyright 2010
4 * Texas Instruments Incorporated.
5 * Aneesh V <aneesh@ti.com>
6 * Steve Sakoman <steve@sakoman.com>
7 *
8 * TI OMAP4 common configuration settings
Aneesh V00836d42011-09-08 11:05:49 -04009 */
10
Enric Balletbò i Serracbf04072013-12-06 21:30:18 +010011#ifndef __CONFIG_TI_OMAP4_COMMON_H
12#define __CONFIG_TI_OMAP4_COMMON_H
Aneesh V00836d42011-09-08 11:05:49 -040013
Lokesh Vutla2b8edea2013-09-03 19:47:18 +053014#ifndef CONFIG_SYS_L2CACHE_OFF
Lokesh Vutla2b8edea2013-09-03 19:47:18 +053015#define CONFIG_SYS_PL310_BASE 0x48242000
16#endif
Aneesh V00836d42011-09-08 11:05:49 -040017
18/* Get CPU defs */
19#include <asm/arch/cpu.h>
Sricharan9310ff72011-11-15 09:49:55 -050020#include <asm/arch/omap.h>
Aneesh V00836d42011-09-08 11:05:49 -040021
Lokesh Vutla2b8edea2013-09-03 19:47:18 +053022/* Use General purpose timer 1 */
23#define CONFIG_SYS_TIMERBASE GPT2_BASE
Aneesh V00836d42011-09-08 11:05:49 -040024
Nishanth Menonad63dd72015-07-22 18:05:41 -050025#include <configs/ti_armv7_omap.h>
Aneesh V00836d42011-09-08 11:05:49 -040026
27/*
Lokesh Vutla2b8edea2013-09-03 19:47:18 +053028 * Hardware drivers
Aneesh V00836d42011-09-08 11:05:49 -040029 */
Thomas Chou52ac4432015-11-19 21:48:12 +080030#define CONFIG_SYS_NS16550_CLK 48000000
Tom Rini7a9ca3c2015-09-17 16:47:03 -040031#if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_DM_SERIAL)
Aneesh V00836d42011-09-08 11:05:49 -040032#define CONFIG_SYS_NS16550_SERIAL
33#define CONFIG_SYS_NS16550_REG_SIZE (-4)
Aneesh V00836d42011-09-08 11:05:49 -040034#define CONFIG_SYS_NS16550_COM3 UART3_BASE
Tom Rini7a9ca3c2015-09-17 16:47:03 -040035#endif
Aneesh V00836d42011-09-08 11:05:49 -040036
Aneesh V00836d42011-09-08 11:05:49 -040037/* TWL6030 */
38#define CONFIG_TWL6030_POWER 1
Aneesh V00836d42011-09-08 11:05:49 -040039
Aneesh V00836d42011-09-08 11:05:49 -040040/*
41 * Environment setup
42 */
Tom Rini6975fed2015-12-10 16:46:03 -050043#define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \
44 "bootcmd_" #devtypel #instance "=" \
45 "setenv mmcdev " #instance"; "\
46 "setenv bootpart " #instance":2 ; "\
47 "run mmcboot\0"
48
49#define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \
50 #devtypel #instance " "
51
52#define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
53 #devtypel #instance " "
54
55#define BOOT_TARGET_DEVICES(func) \
56 func(MMC, mmc, 0) \
57 func(LEGACY_MMC, legacy_mmc, 0) \
58 func(MMC, mmc, 1) \
59 func(LEGACY_MMC, legacy_mmc, 1) \
60 func(PXE, pxe, na) \
61 func(DHCP, dhcp, na)
62
Tom Rini6975fed2015-12-10 16:46:03 -050063#include <config_distro_bootcmd.h>
Sekhar Nori0ea56fe2017-04-06 14:52:56 +053064#include <environment/ti/mmc.h>
Tom Rini6975fed2015-12-10 16:46:03 -050065
Aneesh V00836d42011-09-08 11:05:49 -040066#define CONFIG_EXTRA_ENV_SETTINGS \
Tom Rini96886f22014-03-28 15:03:29 -040067 DEFAULT_LINUX_BOOT_ENV \
Lokesh Vutlab207c472015-08-28 13:35:07 +053068 DEFAULT_MMC_TI_ARGS \
Lokesh Vutlac2913ac2016-11-29 11:58:00 +053069 DEFAULT_FIT_TI_ARGS \
Aneesh V69a47792011-11-21 23:38:58 +000070 "console=ttyO2,115200n8\0" \
Dan Murphyff302722013-06-06 13:27:06 -050071 "fdtfile=undefined\0" \
SRICHARAN R14a95192013-04-04 23:39:27 +000072 "bootpart=0:2\0" \
73 "bootdir=/boot\0" \
SRICHARAN R31d0c152013-04-04 23:39:47 +000074 "bootfile=zImage\0" \
Aneesh V00836d42011-09-08 11:05:49 -040075 "usbtty=cdc_acm\0" \
76 "vram=16M\0" \
Ash Charles48971ac2014-05-14 08:34:34 -070077 "loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
Ash Charles48971ac2014-05-14 08:34:34 -070078 "uimageboot=echo Booting from mmc${mmcdev} ...; " \
Lokesh Vutlab207c472015-08-28 13:35:07 +053079 "run args_mmc; " \
Ash Charles48971ac2014-05-14 08:34:34 -070080 "bootm ${loadaddr}\0" \
SRICHARAN R14a95192013-04-04 23:39:27 +000081 "findfdt="\
82 "if test $board_name = sdp4430; then " \
83 "setenv fdtfile omap4-sdp.dtb; fi; " \
84 "if test $board_name = panda; then " \
Dan Murphye44c6d72013-04-18 06:29:53 +000085 "setenv fdtfile omap4-panda.dtb; fi;" \
Dan Murphye56459e2013-06-13 11:21:13 -050086 "if test $board_name = panda-a4; then " \
87 "setenv fdtfile omap4-panda-a4.dtb; fi;" \
Dan Murphye44c6d72013-04-18 06:29:53 +000088 "if test $board_name = panda-es; then " \
Dan Murphyff302722013-06-06 13:27:06 -050089 "setenv fdtfile omap4-panda-es.dtb; fi;" \
Ash Charles48971ac2014-05-14 08:34:34 -070090 "if test $board_name = duovero; then " \
Ash Charlesaafaa792014-06-06 11:36:50 -070091 "setenv fdtfile omap4-duovero-parlor.dtb; fi;" \
Dan Murphyff302722013-06-06 13:27:06 -050092 "if test $fdtfile = undefined; then " \
93 "echo WARNING: Could not determine device tree to use; fi; \0" \
Tom Rini6975fed2015-12-10 16:46:03 -050094 BOOTENV
Aneesh V00836d42011-09-08 11:05:49 -040095
Lokesh Vutla64296572013-12-04 12:22:55 +053096/*
97 * Defines for SPL
98 * It is known that this will break HS devices. Since the current size of
99 * SPL is overlapped with public stack and breaking non HS devices to boot.
100 * So moving TEXT_BASE down to non-HS limit.
101 */
Aneesh V00836d42011-09-08 11:05:49 -0400102
Nishanth Menon5c866ff2014-01-07 20:06:56 -0600103#ifdef CONFIG_SPL_BUILD
104/* No need for i2c in SPL mode as we will use SRI2C for PMIC access on OMAP4 */
Nishanth Menon5c866ff2014-01-07 20:06:56 -0600105#endif
106
Enric Balletbò i Serracbf04072013-12-06 21:30:18 +0100107#endif /* __CONFIG_TI_OMAP4_COMMON_H */