2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2003-12-08 01:34:36 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000 - 2003
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
2005-11-25 15:38:03 +00:00
|
|
|
********************************************************************
|
|
|
|
* NOTE: This header file defines an interface to U-Boot. Including
|
|
|
|
* this (unmodified) header file in another file is considered normal
|
|
|
|
* use of U-Boot, and does *not* fall under the heading of "derived
|
|
|
|
* work".
|
|
|
|
********************************************************************
|
2003-12-08 01:34:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __U_BOOT_H__
|
|
|
|
#define __U_BOOT_H__
|
|
|
|
|
2015-02-12 00:40:17 +00:00
|
|
|
/* Use the generic board which requires a unified bd_info */
|
|
|
|
#include <asm-generic/u-boot.h>
|
|
|
|
|
2011-10-03 14:50:33 +00:00
|
|
|
/* For image.h:image_check_target_arch() */
|
|
|
|
#define IH_ARCH_DEFAULT IH_ARCH_M68K
|
|
|
|
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
#endif /* __U_BOOT_H__ */
|