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_BOARD_EARLY_INIT_F 43 #define CONFIG_MISC_INIT_R 44 45 /* Driver Model */ 46 #ifndef CONFIG_SPL_BUILD 47 #define CONFIG_DM_GPIO 48 #define CONFIG_DM_THERMAL 49 #endif 50 51 /* Thermal */ 52 #define CONFIG_IMX_THERMAL 53 54 /* Serial */ 55 #define CONFIG_MXC_UART 56 #define CONFIG_MXC_UART_BASE UART2_BASE 57 58 #ifdef CONFIG_SPI_FLASH 59 60 /* SPI */ 61 #ifdef CONFIG_CMD_SF 62 #define CONFIG_MXC_SPI 63 #define CONFIG_SPI_FLASH_MTD 64 #define CONFIG_SPI_FLASH_BAR 65 #define CONFIG_SF_DEFAULT_BUS 0 66 #define CONFIG_SF_DEFAULT_CS 0 67 /* GPIO 3-19 (21248) */ 68 #define CONFIG_SF_DEFAULT_SPEED 30000000 69 #define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0) 70 #endif 71 72 #else 73 /* Enable NAND support */ 74 #define CONFIG_CMD_NAND 75 #define CONFIG_CMD_NAND_TRIMFFS 76 #ifdef CONFIG_CMD_NAND 77 #define CONFIG_NAND_MXS 78 #define CONFIG_SYS_MAX_NAND_DEVICE 1 79 #define CONFIG_SYS_NAND_BASE 0x40000000 80 #define CONFIG_SYS_NAND_5_ADDR_CYCLE 81 #define CONFIG_SYS_NAND_ONFI_DETECTION 82 83 /* DMA stuff, needed for GPMI/MXS NAND support */ 84 #define CONFIG_APBH_DMA 85 #define CONFIG_APBH_DMA_BURST 86 #define CONFIG_APBH_DMA_BURST8 87 #endif 88 89 #endif /* CONFIG_SPI_FLASH */ 90 91 /* I2C Configs */ 92 #define CONFIG_SYS_I2C 93 #define CONFIG_SYS_I2C_MXC 94 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */ 95 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */ 96 #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */ 97 #define CONFIG_SYS_I2C_SPEED 100000 98 #define CONFIG_I2C_GSC 0 99 #define CONFIG_I2C_PMIC 1 100 #define CONFIG_I2C_EDID 101 102 /* MMC Configs */ 103 #define CONFIG_SYS_FSL_ESDHC_ADDR 0 104 #define CONFIG_SYS_FSL_USDHC_NUM 1 105 106 /* Filesystem support */ 107 #define CONFIG_CMD_UBIFS 108 109 /* 110 * SATA Configs 111 */ 112 #define CONFIG_CMD_SATA 113 #ifdef CONFIG_CMD_SATA 114 #define CONFIG_DWC_AHSATA 115 #define CONFIG_SYS_SATA_MAX_DEVICE 1 116 #define CONFIG_DWC_AHSATA_PORT_ID 0 117 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR 118 #define CONFIG_LBA48 119 #define CONFIG_LIBATA 120 #endif 121 122 /* 123 * PCI express 124 */ 125 #define CONFIG_CMD_PCI 126 #ifdef CONFIG_CMD_PCI 127 #define CONFIG_PCI 128 #define CONFIG_PCI_PNP 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_RBTREE 150 151 /* Ethernet support */ 152 #define CONFIG_FEC_MXC 153 #define CONFIG_MII 154 #define IMX_FEC_BASE ENET_BASE_ADDR 155 #define CONFIG_FEC_XCV_TYPE RGMII 156 #define CONFIG_FEC_MXC_PHYADDR 0 157 #define CONFIG_PHYLIB 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_USB_KEYBOARD 171 #define CONFIG_USBD_HS 172 #define CONFIG_USB_ETHER 173 #define CONFIG_USB_ETH_CDC 174 #define CONFIG_NETCONSOLE 175 #define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP 176 177 /* USB Mass Storage Gadget */ 178 #define CONFIG_USB_FUNCTION_MASS_STORAGE 179 180 /* Framebuffer and LCD */ 181 #define CONFIG_VIDEO_IPUV3 182 #define CONFIG_VIDEO_LOGO 183 #define CONFIG_IPUV3_CLK 260000000 184 #define CONFIG_CMD_HDMIDETECT 185 #define CONFIG_IMX_HDMI 186 #define CONFIG_IMX_VIDEO_SKIP 187 #define CONFIG_VIDEO_BMP_LOGO 188 #define CONFIG_SPLASH_SCREEN_ALIGN 189 #define CONFIG_HIDE_LOGO_VERSION /* Custom config to hide U-boot version */ 190 191 /* Miscellaneous configurable options */ 192 #define CONFIG_HWCONFIG 193 #define CONFIG_PREBOOT 194 195 /* Print Buffer Size */ 196 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 197 198 /* Memory configuration */ 199 #define CONFIG_SYS_MEMTEST_START 0x10000000 200 #define CONFIG_SYS_MEMTEST_END 0x10010000 201 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000 202 203 /* Physical Memory Map */ 204 #define CONFIG_NR_DRAM_BANKS 1 205 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR 206 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM 207 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 208 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE 209 210 #define CONFIG_SYS_INIT_SP_OFFSET \ 211 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) 212 #define CONFIG_SYS_INIT_SP_ADDR \ 213 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) 214 215 /* 216 * MTD Command for mtdparts 217 */ 218 #define CONFIG_LZO 219 #define CONFIG_CMD_MTDPARTS 220 #define CONFIG_MTD_DEVICE 221 #define CONFIG_MTD_PARTITIONS 222 #ifdef CONFIG_SPI_FLASH 223 #define MTDIDS_DEFAULT "nor0=nor" 224 #define MTDPARTS_DEFAULT \ 225 "mtdparts=nor:512k(uboot),64k(env),2m(kernel),-(rootfs)" 226 #else 227 #define MTDIDS_DEFAULT "nand0=nand" 228 #define MTDPARTS_DEFAULT "mtdparts=nand:16m(uboot),1m(env),-(rootfs)" 229 #endif 230 231 /* Persistent Environment Config */ 232 #ifdef CONFIG_SPI_FLASH 233 #define CONFIG_ENV_IS_IN_SPI_FLASH 234 #else 235 #define CONFIG_ENV_IS_IN_NAND 236 #endif 237 #if defined(CONFIG_ENV_IS_IN_MMC) 238 #define CONFIG_SYS_MMC_ENV_DEV 0 239 #define CONFIG_ENV_OFFSET (709 * SZ_1K) 240 #define CONFIG_ENV_SIZE (128 * SZ_1K) 241 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + (128 * SZ_1K)) 242 #elif defined(CONFIG_ENV_IS_IN_NAND) 243 #define CONFIG_ENV_OFFSET (16 * SZ_1M) 244 #define CONFIG_ENV_SECT_SIZE (128 * SZ_1K) 245 #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE 246 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + (512 * SZ_1K)) 247 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE 248 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) 249 #define CONFIG_ENV_OFFSET (512 * SZ_1K) 250 #define CONFIG_ENV_SECT_SIZE (64 * SZ_1K) 251 #define CONFIG_ENV_SIZE (8 * SZ_1K) 252 #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS 253 #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS 254 #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE 255 #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED 256 #endif 257 258 /* Environment */ 259 #define CONFIG_IPADDR 192.168.1.1 260 #define CONFIG_SERVERIP 192.168.1.146 261 262 #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 263 "pcidisable=1\0" \ 264 "splashpos=m,m\0" \ 265 "usb_pgood_delay=2000\0" \ 266 "console=ttymxc1\0" \ 267 "bootdevs=usb mmc sata flash\0" \ 268 "hwconfig=_UNKNOWN_\0" \ 269 "video=\0" \ 270 \ 271 "mtdparts=" MTDPARTS_DEFAULT "\0" \ 272 "mtdids=" MTDIDS_DEFAULT "\0" \ 273 "disk=0\0" \ 274 "part=1\0" \ 275 \ 276 "fdt_high=0xffffffff\0" \ 277 "fdt_addr=0x18000000\0" \ 278 "initrd_high=0xffffffff\0" \ 279 "fixfdt=" \ 280 "fdt addr ${fdt_addr}\0" \ 281 "bootdir=boot\0" \ 282 "loadfdt=" \ 283 "if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \ 284 "echo Loaded DTB from ${bootdir}/${fdt_file}; " \ 285 "run fixfdt; " \ 286 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \ 287 "echo Loaded DTB from ${bootdir}/${fdt_file1}; " \ 288 "run fixfdt; " \ 289 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \ 290 "echo Loaded DTB from ${bootdir}/${fdt_file2}; " \ 291 "run fixfdt; " \ 292 "fi\0" \ 293 \ 294 "fs=ext4\0" \ 295 "script=6x_bootscript-ventana\0" \ 296 "loadscript=" \ 297 "if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \ 298 "source ${loadaddr}; " \ 299 "fi\0" \ 300 \ 301 "uimage=uImage\0" \ 302 "mmc_root=/dev/mmcblk0p1 rootfstype=${fs} rootwait rw\0" \ 303 "mmc_boot=" \ 304 "setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \ 305 "mmc dev ${disk} && mmc rescan && " \ 306 "setenv dtype mmc; run loadscript; " \ 307 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 308 "setenv bootargs console=${console},${baudrate} " \ 309 "root=/dev/mmcblk0p1 rootfstype=${fs} " \ 310 "rootwait rw ${video} ${extra}; " \ 311 "if run loadfdt; then " \ 312 "bootm ${loadaddr} - ${fdt_addr}; " \ 313 "else " \ 314 "bootm; " \ 315 "fi; " \ 316 "fi\0" \ 317 \ 318 "sata_boot=" \ 319 "setenv fsload \"${fs}load sata ${disk}:${part}\"; " \ 320 "sata init && " \ 321 "setenv dtype sata; run loadscript; " \ 322 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 323 "setenv bootargs console=${console},${baudrate} " \ 324 "root=/dev/sda1 rootfstype=${fs} " \ 325 "rootwait rw ${video} ${extra}; " \ 326 "if run loadfdt; then " \ 327 "bootm ${loadaddr} - ${fdt_addr}; " \ 328 "else " \ 329 "bootm; " \ 330 "fi; " \ 331 "fi\0" \ 332 "usb_boot=" \ 333 "setenv fsload \"${fs}load usb ${disk}:${part}\"; " \ 334 "usb start && usb dev ${disk} && " \ 335 "setenv dtype usb; run loadscript; " \ 336 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 337 "setenv bootargs console=${console},${baudrate} " \ 338 "root=/dev/sda1 rootfstype=${fs} " \ 339 "rootwait rw ${video} ${extra}; " \ 340 "if run loadfdt; then " \ 341 "bootm ${loadaddr} - ${fdt_addr}; " \ 342 "else " \ 343 "bootm; " \ 344 "fi; " \ 345 "fi\0" 346 347 #ifdef CONFIG_SPI_FLASH 348 #define CONFIG_EXTRA_ENV_SETTINGS \ 349 CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 350 "image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \ 351 "image_uboot=ventana/u-boot_spi.imx\0" \ 352 \ 353 "spi_koffset=0x90000\0" \ 354 "spi_klen=0x200000\0" \ 355 \ 356 "spi_updateuboot=echo Updating uboot from " \ 357 "${serverip}:${image_uboot}...; " \ 358 "tftpboot ${loadaddr} ${image_uboot} && " \ 359 "sf probe && sf erase 0 80000 && " \ 360 "sf write ${loadaddr} 400 ${filesize}\0" \ 361 "spi_update=echo Updating OS from ${serverip}:${image_os} " \ 362 "to ${spi_koffset} ...; " \ 363 "tftp ${loadaddr} ${image_os} && " \ 364 "sf probe && " \ 365 "sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \ 366 \ 367 "flash_boot=" \ 368 "if sf probe && " \ 369 "sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \ 370 "setenv bootargs console=${console},${baudrate} " \ 371 "root=/dev/mtdblock3 " \ 372 "rootfstype=squashfs,jffs2 " \ 373 "${video} ${extra}; " \ 374 "bootm; " \ 375 "fi\0" 376 #else 377 #define CONFIG_EXTRA_ENV_SETTINGS \ 378 CONFIG_EXTRA_ENV_SETTINGS_COMMON \ 379 \ 380 "image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \ 381 "nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \ 382 "tftp ${loadaddr} ${image_rootfs} && " \ 383 "nand erase.part rootfs && " \ 384 "nand write ${loadaddr} rootfs ${filesize}\0" \ 385 \ 386 "flash_boot=" \ 387 "setenv fsload 'ubifsload'; " \ 388 "ubi part rootfs; " \ 389 "if ubi check boot; then " \ 390 "ubifsmount ubi0:boot; " \ 391 "setenv root ubi0:rootfs ubi.mtd=2 " \ 392 "rootfstype=squashfs,ubifs; " \ 393 "setenv bootdir; " \ 394 "elif ubi check rootfs; then " \ 395 "ubifsmount ubi0:rootfs; " \ 396 "setenv root ubi0:rootfs ubi.mtd=2 " \ 397 "rootfstype=ubifs; " \ 398 "fi; " \ 399 "setenv dtype nand; run loadscript; " \ 400 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \ 401 "setenv bootargs console=${console},${baudrate} " \ 402 "root=${root} ${video} ${extra}; " \ 403 "if run loadfdt; then " \ 404 "ubifsumount; " \ 405 "bootm ${loadaddr} - ${fdt_addr}; " \ 406 "else " \ 407 "ubifsumount; bootm; " \ 408 "fi; " \ 409 "fi\0" 410 #endif 411 412 #define CONFIG_BOOTCOMMAND \ 413 "for btype in ${bootdevs}; do " \ 414 "echo; echo Attempting ${btype} boot...; " \ 415 "if run ${btype}_boot; then; fi; " \ 416 "done" 417 418 #endif /* __CONFIG_H */ 419