]> git.sur5r.net Git - u-boot/blob - include/configs/tbs2910.h
configs: Migrate all of the existing USB symbols, except fastboot
[u-boot] / include / configs / tbs2910.h
1 /*
2  * Copyright (C) 2014 Soeren Moch <smoch@web.de>
3  *
4  * Configuration settings for the TBS2910 MatrixARM board.
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __TBS2910_CONFIG_H
10 #define __TBS2910_CONFIG_H
11
12 #include "mx6_common.h"
13
14 /* General configuration */
15
16 #define CONFIG_MACH_TYPE                3980
17
18 #define CONFIG_SYS_HZ                   1000
19
20 #define CONFIG_IMX_THERMAL
21
22 /* Physical Memory Map */
23 #define CONFIG_NR_DRAM_BANKS            1
24 #define CONFIG_SYS_SDRAM_BASE           MMDC0_ARB_BASE_ADDR
25
26 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
27 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
28 #define CONFIG_SYS_INIT_SP_OFFSET \
29         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
30 #define CONFIG_SYS_INIT_SP_ADDR \
31         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
32
33 #define CONFIG_SYS_MALLOC_LEN           (128 * 1024 * 1024)
34
35 #define CONFIG_SYS_MEMTEST_START        CONFIG_SYS_SDRAM_BASE
36 #define CONFIG_SYS_MEMTEST_END \
37         (CONFIG_SYS_MEMTEST_START + 500 * 1024 * 1024)
38
39 #define CONFIG_SYS_BOOTMAPSZ            0x10000000
40
41 /* Serial console */
42 #define CONFIG_MXC_UART
43 #define CONFIG_MXC_UART_BASE            UART1_BASE /* select UART1/UART2 */
44
45 #define CONFIG_CONS_INDEX               1
46
47 /* Filesystems / image support */
48
49 /* MMC */
50 #define CONFIG_SYS_FSL_USDHC_NUM        3
51 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC4_BASE_ADDR
52 #define CONFIG_SUPPORT_EMMC_BOOT
53
54 /* Ethernet */
55 #define CONFIG_FEC_MXC
56 #define CONFIG_FEC_MXC
57 #define CONFIG_MII
58 #define IMX_FEC_BASE                    ENET_BASE_ADDR
59 #define CONFIG_FEC_XCV_TYPE             RGMII
60 #define CONFIG_ETHPRIME                 "FEC"
61 #define CONFIG_FEC_MXC_PHYADDR          4
62 #define CONFIG_PHY_ATHEROS
63
64 /* Framebuffer */
65 #ifdef CONFIG_VIDEO
66 #define CONFIG_VIDEO_IPUV3
67 #define CONFIG_IPUV3_CLK                260000000
68 #define CONFIG_VIDEO_BMP_RLE8
69 #define CONFIG_IMX_HDMI
70 #define CONFIG_IMX_VIDEO_SKIP
71 #endif
72
73 /* PCI */
74 #ifdef CONFIG_CMD_PCI
75 #define CONFIG_PCI_SCAN_SHOW
76 #define CONFIG_PCIE_IMX
77 #define CONFIG_PCIE_IMX_PERST_GPIO      IMX_GPIO_NR(7, 12)
78 #endif
79
80 /* SATA */
81 #ifdef CONFIG_CMD_SATA
82 #define CONFIG_DWC_AHSATA
83 #define CONFIG_SYS_SATA_MAX_DEVICE      1
84 #define CONFIG_DWC_AHSATA_PORT_ID       0
85 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
86 #define CONFIG_LBA48
87 #define CONFIG_LIBATA
88 #endif
89
90 /* USB */
91 #ifdef CONFIG_CMD_USB
92 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
93 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
94 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
95 #ifdef CONFIG_CMD_USB_MASS_STORAGE
96 #define CONFIG_USBD_HS
97 #define CONFIG_USB_FUNCTION_MASS_STORAGE
98 #endif /* CONFIG_CMD_USB_MASS_STORAGE */
99 #ifdef CONFIG_USB_KEYBOARD
100 #define CONFIG_PREBOOT \
101         "usb start; " \
102         "if hdmidet; then " \
103                 "run set_con_hdmi; " \
104         "else " \
105                 "run set_con_serial; " \
106         "fi;"
107 #endif /* CONFIG_USB_KEYBOARD */
108 #endif /* CONFIG_CMD_USB      */
109
110 /* RTC */
111 #ifdef CONFIG_CMD_DATE
112 #define CONFIG_RTC_DS1307
113 #define CONFIG_SYS_RTC_BUS_NUM          2
114 #endif
115
116 /* I2C */
117 #ifdef CONFIG_CMD_I2C
118 #define CONFIG_SYS_I2C
119 #define CONFIG_SYS_I2C_MXC
120 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
121 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
122 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
123 #define CONFIG_SYS_I2C_SPEED            100000
124 #define CONFIG_I2C_EDID
125 #endif
126
127 /* Environment organization */
128 #define CONFIG_SYS_MMC_ENV_DEV          2 /* overwritten on SD boot */
129 #define CONFIG_SYS_MMC_ENV_PART         1 /* overwritten on SD boot */
130 #define CONFIG_ENV_SIZE                 (8 * 1024)
131 #define CONFIG_ENV_OFFSET               (384 * 1024)
132 #define CONFIG_ENV_OVERWRITE
133
134 #define CONFIG_EXTRA_ENV_SETTINGS \
135         "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
136         "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
137                         "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
138         "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
139         "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
140                         "${bootargs_mmc3}\0" \
141         "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
142                         "rdinit=/sbin/init enable_wait_mode=off\0" \
143         "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
144                         "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
145         "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
146         "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
147                         "run bootargs_upd; " \
148                         "bootm 0x10800000 0x10d00000\0" \
149         "console=ttymxc0\0" \
150         "fan=gpio set 92\0" \
151         "set_con_serial=setenv stdout serial; " \
152                         "setenv stderr serial;\0" \
153         "set_con_hdmi=setenv stdout serial,vga; " \
154                         "setenv stderr serial,vga;\0" \
155         "stderr=serial,vga;\0" \
156         "stdin=serial,usbkbd;\0" \
157         "stdout=serial,vga;\0"
158
159 #define CONFIG_BOOTCOMMAND \
160         "mmc rescan; " \
161         "if run bootcmd_up1; then " \
162                 "run bootcmd_up2; " \
163         "else " \
164                 "run bootcmd_mmc; " \
165         "fi"
166
167 #endif                         /* __TBS2910_CONFIG_H * */