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