blob: 6f1007548c93c6b93ea73e86f2b08a6ce467fde7 [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;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600427 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return dev;
429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/*
432 * Add IRQ resource to resources list.
433 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600434static void __init isapnp_parse_irq_resource(struct pnp_dev *dev,
435 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700436 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 unsigned char tmp[3];
439 struct pnp_irq *irq;
440 unsigned long bits;
441
442 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800443 irq = kzalloc(sizeof(struct pnp_irq), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (!irq)
445 return;
446 bits = (tmp[1] << 8) | tmp[0];
447 bitmap_copy(irq->map, &bits, 16);
448 if (size > 2)
449 irq->flags = tmp[2];
450 else
451 irq->flags = IORESOURCE_IRQ_HIGHEDGE;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600452 pnp_register_irq_resource(dev, option, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455/*
456 * Add DMA resource to resources list.
457 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600458static void __init isapnp_parse_dma_resource(struct pnp_dev *dev,
459 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700460 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 unsigned char tmp[2];
463 struct pnp_dma *dma;
464
465 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800466 dma = kzalloc(sizeof(struct pnp_dma), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (!dma)
468 return;
469 dma->map = tmp[0];
470 dma->flags = tmp[1];
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600471 pnp_register_dma_resource(dev, option, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
474/*
475 * Add port resource to resources list.
476 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600477static void __init isapnp_parse_port_resource(struct pnp_dev *dev,
478 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700479 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 unsigned char tmp[7];
482 struct pnp_port *port;
483
484 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800485 port = kzalloc(sizeof(struct pnp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (!port)
487 return;
488 port->min = (tmp[2] << 8) | tmp[1];
489 port->max = (tmp[4] << 8) | tmp[3];
490 port->align = tmp[5];
491 port->size = tmp[6];
492 port->flags = tmp[0] ? PNP_PORT_FLAG_16BITADDR : 0;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600493 pnp_register_port_resource(dev, option, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
496/*
497 * Add fixed port resource to resources list.
498 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600499static void __init isapnp_parse_fixed_port_resource(struct pnp_dev *dev,
500 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700501 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 unsigned char tmp[3];
504 struct pnp_port *port;
505
506 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800507 port = kzalloc(sizeof(struct pnp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (!port)
509 return;
510 port->min = port->max = (tmp[1] << 8) | tmp[0];
511 port->size = tmp[2];
512 port->align = 0;
513 port->flags = PNP_PORT_FLAG_FIXED;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600514 pnp_register_port_resource(dev, option, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517/*
518 * Add memory resource to resources list.
519 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600520static void __init isapnp_parse_mem_resource(struct pnp_dev *dev,
521 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700522 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 unsigned char tmp[9];
525 struct pnp_mem *mem;
526
527 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800528 mem = kzalloc(sizeof(struct pnp_mem), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (!mem)
530 return;
531 mem->min = ((tmp[2] << 8) | tmp[1]) << 8;
532 mem->max = ((tmp[4] << 8) | tmp[3]) << 8;
533 mem->align = (tmp[6] << 8) | tmp[5];
534 mem->size = ((tmp[8] << 8) | tmp[7]) << 8;
535 mem->flags = tmp[0];
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600536 pnp_register_mem_resource(dev, option, mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539/*
540 * Add 32-bit memory resource to resources list.
541 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600542static void __init isapnp_parse_mem32_resource(struct pnp_dev *dev,
543 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700544 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 unsigned char tmp[17];
547 struct pnp_mem *mem;
548
549 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800550 mem = kzalloc(sizeof(struct pnp_mem), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (!mem)
552 return;
553 mem->min = (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
554 mem->max = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700555 mem->align =
556 (tmp[12] << 24) | (tmp[11] << 16) | (tmp[10] << 8) | tmp[9];
557 mem->size =
558 (tmp[16] << 24) | (tmp[15] << 16) | (tmp[14] << 8) | tmp[13];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 mem->flags = tmp[0];
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600560 pnp_register_mem_resource(dev, option, mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563/*
564 * Add 32-bit fixed memory resource to resources list.
565 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600566static void __init isapnp_parse_fixed_mem32_resource(struct pnp_dev *dev,
567 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700568 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 unsigned char tmp[9];
571 struct pnp_mem *mem;
572
573 isapnp_peek(tmp, size);
Robert P. J. Daycd861282006-12-13 00:34:52 -0800574 mem = kzalloc(sizeof(struct pnp_mem), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (!mem)
576 return;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700577 mem->min = mem->max =
578 (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 mem->size = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
580 mem->align = 0;
581 mem->flags = tmp[0];
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600582 pnp_register_mem_resource(dev, option, mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585/*
586 * Parse card name for ISA PnP device.
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588static void __init
589isapnp_parse_name(char *name, unsigned int name_max, unsigned short *size)
590{
591 if (name[0] == '\0') {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700592 unsigned short size1 =
593 *size >= name_max ? (name_max - 1) : *size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 isapnp_peek(name, size1);
595 name[size1] = '\0';
596 *size -= size1;
597
598 /* clean whitespace from end of string */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700599 while (size1 > 0 && name[--size1] == ' ')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 name[size1] = '\0';
601 }
602}
603
604/*
605 * Parse resource map for logical device.
606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607static int __init isapnp_create_device(struct pnp_card *card,
608 unsigned short size)
609{
610 int number = 0, skip = 0, priority = 0, compat = 0;
611 unsigned char type, tmp[17];
612 struct pnp_option *option;
613 struct pnp_dev *dev;
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600614 u32 eisa_id;
615 char id[8];
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if ((dev = isapnp_parse_device(card, size, number++)) == NULL)
618 return 1;
619 option = pnp_register_independent_option(dev);
620 if (!option) {
621 kfree(dev);
622 return 1;
623 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700624 pnp_add_card_device(card, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 while (1) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700627 if (isapnp_read_tag(&type, &size) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return 1;
629 if (skip && type != _STAG_LOGDEVID && type != _STAG_END)
630 goto __skip;
631 switch (type) {
632 case _STAG_LOGDEVID:
633 if (size >= 5 && size <= 6) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700634 if ((dev =
635 isapnp_parse_device(card, size,
636 number++)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 1;
638 size = 0;
639 skip = 0;
640 option = pnp_register_independent_option(dev);
Jesper Juhl656bde52006-03-25 03:08:12 -0800641 if (!option) {
642 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return 1;
Jesper Juhl656bde52006-03-25 03:08:12 -0800644 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700645 pnp_add_card_device(card, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 } else {
647 skip = 1;
648 }
649 priority = 0;
650 compat = 0;
651 break;
652 case _STAG_COMPATDEVID:
653 if (size == 4 && compat < DEVICE_COUNT_COMPATIBLE) {
654 isapnp_peek(tmp, 4);
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600655 eisa_id = tmp[0] | tmp[1] << 8 |
656 tmp[2] << 16 | tmp[3] << 24;
657 pnp_eisa_id_to_string(eisa_id, id);
658 pnp_add_id(dev, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 compat++;
660 size = 0;
661 }
662 break;
663 case _STAG_IRQ:
664 if (size < 2 || size > 3)
665 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600666 isapnp_parse_irq_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 size = 0;
668 break;
669 case _STAG_DMA:
670 if (size != 2)
671 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600672 isapnp_parse_dma_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 size = 0;
674 break;
675 case _STAG_STARTDEP:
676 if (size > 1)
677 goto __skip;
678 priority = 0x100 | PNP_RES_PRIORITY_ACCEPTABLE;
679 if (size > 0) {
680 isapnp_peek(tmp, size);
681 priority = 0x100 | tmp[0];
682 size = 0;
683 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700684 option = pnp_register_dependent_option(dev, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (!option)
686 return 1;
687 break;
688 case _STAG_ENDDEP:
689 if (size != 0)
690 goto __skip;
691 priority = 0;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600692 dev_dbg(&dev->dev, "end dependent options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 break;
694 case _STAG_IOPORT:
695 if (size != 7)
696 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600697 isapnp_parse_port_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 size = 0;
699 break;
700 case _STAG_FIXEDIO:
701 if (size != 3)
702 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600703 isapnp_parse_fixed_port_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 size = 0;
705 break;
706 case _STAG_VENDOR:
707 break;
708 case _LTAG_MEMRANGE:
709 if (size != 9)
710 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600711 isapnp_parse_mem_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 size = 0;
713 break;
714 case _LTAG_ANSISTR:
715 isapnp_parse_name(dev->name, sizeof(dev->name), &size);
716 break;
717 case _LTAG_UNICODESTR:
718 /* silently ignore */
719 /* who use unicode for hardware identification? */
720 break;
721 case _LTAG_VENDOR:
722 break;
723 case _LTAG_MEM32RANGE:
724 if (size != 17)
725 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600726 isapnp_parse_mem32_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 size = 0;
728 break;
729 case _LTAG_FIXEDMEM32RANGE:
730 if (size != 9)
731 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600732 isapnp_parse_fixed_mem32_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 size = 0;
734 break;
735 case _STAG_END:
736 if (size > 0)
737 isapnp_skip_bytes(size);
738 return 1;
739 default:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700740 printk(KERN_ERR
741 "isapnp: unexpected or unknown tag type 0x%x for logical device %i (device %i), ignored\n",
742 type, dev->number, card->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600744__skip:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700745 if (size > 0)
746 isapnp_skip_bytes(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 return 0;
749}
750
751/*
752 * Parse resource map for ISA PnP card.
753 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754static void __init isapnp_parse_resource_map(struct pnp_card *card)
755{
756 unsigned char type, tmp[17];
757 unsigned short size;
758
759 while (1) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700760 if (isapnp_read_tag(&type, &size) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return;
762 switch (type) {
763 case _STAG_PNPVERNO:
764 if (size != 2)
765 goto __skip;
766 isapnp_peek(tmp, 2);
767 card->pnpver = tmp[0];
768 card->productver = tmp[1];
769 size = 0;
770 break;
771 case _STAG_LOGDEVID:
772 if (size >= 5 && size <= 6) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700773 if (isapnp_create_device(card, size) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return;
775 size = 0;
776 }
777 break;
778 case _STAG_VENDOR:
779 break;
780 case _LTAG_ANSISTR:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700781 isapnp_parse_name(card->name, sizeof(card->name),
782 &size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 break;
784 case _LTAG_UNICODESTR:
785 /* silently ignore */
786 /* who use unicode for hardware identification? */
787 break;
788 case _LTAG_VENDOR:
789 break;
790 case _STAG_END:
791 if (size > 0)
792 isapnp_skip_bytes(size);
793 return;
794 default:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700795 printk(KERN_ERR
796 "isapnp: unexpected or unknown tag type 0x%x for device %i, ignored\n",
797 type, card->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600799__skip:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700800 if (size > 0)
801 isapnp_skip_bytes(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803}
804
805/*
806 * Compute ISA PnP checksum for first eight bytes.
807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808static unsigned char __init isapnp_checksum(unsigned char *data)
809{
810 int i, j;
811 unsigned char checksum = 0x6a, bit, b;
812
813 for (i = 0; i < 8; i++) {
814 b = data[i];
815 for (j = 0; j < 8; j++) {
816 bit = 0;
817 if (b & (1 << j))
818 bit = 1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700819 checksum =
820 ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
821 | (checksum >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823 }
824 return checksum;
825}
826
827/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 * Build device list for all present ISA PnP devices.
829 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830static int __init isapnp_build_device_list(void)
831{
832 int csn;
833 unsigned char header[9], checksum;
834 struct pnp_card *card;
Bjorn Helgaas068076d2008-04-28 16:33:57 -0600835 u32 eisa_id;
836 char id[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 isapnp_wait();
839 isapnp_key();
840 for (csn = 1; csn <= isapnp_csn_count; csn++) {
841 isapnp_wake(csn);
842 isapnp_peek(header, 9);
843 checksum = isapnp_checksum(header);
844#if 0
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700845 printk(KERN_DEBUG
846 "vendor: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
847 header[0], header[1], header[2], header[3], header[4],
848 header[5], header[6], header[7], header[8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 printk(KERN_DEBUG "checksum = 0x%x\n", checksum);
850#endif
Bjorn Helgaas068076d2008-04-28 16:33:57 -0600851 eisa_id = header[0] | header[1] << 8 |
852 header[2] << 16 | header[3] << 24;
853 pnp_eisa_id_to_string(eisa_id, id);
Bjorn Helgaas6bf2aab2008-04-28 16:33:58 -0600854 card = pnp_alloc_card(&isapnp_protocol, csn, id);
855 if (!card)
856 continue;
857
858 INIT_LIST_HEAD(&card->devices);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700859 card->serial =
860 (header[7] << 24) | (header[6] << 16) | (header[5] << 8) |
861 header[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 isapnp_checksum_value = 0x00;
863 isapnp_parse_resource_map(card);
864 if (isapnp_checksum_value != 0x00)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700865 printk(KERN_ERR
866 "isapnp: checksum for device %i is not valid (0x%x)\n",
867 csn, isapnp_checksum_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 card->checksum = isapnp_checksum_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 pnp_add_card(card);
871 }
872 isapnp_wait();
873 return 0;
874}
875
876/*
877 * Basic configuration routines.
878 */
879
880int isapnp_present(void)
881{
882 struct pnp_card *card;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 pnp_for_each_card(card) {
885 if (card->protocol == &isapnp_protocol)
886 return 1;
887 }
888 return 0;
889}
890
891int isapnp_cfg_begin(int csn, int logdev)
892{
893 if (csn < 1 || csn > isapnp_csn_count || logdev > 10)
894 return -EINVAL;
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800895 mutex_lock(&isapnp_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 isapnp_wait();
897 isapnp_key();
898 isapnp_wake(csn);
899#if 0
900 /* to avoid malfunction when the isapnptools package is used */
901 /* we must set RDP to our value again */
902 /* it is possible to set RDP only in the isolation phase */
903 /* Jens Thoms Toerring <Jens.Toerring@physik.fu-berlin.de> */
904 isapnp_write_byte(0x02, 0x04); /* clear CSN of card */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700905 mdelay(2); /* is this necessary? */
906 isapnp_wake(csn); /* bring card into sleep state */
907 isapnp_wake(0); /* bring card into isolation state */
908 isapnp_set_rdp(); /* reset the RDP port */
909 udelay(1000); /* delay 1000us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 isapnp_write_byte(0x06, csn); /* reset CSN to previous value */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700911 udelay(250); /* is this necessary? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912#endif
913 if (logdev >= 0)
914 isapnp_device(logdev);
915 return 0;
916}
917
918int isapnp_cfg_end(void)
919{
920 isapnp_wait();
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800921 mutex_unlock(&isapnp_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return 0;
923}
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925/*
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700926 * Initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 */
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929EXPORT_SYMBOL(isapnp_protocol);
930EXPORT_SYMBOL(isapnp_present);
931EXPORT_SYMBOL(isapnp_cfg_begin);
932EXPORT_SYMBOL(isapnp_cfg_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933EXPORT_SYMBOL(isapnp_write_byte);
934
Bjorn Helgaas4ab55d82008-04-28 16:34:06 -0600935static int isapnp_read_resources(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Bjorn Helgaas4ab55d82008-04-28 16:34:06 -0600937 struct pnp_resource_table *res = &dev->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 int tmp, ret;
939
940 dev->active = isapnp_read_byte(ISAPNP_CFG_ACTIVATE);
941 if (dev->active) {
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600942 for (tmp = 0; tmp < ISAPNP_MAX_PORT; tmp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 ret = isapnp_read_word(ISAPNP_CFG_PORT + (tmp << 1));
944 if (!ret)
945 continue;
946 res->port_resource[tmp].start = ret;
947 res->port_resource[tmp].flags = IORESOURCE_IO;
948 }
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600949 for (tmp = 0; tmp < ISAPNP_MAX_MEM; tmp++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700950 ret =
951 isapnp_read_word(ISAPNP_CFG_MEM + (tmp << 3)) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (!ret)
953 continue;
954 res->mem_resource[tmp].start = ret;
955 res->mem_resource[tmp].flags = IORESOURCE_MEM;
956 }
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600957 for (tmp = 0; tmp < ISAPNP_MAX_IRQ; tmp++) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700958 ret =
959 (isapnp_read_word(ISAPNP_CFG_IRQ + (tmp << 1)) >>
960 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (!ret)
962 continue;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700963 res->irq_resource[tmp].start =
964 res->irq_resource[tmp].end = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 res->irq_resource[tmp].flags = IORESOURCE_IRQ;
966 }
Bjorn Helgaas245073f2008-03-21 12:08:37 -0600967 for (tmp = 0; tmp < ISAPNP_MAX_DMA; tmp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 ret = isapnp_read_byte(ISAPNP_CFG_DMA + tmp);
969 if (ret == 4)
970 continue;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700971 res->dma_resource[tmp].start =
972 res->dma_resource[tmp].end = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 res->dma_resource[tmp].flags = IORESOURCE_DMA;
974 }
975 }
976 return 0;
977}
978
Bjorn Helgaas59284cb2008-04-28 16:34:05 -0600979static int isapnp_get_resources(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
981 int ret;
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600982
Bjorn Helgaas72dcc882008-04-28 16:34:07 -0600983 dev_dbg(&dev->dev, "get resources\n");
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600984 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 isapnp_cfg_begin(dev->card->number, dev->number);
Bjorn Helgaas4ab55d82008-04-28 16:34:06 -0600986 ret = isapnp_read_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 isapnp_cfg_end();
988 return ret;
989}
990
Bjorn Helgaas59284cb2008-04-28 16:34:05 -0600991static int isapnp_set_resources(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Bjorn Helgaas59284cb2008-04-28 16:34:05 -0600993 struct pnp_resource_table *res = &dev->res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 int tmp;
995
Bjorn Helgaas72dcc882008-04-28 16:34:07 -0600996 dev_dbg(&dev->dev, "set resources\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 isapnp_cfg_begin(dev->card->number, dev->number);
998 dev->active = 1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700999 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001000 tmp < ISAPNP_MAX_PORT
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001001 && (res->port_resource[tmp].
1002 flags & (IORESOURCE_IO | IORESOURCE_UNSET)) == IORESOURCE_IO;
Bjorn Helgaas72dcc882008-04-28 16:34:07 -06001003 tmp++) {
1004 dev_dbg(&dev->dev, " set io %d to %#llx\n",
1005 tmp, (unsigned long long) res->port_resource[tmp].start);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001006 isapnp_write_word(ISAPNP_CFG_PORT + (tmp << 1),
1007 res->port_resource[tmp].start);
Bjorn Helgaas72dcc882008-04-28 16:34:07 -06001008 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001009 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001010 tmp < ISAPNP_MAX_IRQ
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001011 && (res->irq_resource[tmp].
1012 flags & (IORESOURCE_IRQ | IORESOURCE_UNSET)) == IORESOURCE_IRQ;
1013 tmp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 int irq = res->irq_resource[tmp].start;
1015 if (irq == 2)
1016 irq = 9;
Bjorn Helgaas72dcc882008-04-28 16:34:07 -06001017 dev_dbg(&dev->dev, " set irq %d to %d\n", tmp, irq);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001018 isapnp_write_byte(ISAPNP_CFG_IRQ + (tmp << 1), irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001020 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001021 tmp < ISAPNP_MAX_DMA
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001022 && (res->dma_resource[tmp].
1023 flags & (IORESOURCE_DMA | IORESOURCE_UNSET)) == IORESOURCE_DMA;
Bjorn Helgaas72dcc882008-04-28 16:34:07 -06001024 tmp++) {
1025 dev_dbg(&dev->dev, " set dma %d to %lld\n",
1026 tmp, (unsigned long long) res->dma_resource[tmp].start);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001027 isapnp_write_byte(ISAPNP_CFG_DMA + tmp,
1028 res->dma_resource[tmp].start);
Bjorn Helgaas72dcc882008-04-28 16:34:07 -06001029 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001030 for (tmp = 0;
Bjorn Helgaas245073f2008-03-21 12:08:37 -06001031 tmp < ISAPNP_MAX_MEM
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001032 && (res->mem_resource[tmp].
1033 flags & (IORESOURCE_MEM | IORESOURCE_UNSET)) == IORESOURCE_MEM;
Bjorn Helgaas72dcc882008-04-28 16:34:07 -06001034 tmp++) {
1035 dev_dbg(&dev->dev, " set mem %d to %#llx\n",
1036 tmp, (unsigned long long) res->mem_resource[tmp].start);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001037 isapnp_write_word(ISAPNP_CFG_MEM + (tmp << 3),
1038 (res->mem_resource[tmp].start >> 8) & 0xffff);
Bjorn Helgaas72dcc882008-04-28 16:34:07 -06001039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 /* FIXME: We aren't handling 32bit mems properly here */
1041 isapnp_activate(dev->number);
1042 isapnp_cfg_end();
1043 return 0;
1044}
1045
1046static int isapnp_disable_resources(struct pnp_dev *dev)
1047{
Bjorn Helgaasb1734912007-08-15 10:32:13 -06001048 if (!dev->active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return -EINVAL;
1050 isapnp_cfg_begin(dev->card->number, dev->number);
1051 isapnp_deactivate(dev->number);
1052 dev->active = 0;
1053 isapnp_cfg_end();
1054 return 0;
1055}
1056
1057struct pnp_protocol isapnp_protocol = {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001058 .name = "ISA Plug and Play",
1059 .get = isapnp_get_resources,
1060 .set = isapnp_set_resources,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 .disable = isapnp_disable_resources,
1062};
1063
1064static int __init isapnp_init(void)
1065{
1066 int cards;
1067 struct pnp_card *card;
1068 struct pnp_dev *dev;
1069
1070 if (isapnp_disable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 printk(KERN_INFO "isapnp: ISA Plug & Play support disabled\n");
1072 return 0;
1073 }
David Woodhouse07bd1c42006-09-27 08:18:55 +01001074#ifdef CONFIG_PPC_MERGE
1075 if (check_legacy_ioport(_PIDXR) || check_legacy_ioport(_PNPWRP))
1076 return -EINVAL;
1077#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078#ifdef ISAPNP_REGION_OK
1079 if (!request_region(_PIDXR, 1, "isapnp index")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001080 printk(KERN_ERR "isapnp: Index Register 0x%x already used\n",
1081 _PIDXR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return -EBUSY;
1083 }
1084#endif
1085 if (!request_region(_PNPWRP, 1, "isapnp write")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001086 printk(KERN_ERR
1087 "isapnp: Write Data Register 0x%x already used\n",
1088 _PNPWRP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089#ifdef ISAPNP_REGION_OK
1090 release_region(_PIDXR, 1);
1091#endif
1092 return -EBUSY;
1093 }
1094
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001095 if (pnp_register_protocol(&isapnp_protocol) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return -EBUSY;
1097
1098 /*
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001099 * Print a message. The existing ISAPnP code is hanging machines
1100 * so let the user know where.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 printk(KERN_INFO "isapnp: Scanning for PnP cards...\n");
1104 if (isapnp_rdp >= 0x203 && isapnp_rdp <= 0x3ff) {
1105 isapnp_rdp |= 3;
1106 if (!request_region(isapnp_rdp, 1, "isapnp read")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001107 printk(KERN_ERR
1108 "isapnp: Read Data Register 0x%x already used\n",
1109 isapnp_rdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110#ifdef ISAPNP_REGION_OK
1111 release_region(_PIDXR, 1);
1112#endif
1113 release_region(_PNPWRP, 1);
1114 return -EBUSY;
1115 }
1116 isapnp_set_rdp();
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff) {
1119 cards = isapnp_isolate();
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001120 if (cards < 0 || (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121#ifdef ISAPNP_REGION_OK
1122 release_region(_PIDXR, 1);
1123#endif
1124 release_region(_PNPWRP, 1);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001125 printk(KERN_INFO
1126 "isapnp: No Plug & Play device found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return 0;
1128 }
1129 request_region(isapnp_rdp, 1, "isapnp read");
1130 }
1131 isapnp_build_device_list();
1132 cards = 0;
1133
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001134 protocol_for_each_card(&isapnp_protocol, card) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 cards++;
1136 if (isapnp_verbose) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001137 printk(KERN_INFO "isapnp: Card '%s'\n",
1138 card->name[0] ? card->name : "Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (isapnp_verbose < 2)
1140 continue;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001141 card_for_each_dev(card, dev) {
1142 printk(KERN_INFO "isapnp: Device '%s'\n",
1143 dev->name[0] ? dev->name : "Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145 }
1146 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -06001147 if (cards)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001148 printk(KERN_INFO
1149 "isapnp: %i Plug & Play card%s detected total\n", cards,
1150 cards > 1 ? "s" : "");
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -06001151 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 printk(KERN_INFO "isapnp: No Plug & Play card found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 isapnp_proc_init();
1155 return 0;
1156}
1157
1158device_initcall(isapnp_init);
1159
1160/* format is: noisapnp */
1161
1162static int __init isapnp_setup_disable(char *str)
1163{
1164 isapnp_disable = 1;
1165 return 1;
1166}
1167
1168__setup("noisapnp", isapnp_setup_disable);
1169
1170/* format is: isapnp=rdp,reset,skip_pci_scan,verbose */
1171
1172static int __init isapnp_setup_isapnp(char *str)
1173{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001174 (void)((get_option(&str, &isapnp_rdp) == 2) &&
1175 (get_option(&str, &isapnp_reset) == 2) &&
1176 (get_option(&str, &isapnp_verbose) == 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return 1;
1178}
1179
1180__setup("isapnp=", isapnp_setup_isapnp);