]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/xilinx-ppc440-generic.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / configs / xilinx-ppc440-generic.h
1 /*
2 * (C) Copyright 2008
3 * Ricado Ribalda-Universidad Autonoma de Madrid-ricardo.ribalda@uam.es
4 * This work has been supported by: QTechnology http://qtec.com/
5 * SPDX-License-Identifier: GPL-2.0+
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*/
17 #define CONFIG_SYS_SDRAM_SIZE_MB 256
18
19 /*Env*/
20 #define CONFIG_ENV_IS_IN_FLASH 1
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)
25
26 /*Misc*/
27 #define CONFIG_SYS_PROMPT "board:/# " /* Monitor Command Prompt */
28 #define CONFIG_PREBOOT "echo U-Boot is up and runnining;"
29
30 /*Flash*/
31 #define CONFIG_SYS_FLASH_SIZE (32*1024*1024)
32 #define CONFIG_SYS_MAX_FLASH_SECT 259
33 #define MTDIDS_DEFAULT "nor0=ml507-flash"
34 #define MTDPARTS_DEFAULT "mtdparts=ml507-flash:-(user)"
35
36 /*Generic Configs*/
37 #include <configs/xilinx-ppc440.h>
38
39 #endif /* __CONFIG_H */