blob: 4c4b5f218a15ffc7ba815b4498fc965cf10d6d0a [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 *
5 * (C) Copyright 2007, From asm-ppc/u-boot.h
6 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01009 ********************************************************************
10 * NOTE: This header file defines an interface to U-Boot. Including
11 * this (unmodified) header file in another file is considered normal
12 * use of U-Boot, and does *not* fall under the heading of "derived
13 * work".
14 ********************************************************************
15 */
16
17#ifndef __U_BOOT_H__
18#define __U_BOOT_H__
19
Francois Retiefe17c5202015-10-28 14:29:32 +020020#ifdef CONFIG_SYS_GENERIC_BOARD
21/* Use the generic board which requires a unified bd_info */
22#include <asm-generic/u-boot.h>
23#else
24
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010025/*
26 * Currently, this Board information is not passed to
27 * Linux kernel from U-Boot, but may be passed to other
28 * Operating systems. This is because U-boot emulates
29 * a SUN PROM loader (from Linux point of view).
30 *
31 * include/asm-sparc/u-boot.h
32 */
33
34#ifndef __ASSEMBLY__
35
36typedef struct bd_info {
37 unsigned long bi_memstart; /* start of DRAM memory */
Becky Bruceb57ca3e2008-06-09 20:37:16 -050038 phys_size_t bi_memsize; /* size of DRAM memory in bytes */
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010039 unsigned long bi_flashstart; /* start of FLASH memory */
40 unsigned long bi_flashsize; /* size of FLASH memory */
41 unsigned long bi_flashoffset; /* reserved area for startup monitor */
42 unsigned long bi_sramstart; /* start of SRAM memory */
43 unsigned long bi_sramsize; /* size of SRAM memory */
44 unsigned long bi_bootflags; /* boot / reboot flag (for LynxOS) */
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010045 unsigned short bi_ethspeed; /* Ethernet speed in Mbps */
46 unsigned long bi_intfreq; /* Internal Freq, in MHz */
47 unsigned long bi_busfreq; /* Bus Freq, in MHz */
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010048} bd_t;
49
50#endif /* __ASSEMBLY__ */
Mike Frysinger476af292011-10-03 14:50:33 +000051
Francois Retiefe17c5202015-10-28 14:29:32 +020052#endif /* !CONFIG_SYS_GENERIC_BOARD */
53
Mike Frysinger476af292011-10-03 14:50:33 +000054/* For image.h:image_check_target_arch() */
55#define IH_ARCH_DEFAULT IH_ARCH_SPARC
56
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010057#endif /* __U_BOOT_H__ */