blob: c28caf272c1167f13c761da916af4a0983d878da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * manager.c - Resource Management, Conflict Resolution, Activation and Disabling of Devices
3 *
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * based on isapnp.c resource management (c) Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright 2003 Adam Belay <ambx1@neo.rr.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/errno.h>
9#include <linux/module.h>
10#include <linux/init.h>
11#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/pnp.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080013#include <linux/slab.h>
14#include <linux/bitmap.h>
Daniel Walkerb3bd86e2008-02-06 01:40:04 -080015#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "base.h"
17
Daniel Walkerb3bd86e2008-02-06 01:40:04 -080018DEFINE_MUTEX(pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20static int pnp_assign_port(struct pnp_dev *dev, struct pnp_port *rule, int idx)
21{
Greg Kroah-Hartmanb60ba832006-06-12 17:07:07 -070022 resource_size_t *start, *end;
23 unsigned long *flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 if (idx >= PNP_MAX_PORT) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -070026 dev_err(&dev->dev, "too many I/O port resources\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 /* pretend we were successful so at least the manager won't try again */
28 return 1;
29 }
30
31 /* check if this resource has been manually set, if so skip */
32 if (!(dev->res.port_resource[idx].flags & IORESOURCE_AUTO))
33 return 1;
34
35 start = &dev->res.port_resource[idx].start;
36 end = &dev->res.port_resource[idx].end;
37 flags = &dev->res.port_resource[idx].flags;
38
39 /* set the initial values */
40 *flags |= rule->flags | IORESOURCE_IO;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070041 *flags &= ~IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 if (!rule->size) {
44 *flags |= IORESOURCE_DISABLED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070045 return 1; /* skip disabled resource requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 }
47
48 *start = rule->min;
49 *end = *start + rule->size - 1;
50
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)
56 return 0;
57 }
58 return 1;
59}
60
61static int pnp_assign_mem(struct pnp_dev *dev, struct pnp_mem *rule, int idx)
62{
Greg Kroah-Hartmanb60ba832006-06-12 17:07:07 -070063 resource_size_t *start, *end;
64 unsigned long *flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (idx >= PNP_MAX_MEM) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -070067 dev_err(&dev->dev, "too many memory resources\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 /* pretend we were successful so at least the manager won't try again */
69 return 1;
70 }
71
72 /* check if this resource has been manually set, if so skip */
73 if (!(dev->res.mem_resource[idx].flags & IORESOURCE_AUTO))
74 return 1;
75
76 start = &dev->res.mem_resource[idx].start;
77 end = &dev->res.mem_resource[idx].end;
78 flags = &dev->res.mem_resource[idx].flags;
79
80 /* set the initial values */
81 *flags |= rule->flags | IORESOURCE_MEM;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070082 *flags &= ~IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
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;
93
94 if (!rule->size) {
95 *flags |= IORESOURCE_DISABLED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070096 return 1; /* skip disabled resource requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
99 *start = rule->min;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700100 *end = *start + rule->size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
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)
107 return 0;
108 }
109 return 1;
110}
111
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700112static int pnp_assign_irq(struct pnp_dev *dev, struct pnp_irq *rule, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Greg Kroah-Hartmanb60ba832006-06-12 17:07:07 -0700114 resource_size_t *start, *end;
115 unsigned long *flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int i;
117
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
121 };
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (idx >= PNP_MAX_IRQ) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700124 dev_err(&dev->dev, "too many IRQ resources\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* pretend we were successful so at least the manager won't try again */
126 return 1;
127 }
128
129 /* check if this resource has been manually set, if so skip */
130 if (!(dev->res.irq_resource[idx].flags & IORESOURCE_AUTO))
131 return 1;
132
133 start = &dev->res.irq_resource[idx].start;
134 end = &dev->res.irq_resource[idx].end;
135 flags = &dev->res.irq_resource[idx].flags;
136
137 /* set the initial values */
138 *flags |= rule->flags | IORESOURCE_IRQ;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700139 *flags &= ~IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 if (bitmap_empty(rule->map, PNP_IRQ_NR)) {
142 *flags |= IORESOURCE_DISABLED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700143 return 1; /* skip disabled resource requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145
146 /* TBD: need check for >16 IRQ */
147 *start = find_next_bit(rule->map, PNP_IRQ_NR, 16);
148 if (*start < PNP_IRQ_NR) {
149 *end = *start;
150 return 1;
151 }
152 for (i = 0; i < 16; i++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700153 if (test_bit(xtab[i], rule->map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 *start = *end = xtab[i];
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700155 if (pnp_check_irq(dev, idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return 1;
157 }
158 }
159 return 0;
160}
161
Jan Beulich7ef36392007-10-16 23:31:07 -0700162static void pnp_assign_dma(struct pnp_dev *dev, struct pnp_dma *rule, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Greg Kroah-Hartmanb60ba832006-06-12 17:07:07 -0700164 resource_size_t *start, *end;
165 unsigned long *flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 int i;
167
168 /* DMA priority: this table is good for i386 */
169 static unsigned short xtab[8] = {
170 1, 3, 5, 6, 7, 0, 2, 4
171 };
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (idx >= PNP_MAX_DMA) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700174 dev_err(&dev->dev, "too many DMA resources\n");
Jan Beulich7ef36392007-10-16 23:31:07 -0700175 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 /* check if this resource has been manually set, if so skip */
179 if (!(dev->res.dma_resource[idx].flags & IORESOURCE_AUTO))
Jan Beulich7ef36392007-10-16 23:31:07 -0700180 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 start = &dev->res.dma_resource[idx].start;
183 end = &dev->res.dma_resource[idx].end;
184 flags = &dev->res.dma_resource[idx].flags;
185
186 /* set the initial values */
187 *flags |= rule->flags | IORESOURCE_DMA;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700188 *flags &= ~IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 for (i = 0; i < 8; i++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700191 if (rule->map & (1 << xtab[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *start = *end = xtab[i];
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700193 if (pnp_check_dma(dev, idx))
Jan Beulich7ef36392007-10-16 23:31:07 -0700194 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196 }
Jan Beulich7ef36392007-10-16 23:31:07 -0700197#ifdef MAX_DMA_CHANNELS
198 *start = *end = MAX_DMA_CHANNELS;
199#endif
200 *flags |= IORESOURCE_UNSET | IORESOURCE_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/**
204 * pnp_init_resources - Resets a resource table to default values.
205 * @table: pointer to the desired resource table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
207void pnp_init_resource_table(struct pnp_resource_table *table)
208{
209 int idx;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 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;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700215 table->irq_resource[idx].flags =
216 IORESOURCE_IRQ | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
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;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700222 table->dma_resource[idx].flags =
223 IORESOURCE_DMA | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
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;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700229 table->port_resource[idx].flags =
230 IORESOURCE_IO | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
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;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700236 table->mem_resource[idx].flags =
237 IORESOURCE_MEM | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239}
240
241/**
242 * pnp_clean_resources - clears resources that were not manually set
Martin Waitz67be2dd2005-05-01 08:59:26 -0700243 * @res: the resources to clean
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700245static void pnp_clean_resource_table(struct pnp_resource_table *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 int idx;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 for (idx = 0; idx < PNP_MAX_IRQ; idx++) {
250 if (!(res->irq_resource[idx].flags & IORESOURCE_AUTO))
251 continue;
252 res->irq_resource[idx].start = -1;
253 res->irq_resource[idx].end = -1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700254 res->irq_resource[idx].flags =
255 IORESOURCE_IRQ | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257 for (idx = 0; idx < PNP_MAX_DMA; idx++) {
258 if (!(res->dma_resource[idx].flags & IORESOURCE_AUTO))
259 continue;
260 res->dma_resource[idx].start = -1;
261 res->dma_resource[idx].end = -1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700262 res->dma_resource[idx].flags =
263 IORESOURCE_DMA | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265 for (idx = 0; idx < PNP_MAX_PORT; idx++) {
266 if (!(res->port_resource[idx].flags & IORESOURCE_AUTO))
267 continue;
268 res->port_resource[idx].start = 0;
269 res->port_resource[idx].end = 0;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700270 res->port_resource[idx].flags =
271 IORESOURCE_IO | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273 for (idx = 0; idx < PNP_MAX_MEM; idx++) {
274 if (!(res->mem_resource[idx].flags & IORESOURCE_AUTO))
275 continue;
276 res->mem_resource[idx].start = 0;
277 res->mem_resource[idx].end = 0;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700278 res->mem_resource[idx].flags =
279 IORESOURCE_MEM | IORESOURCE_AUTO | IORESOURCE_UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281}
282
283/**
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
287 *
288 * Only set depnum to 0 if the device does not have dependent options.
289 */
290static int pnp_assign_resources(struct pnp_dev *dev, int depnum)
291{
292 struct pnp_port *port;
293 struct pnp_mem *mem;
294 struct pnp_irq *irq;
295 struct pnp_dma *dma;
296 int nport = 0, nmem = 0, nirq = 0, ndma = 0;
297
298 if (!pnp_can_configure(dev))
299 return -ENODEV;
300
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800301 mutex_lock(&pnp_res_mutex);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700302 pnp_clean_resource_table(&dev->res); /* start with a fresh slate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (dev->independent) {
304 port = dev->independent->port;
305 mem = dev->independent->mem;
306 irq = dev->independent->irq;
307 dma = dev->independent->dma;
308 while (port) {
309 if (!pnp_assign_port(dev, port, nport))
310 goto fail;
311 nport++;
312 port = port->next;
313 }
314 while (mem) {
315 if (!pnp_assign_mem(dev, mem, nmem))
316 goto fail;
317 nmem++;
318 mem = mem->next;
319 }
320 while (irq) {
321 if (!pnp_assign_irq(dev, irq, nirq))
322 goto fail;
323 nirq++;
324 irq = irq->next;
325 }
326 while (dma) {
Jan Beulich7ef36392007-10-16 23:31:07 -0700327 pnp_assign_dma(dev, dma, ndma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 ndma++;
329 dma = dma->next;
330 }
331 }
332
333 if (depnum) {
334 struct pnp_option *dep;
335 int i;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700336 for (i = 1, dep = dev->dependent; i < depnum;
337 i++, dep = dep->next)
338 if (!dep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 goto fail;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700340 port = dep->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 mem = dep->mem;
342 irq = dep->irq;
343 dma = dep->dma;
344 while (port) {
345 if (!pnp_assign_port(dev, port, nport))
346 goto fail;
347 nport++;
348 port = port->next;
349 }
350 while (mem) {
351 if (!pnp_assign_mem(dev, mem, nmem))
352 goto fail;
353 nmem++;
354 mem = mem->next;
355 }
356 while (irq) {
357 if (!pnp_assign_irq(dev, irq, nirq))
358 goto fail;
359 nirq++;
360 irq = irq->next;
361 }
362 while (dma) {
Jan Beulich7ef36392007-10-16 23:31:07 -0700363 pnp_assign_dma(dev, dma, ndma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 ndma++;
365 dma = dma->next;
366 }
367 } else if (dev->dependent)
368 goto fail;
369
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800370 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 1;
372
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600373fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 pnp_clean_resource_table(&dev->res);
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800375 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377}
378
379/**
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
Martin Waitz3d410882005-06-23 22:05:21 -0700383 * @mode: 0 or PNP_CONFIG_FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
385 * This function can be used by drivers that want to manually set thier resources.
386 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700387int pnp_manual_config_dev(struct pnp_dev *dev, struct pnp_resource_table *res,
388 int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 int i;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700391 struct pnp_resource_table *bak;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!pnp_can_configure(dev))
394 return -ENODEV;
395 bak = pnp_alloc(sizeof(struct pnp_resource_table));
396 if (!bak)
397 return -ENOMEM;
398 *bak = dev->res;
399
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800400 mutex_lock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 dev->res = *res;
402 if (!(mode & PNP_CONFIG_FORCE)) {
403 for (i = 0; i < PNP_MAX_PORT; i++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700404 if (!pnp_check_port(dev, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 goto fail;
406 }
407 for (i = 0; i < PNP_MAX_MEM; i++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700408 if (!pnp_check_mem(dev, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto fail;
410 }
411 for (i = 0; i < PNP_MAX_IRQ; i++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700412 if (!pnp_check_irq(dev, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 goto fail;
414 }
415 for (i = 0; i < PNP_MAX_DMA; i++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700416 if (!pnp_check_dma(dev, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 goto fail;
418 }
419 }
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800420 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 kfree(bak);
423 return 0;
424
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600425fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 dev->res = *bak;
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800427 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 kfree(bak);
429 return -EINVAL;
430}
431
432/**
433 * pnp_auto_config_dev - automatically assigns resources to a device
434 * @dev: pointer to the desired device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 */
436int pnp_auto_config_dev(struct pnp_dev *dev)
437{
438 struct pnp_option *dep;
439 int i = 1;
440
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700441 if (!pnp_can_configure(dev)) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700442 dev_dbg(&dev->dev, "configuration not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return -ENODEV;
444 }
445
446 if (!dev->dependent) {
447 if (pnp_assign_resources(dev, 0))
448 return 0;
449 } else {
450 dep = dev->dependent;
451 do {
452 if (pnp_assign_resources(dev, i))
453 return 0;
454 dep = dep->next;
455 i++;
456 } while (dep);
457 }
458
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700459 dev_err(&dev->dev, "unable to assign resources\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return -EBUSY;
461}
462
463/**
Pierre Ossman68094e32005-11-29 09:09:32 +0100464 * pnp_start_dev - low-level start of the PnP device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * @dev: pointer to the desired device
466 *
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700467 * assumes that resources have already been allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 */
Pierre Ossman68094e32005-11-29 09:09:32 +0100469int pnp_start_dev(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!pnp_can_write(dev)) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700472 dev_dbg(&dev->dev, "activation not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return -EINVAL;
474 }
475
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700476 if (dev->protocol->set(dev, &dev->res) < 0) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700477 dev_err(&dev->dev, "activation failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return -EIO;
479 }
480
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700481 dev_info(&dev->dev, "activated\n");
Pierre Ossman68094e32005-11-29 09:09:32 +0100482 return 0;
483}
484
485/**
486 * pnp_stop_dev - low-level disable of the PnP device
487 * @dev: pointer to the desired device
488 *
489 * does not free resources
490 */
Pierre Ossman68094e32005-11-29 09:09:32 +0100491int pnp_stop_dev(struct pnp_dev *dev)
492{
493 if (!pnp_can_disable(dev)) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700494 dev_dbg(&dev->dev, "disabling not supported\n");
Pierre Ossman68094e32005-11-29 09:09:32 +0100495 return -EINVAL;
496 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700497 if (dev->protocol->disable(dev) < 0) {
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700498 dev_err(&dev->dev, "disable failed\n");
Pierre Ossman68094e32005-11-29 09:09:32 +0100499 return -EIO;
500 }
501
Bjorn Helgaasa05d0782007-10-16 23:31:10 -0700502 dev_info(&dev->dev, "disabled\n");
Pierre Ossman68094e32005-11-29 09:09:32 +0100503 return 0;
504}
505
506/**
507 * pnp_activate_dev - activates a PnP device for use
508 * @dev: pointer to the desired device
509 *
510 * does not validate or set resources so be careful.
511 */
512int pnp_activate_dev(struct pnp_dev *dev)
513{
514 int error;
515
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700516 if (dev->active)
Bjorn Helgaascc8259a2008-02-06 01:40:02 -0800517 return 0;
Pierre Ossman68094e32005-11-29 09:09:32 +0100518
519 /* ensure resources are allocated */
520 if (pnp_auto_config_dev(dev))
521 return -EBUSY;
522
523 error = pnp_start_dev(dev);
524 if (error)
525 return error;
526
527 dev->active = 1;
Bjorn Helgaascc8259a2008-02-06 01:40:02 -0800528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531/**
532 * pnp_disable_dev - disables device
533 * @dev: pointer to the desired device
534 *
535 * inform the correct pnp protocol so that resources can be used by other devices
536 */
537int pnp_disable_dev(struct pnp_dev *dev)
538{
Pierre Ossman68094e32005-11-29 09:09:32 +0100539 int error;
540
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700541 if (!dev->active)
Bjorn Helgaascc8259a2008-02-06 01:40:02 -0800542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Pierre Ossman68094e32005-11-29 09:09:32 +0100544 error = pnp_stop_dev(dev);
545 if (error)
546 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 dev->active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 /* release the resources so that other devices can use them */
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800551 mutex_lock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 pnp_clean_resource_table(&dev->res);
Daniel Walkerb3bd86e2008-02-06 01:40:04 -0800553 mutex_unlock(&pnp_res_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Bjorn Helgaascc8259a2008-02-06 01:40:02 -0800555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558/**
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 */
Greg Kroah-Hartmanb60ba832006-06-12 17:07:07 -0700564void pnp_resource_change(struct resource *resource, resource_size_t start,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700565 resource_size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 resource->flags &= ~(IORESOURCE_AUTO | IORESOURCE_UNSET);
568 resource->start = start;
569 resource->end = start + size - 1;
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572EXPORT_SYMBOL(pnp_manual_config_dev);
Pierre Ossman68094e32005-11-29 09:09:32 +0100573EXPORT_SYMBOL(pnp_start_dev);
574EXPORT_SYMBOL(pnp_stop_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575EXPORT_SYMBOL(pnp_activate_dev);
576EXPORT_SYMBOL(pnp_disable_dev);
577EXPORT_SYMBOL(pnp_resource_change);
578EXPORT_SYMBOL(pnp_init_resource_table);