]> git.ipfire.org Git - people/ms/u-boot.git/blame_incremental - include/configs/xilinx-ppc440-generic.h
kconfig: add config option for shell prompt
[people/ms/u-boot.git] / include / configs / xilinx-ppc440-generic.h
... / ...
CommitLineData
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_PREBOOT "echo U-Boot is up and runnining;"
28
29/*Flash*/
30#define CONFIG_SYS_FLASH_SIZE (32*1024*1024)
31#define CONFIG_SYS_MAX_FLASH_SECT 259
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 */