blob: 357811f5fd4faae27dc072fa4014af3fbe586f1a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Soeren Moch358ebc32014-11-03 13:57:01 +01002/*
3 * Copyright (C) 2014 Soeren Moch <smoch@web.de>
4 *
5 * Configuration settings for the TBS2910 MatrixARM board.
Soeren Moch358ebc32014-11-03 13:57:01 +01006 */
7
8#ifndef __TBS2910_CONFIG_H
9#define __TBS2910_CONFIG_H
10
11#include "mx6_common.h"
Soeren Moch358ebc32014-11-03 13:57:01 +010012
13/* General configuration */
Soeren Moch358ebc32014-11-03 13:57:01 +010014
Soeren Moch358ebc32014-11-03 13:57:01 +010015/* Physical Memory Map */
Soeren Moch358ebc32014-11-03 13:57:01 +010016#define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
17
18#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
19#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
Soeren Moch358ebc32014-11-03 13:57:01 +010020
Soeren Moch95b5a332016-09-21 13:16:21 +020021#define CONFIG_SYS_BOOTMAPSZ 0x10000000
Soeren Moch358ebc32014-11-03 13:57:01 +010022
Soeren Moch358ebc32014-11-03 13:57:01 +010023/* Framebuffer */
Soeren Moch358ebc32014-11-03 13:57:01 +010024#define CONFIG_IMX_HDMI
25#define CONFIG_IMX_VIDEO_SKIP
Soeren Moch358ebc32014-11-03 13:57:01 +010026
27/* PCI */
Soeren Moch358ebc32014-11-03 13:57:01 +010028#ifdef CONFIG_CMD_PCI
Soeren Moch358ebc32014-11-03 13:57:01 +010029#define CONFIG_PCI_SCAN_SHOW
Soeren Moch358ebc32014-11-03 13:57:01 +010030#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
31#endif
32
Soeren Moch358ebc32014-11-03 13:57:01 +010033/* USB */
Soeren Moch358ebc32014-11-03 13:57:01 +010034#ifdef CONFIG_CMD_USB
Soeren Moch358ebc32014-11-03 13:57:01 +010035#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Soeren Moch67a45932015-02-26 19:50:02 +010036#ifdef CONFIG_CMD_USB_MASS_STORAGE
Soeren Moch67a45932015-02-26 19:50:02 +010037#define CONFIG_USBD_HS
Soeren Moch67a45932015-02-26 19:50:02 +010038#endif /* CONFIG_CMD_USB_MASS_STORAGE */
Soeren Moch358ebc32014-11-03 13:57:01 +010039#endif /* CONFIG_CMD_USB */
40
Soeren Moch358ebc32014-11-03 13:57:01 +010041#define CONFIG_EXTRA_ENV_SETTINGS \
Denis 'GNUtoo' Carikli8559dc42020-05-30 05:24:24 +020042 BOOTENV \
Soeren Moch358ebc32014-11-03 13:57:01 +010043 "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
44 "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
45 "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
46 "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
47 "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
48 "${bootargs_mmc3}\0" \
49 "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
50 "rdinit=/sbin/init enable_wait_mode=off\0" \
51 "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
Soeren Moch0b726332015-10-01 22:48:04 +020052 "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
Soeren Moch358ebc32014-11-03 13:57:01 +010053 "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
54 "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
55 "run bootargs_upd; " \
56 "bootm 0x10800000 0x10d00000\0" \
57 "console=ttymxc0\0" \
58 "fan=gpio set 92\0" \
Soeren Moch25b201d2020-08-27 21:52:46 +020059 "fdt_addr_r=0x18000000\0" \
Denis 'GNUtoo' Carikli8559dc42020-05-30 05:24:24 +020060 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Soeren Moch25b201d2020-08-27 21:52:46 +020061 "kernel_addr_r=0x12000000\0" \
62 "pxefile_addr_r=0x10100000\0" \
63 "ramdisk_addr_r=0x18080000\0" \
64 "scriptaddr=0x10000000\0" \
Soeren Moch9a3a5312016-07-27 16:07:16 +020065 "set_con_serial=setenv stdout serial; " \
Soeren Mochaa63f7d2019-03-01 13:10:52 +010066 "setenv stderr serial\0" \
Anatolij Gustschin9239f9e2020-05-25 13:12:51 +020067 "set_con_hdmi=setenv stdout serial,vidconsole; " \
68 "setenv stderr serial,vidconsole\0" \
69 "stderr=serial,vidconsole\0" \
Soeren Mochaa63f7d2019-03-01 13:10:52 +010070 "stdin=serial,usbkbd\0" \
Anatolij Gustschin9239f9e2020-05-25 13:12:51 +020071 "stdout=serial,vidconsole\0"
Soeren Moch358ebc32014-11-03 13:57:01 +010072
Denis 'GNUtoo' Carikli8559dc42020-05-30 05:24:24 +020073/* Enable distro boot */
74#define BOOT_TARGET_DEVICES(func) \
75 func(MMC, mmc, 0) \
76 func(MMC, mmc, 1) \
77 func(MMC, mmc, 2) \
78 func(SATA, sata, 0) \
79 func(USB, usb, 0)
80
81#include <config_distro_bootcmd.h>
82
Soeren Moch358ebc32014-11-03 13:57:01 +010083#endif /* __TBS2910_CONFIG_H * */