2011-07-21 09:01:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Michal Simek <monstr@monstr.eu>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-07-21 09:01:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_MICROBLAZE_PROCESSOR_H
|
|
|
|
#define __ASM_MICROBLAZE_PROCESSOR_H
|
|
|
|
|
|
|
|
/* References to section boundaries */
|
|
|
|
|
|
|
|
extern char __end[];
|
|
|
|
extern char __text_start[];
|
|
|
|
|
2012-07-04 11:12:37 +00:00
|
|
|
/* Microblaze board initialization function */
|
|
|
|
void board_init(void);
|
|
|
|
|
2013-04-22 09:23:16 +00:00
|
|
|
/* Watchdog functions */
|
|
|
|
extern void hw_watchdog_disable(void);
|
|
|
|
|
2011-07-21 09:01:58 +00:00
|
|
|
#endif /* __ASM_MICROBLAZE_PROCESSOR_H */
|