2 * manager.c - Resource Management, Conflict Resolution, Activation and Disabling of Devices
4 * based on isapnp.c resource management (c) Jaroslav Kysela <perex@perex.cz>
5 * Copyright 2003 Adam Belay <ambx1@neo.rr.com>
8 #include <linux/errno.h>
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/pnp.h>
13 #include <linux/slab.h>
14 #include <linux/bitmap.h>
15 #include <linux/mutex.h>
18 DEFINE_MUTEX(pnp_res_mutex);
20 static int pnp_assign_port(struct pnp_dev *dev, struct pnp_port *rule, int idx)
22 struct resource *res, local_res;
24 res = pnp_get_resource(dev, IORESOURCE_IO, idx);
26 dev_dbg(&dev->dev, " io %d already set to %#llx-%#llx "
27 "flags %#lx\n", idx, (unsigned long long) res->start,
28 (unsigned long long) res->end, res->flags);
33 res->flags = rule->flags | IORESOURCE_AUTO;
38 res->flags |= IORESOURCE_DISABLED;
39 dev_dbg(&dev->dev, " io %d disabled\n", idx);
43 res->start = rule->min;
44 res->end = res->start + rule->size - 1;
46 while (!pnp_check_port(dev, res)) {
47 res->start += rule->align;
48 res->end = res->start + rule->size - 1;
49 if (res->start > rule->max || !rule->align) {
50 dev_dbg(&dev->dev, " couldn't assign io %d "
51 "(min %#llx max %#llx)\n", idx,
52 (unsigned long long) rule->min,
53 (unsigned long long) rule->max);
59 pnp_add_io_resource(dev, res->start, res->end, res->flags);
63 static int pnp_assign_mem(struct pnp_dev *dev, struct pnp_mem *rule, int idx)
65 struct resource *res, local_res;
67 res = pnp_get_resource(dev, IORESOURCE_MEM, idx);
69 dev_dbg(&dev->dev, " mem %d already set to %#llx-%#llx "
70 "flags %#lx\n", idx, (unsigned long long) res->start,
71 (unsigned long long) res->end, res->flags);
76 res->flags = rule->flags | IORESOURCE_AUTO;
80 if (!(rule->flags & IORESOURCE_MEM_WRITEABLE))
81 res->flags |= IORESOURCE_READONLY;
82 if (rule->flags & IORESOURCE_MEM_CACHEABLE)
83 res->flags |= IORESOURCE_CACHEABLE;
84 if (rule->flags & IORESOURCE_MEM_RANGELENGTH)
85 res->flags |= IORESOURCE_RANGELENGTH;
86 if (rule->flags & IORESOURCE_MEM_SHADOWABLE)
87 res->flags |= IORESOURCE_SHADOWABLE;
90 res->flags |= IORESOURCE_DISABLED;
91 dev_dbg(&dev->dev, " mem %d disabled\n", idx);
95 res->start = rule->min;
96 res->end = res->start + rule->size - 1;
98 while (!pnp_check_mem(dev, res)) {
99 res->start += rule->align;
100 res->end = res->start + rule->size - 1;
101 if (res->start > rule->max || !rule->align) {
102 dev_dbg(&dev->dev, " couldn't assign mem %d "
103 "(min %#llx max %#llx)\n", idx,
104 (unsigned long long) rule->min,
105 (unsigned long long) rule->max);
111 pnp_add_mem_resource(dev, res->start, res->end, res->flags);
115 static int pnp_assign_irq(struct pnp_dev *dev, struct pnp_irq *rule, int idx)
117 struct resource *res, local_res;
120 /* IRQ priority: this table is good for i386 */
121 static unsigned short xtab[16] = {
122 5, 10, 11, 12, 9, 14, 15, 7, 3, 4, 13, 0, 1, 6, 8, 2
125 res = pnp_get_resource(dev, IORESOURCE_IRQ, idx);
127 dev_dbg(&dev->dev, " irq %d already set to %d flags %#lx\n",
128 idx, (int) res->start, res->flags);
133 res->flags = rule->flags | IORESOURCE_AUTO;
137 if (bitmap_empty(rule->map.bits, PNP_IRQ_NR)) {
138 res->flags |= IORESOURCE_DISABLED;
139 dev_dbg(&dev->dev, " irq %d disabled\n", idx);
143 /* TBD: need check for >16 IRQ */
144 res->start = find_next_bit(rule->map.bits, PNP_IRQ_NR, 16);
145 if (res->start < PNP_IRQ_NR) {
146 res->end = res->start;
149 for (i = 0; i < 16; i++) {
150 if (test_bit(xtab[i], rule->map.bits)) {
151 res->start = res->end = xtab[i];
152 if (pnp_check_irq(dev, res))
156 dev_dbg(&dev->dev, " couldn't assign irq %d\n", idx);
160 pnp_add_irq_resource(dev, res->start, res->flags);
164 static void pnp_assign_dma(struct pnp_dev *dev, struct pnp_dma *rule, int idx)
166 struct resource *res, local_res;
169 /* DMA priority: this table is good for i386 */
170 static unsigned short xtab[8] = {
171 1, 3, 5, 6, 7, 0, 2, 4
174 res = pnp_get_resource(dev, IORESOURCE_DMA, idx);
176 dev_dbg(&dev->dev, " dma %d already set to %d flags %#lx\n",
177 idx, (int) res->start, res->flags);
182 res->flags = rule->flags | IORESOURCE_AUTO;
186 for (i = 0; i < 8; i++) {
187 if (rule->map & (1 << xtab[i])) {
188 res->start = res->end = xtab[i];
189 if (pnp_check_dma(dev, res))
193 #ifdef MAX_DMA_CHANNELS
194 res->start = res->end = MAX_DMA_CHANNELS;
196 res->flags |= IORESOURCE_DISABLED;
197 dev_dbg(&dev->dev, " disable dma %d\n", idx);
200 pnp_add_dma_resource(dev, res->start, res->flags);
203 void pnp_init_resources(struct pnp_dev *dev)
205 pnp_free_resources(dev);
208 static void pnp_clean_resource_table(struct pnp_dev *dev)
210 struct pnp_resource *pnp_res, *tmp;
212 list_for_each_entry_safe(pnp_res, tmp, &dev->resources, list) {
213 if (pnp_res->res.flags & IORESOURCE_AUTO)
214 pnp_free_resource(pnp_res);
219 * pnp_assign_resources - assigns resources to the device based on the specified dependent number
220 * @dev: pointer to the desired device
221 * @depnum: the dependent function number
223 * Only set depnum to 0 if the device does not have dependent options.
225 static int pnp_assign_resources(struct pnp_dev *dev, int depnum)
227 struct pnp_port *port;
231 int nport = 0, nmem = 0, nirq = 0, ndma = 0;
233 if (!pnp_can_configure(dev))
236 dbg_pnp_show_resources(dev, "before pnp_assign_resources");
237 mutex_lock(&pnp_res_mutex);
238 pnp_clean_resource_table(dev);
239 if (dev->independent) {
240 dev_dbg(&dev->dev, "assigning independent options\n");
241 port = dev->independent->port;
242 mem = dev->independent->mem;
243 irq = dev->independent->irq;
244 dma = dev->independent->dma;
246 if (!pnp_assign_port(dev, port, nport))
252 if (!pnp_assign_mem(dev, mem, nmem))
258 if (!pnp_assign_irq(dev, irq, nirq))
264 pnp_assign_dma(dev, dma, ndma);
271 struct pnp_option *dep;
274 dev_dbg(&dev->dev, "assigning dependent option %d\n", depnum);
275 for (i = 1, dep = dev->dependent; i < depnum;
276 i++, dep = dep->next)
284 if (!pnp_assign_port(dev, port, nport))
290 if (!pnp_assign_mem(dev, mem, nmem))
296 if (!pnp_assign_irq(dev, irq, nirq))
302 pnp_assign_dma(dev, dma, ndma);
306 } else if (dev->dependent)
309 mutex_unlock(&pnp_res_mutex);
310 dbg_pnp_show_resources(dev, "after pnp_assign_resources");
314 pnp_clean_resource_table(dev);
315 mutex_unlock(&pnp_res_mutex);
316 dbg_pnp_show_resources(dev, "after pnp_assign_resources (failed)");
321 * pnp_auto_config_dev - automatically assigns resources to a device
322 * @dev: pointer to the desired device
324 int pnp_auto_config_dev(struct pnp_dev *dev)
326 struct pnp_option *dep;
329 if (!pnp_can_configure(dev)) {
330 dev_dbg(&dev->dev, "configuration not supported\n");
334 if (!dev->dependent) {
335 if (pnp_assign_resources(dev, 0))
338 dep = dev->dependent;
340 if (pnp_assign_resources(dev, i))
347 dev_err(&dev->dev, "unable to assign resources\n");
352 * pnp_start_dev - low-level start of the PnP device
353 * @dev: pointer to the desired device
355 * assumes that resources have already been allocated
357 int pnp_start_dev(struct pnp_dev *dev)
359 if (!pnp_can_write(dev)) {
360 dev_dbg(&dev->dev, "activation not supported\n");
364 dbg_pnp_show_resources(dev, "pnp_start_dev");
365 if (dev->protocol->set(dev) < 0) {
366 dev_err(&dev->dev, "activation failed\n");
370 dev_info(&dev->dev, "activated\n");
375 * pnp_stop_dev - low-level disable of the PnP device
376 * @dev: pointer to the desired device
378 * does not free resources
380 int pnp_stop_dev(struct pnp_dev *dev)
382 if (!pnp_can_disable(dev)) {
383 dev_dbg(&dev->dev, "disabling not supported\n");
386 if (dev->protocol->disable(dev) < 0) {
387 dev_err(&dev->dev, "disable failed\n");
391 dev_info(&dev->dev, "disabled\n");
396 * pnp_activate_dev - activates a PnP device for use
397 * @dev: pointer to the desired device
399 * does not validate or set resources so be careful.
401 int pnp_activate_dev(struct pnp_dev *dev)
408 /* ensure resources are allocated */
409 if (pnp_auto_config_dev(dev))
412 error = pnp_start_dev(dev);
421 * pnp_disable_dev - disables device
422 * @dev: pointer to the desired device
424 * inform the correct pnp protocol so that resources can be used by other devices
426 int pnp_disable_dev(struct pnp_dev *dev)
433 error = pnp_stop_dev(dev);
439 /* release the resources so that other devices can use them */
440 mutex_lock(&pnp_res_mutex);
441 pnp_clean_resource_table(dev);
442 mutex_unlock(&pnp_res_mutex);
447 EXPORT_SYMBOL(pnp_start_dev);
448 EXPORT_SYMBOL(pnp_stop_dev);
449 EXPORT_SYMBOL(pnp_activate_dev);
450 EXPORT_SYMBOL(pnp_disable_dev);