2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2016-11-30 18:43:09 +00:00
|
|
|
/*
|
2019-02-08 17:42:06 +00:00
|
|
|
* Copyright 2013-2019 Toradex, Inc.
|
2016-11-30 18:43:09 +00:00
|
|
|
*
|
|
|
|
* Configuration settings for the Toradex Colibri iMX6
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2020-05-10 17:40:09 +00:00
|
|
|
#include <linux/stringify.h>
|
|
|
|
|
2016-11-30 18:43:09 +00:00
|
|
|
#include "mx6_common.h"
|
|
|
|
|
|
|
|
#include <asm/arch/imx-regs.h>
|
2017-06-29 08:16:06 +00:00
|
|
|
#include <asm/mach-imx/gpio.h>
|
2016-11-30 18:43:09 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SPL
|
|
|
|
#include "imx6_spl.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CONFIG_MXC_UART_BASE UART1_BASE
|
|
|
|
|
|
|
|
/* MMC Configs */
|
|
|
|
#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
|
|
#define CONFIG_SYS_FSL_USDHC_NUM 2
|
|
|
|
|
|
|
|
/* USB Configs */
|
|
|
|
/* Host */
|
|
|
|
#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
|
|
#define CONFIG_MXC_USB_FLAGS 0
|
|
|
|
/* Client */
|
|
|
|
#define CONFIG_USBD_HS
|
|
|
|
|
|
|
|
/* Framebuffer and LCD */
|
|
|
|
#define CONFIG_IMX_HDMI
|
|
|
|
#define CONFIG_IMX_VIDEO_SKIP
|
|
|
|
|
|
|
|
/* Command definition */
|
|
|
|
|
|
|
|
#undef CONFIG_IPADDR
|
|
|
|
#define CONFIG_IPADDR 192.168.10.2
|
|
|
|
#define CONFIG_NETMASK 255.255.255.0
|
|
|
|
#undef CONFIG_SERVERIP
|
|
|
|
#define CONFIG_SERVERIP 192.168.10.1
|
|
|
|
|
2019-02-08 17:42:18 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 1) \
|
2020-06-16 19:20:11 +00:00
|
|
|
func(MMC, mmc, 0) \
|
2019-02-08 17:42:18 +00:00
|
|
|
func(USB, usb, 0) \
|
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#undef BOOTENV_RUN_NET_USB_START
|
|
|
|
#define BOOTENV_RUN_NET_USB_START ""
|
2016-11-30 18:43:09 +00:00
|
|
|
|
2019-12-09 10:33:30 +00:00
|
|
|
#define UBOOT_UPDATE \
|
|
|
|
"uboot_hwpart=1\0" \
|
|
|
|
"uboot_blk=8a\0" \
|
|
|
|
"uboot_spl_blk=2\0" \
|
|
|
|
"set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
|
|
|
|
"setexpr blkcnt ${blkcnt} / 0x200\0" \
|
|
|
|
"update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
|
|
|
|
"mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
|
|
|
|
"update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
|
|
|
|
"mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
|
|
|
|
|
2016-11-30 18:43:09 +00:00
|
|
|
#define MEM_LAYOUT_ENV_SETTINGS \
|
2017-03-10 01:17:51 +00:00
|
|
|
"bootm_size=0x10000000\0" \
|
2019-04-09 15:24:10 +00:00
|
|
|
"fdt_addr_r=0x12100000\0" \
|
2016-11-30 18:43:09 +00:00
|
|
|
"kernel_addr_r=0x11000000\0" \
|
2019-02-08 17:42:18 +00:00
|
|
|
"pxefile_addr_r=0x17100000\0" \
|
2019-04-09 15:24:10 +00:00
|
|
|
"ramdisk_addr_r=0x12200000\0" \
|
2019-02-08 17:42:18 +00:00
|
|
|
"scriptaddr=0x17000000\0"
|
2016-11-30 18:43:09 +00:00
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2019-02-08 17:42:18 +00:00
|
|
|
BOOTENV \
|
2019-02-08 17:42:27 +00:00
|
|
|
"boot_file=zImage\0" \
|
2022-04-13 09:33:27 +00:00
|
|
|
"boot_script_dhcp=boot.scr\0" \
|
2016-11-30 18:43:09 +00:00
|
|
|
"console=ttymxc0\0" \
|
|
|
|
"defargs=enable_wait_mode=off galcore.contiguousSize=50331648\0" \
|
2022-04-13 09:33:35 +00:00
|
|
|
"fdt_board=eval-v3\0" \
|
2016-11-30 18:43:09 +00:00
|
|
|
"fdt_fixup=;\0" \
|
|
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
2019-12-09 10:33:30 +00:00
|
|
|
UBOOT_UPDATE \
|
2016-11-30 18:43:09 +00:00
|
|
|
"setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
|
|
|
|
"00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
|
|
|
|
"flash_eth.img && source ${loadaddr}\0" \
|
|
|
|
"setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; load " \
|
|
|
|
"${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
|
|
|
|
"source ${loadaddr}\0" \
|
|
|
|
"setup=setenv setupargs fec_mac=${ethaddr} " \
|
|
|
|
"consoleblank=0 no_console_suspend=1 console=tty1 " \
|
|
|
|
"console=${console},${baudrate}n8\0 " \
|
|
|
|
"setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
|
|
|
|
"setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
|
|
|
|
"load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
|
|
|
|
"source ${loadaddr}\0" \
|
|
|
|
"splashpos=m,m\0" \
|
2021-08-23 14:25:30 +00:00
|
|
|
"splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
|
2021-03-11 20:00:36 +00:00
|
|
|
"vidargs=fbmem=8M\0"
|
2016-11-30 18:43:09 +00:00
|
|
|
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
|
|
|
|
/* Physical Memory Map */
|
|
|
|
#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
|
|
|
|
#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
|
|
|
|
#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
|
|
|
|
|
|
|
|
#endif /* __CONFIG_H */
|