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>
6 * Copyright (C) 2008 Hewlett-Packard Development Company, L.P.
7 * Bjorn Helgaas <bjorn.helgaas@hp.com>
10 #include <linux/errno.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/pnp.h>
15 #include <linux/bitmap.h>
16 #include <linux/mutex.h>
19 DEFINE_MUTEX(pnp_res_mutex);
21 static struct resource *pnp_find_resource(struct pnp_dev *dev,
26 struct resource *res = pnp_get_resource(dev, type, bar);
28 /* when the resource already exists, set its resource bits from rule */
30 res->flags &= ~IORESOURCE_BITS;
31 res->flags |= rule & IORESOURCE_BITS;
37 static int pnp_assign_port(struct pnp_dev *dev, struct pnp_port *rule, int idx)
39 struct resource *res, local_res;
41 res = pnp_find_resource(dev, rule->flags, IORESOURCE_IO, idx);
43 pnp_dbg(&dev->dev, " io %d already set to %#llx-%#llx "
44 "flags %#lx\n", idx, (unsigned long long) res->start,
45 (unsigned long long) res->end, res->flags);
50 res->flags = rule->flags | IORESOURCE_AUTO;
55 res->flags |= IORESOURCE_DISABLED;
56 pnp_dbg(&dev->dev, " io %d disabled\n", idx);
60 res->start = rule->min;
61 res->end = res->start + rule->size - 1;
63 while (!pnp_check_port(dev, res)) {
64 res->start += rule->align;
65 res->end = res->start + rule->size - 1;
66 if (res->start > rule->max || !rule->align) {
67 pnp_dbg(&dev->dev, " couldn't assign io %d "
68 "(min %#llx max %#llx)\n", idx,
69 (unsigned long long) rule->min,
70 (unsigned long long) rule->max);
76 pnp_add_io_resource(dev, res->start, res->end, res->flags);
80 static int pnp_assign_mem(struct pnp_dev *dev, struct pnp_mem *rule, int idx)
82 struct resource *res, local_res;
84 res = pnp_find_resource(dev, rule->flags, IORESOURCE_MEM, idx);
86 pnp_dbg(&dev->dev, " mem %d already set to %#llx-%#llx "
87 "flags %#lx\n", idx, (unsigned long long) res->start,
88 (unsigned long long) res->end, res->flags);
93 res->flags = rule->flags | IORESOURCE_AUTO;
97 /* ??? rule->flags restricted to 8 bits, all tests bogus ??? */
98 if (!(rule->flags & IORESOURCE_MEM_WRITEABLE))
99 res->flags |= IORESOURCE_READONLY;
100 if (rule->flags & IORESOURCE_MEM_RANGELENGTH)
101 res->flags |= IORESOURCE_RANGELENGTH;
102 if (rule->flags & IORESOURCE_MEM_SHADOWABLE)
103 res->flags |= IORESOURCE_SHADOWABLE;
106 res->flags |= IORESOURCE_DISABLED;
107 pnp_dbg(&dev->dev, " mem %d disabled\n", idx);
111 res->start = rule->min;
112 res->end = res->start + rule->size - 1;
114 while (!pnp_check_mem(dev, res)) {
115 res->start += rule->align;
116 res->end = res->start + rule->size - 1;
117 if (res->start > rule->max || !rule->align) {
118 pnp_dbg(&dev->dev, " couldn't assign mem %d "
119 "(min %#llx max %#llx)\n", idx,
120 (unsigned long long) rule->min,
121 (unsigned long long) rule->max);
127 pnp_add_mem_resource(dev, res->start, res->end, res->flags);
131 static int pnp_assign_irq(struct pnp_dev *dev, struct pnp_irq *rule, int idx)
133 struct resource *res, local_res;
136 /* IRQ priority: this table is good for i386 */
137 static unsigned short xtab[16] = {
138 5, 10, 11, 12, 9, 14, 15, 7, 3, 4, 13, 0, 1, 6, 8, 2
141 res = pnp_find_resource(dev, rule->flags, IORESOURCE_IRQ, idx);
143 pnp_dbg(&dev->dev, " irq %d already set to %d flags %#lx\n",
144 idx, (int) res->start, res->flags);
149 res->flags = rule->flags | IORESOURCE_AUTO;
153 if (bitmap_empty(rule->map.bits, PNP_IRQ_NR)) {
154 res->flags |= IORESOURCE_DISABLED;
155 pnp_dbg(&dev->dev, " irq %d disabled\n", idx);
159 /* TBD: need check for >16 IRQ */
160 res->start = find_next_bit(rule->map.bits, PNP_IRQ_NR, 16);
161 if (res->start < PNP_IRQ_NR) {
162 res->end = res->start;
165 for (i = 0; i < 16; i++) {
166 if (test_bit(xtab[i], rule->map.bits)) {
167 res->start = res->end = xtab[i];
168 if (pnp_check_irq(dev, res))
173 if (rule->flags & IORESOURCE_IRQ_OPTIONAL) {
176 res->flags |= IORESOURCE_DISABLED;
177 pnp_dbg(&dev->dev, " irq %d disabled (optional)\n", idx);
181 pnp_dbg(&dev->dev, " couldn't assign irq %d\n", idx);
185 pnp_add_irq_resource(dev, res->start, res->flags);
189 #ifdef CONFIG_ISA_DMA_API
190 static int pnp_assign_dma(struct pnp_dev *dev, struct pnp_dma *rule, int idx)
192 struct resource *res, local_res;
195 /* DMA priority: this table is good for i386 */
196 static unsigned short xtab[8] = {
197 1, 3, 5, 6, 7, 0, 2, 4
200 res = pnp_find_resource(dev, rule->flags, IORESOURCE_DMA, idx);
202 pnp_dbg(&dev->dev, " dma %d already set to %d flags %#lx\n",
203 idx, (int) res->start, res->flags);
208 res->flags = rule->flags | IORESOURCE_AUTO;
213 res->flags |= IORESOURCE_DISABLED;
214 pnp_dbg(&dev->dev, " dma %d disabled\n", idx);
218 for (i = 0; i < 8; i++) {
219 if (rule->map & (1 << xtab[i])) {
220 res->start = res->end = xtab[i];
221 if (pnp_check_dma(dev, res))
226 pnp_dbg(&dev->dev, " couldn't assign dma %d\n", idx);
230 pnp_add_dma_resource(dev, res->start, res->flags);
233 #endif /* CONFIG_ISA_DMA_API */
235 void pnp_init_resources(struct pnp_dev *dev)
237 pnp_free_resources(dev);
240 static void pnp_clean_resource_table(struct pnp_dev *dev)
242 struct pnp_resource *pnp_res, *tmp;
244 list_for_each_entry_safe(pnp_res, tmp, &dev->resources, list) {
245 if (pnp_res->res.flags & IORESOURCE_AUTO)
246 pnp_free_resource(pnp_res);
251 * pnp_assign_resources - assigns resources to the device based on the specified dependent number
252 * @dev: pointer to the desired device
253 * @set: the dependent function number
255 static int pnp_assign_resources(struct pnp_dev *dev, int set)
257 struct pnp_option *option;
258 int nport = 0, nmem = 0, nirq = 0;
259 int ndma __maybe_unused = 0;
262 pnp_dbg(&dev->dev, "pnp_assign_resources, try dependent set %d\n", set);
263 mutex_lock(&pnp_res_mutex);
264 pnp_clean_resource_table(dev);
266 list_for_each_entry(option, &dev->options, list) {
267 if (pnp_option_is_dependent(option) &&
268 pnp_option_set(option) != set)
271 switch (option->type) {
273 ret = pnp_assign_port(dev, &option->u.port, nport++);
276 ret = pnp_assign_mem(dev, &option->u.mem, nmem++);
279 ret = pnp_assign_irq(dev, &option->u.irq, nirq++);
281 #ifdef CONFIG_ISA_DMA_API
283 ret = pnp_assign_dma(dev, &option->u.dma, ndma++);
294 mutex_unlock(&pnp_res_mutex);
296 pnp_dbg(&dev->dev, "pnp_assign_resources failed (%d)\n", ret);
297 pnp_clean_resource_table(dev);
299 dbg_pnp_show_resources(dev, "pnp_assign_resources succeeded");
304 * pnp_auto_config_dev - automatically assigns resources to a device
305 * @dev: pointer to the desired device
307 int pnp_auto_config_dev(struct pnp_dev *dev)
311 if (!pnp_can_configure(dev)) {
312 pnp_dbg(&dev->dev, "configuration not supported\n");
316 ret = pnp_assign_resources(dev, 0);
320 for (i = 1; i < dev->num_dependent_sets; i++) {
321 ret = pnp_assign_resources(dev, i);
326 dev_err(&dev->dev, "unable to assign resources\n");
331 * pnp_start_dev - low-level start of the PnP device
332 * @dev: pointer to the desired device
334 * assumes that resources have already been allocated
336 int pnp_start_dev(struct pnp_dev *dev)
338 if (!pnp_can_write(dev)) {
339 pnp_dbg(&dev->dev, "activation not supported\n");
343 dbg_pnp_show_resources(dev, "pnp_start_dev");
344 if (dev->protocol->set(dev) < 0) {
345 dev_err(&dev->dev, "activation failed\n");
349 dev_info(&dev->dev, "activated\n");
354 * pnp_stop_dev - low-level disable of the PnP device
355 * @dev: pointer to the desired device
357 * does not free resources
359 int pnp_stop_dev(struct pnp_dev *dev)
361 if (!pnp_can_disable(dev)) {
362 pnp_dbg(&dev->dev, "disabling not supported\n");
365 if (dev->protocol->disable(dev) < 0) {
366 dev_err(&dev->dev, "disable failed\n");
370 dev_info(&dev->dev, "disabled\n");
375 * pnp_activate_dev - activates a PnP device for use
376 * @dev: pointer to the desired device
378 * does not validate or set resources so be careful.
380 int pnp_activate_dev(struct pnp_dev *dev)
387 /* ensure resources are allocated */
388 if (pnp_auto_config_dev(dev))
391 error = pnp_start_dev(dev);
400 * pnp_disable_dev - disables device
401 * @dev: pointer to the desired device
403 * inform the correct pnp protocol so that resources can be used by other devices
405 int pnp_disable_dev(struct pnp_dev *dev)
412 error = pnp_stop_dev(dev);
418 /* release the resources so that other devices can use them */
419 mutex_lock(&pnp_res_mutex);
420 pnp_clean_resource_table(dev);
421 mutex_unlock(&pnp_res_mutex);
426 EXPORT_SYMBOL(pnp_start_dev);
427 EXPORT_SYMBOL(pnp_stop_dev);
428 EXPORT_SYMBOL(pnp_activate_dev);
429 EXPORT_SYMBOL(pnp_disable_dev);