Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Fabio Estevam | 7891e25 | 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 | 7891e25 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Fabio Estevam | 258f76f | 2017-06-01 12:59:52 -0300 | [diff] [blame] | 8 | #ifndef __MX6SABRESD_CONFIG_H |
| 9 | #define __MX6SABRESD_CONFIG_H |
Fabio Estevam | 7891e25 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 10 | |
John Tobias | 1558200 | 2014-11-12 14:27:44 -0800 | [diff] [blame] | 11 | #ifdef CONFIG_SPL |
John Tobias | 1558200 | 2014-11-12 14:27:44 -0800 | [diff] [blame] | 12 | #include "imx6_spl.h" |
| 13 | #endif |
| 14 | |
Fabio Estevam | bcfc711 | 2012-09-24 08:09:32 +0000 | [diff] [blame] | 15 | #define CONFIG_MXC_UART_BASE UART1_BASE |
Simon Glass | 12ca05a | 2016-10-17 20:12:39 -0600 | [diff] [blame] | 16 | #define CONSOLE_DEV "ttymxc0" |
Fabio Estevam | 7891e25 | 2012-09-13 03:18:20 +0000 | [diff] [blame] | 17 | |
Pierre Aubert | c174797 | 2013-06-04 09:00:15 +0200 | [diff] [blame] | 18 | #include "mx6sabre_common.h" |
Otavio Salvador | 51535d9 | 2012-09-26 11:37:01 +0000 | [diff] [blame] | 19 | |
Diego Dorta | d96796c | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 20 | /* Falcon Mode */ |
Tom Rini | dec3030 | 2017-01-20 19:55:53 -0500 | [diff] [blame] | 21 | #define CONFIG_SPL_FS_LOAD_ARGS_NAME "args" |
| 22 | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage" |
Diego Dorta | d96796c | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 23 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x18000000 |
Diego Dorta | d96796c | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 24 | |
| 25 | /* Falcon Mode - MMC support: args@1MB kernel@2MB */ |
| 26 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x800 /* 1MB */ |
| 27 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS (CONFIG_CMD_SPL_WRITE_SIZE / 512) |
Diego Dorta | d96796c | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 28 | |
Shawn Guo | de7d02a | 2012-12-30 14:14:59 +0000 | [diff] [blame] | 29 | #define CONFIG_SYS_FSL_USDHC_NUM 3 |
Shawn Guo | de7d02a | 2012-12-30 14:14:59 +0000 | [diff] [blame] | 30 | |
Marek Vasut | e919aa2 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 31 | #ifdef CONFIG_CMD_PCI |
Marek Vasut | e919aa2 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 32 | #define CONFIG_PCI_SCAN_SHOW |
| 33 | #define CONFIG_PCIE_IMX |
| 34 | #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12) |
| 35 | #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(3, 19) |
| 36 | #endif |
| 37 | |
Fabio Estevam | 66ca09f | 2014-05-09 13:15:42 -0300 | [diff] [blame] | 38 | /* PMIC */ |
Fabio Estevam | 66ca09f | 2014-05-09 13:15:42 -0300 | [diff] [blame] | 39 | #define CONFIG_POWER_PFUZE100 |
| 40 | #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08 |
| 41 | |
Peng Fan | 5a3d63c | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 42 | /* USB Configs */ |
Peng Fan | 5a3d63c | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 43 | #ifdef CONFIG_CMD_USB |
Peng Fan | 5a3d63c | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 44 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
Peng Fan | 5a3d63c | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 45 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 46 | #define CONFIG_MXC_USB_FLAGS 0 |
| 47 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 /* Enabled USB controller number */ |
| 48 | #endif |
| 49 | |
Fabio Estevam | 258f76f | 2017-06-01 12:59:52 -0300 | [diff] [blame] | 50 | #endif /* __MX6SABRESD_CONFIG_H */ |