iwlwifi: pcie: pull out common rfkill IRQ handling code
[linux-2.6/btrfs-unstable.git] / kernel / irq / devres.c
blob1613bfd483657ceea438362c1f0c6eb69823785e
1 #include <linux/module.h>
2 #include <linux/interrupt.h>
3 #include <linux/device.h>
4 #include <linux/gfp.h>
5 #include <linux/irq.h>
7 /*
8 * Device resource management aware IRQ request/free implementation.
9 */
10 struct irq_devres {
11 unsigned int irq;
12 void *dev_id;
15 static void devm_irq_release(struct device *dev, void *res)
17 struct irq_devres *this = res;
19 free_irq(this->irq, this->dev_id);
22 static int devm_irq_match(struct device *dev, void *res, void *data)
24 struct irq_devres *this = res, *match = data;
26 return this->irq == match->irq && this->dev_id == match->dev_id;
29 /**
30 * devm_request_threaded_irq - allocate an interrupt line for a managed device
31 * @dev: device to request interrupt for
32 * @irq: Interrupt line to allocate
33 * @handler: Function to be called when the IRQ occurs
34 * @thread_fn: function to be called in a threaded interrupt context. NULL
35 * for devices which handle everything in @handler
36 * @irqflags: Interrupt type flags
37 * @devname: An ascii name for the claiming device, dev_name(dev) if NULL
38 * @dev_id: A cookie passed back to the handler function
40 * Except for the extra @dev argument, this function takes the
41 * same arguments and performs the same function as
42 * request_threaded_irq(). IRQs requested with this function will be
43 * automatically freed on driver detach.
45 * If an IRQ allocated with this function needs to be freed
46 * separately, devm_free_irq() must be used.
48 int 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)
53 struct irq_devres *dr;
54 int rc;
56 dr = devres_alloc(devm_irq_release, sizeof(struct irq_devres),
57 GFP_KERNEL);
58 if (!dr)
59 return -ENOMEM;
61 if (!devname)
62 devname = dev_name(dev);
64 rc = request_threaded_irq(irq, handler, thread_fn, irqflags, devname,
65 dev_id);
66 if (rc) {
67 devres_free(dr);
68 return rc;
71 dr->irq = irq;
72 dr->dev_id = dev_id;
73 devres_add(dev, dr);
75 return 0;
77 EXPORT_SYMBOL(devm_request_threaded_irq);
79 /**
80 * devm_request_any_context_irq - allocate an interrupt line for a managed device
81 * @dev: device to request interrupt for
82 * @irq: Interrupt line to allocate
83 * @handler: Function to be called when the IRQ occurs
84 * @thread_fn: function to be called in a threaded interrupt context. NULL
85 * for devices which handle everything in @handler
86 * @irqflags: Interrupt type flags
87 * @devname: An ascii name for the claiming device, dev_name(dev) if NULL
88 * @dev_id: A cookie passed back to the handler function
90 * Except for the extra @dev argument, this function takes the
91 * same arguments and performs the same function as
92 * request_any_context_irq(). IRQs requested with this function will be
93 * automatically freed on driver detach.
95 * If an IRQ allocated with this function needs to be freed
96 * separately, devm_free_irq() must be used.
98 int devm_request_any_context_irq(struct device *dev, unsigned int irq,
99 irq_handler_t handler, unsigned long irqflags,
100 const char *devname, void *dev_id)
102 struct irq_devres *dr;
103 int rc;
105 dr = devres_alloc(devm_irq_release, sizeof(struct irq_devres),
106 GFP_KERNEL);
107 if (!dr)
108 return -ENOMEM;
110 if (!devname)
111 devname = dev_name(dev);
113 rc = request_any_context_irq(irq, handler, irqflags, devname, dev_id);
114 if (rc < 0) {
115 devres_free(dr);
116 return rc;
119 dr->irq = irq;
120 dr->dev_id = dev_id;
121 devres_add(dev, dr);
123 return rc;
125 EXPORT_SYMBOL(devm_request_any_context_irq);
128 * devm_free_irq - free an interrupt
129 * @dev: device to free interrupt for
130 * @irq: Interrupt line to free
131 * @dev_id: Device identity to free
133 * Except for the extra @dev argument, this function takes the
134 * same arguments and performs the same function as free_irq().
135 * This function instead of free_irq() should be used to manually
136 * free IRQs allocated with devm_request_irq().
138 void devm_free_irq(struct device *dev, unsigned int irq, void *dev_id)
140 struct irq_devres match_data = { irq, dev_id };
142 WARN_ON(devres_destroy(dev, devm_irq_release, devm_irq_match,
143 &match_data));
144 free_irq(irq, dev_id);
146 EXPORT_SYMBOL(devm_free_irq);
148 struct irq_desc_devres {
149 unsigned int from;
150 unsigned int cnt;
153 static void devm_irq_desc_release(struct device *dev, void *res)
155 struct irq_desc_devres *this = res;
157 irq_free_descs(this->from, this->cnt);
161 * __devm_irq_alloc_descs - Allocate and initialize a range of irq descriptors
162 * for a managed device
163 * @dev: Device to allocate the descriptors for
164 * @irq: Allocate for specific irq number if irq >= 0
165 * @from: Start the search from this irq number
166 * @cnt: Number of consecutive irqs to allocate
167 * @node: Preferred node on which the irq descriptor should be allocated
168 * @owner: Owning module (can be NULL)
169 * @affinity: Optional pointer to an affinity mask array of size @cnt
170 * which hints where the irq descriptors should be allocated
171 * and which default affinities to use
173 * Returns the first irq number or error code.
175 * Note: Use the provided wrappers (devm_irq_alloc_desc*) for simplicity.
177 int __devm_irq_alloc_descs(struct device *dev, int irq, unsigned int from,
178 unsigned int cnt, int node, struct module *owner,
179 const struct cpumask *affinity)
181 struct irq_desc_devres *dr;
182 int base;
184 dr = devres_alloc(devm_irq_desc_release, sizeof(*dr), GFP_KERNEL);
185 if (!dr)
186 return -ENOMEM;
188 base = __irq_alloc_descs(irq, from, cnt, node, owner, affinity);
189 if (base < 0) {
190 devres_free(dr);
191 return base;
194 dr->from = base;
195 dr->cnt = cnt;
196 devres_add(dev, dr);
198 return base;
200 EXPORT_SYMBOL_GPL(__devm_irq_alloc_descs);