Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Fabio Estevam | 77e6289 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 2 | /* |
3 | * Copyright (C) 2012 Freescale Semiconductor, Inc. | ||||
4 | * | ||||
5 | * Configuration settings for the Freescale i.MX6Q SabreSD board. | ||||
Fabio Estevam | 77e6289 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 6 | */ |
7 | |||||
Fabio Estevam | c123908 | 2017-06-01 12:59:52 -0300 | [diff] [blame] | 8 | #ifndef __MX6SABRESD_CONFIG_H |
9 | #define __MX6SABRESD_CONFIG_H | ||||
Fabio Estevam | 77e6289 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 10 | |
John Tobias | 7706eae | 2014-11-12 14:27:44 -0800 | [diff] [blame] | 11 | #ifdef CONFIG_SPL |
John Tobias | 7706eae | 2014-11-12 14:27:44 -0800 | [diff] [blame] | 12 | #include "imx6_spl.h" |
13 | #endif | ||||
14 | |||||
Fabio Estevam | c5ca897 | 2012-09-24 08:09:32 +0000 | [diff] [blame] | 15 | #define CONFIG_MXC_UART_BASE UART1_BASE |
Simon Glass | 4694a74 | 2016-10-17 20:12:39 -0600 | [diff] [blame] | 16 | #define CONSOLE_DEV "ttymxc0" |
Fabio Estevam | 77e6289 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 17 | |
Pierre Aubert | ec10aed | 2013-06-04 09:00:15 +0200 | [diff] [blame] | 18 | #include "mx6sabre_common.h" |
Otavio Salvador | 1c0b9be | 2012-09-26 11:37:01 +0000 | [diff] [blame] | 19 | |
Diego Dorta | 466016e | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 20 | /* Falcon Mode */ |
Diego Dorta | 466016e | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 21 | |
22 | /* Falcon Mode - MMC support: args@1MB kernel@2MB */ | ||||
Diego Dorta | 466016e | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 23 | |
Shawn Guo | 7e5e833 | 2012-12-30 14:14:59 +0000 | [diff] [blame] | 24 | #define CONFIG_SYS_FSL_USDHC_NUM 3 |
Shawn Guo | 7e5e833 | 2012-12-30 14:14:59 +0000 | [diff] [blame] | 25 | |
Marek Vasut | 0e99f01 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 26 | #ifdef CONFIG_CMD_PCI |
Marek Vasut | 0e99f01 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 27 | #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12) |
28 | #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(3, 19) | ||||
29 | #endif | ||||
30 | |||||
Fabio Estevam | ba92ad6 | 2014-05-09 13:15:42 -0300 | [diff] [blame] | 31 | /* PMIC */ |
Fabio Estevam | ba92ad6 | 2014-05-09 13:15:42 -0300 | [diff] [blame] | 32 | #define CONFIG_POWER_PFUZE100 |
33 | #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08 | ||||
34 | |||||
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 35 | /* USB Configs */ |
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 36 | #ifdef CONFIG_CMD_USB |
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 37 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
38 | #define CONFIG_MXC_USB_FLAGS 0 | ||||
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 39 | #endif |
40 | |||||
Fabio Estevam | c123908 | 2017-06-01 12:59:52 -0300 | [diff] [blame] | 41 | #endif /* __MX6SABRESD_CONFIG_H */ |