Wolfgang Denk | 83c1585 | 2006-10-24 14:21:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2004-2006 Atmel Corporation |
| 3 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | 83c1585 | 2006-10-24 14:21:16 +0200 | [diff] [blame] | 5 | */ |
| 6 | #ifndef __ASM_U_BOOT_H__ |
| 7 | #define __ASM_U_BOOT_H__ 1 |
| 8 | |
Andreas Bießmann | c1d0917 | 2015-02-06 23:06:48 +0100 | [diff] [blame] | 9 | /* Use the generic board which requires a unified bd_info */ |
| 10 | #include <asm-generic/u-boot.h> |
Andreas Bießmann | c1d0917 | 2015-02-06 23:06:48 +0100 | [diff] [blame] | 11 | |
Mike Frysinger | 5da0bed | 2011-10-03 14:50:33 +0000 | [diff] [blame] | 12 | /* For image.h:image_check_target_arch() */ |
| 13 | #define IH_ARCH_DEFAULT IH_ARCH_AVR32 |
| 14 | |
Andreas Bießmann | 465c0dd | 2015-02-06 23:06:40 +0100 | [diff] [blame] | 15 | int arch_cpu_init(void); |
Andreas Bießmann | 662a4f2 | 2015-02-06 23:06:43 +0100 | [diff] [blame] | 16 | int dram_init(void); |
Andreas Bießmann | 465c0dd | 2015-02-06 23:06:40 +0100 | [diff] [blame] | 17 | |
Wolfgang Denk | 83c1585 | 2006-10-24 14:21:16 +0200 | [diff] [blame] | 18 | #endif /* __ASM_U_BOOT_H__ */ |