uboot/include/configs/gw_ventana.h
<<
>>
Prefs
   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
  37/* Driver Model */
  38#ifndef CONFIG_SPL_BUILD
  39#define CONFIG_DM_THERMAL
  40#endif
  41
  42/* Thermal */
  43#define CONFIG_IMX_THERMAL
  44
  45/* Serial */
  46#define CONFIG_MXC_UART
  47#define CONFIG_MXC_UART_BASE           UART2_BASE
  48
  49#if !defined(CONFIG_SPI_FLASH) && defined(CONFIG_SPL_NAND_SUPPORT)
  50/* Enable NAND support */
  51#ifdef CONFIG_CMD_NAND
  52  #define CONFIG_SYS_MAX_NAND_DEVICE    1
  53  #define CONFIG_SYS_NAND_BASE          0x40000000
  54  #define CONFIG_SYS_NAND_5_ADDR_CYCLE
  55  #define CONFIG_SYS_NAND_ONFI_DETECTION
  56
  57  /* DMA stuff, needed for GPMI/MXS NAND support */
  58#endif
  59
  60#endif /* CONFIG_SPI_FLASH */
  61
  62/* I2C Configs */
  63#define CONFIG_SYS_I2C
  64#define CONFIG_SYS_I2C_MXC
  65#define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
  66#define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
  67#define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
  68#define CONFIG_SYS_I2C_SPEED            100000
  69#define CONFIG_I2C_GSC                  0
  70#define CONFIG_I2C_EDID
  71
  72/* MMC Configs */
  73#define CONFIG_SYS_FSL_ESDHC_ADDR      0
  74
  75/*
  76 * SATA Configs
  77 */
  78#ifdef CONFIG_CMD_SATA
  79  #define CONFIG_SYS_SATA_MAX_DEVICE    1
  80  #define CONFIG_DWC_AHSATA_PORT_ID     0
  81  #define CONFIG_DWC_AHSATA_BASE_ADDR   SATA_ARB_BASE_ADDR
  82  #define CONFIG_LBA48
  83#endif
  84
  85/*
  86 * PCI express
  87 */
  88#ifdef CONFIG_CMD_PCI
  89#define CONFIG_PCI_SCAN_SHOW
  90#define CONFIG_PCI_FIXUP_DEV
  91#define CONFIG_PCIE_IMX
  92#endif
  93
  94/*
  95 * PMIC
  96 */
  97#define CONFIG_POWER
  98#define CONFIG_POWER_I2C
  99#define CONFIG_POWER_PFUZE100
 100#define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
 101#define CONFIG_POWER_LTC3676
 102#define CONFIG_POWER_LTC3676_I2C_ADDR  0x3c
 103
 104/* Various command support */
 105#define CONFIG_CMD_UNZIP         /* gzwrite */
 106
 107/* Ethernet support */
 108#define CONFIG_FEC_MXC
 109#define IMX_FEC_BASE             ENET_BASE_ADDR
 110#define CONFIG_FEC_XCV_TYPE      RGMII
 111#define CONFIG_FEC_MXC_PHYADDR   0
 112#define CONFIG_ARP_TIMEOUT       200UL
 113
 114/* USB Configs */
 115#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
 116#define CONFIG_EHCI_HCD_INIT_AFTER_RESET  /* For OTG port */
 117#define CONFIG_MXC_USB_PORTSC     (PORT_PTS_UTMI | PORT_PTS_PTW)
 118#define CONFIG_MXC_USB_FLAGS      0
 119#define CONFIG_USBD_HS
 120#define CONFIG_NETCONSOLE
 121
 122/* Framebuffer and LCD */
 123#define CONFIG_VIDEO_LOGO
 124#define CONFIG_IMX_HDMI
 125#define CONFIG_IMX_VIDEO_SKIP
 126#define CONFIG_VIDEO_BMP_LOGO
 127#define CONFIG_SPLASH_SCREEN_ALIGN
 128#define CONFIG_HIDE_LOGO_VERSION  /* Custom config to hide U-boot version */
 129
 130/* Miscellaneous configurable options */
 131#define CONFIG_HWCONFIG
 132
 133/* Memory configuration */
 134#define CONFIG_SYS_MEMTEST_START       0x10000000
 135#define CONFIG_SYS_MEMTEST_END         0x10010000
 136#define CONFIG_SYS_MEMTEST_SCRATCH     0x10800000
 137
 138/* Physical Memory Map */
 139#define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
 140#define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
 141#define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
 142#define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
 143
 144#define CONFIG_SYS_INIT_SP_OFFSET \
 145        (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
 146#define CONFIG_SYS_INIT_SP_ADDR \
 147        (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
 148
 149/*
 150 * MTD Command for mtdparts
 151 */
 152
 153/* Persistent Environment Config */
 154#if defined(CONFIG_ENV_IS_IN_MMC)
 155  #define CONFIG_SYS_MMC_ENV_DEV         0
 156  #define CONFIG_SYS_MMC_ENV_PART        1
 157#endif
 158
 159/* Environment */
 160#define CONFIG_IPADDR             192.168.1.1
 161#define CONFIG_SERVERIP           192.168.1.146
 162
 163#define CONFIG_EXTRA_ENV_SETTINGS_COMMON \
 164        "pcidisable=1\0" \
 165        "splashpos=m,m\0" \
 166        "usb_pgood_delay=2000\0" \
 167        "console=ttymxc1\0" \
 168        "bootdevs=usb mmc sata flash\0" \
 169        "hwconfig=_UNKNOWN_\0" \
 170        "video=\0" \
 171        \
 172        "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
 173        "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
 174        "disk=0\0" \
 175        "part=1\0" \
 176        \
 177        "fdt_high=0xffffffff\0" \
 178        "fdt_addr=0x18000000\0" \
 179        "initrd_high=0xffffffff\0" \
 180        "fixfdt=" \
 181                "fdt addr ${fdt_addr}\0" \
 182        "bootdir=boot\0" \
 183        "loadfdt=" \
 184                "if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \
 185                        "echo Loaded DTB from ${bootdir}/${fdt_file}; " \
 186                        "run fixfdt; " \
 187                "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \
 188                        "echo Loaded DTB from ${bootdir}/${fdt_file1}; " \
 189                        "run fixfdt; " \
 190                "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \
 191                        "echo Loaded DTB from ${bootdir}/${fdt_file2}; " \
 192                        "run fixfdt; " \
 193                "fi\0" \
 194        \
 195        "fs=ext4\0" \
 196        "script=6x_bootscript-ventana\0" \
 197        "loadscript=" \
 198                "if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \
 199                        "source ${loadaddr}; " \
 200                "fi\0" \
 201        \
 202        "uimage=uImage\0" \
 203        "mmc_root=mmcblk0p1\0" \
 204        "mmc_boot=" \
 205                "setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \
 206                "mmc dev ${disk} && mmc rescan && " \
 207                "setenv dtype mmc; run loadscript; " \
 208                "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
 209                        "setenv bootargs console=${console},${baudrate} " \
 210                                "root=/dev/${mmc_root} rootfstype=${fs} " \
 211                                "rootwait rw ${video} ${extra}; " \
 212                        "if run loadfdt; then " \
 213                                "bootm ${loadaddr} - ${fdt_addr}; " \
 214                        "else " \
 215                                "bootm; " \
 216                        "fi; " \
 217                "fi\0" \
 218        \
 219        "sata_boot=" \
 220                "setenv fsload \"${fs}load sata ${disk}:${part}\"; " \
 221                "sata init && " \
 222                "setenv dtype sata; run loadscript; " \
 223                "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
 224                        "setenv bootargs console=${console},${baudrate} " \
 225                                "root=/dev/sda1 rootfstype=${fs} " \
 226                                "rootwait rw ${video} ${extra}; " \
 227                        "if run loadfdt; then " \
 228                                "bootm ${loadaddr} - ${fdt_addr}; " \
 229                        "else " \
 230                                "bootm; " \
 231                        "fi; " \
 232                "fi\0" \
 233        "usb_boot=" \
 234                "setenv fsload \"${fs}load usb ${disk}:${part}\"; " \
 235                "usb start && usb dev ${disk} && " \
 236                "setenv dtype usb; run loadscript; " \
 237                "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
 238                        "setenv bootargs console=${console},${baudrate} " \
 239                                "root=/dev/sda1 rootfstype=${fs} " \
 240                                "rootwait rw ${video} ${extra}; " \
 241                        "if run loadfdt; then " \
 242                                "bootm ${loadaddr} - ${fdt_addr}; " \
 243                        "else " \
 244                                "bootm; " \
 245                        "fi; " \
 246                "fi\0"
 247
 248#ifdef CONFIG_SPI_FLASH
 249        #define CONFIG_EXTRA_ENV_SETTINGS \
 250        CONFIG_EXTRA_ENV_SETTINGS_COMMON \
 251        "image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \
 252        "image_uboot=ventana/u-boot_spi.imx\0" \
 253        \
 254        "spi_koffset=0x90000\0" \
 255        "spi_klen=0x200000\0" \
 256        \
 257        "spi_updateuboot=echo Updating uboot from " \
 258                "${serverip}:${image_uboot}...; " \
 259                "tftpboot ${loadaddr} ${image_uboot} && " \
 260                "sf probe && sf erase 0 80000 && " \
 261                        "sf write ${loadaddr} 400 ${filesize}\0" \
 262        "spi_update=echo Updating OS from ${serverip}:${image_os} " \
 263                "to ${spi_koffset} ...; " \
 264                "tftp ${loadaddr} ${image_os} && " \
 265                "sf probe && " \
 266                "sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \
 267        \
 268        "flash_boot=" \
 269                "if sf probe && " \
 270                "sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \
 271                        "setenv bootargs console=${console},${baudrate} " \
 272                                "root=/dev/mtdblock3 " \
 273                                "rootfstype=squashfs,jffs2 " \
 274                                "${video} ${extra}; " \
 275                        "bootm; " \
 276                "fi\0"
 277#else
 278        #define CONFIG_EXTRA_ENV_SETTINGS \
 279        CONFIG_EXTRA_ENV_SETTINGS_COMMON \
 280        \
 281        "image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \
 282        "nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \
 283                "tftp ${loadaddr} ${image_rootfs} && " \
 284                "nand erase.part rootfs && " \
 285                "nand write ${loadaddr} rootfs ${filesize}\0" \
 286        \
 287        "flash_boot=" \
 288                "setenv fsload 'ubifsload'; " \
 289                "ubi part rootfs; " \
 290                "if ubi check boot; then " \
 291                        "ubifsmount ubi0:boot; " \
 292                        "setenv root ubi0:rootfs ubi.mtd=2 " \
 293                                "rootfstype=squashfs,ubifs; " \
 294                        "setenv bootdir; " \
 295                "elif ubi check rootfs; then " \
 296                        "ubifsmount ubi0:rootfs; " \
 297                        "setenv root ubi0:rootfs ubi.mtd=2 " \
 298                                "rootfstype=ubifs; " \
 299                "fi; " \
 300                "setenv dtype nand; run loadscript; " \
 301                "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
 302                        "setenv bootargs console=${console},${baudrate} " \
 303                                "root=${root} ${video} ${extra}; " \
 304                        "if run loadfdt; then " \
 305                                "ubifsumount; " \
 306                                "bootm ${loadaddr} - ${fdt_addr}; " \
 307                        "else " \
 308                                "ubifsumount; bootm; " \
 309                        "fi; " \
 310                "fi\0"
 311#endif
 312
 313#define CONFIG_BOOTCOMMAND \
 314        "for btype in ${bootdevs}; do " \
 315                "echo; echo Attempting ${btype} boot...; " \
 316                "if run ${btype}_boot; then; fi; " \
 317        "done"
 318
 319#endif                         /* __CONFIG_H */
 320