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_SKIP_LOWLEVEL_INIT 15 16 /* Enable passing of ATAGs */ 17 #define CONFIG_CMDLINE_TAG 18 19 /* Size of malloc() pool */ 20 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024) 21 22 /* Allow to overwrite serial and ethaddr */ 23 #define CONFIG_ENV_OVERWRITE 24 25 /* NAND support */ 26 #define CONFIG_SYS_NAND_ONFI_DETECTION 27 28 #ifdef CONFIG_CMD_NAND 29 #define CONFIG_SYS_MAX_NAND_DEVICE 1 30 #define CONFIG_SYS_NAND_BASE NFC_BASE_ADDR 31 32 #define CONFIG_JFFS2_NAND 33 34 /* Dynamic MTD partition support */ 35 #define CONFIG_MTD_PARTITIONS 36 #define CONFIG_MTD_DEVICE 37 38 #ifndef MTDIDS_DEFAULT 39 #define MTDIDS_DEFAULT "nand0=NAND" 40 #endif 41 42 #ifndef MTDPARTS_DEFAULT 43 #define MTDPARTS_DEFAULT "mtdparts=NAND:640k(bootloader)"\ 44 ",128k(env1)"\ 45 ",128k(env2)"\ 46 ",128k(dtb)"\ 47 ",6144k(kernel)"\ 48 ",-(root)" 49 #endif 50 51 #endif 52 53 #define CONFIG_FSL_ESDHC 54 #define CONFIG_SYS_FSL_ESDHC_ADDR 0 55 #define CONFIG_SYS_FSL_ESDHC_NUM 1 56 57 /*#define CONFIG_ESDHC_DETECT_USE_EXTERN_IRQ1*/ 58 59 #define CONFIG_FEC_MXC 60 #define CONFIG_MII 61 #define IMX_FEC_BASE ENET_BASE_ADDR 62 #define CONFIG_FEC_XCV_TYPE RMII 63 #define CONFIG_FEC_MXC_PHYADDR 0 64 #define CONFIG_PHY_MICREL 65 66 /* QSPI Configs*/ 67 68 #ifdef CONFIG_FSL_QSPI 69 #define FSL_QSPI_FLASH_SIZE (1 << 24) 70 #define FSL_QSPI_FLASH_NUM 2 71 #define CONFIG_SYS_FSL_QSPI_LE 72 #endif 73 74 /* I2C Configs */ 75 #define CONFIG_SYS_I2C 76 #define CONFIG_SYS_I2C_MXC_I2C3 77 #define CONFIG_SYS_I2C_MXC 78 79 /* RTC (actually an RV-4162 but M41T62-compatible) */ 80 #define CONFIG_RTC_M41T62 81 #define CONFIG_SYS_I2C_RTC_ADDR 0x68 82 #define CONFIG_SYS_RTC_BUS_NUM 2 83 84 /* EEPROM (24FC256) */ 85 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 86 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 87 #define CONFIG_SYS_I2C_EEPROM_BUS 2 88 89 90 #define CONFIG_LOADADDR 0x82000000 91 92 /* We boot from the gfxRAM area of the OCRAM. */ 93 #define CONFIG_SYS_TEXT_BASE 0x3f408000 94 #define CONFIG_BOARD_SIZE_LIMIT 524288 95 96 /* if no target-specific extra environment settings were defined by the 97 target, define an empty one */ 98 #ifndef PCM052_EXTRA_ENV_SETTINGS 99 #define PCM052_EXTRA_ENV_SETTINGS 100 #endif 101 102 /* if no target-specific boot command was defined by the target, 103 define an empty one */ 104 #ifndef PCM052_BOOTCOMMAND 105 #define PCM052_BOOTCOMMAND 106 #endif 107 108 /* if no target-specific extra environment settings were defined by the 109 target, define an empty one */ 110 #ifndef PCM052_NET_INIT 111 #define PCM052_NET_INIT 112 #endif 113 114 /* boot command, including the target-defined one if any */ 115 #define CONFIG_BOOTCOMMAND PCM052_BOOTCOMMAND "run bootcmd_nand" 116 117 /* Extra env settings (including the target-defined ones if any) */ 118 #define CONFIG_EXTRA_ENV_SETTINGS \ 119 PCM052_EXTRA_ENV_SETTINGS \ 120 "autoload=no\0" \ 121 "fdt_high=0xffffffff\0" \ 122 "initrd_high=0xffffffff\0" \ 123 "blimg_file=u-boot.vyb\0" \ 124 "blimg_addr=0x81000000\0" \ 125 "kernel_file=zImage\0" \ 126 "kernel_addr=0x82000000\0" \ 127 "fdt_file=zImage.dtb\0" \ 128 "fdt_addr=0x81000000\0" \ 129 "ram_file=uRamdisk\0" \ 130 "ram_addr=0x83000000\0" \ 131 "filesys=rootfs.ubifs\0" \ 132 "sys_addr=0x81000000\0" \ 133 "tftploc=/path/to/tftp/directory/\0" \ 134 "nfs_root=/path/to/nfs/root\0" \ 135 "tftptimeout=1000\0" \ 136 "tftptimeoutcountmax=1000000\0" \ 137 "mtdparts=" MTDPARTS_DEFAULT "\0" \ 138 "bootargs_base=setenv bootargs rw " \ 139 " mem=" __stringify(CONFIG_PCM052_DDR_SIZE) "M " \ 140 "console=ttyLP1,115200n8\0" \ 141 "bootargs_sd=setenv bootargs ${bootargs} " \ 142 "root=/dev/mmcblk0p2 rootwait\0" \ 143 "bootargs_net=setenv bootargs ${bootargs} root=/dev/nfs ip=dhcp " \ 144 "nfsroot=${serverip}:${nfs_root},v3,tcp\0" \ 145 "bootargs_nand=setenv bootargs ${bootargs} " \ 146 "ubi.mtd=5 rootfstype=ubifs root=ubi0:rootfs\0" \ 147 "bootargs_ram=setenv bootargs ${bootargs} " \ 148 "root=/dev/ram rw initrd=${ram_addr}\0" \ 149 "bootargs_mtd=setenv bootargs ${bootargs} ${mtdparts}\0" \ 150 "bootcmd_sd=run bootargs_base bootargs_sd bootargs_mtd; " \ 151 "fatload mmc 0:1 ${kernel_addr} ${kernel_file}; " \ 152 "fatload mmc 0:1 ${fdt_addr} ${fdt_file}; " \ 153 "bootz ${kernel_addr} - ${fdt_addr}\0" \ 154 "bootcmd_net=run bootargs_base bootargs_net bootargs_mtd; " \ 155 "tftpboot ${kernel_addr} ${tftpdir}${kernel_file}; " \ 156 "tftpboot ${fdt_addr} ${tftpdir}${fdt_file}; " \ 157 "bootz ${kernel_addr} - ${fdt_addr}\0" \ 158 "bootcmd_nand=run bootargs_base bootargs_nand bootargs_mtd; " \ 159 "nand read ${fdt_addr} dtb; " \ 160 "nand read ${kernel_addr} kernel; " \ 161 "bootz ${kernel_addr} - ${fdt_addr}\0" \ 162 "bootcmd_ram=run bootargs_base bootargs_ram bootargs_mtd; " \ 163 "nand read ${fdt_addr} dtb; " \ 164 "nand read ${kernel_addr} kernel; " \ 165 "nand read ${ram_addr} root; " \ 166 "bootz ${kernel_addr} ${ram_addr} ${fdt_addr}\0" \ 167 "update_bootloader_from_tftp=" PCM052_NET_INIT \ 168 "if tftp ${blimg_addr} "\ 169 "${tftpdir}${blimg_file}; then " \ 170 "mtdparts default; " \ 171 "nand erase.part bootloader; " \ 172 "nand write ${blimg_addr} bootloader ${filesize}; fi\0" \ 173 "update_kernel_from_sd=if fatload mmc 0:2 ${kernel_addr} " \ 174 "${kernel_file}; " \ 175 "then mtdparts default; " \ 176 "nand erase.part kernel; " \ 177 "nand write ${kernel_addr} kernel ${filesize}; " \ 178 "if fatload mmc 0:2 ${fdt_addr} ${fdt_file}; then " \ 179 "nand erase.part dtb; " \ 180 "nand write ${fdt_addr} dtb ${filesize}; fi\0" \ 181 "update_kernel_from_tftp=" PCM052_NET_INIT \ 182 "if tftp ${fdt_addr} ${tftpdir}${fdt_file}; " \ 183 "then setenv fdtsize ${filesize}; " \ 184 "if tftp ${kernel_addr} ${tftpdir}${kernel_file}; then " \ 185 "mtdparts default; " \ 186 "nand erase.part dtb; " \ 187 "nand write ${fdt_addr} dtb ${fdtsize}; " \ 188 "nand erase.part kernel; " \ 189 "nand write ${kernel_addr} kernel ${filesize}; fi; fi\0" \ 190 "update_rootfs_from_tftp=" PCM052_NET_INIT \ 191 "if tftp ${sys_addr} ${tftpdir}${filesys}; " \ 192 "then mtdparts default; " \ 193 "nand erase.part root; " \ 194 "ubi part root; " \ 195 "ubi create rootfs; " \ 196 "ubi write ${sys_addr} rootfs ${filesize}; fi\0" \ 197 "update_ramdisk_from_tftp=" PCM052_NET_INIT \ 198 "if tftp ${ram_addr} ${tftpdir}${ram_file}; " \ 199 "then mtdparts default; " \ 200 "nand erase.part root; " \ 201 "nand write ${ram_addr} root ${filesize}; fi\0" 202 203 /* Miscellaneous configurable options */ 204 #define CONFIG_SYS_LONGHELP /* undef to save memory */ 205 #define CONFIG_AUTO_COMPLETE 206 #define CONFIG_CMDLINE_EDITING 207 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ 208 #define CONFIG_SYS_PBSIZE \ 209 (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 210 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ 211 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 212 213 #define CONFIG_SYS_MEMTEST_START 0x80010000 214 #define CONFIG_SYS_MEMTEST_END 0x87C00000 215 216 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR 217 218 /* Physical memory map */ 219 #define CONFIG_NR_DRAM_BANKS 1 220 #define PHYS_SDRAM (0x80000000) 221 #define PHYS_SDRAM_SIZE (CONFIG_PCM052_DDR_SIZE * 1024 * 1024) 222 223 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM 224 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 225 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE 226 227 #define CONFIG_SYS_INIT_SP_OFFSET \ 228 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) 229 #define CONFIG_SYS_INIT_SP_ADDR \ 230 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) 231 232 /* environment organization */ 233 #ifdef CONFIG_ENV_IS_IN_MMC 234 #define CONFIG_ENV_SIZE (8 * 1024) 235 236 #define CONFIG_ENV_OFFSET (12 * 64 * 1024) 237 #define CONFIG_SYS_MMC_ENV_DEV 0 238 #endif 239 240 #ifdef CONFIG_ENV_IS_IN_NAND 241 #define CONFIG_ENV_SECT_SIZE (128 * 1024) 242 #define CONFIG_ENV_SIZE (8 * 1024) 243 #define CONFIG_ENV_OFFSET 0xA0000 244 #define CONFIG_ENV_SIZE_REDUND (8 * 1024) 245 #define CONFIG_ENV_OFFSET_REDUND 0xC0000 246 #endif 247 248 #endif 249