1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 // Copyright (C) Stefano Babic <sbabic@denx.de> 3 4 #ifndef __LXR2_CONFIG_H 5 #define __LXR2_CONFIG_H 6 7 #include <config_distro_bootcmd.h> 8 9 #include "mx6_common.h" 10 11 #define PHYS_SDRAM_SIZE SZ_1G 12 13 /* Physical Memory Map */ 14 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR 15 16 #define CFG_SYS_SDRAM_BASE PHYS_SDRAM 17 #define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 18 #define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE 19 20 #define CFG_SYS_FSL_ESDHC_ADDR 0 21 #define CFG_MXC_UART_BASE UART4_BASE 22 23 #endif 24