u-boot.h 399 B

123456789101112131415161718
  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. /* Use the generic board which requires a unified bd_info */
  9. #include <asm-generic/u-boot.h>
  10. /* For image.h:image_check_target_arch() */
  11. #define IH_ARCH_DEFAULT IH_ARCH_AVR32
  12. int arch_cpu_init(void);
  13. int dram_init(void);
  14. #endif /* __ASM_U_BOOT_H__ */