]> git.ipfire.org Git - thirdparty/u-boot.git/blob - include/configs/vining_2000.h
Convert CONFIG_ETHPRIME to Kconfig
[thirdparty/u-boot.git] / include / configs / vining_2000.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Copyright (C) 2016 samtec automotive software & electronics gmbh
4 *
5 * Configuration settings for the Samtec VIN|ING 2000 board.
6 */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include "mx6_common.h"
12
13 #ifdef CONFIG_SPL
14 #include "imx6_spl.h"
15 #endif
16
17 #define BOOT_TARGET_DEVICES(func) \
18 func(MMC, mmc, 0) \
19 func(MMC, mmc, 1) \
20 func(USB, usb, 0) \
21 func(PXE, pxe, na) \
22 func(DHCP, dhcp, na)
23 #include <config_distro_bootcmd.h>
24
25 /* Miscellaneous configurable options */
26
27 /* Physical Memory Map */
28 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
29
30 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
31 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
32 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
33
34 #define CONFIG_SYS_INIT_SP_OFFSET \
35 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
36 #define CONFIG_SYS_INIT_SP_ADDR \
37 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
38
39 /* MMC Configuration */
40 #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC4_BASE_ADDR
41
42 /* PMIC */
43 #define CONFIG_POWER_PFUZE100
44 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
45
46 /* Network */
47 #define IMX_FEC_BASE ENET_BASE_ADDR
48 #define CONFIG_FEC_MXC_PHYADDR 0x0
49
50 #define CONFIG_FEC_XCV_TYPE RMII
51
52 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
53 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
54 #define CONFIG_MXC_USB_FLAGS 0
55 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
56
57 #ifdef CONFIG_CMD_PCI
58 #define CONFIG_PCI_SCAN_SHOW
59 #define CONFIG_PCIE_IMX
60 #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(4, 6)
61 #endif
62
63 #define CONFIG_IMX6_PWM_PER_CLK 66000000
64
65 #ifdef CONFIG_ENV_IS_IN_MMC
66 /* 0=user, 1=boot0, 2=boot1, * 4..7=general0..3. */
67 #endif
68
69 #ifdef CONFIG_SPL_BUILD
70 #define CONFIG_MXC_UART_BASE UART1_BASE
71 #endif
72
73 #endif /* __CONFIG_H */