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