Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 samtec automotive software & electronics gmbh |
| 4 | * |
| 5 | * Configuration settings for the Samtec VIN|ING 2000 board. |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 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 | /* Size of malloc() pool */ |
| 18 | #define CONFIG_SYS_MALLOC_LEN (3 * SZ_1M) |
| 19 | |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 20 | #define BOOT_TARGET_DEVICES(func) \ |
| 21 | func(MMC, mmc, 0) \ |
| 22 | func(MMC, mmc, 1) \ |
| 23 | func(USB, usb, 0) \ |
| 24 | func(PXE, pxe, na) \ |
| 25 | func(DHCP, dhcp, na) |
| 26 | #include <config_distro_bootcmd.h> |
| 27 | |
| 28 | /* Miscellaneous configurable options */ |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 29 | |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 30 | /* Physical Memory Map */ |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 31 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 32 | |
| 33 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 34 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 35 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 36 | |
| 37 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 38 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 39 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 40 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 41 | |
| 42 | /* MMC Configuration */ |
| 43 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC4_BASE_ADDR |
| 44 | |
| 45 | /* I2C Configs */ |
Simon Glass | 69d9eda | 2021-07-10 21:14:32 -0600 | [diff] [blame] | 46 | #define CONFIG_SYS_I2C_LEGACY |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 47 | #define CONFIG_SYS_I2C_MXC |
| 48 | #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */ |
| 49 | #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */ |
| 50 | #define CONFIG_SYS_I2C_SPEED 100000 |
| 51 | |
| 52 | /* PMIC */ |
| 53 | #define CONFIG_POWER |
| 54 | #define CONFIG_POWER_I2C |
| 55 | #define CONFIG_POWER_PFUZE100 |
| 56 | #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08 |
| 57 | |
| 58 | /* Network */ |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 59 | #define IMX_FEC_BASE ENET_BASE_ADDR |
| 60 | #define CONFIG_FEC_MXC_PHYADDR 0x0 |
| 61 | |
| 62 | #define CONFIG_FEC_XCV_TYPE RMII |
| 63 | #define CONFIG_ETHPRIME "FEC" |
| 64 | |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 65 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 66 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 67 | #define CONFIG_MXC_USB_FLAGS 0 |
| 68 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 69 | |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 70 | #ifdef CONFIG_CMD_PCI |
| 71 | #define CONFIG_PCI_SCAN_SHOW |
| 72 | #define CONFIG_PCIE_IMX |
| 73 | #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(4, 6) |
| 74 | #endif |
| 75 | |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 76 | #define CONFIG_IMX6_PWM_PER_CLK 66000000 |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 77 | |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 78 | #ifdef CONFIG_ENV_IS_IN_MMC |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 79 | /* 0=user, 1=boot0, 2=boot1, * 4..7=general0..3. */ |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 80 | #endif |
| 81 | |
Marek Vasut | 7d84f44 | 2019-11-26 09:39:08 +0100 | [diff] [blame] | 82 | #ifdef CONFIG_SPL_BUILD |
| 83 | #define CONFIG_MXC_UART_BASE UART1_BASE |
| 84 | #endif |
| 85 | |
Christoph Fritz | 730d254 | 2016-11-29 16:13:40 +0100 | [diff] [blame] | 86 | #endif /* __CONFIG_H */ |