]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/pcm052.h
arm, powerpc: select SYS_GENERIC_BOARD
[people/ms/u-boot.git] / include / configs / pcm052.h
1 /*
2 * Copyright 2013 Freescale Semiconductor, Inc.
3 *
4 * Configuration settings for the phytec PCM-052 SoM.
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include <asm/arch/imx-regs.h>
13
14 #define CONFIG_VF610
15
16 #define CONFIG_DISPLAY_CPUINFO
17 #define CONFIG_DISPLAY_BOARDINFO
18 #define CONFIG_SYS_THUMB_BUILD
19
20 #define CONFIG_SKIP_LOWLEVEL_INIT
21
22 /* Enable passing of ATAGs */
23 #define CONFIG_CMDLINE_TAG
24
25 /* Size of malloc() pool */
26 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
27
28 #define CONFIG_BOARD_EARLY_INIT_F
29
30 #define CONFIG_FSL_LPUART
31 #define LPUART_BASE UART1_BASE
32
33 /* Allow to overwrite serial and ethaddr */
34 #define CONFIG_ENV_OVERWRITE
35 #define CONFIG_SYS_UART_PORT (1)
36 #define CONFIG_BAUDRATE 115200
37
38 #undef CONFIG_CMD_IMLS
39
40 /* NAND support */
41 #define CONFIG_CMD_NAND
42 #define CONFIG_CMD_NAND_TRIMFFS
43 #define CONFIG_SYS_NAND_ONFI_DETECTION
44
45 #ifdef CONFIG_CMD_NAND
46 #define CONFIG_USE_ARCH_MEMCPY
47 #define CONFIG_SYS_MAX_NAND_DEVICE 1
48 #define CONFIG_SYS_NAND_BASE NFC_BASE_ADDR
49
50 #define CONFIG_JFFS2_NAND
51
52 /* UBI */
53 #define CONFIG_CMD_UBI
54 #define CONFIG_CMD_UBIFS
55 #define CONFIG_RBTREE
56 #define CONFIG_LZO
57
58 /* Dynamic MTD partition support */
59 #define CONFIG_CMD_MTDPARTS
60 #define CONFIG_MTD_PARTITIONS
61 #define CONFIG_MTD_DEVICE
62 #define MTDIDS_DEFAULT "nand0=NAND"
63 #define MTDPARTS_DEFAULT "mtdparts=NAND:256k(spare)"\
64 ",384k(bootloader)"\
65 ",128k(env1)"\
66 ",128k(env2)"\
67 ",128k(dtb)"\
68 ",6144k(kernel)"\
69 ",65536k(ramdisk)"\
70 ",450944k(root)"
71 #endif
72
73 #define CONFIG_MMC
74 #define CONFIG_FSL_ESDHC
75 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
76 #define CONFIG_SYS_FSL_ESDHC_NUM 1
77
78 /*#define CONFIG_ESDHC_DETECT_USE_EXTERN_IRQ1*/
79 #define CONFIG_SYS_FSL_ERRATUM_ESDHC135
80 #define CONFIG_SYS_FSL_ERRATUM_ESDHC111
81 #define CONFIG_SYS_FSL_ERRATUM_ESDHC_A001
82
83 #define CONFIG_CMD_MMC
84 #define CONFIG_GENERIC_MMC
85 #define CONFIG_CMD_FAT
86 #define CONFIG_DOS_PARTITION
87
88 #define CONFIG_CMD_PING
89 #define CONFIG_CMD_DHCP
90 #define CONFIG_CMD_MII
91 #define CONFIG_FEC_MXC
92 #define CONFIG_MII
93 #define IMX_FEC_BASE ENET_BASE_ADDR
94 #define CONFIG_FEC_XCV_TYPE RMII
95 #define CONFIG_FEC_MXC_PHYADDR 0
96 #define CONFIG_PHYLIB
97 #define CONFIG_PHY_MICREL
98
99 /* QSPI Configs*/
100 #define CONFIG_FSL_QSPI
101
102 #ifdef CONFIG_FSL_QSPI
103 #define CONFIG_CMD_SF
104 #define CONFIG_SPI_FLASH
105 #define CONFIG_SPI_FLASH_STMICRO
106 #define FSL_QSPI_FLASH_SIZE (1 << 24)
107 #define FSL_QSPI_FLASH_NUM 2
108 #define CONFIG_SYS_FSL_QSPI_LE
109 #endif
110
111 /* I2C Configs */
112 #define CONFIG_CMD_I2C
113 #define CONFIG_SYS_I2C
114 #define CONFIG_SYS_I2C_MXC_I2C3
115 #define CONFIG_SYS_I2C_MXC
116
117 /* RTC (actually an RV-4162 but M41T62-compatible) */
118 #define CONFIG_CMD_DATE
119 #define CONFIG_RTC_M41T62
120 #define CONFIG_SYS_I2C_RTC_ADDR 0x68
121 #define CONFIG_SYS_RTC_BUS_NUM 2
122
123 /* EEPROM (24FC256) */
124 #define CONFIG_CMD_EEPROM
125 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
126 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
127 #define CONFIG_SYS_I2C_EEPROM_BUS 2
128
129 #define CONFIG_BOOTDELAY 3
130
131 #define CONFIG_LOADADDR 0x82000000
132
133 /* We boot from the gfxRAM area of the OCRAM. */
134 #define CONFIG_SYS_TEXT_BASE 0x3f408000
135 #define CONFIG_BOARD_SIZE_LIMIT 524288
136
137 #define CONFIG_BOOTCOMMAND "run bootcmd_sd"
138 #define CONFIG_EXTRA_ENV_SETTINGS \
139 "fdt_high=0xffffffff\0" \
140 "initrd_high=0xffffffff\0" \
141 "blimg_file=u-boot.imx\0" \
142 "blsec_addr=0x81000000\0" \
143 "blimg_addr=0x81000400\0" \
144 "kernel_file=zImage\0" \
145 "kernel_addr=0x82000000\0" \
146 "fdt_file=vf610-pcm052.dtb\0" \
147 "fdt_addr=0x81000000\0" \
148 "ram_file=uRamdisk\0" \
149 "ram_addr=0x83000000\0" \
150 "filesys=rootfs.ubifs\0" \
151 "sys_addr=0x81000000\0" \
152 "tftploc=/path/to/tftp/directory/\0" \
153 "nfs_root=/path/to/nfs/root\0" \
154 "tftptimeout=1000\0" \
155 "tftptimeoutcountmax=1000000\0" \
156 "mtdparts=" MTDPARTS_DEFAULT "\0" \
157 "bootargs_base=setenv bootargs rw mem=256M " \
158 "console=ttyLP1,115200n8\0" \
159 "bootargs_sd=setenv bootargs ${bootargs} " \
160 "root=/dev/mmcblk0p2 rootwait\0" \
161 "bootargs_net=setenv bootargs ${bootargs} root=/dev/nfs ip=dhcp " \
162 "nfsroot=${serverip}:${nfs_root},v3,tcp\0" \
163 "bootargs_nand=setenv bootargs ${bootargs} " \
164 "ubi.mtd=6 rootfstype=ubifs root=ubi0:rootfs\0" \
165 "bootargs_ram=setenv bootargs ${bootargs} " \
166 "root=/dev/ram rw initrd=${ram_addr}\0" \
167 "bootargs_mtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
168 "bootcmd_sd=run bootargs_base bootargs_sd bootargs_mtd; " \
169 "fatload mmc 0:1 ${kernel_addr} ${kernel_file}; " \
170 "fatload mmc 0:1 ${fdt_addr} ${fdt_file}; " \
171 "bootz ${kernel_addr} - ${fdt_addr}\0" \
172 "bootcmd_net=run bootargs_base bootargs_net bootargs_mtd; " \
173 "tftpboot ${kernel_addr} ${tftpdir}${kernel_file}; " \
174 "tftpboot ${fdt_addr} ${tftpdir}${fdt_file}; " \
175 "bootz ${kernel_addr} - ${fdt_addr}\0" \
176 "bootcmd_nand=run bootargs_base bootargs_nand bootargs_mtd; " \
177 "nand read ${fdt_addr} dtb; " \
178 "nand read ${kernel_addr} kernel; " \
179 "bootz ${kernel_addr} - ${fdt_addr}\0" \
180 "bootcmd_ram=run bootargs_base bootargs_ram bootargs_mtd; " \
181 "nand read ${fdt_addr} dtb; " \
182 "nand read ${kernel_addr} kernel; " \
183 "nand read ${ram_addr} ramdisk; " \
184 "bootz ${kernel_addr} ${ram_addr} ${fdt_addr}\0" \
185 "update_bootloader_from_tftp=mtdparts default; " \
186 "nand read ${blsec_addr} bootloader; " \
187 "mw.b ${blimg_addr} 0xff 0x5FC00; " \
188 "if tftp ${blimg_addr} ${tftpdir}${blimg_file}; then " \
189 "nand erase.part bootloader; " \
190 "nand write ${blsec_addr} bootloader ${filesize}; fi\0" \
191 "update_kernel_from_sd=if fatload mmc 0:2 ${kernel_addr} " \
192 "${kernel_file}; " \
193 "then mtdparts default; " \
194 "nand erase.part kernel; " \
195 "nand write ${kernel_addr} kernel ${filesize}; " \
196 "if fatload mmc 0:2 ${fdt_addr} ${fdt_file}; then " \
197 "nand erase.part dtb; " \
198 "nand write ${fdt_addr} dtb ${filesize}; fi\0" \
199 "update_kernel_from_tftp=if tftp ${fdt_addr} ${tftpdir}${fdt_file}; " \
200 "then setenv fdtsize ${filesize}; " \
201 "if tftp ${kernel_addr} ${tftpdir}${kernel_file}; then " \
202 "mtdparts default; " \
203 "nand erase.part dtb; " \
204 "nand write ${fdt_addr} dtb ${fdtsize}; " \
205 "nand erase.part kernel; " \
206 "nand write ${kernel_addr} kernel ${filesize}; fi; fi\0" \
207 "update_rootfs_from_tftp=if tftp ${sys_addr} ${tftpdir}${filesys}; " \
208 "then mtdparts default; " \
209 "nand erase.part root; " \
210 "ubi part root; " \
211 "ubi create rootfs; " \
212 "ubi write ${sys_addr} rootfs ${filesize}; fi\0" \
213 "update_ramdisk_from_tftp=if tftp ${ram_addr} ${tftpdir}${ram_file}; " \
214 "then mtdparts default; " \
215 "nand erase.part ramdisk; " \
216 "nand write ${ram_addr} ramdisk ${filesize}; fi\0"
217
218 /* Miscellaneous configurable options */
219 #define CONFIG_SYS_LONGHELP /* undef to save memory */
220 #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
221 #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
222 #define CONFIG_AUTO_COMPLETE
223 #define CONFIG_CMDLINE_EDITING
224 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
225 #define CONFIG_SYS_PBSIZE \
226 (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
227 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
228 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
229
230 #define CONFIG_CMD_MEMTEST
231 #define CONFIG_SYS_MEMTEST_START 0x80010000
232 #define CONFIG_SYS_MEMTEST_END 0x87C00000
233
234 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
235
236 /*
237 * Stack sizes
238 * The stack sizes are set up in start.S using the settings below
239 */
240 #define CONFIG_STACKSIZE (128 * 1024) /* regular stack */
241
242 /* Physical memory map */
243 #define CONFIG_NR_DRAM_BANKS 1
244 #define PHYS_SDRAM (0x80000000)
245 #define PHYS_SDRAM_SIZE (256 * 1024 * 1024)
246
247 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
248 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
249 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
250
251 #define CONFIG_SYS_INIT_SP_OFFSET \
252 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
253 #define CONFIG_SYS_INIT_SP_ADDR \
254 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
255
256 /* FLASH and environment organization */
257 #define CONFIG_SYS_NO_FLASH
258
259 #ifdef CONFIG_ENV_IS_IN_MMC
260 #define CONFIG_ENV_SIZE (8 * 1024)
261
262 #define CONFIG_ENV_OFFSET (12 * 64 * 1024)
263 #define CONFIG_SYS_MMC_ENV_DEV 0
264 #endif
265
266 #ifdef CONFIG_ENV_IS_IN_NAND
267 #define CONFIG_ENV_SECT_SIZE (128 * 1024)
268 #define CONFIG_ENV_SIZE (8 * 1024)
269 #define CONFIG_ENV_OFFSET 0xA0000
270 #define CONFIG_ENV_SIZE_REDUND (8 * 1024)
271 #define CONFIG_ENV_OFFSET_REDUND 0xC0000
272 #endif
273
274 #define CONFIG_OF_LIBFDT
275 #define CONFIG_CMD_BOOTZ
276
277 #endif