]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/am57xx_evm.h
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
[people/ms/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
36 #define CONFIG_SYS_OMAP_ABE_SYSCK
37
38 /* Define the default GPT table for eMMC */
39 #define PARTS_DEFAULT \
40 /* Linux partitions */ \
41 "uuid_disk=${uuid_gpt_disk};" \
42 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
43 /* Android partitions */ \
44 "partitions_android=" \
45 "uuid_disk=${uuid_gpt_disk};" \
46 "name=xloader,start=128K,size=256K,uuid=${uuid_gpt_xloader};" \
47 "name=bootloader,size=768K,uuid=${uuid_gpt_bootloader};" \
48 "name=environment,size=128K,uuid=${uuid_gpt_environment};" \
49 "name=misc,size=128K,uuid=${uuid_gpt_misc};" \
50 "name=reserved,size=256K,uuid=${uuid_gpt_reserved};" \
51 "name=efs,size=16M,uuid=${uuid_gpt_efs};" \
52 "name=crypto,size=16K,uuid=${uuid_gpt_crypto};" \
53 "name=recovery,size=10M,uuid=${uuid_gpt_recovery};" \
54 "name=boot,size=10M,uuid=${uuid_gpt_boot};" \
55 "name=system,size=768M,uuid=${uuid_gpt_system};" \
56 "name=cache,size=256M,uuid=${uuid_gpt_cache};" \
57 "name=ipu1,size=1M,uuid=${uuid_gpt_ipu1};" \
58 "name=ipu2,size=1M,uuid=${uuid_gpt_ipu2};" \
59 "name=userdata,size=-,uuid=${uuid_gpt_userdata}"
60
61 #define DFUARGS \
62 "dfu_bufsiz=0x10000\0" \
63 DFU_ALT_INFO_MMC \
64 DFU_ALT_INFO_EMMC \
65 DFU_ALT_INFO_RAM \
66
67 #include <configs/ti_omap5_common.h>
68
69 /* Enhance our eMMC support / experience. */
70 #define CONFIG_RANDOM_UUID
71 #define CONFIG_HSMMC2_8BIT
72
73 /* CPSW Ethernet */
74 #define CONFIG_BOOTP_DNS /* Configurable parts of CMD_DHCP */
75 #define CONFIG_BOOTP_DNS2
76 #define CONFIG_BOOTP_SEND_HOSTNAME
77 #define CONFIG_BOOTP_GATEWAY
78 #define CONFIG_BOOTP_SUBNETMASK
79 #define CONFIG_NET_RETRY_COUNT 10
80 #define CONFIG_DRIVER_TI_CPSW /* Driver for IP block */
81 #define CONFIG_MII /* Required in net/eth.c */
82 #define CONFIG_PHY_GIGE /* per-board part of CPSW */
83 #define CONFIG_PHYLIB
84 #define PHY_ANEG_TIMEOUT 8000 /* PHY needs longer aneg time at 1G */
85
86 #define CONFIG_SUPPORT_EMMC_BOOT
87
88 /* USB xHCI HOST */
89 #define CONFIG_USB_XHCI_OMAP
90 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2
91
92 #define CONFIG_OMAP_USB_PHY
93 #define CONFIG_OMAP_USB3PHY1_HOST
94
95 /* SATA */
96 #define CONFIG_SCSI
97 #define CONFIG_LIBATA
98 #define CONFIG_SCSI_AHCI
99 #define CONFIG_SCSI_AHCI_PLAT
100 #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
101 #define CONFIG_SYS_SCSI_MAX_LUN 1
102 #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
103 CONFIG_SYS_SCSI_MAX_LUN)
104
105 /* EEPROM */
106 #define CONFIG_EEPROM_CHIP_ADDRESS 0x50
107 #define CONFIG_EEPROM_BUS_ADDRESS 0
108
109 /*
110 * Default to using SPI for environment, etc.
111 * 0x000000 - 0x040000 : QSPI.SPL (256KiB)
112 * 0x040000 - 0x140000 : QSPI.u-boot (1MiB)
113 * 0x140000 - 0x1C0000 : QSPI.u-boot-spl-os (512KiB)
114 * 0x1C0000 - 0x1D0000 : QSPI.u-boot-env (64KiB)
115 * 0x1D0000 - 0x1E0000 : QSPI.u-boot-env.backup1 (64KiB)
116 * 0x1E0000 - 0x9E0000 : QSPI.kernel (8MiB)
117 * 0x9E0000 - 0x2000000 : USERLAND
118 */
119 #define CONFIG_SYS_SPI_KERNEL_OFFS 0x1E0000
120 #define CONFIG_SYS_SPI_ARGS_OFFS 0x140000
121 #define CONFIG_SYS_SPI_ARGS_SIZE 0x80000
122
123 #ifdef CONFIG_SPL_BUILD
124 #undef CONFIG_DM_SPI
125 #undef CONFIG_DM_SPI_FLASH
126 #endif
127
128 /* SPI SPL */
129 #define CONFIG_TI_EDMA3
130 #define CONFIG_SPL_SPI_LOAD
131 #define CONFIG_SYS_SPI_U_BOOT_OFFS 0x40000
132
133 /* SPI */
134 #undef CONFIG_OMAP3_SPI
135 #define CONFIG_TI_SPI_MMAP
136 #define CONFIG_SF_DEFAULT_SPEED 76800000
137 #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
138 #define CONFIG_QSPI_QUAD_SUPPORT
139
140 #endif /* __CONFIG_AM57XX_EVM_H */