]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
e2d282a1 FE |
2 | /* |
3 | * Copyright (C) 2013 Freescale Semiconductor, Inc. | |
4 | * | |
5 | * Configuration settings for the Wandboard. | |
e2d282a1 FE |
6 | */ |
7 | ||
8 | #ifndef __CONFIG_H | |
9 | #define __CONFIG_H | |
10 | ||
02824dc7 | 11 | #include "mx6_common.h" |
e2d282a1 | 12 | |
4db38665 | 13 | #define CFG_MXC_UART_BASE UART1_BASE |
e2d282a1 | 14 | |
e2d282a1 | 15 | /* MMC Configuration */ |
6cc04547 TR |
16 | #define CFG_SYS_FSL_USDHC_NUM 2 |
17 | #define CFG_SYS_FSL_ESDHC_ADDR 0 | |
e2d282a1 | 18 | |
0613c36a | 19 | #define CFG_EXTRA_ENV_SETTINGS \ |
97294a48 | 20 | "console=ttymxc0\0" \ |
d727ab3c | 21 | "splashpos=m,m\0" \ |
72d81360 | 22 | "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
0d1ea052 | 23 | "fdtfile=undefined\0" \ |
e2d282a1 FE |
24 | "fdt_high=0xffffffff\0" \ |
25 | "initrd_high=0xffffffff\0" \ | |
acc6bb56 | 26 | "fdt_addr_r=0x18000000\0" \ |
6584a1b5 | 27 | "fdt_addr=0x18000000\0" \ |
e2d282a1 | 28 | "ip_dyn=yes\0" \ |
1e1cbde0 | 29 | "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ |
84b4690f | 30 | "finduuid=part uuid mmc 0:1 uuid\0" \ |
0798d578 OS |
31 | "update_sd_firmware_filename=u-boot.imx\0" \ |
32 | "update_sd_firmware=" \ | |
33 | "if test ${ip_dyn} = yes; then " \ | |
34 | "setenv get_cmd dhcp; " \ | |
35 | "else " \ | |
36 | "setenv get_cmd tftp; " \ | |
37 | "fi; " \ | |
38 | "if mmc dev ${mmcdev}; then " \ | |
39 | "if ${get_cmd} ${update_sd_firmware_filename}; then " \ | |
40 | "setexpr fw_sz ${filesize} / 0x200; " \ | |
41 | "setexpr fw_sz ${fw_sz} + 1; " \ | |
42 | "mmc write ${loadaddr} 0x2 ${fw_sz}; " \ | |
43 | "fi; " \ | |
44 | "fi\0" \ | |
0d1ea052 | 45 | "findfdt="\ |
e1f0715f FE |
46 | "if test $board_name = D1 && test $board_rev = MX6QP ; then " \ |
47 | "setenv fdtfile imx6qp-wandboard-revd1.dtb; fi; " \ | |
066d97c7 FE |
48 | "if test $board_name = D1 && test $board_rev = MX6Q ; then " \ |
49 | "setenv fdtfile imx6q-wandboard-revd1.dtb; fi; " \ | |
50 | "if test $board_name = D1 && test $board_rev = MX6DL ; then " \ | |
51 | "setenv fdtfile imx6dl-wandboard-revd1.dtb; fi; " \ | |
9a8804a8 | 52 | "if test $board_name = C1 && test $board_rev = MX6Q ; then " \ |
0d1ea052 | 53 | "setenv fdtfile imx6q-wandboard.dtb; fi; " \ |
9a8804a8 | 54 | "if test $board_name = C1 && test $board_rev = MX6DL ; then " \ |
0d1ea052 | 55 | "setenv fdtfile imx6dl-wandboard.dtb; fi; " \ |
9a8804a8 FE |
56 | "if test $board_name = B1 && test $board_rev = MX6Q ; then " \ |
57 | "setenv fdtfile imx6q-wandboard-revb1.dtb; fi; " \ | |
58 | "if test $board_name = B1 && test $board_rev = MX6DL ; then " \ | |
59 | "setenv fdtfile imx6dl-wandboard-revb1.dtb; fi; " \ | |
0d1ea052 FE |
60 | "if test $fdtfile = undefined; then " \ |
61 | "echo WARNING: Could not determine dtb to use; fi; \0" \ | |
72d81360 TR |
62 | "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
63 | "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ | |
acc6bb56 VC |
64 | "ramdisk_addr_r=0x13000000\0" \ |
65 | "ramdiskaddr=0x13000000\0" \ | |
72d81360 | 66 | "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
acc6bb56 VC |
67 | BOOTENV |
68 | ||
69 | #define BOOT_TARGET_DEVICES(func) \ | |
70 | func(MMC, mmc, 0) \ | |
71 | func(MMC, mmc, 1) \ | |
c2f3dade | 72 | func(MMC, mmc, 2) \ |
3b22599e | 73 | func(SATA, sata, 0) \ |
acc6bb56 VC |
74 | func(USB, usb, 0) \ |
75 | func(PXE, pxe, na) \ | |
76 | func(DHCP, dhcp, na) | |
e2d282a1 | 77 | |
acc6bb56 | 78 | #include <config_distro_bootcmd.h> |
1af3c7f4 | 79 | #include <linux/stringify.h> |
e2d282a1 | 80 | |
e2d282a1 | 81 | /* Physical Memory Map */ |
e2d282a1 FE |
82 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
83 | ||
aa6e94de | 84 | #define CFG_SYS_SDRAM_BASE PHYS_SDRAM |
65cc0e2a TR |
85 | #define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
86 | #define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE | |
e2d282a1 | 87 | |
056845c2 | 88 | /* Environment organization */ |
e2d282a1 | 89 | |
e2d282a1 | 90 | #endif /* __CONFIG_H * */ |