2006-06-29 09:24:40 +00:00
|
|
|
#ifndef _LINUX_IRQ_H
|
|
|
|
#define _LINUX_IRQ_H
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Please do not include this file in generic code. There is currently
|
|
|
|
* no requirement for any architecture to implement anything held
|
|
|
|
* within this file.
|
|
|
|
*
|
|
|
|
* Thanks. --rmk
|
|
|
|
*/
|
|
|
|
|
2005-12-21 01:27:50 +00:00
|
|
|
#include <linux/smp.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-29 09:24:40 +00:00
|
|
|
#ifndef CONFIG_S390
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <linux/cache.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/cpumask.h>
|
2009-03-29 10:59:50 +00:00
|
|
|
#include <linux/gfp.h>
|
2006-06-23 09:06:00 +00:00
|
|
|
#include <linux/irqreturn.h>
|
2008-10-16 16:20:58 +00:00
|
|
|
#include <linux/irqnr.h>
|
2007-03-01 04:13:26 +00:00
|
|
|
#include <linux/errno.h>
|
2009-03-29 10:59:50 +00:00
|
|
|
#include <linux/topology.h>
|
2009-03-23 17:28:15 +00:00
|
|
|
#include <linux/wait.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#include <asm/ptrace.h>
|
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
of passing regs around manually through all ~1800 interrupt handlers in the
Linux kernel.
The regs pointer is used in few places, but it potentially costs both stack
space and code to pass it around. On the FRV arch, removing the regs parameter
from all the genirq function results in a 20% speed up of the IRQ exit path
(ie: from leaving timer_interrupt() to leaving do_IRQ()).
Where appropriate, an arch may override the generic storage facility and do
something different with the variable. On FRV, for instance, the address is
maintained in GR28 at all times inside the kernel as part of general exception
handling.
Having looked over the code, it appears that the parameter may be handed down
through up to twenty or so layers of functions. Consider a USB character
device attached to a USB hub, attached to a USB controller that posts its
interrupts through a cascaded auxiliary interrupt controller. A character
device driver may want to pass regs to the sysrq handler through the input
layer which adds another few layers of parameter passing.
I've build this code with allyesconfig for x86_64 and i386. I've runtested the
main part of the code on FRV and i386, though I can't test most of the drivers.
I've also done partial conversion for powerpc and MIPS - these at least compile
with minimal configurations.
This will affect all archs. Mostly the changes should be relatively easy.
Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
struct pt_regs *old_regs = set_irq_regs(regs);
And put the old one back at the end:
set_irq_regs(old_regs);
Don't pass regs through to generic_handle_irq() or __do_IRQ().
In timer_interrupt(), this sort of change will be necessary:
- update_process_times(user_mode(regs));
- profile_tick(CPU_PROFILING, regs);
+ update_process_times(user_mode(get_irq_regs()));
+ profile_tick(CPU_PROFILING);
I'd like to move update_process_times()'s use of get_irq_regs() into itself,
except that i386, alone of the archs, uses something other than user_mode().
Some notes on the interrupt handling in the drivers:
(*) input_dev() is now gone entirely. The regs pointer is no longer stored in
the input_dev struct.
(*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking. It does
something different depending on whether it's been supplied with a regs
pointer or not.
(*) Various IRQ handler function pointers have been moved to type
irq_handler_t.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
2006-10-05 13:55:46 +00:00
|
|
|
#include <asm/irq_regs.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-10-05 12:06:34 +00:00
|
|
|
struct irq_desc;
|
2008-02-08 12:19:55 +00:00
|
|
|
typedef void (*irq_flow_handler_t)(unsigned int irq,
|
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
of passing regs around manually through all ~1800 interrupt handlers in the
Linux kernel.
The regs pointer is used in few places, but it potentially costs both stack
space and code to pass it around. On the FRV arch, removing the regs parameter
from all the genirq function results in a 20% speed up of the IRQ exit path
(ie: from leaving timer_interrupt() to leaving do_IRQ()).
Where appropriate, an arch may override the generic storage facility and do
something different with the variable. On FRV, for instance, the address is
maintained in GR28 at all times inside the kernel as part of general exception
handling.
Having looked over the code, it appears that the parameter may be handed down
through up to twenty or so layers of functions. Consider a USB character
device attached to a USB hub, attached to a USB controller that posts its
interrupts through a cascaded auxiliary interrupt controller. A character
device driver may want to pass regs to the sysrq handler through the input
layer which adds another few layers of parameter passing.
I've build this code with allyesconfig for x86_64 and i386. I've runtested the
main part of the code on FRV and i386, though I can't test most of the drivers.
I've also done partial conversion for powerpc and MIPS - these at least compile
with minimal configurations.
This will affect all archs. Mostly the changes should be relatively easy.
Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
struct pt_regs *old_regs = set_irq_regs(regs);
And put the old one back at the end:
set_irq_regs(old_regs);
Don't pass regs through to generic_handle_irq() or __do_IRQ().
In timer_interrupt(), this sort of change will be necessary:
- update_process_times(user_mode(regs));
- profile_tick(CPU_PROFILING, regs);
+ update_process_times(user_mode(get_irq_regs()));
+ profile_tick(CPU_PROFILING);
I'd like to move update_process_times()'s use of get_irq_regs() into itself,
except that i386, alone of the archs, uses something other than user_mode().
Some notes on the interrupt handling in the drivers:
(*) input_dev() is now gone entirely. The regs pointer is no longer stored in
the input_dev struct.
(*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking. It does
something different depending on whether it's been supplied with a regs
pointer or not.
(*) Various IRQ handler function pointers have been moved to type
irq_handler_t.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
2006-10-05 13:55:46 +00:00
|
|
|
struct irq_desc *desc);
|
2006-10-05 12:06:34 +00:00
|
|
|
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* IRQ line status.
|
2006-07-02 02:29:03 +00:00
|
|
|
*
|
2007-02-16 09:27:24 +00:00
|
|
|
* Bits 0-7 are reserved for the IRQF_* bits in linux/interrupt.h
|
2006-07-02 02:29:03 +00:00
|
|
|
*
|
|
|
|
* IRQ types
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2006-07-02 02:29:03 +00:00
|
|
|
#define IRQ_TYPE_NONE 0x00000000 /* Default, unspecified type */
|
|
|
|
#define IRQ_TYPE_EDGE_RISING 0x00000001 /* Edge rising type */
|
|
|
|
#define IRQ_TYPE_EDGE_FALLING 0x00000002 /* Edge falling type */
|
|
|
|
#define IRQ_TYPE_EDGE_BOTH (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)
|
|
|
|
#define IRQ_TYPE_LEVEL_HIGH 0x00000004 /* Level high type */
|
|
|
|
#define IRQ_TYPE_LEVEL_LOW 0x00000008 /* Level low type */
|
|
|
|
#define IRQ_TYPE_SENSE_MASK 0x0000000f /* Mask of the above */
|
|
|
|
#define IRQ_TYPE_PROBE 0x00000010 /* Probing in progress */
|
|
|
|
|
|
|
|
/* Internal flags */
|
2007-02-16 09:27:24 +00:00
|
|
|
#define IRQ_INPROGRESS 0x00000100 /* IRQ handler active - do not enter! */
|
|
|
|
#define IRQ_DISABLED 0x00000200 /* IRQ disabled - do not enter! */
|
|
|
|
#define IRQ_PENDING 0x00000400 /* IRQ pending - replay on enable */
|
|
|
|
#define IRQ_REPLAY 0x00000800 /* IRQ has been replayed but not acked yet */
|
|
|
|
#define IRQ_AUTODETECT 0x00001000 /* IRQ is being autodetected */
|
|
|
|
#define IRQ_WAITING 0x00002000 /* IRQ not yet seen - for autodetection */
|
|
|
|
#define IRQ_LEVEL 0x00004000 /* IRQ level triggered */
|
|
|
|
#define IRQ_MASKED 0x00008000 /* IRQ masked - shouldn't be seen again */
|
|
|
|
#define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */
|
|
|
|
#define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */
|
|
|
|
#define IRQ_NOREQUEST 0x00040000 /* IRQ cannot be requested */
|
|
|
|
#define IRQ_NOAUTOEN 0x00080000 /* IRQ will not be enabled on request irq */
|
2007-02-16 09:28:24 +00:00
|
|
|
#define IRQ_WAKEUP 0x00100000 /* IRQ triggers system wakeup */
|
|
|
|
#define IRQ_MOVE_PENDING 0x00200000 /* need to re-target IRQ destination */
|
|
|
|
#define IRQ_NO_BALANCING 0x00400000 /* IRQ is excluded from balancing */
|
2008-04-28 15:01:56 +00:00
|
|
|
#define IRQ_SPURIOUS_DISABLED 0x00800000 /* IRQ was disabled by the spurious trap */
|
2008-11-07 12:18:30 +00:00
|
|
|
#define IRQ_MOVE_PCNTXT 0x01000000 /* IRQ migration from process context */
|
|
|
|
#define IRQ_AFFINITY_SET 0x02000000 /* IRQ affinity was set from userspace*/
|
2009-03-16 21:33:49 +00:00
|
|
|
#define IRQ_SUSPENDED 0x04000000 /* IRQ has gone through suspend sequence */
|
2009-08-13 10:17:22 +00:00
|
|
|
#define IRQ_ONESHOT 0x08000000 /* IRQ is not unmasked after hardirq */
|
2009-08-13 11:21:38 +00:00
|
|
|
#define IRQ_NESTED_THREAD 0x10000000 /* IRQ is nested into another, no own handler thread */
|
2007-02-16 09:27:24 +00:00
|
|
|
|
2010-09-28 08:40:18 +00:00
|
|
|
#define IRQF_MODIFY_MASK \
|
|
|
|
(IRQ_TYPE_SENSE_MASK | IRQ_NOPROBE | IRQ_NOREQUEST | \
|
|
|
|
IRQ_NOAUTOEN | IRQ_MOVE_PCNTXT | IRQ_LEVEL)
|
|
|
|
|
2006-06-29 09:24:43 +00:00
|
|
|
#ifdef CONFIG_IRQ_PER_CPU
|
2005-09-06 22:17:25 +00:00
|
|
|
# define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU)
|
2007-02-16 09:27:24 +00:00
|
|
|
# define IRQ_NO_BALANCING_MASK (IRQ_PER_CPU | IRQ_NO_BALANCING)
|
2005-09-06 22:17:25 +00:00
|
|
|
#else
|
|
|
|
# define CHECK_IRQ_PER_CPU(var) 0
|
2007-02-16 09:27:24 +00:00
|
|
|
# define IRQ_NO_BALANCING_MASK IRQ_NO_BALANCING
|
2005-09-06 22:17:25 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-28 19:52:03 +00:00
|
|
|
struct msi_desc;
|
2006-06-29 09:24:51 +00:00
|
|
|
|
2010-09-27 12:44:25 +00:00
|
|
|
/**
|
|
|
|
* struct irq_data - per irq and irq chip data passed down to chip functions
|
|
|
|
* @irq: interrupt number
|
|
|
|
* @node: node index useful for balancing
|
|
|
|
* @chip: low level interrupt hardware access
|
|
|
|
* @handler_data: per-IRQ data for the irq_chip methods
|
|
|
|
* @chip_data: platform-specific per-chip private data for the chip
|
|
|
|
* methods, to allow shared chip implementations
|
|
|
|
* @msi_desc: MSI descriptor
|
|
|
|
* @affinity: IRQ affinity on SMP
|
|
|
|
*
|
|
|
|
* The fields here need to overlay the ones in irq_desc until we
|
|
|
|
* cleaned up the direct references and switched everything over to
|
|
|
|
* irq_data.
|
|
|
|
*/
|
|
|
|
struct irq_data {
|
|
|
|
unsigned int irq;
|
|
|
|
unsigned int node;
|
|
|
|
struct irq_chip *chip;
|
|
|
|
void *handler_data;
|
|
|
|
void *chip_data;
|
|
|
|
struct msi_desc *msi_desc;
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
cpumask_var_t affinity;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2006-06-29 09:24:45 +00:00
|
|
|
/**
|
2006-06-29 09:24:51 +00:00
|
|
|
* struct irq_chip - hardware interrupt chip descriptor
|
2006-06-29 09:24:45 +00:00
|
|
|
*
|
|
|
|
* @name: name for /proc/interrupts
|
2010-09-27 12:44:32 +00:00
|
|
|
* @startup: deprecated, replaced by irq_startup
|
|
|
|
* @shutdown: deprecated, replaced by irq_shutdown
|
|
|
|
* @enable: deprecated, replaced by irq_enable
|
|
|
|
* @disable: deprecated, replaced by irq_disable
|
|
|
|
* @ack: deprecated, replaced by irq_ack
|
|
|
|
* @mask: deprecated, replaced by irq_mask
|
|
|
|
* @mask_ack: deprecated, replaced by irq_mask_ack
|
|
|
|
* @unmask: deprecated, replaced by irq_unmask
|
|
|
|
* @eoi: deprecated, replaced by irq_eoi
|
|
|
|
* @end: deprecated, will go away with __do_IRQ()
|
|
|
|
* @set_affinity: deprecated, replaced by irq_set_affinity
|
|
|
|
* @retrigger: deprecated, replaced by irq_retrigger
|
|
|
|
* @set_type: deprecated, replaced by irq_set_type
|
|
|
|
* @set_wake: deprecated, replaced by irq_wake
|
|
|
|
* @bus_lock: deprecated, replaced by irq_bus_lock
|
|
|
|
* @bus_sync_unlock: deprecated, replaced by irq_bus_sync_unlock
|
2006-06-29 09:24:45 +00:00
|
|
|
*
|
2010-09-27 12:44:32 +00:00
|
|
|
* @irq_startup: start up the interrupt (defaults to ->enable if NULL)
|
|
|
|
* @irq_shutdown: shut down the interrupt (defaults to ->disable if NULL)
|
|
|
|
* @irq_enable: enable the interrupt (defaults to chip->unmask if NULL)
|
|
|
|
* @irq_disable: disable the interrupt
|
|
|
|
* @irq_ack: start of a new interrupt
|
|
|
|
* @irq_mask: mask an interrupt source
|
|
|
|
* @irq_mask_ack: ack and mask an interrupt source
|
|
|
|
* @irq_unmask: unmask an interrupt source
|
|
|
|
* @irq_eoi: end of interrupt
|
|
|
|
* @irq_set_affinity: set the CPU affinity on SMP machines
|
|
|
|
* @irq_retrigger: resend an IRQ to the CPU
|
|
|
|
* @irq_set_type: set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
|
|
|
|
* @irq_set_wake: enable/disable power-management wake-on of an IRQ
|
|
|
|
* @irq_bus_lock: function to lock access to slow bus (i2c) chips
|
|
|
|
* @irq_bus_sync_unlock:function to sync and unlock slow bus (i2c) chips
|
2009-08-13 10:17:48 +00:00
|
|
|
*
|
2006-06-29 09:24:45 +00:00
|
|
|
* @release: release function solely used by UML
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2006-06-29 09:24:51 +00:00
|
|
|
struct irq_chip {
|
|
|
|
const char *name;
|
2010-10-01 13:17:14 +00:00
|
|
|
#ifndef CONFIG_GENERIC_HARDIRQS_NO_DEPRECATED
|
2006-06-29 09:24:41 +00:00
|
|
|
unsigned int (*startup)(unsigned int irq);
|
|
|
|
void (*shutdown)(unsigned int irq);
|
|
|
|
void (*enable)(unsigned int irq);
|
|
|
|
void (*disable)(unsigned int irq);
|
2006-06-29 09:24:51 +00:00
|
|
|
|
2006-06-29 09:24:41 +00:00
|
|
|
void (*ack)(unsigned int irq);
|
2006-06-29 09:24:51 +00:00
|
|
|
void (*mask)(unsigned int irq);
|
|
|
|
void (*mask_ack)(unsigned int irq);
|
|
|
|
void (*unmask)(unsigned int irq);
|
2006-06-29 09:25:03 +00:00
|
|
|
void (*eoi)(unsigned int irq);
|
2006-06-29 09:24:51 +00:00
|
|
|
|
2006-06-29 09:24:41 +00:00
|
|
|
void (*end)(unsigned int irq);
|
2009-04-28 00:59:21 +00:00
|
|
|
int (*set_affinity)(unsigned int irq,
|
2008-12-13 10:50:26 +00:00
|
|
|
const struct cpumask *dest);
|
2006-06-29 09:24:44 +00:00
|
|
|
int (*retrigger)(unsigned int irq);
|
2006-06-29 09:24:51 +00:00
|
|
|
int (*set_type)(unsigned int irq, unsigned int flow_type);
|
|
|
|
int (*set_wake)(unsigned int irq, unsigned int on);
|
2006-06-29 09:24:44 +00:00
|
|
|
|
2009-08-13 10:17:48 +00:00
|
|
|
void (*bus_lock)(unsigned int irq);
|
|
|
|
void (*bus_sync_unlock)(unsigned int irq);
|
2010-10-01 13:17:14 +00:00
|
|
|
#endif
|
2010-09-27 12:44:32 +00:00
|
|
|
unsigned int (*irq_startup)(struct irq_data *data);
|
|
|
|
void (*irq_shutdown)(struct irq_data *data);
|
|
|
|
void (*irq_enable)(struct irq_data *data);
|
|
|
|
void (*irq_disable)(struct irq_data *data);
|
|
|
|
|
|
|
|
void (*irq_ack)(struct irq_data *data);
|
|
|
|
void (*irq_mask)(struct irq_data *data);
|
|
|
|
void (*irq_mask_ack)(struct irq_data *data);
|
|
|
|
void (*irq_unmask)(struct irq_data *data);
|
|
|
|
void (*irq_eoi)(struct irq_data *data);
|
|
|
|
|
|
|
|
int (*irq_set_affinity)(struct irq_data *data, const struct cpumask *dest, bool force);
|
|
|
|
int (*irq_retrigger)(struct irq_data *data);
|
|
|
|
int (*irq_set_type)(struct irq_data *data, unsigned int flow_type);
|
|
|
|
int (*irq_set_wake)(struct irq_data *data, unsigned int on);
|
|
|
|
|
|
|
|
void (*irq_bus_lock)(struct irq_data *data);
|
|
|
|
void (*irq_bus_sync_unlock)(struct irq_data *data);
|
|
|
|
|
2005-06-22 00:16:24 +00:00
|
|
|
/* Currently used only by UML, might disappear one day.*/
|
|
|
|
#ifdef CONFIG_IRQ_RELEASE_METHOD
|
2006-06-29 09:24:41 +00:00
|
|
|
void (*release)(unsigned int irq, void *dev_id);
|
2005-06-22 00:16:24 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2010-10-01 14:03:45 +00:00
|
|
|
/* This include will go away once we isolated irq_desc usage to core code */
|
|
|
|
#include <linux/irqdesc.h>
|
2008-12-06 02:58:31 +00:00
|
|
|
|
2006-06-29 09:24:40 +00:00
|
|
|
/*
|
|
|
|
* Pick up the arch-dependent methods:
|
|
|
|
*/
|
|
|
|
#include <asm/hw_irq.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-09-27 18:55:03 +00:00
|
|
|
#ifndef NR_IRQS_LEGACY
|
|
|
|
# define NR_IRQS_LEGACY 0
|
|
|
|
#endif
|
|
|
|
|
2010-09-27 19:01:37 +00:00
|
|
|
#ifndef ARCH_IRQ_INIT_FLAGS
|
|
|
|
# define ARCH_IRQ_INIT_FLAGS 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define IRQ_DEFAULT_INIT_FLAGS (IRQ_DISABLED | ARCH_IRQ_INIT_FLAGS)
|
|
|
|
|
2010-10-01 14:03:45 +00:00
|
|
|
struct irqaction;
|
2006-06-29 09:24:40 +00:00
|
|
|
extern int setup_irq(unsigned int irq, struct irqaction *new);
|
2009-03-12 12:05:51 +00:00
|
|
|
extern void remove_irq(unsigned int irq, struct irqaction *act);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_GENERIC_HARDIRQS
|
2006-06-29 09:24:40 +00:00
|
|
|
|
2010-10-04 11:47:12 +00:00
|
|
|
#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_PENDING_IRQ)
|
2006-03-25 11:07:36 +00:00
|
|
|
void move_native_irq(int irq);
|
2006-10-04 09:16:29 +00:00
|
|
|
void move_masked_irq(int irq);
|
2010-10-01 14:03:45 +00:00
|
|
|
#else
|
|
|
|
static inline void move_native_irq(int irq) { }
|
|
|
|
static inline void move_masked_irq(int irq) { }
|
|
|
|
#endif
|
[PATCH] x86/x86_64: deferred handling of writes to /proc/irqxx/smp_affinity
When handling writes to /proc/irq, current code is re-programming rte
entries directly. This is not recommended and could potentially cause
chipset's to lockup, or cause missing interrupts.
CONFIG_IRQ_BALANCE does this correctly, where it re-programs only when the
interrupt is pending. The same needs to be done for /proc/irq handling as well.
Otherwise user space irq balancers are really not doing the right thing.
- Changed pending_irq_balance_cpumask to pending_irq_migrate_cpumask for
lack of a generic name.
- added move_irq out of IRQ_BALANCE, and added this same to X86_64
- Added new proc handler for write, so we can do deferred write at irq
handling time.
- Display of /proc/irq/XX/smp_affinity used to display CPU_MASKALL, instead
it now shows only active cpu masks, or exactly what was set.
- Provided a common move_irq implementation, instead of duplicating
when using generic irq framework.
Tested on i386/x86_64 and ia64 with CONFIG_PCI_MSI turned on and off.
Tested UP builds as well.
MSI testing: tbd: I have cards, need to look for a x-over cable, although I
did test an earlier version of this patch. Will test in a couple days.
Signed-off-by: Ashok Raj <ashok.raj@intel.com>
Acked-by: Zwane Mwaikambo <zwane@holomorphy.com>
Grudgingly-acked-by: Andi Kleen <ak@muc.de>
Signed-off-by: Coywolf Qi Hunt <coywolf@lovecn.org>
Signed-off-by: Ashok Raj <ashok.raj@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-09-06 22:16:15 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
extern int no_irq_affinity;
|
|
|
|
|
2006-06-29 09:24:51 +00:00
|
|
|
/* Handle irq action chains: */
|
2008-09-30 21:14:27 +00:00
|
|
|
extern irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action);
|
2006-06-29 09:24:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Built-in IRQ handlers for various IRQ types,
|
2009-11-15 17:57:24 +00:00
|
|
|
* callable via desc->handle_irq()
|
2006-06-29 09:24:51 +00:00
|
|
|
*/
|
2008-02-08 12:19:55 +00:00
|
|
|
extern void handle_level_irq(unsigned int irq, struct irq_desc *desc);
|
|
|
|
extern void handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc);
|
|
|
|
extern void handle_edge_irq(unsigned int irq, struct irq_desc *desc);
|
|
|
|
extern void handle_simple_irq(unsigned int irq, struct irq_desc *desc);
|
|
|
|
extern void handle_percpu_irq(unsigned int irq, struct irq_desc *desc);
|
|
|
|
extern void handle_bad_irq(unsigned int irq, struct irq_desc *desc);
|
2009-08-24 19:28:04 +00:00
|
|
|
extern void handle_nested_irq(unsigned int irq);
|
2006-06-29 09:24:51 +00:00
|
|
|
|
|
|
|
/* Handling of unhandled and spurious interrupts: */
|
2006-06-29 09:24:40 +00:00
|
|
|
extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
|
2008-09-30 21:14:27 +00:00
|
|
|
irqreturn_t action_ret);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-29 09:24:48 +00:00
|
|
|
|
2006-06-29 09:24:51 +00:00
|
|
|
/* Enable/disable irq debugging output: */
|
|
|
|
extern int noirqdebug_setup(char *str);
|
|
|
|
|
|
|
|
/* Checks whether the interrupt can be requested by request_irq(): */
|
|
|
|
extern int can_request_irq(unsigned int irq, unsigned long irqflags);
|
|
|
|
|
2006-07-01 21:30:08 +00:00
|
|
|
/* Dummy irq-chip implementations: */
|
2006-06-29 09:24:51 +00:00
|
|
|
extern struct irq_chip no_irq_chip;
|
2006-07-01 21:30:08 +00:00
|
|
|
extern struct irq_chip dummy_irq_chip;
|
2006-06-29 09:24:51 +00:00
|
|
|
|
2006-10-20 06:28:28 +00:00
|
|
|
extern void
|
|
|
|
set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
|
|
|
|
irq_flow_handler_t handle);
|
2006-06-29 09:24:51 +00:00
|
|
|
extern void
|
2006-10-17 07:10:03 +00:00
|
|
|
set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
|
|
|
|
irq_flow_handler_t handle, const char *name);
|
|
|
|
|
2006-06-29 09:24:51 +00:00
|
|
|
extern void
|
2006-10-17 07:10:03 +00:00
|
|
|
__set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
|
|
|
|
const char *name);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-29 09:24:51 +00:00
|
|
|
/*
|
|
|
|
* Set a highlevel flow handler for a given IRQ:
|
|
|
|
*/
|
|
|
|
static inline void
|
2006-10-05 12:06:34 +00:00
|
|
|
set_irq_handler(unsigned int irq, irq_flow_handler_t handle)
|
2006-06-29 09:24:51 +00:00
|
|
|
{
|
2006-10-17 07:10:03 +00:00
|
|
|
__set_irq_handler(irq, handle, 0, NULL);
|
2006-06-29 09:24:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set a highlevel chained flow handler for a given IRQ.
|
|
|
|
* (a chained handler is automatically enabled and set to
|
|
|
|
* IRQ_NOREQUEST and IRQ_NOPROBE)
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
set_irq_chained_handler(unsigned int irq,
|
2006-10-05 12:06:34 +00:00
|
|
|
irq_flow_handler_t handle)
|
2006-06-29 09:24:51 +00:00
|
|
|
{
|
2006-10-17 07:10:03 +00:00
|
|
|
__set_irq_handler(irq, handle, 1, NULL);
|
2006-06-29 09:24:51 +00:00
|
|
|
}
|
|
|
|
|
2009-08-13 11:21:38 +00:00
|
|
|
extern void set_irq_nested_thread(unsigned int irq, int nest);
|
|
|
|
|
2010-09-28 08:40:18 +00:00
|
|
|
void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set);
|
|
|
|
|
|
|
|
static inline void irq_set_status_flags(unsigned int irq, unsigned long set)
|
|
|
|
{
|
|
|
|
irq_modify_status(irq, 0, set);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void irq_clear_status_flags(unsigned int irq, unsigned long clr)
|
|
|
|
{
|
|
|
|
irq_modify_status(irq, clr, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_irq_noprobe(unsigned int irq)
|
|
|
|
{
|
|
|
|
irq_modify_status(irq, 0, IRQ_NOPROBE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_irq_probe(unsigned int irq)
|
|
|
|
{
|
|
|
|
irq_modify_status(irq, IRQ_NOPROBE, 0);
|
|
|
|
}
|
2008-02-08 12:22:01 +00:00
|
|
|
|
2006-10-04 09:16:37 +00:00
|
|
|
/* Handle dynamic irq creation and destruction */
|
2009-04-28 01:02:23 +00:00
|
|
|
extern unsigned int create_irq_nr(unsigned int irq_want, int node);
|
2006-10-04 09:16:37 +00:00
|
|
|
extern int create_irq(void);
|
|
|
|
extern void destroy_irq(unsigned int irq);
|
|
|
|
|
2010-09-29 16:46:55 +00:00
|
|
|
/*
|
|
|
|
* Dynamic irq helper functions. Obsolete. Use irq_alloc_desc* and
|
|
|
|
* irq_free_desc instead.
|
|
|
|
*/
|
2006-10-04 09:16:37 +00:00
|
|
|
extern void dynamic_irq_cleanup(unsigned int irq);
|
2010-09-29 16:46:55 +00:00
|
|
|
static inline void dynamic_irq_init(unsigned int irq)
|
|
|
|
{
|
|
|
|
dynamic_irq_cleanup(irq);
|
|
|
|
}
|
2006-06-29 09:24:53 +00:00
|
|
|
|
2006-10-04 09:16:37 +00:00
|
|
|
/* Set/get chip/data for an IRQ: */
|
2006-06-29 09:24:53 +00:00
|
|
|
extern int set_irq_chip(unsigned int irq, struct irq_chip *chip);
|
|
|
|
extern int set_irq_data(unsigned int irq, void *data);
|
|
|
|
extern int set_irq_chip_data(unsigned int irq, void *data);
|
|
|
|
extern int set_irq_type(unsigned int irq, unsigned int type);
|
2007-01-28 19:52:03 +00:00
|
|
|
extern int set_irq_msi(unsigned int irq, struct msi_desc *entry);
|
2010-09-28 15:34:01 +00:00
|
|
|
extern struct irq_data *irq_get_irq_data(unsigned int irq);
|
2006-06-29 09:24:53 +00:00
|
|
|
|
2010-09-28 15:34:01 +00:00
|
|
|
static inline struct irq_chip *get_irq_chip(unsigned int irq)
|
|
|
|
{
|
|
|
|
struct irq_data *d = irq_get_irq_data(irq);
|
|
|
|
return d ? d->chip : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct irq_chip *irq_data_get_irq_chip(struct irq_data *d)
|
|
|
|
{
|
|
|
|
return d->chip;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *get_irq_chip_data(unsigned int irq)
|
|
|
|
{
|
|
|
|
struct irq_data *d = irq_get_irq_data(irq);
|
|
|
|
return d ? d->chip_data : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *irq_data_get_irq_chip_data(struct irq_data *d)
|
|
|
|
{
|
|
|
|
return d->chip_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *get_irq_data(unsigned int irq)
|
|
|
|
{
|
|
|
|
struct irq_data *d = irq_get_irq_data(irq);
|
|
|
|
return d ? d->handler_data : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *irq_data_get_irq_data(struct irq_data *d)
|
|
|
|
{
|
|
|
|
return d->handler_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct msi_desc *get_irq_msi(unsigned int irq)
|
|
|
|
{
|
|
|
|
struct irq_data *d = irq_get_irq_data(irq);
|
|
|
|
return d ? d->msi_desc : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct msi_desc *irq_data_get_msi(struct irq_data *d)
|
|
|
|
{
|
|
|
|
return d->msi_desc;
|
|
|
|
}
|
|
|
|
|
2010-09-27 15:48:26 +00:00
|
|
|
int irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node);
|
|
|
|
void irq_free_descs(unsigned int irq, unsigned int cnt);
|
2010-10-12 10:31:46 +00:00
|
|
|
int irq_reserve_irqs(unsigned int from, unsigned int cnt);
|
2010-09-27 15:48:26 +00:00
|
|
|
|
|
|
|
static inline int irq_alloc_desc(int node)
|
|
|
|
{
|
|
|
|
return irq_alloc_descs(-1, 0, 1, node);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int irq_alloc_desc_at(unsigned int at, int node)
|
|
|
|
{
|
|
|
|
return irq_alloc_descs(at, at, 1, node);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int irq_alloc_desc_from(unsigned int from, int node)
|
|
|
|
{
|
|
|
|
return irq_alloc_descs(-1, from, 1, node);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void irq_free_desc(unsigned int irq)
|
|
|
|
{
|
|
|
|
irq_free_descs(irq, 1);
|
|
|
|
}
|
|
|
|
|
2010-10-26 07:19:13 +00:00
|
|
|
static inline int irq_reserve_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
return irq_reserve_irqs(irq, 1);
|
|
|
|
}
|
|
|
|
|
2006-06-29 09:24:51 +00:00
|
|
|
#endif /* CONFIG_GENERIC_HARDIRQS */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-29 09:24:40 +00:00
|
|
|
#endif /* !CONFIG_S390 */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-29 09:24:40 +00:00
|
|
|
#endif /* _LINUX_IRQ_H */
|