2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2010-02-18 07:08:25 +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 2010
|
|
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* High Level Configuration Options
|
|
|
|
*/
|
|
|
|
|
2018-03-28 12:38:20 +00:00
|
|
|
#define CONFIG_HOSTNAME "suvd3"
|
2019-01-21 08:18:23 +00:00
|
|
|
#define CONFIG_KM_BOARD_NAME "suvd3"
|
2019-01-21 08:17:32 +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-02-18 07:08:25 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_MAMR (MxMR_GPL_x4DIS | \
|
|
|
|
0x0000c000 | \
|
|
|
|
MxMR_WLFx_2X)
|
|
|
|
#endif /* __CONFIG_H */
|