blob: 0ad32353bae25aed3210caeb0b0fc78171be004c [file] [log] [blame]
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +01001/*
2 * ti_omap3_common.h
3 *
4 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 *
8 * For more details, please see the technical documents listed at
9 * http://www.ti.com/product/omap3530
10 * http://www.ti.com/product/omap3630
11 * http://www.ti.com/product/dm3730
12 */
13
14#ifndef __CONFIG_TI_OMAP3_COMMON_H__
15#define __CONFIG_TI_OMAP3_COMMON_H__
16
Albert ARIBAUD37098442016-01-27 08:46:11 +010017/*
18 * High Level Configuration Options
19 */
20
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010021#include <asm/arch/cpu.h>
Nishanth Menon987ec582015-03-09 17:12:04 -050022#include <asm/arch/omap.h>
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010023
Nishanth Menonc6f90e12015-03-09 17:12:08 -050024/* Common ARM Erratas */
25#define CONFIG_ARM_ERRATA_454179
26#define CONFIG_ARM_ERRATA_430973
27#define CONFIG_ARM_ERRATA_621766
28
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010029/* The chip has SDRC controller */
30#define CONFIG_SDRC
31
32/* Clock Defines */
33#define V_OSCK 26000000 /* Clock output from T2 */
34#define V_SCLK (V_OSCK >> 1)
35
36/* NS16550 Configuration */
37#define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
Thomas Chouc7b96862015-11-19 21:48:12 +080038#define CONFIG_SYS_NS16550_CLK V_NS16550_CLK
Simon Glassb3f4ca12014-10-22 21:37:15 -060039#ifdef CONFIG_SPL_BUILD
40# define CONFIG_SYS_NS16550_SERIAL
41# define CONFIG_SYS_NS16550_REG_SIZE (-4)
Simon Glassb3f4ca12014-10-22 21:37:15 -060042#endif
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010043#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, \
44 115200}
45
46/* Select serial console configuration */
47#define CONFIG_CONS_INDEX 3
Simon Glassb3f4ca12014-10-22 21:37:15 -060048#ifdef CONFIG_SPL_BUILD
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010049#define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
50#define CONFIG_SERIAL3 3
Simon Glassb3f4ca12014-10-22 21:37:15 -060051#endif
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010052
53/* Physical Memory Map */
54#define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
55#define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
56
57/*
58 * OMAP3 has 12 GP timers, they can be driven by the system clock
59 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
60 * This rate is divided by a local divisor.
61 */
62#define CONFIG_SYS_TIMERBASE (OMAP34XX_GPT2)
63
64#define CONFIG_SYS_MONITOR_LEN (256 << 10)
65
66/* TWL4030 */
Igor Grinberg689821f2015-10-08 21:12:25 +030067#define CONFIG_TWL4030_POWER
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010068
69/* SPL */
70#define CONFIG_SPL_TEXT_BASE 0x40200800
Tom Rini983e3702016-11-07 21:34:54 -050071#define CONFIG_SPL_LDSCRIPT "arch/arm/mach-omap2/u-boot-spl.lds"
Tom Rinid3289aa2014-04-03 07:52:53 -040072#define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_SDRAM_BASE + \
73 (64 << 20))
74
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010075#ifdef CONFIG_NAND
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010076#define CONFIG_SPL_NAND_SIMPLE
Tom Rinidf4dbb52014-04-03 15:17:15 -040077#define CONFIG_SYS_NAND_BASE 0x30000000
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010078#endif
79
80/* Now bring in the rest of the common code. */
Nishanth Menon9a0f4002015-07-22 18:05:41 -050081#include <configs/ti_armv7_omap.h>
Enric Balletbò i Serrac7964f82013-12-06 21:30:23 +010082
83#endif /* __CONFIG_TI_OMAP3_COMMON_H__ */