blob: 256331ae1733e176b298ad561badc2ed408e19fa [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
Soeren Moch05d492a2014-11-03 13:57:01 +010015/* Physical Memory Map */
Tom Riniaa6e94d2022-11-16 13:10:37 -050016#define CFG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
Soeren Moch05d492a2014-11-03 13:57:01 +010017
Tom Rini65cc0e22022-11-16 13:10:41 -050018#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
19#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Soeren Moch05d492a2014-11-03 13:57:01 +010020
Tom Rini65cc0e22022-11-16 13:10:41 -050021#define CFG_SYS_BOOTMAPSZ 0x10000000
Soeren Moch05d492a2014-11-03 13:57:01 +010022
Soeren Moch05d492a2014-11-03 13:57:01 +010023/* PCI */
Soeren Moch05d492a2014-11-03 13:57:01 +010024#ifdef CONFIG_CMD_PCI
Tom Rini7906f912022-12-04 10:13:25 -050025#define CFG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
Soeren Moch05d492a2014-11-03 13:57:01 +010026#endif
27
Soeren Moch05d492a2014-11-03 13:57:01 +010028/* USB */
Soeren Moch05d492a2014-11-03 13:57:01 +010029#ifdef CONFIG_CMD_USB
Tom Rinidd11fdc2022-12-04 10:04:56 -050030#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Soeren Moch05d492a2014-11-03 13:57:01 +010031#endif /* CONFIG_CMD_USB */
32
Tom Rini0613c362022-12-04 10:03:50 -050033#define CFG_EXTRA_ENV_SETTINGS \
Denis 'GNUtoo' Carikli96588842020-05-30 05:24:24 +020034 BOOTENV \
Soeren Moch05d492a2014-11-03 13:57:01 +010035 "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
36 "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
37 "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
38 "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
39 "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
40 "${bootargs_mmc3}\0" \
41 "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
42 "rdinit=/sbin/init enable_wait_mode=off\0" \
43 "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
Soeren Mochb9a16092015-10-01 22:48:04 +020044 "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
Soeren Moch05d492a2014-11-03 13:57:01 +010045 "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
46 "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
47 "run bootargs_upd; " \
48 "bootm 0x10800000 0x10d00000\0" \
49 "console=ttymxc0\0" \
50 "fan=gpio set 92\0" \
Soeren Moch0f3e2942020-08-27 21:52:46 +020051 "fdt_addr_r=0x18000000\0" \
Denis 'GNUtoo' Carikli96588842020-05-30 05:24:24 +020052 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Soeren Moch0f3e2942020-08-27 21:52:46 +020053 "kernel_addr_r=0x12000000\0" \
54 "pxefile_addr_r=0x10100000\0" \
55 "ramdisk_addr_r=0x18080000\0" \
56 "scriptaddr=0x10000000\0" \
Anatolij Gustschin513acd02020-05-25 13:12:51 +020057 "stderr=serial,vidconsole\0" \
Soeren Moch4b387de2019-03-01 13:10:52 +010058 "stdin=serial,usbkbd\0" \
Anatolij Gustschin513acd02020-05-25 13:12:51 +020059 "stdout=serial,vidconsole\0"
Soeren Moch05d492a2014-11-03 13:57:01 +010060
Denis 'GNUtoo' Carikli96588842020-05-30 05:24:24 +020061/* Enable distro boot */
62#define BOOT_TARGET_DEVICES(func) \
63 func(MMC, mmc, 0) \
64 func(MMC, mmc, 1) \
65 func(MMC, mmc, 2) \
66 func(SATA, sata, 0) \
67 func(USB, usb, 0)
68
69#include <config_distro_bootcmd.h>
70
Soeren Moch05d492a2014-11-03 13:57:01 +010071#endif /* __TBS2910_CONFIG_H * */