1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2012 4 * Holger Brunck, Keymile GmbH Hannover, <holger.brunck@keymile.com> 5 * Christian Herzig, Keymile AG Switzerland, <christian.herzig@keymile.com> 6 */ 7 8 #ifndef __CONFIG_H 9 #define __CONFIG_H 10 11 #define CONFIG_HOSTNAME "kmeter1" 12 13 /* include common defines/options for all Keymile boards */ 14 #include "km/keymile-common.h" 15 #include "km/km-powerpc.h" 16 #include "km/km-mpc83xx.h" 17 #include "km/km-mpc8360.h" 18 19 #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN | CSCONFIG_AP | \ 20 CSCONFIG_ROW_BIT_13 | \ 21 CSCONFIG_COL_BIT_10 | \ 22 CSCONFIG_ODT_WR_ONLY_CURRENT) 23 #endif /* CONFIG */ 24