]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
0f2b721c HB |
2 | /* |
3 | * (C) Copyright 2012 | |
4 | * Holger Brunck, Keymile GmbH Hannover, <[email protected]> | |
5 | * Christian Herzig, Keymile AG Switzerland, <[email protected]> | |
0f2b721c HB |
6 | */ |
7 | ||
8 | #ifndef __CONFIG_H | |
9 | #define __CONFIG_H | |
10 | ||
5bc0543d | 11 | #define CONFIG_HOSTNAME "kmcoge5ne" |
be7576fa | 12 | #define CONFIG_NAND_ECC_BCH |
0f2b721c HB |
13 | #define CONFIG_NAND_KMETER1 |
14 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 | |
15 | #define NAND_MAX_CHIPS 1 | |
16 | #define CONFIG_SYS_NAND_BASE CONFIG_SYS_KMBEC_FPGA_BASE /* PRIO_BASE_ADDRESS */ | |
17 | ||
18 | #define CONFIG_KM_UBI_PARTITION_NAME_BOOT "ubi0" | |
19 | #define CONFIG_KM_UBI_PARTITION_NAME_APP "ubi1" | |
0f2b721c | 20 | |
fb1b099f MS |
21 | /* include common defines/options for all Keymile boards */ |
22 | #include "km/keymile-common.h" | |
23 | #include "km/km-powerpc.h" | |
aed7d0e3 MS |
24 | #include "km/km-mpc83xx.h" |
25 | #include "km/km-mpc8360.h" | |
fb1b099f | 26 | |
0f2b721c HB |
27 | /** |
28 | * KMCOGE5NE has 512 MB RAM | |
29 | */ | |
30 | #define CONFIG_SYS_DDR_CS0_CONFIG (\ | |
31 | CSCONFIG_EN | \ | |
32 | CSCONFIG_AP | \ | |
22554ba1 | 33 | CSCONFIG_ODT_WR_ONLY_CURRENT | \ |
0f2b721c HB |
34 | CSCONFIG_BANK_BIT_3 | \ |
35 | CSCONFIG_ROW_BIT_13 | \ | |
36 | CSCONFIG_COL_BIT_10) | |
0f2b721c | 37 | |
0f2b721c HB |
38 | /* |
39 | * BFTIC3 on the local bus CS4 | |
40 | */ | |
41 | #define CONFIG_SYS_BFTIC3_BASE 0xB0000000 | |
42 | #define CONFIG_SYS_BFTIC3_SIZE 256 | |
43 | ||
95209b66 TH |
44 | /* enable POST tests */ |
45 | #define CONFIG_POST (CONFIG_SYS_POST_MEMORY|CONFIG_SYS_POST_MEM_REGIONS) | |
46 | #define CONFIG_POST_EXTERNAL_WORD_FUNCS /* use own functions, not generic */ | |
c904a0b7 | 47 | #define CPM_POST_WORD_ADDR CONFIG_SYS_MEMTEST_END |
95209b66 TH |
48 | #define CONFIG_TESTPIN_REG gprt3 /* for kmcoge5ne */ |
49 | #define CONFIG_TESTPIN_MASK 0x20 /* for kmcoge5ne */ | |
95209b66 | 50 | |
0f2b721c | 51 | #endif /* CONFIG */ |