blob: 7376b91f550a8a30143ef456515956101f0c0bae [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
Adrian Alonso1368f992015-09-02 13:54:13 -050019#define CONFIG_IMX_THERMAL
Soeren Mochfbd18aa2015-05-29 20:32:41 +020020
Soeren Moch05d492a2014-11-03 13:57:01 +010021/* Physical Memory Map */
Soeren Moch05d492a2014-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 Moch29138c62016-09-21 13:16:21 +020033#define CONFIG_SYS_BOOTMAPSZ 0x10000000
Soeren Moch05d492a2014-11-03 13:57:01 +010034
35/* Serial console */
36#define CONFIG_MXC_UART
37#define CONFIG_MXC_UART_BASE UART1_BASE /* select UART1/UART2 */
Soeren Moch05d492a2014-11-03 13:57:01 +010038
Soeren Moch05d492a2014-11-03 13:57:01 +010039/* Framebuffer */
Soeren Moch05d492a2014-11-03 13:57:01 +010040#ifdef CONFIG_VIDEO
Soeren Moch05d492a2014-11-03 13:57:01 +010041#define CONFIG_VIDEO_BMP_RLE8
42#define CONFIG_IMX_HDMI
43#define CONFIG_IMX_VIDEO_SKIP
Soeren Moch05d492a2014-11-03 13:57:01 +010044#endif
45
46/* PCI */
Soeren Moch05d492a2014-11-03 13:57:01 +010047#ifdef CONFIG_CMD_PCI
Soeren Moch05d492a2014-11-03 13:57:01 +010048#define CONFIG_PCI_SCAN_SHOW
49#define CONFIG_PCIE_IMX
50#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
51#endif
52
53/* SATA */
Soeren Moch05d492a2014-11-03 13:57:01 +010054#ifdef CONFIG_CMD_SATA
Soeren Moch05d492a2014-11-03 13:57:01 +010055#define CONFIG_SYS_SATA_MAX_DEVICE 1
56#define CONFIG_DWC_AHSATA_PORT_ID 0
57#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
58#define CONFIG_LBA48
Soeren Moch186d9532019-03-01 13:11:00 +010059#define CONFIG_SYS_64BIT_LBA
Soeren Moch05d492a2014-11-03 13:57:01 +010060#endif
61
62/* USB */
Soeren Moch05d492a2014-11-03 13:57:01 +010063#ifdef CONFIG_CMD_USB
Soeren Mochd8962762015-05-05 23:09:18 +020064#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
Soeren Moch05d492a2014-11-03 13:57:01 +010065#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Soeren Moch6628aa52015-02-26 19:50:02 +010066#ifdef CONFIG_CMD_USB_MASS_STORAGE
Soeren Moch6628aa52015-02-26 19:50:02 +010067#define CONFIG_USBD_HS
Soeren Moch6628aa52015-02-26 19:50:02 +010068#endif /* CONFIG_CMD_USB_MASS_STORAGE */
Soeren Moch05d492a2014-11-03 13:57:01 +010069#endif /* CONFIG_CMD_USB */
70
Peter Robinson056845c2015-05-22 17:30:45 +010071/* Environment organization */
Soeren Mocha6684362016-02-04 14:41:16 +010072#define CONFIG_SYS_MMC_ENV_DEV 2 /* overwritten on SD boot */
73#define CONFIG_SYS_MMC_ENV_PART 1 /* overwritten on SD boot */
Soeren Moch05d492a2014-11-03 13:57:01 +010074#define CONFIG_ENV_OVERWRITE
75
Soeren Mochb82c7c32019-01-05 09:31:17 +010076#define CONFIG_BOARD_SIZE_LIMIT 392192 /* (CONFIG_ENV_OFFSET - 1024) */
77
Soeren Moch05d492a2014-11-03 13:57:01 +010078#define CONFIG_EXTRA_ENV_SETTINGS \
79 "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
80 "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
81 "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
82 "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
83 "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
84 "${bootargs_mmc3}\0" \
85 "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
86 "rdinit=/sbin/init enable_wait_mode=off\0" \
87 "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
Soeren Mochb9a16092015-10-01 22:48:04 +020088 "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
Soeren Moch05d492a2014-11-03 13:57:01 +010089 "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
90 "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
91 "run bootargs_upd; " \
92 "bootm 0x10800000 0x10d00000\0" \
93 "console=ttymxc0\0" \
94 "fan=gpio set 92\0" \
Soeren Moch8741a372016-07-27 16:07:16 +020095 "set_con_serial=setenv stdout serial; " \
Soeren Moch4b387de2019-03-01 13:10:52 +010096 "setenv stderr serial\0" \
Soeren Moch8741a372016-07-27 16:07:16 +020097 "set_con_hdmi=setenv stdout serial,vga; " \
Soeren Moch4b387de2019-03-01 13:10:52 +010098 "setenv stderr serial,vga\0" \
99 "stderr=serial,vga\0" \
100 "stdin=serial,usbkbd\0" \
101 "stdout=serial,vga\0"
Soeren Moch05d492a2014-11-03 13:57:01 +0100102
103#define CONFIG_BOOTCOMMAND \
104 "mmc rescan; " \
105 "if run bootcmd_up1; then " \
106 "run bootcmd_up2; " \
107 "else " \
108 "run bootcmd_mmc; " \
109 "fi"
110
111#endif /* __TBS2910_CONFIG_H * */