blob: 7d3e651f44dc1875d1ff6f43c17d73e97f92e63b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Fabio Estevam1d97a592015-04-20 14:48:57 -03002/*
3 * Copyright (C) 2015 Freescale Semiconductor, Inc.
4 *
5 * Configuration settings for the SolidRun mx6 based boards
Fabio Estevam1d97a592015-04-20 14:48:57 -03006 */
7#ifndef __MX6CUBOXI_CONFIG_H
8#define __MX6CUBOXI_CONFIG_H
9
Simon Glassfb64e362020-05-10 11:40:09 -060010#include <linux/stringify.h>
11
Fabio Estevam1d97a592015-04-20 14:48:57 -030012#include "mx6_common.h"
13
Fabio Estevam1d97a592015-04-20 14:48:57 -030014#include "imx6_spl.h"
15
Fabio Estevam1d97a592015-04-20 14:48:57 -030016/* MMC Configs */
Fabio Estevam1d97a592015-04-20 14:48:57 -030017#define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Fabio Estevam1d97a592015-04-20 14:48:57 -030018
Peter Robinson8576fbc2017-07-01 18:44:03 +010019/* SATA Configuration */
Peter Robinson8576fbc2017-07-01 18:44:03 +010020#ifdef CONFIG_CMD_SATA
Peter Robinson8576fbc2017-07-01 18:44:03 +010021#define CONFIG_SYS_SATA_MAX_DEVICE 1
22#define CONFIG_DWC_AHSATA_PORT_ID 0
23#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
24#define CONFIG_LBA48
Peter Robinson8576fbc2017-07-01 18:44:03 +010025#endif
26
Fabio Estevam239fd312015-04-29 22:28:09 -030027/* Framebuffer */
Fabio Estevam239fd312015-04-29 22:28:09 -030028#define CONFIG_VIDEO_BMP_LOGO
29#define CONFIG_IMX_HDMI
30#define CONFIG_IMX_VIDEO_SKIP
31
Fabio Estevam729bbb82015-04-29 22:28:10 -030032/* USB */
Fabio Estevam729bbb82015-04-29 22:28:10 -030033#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Fabio Estevam729bbb82015-04-29 22:28:10 -030034
Fabio Estevam1d97a592015-04-20 14:48:57 -030035/* Command definition */
Fabio Estevam1d97a592015-04-20 14:48:57 -030036
Fabio Estevam1d97a592015-04-20 14:48:57 -030037#define CONFIG_MXC_UART_BASE UART1_BASE
Fabio Estevam1d97a592015-04-20 14:48:57 -030038
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070039#ifndef CONFIG_SPL_BUILD
Fabio Estevam1d97a592015-04-20 14:48:57 -030040#define CONFIG_EXTRA_ENV_SETTINGS \
Jon Nettletone368d842018-06-11 15:26:23 +030041 "som_rev=undefined\0" \
42 "has_emmc=undefined\0" \
Fabio Estevam9887c1a2015-04-25 18:47:21 -030043 "fdtfile=undefined\0" \
Fabio Estevamfa252172015-04-25 18:47:20 -030044 "fdt_addr_r=0x18000000\0" \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070045 "fdt_addr=0x18000000\0" \
Tom Rini9004ee02021-08-23 10:25:30 -040046 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
47 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
48 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070049 "ramdisk_addr_r=0x13000000\0" \
50 "ramdiskaddr=0x13000000\0" \
51 "initrd_high=0xffffffff\0" \
Fabio Estevam1d97a592015-04-20 14:48:57 -030052 "ip_dyn=yes\0" \
Fabio Estevam1a2f1f22021-07-19 17:15:14 -030053 "console=ttymxc0\0" \
Fabio Estevam1d97a592015-04-20 14:48:57 -030054 "bootm_size=0x10000000\0" \
55 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
Fabio Estevam83ca9e92021-07-19 17:15:13 -030056 "finduuid=part uuid mmc 1:1 uuid\0" \
Fabio Estevam1d97a592015-04-20 14:48:57 -030057 "update_sd_firmware=" \
58 "if test ${ip_dyn} = yes; then " \
59 "setenv get_cmd dhcp; " \
60 "else " \
61 "setenv get_cmd tftp; " \
62 "fi; " \
63 "if mmc dev ${mmcdev}; then " \
64 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
65 "setexpr fw_sz ${filesize} / 0x200; " \
66 "setexpr fw_sz ${fw_sz} + 1; " \
67 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
68 "fi; " \
69 "fi\0" \
Fabio Estevam9887c1a2015-04-25 18:47:21 -030070 "findfdt="\
Jon Nettletone368d842018-06-11 15:26:23 +030071 "if test ${board_rev} = MX6Q; then " \
Jon Nettleton30cba092018-06-07 16:17:36 +030072 "setenv fdtprefix imx6q; fi; " \
Jon Nettletone368d842018-06-11 15:26:23 +030073 "if test ${board_rev} = MX6DL; then " \
Jon Nettleton30cba092018-06-07 16:17:36 +030074 "setenv fdtprefix imx6dl; fi; " \
Jon Nettletone368d842018-06-11 15:26:23 +030075 "if test ${som_rev} = V15; then " \
Jon Nettleton30cba092018-06-07 16:17:36 +030076 "setenv fdtsuffix -som-v15; fi; " \
Jon Nettletone368d842018-06-11 15:26:23 +030077 "if test ${has_emmc} = yes; then " \
78 "setenv emmcsuffix -emmc; fi; " \
79 "if test ${board_name} = HUMMINGBOARD2 ; then " \
80 "setenv fdtfile ${fdtprefix}-hummingboard2${emmcsuffix}${fdtsuffix}.dtb; fi; " \
81 "if test ${board_name} = HUMMINGBOARD ; then " \
82 "setenv fdtfile ${fdtprefix}-hummingboard${emmcsuffix}${fdtsuffix}.dtb; fi; " \
83 "if test ${board_name} = CUBOXI ; then " \
84 "setenv fdtfile ${fdtprefix}-cubox-i${emmcsuffix}${fdtsuffix}.dtb; fi; " \
85 "if test ${fdtfile} = undefined; then " \
Fabio Estevam9887c1a2015-04-25 18:47:21 -030086 "echo WARNING: Could not determine dtb to use; fi; \0" \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070087 BOOTENV
Fabio Estevam1d97a592015-04-20 14:48:57 -030088
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070089#define BOOT_TARGET_DEVICES(func) \
Baruch Siach6d3f68c2019-11-10 14:38:07 +020090 func(MMC, mmc, 1) \
91 func(MMC, mmc, 2) \
Peter Robinson8576fbc2017-07-01 18:44:03 +010092 func(SATA, sata, 0) \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070093 func(USB, usb, 0) \
94 func(PXE, pxe, na) \
95 func(DHCP, dhcp, na)
96
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070097#include <config_distro_bootcmd.h>
98
99#else
100#define CONFIG_EXTRA_ENV_SETTINGS
101#endif /* CONFIG_SPL_BUILD */
Fabio Estevam1d97a592015-04-20 14:48:57 -0300102
Fabio Estevam1d97a592015-04-20 14:48:57 -0300103/* Physical Memory Map */
Fabio Estevam1d97a592015-04-20 14:48:57 -0300104#define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
105#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
106#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
107
108#define CONFIG_SYS_INIT_SP_OFFSET \
109 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
110#define CONFIG_SYS_INIT_SP_ADDR \
111 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
112
113/* Environment organization */
Fabio Estevam1d97a592015-04-20 14:48:57 -0300114
Fabio Estevam1d97a592015-04-20 14:48:57 -0300115#endif /* __MX6CUBOXI_CONFIG_H */