blob: f4c6bdd146277ec37aa8ea19788906d96a595e34 [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
15#define CONFIG_MACH_TYPE 3980
16
Soeren Moch358ebc32014-11-03 13:57:01 +010017#define CONFIG_SYS_HZ 1000
18
Adrian Alonsoce08c362015-09-02 13:54:13 -050019#define CONFIG_IMX_THERMAL
Soeren Moch3cf52ab2015-05-29 20:32:41 +020020
Soeren Moch358ebc32014-11-03 13:57:01 +010021/* Physical Memory Map */
Soeren Moch358ebc32014-11-03 13:57:01 +010022#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
Soeren Moch95b5a332016-09-21 13:16:21 +020033#define CONFIG_SYS_BOOTMAPSZ 0x10000000
Soeren Moch358ebc32014-11-03 13:57:01 +010034
35/* Serial console */
Soeren Moch358ebc32014-11-03 13:57:01 +010036#define CONFIG_MXC_UART_BASE UART1_BASE /* select UART1/UART2 */
Soeren Moch358ebc32014-11-03 13:57:01 +010037
Soeren Moch358ebc32014-11-03 13:57:01 +010038/* Framebuffer */
Soeren Moch358ebc32014-11-03 13:57:01 +010039#define CONFIG_VIDEO_BMP_RLE8
40#define CONFIG_IMX_HDMI
41#define CONFIG_IMX_VIDEO_SKIP
Soeren Moch358ebc32014-11-03 13:57:01 +010042
43/* PCI */
Soeren Moch358ebc32014-11-03 13:57:01 +010044#ifdef CONFIG_CMD_PCI
Soeren Moch358ebc32014-11-03 13:57:01 +010045#define CONFIG_PCI_SCAN_SHOW
46#define CONFIG_PCIE_IMX
47#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
48#endif
49
50/* SATA */
Soeren Moch358ebc32014-11-03 13:57:01 +010051#ifdef CONFIG_CMD_SATA
Soeren Moch358ebc32014-11-03 13:57:01 +010052#define CONFIG_SYS_SATA_MAX_DEVICE 1
53#define CONFIG_DWC_AHSATA_PORT_ID 0
54#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
55#define CONFIG_LBA48
Soeren Moch885ca062019-03-01 13:11:00 +010056#define CONFIG_SYS_64BIT_LBA
Soeren Moch358ebc32014-11-03 13:57:01 +010057#endif
58
59/* USB */
Soeren Moch358ebc32014-11-03 13:57:01 +010060#ifdef CONFIG_CMD_USB
Soeren Moch78984d92015-05-05 23:09:18 +020061#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
Soeren Moch358ebc32014-11-03 13:57:01 +010062#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Soeren Moch67a45932015-02-26 19:50:02 +010063#ifdef CONFIG_CMD_USB_MASS_STORAGE
Soeren Moch67a45932015-02-26 19:50:02 +010064#define CONFIG_USBD_HS
Soeren Moch67a45932015-02-26 19:50:02 +010065#endif /* CONFIG_CMD_USB_MASS_STORAGE */
Soeren Moch358ebc32014-11-03 13:57:01 +010066#endif /* CONFIG_CMD_USB */
67
Peter Robinson4b671502015-05-22 17:30:45 +010068/* Environment organization */
Soeren Moch4188b602016-02-04 14:41:16 +010069#define CONFIG_SYS_MMC_ENV_DEV 2 /* overwritten on SD boot */
70#define CONFIG_SYS_MMC_ENV_PART 1 /* overwritten on SD boot */
Soeren Moch358ebc32014-11-03 13:57:01 +010071
Soeren Moch98a75ae2019-01-05 09:31:17 +010072#define CONFIG_BOARD_SIZE_LIMIT 392192 /* (CONFIG_ENV_OFFSET - 1024) */
73
Soeren Moch358ebc32014-11-03 13:57:01 +010074#define CONFIG_EXTRA_ENV_SETTINGS \
Denis 'GNUtoo' Carikli8559dc42020-05-30 05:24:24 +020075 BOOTENV \
Soeren Moch358ebc32014-11-03 13:57:01 +010076 "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
77 "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
78 "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
79 "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
80 "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
81 "${bootargs_mmc3}\0" \
82 "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
83 "rdinit=/sbin/init enable_wait_mode=off\0" \
84 "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
Soeren Moch0b726332015-10-01 22:48:04 +020085 "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
Soeren Moch358ebc32014-11-03 13:57:01 +010086 "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
87 "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
88 "run bootargs_upd; " \
89 "bootm 0x10800000 0x10d00000\0" \
90 "console=ttymxc0\0" \
91 "fan=gpio set 92\0" \
Denis 'GNUtoo' Carikli8559dc42020-05-30 05:24:24 +020092 "fdt_addr=0x13000000\0" \
93 "fdt_addr_r=0x13000000\0" \
94 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
95 "kernel_addr_r=0x10008000\0" \
96 "pxefile_addr_r=0x10008000\0" \
97 "ramdisk_addr_r=0x18000000\0" \
98 "scriptaddr=0x14000000\0" \
Soeren Moch9a3a5312016-07-27 16:07:16 +020099 "set_con_serial=setenv stdout serial; " \
Soeren Mochaa63f7d2019-03-01 13:10:52 +0100100 "setenv stderr serial\0" \
Anatolij Gustschin9239f9e2020-05-25 13:12:51 +0200101 "set_con_hdmi=setenv stdout serial,vidconsole; " \
102 "setenv stderr serial,vidconsole\0" \
103 "stderr=serial,vidconsole\0" \
Soeren Mochaa63f7d2019-03-01 13:10:52 +0100104 "stdin=serial,usbkbd\0" \
Anatolij Gustschin9239f9e2020-05-25 13:12:51 +0200105 "stdout=serial,vidconsole\0"
Soeren Moch358ebc32014-11-03 13:57:01 +0100106
Denis 'GNUtoo' Carikli8559dc42020-05-30 05:24:24 +0200107/* Enable distro boot */
108#define BOOT_TARGET_DEVICES(func) \
109 func(MMC, mmc, 0) \
110 func(MMC, mmc, 1) \
111 func(MMC, mmc, 2) \
112 func(SATA, sata, 0) \
113 func(USB, usb, 0)
114
115#include <config_distro_bootcmd.h>
116
Soeren Moch358ebc32014-11-03 13:57:01 +0100117#endif /* __TBS2910_CONFIG_H * */