]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/beagle_x15.h
Merge branch 'rmobile' of git://git.denx.de/u-boot-sh
[people/ms/u-boot.git] / include / configs / beagle_x15.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_BEAGLE_X15_H
13 #define __CONFIG_BEAGLE_X15_H
14
15 #define CONFIG_AM57XX
16
17 #define CONFIG_NR_DRAM_BANKS 2
18
19 #define CONFIG_ENV_SIZE (64 << 10)
20 #define CONFIG_ENV_IS_IN_FAT
21 #define FAT_ENV_INTERFACE "mmc"
22 #define FAT_ENV_DEVICE_AND_PART "0:1"
23 #define FAT_ENV_FILE "uboot.env"
24
25 #define CONFIG_CMD_SAVEENV
26
27 #define CONSOLEDEV "ttyO2"
28 #define CONFIG_SYS_NS16550_COM1 UART1_BASE /* Base EVM has UART0 */
29 #define CONFIG_SYS_NS16550_COM2 UART2_BASE /* UART2 */
30 #define CONFIG_SYS_NS16550_COM3 UART3_BASE /* UART3 */
31 #define CONFIG_BAUDRATE 115200
32
33 #define CONFIG_SYS_OMAP_ABE_SYSCK
34
35 /* Define the default GPT table for eMMC */
36 #define PARTS_DEFAULT \
37 "uuid_disk=${uuid_gpt_disk};" \
38 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}"
39
40 #include <configs/ti_omap5_common.h>
41
42 /* Enhance our eMMC support / experience. */
43 #define CONFIG_CMD_GPT
44 #define CONFIG_EFI_PARTITION
45 #define CONFIG_PARTITION_UUIDS
46 #define CONFIG_CMD_PART
47
48 /* CPSW Ethernet */
49 #define CONFIG_CMD_NET /* 'bootp' and 'tftp' */
50 #define CONFIG_CMD_DHCP
51 #define CONFIG_BOOTP_DNS /* Configurable parts of CMD_DHCP */
52 #define CONFIG_BOOTP_DNS2
53 #define CONFIG_BOOTP_SEND_HOSTNAME
54 #define CONFIG_BOOTP_GATEWAY
55 #define CONFIG_BOOTP_SUBNETMASK
56 #define CONFIG_NET_RETRY_COUNT 10
57 #define CONFIG_CMD_PING
58 #define CONFIG_CMD_MII
59 #define CONFIG_DRIVER_TI_CPSW /* Driver for IP block */
60 #define CONFIG_MII /* Required in net/eth.c */
61 #define CONFIG_PHY_GIGE /* per-board part of CPSW */
62 #define CONFIG_PHYLIB
63
64 #define CONFIG_SUPPORT_EMMC_BOOT
65
66 /* USB xHCI HOST */
67 #define CONFIG_CMD_USB
68 #define CONFIG_USB_HOST
69 #define CONFIG_USB_XHCI
70 #define CONFIG_USB_XHCI_OMAP
71 #define CONFIG_USB_STORAGE
72 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2
73
74 #define CONFIG_OMAP_USB_PHY
75 #define CONFIG_OMAP_USB3PHY1_HOST
76
77 /* SATA */
78 #define CONFIG_BOARD_LATE_INIT
79 #define CONFIG_CMD_SCSI
80 #define CONFIG_LIBATA
81 #define CONFIG_SCSI_AHCI
82 #define CONFIG_SCSI_AHCI_PLAT
83 #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
84 #define CONFIG_SYS_SCSI_MAX_LUN 1
85 #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
86 CONFIG_SYS_SCSI_MAX_LUN)
87
88 #endif /* __CONFIG_BEAGLE_X5_H */