1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2019 Linaro Ltd. 4 * Copyright (C) 2016 NXP Semiconductors 5 * 6 * Configuration settings for Meerkat96 board. 7 */ 8 9 #ifndef __MEERKAT96_CONFIG_H 10 #define __MEERKAT96_CONFIG_H 11 12 #include "mx7_common.h" 13 #include <imximage.h> 14 15 #define PHYS_SDRAM_SIZE SZ_512M 16 17 /* Physical Memory Map */ 18 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR 19 20 #define CFG_SYS_SDRAM_BASE PHYS_SDRAM 21 #define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 22 #define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE 23 24 /* Environment configs */ 25 26 /* USB configs */ 27 #define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) 28 29 #endif 30