2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2013-08-09 11:22:17 -04:00
|
|
|
/*
|
|
|
|
* ti_am335x_common.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
*
|
|
|
|
* For more details, please see the technical documents listed at
|
|
|
|
* http://www.ti.com/product/am3359#technicaldocuments
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_TI_AM335X_COMMON_H__
|
|
|
|
#define __CONFIG_TI_AM335X_COMMON_H__
|
|
|
|
|
|
|
|
#define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
|
|
|
|
#define CONFIG_SYS_TIMERBASE 0x48040000 /* Use Timer2 */
|
|
|
|
|
|
|
|
#include <asm/arch/omap.h>
|
|
|
|
|
|
|
|
/* NS16550 Configuration */
|
2014-10-22 21:37:14 -06:00
|
|
|
#ifdef CONFIG_SPL_BUILD
|
2013-08-09 11:22:17 -04:00
|
|
|
#define CONFIG_SYS_NS16550_SERIAL
|
2017-04-26 13:37:09 +05:30
|
|
|
#ifndef CONFIG_DM_SERIAL
|
2013-08-09 11:22:17 -04:00
|
|
|
#define CONFIG_SYS_NS16550_REG_SIZE (-4)
|
2014-10-22 21:37:14 -06:00
|
|
|
#endif
|
2017-04-26 13:37:09 +05:30
|
|
|
#endif
|
2013-08-09 11:22:17 -04:00
|
|
|
#define CONFIG_SYS_NS16550_CLK 48000000
|
|
|
|
|
2016-03-09 15:39:33 +05:30
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2013-08-09 11:22:17 -04:00
|
|
|
/* Network defines. */
|
|
|
|
#define CONFIG_NET_RETRY_COUNT 10
|
2016-03-09 15:39:33 +05:30
|
|
|
#endif
|
2013-08-09 11:22:17 -04:00
|
|
|
|
2013-08-20 08:53:43 -04:00
|
|
|
/*
|
|
|
|
* SPL related defines. The Public RAM memory map the ROM defines the
|
|
|
|
* area between 0x402F0400 and 0x4030B800 as a download area and
|
|
|
|
* 0x4030B800 to 0x4030CE00 as a public stack area. The ROM also
|
|
|
|
* supports X-MODEM loading via UART, and we leverage this and then use
|
|
|
|
* Y-MODEM to load u-boot.img, when booted over UART.
|
|
|
|
*/
|
2014-04-03 07:52:53 -04:00
|
|
|
#define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_SDRAM_BASE + \
|
|
|
|
(128 << 20))
|
2013-08-09 11:22:17 -04:00
|
|
|
|
2013-10-01 12:32:04 -04:00
|
|
|
/* Enable the watchdog inside of SPL */
|
|
|
|
|
2013-08-09 11:22:17 -04:00
|
|
|
/*
|
|
|
|
* Since SPL did pll and ddr initialization for us,
|
|
|
|
* we don't need to do it twice.
|
|
|
|
*/
|
|
|
|
#if !defined(CONFIG_SPL_BUILD) && !defined(CONFIG_NOR_BOOT)
|
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT
|
|
|
|
#endif
|
|
|
|
|
2014-05-21 12:57:22 -04:00
|
|
|
/*
|
|
|
|
* When building U-Boot such that there is no previous loader
|
|
|
|
* we need to call board_early_init_f. This is taken care of in
|
|
|
|
* s_init when we have SPL used.
|
|
|
|
*/
|
|
|
|
|
2013-08-09 11:22:17 -04:00
|
|
|
/* Now bring in the rest of the common code. */
|
2015-07-22 18:05:41 -05:00
|
|
|
#include <configs/ti_armv7_omap.h>
|
2013-08-09 11:22:17 -04:00
|
|
|
|
|
|
|
#endif /* __CONFIG_TI_AM335X_COMMON_H__ */
|