1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2012 Freescale Semiconductor, Inc. 4 * 5 * Configuration settings for the Freescale i.MX6Q SabreSD board. 6 */ 7 8 #ifndef __MX6SABRESD_CONFIG_H 9 #define __MX6SABRESD_CONFIG_H 10 11 #define CFG_MXC_UART_BASE UART1_BASE 12 #define CONSOLE_DEV "ttymxc0" 13 14 #include "mx6sabre_common.h" 15 16 /* Falcon Mode */ 17 18 /* Falcon Mode - MMC support: args@1MB kernel@2MB */ 19 20 #define CFG_SYS_FSL_USDHC_NUM 3 21 22 #ifdef CONFIG_CMD_PCI 23 #define CFG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12) 24 #define CFG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(3, 19) 25 #endif 26 27 #endif /* __MX6SABRESD_CONFIG_H */ 28