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