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 104 /* eMMC Configs */ 105 #define CONFIG_SUPPORT_EMMC_BOOT 106 #define CONFIG_SUPPORT_EMMC_RPMB 107 108 /* Filesystem support */ 109 #define CONFIG_CMD_UBIFS 110 111 /* 112 * SATA Configs 113 */ 114 #define CONFIG_CMD_SATA 115 #ifdef CONFIG_CMD_SATA 116 #define CONFIG_DWC_AHSATA 117 #define CONFIG_SYS_SATA_MAX_DEVICE 1 118 #define CONFIG_DWC_AHSATA_PORT_ID 0 119 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR 120 #define CONFIG_LBA48 121 #define CONFIG_LIBATA 122 #endif 123 124 /* 125 * PCI express 126 */ 127 #define CONFIG_CMD_PCI 128 #ifdef CONFIG_CMD_PCI 129 #define CONFIG_PCI_SCAN_SHOW 130 #define CONFIG_PCI_FIXUP_DEV 131 #define CONFIG_PCIE_IMX 132 #endif 133 134 /* 135 * PMIC 136 */ 137 #define CONFIG_POWER 138 #define CONFIG_POWER_I2C 139 #define CONFIG_POWER_PFUZE100 140 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08 141 #define CONFIG_POWER_LTC3676 142 #define CONFIG_POWER_LTC3676_I2C_ADDR 0x3c 143 144 /* Various command support */ 145 #define CONFIG_CMD_BMODE /* set eFUSE shadow for a boot dev and reset */ 146 #define CONFIG_CMD_HDMIDETECT /* detect HDMI output device */ 147 #define CONFIG_CMD_GSC 148 #define CONFIG_CMD_EECONFIG /* Gateworks EEPROM config cmd */ 149 #define CONFIG_CMD_UNZIP /* gzwrite */ 150 #define CONFIG_RBTREE 151 152 /* Ethernet support */ 153 #define CONFIG_FEC_MXC 154 #define CONFIG_MII 155 #define IMX_FEC_BASE ENET_BASE_ADDR 156 #define CONFIG_FEC_XCV_TYPE RGMII 157 #define CONFIG_FEC_MXC_PHYADDR 0 158 #define CONFIG_ARP_TIMEOUT 200UL 159 160 /* USB Configs */ 161 #define CONFIG_USB_EHCI 162 #define CONFIG_USB_EHCI_MX6 163 #define CONFIG_USB_HOST_ETHER 164 #define CONFIG_USB_ETHER_ASIX 165 #define CONFIG_USB_ETHER_SMSC95XX 166 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 167 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */ 168 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) 169 #define CONFIG_MXC_USB_FLAGS 0 170 #define CONFIG_USBD_HS 171 #define CONFIG_USB_ETHER 172 #define CONFIG_USB_ETH_CDC 173 #define CONFIG_NETCONSOLE 174 #define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP 175 176 /* USB Mass Storage Gadget */ 177 #define CONFIG_USB_FUNCTION_MASS_STORAGE 178 179 /* Framebuffer and LCD */ 180 #define CONFIG_VIDEO_IPUV3 181 #define CONFIG_VIDEO_LOGO 182 #define CONFIG_IPUV3_CLK 260000000 183 #define CONFIG_CMD_HDMIDETECT 184 #define CONFIG_IMX_HDMI 185 #define CONFIG_IMX_VIDEO_SKIP 186 #define CONFIG_VIDEO_BMP_LOGO 187 #define CONFIG_SPLASH_SCREEN_ALIGN 188 #define CONFIG_HIDE_LOGO_VERSION /* Custom config to hide U-boot version */ 189 190 /* Miscellaneous configurable options */ 191 #define CONFIG_HWCONFIG 192 #define CONFIG_PREBOOT 193 194 /* Print Buffer Size */ 195 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 196 197 /* Memory configuration */ 198 #define CONFIG_SYS_MEMTEST_START 0x10000000 199 #define CONFIG_SYS_MEMTEST_END 0x10010000 200 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000 201 202 /* Physical Memory Map */ 203 #define CONFIG_NR_DRAM_BANKS 1 204 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR 205 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM 206 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 207 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE 208 209 #define CONFIG_SYS_INIT_SP_OFFSET \ 210 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) 211 #define CONFIG_SYS_INIT_SP_ADDR \ 212 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) 213 214 /* 215 * MTD Command for mtdparts 216 */ 217 #define CONFIG_LZO 218 #define CONFIG_CMD_MTDPARTS 219 #define CONFIG_MTD_DEVICE 220 #define CONFIG_MTD_PARTITIONS 221 #ifdef CONFIG_SPI_FLASH 222 #define MTDIDS_DEFAULT "nor0=nor" 223 #define MTDPARTS_DEFAULT \ 224 "mtdparts=nor:512k(uboot),64k(env),2m(kernel),-(rootfs)" 225 #else 226 #define MTDIDS_DEFAULT "nand0=nand" 227 #define MTDPARTS_DEFAULT "mtdparts=nand:16m(uboot),1m(env),-(rootfs)" 228 #endif 229 230 /* Persistent Environment Config */ 231 #ifdef CONFIG_SPI_FLASH 232 #define CONFIG_ENV_IS_IN_SPI_FLASH 233 #elif defined(CONFIG_SPL_NAND_SUPPORT) 234 #define CONFIG_ENV_IS_IN_NAND 235 #else 236 #define CONFIG_ENV_IS_IN_MMC 237 #endif 238 #if defined(CONFIG_ENV_IS_IN_MMC) 239 #define CONFIG_SYS_MMC_ENV_DEV 0 240 #define CONFIG_SYS_MMC_ENV_PART 1 241 #define CONFIG_ENV_OFFSET (709 * SZ_1K) 242 #define CONFIG_ENV_SIZE (128 * SZ_1K) 243 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + (128 * SZ_1K)) 244 #elif defined(CONFIG_ENV_IS_IN_NAND) 245 #define CONFIG_ENV_OFFSET (16 * SZ_1M) 246 #define CONFIG_ENV_SECT_SIZE (128 * SZ_1K) 247 #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE 248 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + (512 * SZ_1K)) 249 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE 250 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) 251 #define CONFIG_ENV_OFFSET (512 * SZ_1K) 252 #define CONFIG_ENV_SECT_SIZE (64 * SZ_1K) 253 #define CONFIG_ENV_SIZE (8 * SZ_1K) 254 #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS 255 #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS 256 #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE 257 #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED 258 #endif 259 260 /* Environment */ 261 #define CONFIG_IPADDR 192.168.1.1 262 #define CONFIG_SERVERIP 192.168.1.146 263 264 #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 265 "pcidisable=1\0" \ 266 "splashpos=m,m\0" \ 267 "usb_pgood_delay=2000\0" \ 268 "console=ttymxc1\0" \ 269 "bootdevs=usb mmc sata flash\0" \ 270 "hwconfig=_UNKNOWN_\0" \ 271 "video=\0" \ 272 \ 273 "mtdparts=" MTDPARTS_DEFAULT "\0" \ 274 "mtdids=" MTDIDS_DEFAULT "\0" \ 275 "disk=0\0" \ 276 "part=1\0" \ 277 \ 278 "fdt_high=0xffffffff\0" \ 279 "fdt_addr=0x18000000\0" \ 280 "initrd_high=0xffffffff\0" \ 281 "fixfdt=" \ 282 "fdt addr ${fdt_addr}\0" \ 283 "bootdir=boot\0" \ 284 "loadfdt=" \ 285 "if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \ 286 "echo Loaded DTB from ${bootdir}/${fdt_file}; " \ 287 "run fixfdt; " \ 288 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \ 289 "echo Loaded DTB from ${bootdir}/${fdt_file1}; " \ 290 "run fixfdt; " \ 291 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \ 292 "echo Loaded DTB from ${bootdir}/${fdt_file2}; " \ 293 "run fixfdt; " \ 294 "fi\0" \ 295 \ 296 "fs=ext4\0" \ 297 "script=6x_bootscript-ventana\0" \ 298 "loadscript=" \ 299 "if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \ 300 "source ${loadaddr}; " \ 301 "fi\0" \ 302 \ 303 "uimage=uImage\0" \ 304 "mmc_root=mmcblk0p1\0" \ 305 "mmc_boot=" \ 306 "setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \ 307 "mmc dev ${disk} && mmc rescan && " \ 308 "setenv dtype mmc; run loadscript; " \ 309 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 310 "setenv bootargs console=${console},${baudrate} " \ 311 "root=/dev/${mmc_root} rootfstype=${fs} " \ 312 "rootwait rw ${video} ${extra}; " \ 313 "if run loadfdt; then " \ 314 "bootm ${loadaddr} - ${fdt_addr}; " \ 315 "else " \ 316 "bootm; " \ 317 "fi; " \ 318 "fi\0" \ 319 \ 320 "sata_boot=" \ 321 "setenv fsload \"${fs}load sata ${disk}:${part}\"; " \ 322 "sata init && " \ 323 "setenv dtype sata; run loadscript; " \ 324 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 325 "setenv bootargs console=${console},${baudrate} " \ 326 "root=/dev/sda1 rootfstype=${fs} " \ 327 "rootwait rw ${video} ${extra}; " \ 328 "if run loadfdt; then " \ 329 "bootm ${loadaddr} - ${fdt_addr}; " \ 330 "else " \ 331 "bootm; " \ 332 "fi; " \ 333 "fi\0" \ 334 "usb_boot=" \ 335 "setenv fsload \"${fs}load usb ${disk}:${part}\"; " \ 336 "usb start && usb dev ${disk} && " \ 337 "setenv dtype usb; run loadscript; " \ 338 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 339 "setenv bootargs console=${console},${baudrate} " \ 340 "root=/dev/sda1 rootfstype=${fs} " \ 341 "rootwait rw ${video} ${extra}; " \ 342 "if run loadfdt; then " \ 343 "bootm ${loadaddr} - ${fdt_addr}; " \ 344 "else " \ 345 "bootm; " \ 346 "fi; " \ 347 "fi\0" 348 349 #ifdef CONFIG_SPI_FLASH 350 #define CONFIG_EXTRA_ENV_SETTINGS \ 351 CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 352 "image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \ 353 "image_uboot=ventana/u-boot_spi.imx\0" \ 354 \ 355 "spi_koffset=0x90000\0" \ 356 "spi_klen=0x200000\0" \ 357 \ 358 "spi_updateuboot=echo Updating uboot from " \ 359 "${serverip}:${image_uboot}...; " \ 360 "tftpboot ${loadaddr} ${image_uboot} && " \ 361 "sf probe && sf erase 0 80000 && " \ 362 "sf write ${loadaddr} 400 ${filesize}\0" \ 363 "spi_update=echo Updating OS from ${serverip}:${image_os} " \ 364 "to ${spi_koffset} ...; " \ 365 "tftp ${loadaddr} ${image_os} && " \ 366 "sf probe && " \ 367 "sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \ 368 \ 369 "flash_boot=" \ 370 "if sf probe && " \ 371 "sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \ 372 "setenv bootargs console=${console},${baudrate} " \ 373 "root=/dev/mtdblock3 " \ 374 "rootfstype=squashfs,jffs2 " \ 375 "${video} ${extra}; " \ 376 "bootm; " \ 377 "fi\0" 378 #else 379 #define CONFIG_EXTRA_ENV_SETTINGS \ 380 CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 381 \ 382 "image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \ 383 "nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \ 384 "tftp ${loadaddr} ${image_rootfs} && " \ 385 "nand erase.part rootfs && " \ 386 "nand write ${loadaddr} rootfs ${filesize}\0" \ 387 \ 388 "flash_boot=" \ 389 "setenv fsload 'ubifsload'; " \ 390 "ubi part rootfs; " \ 391 "if ubi check boot; then " \ 392 "ubifsmount ubi0:boot; " \ 393 "setenv root ubi0:rootfs ubi.mtd=2 " \ 394 "rootfstype=squashfs,ubifs; " \ 395 "setenv bootdir; " \ 396 "elif ubi check rootfs; then " \ 397 "ubifsmount ubi0:rootfs; " \ 398 "setenv root ubi0:rootfs ubi.mtd=2 " \ 399 "rootfstype=ubifs; " \ 400 "fi; " \ 401 "setenv dtype nand; run loadscript; " \ 402 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 403 "setenv bootargs console=${console},${baudrate} " \ 404 "root=${root} ${video} ${extra}; " \ 405 "if run loadfdt; then " \ 406 "ubifsumount; " \ 407 "bootm ${loadaddr} - ${fdt_addr}; " \ 408 "else " \ 409 "ubifsumount; bootm; " \ 410 "fi; " \ 411 "fi\0" 412 #endif 413 414 #define CONFIG_BOOTCOMMAND \ 415 "for btype in ${bootdevs}; do " \ 416 "echo; echo Attempting ${btype} boot...; " \ 417 "if run ${btype}_boot; then; fi; " \ 418 "done" 419 420 #endif /* __CONFIG_H */ 421