]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/blackfin/include/asm/u-boot.h
Merge branch 'master' of git://git.denx.de/u-boot-tegra
[karo-tx-uboot.git] / arch / blackfin / include / asm / u-boot.h
1 /*
2  * U-boot - u-boot.h Structure declarations for board specific data
3  *
4  * Copyright (c) 2005-2007 Analog Devices Inc.
5  *
6  * (C) Copyright 2000-2004
7  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8  *
9  * SPDX-License-Identifier:     GPL-2.0+
10  */
11
12 #ifndef _U_BOOT_H_
13 #define _U_BOOT_H_      1
14
15 typedef struct bd_info {
16         unsigned long bi_boot_params;   /* where this board expects params */
17         unsigned long bi_memstart;      /* start of DRAM memory */
18         phys_size_t bi_memsize;         /* size  of DRAM memory in bytes */
19         unsigned long bi_flashstart;    /* start of FLASH memory */
20         unsigned long bi_flashsize;     /* size  of FLASH memory */
21         unsigned long bi_flashoffset;   /* reserved area for startup monitor */
22         const char *bi_r_version;
23         const char *bi_cpu;
24         const char *bi_board_name;
25         unsigned long bi_vco;
26         unsigned long bi_cclk;
27         unsigned long bi_sclk;
28         unsigned char bi_enetaddr[6];
29 } bd_t;
30
31 /* For image.h:image_check_target_arch() */
32 #define IH_ARCH_DEFAULT IH_ARCH_BLACKFIN
33
34 int     arch_misc_init(void);
35
36 #endif  /* _U_BOOT_H_ */