]>
Commit | Line | Data |
---|---|---|
4387cf1a AG |
1 | /* |
2 | * (C) Copyright 2012 | |
3 | * DENX Software Engineering, Anatolij Gustschin <[email protected]> | |
4 | * | |
1a459660 | 5 | * SPDX-License-Identifier: GPL-2.0+ |
4387cf1a AG |
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 | /* Additional commands */ | |
29 | #define CONFIG_CMD_BSP | |
30 | #define CONFIG_CMD_REGINFO | |
31 | ||
32 | /* | |
33 | * GPIO configuration: | |
34 | * no CAN + no PCI | |
35 | */ | |
36 | #define CONFIG_SYS_GPS_PORT_CONFIG 0x0000A000 | |
37 | ||
38 | /* Other board specific configs */ | |
39 | #define CONFIG_SYS_BOOTCS_CFG 0x00057d01 | |
40 | #define CONFIG_SYS_RESET_ADDRESS 0xfc000000 | |
41 | ||
42 | #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */ | |
43 | #define CONFIG_SYS_MEMTEST_END 0x03f00000 /* 1 - 63 MB in DRAM */ | |
44 | ||
45 | #define CONFIG_BOARD_NAME "o3dnt" | |
46 | #define CONFIG_BOARD_BOOTCMD "run flash_self" | |
47 | #define CONFIG_BOARD_MEM_LIMIT xstr(62) | |
48 | #define BOARD_POST_CRC32_END xstr(0x01000000) | |
49 | ||
50 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
51 | CONFIG_IFM_DEFAULT_ENV_SETTINGS \ | |
52 | CONFIG_IFM_DEFAULT_ENV_OLD \ | |
53 | CONFIG_IFM_DEFAULT_ENV_NEW \ | |
54 | "linbot=fc060000\0" \ | |
55 | "lintop=fc15ffff\0" \ | |
56 | "rambot=fc160000\0" \ | |
57 | "ramtop=fc55ffff\0" \ | |
58 | "jffbot=fc560000\0" \ | |
59 | "jfftop=fce5ffff\0" \ | |
60 | "ubobot=" xstr(CONFIG_SYS_FLASH_BASE) "\0" \ | |
61 | "ubotop=fc03ffff\0" \ | |
62 | "calname="CONFIG_BOARD_NAME"/uCal_"CONFIG_BOARD_NAME"_act\0" \ | |
63 | "calbot=fce60000\0" \ | |
64 | "caltop=fcffffff\0" \ | |
65 | "progCal=tftp 200000 ${calname};erase ${calbot} ${caltop};" \ | |
66 | "cp.b ${fileaddr} ${calbot} ${filesize}\0" \ | |
67 | "kernel_addr=0xfc060000\0" \ | |
68 | "ramdisk_addr=0xfc160000\0" \ | |
69 | "master=mw f0000b00 0x0005A006;mw f0000b0c ${IOpin};" \ | |
70 | "mw f0000b04 ${IOpin};mw f0000b10 0x20\0" |