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