2019-05-27 06:55:01 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* include/asm-mips/irq_cpu.h
|
|
|
|
*
|
|
|
|
* MIPS CPU interrupt definitions.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Maciej W. Rozycki
|
|
|
|
*/
|
|
|
|
#ifndef _ASM_IRQ_CPU_H
|
|
|
|
#define _ASM_IRQ_CPU_H
|
|
|
|
|
2007-01-07 17:14:29 +00:00
|
|
|
extern void mips_cpu_irq_init(void);
|
|
|
|
extern void rm7k_cpu_irq_init(void);
|
|
|
|
extern void rm9k_cpu_irq_init(void);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-01-31 12:20:43 +00:00
|
|
|
#ifdef CONFIG_IRQ_DOMAIN
|
|
|
|
struct device_node;
|
2014-09-18 21:47:08 +00:00
|
|
|
extern int mips_cpu_irq_of_init(struct device_node *of_node,
|
|
|
|
struct device_node *parent);
|
2013-01-31 12:20:43 +00:00
|
|
|
#endif
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* _ASM_IRQ_CPU_H */
|