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