]>
Commit | Line | Data |
---|---|---|
e07f4a80 RR |
1 | /* |
2 | * (C) Copyright 2008 | |
3 | * Ricado Ribalda-Universidad Autonoma de [email protected] | |
4 | * This work has been supported by: QTechnology http://qtec.com/ | |
1a459660 | 5 | * SPDX-License-Identifier: GPL-2.0+ |
e07f4a80 RR |
6 | */ |
7 | ||
8 | #ifndef __CONFIG_H | |
9 | #define __CONFIG_H | |
10 | ||
11 | /*CPU*/ | |
12 | #define CONFIG_440 1 | |
13 | #define CONFIG_XILINX_PPC440_GENERIC 1 | |
14 | #include "../board/xilinx/ppc440-generic/xparameters.h" | |
15 | ||
16 | /*Mem Map*/ | |
6d0f6bcf | 17 | #define CONFIG_SYS_SDRAM_SIZE_MB 256 |
e07f4a80 RR |
18 | |
19 | /*Env*/ | |
5a1aceb0 | 20 | #define CONFIG_ENV_IS_IN_FLASH 1 |
0e8d1586 JCPV |
21 | #define CONFIG_ENV_SIZE 0x20000 |
22 | #define CONFIG_ENV_SECT_SIZE 0x20000 | |
23 | #define CONFIG_ENV_OFFSET 0x340000 | |
24 | #define CONFIG_ENV_ADDR (XPAR_FLASH_MEM0_BASEADDR+CONFIG_ENV_OFFSET) | |
e07f4a80 RR |
25 | |
26 | /*Misc*/ | |
e07f4a80 RR |
27 | #define CONFIG_PREBOOT "echo U-Boot is up and runnining;" |
28 | ||
29 | /*Flash*/ | |
6d0f6bcf JCPV |
30 | #define CONFIG_SYS_FLASH_SIZE (32*1024*1024) |
31 | #define CONFIG_SYS_MAX_FLASH_SECT 259 | |
e07f4a80 RR |
32 | #define MTDIDS_DEFAULT "nor0=ml507-flash" |
33 | #define MTDPARTS_DEFAULT "mtdparts=ml507-flash:-(user)" | |
34 | ||
35 | /*Generic Configs*/ | |
36 | #include <configs/xilinx-ppc440.h> | |
37 | ||
38 | #endif /* __CONFIG_H */ |