uboot/include/configs/suvd3.h
<<
>>
Prefs
   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 2010
  13 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  14 */
  15
  16#ifndef __CONFIG_H
  17#define __CONFIG_H
  18
  19/*
  20 * High Level Configuration Options
  21 */
  22
  23#define CONFIG_HOSTNAME         "suvd3"
  24#define CONFIG_KM_BOARD_NAME    "suvd3"
  25
  26/* include common defines/options for all Keymile boards */
  27#include "km/keymile-common.h"
  28#include "km/km-powerpc.h"
  29#include "km/km-mpc83xx.h"
  30#include "km/km-mpc832x.h"
  31
  32#define CONFIG_SYS_MAMR (MxMR_GPL_x4DIS | \
  33                         0x0000c000 | \
  34                         MxMR_WLFx_2X)
  35#endif /* __CONFIG_H */
  36