acc6e6cffc541992f44c3fc044595876441cce4d
[platform/kernel/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 /* Physical Memory Map */
20 #define CONFIG_SYS_SDRAM_BASE           MMDC0_ARB_BASE_ADDR
21
22 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
23 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
24 #define CONFIG_SYS_INIT_SP_OFFSET \
25         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
26 #define CONFIG_SYS_INIT_SP_ADDR \
27         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
28
29 #define CONFIG_SYS_BOOTMAPSZ            0x10000000
30
31 /* Serial console */
32 #define CONFIG_MXC_UART_BASE            UART1_BASE /* select UART1/UART2 */
33
34 /* Framebuffer */
35 #define CONFIG_IMX_HDMI
36 #define CONFIG_IMX_VIDEO_SKIP
37
38 /* PCI */
39 #ifdef CONFIG_CMD_PCI
40 #define CONFIG_PCI_SCAN_SHOW
41 #define CONFIG_PCIE_IMX
42 #define CONFIG_PCIE_IMX_PERST_GPIO      IMX_GPIO_NR(7, 12)
43 #endif
44
45 /* SATA */
46 #ifdef CONFIG_CMD_SATA
47 #define CONFIG_SYS_SATA_MAX_DEVICE      1
48 #define CONFIG_DWC_AHSATA_PORT_ID       0
49 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
50 #define CONFIG_LBA48
51 #define CONFIG_SYS_64BIT_LBA
52 #endif
53
54 /* USB */
55 #ifdef CONFIG_CMD_USB
56 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
57 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
58 #ifdef CONFIG_CMD_USB_MASS_STORAGE
59 #define CONFIG_USBD_HS
60 #endif /* CONFIG_CMD_USB_MASS_STORAGE */
61 #endif /* CONFIG_CMD_USB      */
62
63 #define CONFIG_BOARD_SIZE_LIMIT         392192 /* (CONFIG_ENV_OFFSET - 1024) */
64
65 #define CONFIG_EXTRA_ENV_SETTINGS \
66         BOOTENV \
67         "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
68         "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
69                         "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
70         "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
71         "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
72                         "${bootargs_mmc3}\0" \
73         "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
74                         "rdinit=/sbin/init enable_wait_mode=off\0" \
75         "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
76                         "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
77         "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
78         "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
79                         "run bootargs_upd; " \
80                         "bootm 0x10800000 0x10d00000\0" \
81         "console=ttymxc0\0" \
82         "fan=gpio set 92\0" \
83         "fdt_addr_r=0x18000000\0" \
84         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
85         "kernel_addr_r=0x12000000\0" \
86         "pxefile_addr_r=0x10100000\0" \
87         "ramdisk_addr_r=0x18080000\0" \
88         "scriptaddr=0x10000000\0" \
89         "set_con_serial=setenv stdout serial; " \
90                         "setenv stderr serial\0" \
91         "set_con_hdmi=setenv stdout serial,vidconsole; " \
92                         "setenv stderr serial,vidconsole\0" \
93         "stderr=serial,vidconsole\0" \
94         "stdin=serial,usbkbd\0" \
95         "stdout=serial,vidconsole\0"
96
97 /* Enable distro boot */
98 #define BOOT_TARGET_DEVICES(func) \
99         func(MMC, mmc, 0) \
100         func(MMC, mmc, 1) \
101         func(MMC, mmc, 2) \
102         func(SATA, sata, 0) \
103         func(USB, usb, 0)
104
105 #include <config_distro_bootcmd.h>
106
107 #endif                         /* __TBS2910_CONFIG_H * */