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 resource_size_t
*start
, *end
;
25 if (idx
>= PNP_MAX_PORT
) {
26 dev_err(&dev
->dev
, "too many I/O port resources\n");
27 /* pretend we were successful so at least the manager won't try again */
31 /* check if this resource has been manually set, if so skip */
32 if (!(dev
->res
.port_resource
[idx
].flags
& IORESOURCE_AUTO
))
35 start
= &dev
->res
.port_resource
[idx
].start
;
36 end
= &dev
->res
.port_resource
[idx
].end
;
37 flags
= &dev
->res
.port_resource
[idx
].flags
;
39 /* set the initial values */
40 *flags
|= rule
->flags
| IORESOURCE_IO
;
41 *flags
&= ~IORESOURCE_UNSET
;
44 *flags
|= IORESOURCE_DISABLED
;
45 return 1; /* skip disabled resource requests */
49 *end
= *start
+ rule
->size
- 1;
51 /* run through until pnp_check_port is happy */
52 while (!pnp_check_port(dev
, idx
)) {
53 *start
+= rule
->align
;
54 *end
= *start
+ rule
->size
- 1;
55 if (*start
> rule
->max
|| !rule
->align
)
61 static int pnp_assign_mem(struct pnp_dev
*dev
, struct pnp_mem
*rule
, int idx
)
63 resource_size_t
*start
, *end
;
66 if (idx
>= PNP_MAX_MEM
) {
67 dev_err(&dev
->dev
, "too many memory resources\n");
68 /* pretend we were successful so at least the manager won't try again */
72 /* check if this resource has been manually set, if so skip */
73 if (!(dev
->res
.mem_resource
[idx
].flags
& IORESOURCE_AUTO
))
76 start
= &dev
->res
.mem_resource
[idx
].start
;
77 end
= &dev
->res
.mem_resource
[idx
].end
;
78 flags
= &dev
->res
.mem_resource
[idx
].flags
;
80 /* set the initial values */
81 *flags
|= rule
->flags
| IORESOURCE_MEM
;
82 *flags
&= ~IORESOURCE_UNSET
;
84 /* convert pnp flags to standard Linux flags */
85 if (!(rule
->flags
& IORESOURCE_MEM_WRITEABLE
))
86 *flags
|= IORESOURCE_READONLY
;
87 if (rule
->flags
& IORESOURCE_MEM_CACHEABLE
)
88 *flags
|= IORESOURCE_CACHEABLE
;
89 if (rule
->flags
& IORESOURCE_MEM_RANGELENGTH
)
90 *flags
|= IORESOURCE_RANGELENGTH
;
91 if (rule
->flags
& IORESOURCE_MEM_SHADOWABLE
)
92 *flags
|= IORESOURCE_SHADOWABLE
;
95 *flags
|= IORESOURCE_DISABLED
;
96 return 1; /* skip disabled resource requests */
100 *end
= *start
+ rule
->size
- 1;
102 /* run through until pnp_check_mem is happy */
103 while (!pnp_check_mem(dev
, idx
)) {
104 *start
+= rule
->align
;
105 *end
= *start
+ rule
->size
- 1;
106 if (*start
> rule
->max
|| !rule
->align
)
112 static int pnp_assign_irq(struct pnp_dev
*dev
, struct pnp_irq
*rule
, int idx
)
114 resource_size_t
*start
, *end
;
115 unsigned long *flags
;
118 /* IRQ priority: this table is good for i386 */
119 static unsigned short xtab
[16] = {
120 5, 10, 11, 12, 9, 14, 15, 7, 3, 4, 13, 0, 1, 6, 8, 2
123 if (idx
>= PNP_MAX_IRQ
) {
124 dev_err(&dev
->dev
, "too many IRQ resources\n");
125 /* pretend we were successful so at least the manager won't try again */
129 /* check if this resource has been manually set, if so skip */
130 if (!(dev
->res
.irq_resource
[idx
].flags
& IORESOURCE_AUTO
))
133 start
= &dev
->res
.irq_resource
[idx
].start
;
134 end
= &dev
->res
.irq_resource
[idx
].end
;
135 flags
= &dev
->res
.irq_resource
[idx
].flags
;
137 /* set the initial values */
138 *flags
|= rule
->flags
| IORESOURCE_IRQ
;
139 *flags
&= ~IORESOURCE_UNSET
;
141 if (bitmap_empty(rule
->map
, PNP_IRQ_NR
)) {
142 *flags
|= IORESOURCE_DISABLED
;
143 return 1; /* skip disabled resource requests */
146 /* TBD: need check for >16 IRQ */
147 *start
= find_next_bit(rule
->map
, PNP_IRQ_NR
, 16);
148 if (*start
< PNP_IRQ_NR
) {
152 for (i
= 0; i
< 16; i
++) {
153 if (test_bit(xtab
[i
], rule
->map
)) {
154 *start
= *end
= xtab
[i
];
155 if (pnp_check_irq(dev
, idx
))
162 static void pnp_assign_dma(struct pnp_dev
*dev
, struct pnp_dma
*rule
, int idx
)
164 resource_size_t
*start
, *end
;
165 unsigned long *flags
;
168 /* DMA priority: this table is good for i386 */
169 static unsigned short xtab
[8] = {
170 1, 3, 5, 6, 7, 0, 2, 4
173 if (idx
>= PNP_MAX_DMA
) {
174 dev_err(&dev
->dev
, "too many DMA resources\n");
178 /* check if this resource has been manually set, if so skip */
179 if (!(dev
->res
.dma_resource
[idx
].flags
& IORESOURCE_AUTO
))
182 start
= &dev
->res
.dma_resource
[idx
].start
;
183 end
= &dev
->res
.dma_resource
[idx
].end
;
184 flags
= &dev
->res
.dma_resource
[idx
].flags
;
186 /* set the initial values */
187 *flags
|= rule
->flags
| IORESOURCE_DMA
;
188 *flags
&= ~IORESOURCE_UNSET
;
190 for (i
= 0; i
< 8; i
++) {
191 if (rule
->map
& (1 << xtab
[i
])) {
192 *start
= *end
= xtab
[i
];
193 if (pnp_check_dma(dev
, idx
))
197 #ifdef MAX_DMA_CHANNELS
198 *start
= *end
= MAX_DMA_CHANNELS
;
200 *flags
|= IORESOURCE_UNSET
| IORESOURCE_DISABLED
;
204 * pnp_init_resources - Resets a resource table to default values.
205 * @table: pointer to the desired resource table
207 void pnp_init_resource_table(struct pnp_resource_table
*table
)
211 for (idx
= 0; idx
< PNP_MAX_IRQ
; idx
++) {
212 table
->irq_resource
[idx
].name
= NULL
;
213 table
->irq_resource
[idx
].start
= -1;
214 table
->irq_resource
[idx
].end
= -1;
215 table
->irq_resource
[idx
].flags
=
216 IORESOURCE_IRQ
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
218 for (idx
= 0; idx
< PNP_MAX_DMA
; idx
++) {
219 table
->dma_resource
[idx
].name
= NULL
;
220 table
->dma_resource
[idx
].start
= -1;
221 table
->dma_resource
[idx
].end
= -1;
222 table
->dma_resource
[idx
].flags
=
223 IORESOURCE_DMA
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
225 for (idx
= 0; idx
< PNP_MAX_PORT
; idx
++) {
226 table
->port_resource
[idx
].name
= NULL
;
227 table
->port_resource
[idx
].start
= 0;
228 table
->port_resource
[idx
].end
= 0;
229 table
->port_resource
[idx
].flags
=
230 IORESOURCE_IO
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
232 for (idx
= 0; idx
< PNP_MAX_MEM
; idx
++) {
233 table
->mem_resource
[idx
].name
= NULL
;
234 table
->mem_resource
[idx
].start
= 0;
235 table
->mem_resource
[idx
].end
= 0;
236 table
->mem_resource
[idx
].flags
=
237 IORESOURCE_MEM
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
242 * pnp_clean_resources - clears resources that were not manually set
243 * @res: the resources to clean
245 static void pnp_clean_resource_table(struct pnp_resource_table
*res
)
249 for (idx
= 0; idx
< PNP_MAX_IRQ
; idx
++) {
250 if (!(res
->irq_resource
[idx
].flags
& IORESOURCE_AUTO
))
252 res
->irq_resource
[idx
].start
= -1;
253 res
->irq_resource
[idx
].end
= -1;
254 res
->irq_resource
[idx
].flags
=
255 IORESOURCE_IRQ
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
257 for (idx
= 0; idx
< PNP_MAX_DMA
; idx
++) {
258 if (!(res
->dma_resource
[idx
].flags
& IORESOURCE_AUTO
))
260 res
->dma_resource
[idx
].start
= -1;
261 res
->dma_resource
[idx
].end
= -1;
262 res
->dma_resource
[idx
].flags
=
263 IORESOURCE_DMA
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
265 for (idx
= 0; idx
< PNP_MAX_PORT
; idx
++) {
266 if (!(res
->port_resource
[idx
].flags
& IORESOURCE_AUTO
))
268 res
->port_resource
[idx
].start
= 0;
269 res
->port_resource
[idx
].end
= 0;
270 res
->port_resource
[idx
].flags
=
271 IORESOURCE_IO
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
273 for (idx
= 0; idx
< PNP_MAX_MEM
; idx
++) {
274 if (!(res
->mem_resource
[idx
].flags
& IORESOURCE_AUTO
))
276 res
->mem_resource
[idx
].start
= 0;
277 res
->mem_resource
[idx
].end
= 0;
278 res
->mem_resource
[idx
].flags
=
279 IORESOURCE_MEM
| IORESOURCE_AUTO
| IORESOURCE_UNSET
;
284 * pnp_assign_resources - assigns resources to the device based on the specified dependent number
285 * @dev: pointer to the desired device
286 * @depnum: the dependent function number
288 * Only set depnum to 0 if the device does not have dependent options.
290 static int pnp_assign_resources(struct pnp_dev
*dev
, int depnum
)
292 struct pnp_port
*port
;
296 int nport
= 0, nmem
= 0, nirq
= 0, ndma
= 0;
298 if (!pnp_can_configure(dev
))
301 mutex_lock(&pnp_res_mutex
);
302 pnp_clean_resource_table(&dev
->res
); /* start with a fresh slate */
303 if (dev
->independent
) {
304 port
= dev
->independent
->port
;
305 mem
= dev
->independent
->mem
;
306 irq
= dev
->independent
->irq
;
307 dma
= dev
->independent
->dma
;
309 if (!pnp_assign_port(dev
, port
, nport
))
315 if (!pnp_assign_mem(dev
, mem
, nmem
))
321 if (!pnp_assign_irq(dev
, irq
, nirq
))
327 pnp_assign_dma(dev
, dma
, ndma
);
334 struct pnp_option
*dep
;
336 for (i
= 1, dep
= dev
->dependent
; i
< depnum
;
337 i
++, dep
= dep
->next
)
345 if (!pnp_assign_port(dev
, port
, nport
))
351 if (!pnp_assign_mem(dev
, mem
, nmem
))
357 if (!pnp_assign_irq(dev
, irq
, nirq
))
363 pnp_assign_dma(dev
, dma
, ndma
);
367 } else if (dev
->dependent
)
370 mutex_unlock(&pnp_res_mutex
);
374 pnp_clean_resource_table(&dev
->res
);
375 mutex_unlock(&pnp_res_mutex
);
380 * pnp_manual_config_dev - Disables Auto Config and Manually sets the resource table
381 * @dev: pointer to the desired device
382 * @res: pointer to the new resource config
383 * @mode: 0 or PNP_CONFIG_FORCE
385 * This function can be used by drivers that want to manually set thier resources.
387 int pnp_manual_config_dev(struct pnp_dev
*dev
, struct pnp_resource_table
*res
,
391 struct pnp_resource_table
*bak
;
393 if (!pnp_can_configure(dev
))
395 bak
= pnp_alloc(sizeof(struct pnp_resource_table
));
400 mutex_lock(&pnp_res_mutex
);
402 if (!(mode
& PNP_CONFIG_FORCE
)) {
403 for (i
= 0; i
< PNP_MAX_PORT
; i
++) {
404 if (!pnp_check_port(dev
, i
))
407 for (i
= 0; i
< PNP_MAX_MEM
; i
++) {
408 if (!pnp_check_mem(dev
, i
))
411 for (i
= 0; i
< PNP_MAX_IRQ
; i
++) {
412 if (!pnp_check_irq(dev
, i
))
415 for (i
= 0; i
< PNP_MAX_DMA
; i
++) {
416 if (!pnp_check_dma(dev
, i
))
420 mutex_unlock(&pnp_res_mutex
);
427 mutex_unlock(&pnp_res_mutex
);
433 * pnp_auto_config_dev - automatically assigns resources to a device
434 * @dev: pointer to the desired device
436 int pnp_auto_config_dev(struct pnp_dev
*dev
)
438 struct pnp_option
*dep
;
441 if (!pnp_can_configure(dev
)) {
442 dev_dbg(&dev
->dev
, "configuration not supported\n");
446 if (!dev
->dependent
) {
447 if (pnp_assign_resources(dev
, 0))
450 dep
= dev
->dependent
;
452 if (pnp_assign_resources(dev
, i
))
459 dev_err(&dev
->dev
, "unable to assign resources\n");
464 * pnp_start_dev - low-level start of the PnP device
465 * @dev: pointer to the desired device
467 * assumes that resources have already been allocated
469 int pnp_start_dev(struct pnp_dev
*dev
)
471 if (!pnp_can_write(dev
)) {
472 dev_dbg(&dev
->dev
, "activation not supported\n");
476 if (dev
->protocol
->set(dev
, &dev
->res
) < 0) {
477 dev_err(&dev
->dev
, "activation failed\n");
481 dev_info(&dev
->dev
, "activated\n");
486 * pnp_stop_dev - low-level disable of the PnP device
487 * @dev: pointer to the desired device
489 * does not free resources
491 int pnp_stop_dev(struct pnp_dev
*dev
)
493 if (!pnp_can_disable(dev
)) {
494 dev_dbg(&dev
->dev
, "disabling not supported\n");
497 if (dev
->protocol
->disable(dev
) < 0) {
498 dev_err(&dev
->dev
, "disable failed\n");
502 dev_info(&dev
->dev
, "disabled\n");
507 * pnp_activate_dev - activates a PnP device for use
508 * @dev: pointer to the desired device
510 * does not validate or set resources so be careful.
512 int pnp_activate_dev(struct pnp_dev
*dev
)
519 /* ensure resources are allocated */
520 if (pnp_auto_config_dev(dev
))
523 error
= pnp_start_dev(dev
);
532 * pnp_disable_dev - disables device
533 * @dev: pointer to the desired device
535 * inform the correct pnp protocol so that resources can be used by other devices
537 int pnp_disable_dev(struct pnp_dev
*dev
)
544 error
= pnp_stop_dev(dev
);
550 /* release the resources so that other devices can use them */
551 mutex_lock(&pnp_res_mutex
);
552 pnp_clean_resource_table(&dev
->res
);
553 mutex_unlock(&pnp_res_mutex
);
559 * pnp_resource_change - change one resource
560 * @resource: pointer to resource to be changed
561 * @start: start of region
562 * @size: size of region
564 void pnp_resource_change(struct resource
*resource
, resource_size_t start
,
565 resource_size_t size
)
567 resource
->flags
&= ~(IORESOURCE_AUTO
| IORESOURCE_UNSET
);
568 resource
->start
= start
;
569 resource
->end
= start
+ size
- 1;
572 EXPORT_SYMBOL(pnp_manual_config_dev
);
573 EXPORT_SYMBOL(pnp_start_dev
);
574 EXPORT_SYMBOL(pnp_stop_dev
);
575 EXPORT_SYMBOL(pnp_activate_dev
);
576 EXPORT_SYMBOL(pnp_disable_dev
);
577 EXPORT_SYMBOL(pnp_resource_change
);
578 EXPORT_SYMBOL(pnp_init_resource_table
);