7b502840cb79f1954353cde3b20501a6d6c7f490
[platform/kernel/u-boot.git] / include / configs / wandboard.h
1 /*
2  * Copyright (C) 2013 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the Wandboard.
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include "mx6_common.h"
13
14 #include "imx6_spl.h"
15
16 #define CONFIG_MACH_TYPE                MACH_TYPE_WANDBOARD_IMX6
17
18 /* Size of malloc() pool */
19 #define CONFIG_SYS_MALLOC_LEN           (10 * SZ_1M)
20
21 #define CONFIG_MXC_UART
22 #define CONFIG_MXC_UART_BASE            UART1_BASE
23
24 /* SATA Configs */
25
26 #ifdef CONFIG_CMD_SATA
27 #define CONFIG_SYS_SATA_MAX_DEVICE      1
28 #define CONFIG_DWC_AHSATA_PORT_ID       0
29 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
30 #define CONFIG_LBA48
31 #endif
32
33 #define CONFIG_SYS_MEMTEST_START        0x10000000
34 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_MEMTEST_START + 500 * SZ_1M)
35
36 /* I2C Configs */
37 #define CONFIG_SYS_I2C
38 #define CONFIG_SYS_I2C_MXC
39 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
40 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
41 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
42 #define CONFIG_SYS_I2C_SPEED            100000
43
44 /* PMIC */
45 #define CONFIG_POWER
46 #define CONFIG_POWER_I2C
47 #define CONFIG_POWER_PFUZE100
48 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
49
50 /* MMC Configuration */
51 #define CONFIG_SYS_FSL_USDHC_NUM        2
52 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
53
54 /* USB Configs */
55 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
56 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
57 #define CONFIG_MXC_USB_FLAGS            0
58
59 /* Ethernet Configuration */
60 #define CONFIG_FEC_MXC
61 #define CONFIG_MII
62 #define IMX_FEC_BASE                    ENET_BASE_ADDR
63 #define CONFIG_FEC_XCV_TYPE             RGMII
64 #define CONFIG_ETHPRIME                 "FEC"
65 #define CONFIG_FEC_MXC_PHYADDR          1
66 #define CONFIG_PHY_ATHEROS
67
68 /* Framebuffer */
69 #ifdef CONFIG_VIDEO
70 #define CONFIG_VIDEO_IPUV3
71 #define CONFIG_VIDEO_BMP_RLE8
72 #define CONFIG_SPLASH_SCREEN
73 #define CONFIG_SPLASH_SCREEN_ALIGN
74 #define CONFIG_BMP_16BPP
75 #define CONFIG_VIDEO_LOGO
76 #define CONFIG_VIDEO_BMP_LOGO
77 #define CONFIG_IMX_HDMI
78 #define CONFIG_IMX_VIDEO_SKIP
79 #endif
80
81 #define CONFIG_EXTRA_ENV_SETTINGS \
82         "console=ttymxc0,115200\0" \
83         "splashpos=m,m\0" \
84         "fdtfile=undefined\0" \
85         "fdt_high=0xffffffff\0" \
86         "initrd_high=0xffffffff\0" \
87         "fdt_addr_r=0x18000000\0" \
88         "fdt_addr=0x18000000\0" \
89         "ip_dyn=yes\0" \
90         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
91         "finduuid=part uuid mmc 0:1 uuid\0" \
92         "update_sd_firmware_filename=u-boot.imx\0" \
93         "update_sd_firmware=" \
94                 "if test ${ip_dyn} = yes; then " \
95                         "setenv get_cmd dhcp; " \
96                 "else " \
97                         "setenv get_cmd tftp; " \
98                 "fi; " \
99                 "if mmc dev ${mmcdev}; then "   \
100                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
101                                 "setexpr fw_sz ${filesize} / 0x200; " \
102                                 "setexpr fw_sz ${fw_sz} + 1; "  \
103                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
104                         "fi; "  \
105                 "fi\0" \
106         "findfdt="\
107                 "if test $board_name = D1 && test $board_rev = MX6QP ; then " \
108                         "setenv fdtfile imx6qp-wandboard-revd1.dtb; fi; " \
109                 "if test $board_name = D1 && test $board_rev = MX6Q ; then " \
110                         "setenv fdtfile imx6q-wandboard-revd1.dtb; fi; " \
111                 "if test $board_name = D1 && test $board_rev = MX6DL ; then " \
112                         "setenv fdtfile imx6dl-wandboard-revd1.dtb; fi; " \
113                 "if test $board_name = C1 && test $board_rev = MX6Q ; then " \
114                         "setenv fdtfile imx6q-wandboard.dtb; fi; " \
115                 "if test $board_name = C1 && test $board_rev = MX6DL ; then " \
116                         "setenv fdtfile imx6dl-wandboard.dtb; fi; " \
117                 "if test $board_name = B1 && test $board_rev = MX6Q ; then " \
118                         "setenv fdtfile imx6q-wandboard-revb1.dtb; fi; " \
119                 "if test $board_name = B1 && test $board_rev = MX6DL ; then " \
120                         "setenv fdtfile imx6dl-wandboard-revb1.dtb; fi; " \
121                 "if test $fdtfile = undefined; then " \
122                         "echo WARNING: Could not determine dtb to use; fi; \0" \
123         "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
124         "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
125         "ramdisk_addr_r=0x13000000\0" \
126         "ramdiskaddr=0x13000000\0" \
127         "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
128         BOOTENV
129
130 #define BOOT_TARGET_DEVICES(func) \
131         func(MMC, mmc, 0) \
132         func(MMC, mmc, 1) \
133         func(SATA, sata, 0) \
134         func(USB, usb, 0) \
135         func(PXE, pxe, na) \
136         func(DHCP, dhcp, na)
137
138 #include <config_distro_bootcmd.h>
139
140 /* Physical Memory Map */
141 #define CONFIG_NR_DRAM_BANKS            1
142 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
143
144 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
145 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
146 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
147
148 #define CONFIG_SYS_INIT_SP_OFFSET \
149         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
150 #define CONFIG_SYS_INIT_SP_ADDR \
151         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
152
153 /* Environment organization */
154 #define CONFIG_ENV_SIZE                 (8 * 1024)
155
156 #define CONFIG_ENV_OFFSET               (768 * 1024)
157 #define CONFIG_SYS_MMC_ENV_DEV          0
158
159 #endif                         /* __CONFIG_H * */