Merge branch 'master' of git://git.denx.de/u-boot
[platform/kernel/u-boot.git] / arch / avr32 / include / asm / u-boot.h
1 /*
2  * Copyright (C) 2004-2006 Atmel Corporation
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 #ifndef __ASM_U_BOOT_H__
7 #define __ASM_U_BOOT_H__ 1
8
9 #ifdef CONFIG_SYS_GENERIC_BOARD
10 /* Use the generic board which requires a unified bd_info */
11 #include <asm-generic/u-boot.h>
12 #else
13
14 typedef struct bd_info {
15         unsigned char           bi_phy_id[4];
16         unsigned long           bi_board_number;
17         void                    *bi_boot_params;
18         struct {
19                 unsigned long   start;
20                 unsigned long   size;
21         }                       bi_dram[CONFIG_NR_DRAM_BANKS];
22         unsigned long           bi_flashstart;
23         unsigned long           bi_flashsize;
24         unsigned long           bi_flashoffset;
25 } bd_t;
26
27 #define bi_memstart bi_dram[0].start
28 #define bi_memsize bi_dram[0].size
29
30 #endif
31
32 /* For image.h:image_check_target_arch() */
33 #define IH_ARCH_DEFAULT IH_ARCH_AVR32
34
35 int arch_cpu_init(void);
36 int dram_init(void);
37
38 #endif /* __ASM_U_BOOT_H__ */