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