u-boot-riscv.h 457 B

123456789101112131415161718192021
  1. /*
  2. * (C) Copyright 2002
  3. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  4. * Marius Groeger <mgroeger@sysgo.de>
  5. *
  6. * Copyright (C) 2017 Andes Technology Corporation
  7. * Rick Chen, Andes Technology Corporation <rick@andestech.com>
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #ifndef _U_BOOT_RISCV_H_
  12. #define _U_BOOT_RISCV_H_ 1
  13. /* cpu/.../cpu.c */
  14. int cleanup_before_linux(void);
  15. /* board/.../... */
  16. int board_init(void);
  17. #endif /* _U_BOOT_RISCV_H_ */