blob: 1c25857296c81eb8ae28e71d3952a602d16c52c7 [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_DWC_AHSATA_PORT_ID 0
22#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
23#define CONFIG_LBA48
Peter Robinson8576fbc2017-07-01 18:44:03 +010024#endif
25
Fabio Estevam239fd312015-04-29 22:28:09 -030026/* Framebuffer */
Fabio Estevam239fd312015-04-29 22:28:09 -030027#define CONFIG_VIDEO_BMP_LOGO
28#define CONFIG_IMX_HDMI
29#define CONFIG_IMX_VIDEO_SKIP
30
Fabio Estevam729bbb82015-04-29 22:28:10 -030031/* USB */
Fabio Estevam729bbb82015-04-29 22:28:10 -030032#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Fabio Estevam729bbb82015-04-29 22:28:10 -030033
Fabio Estevam1d97a592015-04-20 14:48:57 -030034/* Command definition */
Fabio Estevam1d97a592015-04-20 14:48:57 -030035
Fabio Estevam1d97a592015-04-20 14:48:57 -030036#define CONFIG_MXC_UART_BASE UART1_BASE
Fabio Estevam1d97a592015-04-20 14:48:57 -030037
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070038#ifndef CONFIG_SPL_BUILD
Fabio Estevam1d97a592015-04-20 14:48:57 -030039#define CONFIG_EXTRA_ENV_SETTINGS \
Jon Nettletone368d842018-06-11 15:26:23 +030040 "som_rev=undefined\0" \
41 "has_emmc=undefined\0" \
Fabio Estevam9887c1a2015-04-25 18:47:21 -030042 "fdtfile=undefined\0" \
Fabio Estevamfa252172015-04-25 18:47:20 -030043 "fdt_addr_r=0x18000000\0" \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070044 "fdt_addr=0x18000000\0" \
Tom Rini9004ee02021-08-23 10:25:30 -040045 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
46 "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
47 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070048 "ramdisk_addr_r=0x13000000\0" \
49 "ramdiskaddr=0x13000000\0" \
50 "initrd_high=0xffffffff\0" \
Fabio Estevam1d97a592015-04-20 14:48:57 -030051 "ip_dyn=yes\0" \
Fabio Estevam1a2f1f22021-07-19 17:15:14 -030052 "console=ttymxc0\0" \
Fabio Estevam1d97a592015-04-20 14:48:57 -030053 "bootm_size=0x10000000\0" \
54 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
Fabio Estevam83ca9e92021-07-19 17:15:13 -030055 "finduuid=part uuid mmc 1:1 uuid\0" \
Fabio Estevam1d97a592015-04-20 14:48:57 -030056 "update_sd_firmware=" \
57 "if test ${ip_dyn} = yes; then " \
58 "setenv get_cmd dhcp; " \
59 "else " \
60 "setenv get_cmd tftp; " \
61 "fi; " \
62 "if mmc dev ${mmcdev}; then " \
63 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
64 "setexpr fw_sz ${filesize} / 0x200; " \
65 "setexpr fw_sz ${fw_sz} + 1; " \
66 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
67 "fi; " \
68 "fi\0" \
Fabio Estevam9887c1a2015-04-25 18:47:21 -030069 "findfdt="\
Jon Nettletone368d842018-06-11 15:26:23 +030070 "if test ${board_rev} = MX6Q; then " \
Jon Nettleton30cba092018-06-07 16:17:36 +030071 "setenv fdtprefix imx6q; fi; " \
Jon Nettletone368d842018-06-11 15:26:23 +030072 "if test ${board_rev} = MX6DL; then " \
Jon Nettleton30cba092018-06-07 16:17:36 +030073 "setenv fdtprefix imx6dl; fi; " \
Jon Nettletone368d842018-06-11 15:26:23 +030074 "if test ${som_rev} = V15; then " \
Jon Nettleton30cba092018-06-07 16:17:36 +030075 "setenv fdtsuffix -som-v15; fi; " \
Jon Nettletone368d842018-06-11 15:26:23 +030076 "if test ${has_emmc} = yes; then " \
77 "setenv emmcsuffix -emmc; fi; " \
78 "if test ${board_name} = HUMMINGBOARD2 ; then " \
79 "setenv fdtfile ${fdtprefix}-hummingboard2${emmcsuffix}${fdtsuffix}.dtb; fi; " \
80 "if test ${board_name} = HUMMINGBOARD ; then " \
81 "setenv fdtfile ${fdtprefix}-hummingboard${emmcsuffix}${fdtsuffix}.dtb; fi; " \
82 "if test ${board_name} = CUBOXI ; then " \
83 "setenv fdtfile ${fdtprefix}-cubox-i${emmcsuffix}${fdtsuffix}.dtb; fi; " \
84 "if test ${fdtfile} = undefined; then " \
Fabio Estevam9887c1a2015-04-25 18:47:21 -030085 "echo WARNING: Could not determine dtb to use; fi; \0" \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070086 BOOTENV
Fabio Estevam1d97a592015-04-20 14:48:57 -030087
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070088#define BOOT_TARGET_DEVICES(func) \
Baruch Siach6d3f68c2019-11-10 14:38:07 +020089 func(MMC, mmc, 1) \
90 func(MMC, mmc, 2) \
Peter Robinson8576fbc2017-07-01 18:44:03 +010091 func(SATA, sata, 0) \
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070092 func(USB, usb, 0) \
93 func(PXE, pxe, na) \
94 func(DHCP, dhcp, na)
95
Vagrant Cascadian9ea3d812015-10-27 13:18:22 -070096#include <config_distro_bootcmd.h>
97
98#else
99#define CONFIG_EXTRA_ENV_SETTINGS
100#endif /* CONFIG_SPL_BUILD */
Fabio Estevam1d97a592015-04-20 14:48:57 -0300101
Fabio Estevam1d97a592015-04-20 14:48:57 -0300102/* Physical Memory Map */
Fabio Estevam1d97a592015-04-20 14:48:57 -0300103#define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
104#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
105#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
106
107#define CONFIG_SYS_INIT_SP_OFFSET \
108 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
109#define CONFIG_SYS_INIT_SP_ADDR \
110 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
111
112/* Environment organization */
Fabio Estevam1d97a592015-04-20 14:48:57 -0300113
Fabio Estevam1d97a592015-04-20 14:48:57 -0300114#endif /* __MX6CUBOXI_CONFIG_H */