blob: a925e6b63d72cff9953672c285210de80c3c488e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * resource.c - Contains functions for registering and analyzing resource information
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>
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -06006 * Copyright (C) 2008 Hewlett-Packard Development Company, L.P.
7 * Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/errno.h>
13#include <linux/interrupt.h>
14#include <linux/kernel.h>
15#include <asm/io.h>
16#include <asm/dma.h>
17#include <asm/irq.h>
18#include <linux/pci.h>
19#include <linux/ioport.h>
20#include <linux/init.h>
21
22#include <linux/pnp.h>
23#include "base.h"
24
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -070025static int pnp_reserve_irq[16] = {[0 ... 15] = -1 }; /* reserve (don't use) some IRQ */
26static int pnp_reserve_dma[8] = {[0 ... 7] = -1 }; /* reserve (don't use) some DMA */
27static int pnp_reserve_io[16] = {[0 ... 15] = -1 }; /* reserve (don't use) some I/O region */
28static int pnp_reserve_mem[16] = {[0 ... 15] = -1 }; /* reserve (don't use) some memory region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
31 * option registration
32 */
33
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060034struct pnp_option *pnp_build_option(struct pnp_dev *dev, unsigned long type,
35 unsigned int option_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060037 struct pnp_option *option;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060039 option = kzalloc(sizeof(struct pnp_option), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 if (!option)
41 return NULL;
42
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060043 option->flags = option_flags;
44 option->type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060046 list_add_tail(&option->list, &dev->options);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return option;
48}
49
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060050int pnp_register_irq_resource(struct pnp_dev *dev, unsigned int option_flags,
Bjorn Helgaasc2275362008-06-27 16:57:11 -060051 pnp_irq_mask_t *map, unsigned char flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060053 struct pnp_option *option;
54 struct pnp_irq *irq;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -070055
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060056 option = pnp_build_option(dev, IORESOURCE_IRQ, option_flags);
57 if (!option)
Bjorn Helgaasc2275362008-06-27 16:57:11 -060058 return -ENOMEM;
59
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060060 irq = &option->u.irq;
Bjorn Helgaas2d29a7a2008-06-27 16:57:13 -060061 irq->map = *map;
62 irq->flags = flags;
Bjorn Helgaasc2275362008-06-27 16:57:11 -060063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#ifdef CONFIG_PCI
65 {
66 int i;
67
68 for (i = 0; i < 16; i++)
Bjorn Helgaas2d29a7a2008-06-27 16:57:13 -060069 if (test_bit(i, irq->map.bits))
David Shaohua Lic9c3e452005-04-01 00:07:31 -050070 pcibios_penalize_isa_irq(i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
72#endif
Bjorn Helgaasc1caf062008-04-28 16:34:04 -060073
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060074 dbg_pnp_show_option(dev, option);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return 0;
76}
77
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060078int pnp_register_dma_resource(struct pnp_dev *dev, unsigned int option_flags,
Bjorn Helgaasc2275362008-06-27 16:57:11 -060079 unsigned char map, unsigned char flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060081 struct pnp_option *option;
82 struct pnp_dma *dma;
Bjorn Helgaasc2275362008-06-27 16:57:11 -060083
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060084 option = pnp_build_option(dev, IORESOURCE_DMA, option_flags);
85 if (!option)
Bjorn Helgaasc2275362008-06-27 16:57:11 -060086 return -ENOMEM;
87
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060088 dma = &option->u.dma;
Bjorn Helgaas2d29a7a2008-06-27 16:57:13 -060089 dma->map = map;
90 dma->flags = flags;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -070091
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060092 dbg_pnp_show_option(dev, option);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return 0;
94}
95
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -060096int pnp_register_port_resource(struct pnp_dev *dev, unsigned int option_flags,
Bjorn Helgaasc2275362008-06-27 16:57:11 -060097 resource_size_t min, resource_size_t max,
98 resource_size_t align, resource_size_t size,
99 unsigned char flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600101 struct pnp_option *option;
102 struct pnp_port *port;
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600103
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600104 option = pnp_build_option(dev, IORESOURCE_IO, option_flags);
105 if (!option)
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600106 return -ENOMEM;
107
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600108 port = &option->u.port;
Bjorn Helgaas2d29a7a2008-06-27 16:57:13 -0600109 port->min = min;
110 port->max = max;
111 port->align = align;
112 port->size = size;
113 port->flags = flags;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700114
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600115 dbg_pnp_show_option(dev, option);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return 0;
117}
118
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600119int pnp_register_mem_resource(struct pnp_dev *dev, unsigned int option_flags,
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600120 resource_size_t min, resource_size_t max,
121 resource_size_t align, resource_size_t size,
122 unsigned char flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600124 struct pnp_option *option;
125 struct pnp_mem *mem;
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600126
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600127 option = pnp_build_option(dev, IORESOURCE_MEM, option_flags);
128 if (!option)
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600129 return -ENOMEM;
130
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600131 mem = &option->u.mem;
Bjorn Helgaas2d29a7a2008-06-27 16:57:13 -0600132 mem->min = min;
133 mem->max = max;
134 mem->align = align;
135 mem->size = size;
136 mem->flags = flags;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700137
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600138 dbg_pnp_show_option(dev, option);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return 0;
140}
141
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600142void pnp_free_options(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600144 struct pnp_option *option, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600146 list_for_each_entry_safe(option, tmp, &dev->options, list) {
147 list_del(&option->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 kfree(option);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 * resource validity checking
154 */
155
156#define length(start, end) (*(end) - *(start) + 1)
157
158/* Two ranges conflict if one doesn't end before the other starts */
159#define ranged_conflict(starta, enda, startb, endb) \
160 !((*(enda) < *(startb)) || (*(endb) < *(starta)))
161
162#define cannot_compare(flags) \
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600163((flags) & IORESOURCE_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600165int pnp_check_port(struct pnp_dev *dev, struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600167 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct pnp_dev *tdev;
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600169 struct resource *tres;
Greg Kroah-Hartmanb60ba832006-06-12 17:07:07 -0700170 resource_size_t *port, *end, *tport, *tend;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700171
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600172 port = &res->start;
173 end = &res->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /* if the resource doesn't exist, don't complain about it */
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600176 if (cannot_compare(res->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return 1;
178
179 /* check if the resource is already in use, skip if the
180 * device is active because it itself may be in use */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700181 if (!dev->active) {
182 if (__check_region(&ioport_resource, *port, length(port, end)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return 0;
184 }
185
186 /* check if the resource is reserved */
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600187 for (i = 0; i < 8; i++) {
188 int rport = pnp_reserve_io[i << 1];
189 int rend = pnp_reserve_io[(i << 1) + 1] + rport - 1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700190 if (ranged_conflict(port, end, &rport, &rend))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return 0;
192 }
193
194 /* check for internal conflicts */
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600195 for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_IO, i)); i++) {
196 if (tres != res && tres->flags & IORESOURCE_IO) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600197 tport = &tres->start;
198 tend = &tres->end;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700199 if (ranged_conflict(port, end, tport, tend))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return 0;
201 }
202 }
203
204 /* check for conflicts with other pnp devices */
205 pnp_for_each_dev(tdev) {
206 if (tdev == dev)
207 continue;
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600208 for (i = 0;
209 (tres = pnp_get_resource(tdev, IORESOURCE_IO, i));
210 i++) {
211 if (tres->flags & IORESOURCE_IO) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600212 if (cannot_compare(tres->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 continue;
Bjorn Helgaas11439a62010-05-03 10:47:21 -0600214 if (tres->flags & IORESOURCE_WINDOW)
215 continue;
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600216 tport = &tres->start;
217 tend = &tres->end;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700218 if (ranged_conflict(port, end, tport, tend))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return 0;
220 }
221 }
222 }
223
224 return 1;
225}
226
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600227int pnp_check_mem(struct pnp_dev *dev, struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600229 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct pnp_dev *tdev;
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600231 struct resource *tres;
Greg Kroah-Hartmanb60ba832006-06-12 17:07:07 -0700232 resource_size_t *addr, *end, *taddr, *tend;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700233
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600234 addr = &res->start;
235 end = &res->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /* if the resource doesn't exist, don't complain about it */
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600238 if (cannot_compare(res->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 1;
240
241 /* check if the resource is already in use, skip if the
242 * device is active because it itself may be in use */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700243 if (!dev->active) {
244 if (check_mem_region(*addr, length(addr, end)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 0;
246 }
247
248 /* check if the resource is reserved */
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600249 for (i = 0; i < 8; i++) {
250 int raddr = pnp_reserve_mem[i << 1];
251 int rend = pnp_reserve_mem[(i << 1) + 1] + raddr - 1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700252 if (ranged_conflict(addr, end, &raddr, &rend))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254 }
255
256 /* check for internal conflicts */
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600257 for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_MEM, i)); i++) {
258 if (tres != res && tres->flags & IORESOURCE_MEM) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600259 taddr = &tres->start;
260 tend = &tres->end;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700261 if (ranged_conflict(addr, end, taddr, tend))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return 0;
263 }
264 }
265
266 /* check for conflicts with other pnp devices */
267 pnp_for_each_dev(tdev) {
268 if (tdev == dev)
269 continue;
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600270 for (i = 0;
271 (tres = pnp_get_resource(tdev, IORESOURCE_MEM, i));
272 i++) {
273 if (tres->flags & IORESOURCE_MEM) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600274 if (cannot_compare(tres->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 continue;
Bjorn Helgaas11439a62010-05-03 10:47:21 -0600276 if (tres->flags & IORESOURCE_WINDOW)
277 continue;
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600278 taddr = &tres->start;
279 tend = &tres->end;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700280 if (ranged_conflict(addr, end, taddr, tend))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 0;
282 }
283 }
284 }
285
286 return 1;
287}
288
David Howells7d12e782006-10-05 14:55:46 +0100289static irqreturn_t pnp_test_handler(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 return IRQ_HANDLED;
292}
293
Bjorn Helgaas84684c72008-06-27 16:57:18 -0600294#ifdef CONFIG_PCI
295static int pci_dev_uses_irq(struct pnp_dev *pnp, struct pci_dev *pci,
296 unsigned int irq)
297{
298 u32 class;
299 u8 progif;
300
301 if (pci->irq == irq) {
Bjorn Helgaas2f534322008-08-19 16:53:47 -0600302 pnp_dbg(&pnp->dev, " device %s using irq %d\n",
Bjorn Helgaas84684c72008-06-27 16:57:18 -0600303 pci_name(pci), irq);
304 return 1;
305 }
306
307 /*
308 * See pci_setup_device() and ata_pci_sff_activate_host() for
309 * similar IDE legacy detection.
310 */
311 pci_read_config_dword(pci, PCI_CLASS_REVISION, &class);
312 class >>= 8; /* discard revision ID */
313 progif = class & 0xff;
314 class >>= 8;
315
316 if (class == PCI_CLASS_STORAGE_IDE) {
317 /*
318 * Unless both channels are native-PCI mode only,
319 * treat the compatibility IRQs as busy.
320 */
321 if ((progif & 0x5) != 0x5)
322 if (pci_get_legacy_ide_irq(pci, 0) == irq ||
323 pci_get_legacy_ide_irq(pci, 1) == irq) {
Bjorn Helgaas2f534322008-08-19 16:53:47 -0600324 pnp_dbg(&pnp->dev, " legacy IDE device %s "
Bjorn Helgaas84684c72008-06-27 16:57:18 -0600325 "using irq %d\n", pci_name(pci), irq);
326 return 1;
327 }
328 }
329
330 return 0;
331}
332#endif
333
334static int pci_uses_irq(struct pnp_dev *pnp, unsigned int irq)
335{
336#ifdef CONFIG_PCI
337 struct pci_dev *pci = NULL;
338
339 for_each_pci_dev(pci) {
340 if (pci_dev_uses_irq(pnp, pci, irq)) {
341 pci_dev_put(pci);
342 return 1;
343 }
344 }
345#endif
346 return 0;
347}
348
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600349int pnp_check_irq(struct pnp_dev *dev, struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600351 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct pnp_dev *tdev;
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600353 struct resource *tres;
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600354 resource_size_t *irq;
355
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600356 irq = &res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /* if the resource doesn't exist, don't complain about it */
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600359 if (cannot_compare(res->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 1;
361
362 /* check if the resource is valid */
363 if (*irq < 0 || *irq > 15)
364 return 0;
365
366 /* check if the resource is reserved */
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600367 for (i = 0; i < 16; i++) {
368 if (pnp_reserve_irq[i] == *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
370 }
371
372 /* check for internal conflicts */
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600373 for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_IRQ, i)); i++) {
374 if (tres != res && tres->flags & IORESOURCE_IRQ) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600375 if (tres->start == *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377 }
378 }
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* check if the resource is being used by a pci device */
Bjorn Helgaas84684c72008-06-27 16:57:18 -0600381 if (pci_uses_irq(dev, *irq))
382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* check if the resource is already in use, skip if the
385 * device is active because it itself may be in use */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700386 if (!dev->active) {
Andrew Morton0cadaf42006-07-01 04:36:37 -0700387 if (request_irq(*irq, pnp_test_handler,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700388 IRQF_DISABLED | IRQF_PROBE_SHARED, "pnp", NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 0;
390 free_irq(*irq, NULL);
391 }
392
393 /* check for conflicts with other pnp devices */
394 pnp_for_each_dev(tdev) {
395 if (tdev == dev)
396 continue;
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600397 for (i = 0;
398 (tres = pnp_get_resource(tdev, IORESOURCE_IRQ, i));
399 i++) {
400 if (tres->flags & IORESOURCE_IRQ) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600401 if (cannot_compare(tres->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 continue;
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600403 if (tres->start == *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 0;
405 }
406 }
407 }
408
409 return 1;
410}
411
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600412int pnp_check_dma(struct pnp_dev *dev, struct resource *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414#ifndef CONFIG_IA64
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600415 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct pnp_dev *tdev;
Bjorn Helgaasf5d94ff2008-04-28 16:34:22 -0600417 struct resource *tres;
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600418 resource_size_t *dma;
419
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600420 dma = &res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* if the resource doesn't exist, don't complain about it */
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600423 if (cannot_compare(res->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 1;
425
426 /* check if the resource is valid */
427 if (*dma < 0 || *dma == 4 || *dma > 7)
428 return 0;
429
430 /* check if the resource is reserved */
Bjorn Helgaasecfa9352008-04-28 16:34:17 -0600431 for (i = 0; i < 8; i++) {
432 if (pnp_reserve_dma[i] == *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434 }
435
436 /* check for internal conflicts */
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600437 for (i = 0; (tres = pnp_get_resource(dev, IORESOURCE_DMA, i)); i++) {
438 if (tres != res && tres->flags & IORESOURCE_DMA) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600439 if (tres->start == *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return 0;
441 }
442 }
443
444 /* check if the resource is already in use, skip if the
445 * device is active because it itself may be in use */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700446 if (!dev->active) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (request_dma(*dma, "pnp"))
448 return 0;
449 free_dma(*dma);
450 }
451
452 /* check for conflicts with other pnp devices */
453 pnp_for_each_dev(tdev) {
454 if (tdev == dev)
455 continue;
Bjorn Helgaas95ab3662008-04-28 16:34:26 -0600456 for (i = 0;
457 (tres = pnp_get_resource(tdev, IORESOURCE_DMA, i));
458 i++) {
459 if (tres->flags & IORESOURCE_DMA) {
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600460 if (cannot_compare(tres->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 continue;
Bjorn Helgaas30c016a2008-04-28 16:34:19 -0600462 if (tres->start == *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 0;
464 }
465 }
466 }
467
468 return 1;
469#else
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700470 /* IA64 does not have legacy DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 0;
472#endif
473}
474
Rene Hermanb563cf52008-10-15 22:03:58 -0700475unsigned long pnp_resource_type(struct resource *res)
Bjorn Helgaas940e98d2008-06-27 16:56:54 -0600476{
477 return res->flags & (IORESOURCE_IO | IORESOURCE_MEM |
Bjorn Helgaas7e0e9c02010-03-05 10:47:57 -0700478 IORESOURCE_IRQ | IORESOURCE_DMA |
479 IORESOURCE_BUS);
Bjorn Helgaas940e98d2008-06-27 16:56:54 -0600480}
481
Bjorn Helgaas0a977f12008-04-28 16:34:31 -0600482struct resource *pnp_get_resource(struct pnp_dev *dev,
Rene Hermanb563cf52008-10-15 22:03:58 -0700483 unsigned long type, unsigned int num)
Bjorn Helgaas0a977f12008-04-28 16:34:31 -0600484{
485 struct pnp_resource *pnp_res;
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600486 struct resource *res;
Bjorn Helgaas0a977f12008-04-28 16:34:31 -0600487
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600488 list_for_each_entry(pnp_res, &dev->resources, list) {
489 res = &pnp_res->res;
490 if (pnp_resource_type(res) == type && num-- == 0)
491 return res;
492 }
Bjorn Helgaas0a977f12008-04-28 16:34:31 -0600493 return NULL;
494}
Bjorn Helgaasb90eca02008-04-28 16:34:14 -0600495EXPORT_SYMBOL(pnp_get_resource);
496
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600497static struct pnp_resource *pnp_new_resource(struct pnp_dev *dev)
Bjorn Helgaasa50b6d72008-04-28 16:34:33 -0600498{
499 struct pnp_resource *pnp_res;
Bjorn Helgaasa50b6d72008-04-28 16:34:33 -0600500
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600501 pnp_res = kzalloc(sizeof(struct pnp_resource), GFP_KERNEL);
502 if (!pnp_res)
503 return NULL;
504
505 list_add_tail(&pnp_res->list, &dev->resources);
506 return pnp_res;
Bjorn Helgaasa50b6d72008-04-28 16:34:33 -0600507}
508
Bjorn Helgaasdbddd032008-04-28 16:34:34 -0600509struct pnp_resource *pnp_add_irq_resource(struct pnp_dev *dev, int irq,
510 int flags)
511{
512 struct pnp_resource *pnp_res;
513 struct resource *res;
Bjorn Helgaasdbddd032008-04-28 16:34:34 -0600514
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600515 pnp_res = pnp_new_resource(dev);
Bjorn Helgaasdbddd032008-04-28 16:34:34 -0600516 if (!pnp_res) {
Bjorn Helgaas25d39c32008-06-27 16:56:59 -0600517 dev_err(&dev->dev, "can't add resource for IRQ %d\n", irq);
Bjorn Helgaasdbddd032008-04-28 16:34:34 -0600518 return NULL;
519 }
520
521 res = &pnp_res->res;
522 res->flags = IORESOURCE_IRQ | flags;
523 res->start = irq;
524 res->end = irq;
525
Bjorn Helgaasc1f3f282010-09-29 12:24:23 -0600526 dev_printk(KERN_DEBUG, &dev->dev, "%pR\n", res);
Bjorn Helgaasdbddd032008-04-28 16:34:34 -0600527 return pnp_res;
528}
529
Bjorn Helgaasdc16f5f2008-04-28 16:34:35 -0600530struct pnp_resource *pnp_add_dma_resource(struct pnp_dev *dev, int dma,
531 int flags)
532{
533 struct pnp_resource *pnp_res;
534 struct resource *res;
Bjorn Helgaasdc16f5f2008-04-28 16:34:35 -0600535
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600536 pnp_res = pnp_new_resource(dev);
Bjorn Helgaasdc16f5f2008-04-28 16:34:35 -0600537 if (!pnp_res) {
Bjorn Helgaas25d39c32008-06-27 16:56:59 -0600538 dev_err(&dev->dev, "can't add resource for DMA %d\n", dma);
Bjorn Helgaasdc16f5f2008-04-28 16:34:35 -0600539 return NULL;
540 }
541
542 res = &pnp_res->res;
543 res->flags = IORESOURCE_DMA | flags;
544 res->start = dma;
545 res->end = dma;
546
Bjorn Helgaasc1f3f282010-09-29 12:24:23 -0600547 dev_printk(KERN_DEBUG, &dev->dev, "%pR\n", res);
Bjorn Helgaasdc16f5f2008-04-28 16:34:35 -0600548 return pnp_res;
549}
550
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600551struct pnp_resource *pnp_add_io_resource(struct pnp_dev *dev,
552 resource_size_t start,
553 resource_size_t end, int flags)
554{
555 struct pnp_resource *pnp_res;
556 struct resource *res;
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600557
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600558 pnp_res = pnp_new_resource(dev);
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600559 if (!pnp_res) {
Bjorn Helgaas25d39c32008-06-27 16:56:59 -0600560 dev_err(&dev->dev, "can't add resource for IO %#llx-%#llx\n",
561 (unsigned long long) start,
562 (unsigned long long) end);
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600563 return NULL;
564 }
565
566 res = &pnp_res->res;
567 res->flags = IORESOURCE_IO | flags;
568 res->start = start;
569 res->end = end;
570
Bjorn Helgaasc1f3f282010-09-29 12:24:23 -0600571 dev_printk(KERN_DEBUG, &dev->dev, "%pR\n", res);
Bjorn Helgaascc8c2e32008-04-28 16:34:36 -0600572 return pnp_res;
573}
574
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600575struct pnp_resource *pnp_add_mem_resource(struct pnp_dev *dev,
576 resource_size_t start,
577 resource_size_t end, int flags)
578{
579 struct pnp_resource *pnp_res;
580 struct resource *res;
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600581
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600582 pnp_res = pnp_new_resource(dev);
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600583 if (!pnp_res) {
Bjorn Helgaas25d39c32008-06-27 16:56:59 -0600584 dev_err(&dev->dev, "can't add resource for MEM %#llx-%#llx\n",
585 (unsigned long long) start,
586 (unsigned long long) end);
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600587 return NULL;
588 }
589
590 res = &pnp_res->res;
591 res->flags = IORESOURCE_MEM | flags;
592 res->start = start;
593 res->end = end;
594
Bjorn Helgaasc1f3f282010-09-29 12:24:23 -0600595 dev_printk(KERN_DEBUG, &dev->dev, "%pR\n", res);
Bjorn Helgaasd6180f32008-04-28 16:34:37 -0600596 return pnp_res;
597}
598
Bjorn Helgaas7e0e9c02010-03-05 10:47:57 -0700599struct pnp_resource *pnp_add_bus_resource(struct pnp_dev *dev,
600 resource_size_t start,
601 resource_size_t end)
602{
603 struct pnp_resource *pnp_res;
604 struct resource *res;
605
606 pnp_res = pnp_new_resource(dev);
607 if (!pnp_res) {
608 dev_err(&dev->dev, "can't add resource for BUS %#llx-%#llx\n",
609 (unsigned long long) start,
610 (unsigned long long) end);
611 return NULL;
612 }
613
614 res = &pnp_res->res;
615 res->flags = IORESOURCE_BUS;
616 res->start = start;
617 res->end = end;
618
Bjorn Helgaasc1f3f282010-09-29 12:24:23 -0600619 dev_printk(KERN_DEBUG, &dev->dev, "%pR\n", res);
Bjorn Helgaas7e0e9c02010-03-05 10:47:57 -0700620 return pnp_res;
621}
622
Bjorn Helgaas57fd51a2008-06-27 16:57:01 -0600623/*
624 * Determine whether the specified resource is a possible configuration
625 * for this device.
626 */
627int pnp_possible_config(struct pnp_dev *dev, int type, resource_size_t start,
628 resource_size_t size)
629{
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600630 struct pnp_option *option;
631 struct pnp_port *port;
632 struct pnp_mem *mem;
633 struct pnp_irq *irq;
634 struct pnp_dma *dma;
Bjorn Helgaas57fd51a2008-06-27 16:57:01 -0600635
Bjorn Helgaas1f32ca32008-06-27 16:57:17 -0600636 list_for_each_entry(option, &dev->options, list) {
637 if (option->type != type)
638 continue;
639
640 switch (option->type) {
641 case IORESOURCE_IO:
642 port = &option->u.port;
643 if (port->min == start && port->size == size)
644 return 1;
645 break;
646 case IORESOURCE_MEM:
647 mem = &option->u.mem;
648 if (mem->min == start && mem->size == size)
649 return 1;
650 break;
651 case IORESOURCE_IRQ:
652 irq = &option->u.irq;
653 if (start < PNP_IRQ_NR &&
654 test_bit(start, irq->map.bits))
655 return 1;
656 break;
657 case IORESOURCE_DMA:
658 dma = &option->u.dma;
659 if (dma->map & (1 << start))
660 return 1;
661 break;
662 }
663 }
Bjorn Helgaas57fd51a2008-06-27 16:57:01 -0600664
665 return 0;
666}
667EXPORT_SYMBOL(pnp_possible_config);
668
Bjorn Helgaas1b8e6962009-06-05 14:37:23 +0000669int pnp_range_reserved(resource_size_t start, resource_size_t end)
670{
671 struct pnp_dev *dev;
672 struct pnp_resource *pnp_res;
673 resource_size_t *dev_start, *dev_end;
674
675 pnp_for_each_dev(dev) {
676 list_for_each_entry(pnp_res, &dev->resources, list) {
677 dev_start = &pnp_res->res.start;
678 dev_end = &pnp_res->res.end;
679 if (ranged_conflict(&start, &end, dev_start, dev_end))
680 return 1;
681 }
682 }
683 return 0;
684}
685EXPORT_SYMBOL(pnp_range_reserved);
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687/* format is: pnp_reserve_irq=irq1[,irq2] .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688static int __init pnp_setup_reserve_irq(char *str)
689{
690 int i;
691
692 for (i = 0; i < 16; i++)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700693 if (get_option(&str, &pnp_reserve_irq[i]) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 break;
695 return 1;
696}
697
698__setup("pnp_reserve_irq=", pnp_setup_reserve_irq);
699
700/* format is: pnp_reserve_dma=dma1[,dma2] .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701static int __init pnp_setup_reserve_dma(char *str)
702{
703 int i;
704
705 for (i = 0; i < 8; i++)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700706 if (get_option(&str, &pnp_reserve_dma[i]) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 break;
708 return 1;
709}
710
711__setup("pnp_reserve_dma=", pnp_setup_reserve_dma);
712
713/* format is: pnp_reserve_io=io1,size1[,io2,size2] .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714static int __init pnp_setup_reserve_io(char *str)
715{
716 int i;
717
718 for (i = 0; i < 16; i++)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700719 if (get_option(&str, &pnp_reserve_io[i]) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 break;
721 return 1;
722}
723
724__setup("pnp_reserve_io=", pnp_setup_reserve_io);
725
726/* format is: pnp_reserve_mem=mem1,size1[,mem2,size2] .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727static int __init pnp_setup_reserve_mem(char *str)
728{
729 int i;
730
731 for (i = 0; i < 16; i++)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700732 if (get_option(&str, &pnp_reserve_mem[i]) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
734 return 1;
735}
736
737__setup("pnp_reserve_mem=", pnp_setup_reserve_mem);