]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
592f4aed | 2 | /* |
3858aac4 | 3 | * Copyright 2013-2019 Toradex, Inc. |
592f4aed MK |
4 | * |
5 | * Configuration settings for the Toradex Apalis iMX6 | |
592f4aed MK |
6 | */ |
7 | ||
8 | #ifndef __CONFIG_H | |
9 | #define __CONFIG_H | |
10 | ||
1af3c7f4 SG |
11 | #include <linux/stringify.h> |
12 | ||
592f4aed | 13 | #include "mx6_common.h" |
592f4aed | 14 | |
592f4aed | 15 | #include <asm/arch/imx-regs.h> |
552a848e | 16 | #include <asm/mach-imx/gpio.h> |
592f4aed MK |
17 | |
18 | #ifdef CONFIG_SPL | |
19 | #include "imx6_spl.h" | |
592f4aed MK |
20 | #endif |
21 | ||
592f4aed MK |
22 | #define CONFIG_MXC_UART_BASE UART1_BASE |
23 | ||
592f4aed | 24 | /* MMC Configs */ |
6cc04547 TR |
25 | #define CFG_SYS_FSL_ESDHC_ADDR 0 |
26 | #define CFG_SYS_FSL_USDHC_NUM 3 | |
592f4aed | 27 | |
592f4aed | 28 | /* Network */ |
0ac662da | 29 | #define PHY_ANEG_TIMEOUT 15000 /* PHY needs longer aneg time */ |
592f4aed MK |
30 | |
31 | /* USB Configs */ | |
32 | /* Host */ | |
592f4aed MK |
33 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
34 | #define CONFIG_MXC_USB_FLAGS 0 | |
592f4aed | 35 | /* Client */ |
592f4aed MK |
36 | #define CONFIG_USBD_HS |
37 | ||
592f4aed | 38 | /* Framebuffer and LCD */ |
592f4aed MK |
39 | #define CONFIG_IMX_HDMI |
40 | #define CONFIG_IMX_VIDEO_SKIP | |
592f4aed | 41 | |
592f4aed | 42 | /* Command definition */ |
592f4aed MK |
43 | |
44 | #undef CONFIG_IPADDR | |
45 | #define CONFIG_IPADDR 192.168.10.2 | |
46 | #define CONFIG_NETMASK 255.255.255.0 | |
47 | #undef CONFIG_SERVERIP | |
48 | #define CONFIG_SERVERIP 192.168.10.1 | |
592f4aed | 49 | |
26ee49a7 MZ |
50 | #define BOOT_TARGET_DEVICES(func) \ |
51 | func(MMC, mmc, 1) \ | |
52 | func(MMC, mmc, 2) \ | |
8b9c0cb4 | 53 | func(MMC, mmc, 0) \ |
26ee49a7 MZ |
54 | func(USB, usb, 0) \ |
55 | func(DHCP, dhcp, na) | |
56 | #include <config_distro_bootcmd.h> | |
57 | #undef BOOTENV_RUN_NET_USB_START | |
58 | #define BOOTENV_RUN_NET_USB_START "" | |
592f4aed | 59 | |
7cde0155 IO |
60 | #define UBOOT_UPDATE \ |
61 | "uboot_hwpart=1\0" \ | |
62 | "uboot_blk=8a\0" \ | |
63 | "uboot_spl_blk=2\0" \ | |
64 | "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \ | |
65 | "setexpr blkcnt ${blkcnt} / 0x200\0" \ | |
66 | "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \ | |
67 | "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \ | |
68 | "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \ | |
69 | "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0" | |
70 | ||
592f4aed | 71 | #define MEM_LAYOUT_ENV_SETTINGS \ |
9af131e3 | 72 | "bootm_size=0x20000000\0" \ |
7fe2408b MZ |
73 | "fdt_addr_r=0x18200000\0" \ |
74 | "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ | |
75 | "pxefile_addr_r=0x18300000\0" \ | |
76 | "ramdisk_addr_r=0x18400000\0" \ | |
77 | "scriptaddr=0x18280000\0" | |
592f4aed | 78 | |
592f4aed | 79 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
26ee49a7 | 80 | BOOTENV \ |
63fe9a08 | 81 | "boot_file=zImage\0" \ |
1377a776 | 82 | "boot_script_dhcp=boot.scr\0" \ |
592f4aed MK |
83 | "console=ttymxc0\0" \ |
84 | "defargs=enable_wait_mode=off vmalloc=400M\0" \ | |
3f7d518a | 85 | "fdt_board=eval\0" \ |
592f4aed MK |
86 | "fdt_fixup=;\0" \ |
87 | MEM_LAYOUT_ENV_SETTINGS \ | |
7cde0155 | 88 | UBOOT_UPDATE \ |
592f4aed MK |
89 | "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \ |
90 | "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \ | |
91 | "flash_eth.img && source ${loadaddr}\0" \ | |
321be226 MK |
92 | "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; " \ |
93 | "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img " \ | |
94 | "|| setenv drive 2; mmc rescan; load ${interface} ${drive}:1" \ | |
95 | " ${loadaddr} flash_blk.img && " \ | |
592f4aed MK |
96 | "source ${loadaddr}\0" \ |
97 | "setup=setenv setupargs fec_mac=${ethaddr} " \ | |
98 | "consoleblank=0 no_console_suspend=1 console=tty1 " \ | |
99 | "console=${console},${baudrate}n8\0 " \ | |
100 | "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \ | |
101 | "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \ | |
102 | "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \ | |
103 | "source ${loadaddr}\0" \ | |
104 | "splashpos=m,m\0" \ | |
72d81360 | 105 | "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
54398740 | 106 | "vidargs=mxc_hdmi.only_cea=1 fbmem=32M\0" |
592f4aed MK |
107 | |
108 | /* Miscellaneous configurable options */ | |
592f4aed | 109 | |
592f4aed | 110 | /* Physical Memory Map */ |
592f4aed MK |
111 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
112 | ||
113 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM | |
114 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR | |
115 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE | |
116 | ||
592f4aed | 117 | #endif /* __CONFIG_H */ |