blob: 3f75fdbe6098c65c5de925f17a4bb933660122f6 [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->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 dev->capabilities |= PNP_CONFIGURABLE;
421 dev->capabilities |= PNP_READ;
422 dev->capabilities |= PNP_WRITE;
423 dev->capabilities |= PNP_DISABLE;
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600424 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return dev;
426}
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/*
429 * Add IRQ resource to resources list.
430 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600431static void __init isapnp_parse_irq_resource(struct pnp_dev *dev,
432 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700433 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 unsigned char tmp[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 unsigned long bits;
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600437 pnp_irq_mask_t map;
438 unsigned char flags = IORESOURCE_IRQ_HIGHEDGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 isapnp_peek(tmp, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 bits = (tmp[1] << 8) | tmp[0];
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600442
443 bitmap_zero(map.bits, PNP_IRQ_NR);
444 bitmap_copy(map.bits, &bits, 16);
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (size > 2)
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600447 flags = tmp[2];
448
449 pnp_register_irq_resource(dev, option, &map, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452/*
453 * Add DMA resource to resources list.
454 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600455static void __init isapnp_parse_dma_resource(struct pnp_dev *dev,
456 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700457 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 unsigned char tmp[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 isapnp_peek(tmp, size);
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600462 pnp_register_dma_resource(dev, option, tmp[0], tmp[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465/*
466 * Add port resource to resources list.
467 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600468static void __init isapnp_parse_port_resource(struct pnp_dev *dev,
469 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700470 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 unsigned char tmp[7];
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600473 resource_size_t min, max, align, len;
474 unsigned char flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 isapnp_peek(tmp, size);
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600477 min = (tmp[2] << 8) | tmp[1];
478 max = (tmp[4] << 8) | tmp[3];
479 align = tmp[5];
480 len = tmp[6];
481 flags = tmp[0] ? IORESOURCE_IO_16BIT_ADDR : 0;
482 pnp_register_port_resource(dev, option, min, max, align, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485/*
486 * Add fixed port resource to resources list.
487 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600488static void __init isapnp_parse_fixed_port_resource(struct pnp_dev *dev,
489 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700490 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 unsigned char tmp[3];
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600493 resource_size_t base, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 isapnp_peek(tmp, size);
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600496 base = (tmp[1] << 8) | tmp[0];
497 len = tmp[2];
498 pnp_register_port_resource(dev, option, base, base, 0, len,
499 IORESOURCE_IO_FIXED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502/*
503 * Add memory resource to resources list.
504 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600505static void __init isapnp_parse_mem_resource(struct pnp_dev *dev,
506 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700507 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 unsigned char tmp[9];
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600510 resource_size_t min, max, align, len;
511 unsigned char flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 isapnp_peek(tmp, size);
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600514 min = ((tmp[2] << 8) | tmp[1]) << 8;
515 max = ((tmp[4] << 8) | tmp[3]) << 8;
516 align = (tmp[6] << 8) | tmp[5];
517 len = ((tmp[8] << 8) | tmp[7]) << 8;
518 flags = tmp[0];
519 pnp_register_mem_resource(dev, option, min, max, align, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522/*
523 * Add 32-bit memory resource to resources list.
524 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600525static void __init isapnp_parse_mem32_resource(struct pnp_dev *dev,
526 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700527 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 unsigned char tmp[17];
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600530 resource_size_t min, max, align, len;
531 unsigned char flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 isapnp_peek(tmp, size);
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600534 min = (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
535 max = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
536 align = (tmp[12] << 24) | (tmp[11] << 16) | (tmp[10] << 8) | tmp[9];
537 len = (tmp[16] << 24) | (tmp[15] << 16) | (tmp[14] << 8) | tmp[13];
538 flags = tmp[0];
539 pnp_register_mem_resource(dev, option, min, max, align, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542/*
543 * Add 32-bit fixed memory resource to resources list.
544 */
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600545static void __init isapnp_parse_fixed_mem32_resource(struct pnp_dev *dev,
546 struct pnp_option *option,
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700547 int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 unsigned char tmp[9];
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600550 resource_size_t base, len;
551 unsigned char flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 isapnp_peek(tmp, size);
Bjorn Helgaasc2275362008-06-27 16:57:11 -0600554 base = (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
555 len = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
556 flags = tmp[0];
557 pnp_register_mem_resource(dev, option, base, base, 0, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560/*
561 * Parse card name for ISA PnP device.
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static void __init
564isapnp_parse_name(char *name, unsigned int name_max, unsigned short *size)
565{
566 if (name[0] == '\0') {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700567 unsigned short size1 =
568 *size >= name_max ? (name_max - 1) : *size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 isapnp_peek(name, size1);
570 name[size1] = '\0';
571 *size -= size1;
572
573 /* clean whitespace from end of string */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700574 while (size1 > 0 && name[--size1] == ' ')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 name[size1] = '\0';
576 }
577}
578
579/*
580 * Parse resource map for logical device.
581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582static int __init isapnp_create_device(struct pnp_card *card,
583 unsigned short size)
584{
585 int number = 0, skip = 0, priority = 0, compat = 0;
586 unsigned char type, tmp[17];
587 struct pnp_option *option;
588 struct pnp_dev *dev;
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600589 u32 eisa_id;
590 char id[8];
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if ((dev = isapnp_parse_device(card, size, number++)) == NULL)
593 return 1;
594 option = pnp_register_independent_option(dev);
595 if (!option) {
596 kfree(dev);
597 return 1;
598 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700599 pnp_add_card_device(card, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 while (1) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700602 if (isapnp_read_tag(&type, &size) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return 1;
604 if (skip && type != _STAG_LOGDEVID && type != _STAG_END)
605 goto __skip;
606 switch (type) {
607 case _STAG_LOGDEVID:
608 if (size >= 5 && size <= 6) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700609 if ((dev =
610 isapnp_parse_device(card, size,
611 number++)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 1;
613 size = 0;
614 skip = 0;
615 option = pnp_register_independent_option(dev);
Jesper Juhl656bde52006-03-25 03:08:12 -0800616 if (!option) {
617 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 1;
Jesper Juhl656bde52006-03-25 03:08:12 -0800619 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700620 pnp_add_card_device(card, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 } else {
622 skip = 1;
623 }
624 priority = 0;
625 compat = 0;
626 break;
627 case _STAG_COMPATDEVID:
628 if (size == 4 && compat < DEVICE_COUNT_COMPATIBLE) {
629 isapnp_peek(tmp, 4);
Bjorn Helgaas25eb8462008-04-28 16:33:53 -0600630 eisa_id = tmp[0] | tmp[1] << 8 |
631 tmp[2] << 16 | tmp[3] << 24;
632 pnp_eisa_id_to_string(eisa_id, id);
633 pnp_add_id(dev, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 compat++;
635 size = 0;
636 }
637 break;
638 case _STAG_IRQ:
639 if (size < 2 || size > 3)
640 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600641 isapnp_parse_irq_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 size = 0;
643 break;
644 case _STAG_DMA:
645 if (size != 2)
646 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600647 isapnp_parse_dma_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 size = 0;
649 break;
650 case _STAG_STARTDEP:
651 if (size > 1)
652 goto __skip;
653 priority = 0x100 | PNP_RES_PRIORITY_ACCEPTABLE;
654 if (size > 0) {
655 isapnp_peek(tmp, size);
656 priority = 0x100 | tmp[0];
657 size = 0;
658 }
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700659 option = pnp_register_dependent_option(dev, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (!option)
661 return 1;
662 break;
663 case _STAG_ENDDEP:
664 if (size != 0)
665 goto __skip;
666 priority = 0;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600667 dev_dbg(&dev->dev, "end dependent options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 break;
669 case _STAG_IOPORT:
670 if (size != 7)
671 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600672 isapnp_parse_port_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 size = 0;
674 break;
675 case _STAG_FIXEDIO:
676 if (size != 3)
677 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600678 isapnp_parse_fixed_port_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 size = 0;
680 break;
681 case _STAG_VENDOR:
682 break;
683 case _LTAG_MEMRANGE:
684 if (size != 9)
685 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600686 isapnp_parse_mem_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 size = 0;
688 break;
689 case _LTAG_ANSISTR:
690 isapnp_parse_name(dev->name, sizeof(dev->name), &size);
691 break;
692 case _LTAG_UNICODESTR:
693 /* silently ignore */
694 /* who use unicode for hardware identification? */
695 break;
696 case _LTAG_VENDOR:
697 break;
698 case _LTAG_MEM32RANGE:
699 if (size != 17)
700 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600701 isapnp_parse_mem32_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 size = 0;
703 break;
704 case _LTAG_FIXEDMEM32RANGE:
705 if (size != 9)
706 goto __skip;
Bjorn Helgaasc1caf062008-04-28 16:34:04 -0600707 isapnp_parse_fixed_mem32_resource(dev, option, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 size = 0;
709 break;
710 case _STAG_END:
711 if (size > 0)
712 isapnp_skip_bytes(size);
713 return 1;
714 default:
Bjorn Helgaasaf11cb22008-04-28 16:34:12 -0600715 dev_err(&dev->dev, "unknown tag %#x (card %i), "
716 "ignored\n", type, card->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600718__skip:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700719 if (size > 0)
720 isapnp_skip_bytes(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722 return 0;
723}
724
725/*
726 * Parse resource map for ISA PnP card.
727 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728static void __init isapnp_parse_resource_map(struct pnp_card *card)
729{
730 unsigned char type, tmp[17];
731 unsigned short size;
732
733 while (1) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700734 if (isapnp_read_tag(&type, &size) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return;
736 switch (type) {
737 case _STAG_PNPVERNO:
738 if (size != 2)
739 goto __skip;
740 isapnp_peek(tmp, 2);
741 card->pnpver = tmp[0];
742 card->productver = tmp[1];
743 size = 0;
744 break;
745 case _STAG_LOGDEVID:
746 if (size >= 5 && size <= 6) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700747 if (isapnp_create_device(card, size) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return;
749 size = 0;
750 }
751 break;
752 case _STAG_VENDOR:
753 break;
754 case _LTAG_ANSISTR:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700755 isapnp_parse_name(card->name, sizeof(card->name),
756 &size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 break;
758 case _LTAG_UNICODESTR:
759 /* silently ignore */
760 /* who use unicode for hardware identification? */
761 break;
762 case _LTAG_VENDOR:
763 break;
764 case _STAG_END:
765 if (size > 0)
766 isapnp_skip_bytes(size);
767 return;
768 default:
Bjorn Helgaasaf11cb22008-04-28 16:34:12 -0600769 dev_err(&card->dev, "unknown tag %#x, ignored\n",
770 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600772__skip:
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700773 if (size > 0)
774 isapnp_skip_bytes(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776}
777
778/*
779 * Compute ISA PnP checksum for first eight bytes.
780 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781static unsigned char __init isapnp_checksum(unsigned char *data)
782{
783 int i, j;
784 unsigned char checksum = 0x6a, bit, b;
785
786 for (i = 0; i < 8; i++) {
787 b = data[i];
788 for (j = 0; j < 8; j++) {
789 bit = 0;
790 if (b & (1 << j))
791 bit = 1;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700792 checksum =
793 ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
794 | (checksum >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 }
797 return checksum;
798}
799
800/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * Build device list for all present ISA PnP devices.
802 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803static int __init isapnp_build_device_list(void)
804{
805 int csn;
806 unsigned char header[9], checksum;
807 struct pnp_card *card;
Bjorn Helgaas068076d2008-04-28 16:33:57 -0600808 u32 eisa_id;
809 char id[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 isapnp_wait();
812 isapnp_key();
813 for (csn = 1; csn <= isapnp_csn_count; csn++) {
814 isapnp_wake(csn);
815 isapnp_peek(header, 9);
816 checksum = isapnp_checksum(header);
Bjorn Helgaas068076d2008-04-28 16:33:57 -0600817 eisa_id = header[0] | header[1] << 8 |
818 header[2] << 16 | header[3] << 24;
819 pnp_eisa_id_to_string(eisa_id, id);
Bjorn Helgaas6bf2aab2008-04-28 16:33:58 -0600820 card = pnp_alloc_card(&isapnp_protocol, csn, id);
821 if (!card)
822 continue;
823
Bjorn Helgaasaf11cb22008-04-28 16:34:12 -0600824#if 0
825 dev_info(&card->dev,
826 "vendor: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
827 header[0], header[1], header[2], header[3], header[4],
828 header[5], header[6], header[7], header[8]);
829 dev_info(&card->dev, "checksum = %#x\n", checksum);
830#endif
Bjorn Helgaas6bf2aab2008-04-28 16:33:58 -0600831 INIT_LIST_HEAD(&card->devices);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700832 card->serial =
833 (header[7] << 24) | (header[6] << 16) | (header[5] << 8) |
834 header[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 isapnp_checksum_value = 0x00;
836 isapnp_parse_resource_map(card);
837 if (isapnp_checksum_value != 0x00)
Bjorn Helgaasaf11cb22008-04-28 16:34:12 -0600838 dev_err(&card->dev, "invalid checksum %#x\n",
839 isapnp_checksum_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 card->checksum = isapnp_checksum_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 pnp_add_card(card);
843 }
844 isapnp_wait();
845 return 0;
846}
847
848/*
849 * Basic configuration routines.
850 */
851
852int isapnp_present(void)
853{
854 struct pnp_card *card;
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 pnp_for_each_card(card) {
857 if (card->protocol == &isapnp_protocol)
858 return 1;
859 }
860 return 0;
861}
862
863int isapnp_cfg_begin(int csn, int logdev)
864{
865 if (csn < 1 || csn > isapnp_csn_count || logdev > 10)
866 return -EINVAL;
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800867 mutex_lock(&isapnp_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 isapnp_wait();
869 isapnp_key();
870 isapnp_wake(csn);
871#if 0
872 /* to avoid malfunction when the isapnptools package is used */
873 /* we must set RDP to our value again */
874 /* it is possible to set RDP only in the isolation phase */
875 /* Jens Thoms Toerring <Jens.Toerring@physik.fu-berlin.de> */
876 isapnp_write_byte(0x02, 0x04); /* clear CSN of card */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700877 mdelay(2); /* is this necessary? */
878 isapnp_wake(csn); /* bring card into sleep state */
879 isapnp_wake(0); /* bring card into isolation state */
880 isapnp_set_rdp(); /* reset the RDP port */
881 udelay(1000); /* delay 1000us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 isapnp_write_byte(0x06, csn); /* reset CSN to previous value */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -0700883 udelay(250); /* is this necessary? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884#endif
885 if (logdev >= 0)
886 isapnp_device(logdev);
887 return 0;
888}
889
890int isapnp_cfg_end(void)
891{
892 isapnp_wait();
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800893 mutex_unlock(&isapnp_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return 0;
895}
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897/*
Bjorn Helgaas07d4e9a2007-07-26 10:41:21 -0700898 * Initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 */
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901EXPORT_SYMBOL(isapnp_protocol);
902EXPORT_SYMBOL(isapnp_present);
903EXPORT_SYMBOL(isapnp_cfg_begin);
904EXPORT_SYMBOL(isapnp_cfg_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905EXPORT_SYMBOL(isapnp_write_byte);
906
Bjorn Helgaas59284cb2008-04-28 16:34:05 -0600907static int isapnp_get_resources(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Bjorn Helgaas01115e72008-04-28 16:34:38 -0600909 int i, ret;
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -0600910
Bjorn Helgaas72dcc882008-04-28 16:34:07 -0600911 dev_dbg(&dev->dev, "get resources\n");
Bjorn Helgaasf4490002008-04-28 16:34:09 -0600912 pnp_init_resources(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 isapnp_cfg_begin(dev->card->number, dev->number);
Bjorn Helgaas01115e72008-04-28 16:34:38 -0600914 dev->active = isapnp_read_byte(ISAPNP_CFG_ACTIVATE);
915 if (!dev->active)
916 goto __end;
917
918 for (i = 0; i < ISAPNP_MAX_PORT; i++) {
919 ret = isapnp_read_word(ISAPNP_CFG_PORT + (i << 1));
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600920 pnp_add_io_resource(dev, ret, ret,
921 ret == 0 ? IORESOURCE_DISABLED : 0);
Bjorn Helgaas01115e72008-04-28 16:34:38 -0600922 }
923 for (i = 0; i < ISAPNP_MAX_MEM; i++) {
924 ret = isapnp_read_word(ISAPNP_CFG_MEM + (i << 3)) << 8;
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600925 pnp_add_mem_resource(dev, ret, ret,
926 ret == 0 ? IORESOURCE_DISABLED : 0);
Bjorn Helgaas01115e72008-04-28 16:34:38 -0600927 }
928 for (i = 0; i < ISAPNP_MAX_IRQ; i++) {
929 ret = isapnp_read_word(ISAPNP_CFG_IRQ + (i << 1)) >> 8;
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600930 pnp_add_irq_resource(dev, ret,
931 ret == 0 ? IORESOURCE_DISABLED : 0);
Bjorn Helgaas01115e72008-04-28 16:34:38 -0600932 }
933 for (i = 0; i < ISAPNP_MAX_DMA; i++) {
934 ret = isapnp_read_byte(ISAPNP_CFG_DMA + i);
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600935 pnp_add_dma_resource(dev, ret,
936 ret == 4 ? IORESOURCE_DISABLED : 0);
Bjorn Helgaas01115e72008-04-28 16:34:38 -0600937 }
938
939__end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 isapnp_cfg_end();
Bjorn Helgaas01115e72008-04-28 16:34:38 -0600941 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Bjorn Helgaas59284cb2008-04-28 16:34:05 -0600944static int isapnp_set_resources(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600946 struct resource *res;
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600947 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Bjorn Helgaas72dcc882008-04-28 16:34:07 -0600949 dev_dbg(&dev->dev, "set resources\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 isapnp_cfg_begin(dev->card->number, dev->number);
951 dev->active = 1;
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600952 for (tmp = 0; tmp < ISAPNP_MAX_PORT; tmp++) {
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600953 res = pnp_get_resource(dev, IORESOURCE_IO, tmp);
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600954 if (pnp_resource_enabled(res)) {
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600955 dev_dbg(&dev->dev, " set io %d to %#llx\n",
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600956 tmp, (unsigned long long) res->start);
957 isapnp_write_word(ISAPNP_CFG_PORT + (tmp << 1),
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600958 res->start);
959 }
Bjorn Helgaas72dcc882008-04-28 16:34:07 -0600960 }
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600961 for (tmp = 0; tmp < ISAPNP_MAX_IRQ; tmp++) {
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600962 res = pnp_get_resource(dev, IORESOURCE_IRQ, tmp);
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600963 if (pnp_resource_enabled(res)) {
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600964 int irq = res->start;
965 if (irq == 2)
966 irq = 9;
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600967 dev_dbg(&dev->dev, " set irq %d to %d\n", tmp, irq);
968 isapnp_write_byte(ISAPNP_CFG_IRQ + (tmp << 1), irq);
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600971 for (tmp = 0; tmp < ISAPNP_MAX_DMA; tmp++) {
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600972 res = pnp_get_resource(dev, IORESOURCE_DMA, tmp);
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600973 if (pnp_resource_enabled(res)) {
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600974 dev_dbg(&dev->dev, " set dma %d to %lld\n",
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600975 tmp, (unsigned long long) res->start);
976 isapnp_write_byte(ISAPNP_CFG_DMA + tmp, res->start);
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600977 }
Bjorn Helgaas72dcc882008-04-28 16:34:07 -0600978 }
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600979 for (tmp = 0; tmp < ISAPNP_MAX_MEM; tmp++) {
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600980 res = pnp_get_resource(dev, IORESOURCE_MEM, tmp);
Bjorn Helgaasaee3ad82008-06-27 16:56:57 -0600981 if (pnp_resource_enabled(res)) {
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600982 dev_dbg(&dev->dev, " set mem %d to %#llx\n",
Bjorn Helgaas87e4acf2008-06-27 16:56:53 -0600983 tmp, (unsigned long long) res->start);
984 isapnp_write_word(ISAPNP_CFG_MEM + (tmp << 3),
Bjorn Helgaas06cb58a2008-04-28 16:34:29 -0600985 (res->start >> 8) & 0xffff);
986 }
Bjorn Helgaas72dcc882008-04-28 16:34:07 -0600987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 /* FIXME: We aren't handling 32bit mems properly here */
989 isapnp_activate(dev->number);
990 isapnp_cfg_end();
991 return 0;
992}
993
994static int isapnp_disable_resources(struct pnp_dev *dev)
995{
Bjorn Helgaasb1734912007-08-15 10:32:13 -0600996 if (!dev->active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return -EINVAL;
998 isapnp_cfg_begin(dev->card->number, dev->number);
999 isapnp_deactivate(dev->number);
1000 dev->active = 0;
1001 isapnp_cfg_end();
1002 return 0;
1003}
1004
1005struct pnp_protocol isapnp_protocol = {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001006 .name = "ISA Plug and Play",
1007 .get = isapnp_get_resources,
1008 .set = isapnp_set_resources,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 .disable = isapnp_disable_resources,
1010};
1011
1012static int __init isapnp_init(void)
1013{
1014 int cards;
1015 struct pnp_card *card;
1016 struct pnp_dev *dev;
1017
1018 if (isapnp_disable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 printk(KERN_INFO "isapnp: ISA Plug & Play support disabled\n");
1020 return 0;
1021 }
David Woodhouse07bd1c42006-09-27 08:18:55 +01001022#ifdef CONFIG_PPC_MERGE
1023 if (check_legacy_ioport(_PIDXR) || check_legacy_ioport(_PNPWRP))
1024 return -EINVAL;
1025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026#ifdef ISAPNP_REGION_OK
1027 if (!request_region(_PIDXR, 1, "isapnp index")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001028 printk(KERN_ERR "isapnp: Index Register 0x%x already used\n",
1029 _PIDXR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return -EBUSY;
1031 }
1032#endif
1033 if (!request_region(_PNPWRP, 1, "isapnp write")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001034 printk(KERN_ERR
1035 "isapnp: Write Data Register 0x%x already used\n",
1036 _PNPWRP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037#ifdef ISAPNP_REGION_OK
1038 release_region(_PIDXR, 1);
1039#endif
1040 return -EBUSY;
1041 }
1042
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001043 if (pnp_register_protocol(&isapnp_protocol) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return -EBUSY;
1045
1046 /*
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001047 * Print a message. The existing ISAPnP code is hanging machines
1048 * so let the user know where.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 */
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 printk(KERN_INFO "isapnp: Scanning for PnP cards...\n");
1052 if (isapnp_rdp >= 0x203 && isapnp_rdp <= 0x3ff) {
1053 isapnp_rdp |= 3;
1054 if (!request_region(isapnp_rdp, 1, "isapnp read")) {
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001055 printk(KERN_ERR
1056 "isapnp: Read Data Register 0x%x already used\n",
1057 isapnp_rdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058#ifdef ISAPNP_REGION_OK
1059 release_region(_PIDXR, 1);
1060#endif
1061 release_region(_PNPWRP, 1);
1062 return -EBUSY;
1063 }
1064 isapnp_set_rdp();
1065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff) {
1067 cards = isapnp_isolate();
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001068 if (cards < 0 || (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069#ifdef ISAPNP_REGION_OK
1070 release_region(_PIDXR, 1);
1071#endif
1072 release_region(_PNPWRP, 1);
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001073 printk(KERN_INFO
1074 "isapnp: No Plug & Play device found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return 0;
1076 }
1077 request_region(isapnp_rdp, 1, "isapnp read");
1078 }
1079 isapnp_build_device_list();
1080 cards = 0;
1081
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001082 protocol_for_each_card(&isapnp_protocol, card) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 cards++;
1084 if (isapnp_verbose) {
Bjorn Helgaasaf11cb22008-04-28 16:34:12 -06001085 dev_info(&card->dev, "card '%s'\n",
1086 card->name[0] ? card->name : "unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (isapnp_verbose < 2)
1088 continue;
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001089 card_for_each_dev(card, dev) {
Bjorn Helgaasaf11cb22008-04-28 16:34:12 -06001090 dev_info(&card->dev, "device '%s'\n",
1091 dev->name[0] ? dev->name : "unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093 }
1094 }
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -06001095 if (cards)
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001096 printk(KERN_INFO
1097 "isapnp: %i Plug & Play card%s detected total\n", cards,
1098 cards > 1 ? "s" : "");
Bjorn Helgaas1e0aa9a2007-08-15 10:32:08 -06001099 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 printk(KERN_INFO "isapnp: No Plug & Play card found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 isapnp_proc_init();
1103 return 0;
1104}
1105
1106device_initcall(isapnp_init);
1107
1108/* format is: noisapnp */
1109
1110static int __init isapnp_setup_disable(char *str)
1111{
1112 isapnp_disable = 1;
1113 return 1;
1114}
1115
1116__setup("noisapnp", isapnp_setup_disable);
1117
1118/* format is: isapnp=rdp,reset,skip_pci_scan,verbose */
1119
1120static int __init isapnp_setup_isapnp(char *str)
1121{
Bjorn Helgaas9dd78462007-07-26 10:41:20 -07001122 (void)((get_option(&str, &isapnp_rdp) == 2) &&
1123 (get_option(&str, &isapnp_reset) == 2) &&
1124 (get_option(&str, &isapnp_verbose) == 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return 1;
1126}
1127
1128__setup("isapnp=", isapnp_setup_isapnp);