1*83b40c31SHolger Brunck /*
2*83b40c31SHolger Brunck  * (C) Copyright 2009
3*83b40c31SHolger Brunck  * Marvell Semiconductor <www.marvell.com>
4*83b40c31SHolger Brunck  * Prafulla Wadaskar <prafulla@marvell.com>
5*83b40c31SHolger Brunck  *
6*83b40c31SHolger Brunck  * (C) Copyright 2009
7*83b40c31SHolger Brunck  * Stefan Roese, DENX Software Engineering, sr@denx.de.
8*83b40c31SHolger Brunck  *
9*83b40c31SHolger Brunck  * (C) Copyright 2011
10*83b40c31SHolger Brunck  * Holger Brunck, Keymile GmbH Hannover, holger.brunck@keymile.de
11*83b40c31SHolger Brunck  *
12*83b40c31SHolger Brunck  * See file CREDITS for list of people who contributed to this
13*83b40c31SHolger Brunck  * project.
14*83b40c31SHolger Brunck  *
15*83b40c31SHolger Brunck  * This program is free software; you can redistribute it and/or
16*83b40c31SHolger Brunck  * modify it under the terms of the GNU General Public License as
17*83b40c31SHolger Brunck  * published by the Free Software Foundation; either version 2 of
18*83b40c31SHolger Brunck  * the License, or (at your option) any later version.
19*83b40c31SHolger Brunck  *
20*83b40c31SHolger Brunck  * This program is distributed in the hope that it will be useful,
21*83b40c31SHolger Brunck  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22*83b40c31SHolger Brunck  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
23*83b40c31SHolger Brunck  * GNU General Public License for more details.
24*83b40c31SHolger Brunck  *
25*83b40c31SHolger Brunck  * You should have received a copy of the GNU General Public License
26*83b40c31SHolger Brunck  * along with this program; if not, write to the Free Software
27*83b40c31SHolger Brunck  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28*83b40c31SHolger Brunck  * MA 02110-1301 USA
29*83b40c31SHolger Brunck  */
30*83b40c31SHolger Brunck 
31*83b40c31SHolger Brunck /*
32*83b40c31SHolger Brunck  * for linking errors see
33*83b40c31SHolger Brunck  * http://lists.denx.de/pipermail/u-boot/2009-July/057350.html
34*83b40c31SHolger Brunck  */
35*83b40c31SHolger Brunck 
36*83b40c31SHolger Brunck #ifndef _CONFIG_KM_KIRKWOOD_H
37*83b40c31SHolger Brunck #define _CONFIG_KM_KIRKWOOD_H
38*83b40c31SHolger Brunck 
39*83b40c31SHolger Brunck /* include common defines/options for all arm based Keymile boards */
40*83b40c31SHolger Brunck #include "km/km_arm.h"
41*83b40c31SHolger Brunck 
42*83b40c31SHolger Brunck /*
43*83b40c31SHolger Brunck  * Version number information
44*83b40c31SHolger Brunck  */
45*83b40c31SHolger Brunck #ifdef CONFIG_KM_DISABLE_PCI
46*83b40c31SHolger Brunck #define CONFIG_IDENT_STRING	"\nKeymile Kirkwood"
47*83b40c31SHolger Brunck #undef  CONFIG_KIRKWOOD_PCIE_INIT
48*83b40c31SHolger Brunck #else
49*83b40c31SHolger Brunck #define CONFIG_IDENT_STRING	"\nKeymile Kirkwood PCI"
50*83b40c31SHolger Brunck #endif
51*83b40c31SHolger Brunck 
52*83b40c31SHolger Brunck #define CONFIG_HOSTNAME			km_kirkwood
53*83b40c31SHolger Brunck 
54*83b40c31SHolger Brunck #define KM_IVM_BUS	"pca9544a:70:9"	/* I2C2 (Mux-Port 1)*/
55*83b40c31SHolger Brunck #define KM_ENV_BUS	"pca9544a:70:d"	/* I2C2 (Mux-Port 5)*/
56*83b40c31SHolger Brunck 
57*83b40c31SHolger Brunck #endif /* _CONFIG_KM_KIRKWOOD */
58