Migrate CUSTOM_SYS_INIT_SP_ADDR to Kconfig using system-constants.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 #include "imx6_spl.h"
14
15 #define CONFIG_MXC_UART_BASE            UART1_BASE
16
17 /* SATA Configs */
18
19 #ifdef CONFIG_CMD_SATA
20 #define CONFIG_DWC_AHSATA_PORT_ID       0
21 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
22 #define CONFIG_LBA48
23 #endif
24
25 /* MMC Configuration */
26 #define CONFIG_SYS_FSL_USDHC_NUM        2
27 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
28
29 /* USB Configs */
30 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
31 #define CONFIG_MXC_USB_FLAGS            0
32
33 /* Framebuffer */
34 #define CONFIG_IMX_HDMI
35 #define CONFIG_IMX_VIDEO_SKIP
36
37 #define CONFIG_EXTRA_ENV_SETTINGS \
38         "console=ttymxc0\0" \
39         "splashpos=m,m\0" \
40         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
41         "fdtfile=undefined\0" \
42         "fdt_high=0xffffffff\0" \
43         "initrd_high=0xffffffff\0" \
44         "fdt_addr_r=0x18000000\0" \
45         "fdt_addr=0x18000000\0" \
46         "ip_dyn=yes\0" \
47         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
48         "finduuid=part uuid mmc 0:1 uuid\0" \
49         "update_sd_firmware_filename=u-boot.imx\0" \
50         "update_sd_firmware=" \
51                 "if test ${ip_dyn} = yes; then " \
52                         "setenv get_cmd dhcp; " \
53                 "else " \
54                         "setenv get_cmd tftp; " \
55                 "fi; " \
56                 "if mmc dev ${mmcdev}; then "   \
57                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
58                                 "setexpr fw_sz ${filesize} / 0x200; " \
59                                 "setexpr fw_sz ${fw_sz} + 1; "  \
60                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
61                         "fi; "  \
62                 "fi\0" \
63         "findfdt="\
64                 "if test $board_name = D1 && test $board_rev = MX6QP ; then " \
65                         "setenv fdtfile imx6qp-wandboard-revd1.dtb; fi; " \
66                 "if test $board_name = D1 && test $board_rev = MX6Q ; then " \
67                         "setenv fdtfile imx6q-wandboard-revd1.dtb; fi; " \
68                 "if test $board_name = D1 && test $board_rev = MX6DL ; then " \
69                         "setenv fdtfile imx6dl-wandboard-revd1.dtb; fi; " \
70                 "if test $board_name = C1 && test $board_rev = MX6Q ; then " \
71                         "setenv fdtfile imx6q-wandboard.dtb; fi; " \
72                 "if test $board_name = C1 && test $board_rev = MX6DL ; then " \
73                         "setenv fdtfile imx6dl-wandboard.dtb; fi; " \
74                 "if test $board_name = B1 && test $board_rev = MX6Q ; then " \
75                         "setenv fdtfile imx6q-wandboard-revb1.dtb; fi; " \
76                 "if test $board_name = B1 && test $board_rev = MX6DL ; then " \
77                         "setenv fdtfile imx6dl-wandboard-revb1.dtb; fi; " \
78                 "if test $fdtfile = undefined; then " \
79                         "echo WARNING: Could not determine dtb to use; fi; \0" \
80         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
81         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
82         "ramdisk_addr_r=0x13000000\0" \
83         "ramdiskaddr=0x13000000\0" \
84         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
85         BOOTENV
86
87 #define BOOT_TARGET_DEVICES(func) \
88         func(MMC, mmc, 0) \
89         func(MMC, mmc, 1) \
90         func(MMC, mmc, 2) \
91         func(SATA, sata, 0) \
92         func(USB, usb, 0) \
93         func(PXE, pxe, na) \
94         func(DHCP, dhcp, na)
95
96 #include <config_distro_bootcmd.h>
97 #include <linux/stringify.h>
98
99 /* Physical Memory Map */
100 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
101
102 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
103 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
104 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
105
106 /* Environment organization */
107
108 #endif                         /* __CONFIG_H * */