2006-03-12 01:12:27 +00:00
|
|
|
/*
|
2016-02-06 03:30:11 +00:00
|
|
|
* U-Boot - u-boot.h Structure declarations for board specific data
|
2006-03-12 01:12:27 +00:00
|
|
|
*
|
2007-04-05 10:31:18 +00:00
|
|
|
* Copyright (c) 2005-2007 Analog Devices Inc.
|
2006-03-12 01:12:27 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2000-2004
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2006-03-12 01:12:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _U_BOOT_H_
|
|
|
|
#define _U_BOOT_H_ 1
|
|
|
|
|
|
|
|
typedef struct bd_info {
|
|
|
|
unsigned long bi_boot_params; /* where this board expects params */
|
|
|
|
unsigned long bi_memstart; /* start of DRAM memory */
|
2008-06-10 01:37:16 +00:00
|
|
|
phys_size_t bi_memsize; /* size of DRAM memory in bytes */
|
2006-03-12 01:12:27 +00:00
|
|
|
unsigned long bi_flashstart; /* start of FLASH memory */
|
|
|
|
unsigned long bi_flashsize; /* size of FLASH memory */
|
|
|
|
unsigned long bi_flashoffset; /* reserved area for startup monitor */
|
2008-02-05 00:26:55 +00:00
|
|
|
const char *bi_r_version;
|
|
|
|
const char *bi_cpu;
|
|
|
|
const char *bi_board_name;
|
|
|
|
unsigned long bi_vco;
|
|
|
|
unsigned long bi_cclk;
|
|
|
|
unsigned long bi_sclk;
|
2014-07-17 11:00:29 +00:00
|
|
|
unsigned char bi_enetaddr[6];
|
2006-03-12 01:12:27 +00:00
|
|
|
} bd_t;
|
|
|
|
|
2011-10-03 14:50:33 +00:00
|
|
|
/* For image.h:image_check_target_arch() */
|
|
|
|
#define IH_ARCH_DEFAULT IH_ARCH_BLACKFIN
|
|
|
|
|
2014-07-17 11:00:29 +00:00
|
|
|
int arch_misc_init(void);
|
|
|
|
|
2006-03-12 01:12:27 +00:00
|
|
|
#endif /* _U_BOOT_H_ */
|