u-boot-riscv.h 609 B

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