Convert CONFIG_BOARD_EARLY_INIT_F to Kconfig
[platform/kernel/u-boot.git] / include / configs / am57xx_evm.h
1 /*
2  * (C) Copyright 2014
3  * Texas Instruments Incorporated.
4  * Felipe Balbi <balbi@ti.com>
5  *
6  * Configuration settings for the TI Beagle x15 board.
7  * See ti_omap5_common.h for omap5 common settings.
8  *
9  * SPDX-License-Identifier:     GPL-2.0+
10  */
11
12 #ifndef __CONFIG_AM57XX_EVM_H
13 #define __CONFIG_AM57XX_EVM_H
14
15 #include <environment/ti/dfu.h>
16
17 #define CONFIG_DRA7XX
18
19 #ifdef CONFIG_SPL_BUILD
20 #define CONFIG_IODELAY_RECALIBRATION
21 #endif
22
23 #define CONFIG_NR_DRAM_BANKS            2
24
25 #define CONFIG_ENV_SIZE                 (64 << 10)
26 #define CONFIG_ENV_IS_IN_FAT
27 #define FAT_ENV_INTERFACE               "mmc"
28 #define FAT_ENV_DEVICE_AND_PART         "0:1"
29 #define FAT_ENV_FILE                    "uboot.env"
30
31 #define CONSOLEDEV                      "ttyO2"
32 #define CONFIG_SYS_NS16550_COM1         UART1_BASE      /* Base EVM has UART0 */
33 #define CONFIG_SYS_NS16550_COM2         UART2_BASE      /* UART2 */
34 #define CONFIG_SYS_NS16550_COM3         UART3_BASE      /* UART3 */
35 #define CONFIG_BAUDRATE                 115200
36
37 #define CONFIG_SYS_OMAP_ABE_SYSCK
38
39 /* Define the default GPT table for eMMC */
40 #define PARTS_DEFAULT \
41         /* Linux partitions */ \
42         "uuid_disk=${uuid_gpt_disk};" \
43         "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
44         /* Android partitions */ \
45         "partitions_android=" \
46         "uuid_disk=${uuid_gpt_disk};" \
47         "name=xloader,start=128K,size=256K,uuid=${uuid_gpt_xloader};" \
48         "name=bootloader,size=768K,uuid=${uuid_gpt_bootloader};" \
49         "name=environment,size=128K,uuid=${uuid_gpt_environment};" \
50         "name=misc,size=128K,uuid=${uuid_gpt_misc};" \
51         "name=reserved,size=256K,uuid=${uuid_gpt_reserved};" \
52         "name=efs,size=16M,uuid=${uuid_gpt_efs};" \
53         "name=crypto,size=16K,uuid=${uuid_gpt_crypto};" \
54         "name=recovery,size=10M,uuid=${uuid_gpt_recovery};" \
55         "name=boot,size=10M,uuid=${uuid_gpt_boot};" \
56         "name=system,size=768M,uuid=${uuid_gpt_system};" \
57         "name=cache,size=256M,uuid=${uuid_gpt_cache};" \
58         "name=ipu1,size=1M,uuid=${uuid_gpt_ipu1};" \
59         "name=ipu2,size=1M,uuid=${uuid_gpt_ipu2};" \
60         "name=userdata,size=-,uuid=${uuid_gpt_userdata}"
61
62 #define DFUARGS \
63         "dfu_bufsiz=0x10000\0" \
64         DFU_ALT_INFO_MMC \
65         DFU_ALT_INFO_EMMC \
66         DFU_ALT_INFO_RAM \
67
68 #include <configs/ti_omap5_common.h>
69
70 /* Enhance our eMMC support / experience. */
71 #define CONFIG_CMD_GPT
72 #define CONFIG_EFI_PARTITION
73 #define CONFIG_RANDOM_UUID
74 #define CONFIG_HSMMC2_8BIT
75
76 /* CPSW Ethernet */
77 #define CONFIG_BOOTP_DNS                /* Configurable parts of CMD_DHCP */
78 #define CONFIG_BOOTP_DNS2
79 #define CONFIG_BOOTP_SEND_HOSTNAME
80 #define CONFIG_BOOTP_GATEWAY
81 #define CONFIG_BOOTP_SUBNETMASK
82 #define CONFIG_NET_RETRY_COUNT          10
83 #define CONFIG_DRIVER_TI_CPSW           /* Driver for IP block */
84 #define CONFIG_MII                      /* Required in net/eth.c */
85 #define CONFIG_PHY_GIGE                 /* per-board part of CPSW */
86 #define CONFIG_PHYLIB
87 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs longer aneg time at 1G */
88
89 #define CONFIG_SUPPORT_EMMC_BOOT
90
91 /* USB xHCI HOST */
92 #define CONFIG_USB_XHCI_OMAP
93 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2
94
95 #define CONFIG_OMAP_USB_PHY
96 #define CONFIG_OMAP_USB3PHY1_HOST
97
98 /* SATA */
99 #define CONFIG_SCSI
100 #define CONFIG_LIBATA
101 #define CONFIG_SCSI_AHCI
102 #define CONFIG_SCSI_AHCI_PLAT
103 #define CONFIG_SYS_SCSI_MAX_SCSI_ID     1
104 #define CONFIG_SYS_SCSI_MAX_LUN         1
105 #define CONFIG_SYS_SCSI_MAX_DEVICE      (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
106                                                 CONFIG_SYS_SCSI_MAX_LUN)
107
108 /* EEPROM */
109 #define CONFIG_EEPROM_CHIP_ADDRESS 0x50
110 #define CONFIG_EEPROM_BUS_ADDRESS 0
111
112 /*
113  * Default to using SPI for environment, etc.
114  * 0x000000 - 0x040000 : QSPI.SPL (256KiB)
115  * 0x040000 - 0x140000 : QSPI.u-boot (1MiB)
116  * 0x140000 - 0x1C0000 : QSPI.u-boot-spl-os (512KiB)
117  * 0x1C0000 - 0x1D0000 : QSPI.u-boot-env (64KiB)
118  * 0x1D0000 - 0x1E0000 : QSPI.u-boot-env.backup1 (64KiB)
119  * 0x1E0000 - 0x9E0000 : QSPI.kernel (8MiB)
120  * 0x9E0000 - 0x2000000 : USERLAND
121  */
122 #define CONFIG_SYS_SPI_KERNEL_OFFS      0x1E0000
123 #define CONFIG_SYS_SPI_ARGS_OFFS        0x140000
124 #define CONFIG_SYS_SPI_ARGS_SIZE        0x80000
125
126 #ifdef CONFIG_SPL_BUILD
127 #undef CONFIG_DM_SPI
128 #undef CONFIG_DM_SPI_FLASH
129 #endif
130
131 /* SPI SPL */
132 #define CONFIG_TI_EDMA3
133 #define CONFIG_SPL_SPI_LOAD
134 #define CONFIG_SYS_SPI_U_BOOT_OFFS     0x40000
135
136 /* SPI */
137 #undef  CONFIG_OMAP3_SPI
138 #define CONFIG_TI_SPI_MMAP
139 #define CONFIG_SF_DEFAULT_SPEED                76800000
140 #define CONFIG_SF_DEFAULT_MODE                 SPI_MODE_0
141 #define CONFIG_QSPI_QUAD_SUPPORT
142
143 #endif /* __CONFIG_AM57XX_EVM_H */