]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/glsdk-u-boot.git/blob - include/configs/o2d.h
HACK: ARM: DRA7xx: Add VPE crossbar setting
[glsdk/glsdk-u-boot.git] / include / configs / o2d.h
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  */
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
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
26 /*
27  * Include common defines for all ifm boards
28  */
29 #include "o2dnt-common.h"
31 /* additional commands */
32 #define CONFIG_CMD_ITEST
34 /*
35  * GPIO configuration:
36  * CS1 SDRAM activate + no CAN + no PCI
37  */
38 #define CONFIG_SYS_GPS_PORT_CONFIG      0x8000A004
40 /* Other board specific configs */
41 #define CONFIG_SYS_BOOTCS_CFG           0x00057d01
42 #define CONFIG_SYS_RESET_ADDRESS        0xfc000000
44 #define CONFIG_SYS_MEMTEST_START        0x00100000      /* memtest works on */
45 #define CONFIG_SYS_MEMTEST_END          0x07f00000      /* 1 - 127 MB in DRAM */
47 #define CONFIG_BOARD_NAME               "o2d"
48 #define CONFIG_BOARD_BOOTCMD            "run dhcp_boot"
49 #define CONFIG_BOARD_MEM_LIMIT          xstr(126)
50 #define BOARD_POST_CRC32_END            xstr(0x01000000)
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=fcffffff\0"                                             \
62         "ubobot=" xstr(CONFIG_SYS_FLASH_BASE) "\0"                      \
63         "ubotop=fc03ffff\0"                                             \
64         "kernel_addr=0xfc060000\0"                                      \
65         "ramdisk_addr=0xfc160000\0"                                     \
66         "progCram=tftp ${fileaddr} ${cramfsname};"                      \
67                 "erase ${rambot} ${ramtop};"                            \
68                 "cp.b ${fileaddr} ${rambot} ${filesize}\0"              \
69         "flash_for_configs=22396\0"                                     \
70         "flash_mtd=run mtd_args addip addmem;"                          \
71                 "bootm ${kernel_addr}\0"                                \
72         "mtd_args=setenv bootargs root=/dev/mtdblock3 "                 \
73                 "rw rootfstype=cramfs\0"                                \
74         "master=mw f0000b00 0x8005A006;mw f0000b0c ${IOpin};"           \
75                 "mw f0000b04 ${IOpin};mw f0000b10 0x20\0"               \
76         "dhcp_boot=run dhcpcmd;run flash_mtd\0"                         \
77         "hostname=IFM_SENSOR\0"                                         \
78         "netretry=once\0"                                               \
79         "autoload=no\0"                                                 \
80         "sensorType=O2D222AG\0"