]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/blackfin/include/asm/u-boot.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / blackfin / include / asm / u-boot.h
CommitLineData
6cb142fa
WD
1/*
2 * U-boot - u-boot.h Structure declarations for board specific data
3 *
155fd766 4 * Copyright (c) 2005-2007 Analog Devices Inc.
6cb142fa
WD
5 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
1a459660 9 * SPDX-License-Identifier: GPL-2.0+
6cb142fa
WD
10 */
11
12#ifndef _U_BOOT_H_
13#define _U_BOOT_H_ 1
14
15typedef struct bd_info {
5e84e5a7 16 unsigned int bi_baudrate; /* serial console baudrate */
6cb142fa
WD
17 unsigned long bi_boot_params; /* where this board expects params */
18 unsigned long bi_memstart; /* start of DRAM memory */
b57ca3e1 19 phys_size_t bi_memsize; /* size of DRAM memory in bytes */
6cb142fa
WD
20 unsigned long bi_flashstart; /* start of FLASH memory */
21 unsigned long bi_flashsize; /* size of FLASH memory */
22 unsigned long bi_flashoffset; /* reserved area for startup monitor */
d4d77308
MF
23 const char *bi_r_version;
24 const char *bi_cpu;
25 const char *bi_board_name;
26 unsigned long bi_vco;
27 unsigned long bi_cclk;
28 unsigned long bi_sclk;
6cb142fa
WD
29} bd_t;
30
476af299
MF
31/* For image.h:image_check_target_arch() */
32#define IH_ARCH_DEFAULT IH_ARCH_BLACKFIN
33
6cb142fa 34#endif /* _U_BOOT_H_ */