xref: /openbmc/u-boot/include/configs/mx6sabresd.h (revision 679f82c3)
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 #ifdef CONFIG_SPL
13 #define CONFIG_SPL_LIBCOMMON_SUPPORT
14 #define CONFIG_SPL_MMC_SUPPORT
15 #include "imx6_spl.h"
16 #endif
17 
18 #define CONFIG_MACH_TYPE	3980
19 #define CONFIG_MXC_UART_BASE	UART1_BASE
20 #define CONFIG_CONSOLE_DEV		"ttymxc0"
21 #define CONFIG_MMCROOT			"/dev/mmcblk1p2"
22 #define PHYS_SDRAM_SIZE		(1u * 1024 * 1024 * 1024)
23 
24 #define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
25 
26 #include "mx6sabre_common.h"
27 
28 #define CONFIG_SYS_FSL_USDHC_NUM	3
29 #if defined(CONFIG_ENV_IS_IN_MMC)
30 #define CONFIG_SYS_MMC_ENV_DEV		1	/* SDHC3 */
31 #endif
32 
33 #define CONFIG_CMD_PCI
34 #ifdef CONFIG_CMD_PCI
35 #define CONFIG_PCI
36 #define CONFIG_PCI_PNP
37 #define CONFIG_PCI_SCAN_SHOW
38 #define CONFIG_PCIE_IMX
39 #define CONFIG_PCIE_IMX_PERST_GPIO	IMX_GPIO_NR(7, 12)
40 #define CONFIG_PCIE_IMX_POWER_GPIO	IMX_GPIO_NR(3, 19)
41 #endif
42 
43 /* I2C Configs */
44 #define CONFIG_CMD_I2C
45 #define CONFIG_SYS_I2C
46 #define CONFIG_SYS_I2C_MXC
47 #define CONFIG_SYS_I2C_MXC_I2C1		/* enable I2C bus 1 */
48 #define CONFIG_SYS_I2C_MXC_I2C2		/* enable I2C bus 2 */
49 #define CONFIG_SYS_I2C_MXC_I2C3		/* enable I2C bus 3 */
50 #define CONFIG_SYS_I2C_SPEED		  100000
51 
52 /* PMIC */
53 #define CONFIG_POWER
54 #define CONFIG_POWER_I2C
55 #define CONFIG_POWER_PFUZE100
56 #define CONFIG_POWER_PFUZE100_I2C_ADDR	0x08
57 
58 /* USB Configs */
59 #define CONFIG_CMD_USB
60 #ifdef CONFIG_CMD_USB
61 #define CONFIG_USB_EHCI
62 #define CONFIG_USB_EHCI_MX6
63 #define CONFIG_USB_STORAGE
64 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
65 #define CONFIG_USB_HOST_ETHER
66 #define CONFIG_USB_ETHER_ASIX
67 #define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
68 #define CONFIG_MXC_USB_FLAGS		0
69 #define CONFIG_USB_MAX_CONTROLLER_COUNT	1 /* Enabled USB controller number */
70 #endif
71 
72 #endif                         /* __MX6QSABRESD_CONFIG_H */
73