imx6/imx7: Remove now empty imx6_spl.h and imx7_spl.h
[platform/kernel/u-boot.git] / include / configs / wandboard.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2013 Freescale Semiconductor, Inc.
4  *
5  * Configuration settings for the Wandboard.
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include "mx6_common.h"
12
13 #define CONFIG_MXC_UART_BASE            UART1_BASE
14
15 /* MMC Configuration */
16 #define CFG_SYS_FSL_USDHC_NUM   2
17 #define CFG_SYS_FSL_ESDHC_ADDR  0
18
19 /* USB Configs */
20 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
21 #define CONFIG_MXC_USB_FLAGS            0
22
23 /* Framebuffer */
24 #define CONFIG_IMX_HDMI
25 #define CONFIG_IMX_VIDEO_SKIP
26
27 #define CONFIG_EXTRA_ENV_SETTINGS \
28         "console=ttymxc0\0" \
29         "splashpos=m,m\0" \
30         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
31         "fdtfile=undefined\0" \
32         "fdt_high=0xffffffff\0" \
33         "initrd_high=0xffffffff\0" \
34         "fdt_addr_r=0x18000000\0" \
35         "fdt_addr=0x18000000\0" \
36         "ip_dyn=yes\0" \
37         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
38         "finduuid=part uuid mmc 0:1 uuid\0" \
39         "update_sd_firmware_filename=u-boot.imx\0" \
40         "update_sd_firmware=" \
41                 "if test ${ip_dyn} = yes; then " \
42                         "setenv get_cmd dhcp; " \
43                 "else " \
44                         "setenv get_cmd tftp; " \
45                 "fi; " \
46                 "if mmc dev ${mmcdev}; then "   \
47                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
48                                 "setexpr fw_sz ${filesize} / 0x200; " \
49                                 "setexpr fw_sz ${fw_sz} + 1; "  \
50                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
51                         "fi; "  \
52                 "fi\0" \
53         "findfdt="\
54                 "if test $board_name = D1 && test $board_rev = MX6QP ; then " \
55                         "setenv fdtfile imx6qp-wandboard-revd1.dtb; fi; " \
56                 "if test $board_name = D1 && test $board_rev = MX6Q ; then " \
57                         "setenv fdtfile imx6q-wandboard-revd1.dtb; fi; " \
58                 "if test $board_name = D1 && test $board_rev = MX6DL ; then " \
59                         "setenv fdtfile imx6dl-wandboard-revd1.dtb; fi; " \
60                 "if test $board_name = C1 && test $board_rev = MX6Q ; then " \
61                         "setenv fdtfile imx6q-wandboard.dtb; fi; " \
62                 "if test $board_name = C1 && test $board_rev = MX6DL ; then " \
63                         "setenv fdtfile imx6dl-wandboard.dtb; fi; " \
64                 "if test $board_name = B1 && test $board_rev = MX6Q ; then " \
65                         "setenv fdtfile imx6q-wandboard-revb1.dtb; fi; " \
66                 "if test $board_name = B1 && test $board_rev = MX6DL ; then " \
67                         "setenv fdtfile imx6dl-wandboard-revb1.dtb; fi; " \
68                 "if test $fdtfile = undefined; then " \
69                         "echo WARNING: Could not determine dtb to use; fi; \0" \
70         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
71         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
72         "ramdisk_addr_r=0x13000000\0" \
73         "ramdiskaddr=0x13000000\0" \
74         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
75         BOOTENV
76
77 #define BOOT_TARGET_DEVICES(func) \
78         func(MMC, mmc, 0) \
79         func(MMC, mmc, 1) \
80         func(MMC, mmc, 2) \
81         func(SATA, sata, 0) \
82         func(USB, usb, 0) \
83         func(PXE, pxe, na) \
84         func(DHCP, dhcp, na)
85
86 #include <config_distro_bootcmd.h>
87 #include <linux/stringify.h>
88
89 /* Physical Memory Map */
90 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
91
92 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
93 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
94 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
95
96 /* Environment organization */
97
98 #endif                         /* __CONFIG_H * */