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 | |
Tom Rini | a17aa19 | 2022-12-04 10:04:55 -0500 | [diff] [blame] | 11 | #define CFG_MXC_UART_BASE UART1_BASE |
Simon Glass | 4694a74 | 2016-10-17 20:12:39 -0600 | [diff] [blame] | 12 | #define CONSOLE_DEV "ttymxc0" |
Fabio Estevam | 77e6289 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 13 | |
Pierre Aubert | ec10aed | 2013-06-04 09:00:15 +0200 | [diff] [blame] | 14 | #include "mx6sabre_common.h" |
Otavio Salvador | 1c0b9be | 2012-09-26 11:37:01 +0000 | [diff] [blame] | 15 | |
Diego Dorta | 466016e | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 16 | /* Falcon Mode */ |
Diego Dorta | 466016e | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 17 | |
18 | /* Falcon Mode - MMC support: args@1MB kernel@2MB */ | ||||
Diego Dorta | 466016e | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 19 | |
Tom Rini | 376b88a | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 20 | #define CFG_SYS_FSL_USDHC_NUM 3 |
Shawn Guo | 7e5e833 | 2012-12-30 14:14:59 +0000 | [diff] [blame] | 21 | |
Marek Vasut | 0e99f01 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 22 | #ifdef CONFIG_CMD_PCI |
Tom Rini | 9fa71af | 2022-12-04 10:13:25 -0500 | [diff] [blame] | 23 | #define CFG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12) |
Tom Rini | c43e27a | 2022-12-04 10:13:26 -0500 | [diff] [blame] | 24 | #define CFG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(3, 19) |
Marek Vasut | 0e99f01 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 25 | #endif |
26 | |||||
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 27 | /* USB Configs */ |
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 28 | #ifdef CONFIG_CMD_USB |
Tom Rini | b9796e8 | 2022-12-04 10:04:56 -0500 | [diff] [blame] | 29 | #define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
30 | #define CFG_MXC_USB_FLAGS 0 | ||||
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 31 | #endif |
32 | |||||
Fabio Estevam | c123908 | 2017-06-01 12:59:52 -0300 | [diff] [blame] | 33 | #endif /* __MX6SABRESD_CONFIG_H */ |