]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
0c5e2667 FE |
2 | /* |
3 | * Copyright (C) 2013 Freescale Semiconductor, Inc. | |
4 | * | |
5 | * Configuration settings for Udoo board. | |
0c5e2667 FE |
6 | */ |
7 | ||
8 | #ifndef __CONFIG_H | |
9 | #define __CONFIG_H | |
10 | ||
02824dc7 | 11 | #include "mx6_common.h" |
0c5e2667 | 12 | |
78506c2f | 13 | #include "imx6_spl.h" |
14 | ||
cd7b6344 TR |
15 | /* Provide the MACH_TYPE value that the vendor kernel requires. */ |
16 | #define CONFIG_MACH_TYPE 4800 | |
0c5e2667 | 17 | |
0c5e2667 FE |
18 | /* Size of malloc() pool */ |
19 | #define CONFIG_SYS_MALLOC_LEN (2 * SZ_1M) | |
20 | ||
0c5e2667 FE |
21 | #define CONFIG_MXC_UART |
22 | #define CONFIG_MXC_UART_BASE UART2_BASE | |
23 | ||
98d01229 GP |
24 | /* SATA Configs */ |
25 | ||
98d01229 | 26 | #ifdef CONFIG_CMD_SATA |
98d01229 GP |
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 | |
98d01229 GP |
31 | #endif |
32 | ||
078813d2 GP |
33 | /* Network support */ |
34 | ||
078813d2 | 35 | #define CONFIG_FEC_MXC |
078813d2 GP |
36 | #define IMX_FEC_BASE ENET_BASE_ADDR |
37 | #define CONFIG_FEC_XCV_TYPE RGMII | |
38 | #define CONFIG_ETHPRIME "FEC" | |
39 | #define CONFIG_FEC_MXC_PHYADDR 6 | |
078813d2 | 40 | |
0c5e2667 FE |
41 | #define CONFIG_SYS_MEMTEST_START 0x10000000 |
42 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 500 * SZ_1M) | |
0c5e2667 FE |
43 | |
44 | /* MMC Configuration */ | |
0c5e2667 FE |
45 | #define CONFIG_SYS_FSL_ESDHC_ADDR 0 |
46 | ||
0c5e2667 FE |
47 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
48 | "script=boot.scr\0" \ | |
5ef14249 | 49 | "image=zImage\0" \ |
0c5e2667 FE |
50 | "console=ttymxc1\0" \ |
51 | "splashpos=m,m\0" \ | |
52 | "fdt_high=0xffffffff\0" \ | |
53 | "initrd_high=0xffffffff\0" \ | |
78506c2f | 54 | "fdt_file=undefined\0" \ |
6584a1b5 | 55 | "fdt_addr=0x18000000\0" \ |
0c5e2667 FE |
56 | "boot_fdt=try\0" \ |
57 | "ip_dyn=yes\0" \ | |
58 | "mmcdev=0\0" \ | |
59 | "mmcpart=1\0" \ | |
60 | "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \ | |
61 | "update_sd_firmware_filename=u-boot.imx\0" \ | |
62 | "update_sd_firmware=" \ | |
63 | "if test ${ip_dyn} = yes; then " \ | |
64 | "setenv get_cmd dhcp; " \ | |
65 | "else " \ | |
66 | "setenv get_cmd tftp; " \ | |
67 | "fi; " \ | |
68 | "if mmc dev ${mmcdev}; then " \ | |
69 | "if ${get_cmd} ${update_sd_firmware_filename}; then " \ | |
70 | "setexpr fw_sz ${filesize} / 0x200; " \ | |
71 | "setexpr fw_sz ${fw_sz} + 1; " \ | |
72 | "mmc write ${loadaddr} 0x2 ${fw_sz}; " \ | |
73 | "fi; " \ | |
74 | "fi\0" \ | |
75 | "mmcargs=setenv bootargs console=${console},${baudrate} " \ | |
76 | "root=${mmcroot}\0" \ | |
77 | "loadbootscript=" \ | |
a260af61 | 78 | "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ |
0c5e2667 FE |
79 | "bootscript=echo Running bootscript from mmc ...; " \ |
80 | "source\0" \ | |
a260af61 OC |
81 | "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \ |
82 | "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ | |
0c5e2667 FE |
83 | "mmcboot=echo Booting from mmc ...; " \ |
84 | "run mmcargs; " \ | |
85 | "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ | |
86 | "if run loadfdt; then " \ | |
5ef14249 | 87 | "bootz ${loadaddr} - ${fdt_addr}; " \ |
0c5e2667 FE |
88 | "else " \ |
89 | "if test ${boot_fdt} = try; then " \ | |
5ef14249 | 90 | "bootz; " \ |
0c5e2667 FE |
91 | "else " \ |
92 | "echo WARN: Cannot load the DT; " \ | |
93 | "fi; " \ | |
94 | "fi; " \ | |
95 | "else " \ | |
5ef14249 | 96 | "bootz; " \ |
0c5e2667 FE |
97 | "fi;\0" \ |
98 | "netargs=setenv bootargs console=${console},${baudrate} " \ | |
99 | "root=/dev/nfs " \ | |
100 | "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ | |
101 | "netboot=echo Booting from net ...; " \ | |
102 | "run netargs; " \ | |
103 | "if test ${ip_dyn} = yes; then " \ | |
104 | "setenv get_cmd dhcp; " \ | |
105 | "else " \ | |
106 | "setenv get_cmd tftp; " \ | |
107 | "fi; " \ | |
5ef14249 | 108 | "${get_cmd} ${image}; " \ |
0c5e2667 FE |
109 | "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ |
110 | "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \ | |
5ef14249 | 111 | "bootz ${loadaddr} - ${fdt_addr}; " \ |
0c5e2667 FE |
112 | "else " \ |
113 | "if test ${boot_fdt} = try; then " \ | |
5ef14249 | 114 | "bootz; " \ |
0c5e2667 FE |
115 | "else " \ |
116 | "echo WARN: Cannot load the DT; " \ | |
117 | "fi; " \ | |
118 | "fi; " \ | |
119 | "else " \ | |
5ef14249 | 120 | "bootz; " \ |
78506c2f | 121 | "fi;\0" \ |
122 | "findfdt=" \ | |
123 | "if test $board_rev = MX6Q ; then " \ | |
124 | "setenv fdt_file imx6q-udoo.dtb; fi; " \ | |
125 | "if test $board_rev = MX6DL ; then " \ | |
126 | "setenv fdt_file imx6dl-udoo.dtb; fi; " \ | |
127 | "if test $fdt_file = undefined; then " \ | |
128 | "echo WARNING: Could not determine dtb to use; fi; \0" | |
0c5e2667 FE |
129 | |
130 | #define CONFIG_BOOTCOMMAND \ | |
78506c2f | 131 | "run findfdt; " \ |
0c5e2667 FE |
132 | "mmc dev ${mmcdev}; if mmc rescan; then " \ |
133 | "if run loadbootscript; then " \ | |
134 | "run bootscript; " \ | |
135 | "else " \ | |
5ef14249 | 136 | "if run loadimage; then " \ |
0c5e2667 FE |
137 | "run mmcboot; " \ |
138 | "else run netboot; " \ | |
139 | "fi; " \ | |
140 | "fi; " \ | |
141 | "else run netboot; fi" | |
142 | ||
0c5e2667 | 143 | /* Physical Memory Map */ |
0c5e2667 FE |
144 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
145 | ||
146 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM | |
147 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR | |
148 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE | |
149 | ||
150 | #define CONFIG_SYS_INIT_SP_OFFSET \ | |
151 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
152 | #define CONFIG_SYS_INIT_SP_ADDR \ | |
153 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | |
154 | ||
056845c2 | 155 | /* Environment organization */ |
0c5e2667 FE |
156 | #define CONFIG_ENV_SIZE (8 * 1024) |
157 | ||
0c5e2667 FE |
158 | #define CONFIG_ENV_OFFSET (6 * 64 * 1024) |
159 | #define CONFIG_SYS_MMC_ENV_DEV 0 | |
160 | ||
0c5e2667 | 161 | #endif /* __CONFIG_H * */ |