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>
17 DECLARE_MUTEX(pnp_res_mutex);
19 static int pnp_assign_port(struct pnp_dev *dev, struct pnp_port *rule, int idx)
21 resource_size_t *start, *end;
24 if (idx >= PNP_MAX_PORT) {
25 dev_err(&dev->dev, "too many I/O port resources\n");
26 /* pretend we were successful so at least the manager won't try again */
30 /* check if this resource has been manually set, if so skip */
31 if (!(dev->res.port_resource[idx].flags & IORESOURCE_AUTO))
34 start = &dev->res.port_resource[idx].start;
35 end = &dev->res.port_resource[idx].end;
36 flags = &dev->res.port_resource[idx].flags;
38 /* set the initial values */
39 *flags |= rule->flags | IORESOURCE_IO;
40 *flags &= ~IORESOURCE_UNSET;
43 *flags |= IORESOURCE_DISABLED;
44 return 1; /* skip disabled resource requests */
48 *end = *start + rule->size - 1;
50 /* run through until pnp_check_port is happy */
51 while (!pnp_check_port(dev, idx)) {
52 *start += rule->align;
53 *end = *start + rule->size - 1;
54 if (*start > rule->max || !rule->align)
60 static int pnp_assign_mem(struct pnp_dev *dev, struct pnp_mem *rule, int idx)
62 resource_size_t *start, *end;
65 if (idx >= PNP_MAX_MEM) {
66 dev_err(&dev->dev, "too many memory resources\n");
67 /* pretend we were successful so at least the manager won't try again */
71 /* check if this resource has been manually set, if so skip */
72 if (!(dev->res.mem_resource[idx].flags & IORESOURCE_AUTO))
75 start = &dev->res.mem_resource[idx].start;
76 end = &dev->res.mem_resource[idx].end;
77 flags = &dev->res.mem_resource[idx].flags;
79 /* set the initial values */
80 *flags |= rule->flags | IORESOURCE_MEM;
81 *flags &= ~IORESOURCE_UNSET;
83 /* convert pnp flags to standard Linux flags */
84 if (!(rule->flags & IORESOURCE_MEM_WRITEABLE))
85 *flags |= IORESOURCE_READONLY;
86 if (rule->flags & IORESOURCE_MEM_CACHEABLE)
87 *flags |= IORESOURCE_CACHEABLE;
88 if (rule->flags & IORESOURCE_MEM_RANGELENGTH)
89 *flags |= IORESOURCE_RANGELENGTH;
90 if (rule->flags & IORESOURCE_MEM_SHADOWABLE)
91 *flags |= IORESOURCE_SHADOWABLE;
94 *flags |= IORESOURCE_DISABLED;
95 return 1; /* skip disabled resource requests */
99 *end = *start + rule->size - 1;
101 /* run through until pnp_check_mem is happy */
102 while (!pnp_check_mem(dev, idx)) {
103 *start += rule->align;
104 *end = *start + rule->size - 1;
105 if (*start > rule->max || !rule->align)
111 static int pnp_assign_irq(struct pnp_dev *dev, struct pnp_irq *rule, int idx)
113 resource_size_t *start, *end;
114 unsigned long *flags;
117 /* IRQ priority: this table is good for i386 */
118 static unsigned short xtab[16] = {
119 5, 10, 11, 12, 9, 14, 15, 7, 3, 4, 13, 0, 1, 6, 8, 2
122 if (idx >= PNP_MAX_IRQ) {
123 dev_err(&dev->dev, "too many IRQ resources\n");
124 /* pretend we were successful so at least the manager won't try again */
128 /* check if this resource has been manually set, if so skip */
129 if (!(dev->res.irq_resource[idx].flags & IORESOURCE_AUTO))
132 start = &dev->res.irq_resource[idx].start;
133 end = &dev->res.irq_resource[idx].end;
134 flags = &dev->res.irq_resource[idx].flags;
136 /* set the initial values */
137 *flags |= rule->flags | IORESOURCE_IRQ;
138 *flags &= ~IORESOURCE_UNSET;
140 if (bitmap_empty(rule->map, PNP_IRQ_NR)) {
141 *flags |= IORESOURCE_DISABLED;
142 return 1; /* skip disabled resource requests */
145 /* TBD: need check for >16 IRQ */
146 *start = find_next_bit(rule->map, PNP_IRQ_NR, 16);
147 if (*start < PNP_IRQ_NR) {
151 for (i = 0; i < 16; i++) {
152 if (test_bit(xtab[i], rule->map)) {
153 *start = *end = xtab[i];
154 if (pnp_check_irq(dev, idx))
161 static void pnp_assign_dma(struct pnp_dev *dev, struct pnp_dma *rule, int idx)
163 resource_size_t *start, *end;
164 unsigned long *flags;
167 /* DMA priority: this table is good for i386 */
168 static unsigned short xtab[8] = {
169 1, 3, 5, 6, 7, 0, 2, 4
172 if (idx >= PNP_MAX_DMA) {
173 dev_err(&dev->dev, "too many DMA resources\n");
177 /* check if this resource has been manually set, if so skip */
178 if (!(dev->res.dma_resource[idx].flags & IORESOURCE_AUTO))
181 start = &dev->res.dma_resource[idx].start;
182 end = &dev->res.dma_resource[idx].end;
183 flags = &dev->res.dma_resource[idx].flags;
185 /* set the initial values */
186 *flags |= rule->flags | IORESOURCE_DMA;
187 *flags &= ~IORESOURCE_UNSET;
189 for (i = 0; i < 8; i++) {
190 if (rule->map & (1 << xtab[i])) {
191 *start = *end = xtab[i];
192 if (pnp_check_dma(dev, idx))
196 #ifdef MAX_DMA_CHANNELS
197 *start = *end = MAX_DMA_CHANNELS;
199 *flags |= IORESOURCE_UNSET | IORESOURCE_DISABLED;
203 * pnp_init_resources - Resets a resource table to default values.
204 * @table: pointer to the desired resource table
206 void pnp_init_resource_table(struct pnp_resource_table *table)
210 for (idx = 0; idx < PNP_MAX_IRQ; idx++) {
211 table->irq_resource[idx].name = NULL;
212 table->irq_resource[idx].start = -1;
213 table->irq_resource[idx].end = -1;
214 table->irq_resource[idx].flags =
215 IORESOURCE_IRQ | IORESOURCE_AUTO | IORESOURCE_UNSET;
217 for (idx = 0; idx < PNP_MAX_DMA; idx++) {
218 table->dma_resource[idx].name = NULL;
219 table->dma_resource[idx].start = -1;
220 table->dma_resource[idx].end = -1;
221 table->dma_resource[idx].flags =
222 IORESOURCE_DMA | IORESOURCE_AUTO | IORESOURCE_UNSET;
224 for (idx = 0; idx < PNP_MAX_PORT; idx++) {
225 table->port_resource[idx].name = NULL;
226 table->port_resource[idx].start = 0;
227 table->port_resource[idx].end = 0;
228 table->port_resource[idx].flags =
229 IORESOURCE_IO | IORESOURCE_AUTO | IORESOURCE_UNSET;
231 for (idx = 0; idx < PNP_MAX_MEM; idx++) {
232 table->mem_resource[idx].name = NULL;
233 table->mem_resource[idx].start = 0;
234 table->mem_resource[idx].end = 0;
235 table->mem_resource[idx].flags =
236 IORESOURCE_MEM | IORESOURCE_AUTO | IORESOURCE_UNSET;
241 * pnp_clean_resources - clears resources that were not manually set
242 * @res: the resources to clean
244 static void pnp_clean_resource_table(struct pnp_resource_table *res)
248 for (idx = 0; idx < PNP_MAX_IRQ; idx++) {
249 if (!(res->irq_resource[idx].flags & IORESOURCE_AUTO))
251 res->irq_resource[idx].start = -1;
252 res->irq_resource[idx].end = -1;
253 res->irq_resource[idx].flags =
254 IORESOURCE_IRQ | IORESOURCE_AUTO | IORESOURCE_UNSET;
256 for (idx = 0; idx < PNP_MAX_DMA; idx++) {
257 if (!(res->dma_resource[idx].flags & IORESOURCE_AUTO))
259 res->dma_resource[idx].start = -1;
260 res->dma_resource[idx].end = -1;
261 res->dma_resource[idx].flags =
262 IORESOURCE_DMA | IORESOURCE_AUTO | IORESOURCE_UNSET;
264 for (idx = 0; idx < PNP_MAX_PORT; idx++) {
265 if (!(res->port_resource[idx].flags & IORESOURCE_AUTO))
267 res->port_resource[idx].start = 0;
268 res->port_resource[idx].end = 0;
269 res->port_resource[idx].flags =
270 IORESOURCE_IO | IORESOURCE_AUTO | IORESOURCE_UNSET;
272 for (idx = 0; idx < PNP_MAX_MEM; idx++) {
273 if (!(res->mem_resource[idx].flags & IORESOURCE_AUTO))
275 res->mem_resource[idx].start = 0;
276 res->mem_resource[idx].end = 0;
277 res->mem_resource[idx].flags =
278 IORESOURCE_MEM | IORESOURCE_AUTO | IORESOURCE_UNSET;
283 * pnp_assign_resources - assigns resources to the device based on the specified dependent number
284 * @dev: pointer to the desired device
285 * @depnum: the dependent function number
287 * Only set depnum to 0 if the device does not have dependent options.
289 static int pnp_assign_resources(struct pnp_dev *dev, int depnum)
291 struct pnp_port *port;
295 int nport = 0, nmem = 0, nirq = 0, ndma = 0;
297 if (!pnp_can_configure(dev))
300 down(&pnp_res_mutex);
301 pnp_clean_resource_table(&dev->res); /* start with a fresh slate */
302 if (dev->independent) {
303 port = dev->independent->port;
304 mem = dev->independent->mem;
305 irq = dev->independent->irq;
306 dma = dev->independent->dma;
308 if (!pnp_assign_port(dev, port, nport))
314 if (!pnp_assign_mem(dev, mem, nmem))
320 if (!pnp_assign_irq(dev, irq, nirq))
326 pnp_assign_dma(dev, dma, ndma);
333 struct pnp_option *dep;
335 for (i = 1, dep = dev->dependent; i < depnum;
336 i++, dep = dep->next)
344 if (!pnp_assign_port(dev, port, nport))
350 if (!pnp_assign_mem(dev, mem, nmem))
356 if (!pnp_assign_irq(dev, irq, nirq))
362 pnp_assign_dma(dev, dma, ndma);
366 } else if (dev->dependent)
373 pnp_clean_resource_table(&dev->res);
379 * pnp_manual_config_dev - Disables Auto Config and Manually sets the resource table
380 * @dev: pointer to the desired device
381 * @res: pointer to the new resource config
382 * @mode: 0 or PNP_CONFIG_FORCE
384 * This function can be used by drivers that want to manually set thier resources.
386 int pnp_manual_config_dev(struct pnp_dev *dev, struct pnp_resource_table *res,
390 struct pnp_resource_table *bak;
392 if (!pnp_can_configure(dev))
394 bak = pnp_alloc(sizeof(struct pnp_resource_table));
399 down(&pnp_res_mutex);
401 if (!(mode & PNP_CONFIG_FORCE)) {
402 for (i = 0; i < PNP_MAX_PORT; i++) {
403 if (!pnp_check_port(dev, i))
406 for (i = 0; i < PNP_MAX_MEM; i++) {
407 if (!pnp_check_mem(dev, i))
410 for (i = 0; i < PNP_MAX_IRQ; i++) {
411 if (!pnp_check_irq(dev, i))
414 for (i = 0; i < PNP_MAX_DMA; i++) {
415 if (!pnp_check_dma(dev, i))
432 * pnp_auto_config_dev - automatically assigns resources to a device
433 * @dev: pointer to the desired device
435 int pnp_auto_config_dev(struct pnp_dev *dev)
437 struct pnp_option *dep;
440 if (!pnp_can_configure(dev)) {
441 dev_dbg(&dev->dev, "configuration not supported\n");
445 if (!dev->dependent) {
446 if (pnp_assign_resources(dev, 0))
449 dep = dev->dependent;
451 if (pnp_assign_resources(dev, i))
458 dev_err(&dev->dev, "unable to assign resources\n");
463 * pnp_start_dev - low-level start of the PnP device
464 * @dev: pointer to the desired device
466 * assumes that resources have already been allocated
468 int pnp_start_dev(struct pnp_dev *dev)
470 if (!pnp_can_write(dev)) {
471 dev_dbg(&dev->dev, "activation not supported\n");
475 if (dev->protocol->set(dev, &dev->res) < 0) {
476 dev_err(&dev->dev, "activation failed\n");
480 dev_info(&dev->dev, "activated\n");
485 * pnp_stop_dev - low-level disable of the PnP device
486 * @dev: pointer to the desired device
488 * does not free resources
490 int pnp_stop_dev(struct pnp_dev *dev)
492 if (!pnp_can_disable(dev)) {
493 dev_dbg(&dev->dev, "disabling not supported\n");
496 if (dev->protocol->disable(dev) < 0) {
497 dev_err(&dev->dev, "disable failed\n");
501 dev_info(&dev->dev, "disabled\n");
506 * pnp_activate_dev - activates a PnP device for use
507 * @dev: pointer to the desired device
509 * does not validate or set resources so be careful.
511 int pnp_activate_dev(struct pnp_dev *dev)
516 return 0; /* the device is already active */
518 /* ensure resources are allocated */
519 if (pnp_auto_config_dev(dev))
522 error = pnp_start_dev(dev);
531 * pnp_disable_dev - disables device
532 * @dev: pointer to the desired device
534 * inform the correct pnp protocol so that resources can be used by other devices
536 int pnp_disable_dev(struct pnp_dev *dev)
541 return 0; /* the device is already disabled */
543 error = pnp_stop_dev(dev);
549 /* release the resources so that other devices can use them */
550 down(&pnp_res_mutex);
551 pnp_clean_resource_table(&dev->res);
558 * pnp_resource_change - change one resource
559 * @resource: pointer to resource to be changed
560 * @start: start of region
561 * @size: size of region
563 void pnp_resource_change(struct resource *resource, resource_size_t start,
564 resource_size_t size)
566 resource->flags &= ~(IORESOURCE_AUTO | IORESOURCE_UNSET);
567 resource->start = start;
568 resource->end = start + size - 1;
571 EXPORT_SYMBOL(pnp_manual_config_dev);
572 EXPORT_SYMBOL(pnp_start_dev);
573 EXPORT_SYMBOL(pnp_stop_dev);
574 EXPORT_SYMBOL(pnp_activate_dev);
575 EXPORT_SYMBOL(pnp_disable_dev);
576 EXPORT_SYMBOL(pnp_resource_change);
577 EXPORT_SYMBOL(pnp_init_resource_table);