2020-02-03 09:25:40 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2009-03-27 13:25:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 Atmark Techno, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_MICROBLAZE_IRQ_H
|
|
|
|
#define _ASM_MICROBLAZE_IRQ_H
|
|
|
|
|
2009-06-18 17:55:33 +00:00
|
|
|
#include <asm-generic/irq.h>
|
2009-03-27 13:25:49 +00:00
|
|
|
|
|
|
|
struct pt_regs;
|
|
|
|
extern void do_IRQ(struct pt_regs *regs);
|
|
|
|
|
2020-03-30 09:43:59 +00:00
|
|
|
/* should be defined in each interrupt controller driver */
|
|
|
|
extern unsigned int xintc_get_irq(void);
|
|
|
|
|
2009-03-27 13:25:49 +00:00
|
|
|
#endif /* _ASM_MICROBLAZE_IRQ_H */
|