]> git.ipfire.org Git - thirdparty/u-boot.git/blob - include/configs/tbs2910.h
Merge tag 'u-boot-rockchip-20190809' of https://gitlab.denx.de/u-boot/custodians...
[thirdparty/u-boot.git] / include / configs / tbs2910.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Copyright (C) 2014 Soeren Moch <smoch@web.de>
4 *
5 * Configuration settings for the TBS2910 MatrixARM board.
6 */
7
8 #ifndef __TBS2910_CONFIG_H
9 #define __TBS2910_CONFIG_H
10
11 #include "mx6_common.h"
12
13 /* General configuration */
14
15 #define CONFIG_MACH_TYPE 3980
16
17 #define CONFIG_SYS_HZ 1000
18
19 #define CONFIG_IMX_THERMAL
20
21 /* Physical Memory Map */
22 #define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
23
24 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
25 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
26 #define CONFIG_SYS_INIT_SP_OFFSET \
27 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
28 #define CONFIG_SYS_INIT_SP_ADDR \
29 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
30
31 #define CONFIG_SYS_MALLOC_LEN (128 * 1024 * 1024)
32
33 #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
34 #define CONFIG_SYS_MEMTEST_END \
35 (CONFIG_SYS_MEMTEST_START + 500 * 1024 * 1024)
36
37 #define CONFIG_SYS_BOOTMAPSZ 0x10000000
38
39 /* Serial console */
40 #define CONFIG_MXC_UART
41 #define CONFIG_MXC_UART_BASE UART1_BASE /* select UART1/UART2 */
42
43 /* Ethernet */
44 #define CONFIG_FEC_MXC
45 #define CONFIG_FEC_MXC
46 #define IMX_FEC_BASE ENET_BASE_ADDR
47 #define CONFIG_FEC_XCV_TYPE RGMII
48 #define CONFIG_ETHPRIME "FEC"
49 #define CONFIG_FEC_MXC_PHYADDR 4
50 #define CONFIG_PHY_ATHEROS
51
52 /* Framebuffer */
53 #ifdef CONFIG_VIDEO
54 #define CONFIG_VIDEO_BMP_RLE8
55 #define CONFIG_IMX_HDMI
56 #define CONFIG_IMX_VIDEO_SKIP
57 #endif
58
59 /* PCI */
60 #ifdef CONFIG_CMD_PCI
61 #define CONFIG_PCI_SCAN_SHOW
62 #define CONFIG_PCIE_IMX
63 #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
64 #endif
65
66 /* SATA */
67 #ifdef CONFIG_CMD_SATA
68 #define CONFIG_SYS_SATA_MAX_DEVICE 1
69 #define CONFIG_DWC_AHSATA_PORT_ID 0
70 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
71 #define CONFIG_LBA48
72 #define CONFIG_SYS_64BIT_LBA
73 #endif
74
75 /* USB */
76 #ifdef CONFIG_CMD_USB
77 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
78 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
79 #ifdef CONFIG_CMD_USB_MASS_STORAGE
80 #define CONFIG_USBD_HS
81 #endif /* CONFIG_CMD_USB_MASS_STORAGE */
82 #endif /* CONFIG_CMD_USB */
83
84 /* Environment organization */
85 #define CONFIG_SYS_MMC_ENV_DEV 2 /* overwritten on SD boot */
86 #define CONFIG_SYS_MMC_ENV_PART 1 /* overwritten on SD boot */
87 #define CONFIG_ENV_SIZE (8 * 1024)
88 #define CONFIG_ENV_OFFSET (384 * 1024)
89 #define CONFIG_ENV_OVERWRITE
90
91 #define CONFIG_BOARD_SIZE_LIMIT 392192 /* (CONFIG_ENV_OFFSET - 1024) */
92
93 #define CONFIG_EXTRA_ENV_SETTINGS \
94 "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
95 "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
96 "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
97 "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
98 "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
99 "${bootargs_mmc3}\0" \
100 "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
101 "rdinit=/sbin/init enable_wait_mode=off\0" \
102 "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
103 "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
104 "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
105 "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
106 "run bootargs_upd; " \
107 "bootm 0x10800000 0x10d00000\0" \
108 "console=ttymxc0\0" \
109 "fan=gpio set 92\0" \
110 "set_con_serial=setenv stdout serial; " \
111 "setenv stderr serial\0" \
112 "set_con_hdmi=setenv stdout serial,vga; " \
113 "setenv stderr serial,vga\0" \
114 "stderr=serial,vga\0" \
115 "stdin=serial,usbkbd\0" \
116 "stdout=serial,vga\0"
117
118 #define CONFIG_BOOTCOMMAND \
119 "mmc rescan; " \
120 "if run bootcmd_up1; then " \
121 "run bootcmd_up2; " \
122 "else " \
123 "run bootcmd_mmc; " \
124 "fi"
125
126 #endif /* __TBS2910_CONFIG_H * */