6182b0e7cf05ae462d7a745f7cb43409369c8feb
[platform/kernel/u-boot.git] / include / configs / xilinx-ppc405-generic.h
1 /*
2  *
3  * (C) Copyright 2008
4  * Ricado Ribalda-Universidad Autonoma de Madrid-ricardo.ribalda@gmail.com
5  * This work has been supported by: QTechnology http://qtec.com/
6  *
7  * (C) Copyright 2008
8  * Georg Schardt <schardt@team-ctech.de>
9  *
10  * SPDX-License-Identifier:     GPL-2.0+
11  */
12 #ifndef __CONFIG_GEN_H
13 #define __CONFIG_GEN_H
14
15 #include "../board/xilinx/ppc405-generic/xparameters.h"
16
17 #define CONFIG_405              1
18 #define CONFIG_XILINX_405       1
19
20 /* sdram */
21 #define CONFIG_SYS_SDRAM_SIZE_MB        256
22
23 /* environment */
24 #define CONFIG_ENV_IS_IN_FLASH          1
25 #define CONFIG_ENV_SIZE                 0x10000
26 #define CONFIG_ENV_SECT_SIZE            0x10000
27 #define CONFIG_SYS_ENV_OFFSET           0x3F0000
28 #define CONFIG_ENV_ADDR         (CONFIG_SYS_FLASH_BASE+CONFIG_SYS_ENV_OFFSET)
29 #define CONFIG_ENV_OVERWRITE            1
30
31 /*Misc*/
32 #define CONFIG_PREBOOT          "echo U-Boot is up and running;"
33
34 /*Flash*/
35 #define CONFIG_SYS_FLASH_BASE           XPAR_FLASH_MEM0_BASEADDR
36 #define CONFIG_SYS_FLASH_SIZE           (128*1024*1024)
37 #define CONFIG_SYS_MAX_FLASH_SECT       1024
38 #define CONFIG_SYS_FLASH_CFI            1
39 #define CONFIG_FLASH_CFI_DRIVER         1
40 #define MTDIDS_DEFAULT                  "nor0=flash"
41 #define MTDPARTS_DEFAULT                "mtdparts=flash:-(user)"
42
43 #include <configs/xilinx-ppc.h>
44 #endif                  /* __CONFIG_H */