processor.h 445 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2011 Michal Simek <monstr@monstr.eu>
  4. */
  5. #ifndef __ASM_MICROBLAZE_PROCESSOR_H
  6. #define __ASM_MICROBLAZE_PROCESSOR_H
  7. /* References to section boundaries */
  8. extern char __end[];
  9. extern char __text_start[];
  10. /* Microblaze board initialization function */
  11. void board_init(void);
  12. /* Watchdog functions */
  13. extern void hw_watchdog_disable(void);
  14. #endif /* __ASM_MICROBLAZE_PROCESSOR_H */