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 */ |
Tom Rini | 133b2e2 | 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 | 466016e | 2016-10-11 11:09:27 -0300 | [diff] [blame] | 23 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x18000000 |
Diego Dorta | 466016e | 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) |
| 28 | #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x1000 /* 2MB */ |
| 29 | |
Shawn Guo | 7e5e833 | 2012-12-30 14:14:59 +0000 | [diff] [blame] | 30 | #define CONFIG_SYS_FSL_USDHC_NUM 3 |
Shawn Guo | 7e5e833 | 2012-12-30 14:14:59 +0000 | [diff] [blame] | 31 | |
Marek Vasut | 0e99f01 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 32 | #ifdef CONFIG_CMD_PCI |
Marek Vasut | 0e99f01 | 2014-03-23 22:45:41 +0100 | [diff] [blame] | 33 | #define CONFIG_PCI_SCAN_SHOW |
| 34 | #define CONFIG_PCIE_IMX |
| 35 | #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12) |
| 36 | #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(3, 19) |
| 37 | #endif |
| 38 | |
Fabio Estevam | ba92ad6 | 2014-05-09 13:15:42 -0300 | [diff] [blame] | 39 | /* PMIC */ |
Fabio Estevam | ba92ad6 | 2014-05-09 13:15:42 -0300 | [diff] [blame] | 40 | #define CONFIG_POWER_PFUZE100 |
| 41 | #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08 |
| 42 | |
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 43 | /* USB Configs */ |
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 44 | #ifdef CONFIG_CMD_USB |
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 45 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
Peng Fan | c9498fa | 2014-12-02 09:55:27 +0800 | [diff] [blame] | 46 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 47 | #define CONFIG_MXC_USB_FLAGS 0 |
| 48 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 /* Enabled USB controller number */ |
| 49 | #endif |
| 50 | |
Fabio Estevam | c123908 | 2017-06-01 12:59:52 -0300 | [diff] [blame] | 51 | #endif /* __MX6SABRESD_CONFIG_H */ |