blob: 727936a6befb91829d9811f2fff321c7ce912343 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ISA Plug & Play support
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * Changelog:
21 * 2000-01-01 Added quirks handling for buggy hardware
22 * Peter Denison <peterd@pnd-pc.demon.co.uk>
23 * 2000-06-14 Added isapnp_probe_devs() and isapnp_activate_dev()
24 * Christoph Hellwig <hch@infradead.org>
25 * 2001-06-03 Added release_region calls to correspond with
26 * request_region calls when a failure occurs. Also
27 * added KERN_* constants to printk() calls.
28 * 2001-11-07 Added isapnp_{,un}register_driver calls along the lines
29 * of the pci driver interface
30 * Kai Germaschewski <kai.germaschewski@gmx.de>
31 * 2002-06-06 Made the use of dma channel 0 configurable
32 * Gerald Teschl <gerald.teschl@univie.ac.at>
33 * 2002-10-06 Ported to PnP Layer - Adam Belay <ambx1@neo.rr.com>
34 * 2003-08-11 Resource Management Updates - Adam Belay <ambx1@neo.rr.com>
35 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38#include <linux/kernel.h>
39#include <linux/errno.h>
40#include <linux/slab.h>
41#include <linux/delay.h>
42#include <linux/init.h>
43#include <linux/isapnp.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080044#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/io.h>
46
Bjorn Helgaas772defc2008-04-28 16:33:52 -060047#include "../base.h"
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#if 0
50#define ISAPNP_REGION_OK
51#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Bjorn Helgaas9dd78462007-07-26 10:41:20 -070053int isapnp_disable; /* Disable ISA PnP */
54static int isapnp_rdp; /* Read Data Port */
55static int isapnp_reset = 1; /* reset all PnP cards (deactivate) */
56static int isapnp_verbose = 1; /* verbose mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020058MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_DESCRIPTION("Generic ISA Plug & Play support");
60module_param(isapnp_disable, int, 0);
61MODULE_PARM_DESC(isapnp_disable, "ISA Plug & Play disable");
62module_param(isapnp_rdp, int, 0);
63MODULE_PARM_DESC(isapnp_rdp, "ISA Plug & Play read data port");
64module_param(isapnp_reset, int, 0);
65MODULE_PARM_DESC(isapnp_reset, "ISA Plug & Play reset all cards");
66module_param(isapnp_verbose, int, 0);
67MODULE_PARM_DESC(isapnp_verbose, "ISA Plug & Play verbose mode");
68MODULE_LICENSE("GPL");
69
70#define _PIDXR 0x279
71#define _PNPWRP 0xa79
72
73/* short tags */
74#define _STAG_PNPVERNO 0x01
75#define _STAG_LOGDEVID 0x02
76#define _STAG_COMPATDEVID 0x03
77#define _STAG_IRQ 0x04
78#define _STAG_DMA 0x05
79#define _STAG_STARTDEP 0x06
80#define _STAG_ENDDEP 0x07
81#define _STAG_IOPORT 0x08
82#define _STAG_FIXEDIO 0x09
83#define _STAG_VENDOR 0x0e
84#define _STAG_END 0x0f
85/* long tags */
86#define _LTAG_MEMRANGE 0x81
87#define _LTAG_ANSISTR 0x82
88#define _LTAG_UNICODESTR 0x83
89#define _LTAG_VENDOR 0x84
90#define _LTAG_MEM32RANGE 0x85
91#define _LTAG_FIXEDMEM32RANGE 0x86
92
Bjorn Helgaasca0e8b62008-04-28 16:33:49 -060093/* Logical device control and configuration registers */
94
95#define ISAPNP_CFG_ACTIVATE 0x30 /* byte */
96#define ISAPNP_CFG_MEM 0x40 /* 4 * dword */
97#define ISAPNP_CFG_PORT 0x60 /* 8 * word */
98#define ISAPNP_CFG_IRQ 0x70 /* 2 * word */
99#define ISAPNP_CFG_DMA 0x74 /* 2 * byte */
100
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600101/*
102 * Sizes of ISAPNP logical device configuration register sets.
103 * See PNP-ISA-v1.0a.pdf, Appendix A.
104 */
105#define ISAPNP_MAX_MEM 4
106#define ISAPNP_MAX_PORT 8
107#define ISAPNP_MAX_IRQ 2
108#define ISAPNP_MAX_DMA 2
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static unsigned char isapnp_checksum_value;
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800111static DEFINE_MUTEX(isapnp_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static int isapnp_csn_count;
113
114/* some prototypes */
115
116static inline void write_data(unsigned char x)
117{
118 outb(x, _PNPWRP);
119}
120
121static inline void write_address(unsigned char x)
122{
123 outb(x, _PIDXR);
124 udelay(20);
125}
126
127static inline unsigned char read_data(void)
128{
129 unsigned char val = inb(isapnp_rdp);
130 return val;
131}
132
133unsigned char isapnp_read_byte(unsigned char idx)
134{
135 write_address(idx);
136 return read_data();
137}
138
139static unsigned short isapnp_read_word(unsigned char idx)
140{
141 unsigned short val;
142
143 val = isapnp_read_byte(idx);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700144 val = (val << 8) + isapnp_read_byte(idx + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return val;
146}
147
148void isapnp_write_byte(unsigned char idx, unsigned char val)
149{
150 write_address(idx);
151 write_data(val);
152}
153
154static void isapnp_write_word(unsigned char idx, unsigned short val)
155{
156 isapnp_write_byte(idx, val >> 8);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700157 isapnp_write_byte(idx + 1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static void isapnp_key(void)
161{
162 unsigned char code = 0x6a, msb;
163 int i;
164
165 mdelay(1);
166 write_address(0x00);
167 write_address(0x00);
168
169 write_address(code);
170
171 for (i = 1; i < 32; i++) {
172 msb = ((code & 0x01) ^ ((code & 0x02) >> 1)) << 7;
173 code = (code >> 1) | msb;
174 write_address(code);
175 }
176}
177
178/* place all pnp cards in wait-for-key state */
179static void isapnp_wait(void)
180{
181 isapnp_write_byte(0x02, 0x02);
182}
183
184static void isapnp_wake(unsigned char csn)
185{
186 isapnp_write_byte(0x03, csn);
187}
188
189static void isapnp_device(unsigned char logdev)
190{
191 isapnp_write_byte(0x07, logdev);
192}
193
194static void isapnp_activate(unsigned char logdev)
195{
196 isapnp_device(logdev);
197 isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 1);
198 udelay(250);
199}
200
201static void isapnp_deactivate(unsigned char logdev)
202{
203 isapnp_device(logdev);
204 isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 0);
205 udelay(500);
206}
207
208static void __init isapnp_peek(unsigned char *data, int bytes)
209{
210 int i, j;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700211 unsigned char d = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 for (i = 1; i <= bytes; i++) {
214 for (j = 0; j < 20; j++) {
215 d = isapnp_read_byte(0x05);
216 if (d & 1)
217 break;
218 udelay(100);
219 }
220 if (!(d & 1)) {
221 if (data != NULL)
222 *data++ = 0xff;
223 continue;
224 }
225 d = isapnp_read_byte(0x04); /* PRESDI */
226 isapnp_checksum_value += d;
227 if (data != NULL)
228 *data++ = d;
229 }
230}
231
232#define RDP_STEP 32 /* minimum is 4 */
233
234static int isapnp_next_rdp(void)
235{
236 int rdp = isapnp_rdp;
237 static int old_rdp = 0;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700238
239 if (old_rdp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 release_region(old_rdp, 1);
241 old_rdp = 0;
242 }
243 while (rdp <= 0x3ff) {
244 /*
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700245 * We cannot use NE2000 probe spaces for ISAPnP or we
246 * will lock up machines.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700248 if ((rdp < 0x280 || rdp > 0x380)
249 && request_region(rdp, 1, "ISAPnP")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 isapnp_rdp = rdp;
251 old_rdp = rdp;
252 return 0;
253 }
254 rdp += RDP_STEP;
255 }
256 return -1;
257}
258
259/* Set read port address */
260static inline void isapnp_set_rdp(void)
261{
262 isapnp_write_byte(0x00, isapnp_rdp >> 2);
263 udelay(100);
264}
265
266/*
267 * Perform an isolation. The port selection code now tries to avoid
268 * "dangerous to read" ports.
269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270static int __init isapnp_isolate_rdp_select(void)
271{
272 isapnp_wait();
273 isapnp_key();
274
275 /* Control: reset CSN and conditionally everything else too */
276 isapnp_write_byte(0x02, isapnp_reset ? 0x05 : 0x04);
277 mdelay(2);
278
279 isapnp_wait();
280 isapnp_key();
281 isapnp_wake(0x00);
282
283 if (isapnp_next_rdp() < 0) {
284 isapnp_wait();
285 return -1;
286 }
287
288 isapnp_set_rdp();
289 udelay(1000);
290 write_address(0x01);
291 udelay(1000);
292 return 0;
293}
294
295/*
296 * Isolate (assign uniqued CSN) to all ISA PnP devices.
297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298static int __init isapnp_isolate(void)
299{
300 unsigned char checksum = 0x6a;
301 unsigned char chksum = 0x00;
302 unsigned char bit = 0x00;
303 int data;
304 int csn = 0;
305 int i;
306 int iteration = 1;
307
308 isapnp_rdp = 0x213;
309 if (isapnp_isolate_rdp_select() < 0)
310 return -1;
311
312 while (1) {
313 for (i = 1; i <= 64; i++) {
314 data = read_data() << 8;
315 udelay(250);
316 data = data | read_data();
317 udelay(250);
318 if (data == 0x55aa)
319 bit = 0x01;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700320 checksum =
321 ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
322 | (checksum >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 bit = 0x00;
324 }
325 for (i = 65; i <= 72; i++) {
326 data = read_data() << 8;
327 udelay(250);
328 data = data | read_data();
329 udelay(250);
330 if (data == 0x55aa)
331 chksum |= (1 << (i - 65));
332 }
333 if (checksum != 0x00 && checksum == chksum) {
334 csn++;
335
336 isapnp_write_byte(0x06, csn);
337 udelay(250);
338 iteration++;
339 isapnp_wake(0x00);
340 isapnp_set_rdp();
341 udelay(1000);
342 write_address(0x01);
343 udelay(1000);
344 goto __next;
345 }
346 if (iteration == 1) {
347 isapnp_rdp += RDP_STEP;
348 if (isapnp_isolate_rdp_select() < 0)
349 return -1;
350 } else if (iteration > 1) {
351 break;
352 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600353__next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (csn == 255)
355 break;
356 checksum = 0x6a;
357 chksum = 0x00;
358 bit = 0x00;
359 }
360 isapnp_wait();
361 isapnp_csn_count = csn;
362 return csn;
363}
364
365/*
366 * Read one tag from stream.
367 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static int __init isapnp_read_tag(unsigned char *type, unsigned short *size)
369{
370 unsigned char tag, tmp[2];
371
372 isapnp_peek(&tag, 1);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700373 if (tag == 0) /* invalid tag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return -1;
375 if (tag & 0x80) { /* large item */
376 *type = tag;
377 isapnp_peek(tmp, 2);
378 *size = (tmp[1] << 8) | tmp[0];
379 } else {
380 *type = (tag >> 3) & 0x0f;
381 *size = tag & 0x07;
382 }
383#if 0
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700384 printk(KERN_DEBUG "tag = 0x%x, type = 0x%x, size = %i\n", tag, *type,
385 *size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (*type == 0xff && *size == 0xffff) /* probably invalid data */
388 return -1;
389 return 0;
390}
391
392/*
393 * Skip specified number of bytes from stream.
394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static void __init isapnp_skip_bytes(int count)
396{
397 isapnp_peek(NULL, count);
398}
399
400/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * Parse logical device tag.
402 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700403static struct pnp_dev *__init isapnp_parse_device(struct pnp_card *card,
404 int size, int number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 unsigned char tmp[6];
407 struct pnp_dev *dev;
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600408 u32 eisa_id;
409 char id[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 isapnp_peek(tmp, size);
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600412 eisa_id = tmp[0] | tmp[1] << 8 | tmp[2] << 16 | tmp[3] << 24;
413 pnp_eisa_id_to_string(eisa_id, id);
Bjorn Helgaasbda1e4e2008-04-28 16:33:54 -0600414
415 dev = pnp_alloc_dev(&isapnp_protocol, number, id);
416 if (!dev)
417 return NULL;
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 dev->regs = tmp[4];
420 dev->card = card;
421 if (size > 5)
422 dev->regs |= tmp[5] << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 dev->capabilities |= PNP_CONFIGURABLE;
424 dev->capabilities |= PNP_READ;
425 dev->capabilities |= PNP_WRITE;
426 dev->capabilities |= PNP_DISABLE;
427 pnp_init_resource_table(&dev->res);
428 return dev;
429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/*
432 * Add IRQ resource to resources list.
433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434static void __init isapnp_parse_irq_resource(struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700435 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 unsigned char tmp[3];
438 struct pnp_irq *irq;
439 unsigned long bits;
440
441 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800442 irq = kzalloc(sizeof(struct pnp_irq), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (!irq)
444 return;
445 bits = (tmp[1] << 8) | tmp[0];
446 bitmap_copy(irq->map, &bits, 16);
447 if (size > 2)
448 irq->flags = tmp[2];
449 else
450 irq->flags = IORESOURCE_IRQ_HIGHEDGE;
451 pnp_register_irq_resource(option, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454/*
455 * Add DMA resource to resources list.
456 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457static void __init isapnp_parse_dma_resource(struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700458 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 unsigned char tmp[2];
461 struct pnp_dma *dma;
462
463 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800464 dma = kzalloc(sizeof(struct pnp_dma), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (!dma)
466 return;
467 dma->map = tmp[0];
468 dma->flags = tmp[1];
469 pnp_register_dma_resource(option, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472/*
473 * Add port resource to resources list.
474 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static void __init isapnp_parse_port_resource(struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700476 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 unsigned char tmp[7];
479 struct pnp_port *port;
480
481 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800482 port = kzalloc(sizeof(struct pnp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (!port)
484 return;
485 port->min = (tmp[2] << 8) | tmp[1];
486 port->max = (tmp[4] << 8) | tmp[3];
487 port->align = tmp[5];
488 port->size = tmp[6];
489 port->flags = tmp[0] ? PNP_PORT_FLAG_16BITADDR : 0;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700490 pnp_register_port_resource(option, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
493/*
494 * Add fixed port resource to resources list.
495 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static void __init isapnp_parse_fixed_port_resource(struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700497 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 unsigned char tmp[3];
500 struct pnp_port *port;
501
502 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800503 port = kzalloc(sizeof(struct pnp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (!port)
505 return;
506 port->min = port->max = (tmp[1] << 8) | tmp[0];
507 port->size = tmp[2];
508 port->align = 0;
509 port->flags = PNP_PORT_FLAG_FIXED;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700510 pnp_register_port_resource(option, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513/*
514 * Add memory resource to resources list.
515 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516static void __init isapnp_parse_mem_resource(struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700517 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 unsigned char tmp[9];
520 struct pnp_mem *mem;
521
522 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800523 mem = kzalloc(sizeof(struct pnp_mem), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (!mem)
525 return;
526 mem->min = ((tmp[2] << 8) | tmp[1]) << 8;
527 mem->max = ((tmp[4] << 8) | tmp[3]) << 8;
528 mem->align = (tmp[6] << 8) | tmp[5];
529 mem->size = ((tmp[8] << 8) | tmp[7]) << 8;
530 mem->flags = tmp[0];
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700531 pnp_register_mem_resource(option, mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
534/*
535 * Add 32-bit memory resource to resources list.
536 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537static void __init isapnp_parse_mem32_resource(struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700538 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 unsigned char tmp[17];
541 struct pnp_mem *mem;
542
543 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800544 mem = kzalloc(sizeof(struct pnp_mem), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (!mem)
546 return;
547 mem->min = (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
548 mem->max = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700549 mem->align =
550 (tmp[12] << 24) | (tmp[11] << 16) | (tmp[10] << 8) | tmp[9];
551 mem->size =
552 (tmp[16] << 24) | (tmp[15] << 16) | (tmp[14] << 8) | tmp[13];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 mem->flags = tmp[0];
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700554 pnp_register_mem_resource(option, mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557/*
558 * Add 32-bit fixed memory resource to resources list.
559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static void __init isapnp_parse_fixed_mem32_resource(struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700561 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 unsigned char tmp[9];
564 struct pnp_mem *mem;
565
566 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800567 mem = kzalloc(sizeof(struct pnp_mem), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (!mem)
569 return;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700570 mem->min = mem->max =
571 (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 mem->size = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
573 mem->align = 0;
574 mem->flags = tmp[0];
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700575 pnp_register_mem_resource(option, mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578/*
579 * Parse card name for ISA PnP device.
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700580 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581static void __init
582isapnp_parse_name(char *name, unsigned int name_max, unsigned short *size)
583{
584 if (name[0] == '\0') {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700585 unsigned short size1 =
586 *size >= name_max ? (name_max - 1) : *size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 isapnp_peek(name, size1);
588 name[size1] = '\0';
589 *size -= size1;
590
591 /* clean whitespace from end of string */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700592 while (size1 > 0 && name[--size1] == ' ')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 name[size1] = '\0';
594 }
595}
596
597/*
598 * Parse resource map for logical device.
599 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static int __init isapnp_create_device(struct pnp_card *card,
601 unsigned short size)
602{
603 int number = 0, skip = 0, priority = 0, compat = 0;
604 unsigned char type, tmp[17];
605 struct pnp_option *option;
606 struct pnp_dev *dev;
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600607 u32 eisa_id;
608 char id[8];
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if ((dev = isapnp_parse_device(card, size, number++)) == NULL)
611 return 1;
612 option = pnp_register_independent_option(dev);
613 if (!option) {
614 kfree(dev);
615 return 1;
616 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700617 pnp_add_card_device(card, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 while (1) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700620 if (isapnp_read_tag(&type, &size) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return 1;
622 if (skip && type != _STAG_LOGDEVID && type != _STAG_END)
623 goto __skip;
624 switch (type) {
625 case _STAG_LOGDEVID:
626 if (size >= 5 && size <= 6) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700627 if ((dev =
628 isapnp_parse_device(card, size,
629 number++)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return 1;
631 size = 0;
632 skip = 0;
633 option = pnp_register_independent_option(dev);
Jesper Juhl656bde52006-03-25 03:08:12 -0800634 if (!option) {
635 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 1;
Jesper Juhl656bde52006-03-25 03:08:12 -0800637 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700638 pnp_add_card_device(card, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 } else {
640 skip = 1;
641 }
642 priority = 0;
643 compat = 0;
644 break;
645 case _STAG_COMPATDEVID:
646 if (size == 4 && compat < DEVICE_COUNT_COMPATIBLE) {
647 isapnp_peek(tmp, 4);
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600648 eisa_id = tmp[0] | tmp[1] << 8 |
649 tmp[2] << 16 | tmp[3] << 24;
650 pnp_eisa_id_to_string(eisa_id, id);
651 pnp_add_id(dev, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 compat++;
653 size = 0;
654 }
655 break;
656 case _STAG_IRQ:
657 if (size < 2 || size > 3)
658 goto __skip;
659 isapnp_parse_irq_resource(option, size);
660 size = 0;
661 break;
662 case _STAG_DMA:
663 if (size != 2)
664 goto __skip;
665 isapnp_parse_dma_resource(option, size);
666 size = 0;
667 break;
668 case _STAG_STARTDEP:
669 if (size > 1)
670 goto __skip;
671 priority = 0x100 | PNP_RES_PRIORITY_ACCEPTABLE;
672 if (size > 0) {
673 isapnp_peek(tmp, size);
674 priority = 0x100 | tmp[0];
675 size = 0;
676 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700677 option = pnp_register_dependent_option(dev, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!option)
679 return 1;
680 break;
681 case _STAG_ENDDEP:
682 if (size != 0)
683 goto __skip;
684 priority = 0;
685 break;
686 case _STAG_IOPORT:
687 if (size != 7)
688 goto __skip;
689 isapnp_parse_port_resource(option, size);
690 size = 0;
691 break;
692 case _STAG_FIXEDIO:
693 if (size != 3)
694 goto __skip;
695 isapnp_parse_fixed_port_resource(option, size);
696 size = 0;
697 break;
698 case _STAG_VENDOR:
699 break;
700 case _LTAG_MEMRANGE:
701 if (size != 9)
702 goto __skip;
703 isapnp_parse_mem_resource(option, size);
704 size = 0;
705 break;
706 case _LTAG_ANSISTR:
707 isapnp_parse_name(dev->name, sizeof(dev->name), &size);
708 break;
709 case _LTAG_UNICODESTR:
710 /* silently ignore */
711 /* who use unicode for hardware identification? */
712 break;
713 case _LTAG_VENDOR:
714 break;
715 case _LTAG_MEM32RANGE:
716 if (size != 17)
717 goto __skip;
718 isapnp_parse_mem32_resource(option, size);
719 size = 0;
720 break;
721 case _LTAG_FIXEDMEM32RANGE:
722 if (size != 9)
723 goto __skip;
724 isapnp_parse_fixed_mem32_resource(option, size);
725 size = 0;
726 break;
727 case _STAG_END:
728 if (size > 0)
729 isapnp_skip_bytes(size);
730 return 1;
731 default:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700732 printk(KERN_ERR
733 "isapnp: unexpected or unknown tag type 0x%x for logical device %i (device %i), ignored\n",
734 type, dev->number, card->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600736__skip:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700737 if (size > 0)
738 isapnp_skip_bytes(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740 return 0;
741}
742
743/*
744 * Parse resource map for ISA PnP card.
745 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746static void __init isapnp_parse_resource_map(struct pnp_card *card)
747{
748 unsigned char type, tmp[17];
749 unsigned short size;
750
751 while (1) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700752 if (isapnp_read_tag(&type, &size) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return;
754 switch (type) {
755 case _STAG_PNPVERNO:
756 if (size != 2)
757 goto __skip;
758 isapnp_peek(tmp, 2);
759 card->pnpver = tmp[0];
760 card->productver = tmp[1];
761 size = 0;
762 break;
763 case _STAG_LOGDEVID:
764 if (size >= 5 && size <= 6) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700765 if (isapnp_create_device(card, size) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return;
767 size = 0;
768 }
769 break;
770 case _STAG_VENDOR:
771 break;
772 case _LTAG_ANSISTR:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700773 isapnp_parse_name(card->name, sizeof(card->name),
774 &size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 break;
776 case _LTAG_UNICODESTR:
777 /* silently ignore */
778 /* who use unicode for hardware identification? */
779 break;
780 case _LTAG_VENDOR:
781 break;
782 case _STAG_END:
783 if (size > 0)
784 isapnp_skip_bytes(size);
785 return;
786 default:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700787 printk(KERN_ERR
788 "isapnp: unexpected or unknown tag type 0x%x for device %i, ignored\n",
789 type, card->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600791__skip:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700792 if (size > 0)
793 isapnp_skip_bytes(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795}
796
797/*
798 * Compute ISA PnP checksum for first eight bytes.
799 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800static unsigned char __init isapnp_checksum(unsigned char *data)
801{
802 int i, j;
803 unsigned char checksum = 0x6a, bit, b;
804
805 for (i = 0; i < 8; i++) {
806 b = data[i];
807 for (j = 0; j < 8; j++) {
808 bit = 0;
809 if (b & (1 << j))
810 bit = 1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700811 checksum =
812 ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
813 | (checksum >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815 }
816 return checksum;
817}
818
819/*
820 * Parse EISA id for ISA PnP card.
821 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700822static void isapnp_parse_card_id(struct pnp_card *card, unsigned short vendor,
823 unsigned short device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700825 struct pnp_id *id = kzalloc(sizeof(struct pnp_id), GFP_KERNEL);
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (!id)
828 return;
829 sprintf(id->id, "%c%c%c%x%x%x%x",
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700830 'A' + ((vendor >> 2) & 0x3f) - 1,
831 'A' + (((vendor & 3) << 3) | ((vendor >> 13) & 7)) - 1,
832 'A' + ((vendor >> 8) & 0x1f) - 1,
833 (device >> 4) & 0x0f,
834 device & 0x0f, (device >> 12) & 0x0f, (device >> 8) & 0x0f);
835 pnp_add_card_id(id, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
838/*
839 * Build device list for all present ISA PnP devices.
840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841static int __init isapnp_build_device_list(void)
842{
843 int csn;
844 unsigned char header[9], checksum;
845 struct pnp_card *card;
846
847 isapnp_wait();
848 isapnp_key();
849 for (csn = 1; csn <= isapnp_csn_count; csn++) {
850 isapnp_wake(csn);
851 isapnp_peek(header, 9);
852 checksum = isapnp_checksum(header);
853#if 0
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700854 printk(KERN_DEBUG
855 "vendor: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
856 header[0], header[1], header[2], header[3], header[4],
857 header[5], header[6], header[7], header[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 printk(KERN_DEBUG "checksum = 0x%x\n", checksum);
859#endif
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700860 if ((card =
861 kzalloc(sizeof(struct pnp_card), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 continue;
863
864 card->number = csn;
865 INIT_LIST_HEAD(&card->devices);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700866 isapnp_parse_card_id(card, (header[1] << 8) | header[0],
867 (header[3] << 8) | header[2]);
868 card->serial =
869 (header[7] << 24) | (header[6] << 16) | (header[5] << 8) |
870 header[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 isapnp_checksum_value = 0x00;
872 isapnp_parse_resource_map(card);
873 if (isapnp_checksum_value != 0x00)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700874 printk(KERN_ERR
875 "isapnp: checksum for device %i is not valid (0x%x)\n",
876 csn, isapnp_checksum_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 card->checksum = isapnp_checksum_value;
878 card->protocol = &isapnp_protocol;
879
880 pnp_add_card(card);
881 }
882 isapnp_wait();
883 return 0;
884}
885
886/*
887 * Basic configuration routines.
888 */
889
890int isapnp_present(void)
891{
892 struct pnp_card *card;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 pnp_for_each_card(card) {
895 if (card->protocol == &isapnp_protocol)
896 return 1;
897 }
898 return 0;
899}
900
901int isapnp_cfg_begin(int csn, int logdev)
902{
903 if (csn < 1 || csn > isapnp_csn_count || logdev > 10)
904 return -EINVAL;
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800905 mutex_lock(&isapnp_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 isapnp_wait();
907 isapnp_key();
908 isapnp_wake(csn);
909#if 0
910 /* to avoid malfunction when the isapnptools package is used */
911 /* we must set RDP to our value again */
912 /* it is possible to set RDP only in the isolation phase */
913 /* Jens Thoms Toerring <Jens.Toerring@physik.fu-berlin.de> */
914 isapnp_write_byte(0x02, 0x04); /* clear CSN of card */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700915 mdelay(2); /* is this necessary? */
916 isapnp_wake(csn); /* bring card into sleep state */
917 isapnp_wake(0); /* bring card into isolation state */
918 isapnp_set_rdp(); /* reset the RDP port */
919 udelay(1000); /* delay 1000us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 isapnp_write_byte(0x06, csn); /* reset CSN to previous value */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700921 udelay(250); /* is this necessary? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#endif
923 if (logdev >= 0)
924 isapnp_device(logdev);
925 return 0;
926}
927
928int isapnp_cfg_end(void)
929{
930 isapnp_wait();
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800931 mutex_unlock(&isapnp_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return 0;
933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/*
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700936 * Initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 */
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939EXPORT_SYMBOL(isapnp_protocol);
940EXPORT_SYMBOL(isapnp_present);
941EXPORT_SYMBOL(isapnp_cfg_begin);
942EXPORT_SYMBOL(isapnp_cfg_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943EXPORT_SYMBOL(isapnp_write_byte);
944
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700945static int isapnp_read_resources(struct pnp_dev *dev,
946 struct pnp_resource_table *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 int tmp, ret;
949
950 dev->active = isapnp_read_byte(ISAPNP_CFG_ACTIVATE);
951 if (dev->active) {
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600952 for (tmp = 0; tmp < ISAPNP_MAX_PORT; tmp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 ret = isapnp_read_word(ISAPNP_CFG_PORT + (tmp << 1));
954 if (!ret)
955 continue;
956 res->port_resource[tmp].start = ret;
957 res->port_resource[tmp].flags = IORESOURCE_IO;
958 }
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600959 for (tmp = 0; tmp < ISAPNP_MAX_MEM; tmp++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700960 ret =
961 isapnp_read_word(ISAPNP_CFG_MEM + (tmp << 3)) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (!ret)
963 continue;
964 res->mem_resource[tmp].start = ret;
965 res->mem_resource[tmp].flags = IORESOURCE_MEM;
966 }
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600967 for (tmp = 0; tmp < ISAPNP_MAX_IRQ; tmp++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700968 ret =
969 (isapnp_read_word(ISAPNP_CFG_IRQ + (tmp << 1)) >>
970 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (!ret)
972 continue;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700973 res->irq_resource[tmp].start =
974 res->irq_resource[tmp].end = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 res->irq_resource[tmp].flags = IORESOURCE_IRQ;
976 }
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600977 for (tmp = 0; tmp < ISAPNP_MAX_DMA; tmp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 ret = isapnp_read_byte(ISAPNP_CFG_DMA + tmp);
979 if (ret == 4)
980 continue;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700981 res->dma_resource[tmp].start =
982 res->dma_resource[tmp].end = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 res->dma_resource[tmp].flags = IORESOURCE_DMA;
984 }
985 }
986 return 0;
987}
988
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700989static int isapnp_get_resources(struct pnp_dev *dev,
990 struct pnp_resource_table *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 int ret;
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 pnp_init_resource_table(res);
995 isapnp_cfg_begin(dev->card->number, dev->number);
996 ret = isapnp_read_resources(dev, res);
997 isapnp_cfg_end();
998 return ret;
999}
1000
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001001static int isapnp_set_resources(struct pnp_dev *dev,
1002 struct pnp_resource_table *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 int tmp;
1005
1006 isapnp_cfg_begin(dev->card->number, dev->number);
1007 dev->active = 1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001008 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001009 tmp < ISAPNP_MAX_PORT
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001010 && (res->port_resource[tmp].
1011 flags & (IORESOURCE_IO | IORESOURCE_UNSET)) == IORESOURCE_IO;
1012 tmp++)
1013 isapnp_write_word(ISAPNP_CFG_PORT + (tmp << 1),
1014 res->port_resource[tmp].start);
1015 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001016 tmp < ISAPNP_MAX_IRQ
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001017 && (res->irq_resource[tmp].
1018 flags & (IORESOURCE_IRQ | IORESOURCE_UNSET)) == IORESOURCE_IRQ;
1019 tmp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 int irq = res->irq_resource[tmp].start;
1021 if (irq == 2)
1022 irq = 9;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001023 isapnp_write_byte(ISAPNP_CFG_IRQ + (tmp << 1), irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001025 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001026 tmp < ISAPNP_MAX_DMA
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001027 && (res->dma_resource[tmp].
1028 flags & (IORESOURCE_DMA | IORESOURCE_UNSET)) == IORESOURCE_DMA;
1029 tmp++)
1030 isapnp_write_byte(ISAPNP_CFG_DMA + tmp,
1031 res->dma_resource[tmp].start);
1032 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001033 tmp < ISAPNP_MAX_MEM
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001034 && (res->mem_resource[tmp].
1035 flags & (IORESOURCE_MEM | IORESOURCE_UNSET)) == IORESOURCE_MEM;
1036 tmp++)
1037 isapnp_write_word(ISAPNP_CFG_MEM + (tmp << 3),
1038 (res->mem_resource[tmp].start >> 8) & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /* FIXME: We aren't handling 32bit mems properly here */
1040 isapnp_activate(dev->number);
1041 isapnp_cfg_end();
1042 return 0;
1043}
1044
1045static int isapnp_disable_resources(struct pnp_dev *dev)
1046{
Bjorn Helgaasb1734912007-08-15 10:32:13 -06001047 if (!dev->active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return -EINVAL;
1049 isapnp_cfg_begin(dev->card->number, dev->number);
1050 isapnp_deactivate(dev->number);
1051 dev->active = 0;
1052 isapnp_cfg_end();
1053 return 0;
1054}
1055
1056struct pnp_protocol isapnp_protocol = {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001057 .name = "ISA Plug and Play",
1058 .get = isapnp_get_resources,
1059 .set = isapnp_set_resources,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 .disable = isapnp_disable_resources,
1061};
1062
1063static int __init isapnp_init(void)
1064{
1065 int cards;
1066 struct pnp_card *card;
1067 struct pnp_dev *dev;
1068
1069 if (isapnp_disable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 printk(KERN_INFO "isapnp: ISA Plug & Play support disabled\n");
1071 return 0;
1072 }
David Woodhouse07bd1c42006-09-27 08:18:55 +01001073#ifdef CONFIG_PPC_MERGE
1074 if (check_legacy_ioport(_PIDXR) || check_legacy_ioport(_PNPWRP))
1075 return -EINVAL;
1076#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077#ifdef ISAPNP_REGION_OK
1078 if (!request_region(_PIDXR, 1, "isapnp index")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001079 printk(KERN_ERR "isapnp: Index Register 0x%x already used\n",
1080 _PIDXR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return -EBUSY;
1082 }
1083#endif
1084 if (!request_region(_PNPWRP, 1, "isapnp write")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001085 printk(KERN_ERR
1086 "isapnp: Write Data Register 0x%x already used\n",
1087 _PNPWRP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088#ifdef ISAPNP_REGION_OK
1089 release_region(_PIDXR, 1);
1090#endif
1091 return -EBUSY;
1092 }
1093
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001094 if (pnp_register_protocol(&isapnp_protocol) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return -EBUSY;
1096
1097 /*
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001098 * Print a message. The existing ISAPnP code is hanging machines
1099 * so let the user know where.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 printk(KERN_INFO "isapnp: Scanning for PnP cards...\n");
1103 if (isapnp_rdp >= 0x203 && isapnp_rdp <= 0x3ff) {
1104 isapnp_rdp |= 3;
1105 if (!request_region(isapnp_rdp, 1, "isapnp read")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001106 printk(KERN_ERR
1107 "isapnp: Read Data Register 0x%x already used\n",
1108 isapnp_rdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109#ifdef ISAPNP_REGION_OK
1110 release_region(_PIDXR, 1);
1111#endif
1112 release_region(_PNPWRP, 1);
1113 return -EBUSY;
1114 }
1115 isapnp_set_rdp();
1116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff) {
1118 cards = isapnp_isolate();
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001119 if (cards < 0 || (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120#ifdef ISAPNP_REGION_OK
1121 release_region(_PIDXR, 1);
1122#endif
1123 release_region(_PNPWRP, 1);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001124 printk(KERN_INFO
1125 "isapnp: No Plug & Play device found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return 0;
1127 }
1128 request_region(isapnp_rdp, 1, "isapnp read");
1129 }
1130 isapnp_build_device_list();
1131 cards = 0;
1132
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001133 protocol_for_each_card(&isapnp_protocol, card) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 cards++;
1135 if (isapnp_verbose) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001136 printk(KERN_INFO "isapnp: Card '%s'\n",
1137 card->name[0] ? card->name : "Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (isapnp_verbose < 2)
1139 continue;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001140 card_for_each_dev(card, dev) {
1141 printk(KERN_INFO "isapnp: Device '%s'\n",
1142 dev->name[0] ? dev->name : "Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144 }
1145 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -06001146 if (cards)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001147 printk(KERN_INFO
1148 "isapnp: %i Plug & Play card%s detected total\n", cards,
1149 cards > 1 ? "s" : "");
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -06001150 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 printk(KERN_INFO "isapnp: No Plug & Play card found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 isapnp_proc_init();
1154 return 0;
1155}
1156
1157device_initcall(isapnp_init);
1158
1159/* format is: noisapnp */
1160
1161static int __init isapnp_setup_disable(char *str)
1162{
1163 isapnp_disable = 1;
1164 return 1;
1165}
1166
1167__setup("noisapnp", isapnp_setup_disable);
1168
1169/* format is: isapnp=rdp,reset,skip_pci_scan,verbose */
1170
1171static int __init isapnp_setup_isapnp(char *str)
1172{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001173 (void)((get_option(&str, &isapnp_rdp) == 2) &&
1174 (get_option(&str, &isapnp_reset) == 2) &&
1175 (get_option(&str, &isapnp_verbose) == 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return 1;
1177}
1178
1179__setup("isapnp=", isapnp_setup_isapnp);