u-boot-nds32.h 742 B

12345678910111213141516171819202122232425262728
  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) 2011 Andes Technology Corporation
  8. * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
  9. * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
  10. */
  11. #ifndef _U_BOOT_NDS32_H_
  12. #define _U_BOOT_NDS32_H_ 1
  13. /* for the following variables, see start.S */
  14. extern ulong IRQ_STACK_START; /* top of IRQ stack */
  15. extern ulong FIQ_STACK_START; /* top of FIQ stack */
  16. /* cpu/.../cpu.c */
  17. int cleanup_before_linux(void);
  18. /* board/.../... */
  19. int board_init(void);
  20. /* cpu/.../interrupt.c */
  21. void reset_timer_masked(void);
  22. #endif /* _U_BOOT_NDS32_H_ */