]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/beagle_x15.h
Merge branch 'karo-tx-uboot' into kc-merge
[karo-tx-uboot.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
46 /* CPSW Ethernet */
47 #define CONFIG_CMD_NFS
48 #define CONFIG_CMD_NET                  /* 'bootp' and 'tftp' */
49 #define CONFIG_CMD_DHCP
50 #define CONFIG_BOOTP_DNS                /* Configurable parts of CMD_DHCP */
51 #define CONFIG_BOOTP_DNS2
52 #define CONFIG_BOOTP_SEND_HOSTNAME
53 #define CONFIG_BOOTP_GATEWAY
54 #define CONFIG_BOOTP_SUBNETMASK
55 #define CONFIG_NET_RETRY_COUNT          10
56 #define CONFIG_CMD_PING
57 #define CONFIG_CMD_MII
58 #define CONFIG_DRIVER_TI_CPSW           /* Driver for IP block */
59 #define CONFIG_MII                      /* Required in net/eth.c */
60 #define CONFIG_PHY_GIGE                 /* per-board part of CPSW */
61 #define CONFIG_PHYLIB
62
63 #define CONFIG_SUPPORT_EMMC_BOOT
64
65 /* USB xHCI HOST */
66 #define CONFIG_CMD_USB
67 #define CONFIG_USB_HOST
68 #define CONFIG_USB_XHCI
69 #define CONFIG_USB_XHCI_OMAP
70 #define CONFIG_USB_STORAGE
71 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2
72
73 #define CONFIG_OMAP_USB_PHY
74 #define CONFIG_OMAP_USB3PHY1_HOST
75
76 /* SATA */
77 #define CONFIG_BOARD_LATE_INIT
78 #define CONFIG_CMD_SCSI
79 #define CONFIG_LIBATA
80 #define CONFIG_SCSI_AHCI
81 #define CONFIG_SCSI_AHCI_PLAT
82 #define CONFIG_SYS_SCSI_MAX_SCSI_ID     1
83 #define CONFIG_SYS_SCSI_MAX_LUN         1
84 #define CONFIG_SYS_SCSI_MAX_DEVICE      (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
85                                                 CONFIG_SYS_SCSI_MAX_LUN)
86
87 #endif /* __CONFIG_BEAGLE_X5_H */