Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * manager.c - Resource Management, Conflict Resolution, Activation and Disabling of Devices |
| 3 | * |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 4 | * based on isapnp.c resource management (c) Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Copyright 2003 Adam Belay <ambx1@neo.rr.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/errno.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/pnp.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 13 | #include <linux/slab.h> |
| 14 | #include <linux/bitmap.h> |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 15 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include "base.h" |
| 17 | |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 18 | DEFINE_MUTEX(pnp_res_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | static int pnp_assign_port(struct pnp_dev *dev, struct pnp_port *rule, int idx) |
| 21 | { |
Greg Kroah-Hartman | b60ba83 | 2006-06-12 17:07:07 -0700 | [diff] [blame] | 22 | resource_size_t *start, *end; |
| 23 | unsigned long *flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | if (idx >= PNP_MAX_PORT) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 26 | dev_err(&dev->dev, "too many I/O port resources\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | /* pretend we were successful so at least the manager won't try again */ |
| 28 | return 1; |
| 29 | } |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | start = &dev->res.port_resource[idx].start; |
| 32 | end = &dev->res.port_resource[idx].end; |
| 33 | flags = &dev->res.port_resource[idx].flags; |
| 34 | |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 35 | /* check if this resource has been manually set, if so skip */ |
| 36 | if (!(dev->res.port_resource[idx].flags & IORESOURCE_AUTO)) { |
| 37 | dev_dbg(&dev->dev, " io %d already set to %#llx-%#llx " |
| 38 | "flags %#lx\n", idx, (unsigned long long) *start, |
| 39 | (unsigned long long) *end, *flags); |
| 40 | return 1; |
| 41 | } |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* set the initial values */ |
| 44 | *flags |= rule->flags | IORESOURCE_IO; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 45 | *flags &= ~IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | if (!rule->size) { |
| 48 | *flags |= IORESOURCE_DISABLED; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 49 | dev_dbg(&dev->dev, " io %d disabled\n", idx); |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 50 | return 1; /* skip disabled resource requests */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | *start = rule->min; |
| 54 | *end = *start + rule->size - 1; |
| 55 | |
| 56 | /* run through until pnp_check_port is happy */ |
| 57 | while (!pnp_check_port(dev, idx)) { |
| 58 | *start += rule->align; |
| 59 | *end = *start + rule->size - 1; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 60 | if (*start > rule->max || !rule->align) { |
| 61 | dev_dbg(&dev->dev, " couldn't assign io %d\n", idx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | return 0; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 63 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 65 | dev_dbg(&dev->dev, " assign io %d %#llx-%#llx\n", idx, |
| 66 | (unsigned long long) *start, (unsigned long long) *end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | return 1; |
| 68 | } |
| 69 | |
| 70 | static int pnp_assign_mem(struct pnp_dev *dev, struct pnp_mem *rule, int idx) |
| 71 | { |
Greg Kroah-Hartman | b60ba83 | 2006-06-12 17:07:07 -0700 | [diff] [blame] | 72 | resource_size_t *start, *end; |
| 73 | unsigned long *flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | if (idx >= PNP_MAX_MEM) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 76 | dev_err(&dev->dev, "too many memory resources\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* pretend we were successful so at least the manager won't try again */ |
| 78 | return 1; |
| 79 | } |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | start = &dev->res.mem_resource[idx].start; |
| 82 | end = &dev->res.mem_resource[idx].end; |
| 83 | flags = &dev->res.mem_resource[idx].flags; |
| 84 | |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 85 | /* check if this resource has been manually set, if so skip */ |
| 86 | if (!(dev->res.mem_resource[idx].flags & IORESOURCE_AUTO)) { |
| 87 | dev_dbg(&dev->dev, " mem %d already set to %#llx-%#llx " |
| 88 | "flags %#lx\n", idx, (unsigned long long) *start, |
| 89 | (unsigned long long) *end, *flags); |
| 90 | return 1; |
| 91 | } |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | /* set the initial values */ |
| 94 | *flags |= rule->flags | IORESOURCE_MEM; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 95 | *flags &= ~IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | /* convert pnp flags to standard Linux flags */ |
| 98 | if (!(rule->flags & IORESOURCE_MEM_WRITEABLE)) |
| 99 | *flags |= IORESOURCE_READONLY; |
| 100 | if (rule->flags & IORESOURCE_MEM_CACHEABLE) |
| 101 | *flags |= IORESOURCE_CACHEABLE; |
| 102 | if (rule->flags & IORESOURCE_MEM_RANGELENGTH) |
| 103 | *flags |= IORESOURCE_RANGELENGTH; |
| 104 | if (rule->flags & IORESOURCE_MEM_SHADOWABLE) |
| 105 | *flags |= IORESOURCE_SHADOWABLE; |
| 106 | |
| 107 | if (!rule->size) { |
| 108 | *flags |= IORESOURCE_DISABLED; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 109 | dev_dbg(&dev->dev, " mem %d disabled\n", idx); |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 110 | return 1; /* skip disabled resource requests */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | *start = rule->min; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 114 | *end = *start + rule->size - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | /* run through until pnp_check_mem is happy */ |
| 117 | while (!pnp_check_mem(dev, idx)) { |
| 118 | *start += rule->align; |
| 119 | *end = *start + rule->size - 1; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 120 | if (*start > rule->max || !rule->align) { |
| 121 | dev_dbg(&dev->dev, " couldn't assign mem %d\n", idx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return 0; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 125 | dev_dbg(&dev->dev, " assign mem %d %#llx-%#llx\n", idx, |
| 126 | (unsigned long long) *start, (unsigned long long) *end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | return 1; |
| 128 | } |
| 129 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 130 | static int pnp_assign_irq(struct pnp_dev *dev, struct pnp_irq *rule, int idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Greg Kroah-Hartman | b60ba83 | 2006-06-12 17:07:07 -0700 | [diff] [blame] | 132 | resource_size_t *start, *end; |
| 133 | unsigned long *flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | int i; |
| 135 | |
| 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 |
| 139 | }; |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | if (idx >= PNP_MAX_IRQ) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 142 | dev_err(&dev->dev, "too many IRQ resources\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | /* pretend we were successful so at least the manager won't try again */ |
| 144 | return 1; |
| 145 | } |
| 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | start = &dev->res.irq_resource[idx].start; |
| 148 | end = &dev->res.irq_resource[idx].end; |
| 149 | flags = &dev->res.irq_resource[idx].flags; |
| 150 | |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 151 | /* check if this resource has been manually set, if so skip */ |
| 152 | if (!(dev->res.irq_resource[idx].flags & IORESOURCE_AUTO)) { |
| 153 | dev_dbg(&dev->dev, " irq %d already set to %d flags %#lx\n", |
| 154 | idx, (int) *start, *flags); |
| 155 | return 1; |
| 156 | } |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* set the initial values */ |
| 159 | *flags |= rule->flags | IORESOURCE_IRQ; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 160 | *flags &= ~IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | if (bitmap_empty(rule->map, PNP_IRQ_NR)) { |
| 163 | *flags |= IORESOURCE_DISABLED; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 164 | dev_dbg(&dev->dev, " irq %d disabled\n", idx); |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 165 | return 1; /* skip disabled resource requests */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | /* TBD: need check for >16 IRQ */ |
| 169 | *start = find_next_bit(rule->map, PNP_IRQ_NR, 16); |
| 170 | if (*start < PNP_IRQ_NR) { |
| 171 | *end = *start; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 172 | dev_dbg(&dev->dev, " assign irq %d %d\n", idx, (int) *start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | return 1; |
| 174 | } |
| 175 | for (i = 0; i < 16; i++) { |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 176 | if (test_bit(xtab[i], rule->map)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | *start = *end = xtab[i]; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 178 | if (pnp_check_irq(dev, idx)) { |
| 179 | dev_dbg(&dev->dev, " assign irq %d %d\n", idx, |
| 180 | (int) *start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | return 1; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 182 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |
| 184 | } |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 185 | dev_dbg(&dev->dev, " couldn't assign irq %d\n", idx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | return 0; |
| 187 | } |
| 188 | |
Jan Beulich | 7ef3639 | 2007-10-16 23:31:07 -0700 | [diff] [blame] | 189 | static void pnp_assign_dma(struct pnp_dev *dev, struct pnp_dma *rule, int idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
Greg Kroah-Hartman | b60ba83 | 2006-06-12 17:07:07 -0700 | [diff] [blame] | 191 | resource_size_t *start, *end; |
| 192 | unsigned long *flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | int i; |
| 194 | |
| 195 | /* DMA priority: this table is good for i386 */ |
| 196 | static unsigned short xtab[8] = { |
| 197 | 1, 3, 5, 6, 7, 0, 2, 4 |
| 198 | }; |
| 199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | if (idx >= PNP_MAX_DMA) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 201 | dev_err(&dev->dev, "too many DMA resources\n"); |
Jan Beulich | 7ef3639 | 2007-10-16 23:31:07 -0700 | [diff] [blame] | 202 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | start = &dev->res.dma_resource[idx].start; |
| 206 | end = &dev->res.dma_resource[idx].end; |
| 207 | flags = &dev->res.dma_resource[idx].flags; |
| 208 | |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 209 | /* check if this resource has been manually set, if so skip */ |
| 210 | if (!(dev->res.dma_resource[idx].flags & IORESOURCE_AUTO)) { |
| 211 | dev_dbg(&dev->dev, " dma %d already set to %d flags %#lx\n", |
| 212 | idx, (int) *start, *flags); |
| 213 | return; |
| 214 | } |
| 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | /* set the initial values */ |
| 217 | *flags |= rule->flags | IORESOURCE_DMA; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 218 | *flags &= ~IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | for (i = 0; i < 8; i++) { |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 221 | if (rule->map & (1 << xtab[i])) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | *start = *end = xtab[i]; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 223 | if (pnp_check_dma(dev, idx)) { |
| 224 | dev_dbg(&dev->dev, " assign dma %d %d\n", idx, |
| 225 | (int) *start); |
Jan Beulich | 7ef3639 | 2007-10-16 23:31:07 -0700 | [diff] [blame] | 226 | return; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 227 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
| 229 | } |
Jan Beulich | 7ef3639 | 2007-10-16 23:31:07 -0700 | [diff] [blame] | 230 | #ifdef MAX_DMA_CHANNELS |
| 231 | *start = *end = MAX_DMA_CHANNELS; |
| 232 | #endif |
| 233 | *flags |= IORESOURCE_UNSET | IORESOURCE_DISABLED; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 234 | dev_dbg(&dev->dev, " disable dma %d\n", idx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | /** |
| 238 | * pnp_init_resources - Resets a resource table to default values. |
| 239 | * @table: pointer to the desired resource table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | */ |
Bjorn Helgaas | 2cd139309 | 2008-04-28 16:34:11 -0600 | [diff] [blame^] | 241 | void pnp_init_resources(struct pnp_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
Bjorn Helgaas | 2cd139309 | 2008-04-28 16:34:11 -0600 | [diff] [blame^] | 243 | struct pnp_resource_table *table = &dev->res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | int idx; |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | for (idx = 0; idx < PNP_MAX_IRQ; idx++) { |
| 247 | table->irq_resource[idx].name = NULL; |
| 248 | table->irq_resource[idx].start = -1; |
| 249 | table->irq_resource[idx].end = -1; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 250 | table->irq_resource[idx].flags = |
| 251 | IORESOURCE_IRQ | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | } |
| 253 | for (idx = 0; idx < PNP_MAX_DMA; idx++) { |
| 254 | table->dma_resource[idx].name = NULL; |
| 255 | table->dma_resource[idx].start = -1; |
| 256 | table->dma_resource[idx].end = -1; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 257 | table->dma_resource[idx].flags = |
| 258 | IORESOURCE_DMA | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | } |
| 260 | for (idx = 0; idx < PNP_MAX_PORT; idx++) { |
| 261 | table->port_resource[idx].name = NULL; |
| 262 | table->port_resource[idx].start = 0; |
| 263 | table->port_resource[idx].end = 0; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 264 | table->port_resource[idx].flags = |
| 265 | IORESOURCE_IO | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | for (idx = 0; idx < PNP_MAX_MEM; idx++) { |
| 268 | table->mem_resource[idx].name = NULL; |
| 269 | table->mem_resource[idx].start = 0; |
| 270 | table->mem_resource[idx].end = 0; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 271 | table->mem_resource[idx].flags = |
| 272 | IORESOURCE_MEM | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * pnp_clean_resources - clears resources that were not manually set |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 278 | * @res: the resources to clean |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | */ |
Bjorn Helgaas | 6969c7e | 2008-04-28 16:34:10 -0600 | [diff] [blame] | 280 | static void pnp_clean_resource_table(struct pnp_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | { |
Bjorn Helgaas | 6969c7e | 2008-04-28 16:34:10 -0600 | [diff] [blame] | 282 | struct pnp_resource_table *res = &dev->res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | int idx; |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | for (idx = 0; idx < PNP_MAX_IRQ; idx++) { |
| 286 | if (!(res->irq_resource[idx].flags & IORESOURCE_AUTO)) |
| 287 | continue; |
| 288 | res->irq_resource[idx].start = -1; |
| 289 | res->irq_resource[idx].end = -1; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 290 | res->irq_resource[idx].flags = |
| 291 | IORESOURCE_IRQ | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
| 293 | for (idx = 0; idx < PNP_MAX_DMA; idx++) { |
| 294 | if (!(res->dma_resource[idx].flags & IORESOURCE_AUTO)) |
| 295 | continue; |
| 296 | res->dma_resource[idx].start = -1; |
| 297 | res->dma_resource[idx].end = -1; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 298 | res->dma_resource[idx].flags = |
| 299 | IORESOURCE_DMA | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } |
| 301 | for (idx = 0; idx < PNP_MAX_PORT; idx++) { |
| 302 | if (!(res->port_resource[idx].flags & IORESOURCE_AUTO)) |
| 303 | continue; |
| 304 | res->port_resource[idx].start = 0; |
| 305 | res->port_resource[idx].end = 0; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 306 | res->port_resource[idx].flags = |
| 307 | IORESOURCE_IO | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | for (idx = 0; idx < PNP_MAX_MEM; idx++) { |
| 310 | if (!(res->mem_resource[idx].flags & IORESOURCE_AUTO)) |
| 311 | continue; |
| 312 | res->mem_resource[idx].start = 0; |
| 313 | res->mem_resource[idx].end = 0; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 314 | res->mem_resource[idx].flags = |
| 315 | IORESOURCE_MEM | IORESOURCE_AUTO | IORESOURCE_UNSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * pnp_assign_resources - assigns resources to the device based on the specified dependent number |
| 321 | * @dev: pointer to the desired device |
| 322 | * @depnum: the dependent function number |
| 323 | * |
| 324 | * Only set depnum to 0 if the device does not have dependent options. |
| 325 | */ |
| 326 | static int pnp_assign_resources(struct pnp_dev *dev, int depnum) |
| 327 | { |
| 328 | struct pnp_port *port; |
| 329 | struct pnp_mem *mem; |
| 330 | struct pnp_irq *irq; |
| 331 | struct pnp_dma *dma; |
| 332 | int nport = 0, nmem = 0, nirq = 0, ndma = 0; |
| 333 | |
| 334 | if (!pnp_can_configure(dev)) |
| 335 | return -ENODEV; |
| 336 | |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 337 | dbg_pnp_show_resources(dev, "before pnp_assign_resources"); |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 338 | mutex_lock(&pnp_res_mutex); |
Bjorn Helgaas | 6969c7e | 2008-04-28 16:34:10 -0600 | [diff] [blame] | 339 | pnp_clean_resource_table(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | if (dev->independent) { |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 341 | dev_dbg(&dev->dev, "assigning independent options\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | port = dev->independent->port; |
| 343 | mem = dev->independent->mem; |
| 344 | irq = dev->independent->irq; |
| 345 | dma = dev->independent->dma; |
| 346 | while (port) { |
| 347 | if (!pnp_assign_port(dev, port, nport)) |
| 348 | goto fail; |
| 349 | nport++; |
| 350 | port = port->next; |
| 351 | } |
| 352 | while (mem) { |
| 353 | if (!pnp_assign_mem(dev, mem, nmem)) |
| 354 | goto fail; |
| 355 | nmem++; |
| 356 | mem = mem->next; |
| 357 | } |
| 358 | while (irq) { |
| 359 | if (!pnp_assign_irq(dev, irq, nirq)) |
| 360 | goto fail; |
| 361 | nirq++; |
| 362 | irq = irq->next; |
| 363 | } |
| 364 | while (dma) { |
Jan Beulich | 7ef3639 | 2007-10-16 23:31:07 -0700 | [diff] [blame] | 365 | pnp_assign_dma(dev, dma, ndma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | ndma++; |
| 367 | dma = dma->next; |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | if (depnum) { |
| 372 | struct pnp_option *dep; |
| 373 | int i; |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 374 | |
| 375 | dev_dbg(&dev->dev, "assigning dependent option %d\n", depnum); |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 376 | for (i = 1, dep = dev->dependent; i < depnum; |
| 377 | i++, dep = dep->next) |
| 378 | if (!dep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | goto fail; |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 380 | port = dep->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | mem = dep->mem; |
| 382 | irq = dep->irq; |
| 383 | dma = dep->dma; |
| 384 | while (port) { |
| 385 | if (!pnp_assign_port(dev, port, nport)) |
| 386 | goto fail; |
| 387 | nport++; |
| 388 | port = port->next; |
| 389 | } |
| 390 | while (mem) { |
| 391 | if (!pnp_assign_mem(dev, mem, nmem)) |
| 392 | goto fail; |
| 393 | nmem++; |
| 394 | mem = mem->next; |
| 395 | } |
| 396 | while (irq) { |
| 397 | if (!pnp_assign_irq(dev, irq, nirq)) |
| 398 | goto fail; |
| 399 | nirq++; |
| 400 | irq = irq->next; |
| 401 | } |
| 402 | while (dma) { |
Jan Beulich | 7ef3639 | 2007-10-16 23:31:07 -0700 | [diff] [blame] | 403 | pnp_assign_dma(dev, dma, ndma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | ndma++; |
| 405 | dma = dma->next; |
| 406 | } |
| 407 | } else if (dev->dependent) |
| 408 | goto fail; |
| 409 | |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 410 | mutex_unlock(&pnp_res_mutex); |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 411 | dbg_pnp_show_resources(dev, "after pnp_assign_resources"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | return 1; |
| 413 | |
Bjorn Helgaas | 1e0aa9a | 2007-08-15 10:32:08 -0600 | [diff] [blame] | 414 | fail: |
Bjorn Helgaas | 6969c7e | 2008-04-28 16:34:10 -0600 | [diff] [blame] | 415 | pnp_clean_resource_table(dev); |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 416 | mutex_unlock(&pnp_res_mutex); |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 417 | dbg_pnp_show_resources(dev, "after pnp_assign_resources (failed)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | * pnp_auto_config_dev - automatically assigns resources to a device |
| 423 | * @dev: pointer to the desired device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | */ |
| 425 | int pnp_auto_config_dev(struct pnp_dev *dev) |
| 426 | { |
| 427 | struct pnp_option *dep; |
| 428 | int i = 1; |
| 429 | |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 430 | if (!pnp_can_configure(dev)) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 431 | dev_dbg(&dev->dev, "configuration not supported\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | return -ENODEV; |
| 433 | } |
| 434 | |
| 435 | if (!dev->dependent) { |
| 436 | if (pnp_assign_resources(dev, 0)) |
| 437 | return 0; |
| 438 | } else { |
| 439 | dep = dev->dependent; |
| 440 | do { |
| 441 | if (pnp_assign_resources(dev, i)) |
| 442 | return 0; |
| 443 | dep = dep->next; |
| 444 | i++; |
| 445 | } while (dep); |
| 446 | } |
| 447 | |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 448 | dev_err(&dev->dev, "unable to assign resources\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | return -EBUSY; |
| 450 | } |
| 451 | |
| 452 | /** |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 453 | * pnp_start_dev - low-level start of the PnP device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | * @dev: pointer to the desired device |
| 455 | * |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 456 | * assumes that resources have already been allocated |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | */ |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 458 | int pnp_start_dev(struct pnp_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | if (!pnp_can_write(dev)) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 461 | dev_dbg(&dev->dev, "activation not supported\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | return -EINVAL; |
| 463 | } |
| 464 | |
Bjorn Helgaas | 81b5c75 | 2008-04-28 16:34:08 -0600 | [diff] [blame] | 465 | dbg_pnp_show_resources(dev, "pnp_start_dev"); |
Bjorn Helgaas | 59284cb | 2008-04-28 16:34:05 -0600 | [diff] [blame] | 466 | if (dev->protocol->set(dev) < 0) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 467 | dev_err(&dev->dev, "activation failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | return -EIO; |
| 469 | } |
| 470 | |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 471 | dev_info(&dev->dev, "activated\n"); |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 472 | return 0; |
| 473 | } |
| 474 | |
| 475 | /** |
| 476 | * pnp_stop_dev - low-level disable of the PnP device |
| 477 | * @dev: pointer to the desired device |
| 478 | * |
| 479 | * does not free resources |
| 480 | */ |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 481 | int pnp_stop_dev(struct pnp_dev *dev) |
| 482 | { |
| 483 | if (!pnp_can_disable(dev)) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 484 | dev_dbg(&dev->dev, "disabling not supported\n"); |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 485 | return -EINVAL; |
| 486 | } |
Bjorn Helgaas | 9dd7846 | 2007-07-26 10:41:20 -0700 | [diff] [blame] | 487 | if (dev->protocol->disable(dev) < 0) { |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 488 | dev_err(&dev->dev, "disable failed\n"); |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 489 | return -EIO; |
| 490 | } |
| 491 | |
Bjorn Helgaas | a05d078 | 2007-10-16 23:31:10 -0700 | [diff] [blame] | 492 | dev_info(&dev->dev, "disabled\n"); |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 493 | return 0; |
| 494 | } |
| 495 | |
| 496 | /** |
| 497 | * pnp_activate_dev - activates a PnP device for use |
| 498 | * @dev: pointer to the desired device |
| 499 | * |
| 500 | * does not validate or set resources so be careful. |
| 501 | */ |
| 502 | int pnp_activate_dev(struct pnp_dev *dev) |
| 503 | { |
| 504 | int error; |
| 505 | |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 506 | if (dev->active) |
Bjorn Helgaas | cc8259a | 2008-02-06 01:40:02 -0800 | [diff] [blame] | 507 | return 0; |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 508 | |
| 509 | /* ensure resources are allocated */ |
| 510 | if (pnp_auto_config_dev(dev)) |
| 511 | return -EBUSY; |
| 512 | |
| 513 | error = pnp_start_dev(dev); |
| 514 | if (error) |
| 515 | return error; |
| 516 | |
| 517 | dev->active = 1; |
Bjorn Helgaas | cc8259a | 2008-02-06 01:40:02 -0800 | [diff] [blame] | 518 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | /** |
| 522 | * pnp_disable_dev - disables device |
| 523 | * @dev: pointer to the desired device |
| 524 | * |
| 525 | * inform the correct pnp protocol so that resources can be used by other devices |
| 526 | */ |
| 527 | int pnp_disable_dev(struct pnp_dev *dev) |
| 528 | { |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 529 | int error; |
| 530 | |
Bjorn Helgaas | 07d4e9a | 2007-07-26 10:41:21 -0700 | [diff] [blame] | 531 | if (!dev->active) |
Bjorn Helgaas | cc8259a | 2008-02-06 01:40:02 -0800 | [diff] [blame] | 532 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 534 | error = pnp_stop_dev(dev); |
| 535 | if (error) |
| 536 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
| 538 | dev->active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
| 540 | /* release the resources so that other devices can use them */ |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 541 | mutex_lock(&pnp_res_mutex); |
Bjorn Helgaas | 6969c7e | 2008-04-28 16:34:10 -0600 | [diff] [blame] | 542 | pnp_clean_resource_table(dev); |
Daniel Walker | b3bd86e | 2008-02-06 01:40:04 -0800 | [diff] [blame] | 543 | mutex_unlock(&pnp_res_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Bjorn Helgaas | cc8259a | 2008-02-06 01:40:02 -0800 | [diff] [blame] | 545 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
| 547 | |
Pierre Ossman | 68094e3 | 2005-11-29 09:09:32 +0100 | [diff] [blame] | 548 | EXPORT_SYMBOL(pnp_start_dev); |
| 549 | EXPORT_SYMBOL(pnp_stop_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | EXPORT_SYMBOL(pnp_activate_dev); |
| 551 | EXPORT_SYMBOL(pnp_disable_dev); |