blob: c827a9cace9ef599c5a0889e535f4de4d1986a08 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Tom Rinia2f4c912013-08-09 11:22:17 -04002/*
3 * ti_am335x_common.h
4 *
Nishanth Menoneaa39c62023-11-01 15:56:03 -05005 * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
Tom Rinia2f4c912013-08-09 11:22:17 -04006 *
Tom Rinia2f4c912013-08-09 11:22:17 -04007 * For more details, please see the technical documents listed at
Nishanth Menoneaa39c62023-11-01 15:56:03 -05008 * https://www.ti.com/product/am3359#technicaldocuments
Tom Rinia2f4c912013-08-09 11:22:17 -04009 */
10
11#ifndef __CONFIG_TI_AM335X_COMMON_H__
12#define __CONFIG_TI_AM335X_COMMON_H__
13
Tom Rinidb9c39e2022-12-04 10:04:51 -050014#define CFG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */
Tom Rini6a5dccc2022-11-16 13:10:41 -050015#define CFG_SYS_TIMERBASE 0x48040000 /* Use Timer2 */
Tom Rinia2f4c912013-08-09 11:22:17 -040016
17#include <asm/arch/omap.h>
18
19/* NS16550 Configuration */
Tom Rinidf6a2152022-11-16 13:10:28 -050020#define CFG_SYS_NS16550_CLK 48000000
Tom Rinia2f4c912013-08-09 11:22:17 -040021
Tom Rini45841f62013-08-20 08:53:43 -040022/*
23 * SPL related defines. The Public RAM memory map the ROM defines the
24 * area between 0x402F0400 and 0x4030B800 as a download area and
25 * 0x4030B800 to 0x4030CE00 as a public stack area. The ROM also
26 * supports X-MODEM loading via UART, and we leverage this and then use
27 * Y-MODEM to load u-boot.img, when booted over UART.
28 */
Tom Rinia2f4c912013-08-09 11:22:17 -040029
Tom Rini303bfe82013-10-01 12:32:04 -040030/* Enable the watchdog inside of SPL */
Tom Rini303bfe82013-10-01 12:32:04 -040031
Tom Rinia2f4c912013-08-09 11:22:17 -040032/*
33 * Since SPL did pll and ddr initialization for us,
34 * we don't need to do it twice.
35 */
Tom Rinia2f4c912013-08-09 11:22:17 -040036
Tom Rini9fec9ae2014-05-21 12:57:22 -040037/*
38 * When building U-Boot such that there is no previous loader
39 * we need to call board_early_init_f. This is taken care of in
40 * s_init when we have SPL used.
41 */
Tom Rini9fec9ae2014-05-21 12:57:22 -040042
Tom Rinia2f4c912013-08-09 11:22:17 -040043/* Now bring in the rest of the common code. */
Nishanth Menonad63dd72015-07-22 18:05:41 -050044#include <configs/ti_armv7_omap.h>
Tom Rinia2f4c912013-08-09 11:22:17 -040045
46#endif /* __CONFIG_TI_AM335X_COMMON_H__ */