]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/pnp/isapnp/core.c
53cc4d6133e6bebe77237ed1e3c912bd1c273cff
[linux-2.6-omap-h63xx.git] / drivers / pnp / isapnp / core.c
1 /*
2  *  ISA Plug & Play support
3  *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4  *
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
37 #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>
44 #include <linux/mutex.h>
45 #include <asm/io.h>
46
47 #include "../base.h"
48
49 #if 0
50 #define ISAPNP_REGION_OK
51 #endif
52
53 int isapnp_disable;             /* Disable ISA PnP */
54 static int isapnp_rdp;          /* Read Data Port */
55 static int isapnp_reset = 1;    /* reset all PnP cards (deactivate) */
56 static int isapnp_verbose = 1;  /* verbose mode */
57
58 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
59 MODULE_DESCRIPTION("Generic ISA Plug & Play support");
60 module_param(isapnp_disable, int, 0);
61 MODULE_PARM_DESC(isapnp_disable, "ISA Plug & Play disable");
62 module_param(isapnp_rdp, int, 0);
63 MODULE_PARM_DESC(isapnp_rdp, "ISA Plug & Play read data port");
64 module_param(isapnp_reset, int, 0);
65 MODULE_PARM_DESC(isapnp_reset, "ISA Plug & Play reset all cards");
66 module_param(isapnp_verbose, int, 0);
67 MODULE_PARM_DESC(isapnp_verbose, "ISA Plug & Play verbose mode");
68 MODULE_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
93 /* 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
101 /*
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
110 static unsigned char isapnp_checksum_value;
111 static DEFINE_MUTEX(isapnp_cfg_mutex);
112 static int isapnp_csn_count;
113
114 /* some prototypes */
115
116 static inline void write_data(unsigned char x)
117 {
118         outb(x, _PNPWRP);
119 }
120
121 static inline void write_address(unsigned char x)
122 {
123         outb(x, _PIDXR);
124         udelay(20);
125 }
126
127 static inline unsigned char read_data(void)
128 {
129         unsigned char val = inb(isapnp_rdp);
130         return val;
131 }
132
133 unsigned char isapnp_read_byte(unsigned char idx)
134 {
135         write_address(idx);
136         return read_data();
137 }
138
139 static unsigned short isapnp_read_word(unsigned char idx)
140 {
141         unsigned short val;
142
143         val = isapnp_read_byte(idx);
144         val = (val << 8) + isapnp_read_byte(idx + 1);
145         return val;
146 }
147
148 void isapnp_write_byte(unsigned char idx, unsigned char val)
149 {
150         write_address(idx);
151         write_data(val);
152 }
153
154 static void isapnp_write_word(unsigned char idx, unsigned short val)
155 {
156         isapnp_write_byte(idx, val >> 8);
157         isapnp_write_byte(idx + 1, val);
158 }
159
160 static 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 */
179 static void isapnp_wait(void)
180 {
181         isapnp_write_byte(0x02, 0x02);
182 }
183
184 static void isapnp_wake(unsigned char csn)
185 {
186         isapnp_write_byte(0x03, csn);
187 }
188
189 static void isapnp_device(unsigned char logdev)
190 {
191         isapnp_write_byte(0x07, logdev);
192 }
193
194 static void isapnp_activate(unsigned char logdev)
195 {
196         isapnp_device(logdev);
197         isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 1);
198         udelay(250);
199 }
200
201 static void isapnp_deactivate(unsigned char logdev)
202 {
203         isapnp_device(logdev);
204         isapnp_write_byte(ISAPNP_CFG_ACTIVATE, 0);
205         udelay(500);
206 }
207
208 static void __init isapnp_peek(unsigned char *data, int bytes)
209 {
210         int i, j;
211         unsigned char d = 0;
212
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
234 static int isapnp_next_rdp(void)
235 {
236         int rdp = isapnp_rdp;
237         static int old_rdp = 0;
238
239         if (old_rdp) {
240                 release_region(old_rdp, 1);
241                 old_rdp = 0;
242         }
243         while (rdp <= 0x3ff) {
244                 /*
245                  *      We cannot use NE2000 probe spaces for ISAPnP or we
246                  *      will lock up machines.
247                  */
248                 if ((rdp < 0x280 || rdp > 0x380)
249                     && request_region(rdp, 1, "ISAPnP")) {
250                         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 */
260 static 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  */
270 static 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  */
298 static 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;
320                         checksum =
321                             ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
322                             | (checksum >> 1);
323                         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                 }
353 __next:
354                 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  */
368 static int __init isapnp_read_tag(unsigned char *type, unsigned short *size)
369 {
370         unsigned char tag, tmp[2];
371
372         isapnp_peek(&tag, 1);
373         if (tag == 0)           /* invalid tag */
374                 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
384         printk(KERN_DEBUG "tag = 0x%x, type = 0x%x, size = %i\n", tag, *type,
385                *size);
386 #endif
387         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  */
395 static void __init isapnp_skip_bytes(int count)
396 {
397         isapnp_peek(NULL, count);
398 }
399
400 /*
401  *  Parse logical device tag.
402  */
403 static struct pnp_dev *__init isapnp_parse_device(struct pnp_card *card,
404                                                   int size, int number)
405 {
406         unsigned char tmp[6];
407         struct pnp_dev *dev;
408         u32 eisa_id;
409         char id[8];
410
411         isapnp_peek(tmp, size);
412         eisa_id = tmp[0] | tmp[1] << 8 | tmp[2] << 16 | tmp[3] << 24;
413         pnp_eisa_id_to_string(eisa_id, id);
414
415         dev = pnp_alloc_dev(&isapnp_protocol, number, id);
416         if (!dev)
417                 return NULL;
418
419         dev->card = card;
420         dev->capabilities |= PNP_CONFIGURABLE;
421         dev->capabilities |= PNP_READ;
422         dev->capabilities |= PNP_WRITE;
423         dev->capabilities |= PNP_DISABLE;
424         pnp_init_resources(dev);
425         return dev;
426 }
427
428 /*
429  *  Add IRQ resource to resources list.
430  */
431 static void __init isapnp_parse_irq_resource(struct pnp_dev *dev,
432                                              struct pnp_option *option,
433                                              int size)
434 {
435         unsigned char tmp[3];
436         unsigned long bits;
437         pnp_irq_mask_t map;
438         unsigned char flags = IORESOURCE_IRQ_HIGHEDGE;
439
440         isapnp_peek(tmp, size);
441         bits = (tmp[1] << 8) | tmp[0];
442
443         bitmap_zero(map.bits, PNP_IRQ_NR);
444         bitmap_copy(map.bits, &bits, 16);
445
446         if (size > 2)
447                 flags = tmp[2];
448
449         pnp_register_irq_resource(dev, option, &map, flags);
450 }
451
452 /*
453  *  Add DMA resource to resources list.
454  */
455 static void __init isapnp_parse_dma_resource(struct pnp_dev *dev,
456                                              struct pnp_option *option,
457                                              int size)
458 {
459         unsigned char tmp[2];
460
461         isapnp_peek(tmp, size);
462         pnp_register_dma_resource(dev, option, tmp[0], tmp[1]);
463 }
464
465 /*
466  *  Add port resource to resources list.
467  */
468 static void __init isapnp_parse_port_resource(struct pnp_dev *dev,
469                                               struct pnp_option *option,
470                                               int size)
471 {
472         unsigned char tmp[7];
473         resource_size_t min, max, align, len;
474         unsigned char flags;
475
476         isapnp_peek(tmp, size);
477         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);
483 }
484
485 /*
486  *  Add fixed port resource to resources list.
487  */
488 static void __init isapnp_parse_fixed_port_resource(struct pnp_dev *dev,
489                                                     struct pnp_option *option,
490                                                     int size)
491 {
492         unsigned char tmp[3];
493         resource_size_t base, len;
494
495         isapnp_peek(tmp, size);
496         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);
500 }
501
502 /*
503  *  Add memory resource to resources list.
504  */
505 static void __init isapnp_parse_mem_resource(struct pnp_dev *dev,
506                                              struct pnp_option *option,
507                                              int size)
508 {
509         unsigned char tmp[9];
510         resource_size_t min, max, align, len;
511         unsigned char flags;
512
513         isapnp_peek(tmp, size);
514         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);
520 }
521
522 /*
523  *  Add 32-bit memory resource to resources list.
524  */
525 static void __init isapnp_parse_mem32_resource(struct pnp_dev *dev,
526                                                struct pnp_option *option,
527                                                int size)
528 {
529         unsigned char tmp[17];
530         resource_size_t min, max, align, len;
531         unsigned char flags;
532
533         isapnp_peek(tmp, size);
534         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);
540 }
541
542 /*
543  *  Add 32-bit fixed memory resource to resources list.
544  */
545 static void __init isapnp_parse_fixed_mem32_resource(struct pnp_dev *dev,
546                                                      struct pnp_option *option,
547                                                      int size)
548 {
549         unsigned char tmp[9];
550         resource_size_t base, len;
551         unsigned char flags;
552
553         isapnp_peek(tmp, size);
554         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);
558 }
559
560 /*
561  *  Parse card name for ISA PnP device.
562  */
563 static void __init
564 isapnp_parse_name(char *name, unsigned int name_max, unsigned short *size)
565 {
566         if (name[0] == '\0') {
567                 unsigned short size1 =
568                     *size >= name_max ? (name_max - 1) : *size;
569                 isapnp_peek(name, size1);
570                 name[size1] = '\0';
571                 *size -= size1;
572
573                 /* clean whitespace from end of string */
574                 while (size1 > 0 && name[--size1] == ' ')
575                         name[size1] = '\0';
576         }
577 }
578
579 /*
580  *  Parse resource map for logical device.
581  */
582 static int __init isapnp_create_device(struct pnp_card *card,
583                                        unsigned short size)
584 {
585         int number = 0, skip = 0, priority, compat = 0;
586         unsigned char type, tmp[17];
587         struct pnp_option *option, *option_independent;
588         struct pnp_dev *dev;
589         u32 eisa_id;
590         char id[8];
591
592         if ((dev = isapnp_parse_device(card, size, number++)) == NULL)
593                 return 1;
594         option_independent = option = pnp_register_independent_option(dev);
595         if (!option) {
596                 kfree(dev);
597                 return 1;
598         }
599         pnp_add_card_device(card, dev);
600
601         while (1) {
602                 if (isapnp_read_tag(&type, &size) < 0)
603                         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) {
609                                 if ((dev =
610                                      isapnp_parse_device(card, size,
611                                                          number++)) == NULL)
612                                         return 1;
613                                 size = 0;
614                                 skip = 0;
615                                 option = pnp_register_independent_option(dev);
616                                 option_independent = option;
617                                 if (!option) {
618                                         kfree(dev);
619                                         return 1;
620                                 }
621                                 pnp_add_card_device(card, dev);
622                         } else {
623                                 skip = 1;
624                         }
625                         compat = 0;
626                         break;
627                 case _STAG_COMPATDEVID:
628                         if (size == 4 && compat < DEVICE_COUNT_COMPATIBLE) {
629                                 isapnp_peek(tmp, 4);
630                                 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);
634                                 compat++;
635                                 size = 0;
636                         }
637                         break;
638                 case _STAG_IRQ:
639                         if (size < 2 || size > 3)
640                                 goto __skip;
641                         isapnp_parse_irq_resource(dev, option, size);
642                         size = 0;
643                         break;
644                 case _STAG_DMA:
645                         if (size != 2)
646                                 goto __skip;
647                         isapnp_parse_dma_resource(dev, option, size);
648                         size = 0;
649                         break;
650                 case _STAG_STARTDEP:
651                         if (size > 1)
652                                 goto __skip;
653                         priority = PNP_RES_PRIORITY_ACCEPTABLE;
654                         if (size > 0) {
655                                 isapnp_peek(tmp, size);
656                                 priority = tmp[0];
657                                 size = 0;
658                         }
659                         option = pnp_register_dependent_option(dev, priority);
660                         if (!option)
661                                 return 1;
662                         break;
663                 case _STAG_ENDDEP:
664                         if (size != 0)
665                                 goto __skip;
666                         if (option_independent == option)
667                                 dev_warn(&dev->dev, "missing "
668                                          "_STAG_STARTDEP tag\n");
669                         option = option_independent;
670                         dev_dbg(&dev->dev, "end dependent options\n");
671                         break;
672                 case _STAG_IOPORT:
673                         if (size != 7)
674                                 goto __skip;
675                         isapnp_parse_port_resource(dev, option, size);
676                         size = 0;
677                         break;
678                 case _STAG_FIXEDIO:
679                         if (size != 3)
680                                 goto __skip;
681                         isapnp_parse_fixed_port_resource(dev, option, size);
682                         size = 0;
683                         break;
684                 case _STAG_VENDOR:
685                         break;
686                 case _LTAG_MEMRANGE:
687                         if (size != 9)
688                                 goto __skip;
689                         isapnp_parse_mem_resource(dev, option, size);
690                         size = 0;
691                         break;
692                 case _LTAG_ANSISTR:
693                         isapnp_parse_name(dev->name, sizeof(dev->name), &size);
694                         break;
695                 case _LTAG_UNICODESTR:
696                         /* silently ignore */
697                         /* who use unicode for hardware identification? */
698                         break;
699                 case _LTAG_VENDOR:
700                         break;
701                 case _LTAG_MEM32RANGE:
702                         if (size != 17)
703                                 goto __skip;
704                         isapnp_parse_mem32_resource(dev, option, size);
705                         size = 0;
706                         break;
707                 case _LTAG_FIXEDMEM32RANGE:
708                         if (size != 9)
709                                 goto __skip;
710                         isapnp_parse_fixed_mem32_resource(dev, option, size);
711                         size = 0;
712                         break;
713                 case _STAG_END:
714                         if (size > 0)
715                                 isapnp_skip_bytes(size);
716                         return 1;
717                 default:
718                         dev_err(&dev->dev, "unknown tag %#x (card %i), "
719                                 "ignored\n", type, card->number);
720                 }
721 __skip:
722                 if (size > 0)
723                         isapnp_skip_bytes(size);
724         }
725         return 0;
726 }
727
728 /*
729  *  Parse resource map for ISA PnP card.
730  */
731 static void __init isapnp_parse_resource_map(struct pnp_card *card)
732 {
733         unsigned char type, tmp[17];
734         unsigned short size;
735
736         while (1) {
737                 if (isapnp_read_tag(&type, &size) < 0)
738                         return;
739                 switch (type) {
740                 case _STAG_PNPVERNO:
741                         if (size != 2)
742                                 goto __skip;
743                         isapnp_peek(tmp, 2);
744                         card->pnpver = tmp[0];
745                         card->productver = tmp[1];
746                         size = 0;
747                         break;
748                 case _STAG_LOGDEVID:
749                         if (size >= 5 && size <= 6) {
750                                 if (isapnp_create_device(card, size) == 1)
751                                         return;
752                                 size = 0;
753                         }
754                         break;
755                 case _STAG_VENDOR:
756                         break;
757                 case _LTAG_ANSISTR:
758                         isapnp_parse_name(card->name, sizeof(card->name),
759                                           &size);
760                         break;
761                 case _LTAG_UNICODESTR:
762                         /* silently ignore */
763                         /* who use unicode for hardware identification? */
764                         break;
765                 case _LTAG_VENDOR:
766                         break;
767                 case _STAG_END:
768                         if (size > 0)
769                                 isapnp_skip_bytes(size);
770                         return;
771                 default:
772                         dev_err(&card->dev, "unknown tag %#x, ignored\n",
773                                type);
774                 }
775 __skip:
776                 if (size > 0)
777                         isapnp_skip_bytes(size);
778         }
779 }
780
781 /*
782  *  Compute ISA PnP checksum for first eight bytes.
783  */
784 static unsigned char __init isapnp_checksum(unsigned char *data)
785 {
786         int i, j;
787         unsigned char checksum = 0x6a, bit, b;
788
789         for (i = 0; i < 8; i++) {
790                 b = data[i];
791                 for (j = 0; j < 8; j++) {
792                         bit = 0;
793                         if (b & (1 << j))
794                                 bit = 1;
795                         checksum =
796                             ((((checksum ^ (checksum >> 1)) & 0x01) ^ bit) << 7)
797                             | (checksum >> 1);
798                 }
799         }
800         return checksum;
801 }
802
803 /*
804  *  Build device list for all present ISA PnP devices.
805  */
806 static int __init isapnp_build_device_list(void)
807 {
808         int csn;
809         unsigned char header[9], checksum;
810         struct pnp_card *card;
811         u32 eisa_id;
812         char id[8];
813
814         isapnp_wait();
815         isapnp_key();
816         for (csn = 1; csn <= isapnp_csn_count; csn++) {
817                 isapnp_wake(csn);
818                 isapnp_peek(header, 9);
819                 checksum = isapnp_checksum(header);
820                 eisa_id = header[0] | header[1] << 8 |
821                           header[2] << 16 | header[3] << 24;
822                 pnp_eisa_id_to_string(eisa_id, id);
823                 card = pnp_alloc_card(&isapnp_protocol, csn, id);
824                 if (!card)
825                         continue;
826
827 #if 0
828                 dev_info(&card->dev,
829                        "vendor: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
830                        header[0], header[1], header[2], header[3], header[4],
831                        header[5], header[6], header[7], header[8]);
832                 dev_info(&card->dev, "checksum = %#x\n", checksum);
833 #endif
834                 INIT_LIST_HEAD(&card->devices);
835                 card->serial =
836                     (header[7] << 24) | (header[6] << 16) | (header[5] << 8) |
837                     header[4];
838                 isapnp_checksum_value = 0x00;
839                 isapnp_parse_resource_map(card);
840                 if (isapnp_checksum_value != 0x00)
841                         dev_err(&card->dev, "invalid checksum %#x\n",
842                                 isapnp_checksum_value);
843                 card->checksum = isapnp_checksum_value;
844
845                 pnp_add_card(card);
846         }
847         isapnp_wait();
848         return 0;
849 }
850
851 /*
852  *  Basic configuration routines.
853  */
854
855 int isapnp_present(void)
856 {
857         struct pnp_card *card;
858
859         pnp_for_each_card(card) {
860                 if (card->protocol == &isapnp_protocol)
861                         return 1;
862         }
863         return 0;
864 }
865
866 int isapnp_cfg_begin(int csn, int logdev)
867 {
868         if (csn < 1 || csn > isapnp_csn_count || logdev > 10)
869                 return -EINVAL;
870         mutex_lock(&isapnp_cfg_mutex);
871         isapnp_wait();
872         isapnp_key();
873         isapnp_wake(csn);
874 #if 0
875         /* to avoid malfunction when the isapnptools package is used */
876         /* we must set RDP to our value again */
877         /* it is possible to set RDP only in the isolation phase */
878         /*   Jens Thoms Toerring <Jens.Toerring@physik.fu-berlin.de> */
879         isapnp_write_byte(0x02, 0x04);  /* clear CSN of card */
880         mdelay(2);              /* is this necessary? */
881         isapnp_wake(csn);       /* bring card into sleep state */
882         isapnp_wake(0);         /* bring card into isolation state */
883         isapnp_set_rdp();       /* reset the RDP port */
884         udelay(1000);           /* delay 1000us */
885         isapnp_write_byte(0x06, csn);   /* reset CSN to previous value */
886         udelay(250);            /* is this necessary? */
887 #endif
888         if (logdev >= 0)
889                 isapnp_device(logdev);
890         return 0;
891 }
892
893 int isapnp_cfg_end(void)
894 {
895         isapnp_wait();
896         mutex_unlock(&isapnp_cfg_mutex);
897         return 0;
898 }
899
900 /*
901  *  Initialization.
902  */
903
904 EXPORT_SYMBOL(isapnp_protocol);
905 EXPORT_SYMBOL(isapnp_present);
906 EXPORT_SYMBOL(isapnp_cfg_begin);
907 EXPORT_SYMBOL(isapnp_cfg_end);
908 EXPORT_SYMBOL(isapnp_write_byte);
909
910 static int isapnp_get_resources(struct pnp_dev *dev)
911 {
912         int i, ret;
913
914         dev_dbg(&dev->dev, "get resources\n");
915         pnp_init_resources(dev);
916         isapnp_cfg_begin(dev->card->number, dev->number);
917         dev->active = isapnp_read_byte(ISAPNP_CFG_ACTIVATE);
918         if (!dev->active)
919                 goto __end;
920
921         for (i = 0; i < ISAPNP_MAX_PORT; i++) {
922                 ret = isapnp_read_word(ISAPNP_CFG_PORT + (i << 1));
923                 pnp_add_io_resource(dev, ret, ret,
924                                     ret == 0 ? IORESOURCE_DISABLED : 0);
925         }
926         for (i = 0; i < ISAPNP_MAX_MEM; i++) {
927                 ret = isapnp_read_word(ISAPNP_CFG_MEM + (i << 3)) << 8;
928                 pnp_add_mem_resource(dev, ret, ret,
929                                      ret == 0 ? IORESOURCE_DISABLED : 0);
930         }
931         for (i = 0; i < ISAPNP_MAX_IRQ; i++) {
932                 ret = isapnp_read_word(ISAPNP_CFG_IRQ + (i << 1)) >> 8;
933                 pnp_add_irq_resource(dev, ret,
934                                      ret == 0 ? IORESOURCE_DISABLED : 0);
935         }
936         for (i = 0; i < ISAPNP_MAX_DMA; i++) {
937                 ret = isapnp_read_byte(ISAPNP_CFG_DMA + i);
938                 pnp_add_dma_resource(dev, ret,
939                                      ret == 4 ? IORESOURCE_DISABLED : 0);
940         }
941
942 __end:
943         isapnp_cfg_end();
944         return 0;
945 }
946
947 static int isapnp_set_resources(struct pnp_dev *dev)
948 {
949         struct resource *res;
950         int tmp;
951
952         dev_dbg(&dev->dev, "set resources\n");
953         isapnp_cfg_begin(dev->card->number, dev->number);
954         dev->active = 1;
955         for (tmp = 0; tmp < ISAPNP_MAX_PORT; tmp++) {
956                 res = pnp_get_resource(dev, IORESOURCE_IO, tmp);
957                 if (pnp_resource_enabled(res)) {
958                         dev_dbg(&dev->dev, "  set io  %d to %#llx\n",
959                                 tmp, (unsigned long long) res->start);
960                         isapnp_write_word(ISAPNP_CFG_PORT + (tmp << 1),
961                                           res->start);
962                 }
963         }
964         for (tmp = 0; tmp < ISAPNP_MAX_IRQ; tmp++) {
965                 res = pnp_get_resource(dev, IORESOURCE_IRQ, tmp);
966                 if (pnp_resource_enabled(res)) {
967                         int irq = res->start;
968                         if (irq == 2)
969                                 irq = 9;
970                         dev_dbg(&dev->dev, "  set irq %d to %d\n", tmp, irq);
971                         isapnp_write_byte(ISAPNP_CFG_IRQ + (tmp << 1), irq);
972                 }
973         }
974         for (tmp = 0; tmp < ISAPNP_MAX_DMA; tmp++) {
975                 res = pnp_get_resource(dev, IORESOURCE_DMA, tmp);
976                 if (pnp_resource_enabled(res)) {
977                         dev_dbg(&dev->dev, "  set dma %d to %lld\n",
978                                 tmp, (unsigned long long) res->start);
979                         isapnp_write_byte(ISAPNP_CFG_DMA + tmp, res->start);
980                 }
981         }
982         for (tmp = 0; tmp < ISAPNP_MAX_MEM; tmp++) {
983                 res = pnp_get_resource(dev, IORESOURCE_MEM, tmp);
984                 if (pnp_resource_enabled(res)) {
985                         dev_dbg(&dev->dev, "  set mem %d to %#llx\n",
986                                 tmp, (unsigned long long) res->start);
987                         isapnp_write_word(ISAPNP_CFG_MEM + (tmp << 3),
988                                           (res->start >> 8) & 0xffff);
989                 }
990         }
991         /* FIXME: We aren't handling 32bit mems properly here */
992         isapnp_activate(dev->number);
993         isapnp_cfg_end();
994         return 0;
995 }
996
997 static int isapnp_disable_resources(struct pnp_dev *dev)
998 {
999         if (!dev->active)
1000                 return -EINVAL;
1001         isapnp_cfg_begin(dev->card->number, dev->number);
1002         isapnp_deactivate(dev->number);
1003         dev->active = 0;
1004         isapnp_cfg_end();
1005         return 0;
1006 }
1007
1008 struct pnp_protocol isapnp_protocol = {
1009         .name = "ISA Plug and Play",
1010         .get = isapnp_get_resources,
1011         .set = isapnp_set_resources,
1012         .disable = isapnp_disable_resources,
1013 };
1014
1015 static int __init isapnp_init(void)
1016 {
1017         int cards;
1018         struct pnp_card *card;
1019         struct pnp_dev *dev;
1020
1021         if (isapnp_disable) {
1022                 printk(KERN_INFO "isapnp: ISA Plug & Play support disabled\n");
1023                 return 0;
1024         }
1025 #ifdef CONFIG_PPC_MERGE
1026         if (check_legacy_ioport(_PIDXR) || check_legacy_ioport(_PNPWRP))
1027                 return -EINVAL;
1028 #endif
1029 #ifdef ISAPNP_REGION_OK
1030         if (!request_region(_PIDXR, 1, "isapnp index")) {
1031                 printk(KERN_ERR "isapnp: Index Register 0x%x already used\n",
1032                        _PIDXR);
1033                 return -EBUSY;
1034         }
1035 #endif
1036         if (!request_region(_PNPWRP, 1, "isapnp write")) {
1037                 printk(KERN_ERR
1038                        "isapnp: Write Data Register 0x%x already used\n",
1039                        _PNPWRP);
1040 #ifdef ISAPNP_REGION_OK
1041                 release_region(_PIDXR, 1);
1042 #endif
1043                 return -EBUSY;
1044         }
1045
1046         if (pnp_register_protocol(&isapnp_protocol) < 0)
1047                 return -EBUSY;
1048
1049         /*
1050          *      Print a message. The existing ISAPnP code is hanging machines
1051          *      so let the user know where.
1052          */
1053
1054         printk(KERN_INFO "isapnp: Scanning for PnP cards...\n");
1055         if (isapnp_rdp >= 0x203 && isapnp_rdp <= 0x3ff) {
1056                 isapnp_rdp |= 3;
1057                 if (!request_region(isapnp_rdp, 1, "isapnp read")) {
1058                         printk(KERN_ERR
1059                                "isapnp: Read Data Register 0x%x already used\n",
1060                                isapnp_rdp);
1061 #ifdef ISAPNP_REGION_OK
1062                         release_region(_PIDXR, 1);
1063 #endif
1064                         release_region(_PNPWRP, 1);
1065                         return -EBUSY;
1066                 }
1067                 isapnp_set_rdp();
1068         }
1069         if (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff) {
1070                 cards = isapnp_isolate();
1071                 if (cards < 0 || (isapnp_rdp < 0x203 || isapnp_rdp > 0x3ff)) {
1072 #ifdef ISAPNP_REGION_OK
1073                         release_region(_PIDXR, 1);
1074 #endif
1075                         release_region(_PNPWRP, 1);
1076                         printk(KERN_INFO
1077                                "isapnp: No Plug & Play device found\n");
1078                         return 0;
1079                 }
1080                 request_region(isapnp_rdp, 1, "isapnp read");
1081         }
1082         isapnp_build_device_list();
1083         cards = 0;
1084
1085         protocol_for_each_card(&isapnp_protocol, card) {
1086                 cards++;
1087                 if (isapnp_verbose) {
1088                         dev_info(&card->dev, "card '%s'\n",
1089                                card->name[0] ? card->name : "unknown");
1090                         if (isapnp_verbose < 2)
1091                                 continue;
1092                         card_for_each_dev(card, dev) {
1093                                 dev_info(&card->dev, "device '%s'\n",
1094                                        dev->name[0] ? dev->name : "unknown");
1095                         }
1096                 }
1097         }
1098         if (cards)
1099                 printk(KERN_INFO
1100                        "isapnp: %i Plug & Play card%s detected total\n", cards,
1101                        cards > 1 ? "s" : "");
1102         else
1103                 printk(KERN_INFO "isapnp: No Plug & Play card found\n");
1104
1105         isapnp_proc_init();
1106         return 0;
1107 }
1108
1109 device_initcall(isapnp_init);
1110
1111 /* format is: noisapnp */
1112
1113 static int __init isapnp_setup_disable(char *str)
1114 {
1115         isapnp_disable = 1;
1116         return 1;
1117 }
1118
1119 __setup("noisapnp", isapnp_setup_disable);
1120
1121 /* format is: isapnp=rdp,reset,skip_pci_scan,verbose */
1122
1123 static int __init isapnp_setup_isapnp(char *str)
1124 {
1125         (void)((get_option(&str, &isapnp_rdp) == 2) &&
1126                (get_option(&str, &isapnp_reset) == 2) &&
1127                (get_option(&str, &isapnp_verbose) == 2));
1128         return 1;
1129 }
1130
1131 __setup("isapnp=", isapnp_setup_isapnp);