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