blob: f2edd13eb8816a3341df6990a6d4939b03e8d489 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Eric Nelson4c644792017-12-11 13:52:11 -02002/*
Eric Nelsone6e37e32018-01-18 08:36:26 -07003 * Copyright (C) 2010-2018 Freescale Semiconductor, Inc.
Eric Nelson4c644792017-12-11 13:52:11 -02004 *
Eric Nelsone6e37e32018-01-18 08:36:26 -07005 * Configuration settings for the virtual mx6memcal board.
Eric Nelson4c644792017-12-11 13:52:11 -02006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11/* SPL */
12
13#include "mx6_common.h"
Eric Nelson4c644792017-12-11 13:52:11 -020014
Eric Nelson4c644792017-12-11 13:52:11 -020015#ifdef CONFIG_SERIAL_CONSOLE_UART1
16#if defined(CONFIG_MX6SL)
Tom Rinia17aa192022-12-04 10:04:55 -050017#define CFG_MXC_UART_BASE UART1_IPS_BASE_ADDR
Eric Nelson4c644792017-12-11 13:52:11 -020018#else
Tom Rinia17aa192022-12-04 10:04:55 -050019#define CFG_MXC_UART_BASE UART1_BASE
Eric Nelson4c644792017-12-11 13:52:11 -020020#endif
21#elif defined(CONFIG_SERIAL_CONSOLE_UART2)
Tom Rinia17aa192022-12-04 10:04:55 -050022#define CFG_MXC_UART_BASE UART2_BASE
Eric Nelson4c644792017-12-11 13:52:11 -020023#else
24#error please define serial console (CONFIG_SERIAL_CONSOLE_UARTx)
25#endif
Eric Nelson4c644792017-12-11 13:52:11 -020026
Eric Nelson4c644792017-12-11 13:52:11 -020027/* Physical Memory Map */
Eric Nelson4c644792017-12-11 13:52:11 -020028#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
29
Tom Rinibb4dd962022-11-16 13:10:37 -050030#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini6a5dccc2022-11-16 13:10:41 -050031#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
32#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Eric Nelson4c644792017-12-11 13:52:11 -020033
Tom Rinib9796e82022-12-04 10:04:56 -050034#define CFG_MXC_USB_PORTSC PORT_PTS_UTMI
Eric Nelson2e366b22018-01-18 07:47:32 -070035
Eric Nelson4c644792017-12-11 13:52:11 -020036#endif /* __CONFIG_H */