uboot/include/configs/o2d.h
<<
>>
Prefs
   1/*
   2 * (C) Copyright 2012
   3 * DENX Software Engineering, Anatolij Gustschin <agust@denx.de>
   4 *
   5 * SPDX-License-Identifier:     GPL-2.0+
   6 */
   7
   8/*
   9 * Valid values for CONFIG_SYS_TEXT_BASE are:
  10 * 0xFC000000   boot low boot high (standard configuration)
  11 * 0x00100000   boot from RAM (for testing only)
  12 */
  13#ifndef CONFIG_SYS_TEXT_BASE
  14#define CONFIG_SYS_TEXT_BASE    0xfc000000      /* Standard: boot low */
  15#endif
  16
  17/* Board specific flash config */
  18#define CONFIG_SYS_FLASH_BASE           0xfc000000
  19#define CONFIG_SYS_FLASH_SIZE           0x04000000      /* maximum 64MB */
  20/* max number of sectors on one chip */
  21#define CONFIG_SYS_MAX_FLASH_SECT       512
  22
  23/*
  24 * Include common defines for all ifm boards
  25 */
  26#include "o2dnt-common.h"
  27
  28/*
  29 * GPIO configuration:
  30 * CS1 SDRAM activate + no CAN + no PCI
  31 */
  32#define CONFIG_SYS_GPS_PORT_CONFIG      0x8000A004
  33
  34/* Other board specific configs */
  35#define CONFIG_SYS_BOOTCS_CFG           0x00057d01
  36#define CONFIG_SYS_RESET_ADDRESS        0xfc000000
  37
  38#define CONFIG_SYS_MEMTEST_START        0x00100000      /* memtest works on */
  39#define CONFIG_SYS_MEMTEST_END          0x07f00000      /* 1 - 127 MB in DRAM */
  40
  41#define CONFIG_BOARD_NAME               "o2d"
  42#define CONFIG_BOARD_BOOTCMD            "run dhcp_boot"
  43#define CONFIG_BOARD_MEM_LIMIT          __stringify(126)
  44#define BOARD_POST_CRC32_END            __stringify(0x01000000)
  45
  46#define CONFIG_EXTRA_ENV_SETTINGS                                       \
  47        CONFIG_IFM_DEFAULT_ENV_SETTINGS                                 \
  48        CONFIG_IFM_DEFAULT_ENV_OLD                                      \
  49        CONFIG_IFM_DEFAULT_ENV_NEW                                      \
  50        "linbot=fc060000\0"                                             \
  51        "lintop=fc15ffff\0"                                             \
  52        "rambot=fc160000\0"                                             \
  53        "ramtop=fc55ffff\0"                                             \
  54        "jffbot=fc560000\0"                                             \
  55        "jfftop=fcffffff\0"                                             \
  56        "ubobot=" __stringify(CONFIG_SYS_FLASH_BASE) "\0"               \
  57        "ubotop=fc03ffff\0"                                             \
  58        "kernel_addr=0xfc060000\0"                                      \
  59        "ramdisk_addr=0xfc160000\0"                                     \
  60        "progCram=tftp ${fileaddr} ${cramfsname};"                      \
  61                "erase ${rambot} ${ramtop};"                            \
  62                "cp.b ${fileaddr} ${rambot} ${filesize}\0"              \
  63        "flash_for_configs=22396\0"                                     \
  64        "flash_mtd=run mtd_args addip addmem;"                          \
  65                "bootm ${kernel_addr}\0"                                \
  66        "mtd_args=setenv bootargs root=/dev/mtdblock3 "                 \
  67                "rw rootfstype=cramfs\0"                                \
  68        "master=mw f0000b00 0x8005A006;mw f0000b0c ${IOpin};"           \
  69                "mw f0000b04 ${IOpin};mw f0000b10 0x20\0"               \
  70        "dhcp_boot=run dhcpcmd;run flash_mtd\0"                         \
  71        "hostname=IFM_SENSOR\0"                                         \
  72        "netretry=once\0"                                               \
  73        "autoload=no\0"                                                 \
  74        "sensorType=O2D222AG\0"
  75