2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2010-04-01 10:10:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 Freescale Semiconductor, Inc.
|
|
|
|
* Dave Liu <daveliu@freescale.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Logic Product Development, Inc.
|
|
|
|
* Peter Barada <peterb@logicpd.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 MontaVista Software, Inc.
|
|
|
|
* Anton Vorontsov <avorontsov@ru.mvista.com>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2008
|
|
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
|
|
*
|
2013-01-21 03:55:25 +00:00
|
|
|
* (C) Copyright 2010-2013
|
2010-04-01 10:10:30 +00:00
|
|
|
* Lukas Roggli, KEYMILE Ltd, lukas.roggli@keymile.com
|
2011-12-14 15:21:44 +00:00
|
|
|
* Holger Brunck, Keymile GmbH, holger.bruncl@keymile.com
|
2010-04-01 10:10:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* High Level Configuration Options
|
|
|
|
*/
|
2012-03-21 12:42:42 +00:00
|
|
|
#define CONFIG_KM_BOARD_NAME "tuxx1"
|
2018-03-28 12:38:20 +00:00
|
|
|
#define CONFIG_HOSTNAME "tuxx1"
|
2010-04-01 10:10:30 +00:00
|
|
|
|
2019-01-21 08:17:34 +00:00
|
|
|
/* include common defines/options for all Keymile boards */
|
|
|
|
#include "km/keymile-common.h"
|
|
|
|
#include "km/km-powerpc.h"
|
2019-01-21 08:18:23 +00:00
|
|
|
#include "km/km-mpc83xx.h"
|
|
|
|
#include "km/km-mpc832x.h"
|
2010-04-01 10:10:30 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_MAMR (MxMR_GPL_x4DIS | \
|
|
|
|
0x0000c000 | \
|
|
|
|
MxMR_WLFx_2X)
|
2013-01-21 03:55:26 +00:00
|
|
|
|
2010-04-01 10:10:30 +00:00
|
|
|
#endif /* __CONFIG_H */
|