2006-10-24 12:21:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2004-2006 Atmel Corporation
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2006-10-24 12:21:16 +00:00
|
|
|
*/
|
|
|
|
#ifndef __ASM_U_BOOT_H__
|
|
|
|
#define __ASM_U_BOOT_H__ 1
|
|
|
|
|
2015-02-06 22:06:48 +00:00
|
|
|
/* Use the generic board which requires a unified bd_info */
|
|
|
|
#include <asm-generic/u-boot.h>
|
|
|
|
|
2011-10-03 14:50:33 +00:00
|
|
|
/* For image.h:image_check_target_arch() */
|
|
|
|
#define IH_ARCH_DEFAULT IH_ARCH_AVR32
|
|
|
|
|
2015-02-06 22:06:40 +00:00
|
|
|
int arch_cpu_init(void);
|
2015-02-06 22:06:43 +00:00
|
|
|
int dram_init(void);
|
2015-02-06 22:06:40 +00:00
|
|
|
|
2006-10-24 12:21:16 +00:00
|
|
|
#endif /* __ASM_U_BOOT_H__ */
|