2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-09-08 15:05:49 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments Incorporated.
|
|
|
|
* Aneesh V <aneesh@ti.com>
|
|
|
|
* Steve Sakoman <steve@sakoman.com>
|
|
|
|
*
|
|
|
|
* TI OMAP4 common configuration settings
|
|
|
|
*/
|
|
|
|
|
2013-12-06 20:30:18 +00:00
|
|
|
#ifndef __CONFIG_TI_OMAP4_COMMON_H
|
|
|
|
#define __CONFIG_TI_OMAP4_COMMON_H
|
2011-09-08 15:05:49 +00:00
|
|
|
|
2013-09-03 14:17:18 +00:00
|
|
|
#ifndef CONFIG_SYS_L2CACHE_OFF
|
|
|
|
#define CONFIG_SYS_L2_PL310 1
|
|
|
|
#define CONFIG_SYS_PL310_BASE 0x48242000
|
|
|
|
#endif
|
2011-09-08 15:05:49 +00:00
|
|
|
|
|
|
|
/* Get CPU defs */
|
|
|
|
#include <asm/arch/cpu.h>
|
2011-11-15 14:49:55 +00:00
|
|
|
#include <asm/arch/omap.h>
|
2011-09-08 15:05:49 +00:00
|
|
|
|
2013-09-03 14:17:18 +00:00
|
|
|
/* Use General purpose timer 1 */
|
|
|
|
#define CONFIG_SYS_TIMERBASE GPT2_BASE
|
2011-09-08 15:05:49 +00:00
|
|
|
|
|
|
|
/*
|
2013-09-03 14:17:18 +00:00
|
|
|
* For the DDR timing information we can either dynamically determine
|
|
|
|
* the timings to use or use pre-determined timings (based on using the
|
|
|
|
* dynamic method. Default to the static timing infomation.
|
2011-09-08 15:05:49 +00:00
|
|
|
*/
|
2013-09-03 14:17:18 +00:00
|
|
|
#define CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
|
|
|
|
#ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
|
|
|
|
#define CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
|
|
|
|
#define CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
|
|
|
|
#endif
|
|
|
|
|
2015-07-22 23:05:41 +00:00
|
|
|
#include <configs/ti_armv7_omap.h>
|
2011-09-08 15:05:49 +00:00
|
|
|
|
|
|
|
/*
|
2013-09-03 14:17:18 +00:00
|
|
|
* Hardware drivers
|
2011-09-08 15:05:49 +00:00
|
|
|
*/
|
2015-11-19 13:48:12 +00:00
|
|
|
#define CONFIG_SYS_NS16550_CLK 48000000
|
2015-09-17 20:47:03 +00:00
|
|
|
#if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_DM_SERIAL)
|
2011-09-08 15:05:49 +00:00
|
|
|
#define CONFIG_SYS_NS16550_SERIAL
|
|
|
|
#define CONFIG_SYS_NS16550_REG_SIZE (-4)
|
|
|
|
#define CONFIG_SYS_NS16550_COM3 UART3_BASE
|
2015-09-17 20:47:03 +00:00
|
|
|
#endif
|
2011-09-08 15:05:49 +00:00
|
|
|
|
|
|
|
/* TWL6030 */
|
2011-09-08 06:34:57 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2011-09-08 15:05:49 +00:00
|
|
|
#define CONFIG_TWL6030_POWER 1
|
2011-09-08 06:34:57 +00:00
|
|
|
#endif
|
2011-09-08 15:05:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Environment setup
|
|
|
|
*/
|
2015-12-10 21:46:03 +00:00
|
|
|
#define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \
|
|
|
|
"bootcmd_" #devtypel #instance "=" \
|
|
|
|
"setenv mmcdev " #instance"; "\
|
|
|
|
"setenv bootpart " #instance":2 ; "\
|
|
|
|
"run mmcboot\0"
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \
|
|
|
|
#devtypel #instance " "
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
|
|
|
|
#devtypel #instance " "
|
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 0) \
|
|
|
|
func(LEGACY_MMC, legacy_mmc, 0) \
|
|
|
|
func(MMC, mmc, 1) \
|
|
|
|
func(LEGACY_MMC, legacy_mmc, 1) \
|
|
|
|
func(PXE, pxe, na) \
|
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
2017-04-06 09:22:56 +00:00
|
|
|
#include <environment/ti/mmc.h>
|
2015-12-10 21:46:03 +00:00
|
|
|
|
2011-09-08 15:05:49 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2014-03-28 19:03:29 +00:00
|
|
|
DEFAULT_LINUX_BOOT_ENV \
|
2015-08-28 08:05:07 +00:00
|
|
|
DEFAULT_MMC_TI_ARGS \
|
2016-11-29 06:28:00 +00:00
|
|
|
DEFAULT_FIT_TI_ARGS \
|
2011-11-21 23:38:58 +00:00
|
|
|
"console=ttyO2,115200n8\0" \
|
2013-06-06 18:27:06 +00:00
|
|
|
"fdtfile=undefined\0" \
|
2013-04-04 23:39:27 +00:00
|
|
|
"bootpart=0:2\0" \
|
|
|
|
"bootdir=/boot\0" \
|
2013-04-04 23:39:47 +00:00
|
|
|
"bootfile=zImage\0" \
|
2011-09-08 15:05:49 +00:00
|
|
|
"usbtty=cdc_acm\0" \
|
|
|
|
"vram=16M\0" \
|
2014-05-14 15:34:34 +00:00
|
|
|
"loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \
|
|
|
|
"uimageboot=echo Booting from mmc${mmcdev} ...; " \
|
2015-08-28 08:05:07 +00:00
|
|
|
"run args_mmc; " \
|
2014-05-14 15:34:34 +00:00
|
|
|
"bootm ${loadaddr}\0" \
|
2013-04-04 23:39:27 +00:00
|
|
|
"findfdt="\
|
|
|
|
"if test $board_name = sdp4430; then " \
|
|
|
|
"setenv fdtfile omap4-sdp.dtb; fi; " \
|
|
|
|
"if test $board_name = panda; then " \
|
2013-04-18 06:29:53 +00:00
|
|
|
"setenv fdtfile omap4-panda.dtb; fi;" \
|
arm: omap4: panda: Add reading of the board revision
Detect if we are running on a panda revision A1-A6,
or an ES panda board. This can be done by reading
the level of GPIOs and checking the processor revisions.
This should result in:
Panda 4430:
GPIO171, GPIO101, GPIO182: 0 1 1 => A1-A5
GPIO171, GPIO101, GPIO182: 1 0 1 => A6
Panda ES:
GPIO2, GPIO3, GPIO171, GPIO48, GPIO182: 0 0 0 1 1 => B1/B2
GPIO2, GPIO3, GPIO171, GPIO48, GPIO182: 0 0 1 1 1 => B3
Set the board name appropriately for the board revision that
is detected.
Update the findfdt macro to load the a4 device tree binary.
Signed-off-by: Dan Murphy <dmurphy@ti.com>
[trini: %s/CONTROL_PADCONF_CORE/(*ctrl)->control_padconf_core_base/ and
formatting for that]
Signed-off-by: Tom Rini <trini@ti.com>
2013-06-13 16:21:13 +00:00
|
|
|
"if test $board_name = panda-a4; then " \
|
|
|
|
"setenv fdtfile omap4-panda-a4.dtb; fi;" \
|
2013-04-18 06:29:53 +00:00
|
|
|
"if test $board_name = panda-es; then " \
|
2013-06-06 18:27:06 +00:00
|
|
|
"setenv fdtfile omap4-panda-es.dtb; fi;" \
|
2014-05-14 15:34:34 +00:00
|
|
|
"if test $board_name = duovero; then " \
|
2014-06-06 18:36:50 +00:00
|
|
|
"setenv fdtfile omap4-duovero-parlor.dtb; fi;" \
|
2013-06-06 18:27:06 +00:00
|
|
|
"if test $fdtfile = undefined; then " \
|
|
|
|
"echo WARNING: Could not determine device tree to use; fi; \0" \
|
2015-12-10 21:46:03 +00:00
|
|
|
BOOTENV
|
2011-09-08 15:05:49 +00:00
|
|
|
|
2013-12-04 06:52:55 +00:00
|
|
|
/*
|
|
|
|
* Defines for SPL
|
|
|
|
* It is known that this will break HS devices. Since the current size of
|
|
|
|
* SPL is overlapped with public stack and breaking non HS devices to boot.
|
|
|
|
* So moving TEXT_BASE down to non-HS limit.
|
|
|
|
*/
|
2014-04-03 11:52:53 +00:00
|
|
|
#define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_SDRAM_BASE + \
|
|
|
|
(128 << 20))
|
2011-09-08 15:05:49 +00:00
|
|
|
|
2014-01-08 02:06:56 +00:00
|
|
|
#ifdef CONFIG_SPL_BUILD
|
|
|
|
/* No need for i2c in SPL mode as we will use SRI2C for PMIC access on OMAP4 */
|
2021-07-11 03:14:32 +00:00
|
|
|
#undef CONFIG_SYS_I2C_LEGACY
|
2014-01-08 02:06:56 +00:00
|
|
|
#endif
|
|
|
|
|
2013-12-06 20:30:18 +00:00
|
|
|
#endif /* __CONFIG_TI_OMAP4_COMMON_H */
|