1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2006 Freescale Semiconductor, Inc.
4  *                    Dave Liu <daveliu@freescale.com>
5  *
6  * Copyright (C) 2007 Logic Product Development, Inc.
7  *                    Peter Barada <peterb@logicpd.com>
8  *
9  * Copyright (C) 2007 MontaVista Software, Inc.
10  *                    Anton Vorontsov <avorontsov@ru.mvista.com>
11  *
12  * (C) Copyright 2008
13  * Heiko Schocher, DENX Software Engineering, hs@denx.de.
14  *
15  * (C) Copyright 2010-2013
16  * Lukas Roggli, KEYMILE Ltd, lukas.roggli@keymile.com
17  * Holger Brunck,  Keymile GmbH, holger.bruncl@keymile.com
18  */
19 
20 #ifndef __CONFIG_H
21 #define __CONFIG_H
22 
23 /*
24  * High Level Configuration Options
25  */
26 #define CONFIG_HOSTNAME		"tuxx1"
27 
28 /* include common defines/options for all Keymile boards */
29 #include "km/keymile-common.h"
30 #include "km/km-powerpc.h"
31 #include "km/km-mpc83xx.h"
32 #include "km/km-mpc832x.h"
33 
34 #define CONFIG_SYS_MAMR		(MxMR_GPL_x4DIS | \
35 				 0x0000c000 | \
36 				 MxMR_WLFx_2X)
37 
38 #endif /* __CONFIG_H */
39