2013-07-30 06:06:32 +00:00
|
|
|
/*
|
|
|
|
* am43xx_evm.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_AM43XX_EVM_H
|
|
|
|
#define __CONFIG_AM43XX_EVM_H
|
|
|
|
|
|
|
|
#define CONFIG_AM43XX
|
|
|
|
|
2013-12-10 09:32:12 +00:00
|
|
|
#define CONFIG_BOARD_LATE_INIT
|
|
|
|
#define CONFIG_ARCH_CPU_INIT
|
|
|
|
#define CONFIG_SYS_CACHELINE_SIZE 32
|
2013-07-30 06:06:32 +00:00
|
|
|
#define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
|
|
|
|
#define CONFIG_SYS_TIMERBASE 0x48040000 /* Use Timer2 */
|
2013-12-10 09:32:12 +00:00
|
|
|
|
|
|
|
#include <asm/arch/omap.h>
|
2013-07-30 06:06:32 +00:00
|
|
|
|
|
|
|
/* NS16550 Configuration */
|
|
|
|
#define CONFIG_SYS_NS16550
|
|
|
|
#define CONFIG_SYS_NS16550_SERIAL
|
|
|
|
#define CONFIG_SYS_NS16550_REG_SIZE (-4)
|
2013-12-10 09:32:12 +00:00
|
|
|
#define CONFIG_SYS_NS16550_CLK 48000000
|
2013-07-30 06:06:32 +00:00
|
|
|
|
2013-12-10 09:32:12 +00:00
|
|
|
/* SPL defines. */
|
|
|
|
#define CONFIG_SPL_TEXT_BASE 0x40300350
|
|
|
|
#define CONFIG_SPL_MAX_SIZE (0x40337C00 - CONFIG_SPL_TEXT_BASE)
|
|
|
|
#define CONFIG_SPL_YMODEM_SUPPORT
|
2013-07-30 06:06:32 +00:00
|
|
|
|
2013-12-10 09:32:13 +00:00
|
|
|
/* Enabling L2 Cache */
|
|
|
|
#define CONFIG_SYS_L2_PL310
|
|
|
|
#define CONFIG_SYS_PL310_BASE 0x48242000
|
|
|
|
#define CONFIG_SYS_CACHELINE_SIZE 32
|
|
|
|
|
2013-07-30 06:06:32 +00:00
|
|
|
/*
|
2013-12-10 09:32:12 +00:00
|
|
|
* Since SPL did pll and ddr initialization for us,
|
|
|
|
* we don't need to do it twice.
|
2013-07-30 06:06:32 +00:00
|
|
|
*/
|
2013-12-10 09:32:12 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD) && !defined(CONFIG_NOR_BOOT)
|
2013-07-30 06:06:32 +00:00
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT
|
|
|
|
#endif
|
|
|
|
|
2013-12-10 09:32:12 +00:00
|
|
|
/* Now bring in the rest of the common code. */
|
|
|
|
#include <configs/ti_armv7_common.h>
|
2013-07-30 06:06:32 +00:00
|
|
|
|
2013-12-10 09:32:12 +00:00
|
|
|
/* Always 128 KiB env size */
|
|
|
|
#define CONFIG_ENV_SIZE (128 << 10)
|
2013-07-30 06:06:32 +00:00
|
|
|
|
2013-12-10 09:32:12 +00:00
|
|
|
#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
|
2013-07-30 06:06:32 +00:00
|
|
|
|
2013-12-10 09:32:12 +00:00
|
|
|
/* Clock Defines */
|
|
|
|
#define V_OSCK 24000000 /* Clock output from T2 */
|
|
|
|
#define V_SCLK (V_OSCK)
|
2013-07-30 06:06:32 +00:00
|
|
|
|
2013-12-10 09:32:12 +00:00
|
|
|
/* NS16550 Configuration */
|
|
|
|
#define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
|
|
|
|
|
|
|
|
#define CONFIG_ENV_IS_NOWHERE
|
|
|
|
|
|
|
|
#define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
|
2013-07-30 06:06:32 +00:00
|
|
|
|
2013-10-11 17:28:18 +00:00
|
|
|
#define CONFIG_CMD_USB
|
|
|
|
#define CONFIG_USB_HOST
|
|
|
|
#define CONFIG_USB_XHCI
|
|
|
|
#define CONFIG_USB_XHCI_OMAP
|
|
|
|
#define CONFIG_USB_STORAGE
|
|
|
|
#define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2
|
|
|
|
|
|
|
|
#define CONFIG_OMAP_USB_PHY
|
|
|
|
#define CONFIG_AM437X_USB2PHY2_HOST
|
|
|
|
|
2013-07-30 06:06:32 +00:00
|
|
|
#endif /* __CONFIG_AM43XX_EVM_H */
|