blob: 75ac7dc62a2784420f2cd43d8604bf675195ed7c [file] [log] [blame]
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01001/*
2 * (C) Copyright 2000 - 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Francois Retief7a4fb112015-11-21 23:15:07 +02005 * (C) Copyright 2007, 2015
6 * Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com.
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01007 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01009 */
10
11#ifndef __U_BOOT_H__
12#define __U_BOOT_H__
13
Francois Retief7a4fb112015-11-21 23:15:07 +020014/* Currently, this board information is not passed to
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010015 * Linux kernel from U-Boot, but may be passed to other
Bin Menga1875592016-02-05 19:30:11 -080016 * Operating systems. This is because U-Boot emulates
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010017 * a SUN PROM loader (from Linux point of view).
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010018 */
Francois Retief7a4fb112015-11-21 23:15:07 +020019#include <asm-generic/u-boot.h>
Francois Retiefe17c5202015-10-28 14:29:32 +020020
Mike Frysinger476af292011-10-03 14:50:33 +000021/* For image.h:image_check_target_arch() */
22#define IH_ARCH_DEFAULT IH_ARCH_SPARC
23
Francois Retief7a4fb112015-11-21 23:15:07 +020024#endif