1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright 2013-2019 Toradex, Inc.
5 * Configuration settings for the Toradex Apalis iMX6
11 #include <linux/stringify.h>
13 #include "mx6_common.h"
15 #include <asm/arch/imx-regs.h>
16 #include <asm/mach-imx/gpio.h>
22 #define CONFIG_MXC_UART_BASE UART1_BASE
25 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
26 #define CONFIG_SYS_FSL_USDHC_NUM 3
29 #define PHY_ANEG_TIMEOUT 15000 /* PHY needs longer aneg time */
33 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
34 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
35 #define CONFIG_MXC_USB_FLAGS 0
37 #define CONFIG_USBD_HS
39 /* Framebuffer and LCD */
40 #define CONFIG_IMX_HDMI
41 #define CONFIG_IMX_VIDEO_SKIP
43 /* Command definition */
46 #define CONFIG_IPADDR 192.168.10.2
47 #define CONFIG_NETMASK 255.255.255.0
48 #undef CONFIG_SERVERIP
49 #define CONFIG_SERVERIP 192.168.10.1
51 #define BOOT_TARGET_DEVICES(func) \
57 #include <config_distro_bootcmd.h>
58 #undef BOOTENV_RUN_NET_USB_START
59 #define BOOTENV_RUN_NET_USB_START ""
61 #define UBOOT_UPDATE \
65 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
66 "setexpr blkcnt ${blkcnt} / 0x200\0" \
67 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
68 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
69 "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
70 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
72 #define MEM_LAYOUT_ENV_SETTINGS \
73 "bootm_size=0x20000000\0" \
74 "fdt_addr_r=0x12100000\0" \
75 "kernel_addr_r=0x11000000\0" \
76 "pxefile_addr_r=0x17100000\0" \
77 "ramdisk_addr_r=0x12200000\0" \
78 "scriptaddr=0x17000000\0"
80 #define CONFIG_EXTRA_ENV_SETTINGS \
82 "boot_file=zImage\0" \
83 "boot_script_dhcp=boot.scr\0" \
85 "defargs=enable_wait_mode=off vmalloc=400M\0" \
88 MEM_LAYOUT_ENV_SETTINGS \
90 "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
91 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
92 "flash_eth.img && source ${loadaddr}\0" \
93 "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; " \
94 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img " \
95 "|| setenv drive 2; mmc rescan; load ${interface} ${drive}:1" \
96 " ${loadaddr} flash_blk.img && " \
97 "source ${loadaddr}\0" \
98 "setup=setenv setupargs fec_mac=${ethaddr} " \
99 "consoleblank=0 no_console_suspend=1 console=tty1 " \
100 "console=${console},${baudrate}n8\0 " \
101 "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
102 "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
103 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
104 "source ${loadaddr}\0" \
106 "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
107 "vidargs=mxc_hdmi.only_cea=1 fbmem=32M\0"
109 /* Miscellaneous configurable options */
111 /* Physical Memory Map */
112 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
114 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
115 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
116 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
118 #endif /* __CONFIG_H */