uboot/include/configs/o2dnt2.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/* additional commands */
  32#define CONFIG_CMD_ITEST
  33
  34/*
  35 * GPIO configuration:
  36 * CS1 SDRAM activate + no CAN + no PCI
  37 */
  38#define CONFIG_SYS_GPS_PORT_CONFIG      0x8000A004
  39
  40/* Other board specific configs */
  41#define CONFIG_SYS_BOOTCS_CFG           0x00057d01
  42#define CONFIG_SYS_RESET_ADDRESS        0xfc000000
  43
  44#define CONFIG_SYS_MEMTEST_START        0x00100000      /* memtest works on */
  45#define CONFIG_SYS_MEMTEST_END          0x07f00000      /* 1 - 127 MB in DRAM */
  46
  47#define CONFIG_BOARD_NAME               "o2dnt2"
  48#define CONFIG_BOARD_BOOTCMD            "run flash_self"
  49#define CONFIG_BOARD_MEM_LIMIT          xstr(126)
  50#define BOARD_POST_CRC32_END            xstr(0x01000000)
  51
  52#define CONFIG_EXTRA_ENV_SETTINGS                                       \
  53        CONFIG_IFM_DEFAULT_ENV_SETTINGS                                 \
  54        CONFIG_IFM_DEFAULT_ENV_OLD                                      \
  55        CONFIG_IFM_DEFAULT_ENV_NEW                                      \
  56        "linbot=fc060000\0"                                             \
  57        "lintop=fc15ffff\0"                                             \
  58        "rambot=fc160000\0"                                             \
  59        "ramtop=fc55ffff\0"                                             \
  60        "jffbot=fc560000\0"                                             \
  61        "jfftop=fce5ffff\0"                                             \
  62        "ubobot=" xstr(CONFIG_SYS_FLASH_BASE) "\0"                      \
  63        "ubotop=fc03ffff\0"                                             \
  64        "calname="CONFIG_BOARD_NAME"/uCal_"CONFIG_BOARD_NAME"_act\0"    \
  65        "calbot=fce60000\0"                                             \
  66        "caltop=fcffffff\0"                                             \
  67        "progCal=tftp 200000 ${calname};erase ${calbot} ${caltop};"     \
  68                "cp.b ${fileaddr} ${calbot} ${filesize}\0"              \
  69        "kernel_addr=0xfc060000\0"                                      \
  70        "ramdisk_addr=0xfc160000\0"                                     \
  71        "master=mw f0000b00 0x8005A006;mw f0000b0c ${IOpin};"           \
  72                "mw f0000b04 ${IOpin};mw f0000b10 0x20\0"
  73