blob: 18babef39361c4cba1ebb31487dd5ec6945a50bd [file] [log] [blame]
Al Viro5ea81762007-02-11 15:41:31 +00001#include <linux/module.h>
2#include <linux/interrupt.h>
Al Viro0af36782007-07-27 14:24:33 +01003#include <linux/device.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -07004#include <linux/gfp.h>
Bartosz Golaszewski2b5e7732017-02-10 13:23:23 +01005#include <linux/irq.h>
Al Viro5ea81762007-02-11 15:41:31 +00006
7/*
8 * Device resource management aware IRQ request/free implementation.
9 */
10struct irq_devres {
11 unsigned int irq;
12 void *dev_id;
13};
14
15static void devm_irq_release(struct device *dev, void *res)
16{
17 struct irq_devres *this = res;
18
19 free_irq(this->irq, this->dev_id);
20}
21
22static int devm_irq_match(struct device *dev, void *res, void *data)
23{
24 struct irq_devres *this = res, *match = data;
25
26 return this->irq == match->irq && this->dev_id == match->dev_id;
27}
28
29/**
Arjan van de Ven935bd5b2009-03-23 18:28:16 +010030 * devm_request_threaded_irq - allocate an interrupt line for a managed device
Al Viro5ea81762007-02-11 15:41:31 +000031 * @dev: device to request interrupt for
32 * @irq: Interrupt line to allocate
33 * @handler: Function to be called when the IRQ occurs
Arjan van de Ven935bd5b2009-03-23 18:28:16 +010034 * @thread_fn: function to be called in a threaded interrupt context. NULL
35 * for devices which handle everything in @handler
Al Viro5ea81762007-02-11 15:41:31 +000036 * @irqflags: Interrupt type flags
37 * @devname: An ascii name for the claiming device
38 * @dev_id: A cookie passed back to the handler function
39 *
40 * Except for the extra @dev argument, this function takes the
41 * same arguments and performs the same function as
Emilio López307b28b2014-07-01 16:47:35 -030042 * request_threaded_irq(). IRQs requested with this function will be
Al Viro5ea81762007-02-11 15:41:31 +000043 * automatically freed on driver detach.
44 *
45 * If an IRQ allocated with this function needs to be freed
Jean Delvare5c42dc72010-02-11 15:04:36 +010046 * separately, devm_free_irq() must be used.
Al Viro5ea81762007-02-11 15:41:31 +000047 */
Arjan van de Ven935bd5b2009-03-23 18:28:16 +010048int devm_request_threaded_irq(struct device *dev, unsigned int irq,
49 irq_handler_t handler, irq_handler_t thread_fn,
50 unsigned long irqflags, const char *devname,
51 void *dev_id)
Al Viro5ea81762007-02-11 15:41:31 +000052{
53 struct irq_devres *dr;
54 int rc;
55
56 dr = devres_alloc(devm_irq_release, sizeof(struct irq_devres),
57 GFP_KERNEL);
58 if (!dr)
59 return -ENOMEM;
60
Arjan van de Ven935bd5b2009-03-23 18:28:16 +010061 rc = request_threaded_irq(irq, handler, thread_fn, irqflags, devname,
62 dev_id);
Al Viro5ea81762007-02-11 15:41:31 +000063 if (rc) {
Tejun Heo7f30e492007-04-07 14:59:41 +090064 devres_free(dr);
Al Viro5ea81762007-02-11 15:41:31 +000065 return rc;
66 }
67
68 dr->irq = irq;
69 dr->dev_id = dev_id;
70 devres_add(dev, dr);
71
72 return 0;
73}
Arjan van de Ven935bd5b2009-03-23 18:28:16 +010074EXPORT_SYMBOL(devm_request_threaded_irq);
Al Viro5ea81762007-02-11 15:41:31 +000075
76/**
Stephen Boyd0668d302014-01-02 16:37:32 -080077 * devm_request_any_context_irq - allocate an interrupt line for a managed device
78 * @dev: device to request interrupt for
79 * @irq: Interrupt line to allocate
80 * @handler: Function to be called when the IRQ occurs
81 * @thread_fn: function to be called in a threaded interrupt context. NULL
82 * for devices which handle everything in @handler
83 * @irqflags: Interrupt type flags
84 * @devname: An ascii name for the claiming device
85 * @dev_id: A cookie passed back to the handler function
86 *
87 * Except for the extra @dev argument, this function takes the
88 * same arguments and performs the same function as
89 * request_any_context_irq(). IRQs requested with this function will be
90 * automatically freed on driver detach.
91 *
92 * If an IRQ allocated with this function needs to be freed
93 * separately, devm_free_irq() must be used.
94 */
95int devm_request_any_context_irq(struct device *dev, unsigned int irq,
96 irq_handler_t handler, unsigned long irqflags,
97 const char *devname, void *dev_id)
98{
99 struct irq_devres *dr;
100 int rc;
101
102 dr = devres_alloc(devm_irq_release, sizeof(struct irq_devres),
103 GFP_KERNEL);
104 if (!dr)
105 return -ENOMEM;
106
107 rc = request_any_context_irq(irq, handler, irqflags, devname, dev_id);
Axel Lin63781392015-05-11 17:02:58 +0800108 if (rc < 0) {
Stephen Boyd0668d302014-01-02 16:37:32 -0800109 devres_free(dr);
110 return rc;
111 }
112
113 dr->irq = irq;
114 dr->dev_id = dev_id;
115 devres_add(dev, dr);
116
Axel Lin63781392015-05-11 17:02:58 +0800117 return rc;
Stephen Boyd0668d302014-01-02 16:37:32 -0800118}
119EXPORT_SYMBOL(devm_request_any_context_irq);
120
121/**
Al Viro5ea81762007-02-11 15:41:31 +0000122 * devm_free_irq - free an interrupt
123 * @dev: device to free interrupt for
124 * @irq: Interrupt line to free
125 * @dev_id: Device identity to free
126 *
127 * Except for the extra @dev argument, this function takes the
128 * same arguments and performs the same function as free_irq().
129 * This function instead of free_irq() should be used to manually
Baruch Siach9ce8e492010-02-02 08:54:51 +0200130 * free IRQs allocated with devm_request_irq().
Al Viro5ea81762007-02-11 15:41:31 +0000131 */
132void devm_free_irq(struct device *dev, unsigned int irq, void *dev_id)
133{
134 struct irq_devres match_data = { irq, dev_id };
135
Al Viro5ea81762007-02-11 15:41:31 +0000136 WARN_ON(devres_destroy(dev, devm_irq_release, devm_irq_match,
137 &match_data));
Maxin B Johnae891a12011-07-25 17:12:59 -0700138 free_irq(irq, dev_id);
Al Viro5ea81762007-02-11 15:41:31 +0000139}
140EXPORT_SYMBOL(devm_free_irq);
Bartosz Golaszewski2b5e7732017-02-10 13:23:23 +0100141
142struct irq_desc_devres {
143 unsigned int from;
144 unsigned int cnt;
145};
146
147static void devm_irq_desc_release(struct device *dev, void *res)
148{
149 struct irq_desc_devres *this = res;
150
151 irq_free_descs(this->from, this->cnt);
152}
153
154/**
155 * __devm_irq_alloc_descs - Allocate and initialize a range of irq descriptors
156 * for a managed device
157 * @dev: Device to allocate the descriptors for
158 * @irq: Allocate for specific irq number if irq >= 0
159 * @from: Start the search from this irq number
160 * @cnt: Number of consecutive irqs to allocate
161 * @node: Preferred node on which the irq descriptor should be allocated
162 * @owner: Owning module (can be NULL)
163 * @affinity: Optional pointer to an affinity mask array of size @cnt
164 * which hints where the irq descriptors should be allocated
165 * and which default affinities to use
166 *
167 * Returns the first irq number or error code.
168 *
169 * Note: Use the provided wrappers (devm_irq_alloc_desc*) for simplicity.
170 */
171int __devm_irq_alloc_descs(struct device *dev, int irq, unsigned int from,
172 unsigned int cnt, int node, struct module *owner,
173 const struct cpumask *affinity)
174{
175 struct irq_desc_devres *dr;
176 int base;
177
178 dr = devres_alloc(devm_irq_desc_release, sizeof(*dr), GFP_KERNEL);
179 if (!dr)
180 return -ENOMEM;
181
182 base = __irq_alloc_descs(irq, from, cnt, node, owner, affinity);
183 if (base < 0) {
184 devres_free(dr);
185 return base;
186 }
187
188 dr->from = base;
189 dr->cnt = cnt;
190 devres_add(dev, dr);
191
192 return base;
193}
194EXPORT_SYMBOL_GPL(__devm_irq_alloc_descs);