blob: 11793165445df45aaa8c26928d03455b8656f76b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Greg Ungerer10f939f2011-05-04 13:55:56 +10002#ifndef __M68K_HARDIRQ_H
3#define __M68K_HARDIRQ_H
4
5#include <linux/threads.h>
6#include <linux/cache.h>
7#include <asm/irq.h>
8
Greg Ungerer10f939f2011-05-04 13:55:56 +10009#ifdef CONFIG_MMU
10
Geert Uytterhoeven4936f632011-04-21 22:50:52 +020011static inline void ack_bad_irq(unsigned int irq)
12{
13 pr_crit("unexpected IRQ trap at vector %02x\n", irq);
14}
15
Greg Ungerer10f939f2011-05-04 13:55:56 +100016/* entry.S is sensitive to the offsets of these fields */
17typedef struct {
18 unsigned int __softirq_pending;
19} ____cacheline_aligned irq_cpustat_t;
20
21#include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
22
Sam Ravnborg49148022009-01-16 21:58:10 +100023#else
Greg Ungerer10f939f2011-05-04 13:55:56 +100024
25#include <asm-generic/hardirq.h>
26
27#endif /* !CONFIG_MMU */
28
Sam Ravnborg49148022009-01-16 21:58:10 +100029#endif