uboot/include/configs/o2d300.h
<<
>>
Prefs
   1/*
   2 * (C) Copyright 2012
   3 * DENX Software Engineering, Anatolij Gustschin <agust@denx.de>
   4 *
   5 * This program is free software; you can redistribute it and/or
   6 * modify it under the terms of the GNU General Public License as
   7 * published by the Free Software Foundation; either version 2 of
   8 * the License, or (at your option) any later version.
   9 */
  10
  11/*
  12 * Valid values for CONFIG_SYS_TEXT_BASE are:
  13 * 0xFC000000   boot low boot high (standard configuration)
  14 * 0x00100000   boot from RAM (for testing only)
  15 */
  16#ifndef CONFIG_SYS_TEXT_BASE
  17#define CONFIG_SYS_TEXT_BASE    0xfc000000      /* Standard: boot low */
  18#endif
  19
  20/* Board specific flash config */
  21#define CONFIG_SYS_FLASH_BASE           0xfc000000
  22#define CONFIG_SYS_FLASH_SIZE           0x04000000      /* maximum 64MB */
  23/* max number of sectors on one chip */
  24#define CONFIG_SYS_MAX_FLASH_SECT       512
  25
  26/*
  27 * Include common defines for all ifm boards
  28 */
  29#include "o2dnt-common.h"
  30
  31/*
  32 * GPIO configuration:
  33 * CS1 SDRAM activate + no CAN + no PCI
  34 */
  35#define CONFIG_SYS_GPS_PORT_CONFIG      0x8000A004
  36
  37/* Other board specific configs */
  38#define CONFIG_SYS_BOOTCS_CFG           0x00057d01
  39#define CONFIG_SYS_RESET_ADDRESS        0xfc000000
  40
  41#define CONFIG_SYS_MEMTEST_START        0x00100000      /* memtest works on */
  42#define CONFIG_SYS_MEMTEST_END          0x07f00000      /* 1 - 127 MB in DRAM */
  43
  44/* Use redundant environment */
  45#define CONFIG_ENV_ADDR_REDUND          (CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE)
  46#define CONFIG_ENV_SIZE_REDUND          (CONFIG_ENV_SIZE)
  47
  48#define CONFIG_BOARD_NAME               "o2d300"
  49#define CONFIG_BOARD_BOOTCMD            "run dhcp_boot"
  50#define CONFIG_BOARD_MEM_LIMIT          xstr(126)
  51#define BOARD_POST_CRC32_END            xstr(0x02000000)
  52
  53#define CONFIG_EXTRA_ENV_SETTINGS                                       \
  54        CONFIG_IFM_DEFAULT_ENV_SETTINGS                                 \
  55        CONFIG_IFM_DEFAULT_ENV_OLD                                      \
  56        CONFIG_IFM_DEFAULT_ENV_NEW                                      \
  57        "autoload=no\0"                                                 \
  58        "dhcp_boot=run dhcpcmd;run flash_mtd\0"                         \
  59        "flash_mtd=run mtd_args addip addmem;"                          \
  60                "bootm ${kernel_addr}\0"                                \
  61        "mtd_args=setenv bootargs root=/dev/mtdblock4 "                 \
  62                "rw rootfstype=cramfs\0"                                \
  63        "linbot=fc080000\0"                                             \
  64        "lintop=fc17ffff\0"                                             \
  65        "rambot=fc180000\0"                                             \
  66        "ramtop=fc57ffff\0"                                             \
  67        "jffbot=fc580000\0"                                             \
  68        "jfftop=fd39ffff\0"                                             \
  69        "ubobot=" xstr(CONFIG_SYS_FLASH_BASE) "\0"                      \
  70        "ubotop=fc03ffff\0"                                             \
  71        "halname="CONFIG_BOARD_NAME"/"CONFIG_BOARD_NAME"_halcon\0"      \
  72        "halbot=fd3a0000\0"                                             \
  73        "haltop=fdf9ffff\0"                                             \
  74        "progHal=tftp 200000 ${halname};erase ${halbot} ${haltop};"     \
  75                "cp.b ${fileaddr} ${halbot} ${filesize}\0"              \
  76        "kernel_addr=0xfc060000\0"                                      \
  77        "ramdisk_addr=0xfc160000\0"                                     \
  78        "master=mw f0000b00 0x8005A006;mw f0000b0c ${IOpin};"           \
  79                "mw f0000b04 ${IOpin};mw f0000b10 0x20\0"               \
  80        "netretry=once\0"                                               \
  81        "protcmd=protect on ${linbot} ${lintop};"                       \
  82                "protect on ${rambot} ${ramtop}\0"                      \
  83        "o2derror=def_env\0"                                            \
  84        "sensorType=O2D300AA\0"
  85