arm: Disable ATAGs support
[platform/kernel/u-boot.git] / include / configs / apalis_imx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2013-2019 Toradex, Inc.
4  *
5  * Configuration settings for the Toradex Apalis iMX6
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <linux/stringify.h>
12
13 #include "mx6_common.h"
14
15 #undef CONFIG_DISPLAY_BOARDINFO
16
17 #define CONFIG_MACH_TYPE                4886
18
19 #include <asm/arch/imx-regs.h>
20 #include <asm/mach-imx/gpio.h>
21
22 #ifdef CONFIG_SPL
23 #include "imx6_spl.h"
24 #endif
25
26 #define CONFIG_MXC_UART_BASE            UART1_BASE
27
28 /* MMC Configs */
29 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
30 #define CONFIG_SYS_FSL_USDHC_NUM        3
31
32 /*
33  * SATA Configs
34  */
35 #ifdef CONFIG_CMD_SATA
36 #define CONFIG_LBA48
37 #endif
38
39 /* Network */
40 #define PHY_ANEG_TIMEOUT                15000 /* PHY needs longer aneg time */
41
42 /* USB Configs */
43 /* Host */
44 #define CONFIG_USB_MAX_CONTROLLER_COUNT         2
45 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
46 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
47 #define CONFIG_MXC_USB_FLAGS            0
48 /* Client */
49 #define CONFIG_USBD_HS
50
51 /* Framebuffer and LCD */
52 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
53 #define CONFIG_VIDEO_LOGO
54 #define CONFIG_VIDEO_BMP_LOGO
55 #define CONFIG_IMX_HDMI
56 #define CONFIG_IMX_VIDEO_SKIP
57
58 /* Command definition */
59
60 #undef CONFIG_IPADDR
61 #define CONFIG_IPADDR                   192.168.10.2
62 #define CONFIG_NETMASK                  255.255.255.0
63 #undef CONFIG_SERVERIP
64 #define CONFIG_SERVERIP                 192.168.10.1
65
66 #ifndef CONFIG_SPL_BUILD
67 #define BOOT_TARGET_DEVICES(func) \
68         func(MMC, mmc, 1) \
69         func(MMC, mmc, 2) \
70         func(MMC, mmc, 0) \
71         func(USB, usb, 0) \
72         func(DHCP, dhcp, na)
73 #include <config_distro_bootcmd.h>
74 #undef BOOTENV_RUN_NET_USB_START
75 #define BOOTENV_RUN_NET_USB_START ""
76 #else /* CONFIG_SPL_BUILD */
77 #define BOOTENV
78 #endif /* CONFIG_SPL_BUILD */
79
80 #define UBOOT_UPDATE \
81         "uboot_hwpart=1\0" \
82         "uboot_blk=8a\0" \
83         "uboot_spl_blk=2\0" \
84         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
85                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
86         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
87                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
88         "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
89                 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
90
91 #define MEM_LAYOUT_ENV_SETTINGS \
92         "bootm_size=0x20000000\0" \
93         "fdt_addr_r=0x12100000\0" \
94         "kernel_addr_r=0x11000000\0" \
95         "pxefile_addr_r=0x17100000\0" \
96         "ramdisk_addr_r=0x12200000\0" \
97         "scriptaddr=0x17000000\0"
98
99 #define NFS_BOOTCMD \
100         "nfsargs=ip=:::::eth0:on root=/dev/nfs ro\0" \
101         "nfsboot=run setup; " \
102                 "setenv bootargs ${defargs} ${nfsargs} ${setupargs} " \
103                 "${vidargs}; echo Booting via DHCP/TFTP/NFS...; " \
104                 "run nfsdtbload; dhcp ${kernel_addr_r} " \
105                 "&& run fdt_fixup && bootz ${kernel_addr_r} ${dtbparam}\0" \
106         "nfsdtbload=setenv dtbparam; tftp ${fdt_addr_r} ${fdt_file} " \
107                 "&& setenv dtbparam \" - ${fdt_addr_r}\" && true\0"
108
109 #ifndef CONFIG_TDX_APALIS_IMX6_V1_0
110 #define FDT_FILE "imx6q-apalis-eval.dtb"
111 #define FDT_FILE_V1_0 "imx6q-apalis_v1_0-eval.dtb"
112 #else
113 #define FDT_FILE "imx6q-apalis_v1_0-eval.dtb"
114 #endif
115 #define CONFIG_EXTRA_ENV_SETTINGS \
116         BOOTENV \
117         "bootcmd=run distro_bootcmd ; " \
118                 "usb start ; " \
119                 "setenv stdout serial,vidconsole; " \
120                 "setenv stdin serial,usbkbd\0" \
121         "boot_file=zImage\0" \
122         "console=ttymxc0\0" \
123         "defargs=enable_wait_mode=off vmalloc=400M\0" \
124         "fdt_file=" FDT_FILE "\0" \
125         "fdtfile=" FDT_FILE "\0" \
126         "fdt_fixup=;\0" \
127         MEM_LAYOUT_ENV_SETTINGS \
128         NFS_BOOTCMD \
129         UBOOT_UPDATE \
130         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
131                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
132                 "flash_eth.img && source ${loadaddr}\0" \
133         "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; " \
134                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img " \
135                 "|| setenv drive 2; mmc rescan; load ${interface} ${drive}:1" \
136                 " ${loadaddr} flash_blk.img && " \
137                 "source ${loadaddr}\0" \
138         "setup=setenv setupargs fec_mac=${ethaddr} " \
139                 "consoleblank=0 no_console_suspend=1 console=tty1 " \
140                 "console=${console},${baudrate}n8\0 " \
141         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
142         "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
143                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
144                 "source ${loadaddr}\0" \
145         "splashpos=m,m\0" \
146         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
147         "vidargs=mxc_hdmi.only_cea=1 fbmem=32M\0"
148
149 /* Miscellaneous configurable options */
150 #undef CONFIG_SYS_CBSIZE
151 #define CONFIG_SYS_CBSIZE               1024
152 #undef CONFIG_SYS_MAXARGS
153 #define CONFIG_SYS_MAXARGS              48
154
155 /* Physical Memory Map */
156 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
157
158 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
159 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
160 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
161
162 #define CONFIG_SYS_INIT_SP_OFFSET \
163         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
164 #define CONFIG_SYS_INIT_SP_ADDR \
165         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
166
167 #endif  /* __CONFIG_H */