Merge branch '2020-07-28-Kconfig-migrations'
[platform/kernel/u-boot.git] / include / configs / am57xx_evm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2014
4  * Texas Instruments Incorporated.
5  * Felipe Balbi <balbi@ti.com>
6  *
7  * Configuration settings for the TI Beagle x15 board.
8  * See ti_omap5_common.h for omap5 common settings.
9  */
10
11 #ifndef __CONFIG_AM57XX_EVM_H
12 #define __CONFIG_AM57XX_EVM_H
13
14 #include <environment/ti/dfu.h>
15 #include <linux/sizes.h>
16
17 #define CONFIG_IODELAY_RECALIBRATION
18
19 /* MMC ENV related defines */
20 #define CONFIG_SYS_MMC_ENV_DEV          1               /* eMMC */
21 #define CONFIG_SYS_MMC_ENV_PART         0
22
23 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
24
25 #define CONFIG_SYS_NS16550_COM1         UART1_BASE      /* Base EVM has UART0 */
26 #define CONFIG_SYS_NS16550_COM2         UART2_BASE      /* UART2 */
27 #define CONFIG_SYS_NS16550_COM3         UART3_BASE      /* UART3 */
28
29 #define CONFIG_ENV_EEPROM_IS_ON_I2C
30 #define CONFIG_SYS_I2C_EEPROM_ADDR      0x50    /* Main EEPROM */
31 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN  2
32
33 #define CONFIG_SYS_OMAP_ABE_SYSCK
34
35 #ifndef CONFIG_SPL_BUILD
36 #define DFUARGS \
37         "dfu_bufsiz=0x10000\0" \
38         DFU_ALT_INFO_MMC \
39         DFU_ALT_INFO_EMMC \
40         DFU_ALT_INFO_RAM \
41         DFU_ALT_INFO_QSPI
42 #else
43 #ifdef CONFIG_SPL_DFU
44 #define DFUARGS \
45         "dfu_bufsiz=0x10000\0" \
46         DFU_ALT_INFO_RAM
47 #endif
48 #endif
49
50 #include <configs/ti_omap5_common.h>
51
52 /* Enhance our eMMC support / experience. */
53 #define CONFIG_HSMMC2_8BIT
54
55 /* CPSW Ethernet */
56 #define CONFIG_NET_RETRY_COUNT          10
57 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs longer aneg time at 1G */
58
59 /* USB xHCI HOST */
60 #define CONFIG_USB_XHCI_OMAP
61
62 #define CONFIG_OMAP_USB3PHY1_HOST
63
64 /* SATA */
65 #define CONFIG_SCSI_AHCI_PLAT
66 #define CONFIG_SYS_SCSI_MAX_SCSI_ID     1
67 #define CONFIG_SYS_SCSI_MAX_LUN         1
68 #define CONFIG_SYS_SCSI_MAX_DEVICE      (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
69                                                 CONFIG_SYS_SCSI_MAX_LUN)
70
71 /*
72  * Default to using SPI for environment, etc.
73  * 0x000000 - 0x040000 : QSPI.SPL (256KiB)
74  * 0x040000 - 0x140000 : QSPI.u-boot (1MiB)
75  * 0x140000 - 0x1C0000 : QSPI.u-boot-spl-os (512KiB)
76  * 0x1C0000 - 0x1D0000 : QSPI.u-boot-env (64KiB)
77  * 0x1D0000 - 0x1E0000 : QSPI.u-boot-env.backup1 (64KiB)
78  * 0x1E0000 - 0x9E0000 : QSPI.kernel (8MiB)
79  * 0x9E0000 - 0x2000000 : USERLAND
80  */
81 #define CONFIG_SYS_SPI_KERNEL_OFFS      0x1E0000
82 #define CONFIG_SYS_SPI_ARGS_OFFS        0x140000
83 #define CONFIG_SYS_SPI_ARGS_SIZE        0x80000
84
85 /* SPI SPL */
86
87 #endif /* __CONFIG_AM57XX_EVM_H */