2 * ISA Plug & Play support
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.
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.
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.
21 * 2000-01-01 Added quirks handling for buggy hardware
23 * 2000-06-14 Added isapnp_probe_devs() and isapnp_activate_dev()
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
31 * 2002-06-06 Made the use of dma channel 0 configurable
37 #include <linux/module.h>
38 #include <linux/kernel.h>
39 #include <linux/errno.h>
40 #include <linux/delay.h>
41 #include <linux/init.h>
42 #include <linux/isapnp.h>
43 #include <linux/mutex.h>
49 #define ISAPNP_REGION_OK
52 int isapnp_disable; /* Disable ISA PnP */
53 static int isapnp_rdp; /* Read Data Port */
54 static int isapnp_reset = 1; /* reset all PnP cards (deactivate) */
55 static int isapnp_verbose = 1; /* verbose mode */
58 MODULE_DESCRIPTION("Generic ISA Plug & Play support");
59 module_param(isapnp_disable, int, 0);
60 MODULE_PARM_DESC(isapnp_disable, "ISA Plug & Play disable");
61 module_param(isapnp_rdp, int, 0);
62 MODULE_PARM_DESC(isapnp_rdp, "ISA Plug & Play read data port");
63 module_param(isapnp_reset, int, 0);
64 MODULE_PARM_DESC(isapnp_reset, "ISA Plug & Play reset all cards");
65 module_param(isapnp_verbose, int, 0);
66 MODULE_PARM_DESC(isapnp_verbose, "ISA Plug & Play verbose mode");
67 MODULE_LICENSE("GPL");
73 #define _STAG_PNPVERNO 0x01
74 #define _STAG_LOGDEVID 0x02
75 #define _STAG_COMPATDEVID 0x03
76 #define _STAG_IRQ 0x04
77 #define _STAG_DMA 0x05
78 #define _STAG_STARTDEP 0x06
79 #define _STAG_ENDDEP 0x07
80 #define _STAG_IOPORT 0x08
81 #define _STAG_FIXEDIO 0x09
82 #define _STAG_VENDOR 0x0e
83 #define _STAG_END 0x0f
85 #define _LTAG_MEMRANGE 0x81
86 #define _LTAG_ANSISTR 0x82
87 #define _LTAG_UNICODESTR 0x83
88 #define _LTAG_VENDOR 0x84
89 #define _LTAG_MEM32RANGE 0x85
90 #define _LTAG_FIXEDMEM32RANGE 0x86
92 /* Logical device control and configuration registers */
94 #define ISAPNP_CFG_ACTIVATE 0x30 /* byte */
95 #define ISAPNP_CFG_MEM 0x40 /* 4 * dword */
96 #define ISAPNP_CFG_PORT 0x60 /* 8 * word */
97 #define ISAPNP_CFG_IRQ 0x70 /* 2 * word */
98 #define ISAPNP_CFG_DMA 0x74 /* 2 * byte */
101 * Sizes of ISAPNP logical device configuration register sets.
102 * See PNP-ISA-v1.0a.pdf, Appendix A.
104 #define ISAPNP_MAX_MEM 4
105 #define ISAPNP_MAX_PORT 8
106 #define ISAPNP_MAX_IRQ 2
107 #define ISAPNP_MAX_DMA 2
109 static unsigned char isapnp_checksum_value;
110 static DEFINE_MUTEX(isapnp_cfg_mutex);
111 static int isapnp_csn_count;
113 /* some prototypes */
115 static inline void write_data(unsigned char x)
120 static inline void write_address(unsigned char x)
126 static inline unsigned char read_data(void)
128 unsigned char val = inb(isapnp_rdp);
132 unsigned char isapnp_read_byte(unsigned char idx)
138 static unsigned short isapnp_read_word(unsigned char idx)
142 val = isapnp_read_byte(idx);
143 val = (val << 8) + isapnp_read_byte(idx + 1);
147 void isapnp_write_byte(unsigned char idx, unsigned char val)
153 static void isapnp_write_word(unsigned char idx, unsigned short val)
155 isapnp_write_byte(idx, val >> 8);
156 isapnp_write_byte(idx + 1, val);
159 static void isapnp_key(void)
161 unsigned char code = 0x6a, msb;
170 for (i = 1; i < 32; i++) {
171 msb = ((code & 0x01) ^ ((code & 0x02) >> 1)) << 7;
172 code = (code >> 1) | msb;
177 /* place all pnp cards in wait-for-key state */
178 static void isapnp_wait(void)
180 isapnp_write_byte(0x02, 0x02);
183 static void isapnp_wake(unsigned char csn)
185 isapnp_write_byte(0x03, csn);
188 static void isapnp_device(unsigned char logdev)
190 isapnp_write_byte(0x07, logdev);
193 static void isapnp_activate(unsigned char logdev)
195 isapnp_device(logdev);
196 isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 1);
200 static void isapnp_deactivate(unsigned char logdev)
202 isapnp_device(logdev);
203 isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 0);
207 static void __init isapnp_peek(unsigned char *data, int bytes)
212 for (i = 1; i <= bytes; i++) {
213 for (j = 0; j < 20; j++) {
214 d = isapnp_read_byte(0x05);
224 d = isapnp_read_byte(0x04); /* PRESDI */
225 isapnp_checksum_value += d;
231 #define RDP_STEP 32 /* minimum is 4 */
233 static int isapnp_next_rdp(void)
235 int rdp = isapnp_rdp;
236 static int old_rdp = 0;
239 release_region(old_rdp, 1);
242 while (rdp <= 0x3ff) {
244 * We cannot use NE2000 probe spaces for ISAPnP or we
245 * will lock up machines.
247 if ((rdp < 0x280 || rdp > 0x380)
248 && request_region(rdp, 1, "ISAPnP")) {
258 /* Set read port address */
259 static inline void isapnp_set_rdp(void)
261 isapnp_write_byte(0x00, isapnp_rdp >> 2);
266 * Perform an isolation. The port selection code now tries to avoid
267 * "dangerous to read" ports.
269 static int __init isapnp_isolate_rdp_select(void)
274 /* Control: reset CSN and conditionally everything else too */
275 isapnp_write_byte(0x02, isapnp_reset ? 0x05 : 0x04);
282 if (isapnp_next_rdp() < 0) {
295 * Isolate (assign uniqued CSN) to all ISA PnP devices.
297 static int __init isapnp_isolate(void)
299 unsigned char checksum = 0x6a;
300 unsigned char chksum = 0x00;
301 unsigned char bit = 0x00;
308 if (isapnp_isolate_rdp_select() < 0)
312 for (i = 1; i <= 64; i++) {
313 data = read_data() << 8;
315 data = data | read_data();
320 ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
324 for (i = 65; i <= 72; i++) {
325 data = read_data() << 8;
327 data = data | read_data();
330 chksum |= (1 << (i - 65));
332 if (checksum != 0x00 && checksum == chksum) {
335 isapnp_write_byte(0x06, csn);
345 if (iteration == 1) {
346 isapnp_rdp += RDP_STEP;
347 if (isapnp_isolate_rdp_select() < 0)
349 } else if (iteration > 1) {
360 isapnp_csn_count = csn;
365 * Read one tag from stream.
367 static int __init isapnp_read_tag(unsigned char *type, unsigned short *size)
369 unsigned char tag, tmp[2];
371 isapnp_peek(&tag, 1);
372 if (tag == 0) /* invalid tag */
374 if (tag & 0x80) { /* large item */
377 *size = (tmp[1] << 8) | tmp[0];
379 *type = (tag >> 3) & 0x0f;
382 if (*type == 0xff && *size == 0xffff) /* probably invalid data */
388 * Skip specified number of bytes from stream.
390 static void __init isapnp_skip_bytes(int count)
392 isapnp_peek(NULL, count);
396 * Parse logical device tag.
398 static struct pnp_dev *__init isapnp_parse_device(struct pnp_card *card,
399 int size, int number)
401 unsigned char tmp[6];
406 isapnp_peek(tmp, size);
407 eisa_id = tmp[0] | tmp[1] << 8 | tmp[2] << 16 | tmp[3] << 24;
408 pnp_eisa_id_to_string(eisa_id, id);
410 dev = pnp_alloc_dev(&isapnp_protocol, number, id);
415 dev->capabilities |= PNP_CONFIGURABLE;
416 dev->capabilities |= PNP_READ;
417 dev->capabilities |= PNP_WRITE;
418 dev->capabilities |= PNP_DISABLE;
419 pnp_init_resources(dev);
424 * Add IRQ resource to resources list.
426 static void __init isapnp_parse_irq_resource(struct pnp_dev *dev,
427 unsigned int option_flags,
430 unsigned char tmp[3];
433 unsigned char flags = IORESOURCE_IRQ_HIGHEDGE;
435 isapnp_peek(tmp, size);
436 bits = (tmp[1] << 8) | tmp[0];
438 bitmap_zero(map.bits, PNP_IRQ_NR);
439 bitmap_copy(map.bits, &bits, 16);
444 pnp_register_irq_resource(dev, option_flags, &map, flags);
448 * Add DMA resource to resources list.
450 static void __init isapnp_parse_dma_resource(struct pnp_dev *dev,
451 unsigned int option_flags,
454 unsigned char tmp[2];
456 isapnp_peek(tmp, size);
457 pnp_register_dma_resource(dev, option_flags, tmp[0], tmp[1]);
461 * Add port resource to resources list.
463 static void __init isapnp_parse_port_resource(struct pnp_dev *dev,
464 unsigned int option_flags,
467 unsigned char tmp[7];
468 resource_size_t min, max, align, len;
471 isapnp_peek(tmp, size);
472 min = (tmp[2] << 8) | tmp[1];
473 max = (tmp[4] << 8) | tmp[3];
476 flags = tmp[0] ? IORESOURCE_IO_16BIT_ADDR : 0;
477 pnp_register_port_resource(dev, option_flags,
478 min, max, align, len, flags);
482 * Add fixed port resource to resources list.
484 static void __init isapnp_parse_fixed_port_resource(struct pnp_dev *dev,
485 unsigned int option_flags,
488 unsigned char tmp[3];
489 resource_size_t base, len;
491 isapnp_peek(tmp, size);
492 base = (tmp[1] << 8) | tmp[0];
494 pnp_register_port_resource(dev, option_flags, base, base, 0, len,
495 IORESOURCE_IO_FIXED);
499 * Add memory resource to resources list.
501 static void __init isapnp_parse_mem_resource(struct pnp_dev *dev,
502 unsigned int option_flags,
505 unsigned char tmp[9];
506 resource_size_t min, max, align, len;
509 isapnp_peek(tmp, size);
510 min = ((tmp[2] << 8) | tmp[1]) << 8;
511 max = ((tmp[4] << 8) | tmp[3]) << 8;
512 align = (tmp[6] << 8) | tmp[5];
513 len = ((tmp[8] << 8) | tmp[7]) << 8;
515 pnp_register_mem_resource(dev, option_flags,
516 min, max, align, len, flags);
520 * Add 32-bit memory resource to resources list.
522 static void __init isapnp_parse_mem32_resource(struct pnp_dev *dev,
523 unsigned int option_flags,
526 unsigned char tmp[17];
527 resource_size_t min, max, align, len;
530 isapnp_peek(tmp, size);
531 min = (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
532 max = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
533 align = (tmp[12] << 24) | (tmp[11] << 16) | (tmp[10] << 8) | tmp[9];
534 len = (tmp[16] << 24) | (tmp[15] << 16) | (tmp[14] << 8) | tmp[13];
536 pnp_register_mem_resource(dev, option_flags,
537 min, max, align, len, flags);
541 * Add 32-bit fixed memory resource to resources list.
543 static void __init isapnp_parse_fixed_mem32_resource(struct pnp_dev *dev,
544 unsigned int option_flags,
547 unsigned char tmp[9];
548 resource_size_t base, len;
551 isapnp_peek(tmp, size);
552 base = (tmp[4] << 24) | (tmp[3] << 16) | (tmp[2] << 8) | tmp[1];
553 len = (tmp[8] << 24) | (tmp[7] << 16) | (tmp[6] << 8) | tmp[5];
555 pnp_register_mem_resource(dev, option_flags, base, base, 0, len, flags);
559 * Parse card name for ISA PnP device.
562 isapnp_parse_name(char *name, unsigned int name_max, unsigned short *size)
564 if (name[0] == '\0') {
565 unsigned short size1 =
566 *size >= name_max ? (name_max - 1) : *size;
567 isapnp_peek(name, size1);
571 /* clean whitespace from end of string */
572 while (size1 > 0 && name[--size1] == ' ')
578 * Parse resource map for logical device.
580 static int __init isapnp_create_device(struct pnp_card *card,
583 int number = 0, skip = 0, priority, compat = 0;
584 unsigned char type, tmp[17];
585 unsigned int option_flags;
590 if ((dev = isapnp_parse_device(card, size, number++)) == NULL)
593 pnp_add_card_device(card, dev);
596 if (isapnp_read_tag(&type, &size) < 0)
598 if (skip && type != _STAG_LOGDEVID && type != _STAG_END)
602 if (size >= 5 && size <= 6) {
604 isapnp_parse_device(card, size,
610 pnp_add_card_device(card, dev);
616 case _STAG_COMPATDEVID:
617 if (size == 4 && compat < DEVICE_COUNT_COMPATIBLE) {
619 eisa_id = tmp[0] | tmp[1] << 8 |
620 tmp[2] << 16 | tmp[3] << 24;
621 pnp_eisa_id_to_string(eisa_id, id);
628 if (size < 2 || size > 3)
630 isapnp_parse_irq_resource(dev, option_flags, size);
636 isapnp_parse_dma_resource(dev, option_flags, size);
642 priority = PNP_RES_PRIORITY_ACCEPTABLE;
644 isapnp_peek(tmp, size);
648 option_flags = pnp_new_dependent_set(dev, priority);
658 isapnp_parse_port_resource(dev, option_flags, size);
664 isapnp_parse_fixed_port_resource(dev, option_flags,
673 isapnp_parse_mem_resource(dev, option_flags, size);
677 isapnp_parse_name(dev->name, sizeof(dev->name), &size);
679 case _LTAG_UNICODESTR:
680 /* silently ignore */
681 /* who use unicode for hardware identification? */
685 case _LTAG_MEM32RANGE:
688 isapnp_parse_mem32_resource(dev, option_flags, size);
691 case _LTAG_FIXEDMEM32RANGE:
694 isapnp_parse_fixed_mem32_resource(dev, option_flags,
700 isapnp_skip_bytes(size);
703 dev_err(&dev->dev, "unknown tag %#x (card %i), "
704 "ignored\n", type, card->number);
708 isapnp_skip_bytes(size);
714 * Parse resource map for ISA PnP card.
716 static void __init isapnp_parse_resource_map(struct pnp_card *card)
718 unsigned char type, tmp[17];
722 if (isapnp_read_tag(&type, &size) < 0)
729 card->pnpver = tmp[0];
730 card->productver = tmp[1];
734 if (size >= 5 && size <= 6) {
735 if (isapnp_create_device(card, size) == 1)
743 isapnp_parse_name(card->name, sizeof(card->name),
746 case _LTAG_UNICODESTR:
747 /* silently ignore */
748 /* who use unicode for hardware identification? */
754 isapnp_skip_bytes(size);
757 dev_err(&card->dev, "unknown tag %#x, ignored\n",
762 isapnp_skip_bytes(size);
767 * Compute ISA PnP checksum for first eight bytes.
769 static unsigned char __init isapnp_checksum(unsigned char *data)
772 unsigned char checksum = 0x6a, bit, b;
774 for (i = 0; i < 8; i++) {
776 for (j = 0; j < 8; j++) {
781 ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
789 * Build device list for all present ISA PnP devices.
791 static int __init isapnp_build_device_list(void)
794 unsigned char header[9], checksum;
795 struct pnp_card *card;
801 for (csn = 1; csn <= isapnp_csn_count; csn++) {
803 isapnp_peek(header, 9);
804 checksum = isapnp_checksum(header);
805 eisa_id = header[0] | header[1] << 8 |
806 header[2] << 16 | header[3] << 24;
807 pnp_eisa_id_to_string(eisa_id, id);
808 card = pnp_alloc_card(&isapnp_protocol, csn, id);
812 INIT_LIST_HEAD(&card->devices);
814 (header[7] << 24) | (header[6] << 16) | (header[5] << 8) |
816 isapnp_checksum_value = 0x00;
817 isapnp_parse_resource_map(card);
818 if (isapnp_checksum_value != 0x00)
819 dev_err(&card->dev, "invalid checksum %#x\n",
820 isapnp_checksum_value);
821 card->checksum = isapnp_checksum_value;
830 * Basic configuration routines.
833 int isapnp_present(void)
835 struct pnp_card *card;
837 pnp_for_each_card(card) {
838 if (card->protocol == &isapnp_protocol)
844 int isapnp_cfg_begin(int csn, int logdev)
846 if (csn < 1 || csn > isapnp_csn_count || logdev > 10)
848 mutex_lock(&isapnp_cfg_mutex);
853 /* to avoid malfunction when the isapnptools package is used */
854 /* we must set RDP to our value again */
855 /* it is possible to set RDP only in the isolation phase */
857 isapnp_write_byte(0x02, 0x04); /* clear CSN of card */
858 mdelay(2); /* is this necessary? */
859 isapnp_wake(csn); /* bring card into sleep state */
860 isapnp_wake(0); /* bring card into isolation state */
861 isapnp_set_rdp(); /* reset the RDP port */
862 udelay(1000); /* delay 1000us */
863 isapnp_write_byte(0x06, csn); /* reset CSN to previous value */
864 udelay(250); /* is this necessary? */
867 isapnp_device(logdev);
871 int isapnp_cfg_end(void)
874 mutex_unlock(&isapnp_cfg_mutex);
882 EXPORT_SYMBOL(isapnp_protocol);
883 EXPORT_SYMBOL(isapnp_present);
884 EXPORT_SYMBOL(isapnp_cfg_begin);
885 EXPORT_SYMBOL(isapnp_cfg_end);
886 EXPORT_SYMBOL(isapnp_write_byte);
888 static int isapnp_get_resources(struct pnp_dev *dev)
892 pnp_dbg(&dev->dev, "get resources\n");
893 pnp_init_resources(dev);
894 isapnp_cfg_begin(dev->card->number, dev->number);
895 dev->active = isapnp_read_byte(ISAPNP_CFG_ACTIVATE);
899 for (i = 0; i < ISAPNP_MAX_PORT; i++) {
900 ret = isapnp_read_word(ISAPNP_CFG_PORT + (i << 1));
901 pnp_add_io_resource(dev, ret, ret,
902 ret == 0 ? IORESOURCE_DISABLED : 0);
904 for (i = 0; i < ISAPNP_MAX_MEM; i++) {
905 ret = isapnp_read_word(ISAPNP_CFG_MEM + (i << 3)) << 8;
906 pnp_add_mem_resource(dev, ret, ret,
907 ret == 0 ? IORESOURCE_DISABLED : 0);
909 for (i = 0; i < ISAPNP_MAX_IRQ; i++) {
910 ret = isapnp_read_word(ISAPNP_CFG_IRQ + (i << 1)) >> 8;
911 pnp_add_irq_resource(dev, ret,
912 ret == 0 ? IORESOURCE_DISABLED : 0);
914 for (i = 0; i < ISAPNP_MAX_DMA; i++) {
915 ret = isapnp_read_byte(ISAPNP_CFG_DMA + i);
916 pnp_add_dma_resource(dev, ret,
917 ret == 4 ? IORESOURCE_DISABLED : 0);
925 static int isapnp_set_resources(struct pnp_dev *dev)
927 struct resource *res;
930 pnp_dbg(&dev->dev, "set resources\n");
931 isapnp_cfg_begin(dev->card->number, dev->number);
933 for (tmp = 0; tmp < ISAPNP_MAX_PORT; tmp++) {
934 res = pnp_get_resource(dev, IORESOURCE_IO, tmp);
935 if (pnp_resource_enabled(res)) {
936 pnp_dbg(&dev->dev, " set io %d to %#llx\n",
937 tmp, (unsigned long long) res->start);
938 isapnp_write_word(ISAPNP_CFG_PORT + (tmp << 1),
942 for (tmp = 0; tmp < ISAPNP_MAX_IRQ; tmp++) {
943 res = pnp_get_resource(dev, IORESOURCE_IRQ, tmp);
944 if (pnp_resource_enabled(res)) {
945 int irq = res->start;
948 pnp_dbg(&dev->dev, " set irq %d to %d\n", tmp, irq);
949 isapnp_write_byte(ISAPNP_CFG_IRQ + (tmp << 1), irq);
952 for (tmp = 0; tmp < ISAPNP_MAX_DMA; tmp++) {
953 res = pnp_get_resource(dev, IORESOURCE_DMA, tmp);
954 if (pnp_resource_enabled(res)) {
955 pnp_dbg(&dev->dev, " set dma %d to %lld\n",
956 tmp, (unsigned long long) res->start);
957 isapnp_write_byte(ISAPNP_CFG_DMA + tmp, res->start);
960 for (tmp = 0; tmp < ISAPNP_MAX_MEM; tmp++) {
961 res = pnp_get_resource(dev, IORESOURCE_MEM, tmp);
962 if (pnp_resource_enabled(res)) {
963 pnp_dbg(&dev->dev, " set mem %d to %#llx\n",
964 tmp, (unsigned long long) res->start);
965 isapnp_write_word(ISAPNP_CFG_MEM + (tmp << 3),
966 (res->start >> 8) & 0xffff);
969 /* FIXME: We aren't handling 32bit mems properly here */
970 isapnp_activate(dev->number);
975 static int isapnp_disable_resources(struct pnp_dev *dev)
979 isapnp_cfg_begin(dev->card->number, dev->number);
980 isapnp_deactivate(dev->number);
986 struct pnp_protocol isapnp_protocol = {
987 .name = "ISA Plug and Play",
988 .get = isapnp_get_resources,
989 .set = isapnp_set_resources,
990 .disable = isapnp_disable_resources,
993 static int __init isapnp_init(void)
996 struct pnp_card *card;
999 if (isapnp_disable) {
1000 printk(KERN_INFO "isapnp: ISA Plug & Play support disabled\n");
1004 if (check_legacy_ioport(_PIDXR) || check_legacy_ioport(_PNPWRP))
1007 #ifdef ISAPNP_REGION_OK
1008 if (!request_region(_PIDXR, 1, "isapnp index")) {
1009 printk(KERN_ERR "isapnp: Index Register 0x%x already used\n",
1014 if (!request_region(_PNPWRP, 1, "isapnp write")) {
1016 "isapnp: Write Data Register 0x%x already used\n",
1018 #ifdef ISAPNP_REGION_OK
1019 release_region(_PIDXR, 1);
1024 if (pnp_register_protocol(&isapnp_protocol) < 0)
1028 * Print a message. The existing ISAPnP code is hanging machines
1029 * so let the user know where.
1032 printk(KERN_INFO "isapnp: Scanning for PnP cards...\n");
1033 if (isapnp_rdp >= 0x203 && isapnp_rdp <= 0x3ff) {
1035 if (!request_region(isapnp_rdp, 1, "isapnp read")) {
1037 "isapnp: Read Data Register 0x%x already used\n",
1039 #ifdef ISAPNP_REGION_OK
1040 release_region(_PIDXR, 1);
1042 release_region(_PNPWRP, 1);
1047 if (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff) {
1048 cards = isapnp_isolate();
1049 if (cards < 0 || (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff)) {
1050 #ifdef ISAPNP_REGION_OK
1051 release_region(_PIDXR, 1);
1053 release_region(_PNPWRP, 1);
1055 "isapnp: No Plug & Play device found\n");
1058 request_region(isapnp_rdp, 1, "isapnp read");
1060 isapnp_build_device_list();
1063 protocol_for_each_card(&isapnp_protocol, card) {
1065 if (isapnp_verbose) {
1066 dev_info(&card->dev, "card '%s'\n",
1067 card->name[0] ? card->name : "unknown");
1068 if (isapnp_verbose < 2)
1070 card_for_each_dev(card, dev) {
1071 dev_info(&card->dev, "device '%s'\n",
1072 dev->name[0] ? dev->name : "unknown");
1078 "isapnp: %i Plug & Play card%s detected total\n", cards,
1079 cards > 1 ? "s" : "");
1081 printk(KERN_INFO "isapnp: No Plug & Play card found\n");
1087 device_initcall(isapnp_init);
1089 /* format is: noisapnp */
1091 static int __init isapnp_setup_disable(char *str)
1097 __setup("noisapnp", isapnp_setup_disable);
1099 /* format is: isapnp=rdp,reset,skip_pci_scan,verbose */
1101 static int __init isapnp_setup_isapnp(char *str)
1103 (void)((get_option(&str, &isapnp_rdp) == 2) &&
1104 (get_option(&str, &isapnp_reset) == 2) &&
1105 (get_option(&str, &isapnp_verbose) == 2));
1109 __setup("isapnp=", isapnp_setup_isapnp);