blob: a2e59ce6185feb4109f954e8edb98f7645e45c71 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Soeren Moch05d492a2014-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 Moch05d492a2014-11-03 13:57:01 +01006 */
7
8#ifndef __TBS2910_CONFIG_H
9#define __TBS2910_CONFIG_H
10
11#include "mx6_common.h"
Soeren Moch05d492a2014-11-03 13:57:01 +010012
13/* General configuration */
Soeren Moch05d492a2014-11-03 13:57:01 +010014
15#define CONFIG_MACH_TYPE 3980
16
Soeren Moch05d492a2014-11-03 13:57:01 +010017#define CONFIG_SYS_HZ 1000
18
19/* Physical Memory Map */
Soeren Moch05d492a2014-11-03 13:57:01 +010020#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_MALLOC_LEN (128 * 1024 * 1024)
30
Soeren Moch29138c62016-09-21 13:16:21 +020031#define CONFIG_SYS_BOOTMAPSZ 0x10000000
Soeren Moch05d492a2014-11-03 13:57:01 +010032
33/* Serial console */
Soeren Moch05d492a2014-11-03 13:57:01 +010034#define CONFIG_MXC_UART_BASE UART1_BASE /* select UART1/UART2 */
Soeren Moch05d492a2014-11-03 13:57:01 +010035
Soeren Moch05d492a2014-11-03 13:57:01 +010036/* Framebuffer */
Soeren Moch05d492a2014-11-03 13:57:01 +010037#define CONFIG_IMX_HDMI
38#define CONFIG_IMX_VIDEO_SKIP
Soeren Moch05d492a2014-11-03 13:57:01 +010039
40/* PCI */
Soeren Moch05d492a2014-11-03 13:57:01 +010041#ifdef CONFIG_CMD_PCI
Soeren Moch05d492a2014-11-03 13:57:01 +010042#define CONFIG_PCI_SCAN_SHOW
43#define CONFIG_PCIE_IMX
44#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
45#endif
46
47/* SATA */
Soeren Moch05d492a2014-11-03 13:57:01 +010048#ifdef CONFIG_CMD_SATA
Soeren Moch05d492a2014-11-03 13:57:01 +010049#define CONFIG_SYS_SATA_MAX_DEVICE 1
50#define CONFIG_DWC_AHSATA_PORT_ID 0
51#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
52#define CONFIG_LBA48
Soeren Moch186d9532019-03-01 13:11:00 +010053#define CONFIG_SYS_64BIT_LBA
Soeren Moch05d492a2014-11-03 13:57:01 +010054#endif
55
56/* USB */
Soeren Moch05d492a2014-11-03 13:57:01 +010057#ifdef CONFIG_CMD_USB
Soeren Mochd8962762015-05-05 23:09:18 +020058#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
Soeren Moch05d492a2014-11-03 13:57:01 +010059#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Soeren Moch6628aa52015-02-26 19:50:02 +010060#ifdef CONFIG_CMD_USB_MASS_STORAGE
Soeren Moch6628aa52015-02-26 19:50:02 +010061#define CONFIG_USBD_HS
Soeren Moch6628aa52015-02-26 19:50:02 +010062#endif /* CONFIG_CMD_USB_MASS_STORAGE */
Soeren Moch05d492a2014-11-03 13:57:01 +010063#endif /* CONFIG_CMD_USB */
64
Soeren Mochb82c7c32019-01-05 09:31:17 +010065#define CONFIG_BOARD_SIZE_LIMIT 392192 /* (CONFIG_ENV_OFFSET - 1024) */
66
Soeren Moch05d492a2014-11-03 13:57:01 +010067#define CONFIG_EXTRA_ENV_SETTINGS \
Denis 'GNUtoo' Carikli96588842020-05-30 05:24:24 +020068 BOOTENV \
Soeren Moch05d492a2014-11-03 13:57:01 +010069 "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
70 "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
71 "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
72 "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
73 "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
74 "${bootargs_mmc3}\0" \
75 "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
76 "rdinit=/sbin/init enable_wait_mode=off\0" \
77 "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
Soeren Mochb9a16092015-10-01 22:48:04 +020078 "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
Soeren Moch05d492a2014-11-03 13:57:01 +010079 "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
80 "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
81 "run bootargs_upd; " \
82 "bootm 0x10800000 0x10d00000\0" \
83 "console=ttymxc0\0" \
84 "fan=gpio set 92\0" \
Soeren Moch0f3e2942020-08-27 21:52:46 +020085 "fdt_addr_r=0x18000000\0" \
Denis 'GNUtoo' Carikli96588842020-05-30 05:24:24 +020086 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Soeren Moch0f3e2942020-08-27 21:52:46 +020087 "kernel_addr_r=0x12000000\0" \
88 "pxefile_addr_r=0x10100000\0" \
89 "ramdisk_addr_r=0x18080000\0" \
90 "scriptaddr=0x10000000\0" \
Soeren Moch8741a372016-07-27 16:07:16 +020091 "set_con_serial=setenv stdout serial; " \
Soeren Moch4b387de2019-03-01 13:10:52 +010092 "setenv stderr serial\0" \
Anatolij Gustschin513acd02020-05-25 13:12:51 +020093 "set_con_hdmi=setenv stdout serial,vidconsole; " \
94 "setenv stderr serial,vidconsole\0" \
95 "stderr=serial,vidconsole\0" \
Soeren Moch4b387de2019-03-01 13:10:52 +010096 "stdin=serial,usbkbd\0" \
Anatolij Gustschin513acd02020-05-25 13:12:51 +020097 "stdout=serial,vidconsole\0"
Soeren Moch05d492a2014-11-03 13:57:01 +010098
Denis 'GNUtoo' Carikli96588842020-05-30 05:24:24 +020099/* Enable distro boot */
100#define BOOT_TARGET_DEVICES(func) \
101 func(MMC, mmc, 0) \
102 func(MMC, mmc, 1) \
103 func(MMC, mmc, 2) \
104 func(SATA, sata, 0) \
105 func(USB, usb, 0)
106
107#include <config_distro_bootcmd.h>
108
Soeren Moch05d492a2014-11-03 13:57:01 +0100109#endif /* __TBS2910_CONFIG_H * */