1 #include <linux/module.h>
2 #include <linux/interrupt.h>
3 #include <linux/device.h>
7 * Device resource management aware IRQ request/free implementation.
14 static void devm_irq_release(struct device
*dev
, void *res
)
16 struct irq_devres
*this = res
;
18 free_irq(this->irq
, this->dev_id
);
21 static int devm_irq_match(struct device
*dev
, void *res
, void *data
)
23 struct irq_devres
*this = res
, *match
= data
;
25 return this->irq
== match
->irq
&& this->dev_id
== match
->dev_id
;
29 * devm_request_threaded_irq - allocate an interrupt line for a managed device
30 * @dev: device to request interrupt for
31 * @irq: Interrupt line to allocate
32 * @handler: Function to be called when the IRQ occurs
33 * @thread_fn: function to be called in a threaded interrupt context. NULL
34 * for devices which handle everything in @handler
35 * @irqflags: Interrupt type flags
36 * @devname: An ascii name for the claiming device
37 * @dev_id: A cookie passed back to the handler function
39 * Except for the extra @dev argument, this function takes the
40 * same arguments and performs the same function as
41 * request_threaded_irq(). IRQs requested with this function will be
42 * automatically freed on driver detach.
44 * If an IRQ allocated with this function needs to be freed
45 * separately, devm_free_irq() must be used.
47 int devm_request_threaded_irq(struct device
*dev
, unsigned int irq
,
48 irq_handler_t handler
, irq_handler_t thread_fn
,
49 unsigned long irqflags
, const char *devname
,
52 struct irq_devres
*dr
;
55 dr
= devres_alloc(devm_irq_release
, sizeof(struct irq_devres
),
60 rc
= request_threaded_irq(irq
, handler
, thread_fn
, irqflags
, devname
,
73 EXPORT_SYMBOL(devm_request_threaded_irq
);
76 * devm_request_any_context_irq - allocate an interrupt line for a managed device
77 * @dev: device to request interrupt for
78 * @irq: Interrupt line to allocate
79 * @handler: Function to be called when the IRQ occurs
80 * @thread_fn: function to be called in a threaded interrupt context. NULL
81 * for devices which handle everything in @handler
82 * @irqflags: Interrupt type flags
83 * @devname: An ascii name for the claiming device
84 * @dev_id: A cookie passed back to the handler function
86 * Except for the extra @dev argument, this function takes the
87 * same arguments and performs the same function as
88 * request_any_context_irq(). IRQs requested with this function will be
89 * automatically freed on driver detach.
91 * If an IRQ allocated with this function needs to be freed
92 * separately, devm_free_irq() must be used.
94 int devm_request_any_context_irq(struct device
*dev
, unsigned int irq
,
95 irq_handler_t handler
, unsigned long irqflags
,
96 const char *devname
, void *dev_id
)
98 struct irq_devres
*dr
;
101 dr
= devres_alloc(devm_irq_release
, sizeof(struct irq_devres
),
106 rc
= request_any_context_irq(irq
, handler
, irqflags
, devname
, dev_id
);
118 EXPORT_SYMBOL(devm_request_any_context_irq
);
121 * devm_free_irq - free an interrupt
122 * @dev: device to free interrupt for
123 * @irq: Interrupt line to free
124 * @dev_id: Device identity to free
126 * Except for the extra @dev argument, this function takes the
127 * same arguments and performs the same function as free_irq().
128 * This function instead of free_irq() should be used to manually
129 * free IRQs allocated with devm_request_irq().
131 void devm_free_irq(struct device
*dev
, unsigned int irq
, void *dev_id
)
133 struct irq_devres match_data
= { irq
, dev_id
};
135 WARN_ON(devres_destroy(dev
, devm_irq_release
, devm_irq_match
,
137 free_irq(irq
, dev_id
);
139 EXPORT_SYMBOL(devm_free_irq
);