]> git.ipfire.org Git - thirdparty/u-boot.git/blob - include/configs/mx6sabresd.h
spl: Convert SYS_MMCSD_RAW_MODE_KERNEL_SECTOR to Kconfig
[thirdparty/u-boot.git] / include / configs / mx6sabresd.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Copyright (C) 2012 Freescale Semiconductor, Inc.
4 *
5 * Configuration settings for the Freescale i.MX6Q SabreSD board.
6 */
7
8 #ifndef __MX6SABRESD_CONFIG_H
9 #define __MX6SABRESD_CONFIG_H
10
11 #ifdef CONFIG_SPL
12 #include "imx6_spl.h"
13 #endif
14
15 #define CONFIG_MXC_UART_BASE UART1_BASE
16 #define CONSOLE_DEV "ttymxc0"
17
18 #include "mx6sabre_common.h"
19
20 /* Falcon Mode */
21 #define CONFIG_SPL_FS_LOAD_ARGS_NAME "args"
22 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage"
23 #define CONFIG_SYS_SPL_ARGS_ADDR 0x18000000
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
29 #define CONFIG_SYS_FSL_USDHC_NUM 3
30
31 #ifdef CONFIG_CMD_PCI
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
38 /* PMIC */
39 #define CONFIG_POWER_PFUZE100
40 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
41
42 /* USB Configs */
43 #ifdef CONFIG_CMD_USB
44 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
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
50 #endif /* __MX6SABRESD_CONFIG_H */