xref: /openbmc/u-boot/include/configs/mx6sabresd.h (revision 03efcb05)
1 /*
2  * Copyright (C) 2012 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the Freescale i.MX6Q SabreSD board.
5  *
6  * SPDX-License-Identifier:	GPL-2.0+
7  */
8 
9 #ifndef __MX6QSABRESD_CONFIG_H
10 #define __MX6QSABRESD_CONFIG_H
11 
12 #define CONFIG_MACH_TYPE	3980
13 #define CONFIG_MXC_UART_BASE	UART1_BASE
14 #define CONFIG_CONSOLE_DEV		"ttymxc0"
15 #define CONFIG_MMCROOT			"/dev/mmcblk1p2"
16 #define CONFIG_DEFAULT_FDT_FILE	"imx6q-sabresd.dtb"
17 #define PHYS_SDRAM_SIZE		(1u * 1024 * 1024 * 1024)
18 
19 #include "mx6sabre_common.h"
20 
21 #define CONFIG_SYS_FSL_USDHC_NUM	3
22 #if defined(CONFIG_ENV_IS_IN_MMC)
23 #define CONFIG_SYS_MMC_ENV_DEV		1	/* SDHC3 */
24 #endif
25 
26 #endif                         /* __MX6QSABRESD_CONFIG_H */
27