1 /* 2 * Copyright (C) 2013 Gateworks Corporation 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __CONFIG_H 8 #define __CONFIG_H 9 10 /* SPL */ 11 #define CONFIG_SPL_BOARD_INIT 12 /* Location in NAND to read U-Boot from */ 13 #define CONFIG_SYS_NAND_U_BOOT_OFFS (14 * SZ_1M) 14 15 /* Falcon Mode */ 16 #define CONFIG_CMD_SPL 17 #define CONFIG_SYS_SPL_ARGS_ADDR 0x18000000 18 #define CONFIG_CMD_SPL_WRITE_SIZE (128 * SZ_1K) 19 20 /* Falcon Mode - NAND support: args@17MB kernel@18MB */ 21 #define CONFIG_CMD_SPL_NAND_OFS (17 * SZ_1M) 22 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS (18 * SZ_1M) 23 24 /* Falcon Mode - MMC support: args@1MB kernel@2MB */ 25 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x800 /* 1MB */ 26 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS (CONFIG_CMD_SPL_WRITE_SIZE / 512) 27 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x1000 /* 2MB */ 28 29 #include "imx6_spl.h" /* common IMX6 SPL configuration */ 30 #include "mx6_common.h" 31 #define CONFIG_DISPLAY_BOARDINFO_LATE 32 33 #define CONFIG_MACH_TYPE 4520 /* Gateworks Ventana Platform */ 34 35 /* Serial ATAG */ 36 #define CONFIG_SERIAL_TAG 37 38 /* Size of malloc() pool */ 39 #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M) 40 41 /* Init Functions */ 42 #define CONFIG_MISC_INIT_R 43 44 /* Driver Model */ 45 #ifndef CONFIG_SPL_BUILD 46 #define CONFIG_DM_GPIO 47 #define CONFIG_DM_THERMAL 48 #endif 49 50 /* Thermal */ 51 #define CONFIG_IMX_THERMAL 52 53 /* Serial */ 54 #define CONFIG_MXC_UART 55 #define CONFIG_MXC_UART_BASE UART2_BASE 56 57 #ifdef CONFIG_SPI_FLASH 58 59 /* SPI */ 60 #ifdef CONFIG_CMD_SF 61 #define CONFIG_MXC_SPI 62 #define CONFIG_SPI_FLASH_MTD 63 #define CONFIG_SPI_FLASH_BAR 64 #define CONFIG_SF_DEFAULT_BUS 0 65 #define CONFIG_SF_DEFAULT_CS 0 66 /* GPIO 3-19 (21248) */ 67 #define CONFIG_SF_DEFAULT_SPEED 30000000 68 #define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0) 69 #endif 70 71 #elif defined(CONFIG_SPL_NAND_SUPPORT) 72 /* Enable NAND support */ 73 #define CONFIG_CMD_NAND 74 #define CONFIG_CMD_NAND_TRIMFFS 75 #ifdef CONFIG_CMD_NAND 76 #define CONFIG_NAND_MXS 77 #define CONFIG_SYS_MAX_NAND_DEVICE 1 78 #define CONFIG_SYS_NAND_BASE 0x40000000 79 #define CONFIG_SYS_NAND_5_ADDR_CYCLE 80 #define CONFIG_SYS_NAND_ONFI_DETECTION 81 82 /* DMA stuff, needed for GPMI/MXS NAND support */ 83 #define CONFIG_APBH_DMA 84 #define CONFIG_APBH_DMA_BURST 85 #define CONFIG_APBH_DMA_BURST8 86 #endif 87 88 #endif /* CONFIG_SPI_FLASH */ 89 90 /* I2C Configs */ 91 #define CONFIG_SYS_I2C 92 #define CONFIG_SYS_I2C_MXC 93 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */ 94 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */ 95 #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */ 96 #define CONFIG_SYS_I2C_SPEED 100000 97 #define CONFIG_I2C_GSC 0 98 #define CONFIG_I2C_PMIC 1 99 #define CONFIG_I2C_EDID 100 101 /* MMC Configs */ 102 #define CONFIG_SYS_FSL_ESDHC_ADDR 0 103 #define CONFIG_SYS_FSL_USDHC_NUM 1 104 105 /* Filesystem support */ 106 #define CONFIG_CMD_UBIFS 107 108 /* 109 * SATA Configs 110 */ 111 #define CONFIG_CMD_SATA 112 #ifdef CONFIG_CMD_SATA 113 #define CONFIG_DWC_AHSATA 114 #define CONFIG_SYS_SATA_MAX_DEVICE 1 115 #define CONFIG_DWC_AHSATA_PORT_ID 0 116 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR 117 #define CONFIG_LBA48 118 #define CONFIG_LIBATA 119 #endif 120 121 /* 122 * PCI express 123 */ 124 #define CONFIG_CMD_PCI 125 #ifdef CONFIG_CMD_PCI 126 #define CONFIG_PCI_SCAN_SHOW 127 #define CONFIG_PCI_FIXUP_DEV 128 #define CONFIG_PCIE_IMX 129 #endif 130 131 /* 132 * PMIC 133 */ 134 #define CONFIG_POWER 135 #define CONFIG_POWER_I2C 136 #define CONFIG_POWER_PFUZE100 137 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08 138 #define CONFIG_POWER_LTC3676 139 #define CONFIG_POWER_LTC3676_I2C_ADDR 0x3c 140 141 /* Various command support */ 142 #define CONFIG_CMD_BMODE /* set eFUSE shadow for a boot dev and reset */ 143 #define CONFIG_CMD_HDMIDETECT /* detect HDMI output device */ 144 #define CONFIG_CMD_GSC 145 #define CONFIG_CMD_EECONFIG /* Gateworks EEPROM config cmd */ 146 #define CONFIG_CMD_UNZIP /* gzwrite */ 147 #define CONFIG_RBTREE 148 149 /* Ethernet support */ 150 #define CONFIG_FEC_MXC 151 #define CONFIG_MII 152 #define IMX_FEC_BASE ENET_BASE_ADDR 153 #define CONFIG_FEC_XCV_TYPE RGMII 154 #define CONFIG_FEC_MXC_PHYADDR 0 155 #define CONFIG_PHYLIB 156 #define CONFIG_ARP_TIMEOUT 200UL 157 158 /* USB Configs */ 159 #define CONFIG_USB_EHCI 160 #define CONFIG_USB_EHCI_MX6 161 #define CONFIG_USB_HOST_ETHER 162 #define CONFIG_USB_ETHER_ASIX 163 #define CONFIG_USB_ETHER_SMSC95XX 164 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 165 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */ 166 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) 167 #define CONFIG_MXC_USB_FLAGS 0 168 #define CONFIG_USBD_HS 169 #define CONFIG_USB_ETHER 170 #define CONFIG_USB_ETH_CDC 171 #define CONFIG_NETCONSOLE 172 #define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP 173 174 /* USB Mass Storage Gadget */ 175 #define CONFIG_USB_FUNCTION_MASS_STORAGE 176 177 /* Framebuffer and LCD */ 178 #define CONFIG_VIDEO_IPUV3 179 #define CONFIG_VIDEO_LOGO 180 #define CONFIG_IPUV3_CLK 260000000 181 #define CONFIG_CMD_HDMIDETECT 182 #define CONFIG_IMX_HDMI 183 #define CONFIG_IMX_VIDEO_SKIP 184 #define CONFIG_VIDEO_BMP_LOGO 185 #define CONFIG_SPLASH_SCREEN_ALIGN 186 #define CONFIG_HIDE_LOGO_VERSION /* Custom config to hide U-boot version */ 187 188 /* Miscellaneous configurable options */ 189 #define CONFIG_HWCONFIG 190 #define CONFIG_PREBOOT 191 192 /* Print Buffer Size */ 193 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 194 195 /* Memory configuration */ 196 #define CONFIG_SYS_MEMTEST_START 0x10000000 197 #define CONFIG_SYS_MEMTEST_END 0x10010000 198 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000 199 200 /* Physical Memory Map */ 201 #define CONFIG_NR_DRAM_BANKS 1 202 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR 203 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM 204 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 205 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE 206 207 #define CONFIG_SYS_INIT_SP_OFFSET \ 208 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) 209 #define CONFIG_SYS_INIT_SP_ADDR \ 210 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) 211 212 /* 213 * MTD Command for mtdparts 214 */ 215 #define CONFIG_LZO 216 #define CONFIG_CMD_MTDPARTS 217 #define CONFIG_MTD_DEVICE 218 #define CONFIG_MTD_PARTITIONS 219 #ifdef CONFIG_SPI_FLASH 220 #define MTDIDS_DEFAULT "nor0=nor" 221 #define MTDPARTS_DEFAULT \ 222 "mtdparts=nor:512k(uboot),64k(env),2m(kernel),-(rootfs)" 223 #else 224 #define MTDIDS_DEFAULT "nand0=nand" 225 #define MTDPARTS_DEFAULT "mtdparts=nand:16m(uboot),1m(env),-(rootfs)" 226 #endif 227 228 /* Persistent Environment Config */ 229 #ifdef CONFIG_SPI_FLASH 230 #define CONFIG_ENV_IS_IN_SPI_FLASH 231 #elif defined(CONFIG_SPL_NAND_SUPPORT) 232 #define CONFIG_ENV_IS_IN_NAND 233 #else 234 #define CONFIG_ENV_IS_IN_MMC 235 #endif 236 #if defined(CONFIG_ENV_IS_IN_MMC) 237 #define CONFIG_SYS_MMC_ENV_DEV 0 238 #define CONFIG_ENV_OFFSET (709 * SZ_1K) 239 #define CONFIG_ENV_SIZE (128 * SZ_1K) 240 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + (128 * SZ_1K)) 241 #elif defined(CONFIG_ENV_IS_IN_NAND) 242 #define CONFIG_ENV_OFFSET (16 * SZ_1M) 243 #define CONFIG_ENV_SECT_SIZE (128 * SZ_1K) 244 #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE 245 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + (512 * SZ_1K)) 246 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE 247 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) 248 #define CONFIG_ENV_OFFSET (512 * SZ_1K) 249 #define CONFIG_ENV_SECT_SIZE (64 * SZ_1K) 250 #define CONFIG_ENV_SIZE (8 * SZ_1K) 251 #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS 252 #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS 253 #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE 254 #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED 255 #endif 256 257 /* Environment */ 258 #define CONFIG_IPADDR 192.168.1.1 259 #define CONFIG_SERVERIP 192.168.1.146 260 261 #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 262 "pcidisable=1\0" \ 263 "splashpos=m,m\0" \ 264 "usb_pgood_delay=2000\0" \ 265 "console=ttymxc1\0" \ 266 "bootdevs=usb mmc sata flash\0" \ 267 "hwconfig=_UNKNOWN_\0" \ 268 "video=\0" \ 269 \ 270 "mtdparts=" MTDPARTS_DEFAULT "\0" \ 271 "mtdids=" MTDIDS_DEFAULT "\0" \ 272 "disk=0\0" \ 273 "part=1\0" \ 274 \ 275 "fdt_high=0xffffffff\0" \ 276 "fdt_addr=0x18000000\0" \ 277 "initrd_high=0xffffffff\0" \ 278 "fixfdt=" \ 279 "fdt addr ${fdt_addr}\0" \ 280 "bootdir=boot\0" \ 281 "loadfdt=" \ 282 "if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \ 283 "echo Loaded DTB from ${bootdir}/${fdt_file}; " \ 284 "run fixfdt; " \ 285 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \ 286 "echo Loaded DTB from ${bootdir}/${fdt_file1}; " \ 287 "run fixfdt; " \ 288 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \ 289 "echo Loaded DTB from ${bootdir}/${fdt_file2}; " \ 290 "run fixfdt; " \ 291 "fi\0" \ 292 \ 293 "fs=ext4\0" \ 294 "script=6x_bootscript-ventana\0" \ 295 "loadscript=" \ 296 "if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \ 297 "source ${loadaddr}; " \ 298 "fi\0" \ 299 \ 300 "uimage=uImage\0" \ 301 "mmc_root=mmcblk0p1\0" \ 302 "mmc_boot=" \ 303 "setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \ 304 "mmc dev ${disk} && mmc rescan && " \ 305 "setenv dtype mmc; run loadscript; " \ 306 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 307 "setenv bootargs console=${console},${baudrate} " \ 308 "root=/dev/${mmc_root} rootfstype=${fs} " \ 309 "rootwait rw ${video} ${extra}; " \ 310 "if run loadfdt; then " \ 311 "bootm ${loadaddr} - ${fdt_addr}; " \ 312 "else " \ 313 "bootm; " \ 314 "fi; " \ 315 "fi\0" \ 316 \ 317 "sata_boot=" \ 318 "setenv fsload \"${fs}load sata ${disk}:${part}\"; " \ 319 "sata init && " \ 320 "setenv dtype sata; run loadscript; " \ 321 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 322 "setenv bootargs console=${console},${baudrate} " \ 323 "root=/dev/sda1 rootfstype=${fs} " \ 324 "rootwait rw ${video} ${extra}; " \ 325 "if run loadfdt; then " \ 326 "bootm ${loadaddr} - ${fdt_addr}; " \ 327 "else " \ 328 "bootm; " \ 329 "fi; " \ 330 "fi\0" \ 331 "usb_boot=" \ 332 "setenv fsload \"${fs}load usb ${disk}:${part}\"; " \ 333 "usb start && usb dev ${disk} && " \ 334 "setenv dtype usb; run loadscript; " \ 335 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 336 "setenv bootargs console=${console},${baudrate} " \ 337 "root=/dev/sda1 rootfstype=${fs} " \ 338 "rootwait rw ${video} ${extra}; " \ 339 "if run loadfdt; then " \ 340 "bootm ${loadaddr} - ${fdt_addr}; " \ 341 "else " \ 342 "bootm; " \ 343 "fi; " \ 344 "fi\0" 345 346 #ifdef CONFIG_SPI_FLASH 347 #define CONFIG_EXTRA_ENV_SETTINGS \ 348 CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 349 "image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \ 350 "image_uboot=ventana/u-boot_spi.imx\0" \ 351 \ 352 "spi_koffset=0x90000\0" \ 353 "spi_klen=0x200000\0" \ 354 \ 355 "spi_updateuboot=echo Updating uboot from " \ 356 "${serverip}:${image_uboot}...; " \ 357 "tftpboot ${loadaddr} ${image_uboot} && " \ 358 "sf probe && sf erase 0 80000 && " \ 359 "sf write ${loadaddr} 400 ${filesize}\0" \ 360 "spi_update=echo Updating OS from ${serverip}:${image_os} " \ 361 "to ${spi_koffset} ...; " \ 362 "tftp ${loadaddr} ${image_os} && " \ 363 "sf probe && " \ 364 "sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \ 365 \ 366 "flash_boot=" \ 367 "if sf probe && " \ 368 "sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \ 369 "setenv bootargs console=${console},${baudrate} " \ 370 "root=/dev/mtdblock3 " \ 371 "rootfstype=squashfs,jffs2 " \ 372 "${video} ${extra}; " \ 373 "bootm; " \ 374 "fi\0" 375 #else 376 #define CONFIG_EXTRA_ENV_SETTINGS \ 377 CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 378 \ 379 "image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \ 380 "nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \ 381 "tftp ${loadaddr} ${image_rootfs} && " \ 382 "nand erase.part rootfs && " \ 383 "nand write ${loadaddr} rootfs ${filesize}\0" \ 384 \ 385 "flash_boot=" \ 386 "setenv fsload 'ubifsload'; " \ 387 "ubi part rootfs; " \ 388 "if ubi check boot; then " \ 389 "ubifsmount ubi0:boot; " \ 390 "setenv root ubi0:rootfs ubi.mtd=2 " \ 391 "rootfstype=squashfs,ubifs; " \ 392 "setenv bootdir; " \ 393 "elif ubi check rootfs; then " \ 394 "ubifsmount ubi0:rootfs; " \ 395 "setenv root ubi0:rootfs ubi.mtd=2 " \ 396 "rootfstype=ubifs; " \ 397 "fi; " \ 398 "setenv dtype nand; run loadscript; " \ 399 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 400 "setenv bootargs console=${console},${baudrate} " \ 401 "root=${root} ${video} ${extra}; " \ 402 "if run loadfdt; then " \ 403 "ubifsumount; " \ 404 "bootm ${loadaddr} - ${fdt_addr}; " \ 405 "else " \ 406 "ubifsumount; bootm; " \ 407 "fi; " \ 408 "fi\0" 409 #endif 410 411 #define CONFIG_BOOTCOMMAND \ 412 "for btype in ${bootdevs}; do " \ 413 "echo; echo Attempting ${btype} boot...; " \ 414 "if run ${btype}_boot; then; fi; " \ 415 "done" 416 417 #endif /* __CONFIG_H */ 418