368367ced62bbbdc26b35845acde878d05689ca2
[safe/jmp/linux-2.6] / drivers / pcmcia / cistpl.c
1 /*
2  * cistpl.c -- 16-bit PCMCIA Card Information Structure parser
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * The initial developer of the original code is David A. Hinds
9  * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
10  * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
11  *
12  * (C) 1999             David A. Hinds
13  */
14
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/kernel.h>
18 #include <linux/string.h>
19 #include <linux/major.h>
20 #include <linux/errno.h>
21 #include <linux/timer.h>
22 #include <linux/slab.h>
23 #include <linux/mm.h>
24 #include <linux/pci.h>
25 #include <linux/ioport.h>
26 #include <linux/io.h>
27 #include <asm/byteorder.h>
28 #include <asm/unaligned.h>
29
30 #include <pcmcia/cs_types.h>
31 #include <pcmcia/ss.h>
32 #include <pcmcia/cs.h>
33 #include <pcmcia/cisreg.h>
34 #include <pcmcia/cistpl.h>
35 #include "cs_internal.h"
36
37 static const u_char mantissa[] = {
38     10, 12, 13, 15, 20, 25, 30, 35,
39     40, 45, 50, 55, 60, 70, 80, 90
40 };
41
42 static const u_int exponent[] = {
43     1, 10, 100, 1000, 10000, 100000, 1000000, 10000000
44 };
45
46 /* Convert an extended speed byte to a time in nanoseconds */
47 #define SPEED_CVT(v) \
48     (mantissa[(((v)>>3)&15)-1] * exponent[(v)&7] / 10)
49 /* Convert a power byte to a current in 0.1 microamps */
50 #define POWER_CVT(v) \
51     (mantissa[((v)>>3)&15] * exponent[(v)&7] / 10)
52 #define POWER_SCALE(v)          (exponent[(v)&7])
53
54 /* Upper limit on reasonable # of tuples */
55 #define MAX_TUPLES              200
56
57 /*====================================================================*/
58
59 /* Parameters that can be set with 'insmod' */
60
61 /* 16-bit CIS? */
62 static int cis_width;
63 module_param(cis_width, int, 0444);
64
65 void release_cis_mem(struct pcmcia_socket *s)
66 {
67     if (s->cis_mem.flags & MAP_ACTIVE) {
68         s->cis_mem.flags &= ~MAP_ACTIVE;
69         s->ops->set_mem_map(s, &s->cis_mem);
70         if (s->cis_mem.res) {
71             release_resource(s->cis_mem.res);
72             kfree(s->cis_mem.res);
73             s->cis_mem.res = NULL;
74         }
75         iounmap(s->cis_virt);
76         s->cis_virt = NULL;
77     }
78 }
79 EXPORT_SYMBOL(release_cis_mem);
80
81 /*
82  * Map the card memory at "card_offset" into virtual space.
83  * If flags & MAP_ATTRIB, map the attribute space, otherwise
84  * map the memory space.
85  */
86 static void __iomem *
87 set_cis_map(struct pcmcia_socket *s, unsigned int card_offset, unsigned int flags)
88 {
89         pccard_mem_map *mem = &s->cis_mem;
90         int ret;
91
92         if (!(s->features & SS_CAP_STATIC_MAP) && (mem->res == NULL)) {
93                 mem->res = pcmcia_find_mem_region(0, s->map_size, s->map_size, 0, s);
94                 if (mem->res == NULL) {
95                         dev_printk(KERN_NOTICE, &s->dev,
96                                    "cs: unable to map card memory!\n");
97                         return NULL;
98                 }
99                 s->cis_virt = NULL;
100         }
101
102         if (!(s->features & SS_CAP_STATIC_MAP) && (!s->cis_virt))
103                 s->cis_virt = ioremap(mem->res->start, s->map_size);
104
105         mem->card_start = card_offset;
106         mem->flags = flags;
107
108         ret = s->ops->set_mem_map(s, mem);
109         if (ret) {
110                 iounmap(s->cis_virt);
111                 s->cis_virt = NULL;
112                 return NULL;
113         }
114
115         if (s->features & SS_CAP_STATIC_MAP) {
116                 if (s->cis_virt)
117                         iounmap(s->cis_virt);
118                 s->cis_virt = ioremap(mem->static_start, s->map_size);
119         }
120
121         return s->cis_virt;
122 }
123
124 /*======================================================================
125
126     Low-level functions to read and write CIS memory.  I think the
127     write routine is only useful for writing one-byte registers.
128
129 ======================================================================*/
130
131 /* Bits in attr field */
132 #define IS_ATTR         1
133 #define IS_INDIRECT     8
134
135 int pcmcia_read_cis_mem(struct pcmcia_socket *s, int attr, u_int addr,
136                  u_int len, void *ptr)
137 {
138     void __iomem *sys, *end;
139     unsigned char *buf = ptr;
140
141     dev_dbg(&s->dev, "pcmcia_read_cis_mem(%d, %#x, %u)\n", attr, addr, len);
142
143     if (attr & IS_INDIRECT) {
144         /* Indirect accesses use a bunch of special registers at fixed
145            locations in common memory */
146         u_char flags = ICTRL0_COMMON|ICTRL0_AUTOINC|ICTRL0_BYTEGRAN;
147         if (attr & IS_ATTR) {
148             addr *= 2;
149             flags = ICTRL0_AUTOINC;
150         }
151
152         sys = set_cis_map(s, 0, MAP_ACTIVE | ((cis_width) ? MAP_16BIT : 0));
153         if (!sys) {
154             memset(ptr, 0xff, len);
155             return -1;
156         }
157
158         writeb(flags, sys+CISREG_ICTRL0);
159         writeb(addr & 0xff, sys+CISREG_IADDR0);
160         writeb((addr>>8) & 0xff, sys+CISREG_IADDR1);
161         writeb((addr>>16) & 0xff, sys+CISREG_IADDR2);
162         writeb((addr>>24) & 0xff, sys+CISREG_IADDR3);
163         for ( ; len > 0; len--, buf++)
164             *buf = readb(sys+CISREG_IDATA0);
165     } else {
166         u_int inc = 1, card_offset, flags;
167
168         flags = MAP_ACTIVE | ((cis_width) ? MAP_16BIT : 0);
169         if (attr) {
170             flags |= MAP_ATTRIB;
171             inc++;
172             addr *= 2;
173         }
174
175         card_offset = addr & ~(s->map_size-1);
176         while (len) {
177             sys = set_cis_map(s, card_offset, flags);
178             if (!sys) {
179                 memset(ptr, 0xff, len);
180                 return -1;
181             }
182             end = sys + s->map_size;
183             sys = sys + (addr & (s->map_size-1));
184             for ( ; len > 0; len--, buf++, sys += inc) {
185                 if (sys == end)
186                     break;
187                 *buf = readb(sys);
188             }
189             card_offset += s->map_size;
190             addr = 0;
191         }
192     }
193     dev_dbg(&s->dev, "  %#2.2x %#2.2x %#2.2x %#2.2x ...\n",
194           *(u_char *)(ptr+0), *(u_char *)(ptr+1),
195           *(u_char *)(ptr+2), *(u_char *)(ptr+3));
196     return 0;
197 }
198 EXPORT_SYMBOL(pcmcia_read_cis_mem);
199
200
201 void pcmcia_write_cis_mem(struct pcmcia_socket *s, int attr, u_int addr,
202                    u_int len, void *ptr)
203 {
204     void __iomem *sys, *end;
205     unsigned char *buf = ptr;
206
207     dev_dbg(&s->dev, "pcmcia_write_cis_mem(%d, %#x, %u)\n", attr, addr, len);
208
209     if (attr & IS_INDIRECT) {
210         /* Indirect accesses use a bunch of special registers at fixed
211            locations in common memory */
212         u_char flags = ICTRL0_COMMON|ICTRL0_AUTOINC|ICTRL0_BYTEGRAN;
213         if (attr & IS_ATTR) {
214             addr *= 2;
215             flags = ICTRL0_AUTOINC;
216         }
217
218         sys = set_cis_map(s, 0, MAP_ACTIVE | ((cis_width) ? MAP_16BIT : 0));
219         if (!sys)
220                 return; /* FIXME: Error */
221
222         writeb(flags, sys+CISREG_ICTRL0);
223         writeb(addr & 0xff, sys+CISREG_IADDR0);
224         writeb((addr>>8) & 0xff, sys+CISREG_IADDR1);
225         writeb((addr>>16) & 0xff, sys+CISREG_IADDR2);
226         writeb((addr>>24) & 0xff, sys+CISREG_IADDR3);
227         for ( ; len > 0; len--, buf++)
228             writeb(*buf, sys+CISREG_IDATA0);
229     } else {
230         u_int inc = 1, card_offset, flags;
231
232         flags = MAP_ACTIVE | ((cis_width) ? MAP_16BIT : 0);
233         if (attr & IS_ATTR) {
234             flags |= MAP_ATTRIB;
235             inc++;
236             addr *= 2;
237         }
238
239         card_offset = addr & ~(s->map_size-1);
240         while (len) {
241             sys = set_cis_map(s, card_offset, flags);
242             if (!sys)
243                 return; /* FIXME: error */
244
245             end = sys + s->map_size;
246             sys = sys + (addr & (s->map_size-1));
247             for ( ; len > 0; len--, buf++, sys += inc) {
248                 if (sys == end)
249                     break;
250                 writeb(*buf, sys);
251             }
252             card_offset += s->map_size;
253             addr = 0;
254         }
255     }
256 }
257 EXPORT_SYMBOL(pcmcia_write_cis_mem);
258
259
260 /*======================================================================
261
262     This is a wrapper around read_cis_mem, with the same interface,
263     but which caches information, for cards whose CIS may not be
264     readable all the time.
265
266 ======================================================================*/
267
268 static void read_cis_cache(struct pcmcia_socket *s, int attr, u_int addr,
269                            size_t len, void *ptr)
270 {
271         struct cis_cache_entry *cis;
272         int ret;
273
274         if (s->state & SOCKET_CARDBUS)
275                 return;
276
277         if (s->fake_cis) {
278                 if (s->fake_cis_len >= addr+len)
279                         memcpy(ptr, s->fake_cis+addr, len);
280                 else
281                         memset(ptr, 0xff, len);
282                 return;
283         }
284
285         list_for_each_entry(cis, &s->cis_cache, node) {
286                 if (cis->addr == addr && cis->len == len && cis->attr == attr) {
287                         memcpy(ptr, cis->cache, len);
288                         return;
289                 }
290         }
291
292         ret = pcmcia_read_cis_mem(s, attr, addr, len, ptr);
293
294         if (ret == 0) {
295                 /* Copy data into the cache */
296                 cis = kmalloc(sizeof(struct cis_cache_entry) + len, GFP_KERNEL);
297                 if (cis) {
298                         cis->addr = addr;
299                         cis->len = len;
300                         cis->attr = attr;
301                         memcpy(cis->cache, ptr, len);
302                         list_add(&cis->node, &s->cis_cache);
303                 }
304         }
305 }
306
307 static void
308 remove_cis_cache(struct pcmcia_socket *s, int attr, u_int addr, u_int len)
309 {
310         struct cis_cache_entry *cis;
311
312         list_for_each_entry(cis, &s->cis_cache, node)
313                 if (cis->addr == addr && cis->len == len && cis->attr == attr) {
314                         list_del(&cis->node);
315                         kfree(cis);
316                         break;
317                 }
318 }
319
320 /**
321  * destroy_cis_cache() - destroy the CIS cache
322  * @s:          pcmcia_socket for which CIS cache shall be destroyed
323  *
324  * This destroys the CIS cache but keeps any fake CIS alive.
325  */
326
327 void destroy_cis_cache(struct pcmcia_socket *s)
328 {
329         struct list_head *l, *n;
330         struct cis_cache_entry *cis;
331
332         list_for_each_safe(l, n, &s->cis_cache) {
333                 cis = list_entry(l, struct cis_cache_entry, node);
334                 list_del(&cis->node);
335                 kfree(cis);
336         }
337 }
338 EXPORT_SYMBOL(destroy_cis_cache);
339
340 /*======================================================================
341
342     This verifies if the CIS of a card matches what is in the CIS
343     cache.
344
345 ======================================================================*/
346
347 int verify_cis_cache(struct pcmcia_socket *s)
348 {
349         struct cis_cache_entry *cis;
350         char *buf;
351
352         if (s->state & SOCKET_CARDBUS)
353                 return -EINVAL;
354
355         buf = kmalloc(256, GFP_KERNEL);
356         if (buf == NULL) {
357                 dev_printk(KERN_WARNING, &s->dev,
358                            "no memory for verifying CIS\n");
359                 return -ENOMEM;
360         }
361         list_for_each_entry(cis, &s->cis_cache, node) {
362                 int len = cis->len;
363
364                 if (len > 256)
365                         len = 256;
366
367                 pcmcia_read_cis_mem(s, cis->attr, cis->addr, len, buf);
368
369                 if (memcmp(buf, cis->cache, len) != 0) {
370                         kfree(buf);
371                         return -1;
372                 }
373         }
374         kfree(buf);
375         return 0;
376 }
377 EXPORT_SYMBOL(verify_cis_cache);
378
379 /*======================================================================
380
381     For really bad cards, we provide a facility for uploading a
382     replacement CIS.
383
384 ======================================================================*/
385
386 int pcmcia_replace_cis(struct pcmcia_socket *s,
387                        const u8 *data, const size_t len)
388 {
389         if (len > CISTPL_MAX_CIS_SIZE) {
390                 dev_printk(KERN_WARNING, &s->dev, "replacement CIS too big\n");
391                 return -EINVAL;
392         }
393         kfree(s->fake_cis);
394         s->fake_cis = kmalloc(len, GFP_KERNEL);
395         if (s->fake_cis == NULL) {
396                 dev_printk(KERN_WARNING, &s->dev, "no memory to replace CIS\n");
397                 return -ENOMEM;
398         }
399         s->fake_cis_len = len;
400         memcpy(s->fake_cis, data, len);
401         return 0;
402 }
403 EXPORT_SYMBOL(pcmcia_replace_cis);
404
405 /*======================================================================
406
407     The high-level CIS tuple services
408
409 ======================================================================*/
410
411 typedef struct tuple_flags {
412     u_int               link_space:4;
413     u_int               has_link:1;
414     u_int               mfc_fn:3;
415     u_int               space:4;
416 } tuple_flags;
417
418 #define LINK_SPACE(f)   (((tuple_flags *)(&(f)))->link_space)
419 #define HAS_LINK(f)     (((tuple_flags *)(&(f)))->has_link)
420 #define MFC_FN(f)       (((tuple_flags *)(&(f)))->mfc_fn)
421 #define SPACE(f)        (((tuple_flags *)(&(f)))->space)
422
423 int pccard_get_first_tuple(struct pcmcia_socket *s, unsigned int function, tuple_t *tuple)
424 {
425     if (!s)
426         return -EINVAL;
427
428     if (!(s->state & SOCKET_PRESENT) || (s->state & SOCKET_CARDBUS))
429         return -ENODEV;
430     tuple->TupleLink = tuple->Flags = 0;
431
432     /* Assume presence of a LONGLINK_C to address 0 */
433     tuple->CISOffset = tuple->LinkOffset = 0;
434     SPACE(tuple->Flags) = HAS_LINK(tuple->Flags) = 1;
435
436     if ((s->functions > 1) && !(tuple->Attributes & TUPLE_RETURN_COMMON)) {
437         cisdata_t req = tuple->DesiredTuple;
438         tuple->DesiredTuple = CISTPL_LONGLINK_MFC;
439         if (pccard_get_next_tuple(s, function, tuple) == 0) {
440             tuple->DesiredTuple = CISTPL_LINKTARGET;
441             if (pccard_get_next_tuple(s, function, tuple) != 0)
442                 return -ENOSPC;
443         } else
444             tuple->CISOffset = tuple->TupleLink = 0;
445         tuple->DesiredTuple = req;
446     }
447     return pccard_get_next_tuple(s, function, tuple);
448 }
449 EXPORT_SYMBOL(pccard_get_first_tuple);
450
451 static int follow_link(struct pcmcia_socket *s, tuple_t *tuple)
452 {
453     u_char link[5];
454     u_int ofs;
455
456     if (MFC_FN(tuple->Flags)) {
457         /* Get indirect link from the MFC tuple */
458         read_cis_cache(s, LINK_SPACE(tuple->Flags),
459                        tuple->LinkOffset, 5, link);
460         ofs = get_unaligned_le32(link + 1);
461         SPACE(tuple->Flags) = (link[0] == CISTPL_MFC_ATTR);
462         /* Move to the next indirect link */
463         tuple->LinkOffset += 5;
464         MFC_FN(tuple->Flags)--;
465     } else if (HAS_LINK(tuple->Flags)) {
466         ofs = tuple->LinkOffset;
467         SPACE(tuple->Flags) = LINK_SPACE(tuple->Flags);
468         HAS_LINK(tuple->Flags) = 0;
469     } else {
470         return -1;
471     }
472     if (SPACE(tuple->Flags)) {
473         /* This is ugly, but a common CIS error is to code the long
474            link offset incorrectly, so we check the right spot... */
475         read_cis_cache(s, SPACE(tuple->Flags), ofs, 5, link);
476         if ((link[0] == CISTPL_LINKTARGET) && (link[1] >= 3) &&
477             (strncmp(link+2, "CIS", 3) == 0))
478             return ofs;
479         remove_cis_cache(s, SPACE(tuple->Flags), ofs, 5);
480         /* Then, we try the wrong spot... */
481         ofs = ofs >> 1;
482     }
483     read_cis_cache(s, SPACE(tuple->Flags), ofs, 5, link);
484     if ((link[0] == CISTPL_LINKTARGET) && (link[1] >= 3) &&
485         (strncmp(link+2, "CIS", 3) == 0))
486         return ofs;
487     remove_cis_cache(s, SPACE(tuple->Flags), ofs, 5);
488     return -1;
489 }
490
491 int pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int function, tuple_t *tuple)
492 {
493     u_char link[2], tmp;
494     int ofs, i, attr;
495
496     if (!s)
497         return -EINVAL;
498     if (!(s->state & SOCKET_PRESENT) || (s->state & SOCKET_CARDBUS))
499         return -ENODEV;
500
501     link[1] = tuple->TupleLink;
502     ofs = tuple->CISOffset + tuple->TupleLink;
503     attr = SPACE(tuple->Flags);
504
505     for (i = 0; i < MAX_TUPLES; i++) {
506         if (link[1] == 0xff) {
507             link[0] = CISTPL_END;
508         } else {
509             read_cis_cache(s, attr, ofs, 2, link);
510             if (link[0] == CISTPL_NULL) {
511                 ofs++; continue;
512             }
513         }
514
515         /* End of chain?  Follow long link if possible */
516         if (link[0] == CISTPL_END) {
517             ofs = follow_link(s, tuple);
518             if (ofs < 0)
519                 return -ENOSPC;
520             attr = SPACE(tuple->Flags);
521             read_cis_cache(s, attr, ofs, 2, link);
522         }
523
524         /* Is this a link tuple?  Make a note of it */
525         if ((link[0] == CISTPL_LONGLINK_A) ||
526             (link[0] == CISTPL_LONGLINK_C) ||
527             (link[0] == CISTPL_LONGLINK_MFC) ||
528             (link[0] == CISTPL_LINKTARGET) ||
529             (link[0] == CISTPL_INDIRECT) ||
530             (link[0] == CISTPL_NO_LINK)) {
531             switch (link[0]) {
532             case CISTPL_LONGLINK_A:
533                 HAS_LINK(tuple->Flags) = 1;
534                 LINK_SPACE(tuple->Flags) = attr | IS_ATTR;
535                 read_cis_cache(s, attr, ofs+2, 4, &tuple->LinkOffset);
536                 break;
537             case CISTPL_LONGLINK_C:
538                 HAS_LINK(tuple->Flags) = 1;
539                 LINK_SPACE(tuple->Flags) = attr & ~IS_ATTR;
540                 read_cis_cache(s, attr, ofs+2, 4, &tuple->LinkOffset);
541                 break;
542             case CISTPL_INDIRECT:
543                 HAS_LINK(tuple->Flags) = 1;
544                 LINK_SPACE(tuple->Flags) = IS_ATTR | IS_INDIRECT;
545                 tuple->LinkOffset = 0;
546                 break;
547             case CISTPL_LONGLINK_MFC:
548                 tuple->LinkOffset = ofs + 3;
549                 LINK_SPACE(tuple->Flags) = attr;
550                 if (function == BIND_FN_ALL) {
551                     /* Follow all the MFC links */
552                     read_cis_cache(s, attr, ofs+2, 1, &tmp);
553                     MFC_FN(tuple->Flags) = tmp;
554                 } else {
555                     /* Follow exactly one of the links */
556                     MFC_FN(tuple->Flags) = 1;
557                     tuple->LinkOffset += function * 5;
558                 }
559                 break;
560             case CISTPL_NO_LINK:
561                 HAS_LINK(tuple->Flags) = 0;
562                 break;
563             }
564             if ((tuple->Attributes & TUPLE_RETURN_LINK) &&
565                 (tuple->DesiredTuple == RETURN_FIRST_TUPLE))
566                 break;
567         } else
568             if (tuple->DesiredTuple == RETURN_FIRST_TUPLE)
569                 break;
570
571         if (link[0] == tuple->DesiredTuple)
572             break;
573         ofs += link[1] + 2;
574     }
575     if (i == MAX_TUPLES) {
576         dev_dbg(&s->dev, "cs: overrun in pcmcia_get_next_tuple\n");
577         return -ENOSPC;
578     }
579
580     tuple->TupleCode = link[0];
581     tuple->TupleLink = link[1];
582     tuple->CISOffset = ofs + 2;
583     return 0;
584 }
585 EXPORT_SYMBOL(pccard_get_next_tuple);
586
587 /*====================================================================*/
588
589 #define _MIN(a, b)              (((a) < (b)) ? (a) : (b))
590
591 int pccard_get_tuple_data(struct pcmcia_socket *s, tuple_t *tuple)
592 {
593     u_int len;
594
595     if (!s)
596         return -EINVAL;
597
598     if (tuple->TupleLink < tuple->TupleOffset)
599         return -ENOSPC;
600     len = tuple->TupleLink - tuple->TupleOffset;
601     tuple->TupleDataLen = tuple->TupleLink;
602     if (len == 0)
603         return 0;
604     read_cis_cache(s, SPACE(tuple->Flags),
605                    tuple->CISOffset + tuple->TupleOffset,
606                    _MIN(len, tuple->TupleDataMax), tuple->TupleData);
607     return 0;
608 }
609 EXPORT_SYMBOL(pccard_get_tuple_data);
610
611
612 /*======================================================================
613
614     Parsing routines for individual tuples
615
616 ======================================================================*/
617
618 static int parse_device(tuple_t *tuple, cistpl_device_t *device)
619 {
620     int i;
621     u_char scale;
622     u_char *p, *q;
623
624     p = (u_char *)tuple->TupleData;
625     q = p + tuple->TupleDataLen;
626
627     device->ndev = 0;
628     for (i = 0; i < CISTPL_MAX_DEVICES; i++) {
629
630         if (*p == 0xff)
631                 break;
632         device->dev[i].type = (*p >> 4);
633         device->dev[i].wp = (*p & 0x08) ? 1 : 0;
634         switch (*p & 0x07) {
635         case 0:
636                 device->dev[i].speed = 0;
637                 break;
638         case 1:
639                 device->dev[i].speed = 250;
640                 break;
641         case 2:
642                 device->dev[i].speed = 200;
643                 break;
644         case 3:
645                 device->dev[i].speed = 150;
646                 break;
647         case 4:
648                 device->dev[i].speed = 100;
649                 break;
650         case 7:
651                 if (++p == q)
652                         return -EINVAL;
653                 device->dev[i].speed = SPEED_CVT(*p);
654                 while (*p & 0x80)
655                         if (++p == q)
656                                 return -EINVAL;
657                 break;
658         default:
659                 return -EINVAL;
660         }
661
662         if (++p == q)
663                 return -EINVAL;
664         if (*p == 0xff)
665                 break;
666         scale = *p & 7;
667         if (scale == 7)
668                 return -EINVAL;
669         device->dev[i].size = ((*p >> 3) + 1) * (512 << (scale*2));
670         device->ndev++;
671         if (++p == q)
672                 break;
673     }
674
675     return 0;
676 }
677
678 /*====================================================================*/
679
680 static int parse_checksum(tuple_t *tuple, cistpl_checksum_t *csum)
681 {
682     u_char *p;
683     if (tuple->TupleDataLen < 5)
684         return -EINVAL;
685     p = (u_char *) tuple->TupleData;
686     csum->addr = tuple->CISOffset + get_unaligned_le16(p) - 2;
687     csum->len = get_unaligned_le16(p + 2);
688     csum->sum = *(p + 4);
689     return 0;
690 }
691
692 /*====================================================================*/
693
694 static int parse_longlink(tuple_t *tuple, cistpl_longlink_t *link)
695 {
696     if (tuple->TupleDataLen < 4)
697         return -EINVAL;
698     link->addr = get_unaligned_le32(tuple->TupleData);
699     return 0;
700 }
701
702 /*====================================================================*/
703
704 static int parse_longlink_mfc(tuple_t *tuple,
705                               cistpl_longlink_mfc_t *link)
706 {
707     u_char *p;
708     int i;
709
710     p = (u_char *)tuple->TupleData;
711
712     link->nfn = *p; p++;
713     if (tuple->TupleDataLen <= link->nfn*5)
714         return -EINVAL;
715     for (i = 0; i < link->nfn; i++) {
716         link->fn[i].space = *p; p++;
717         link->fn[i].addr = get_unaligned_le32(p);
718         p += 4;
719     }
720     return 0;
721 }
722
723 /*====================================================================*/
724
725 static int parse_strings(u_char *p, u_char *q, int max,
726                          char *s, u_char *ofs, u_char *found)
727 {
728     int i, j, ns;
729
730     if (p == q)
731             return -EINVAL;
732     ns = 0; j = 0;
733     for (i = 0; i < max; i++) {
734         if (*p == 0xff)
735                 break;
736         ofs[i] = j;
737         ns++;
738         for (;;) {
739             s[j++] = (*p == 0xff) ? '\0' : *p;
740             if ((*p == '\0') || (*p == 0xff))
741                     break;
742             if (++p == q)
743                     return -EINVAL;
744         }
745         if ((*p == 0xff) || (++p == q))
746                 break;
747     }
748     if (found) {
749         *found = ns;
750         return 0;
751     } else {
752         return (ns == max) ? 0 : -EINVAL;
753     }
754 }
755
756 /*====================================================================*/
757
758 static int parse_vers_1(tuple_t *tuple, cistpl_vers_1_t *vers_1)
759 {
760     u_char *p, *q;
761
762     p = (u_char *)tuple->TupleData;
763     q = p + tuple->TupleDataLen;
764
765     vers_1->major = *p; p++;
766     vers_1->minor = *p; p++;
767     if (p >= q)
768             return -EINVAL;
769
770     return parse_strings(p, q, CISTPL_VERS_1_MAX_PROD_STRINGS,
771                          vers_1->str, vers_1->ofs, &vers_1->ns);
772 }
773
774 /*====================================================================*/
775
776 static int parse_altstr(tuple_t *tuple, cistpl_altstr_t *altstr)
777 {
778     u_char *p, *q;
779
780     p = (u_char *)tuple->TupleData;
781     q = p + tuple->TupleDataLen;
782
783     return parse_strings(p, q, CISTPL_MAX_ALTSTR_STRINGS,
784                          altstr->str, altstr->ofs, &altstr->ns);
785 }
786
787 /*====================================================================*/
788
789 static int parse_jedec(tuple_t *tuple, cistpl_jedec_t *jedec)
790 {
791     u_char *p, *q;
792     int nid;
793
794     p = (u_char *)tuple->TupleData;
795     q = p + tuple->TupleDataLen;
796
797     for (nid = 0; nid < CISTPL_MAX_DEVICES; nid++) {
798         if (p > q-2)
799                 break;
800         jedec->id[nid].mfr = p[0];
801         jedec->id[nid].info = p[1];
802         p += 2;
803     }
804     jedec->nid = nid;
805     return 0;
806 }
807
808 /*====================================================================*/
809
810 static int parse_manfid(tuple_t *tuple, cistpl_manfid_t *m)
811 {
812     if (tuple->TupleDataLen < 4)
813         return -EINVAL;
814     m->manf = get_unaligned_le16(tuple->TupleData);
815     m->card = get_unaligned_le16(tuple->TupleData + 2);
816     return 0;
817 }
818
819 /*====================================================================*/
820
821 static int parse_funcid(tuple_t *tuple, cistpl_funcid_t *f)
822 {
823     u_char *p;
824     if (tuple->TupleDataLen < 2)
825         return -EINVAL;
826     p = (u_char *)tuple->TupleData;
827     f->func = p[0];
828     f->sysinit = p[1];
829     return 0;
830 }
831
832 /*====================================================================*/
833
834 static int parse_funce(tuple_t *tuple, cistpl_funce_t *f)
835 {
836     u_char *p;
837     int i;
838     if (tuple->TupleDataLen < 1)
839         return -EINVAL;
840     p = (u_char *)tuple->TupleData;
841     f->type = p[0];
842     for (i = 1; i < tuple->TupleDataLen; i++)
843         f->data[i-1] = p[i];
844     return 0;
845 }
846
847 /*====================================================================*/
848
849 static int parse_config(tuple_t *tuple, cistpl_config_t *config)
850 {
851     int rasz, rmsz, i;
852     u_char *p;
853
854     p = (u_char *)tuple->TupleData;
855     rasz = *p & 0x03;
856     rmsz = (*p & 0x3c) >> 2;
857     if (tuple->TupleDataLen < rasz+rmsz+4)
858         return -EINVAL;
859     config->last_idx = *(++p);
860     p++;
861     config->base = 0;
862     for (i = 0; i <= rasz; i++)
863         config->base += p[i] << (8*i);
864     p += rasz+1;
865     for (i = 0; i < 4; i++)
866         config->rmask[i] = 0;
867     for (i = 0; i <= rmsz; i++)
868         config->rmask[i>>2] += p[i] << (8*(i%4));
869     config->subtuples = tuple->TupleDataLen - (rasz+rmsz+4);
870     return 0;
871 }
872
873 /*======================================================================
874
875     The following routines are all used to parse the nightmarish
876     config table entries.
877
878 ======================================================================*/
879
880 static u_char *parse_power(u_char *p, u_char *q,
881                            cistpl_power_t *pwr)
882 {
883     int i;
884     u_int scale;
885
886     if (p == q)
887             return NULL;
888     pwr->present = *p;
889     pwr->flags = 0;
890     p++;
891     for (i = 0; i < 7; i++)
892         if (pwr->present & (1<<i)) {
893             if (p == q)
894                     return NULL;
895             pwr->param[i] = POWER_CVT(*p);
896             scale = POWER_SCALE(*p);
897             while (*p & 0x80) {
898                 if (++p == q)
899                         return NULL;
900                 if ((*p & 0x7f) < 100)
901                     pwr->param[i] += (*p & 0x7f) * scale / 100;
902                 else if (*p == 0x7d)
903                     pwr->flags |= CISTPL_POWER_HIGHZ_OK;
904                 else if (*p == 0x7e)
905                     pwr->param[i] = 0;
906                 else if (*p == 0x7f)
907                     pwr->flags |= CISTPL_POWER_HIGHZ_REQ;
908                 else
909                     return NULL;
910             }
911             p++;
912         }
913     return p;
914 }
915
916 /*====================================================================*/
917
918 static u_char *parse_timing(u_char *p, u_char *q,
919                             cistpl_timing_t *timing)
920 {
921     u_char scale;
922
923     if (p == q)
924             return NULL;
925     scale = *p;
926     if ((scale & 3) != 3) {
927         if (++p == q)
928                 return NULL;
929         timing->wait = SPEED_CVT(*p);
930         timing->waitscale = exponent[scale & 3];
931     } else
932         timing->wait = 0;
933     scale >>= 2;
934     if ((scale & 7) != 7) {
935         if (++p == q)
936                 return NULL;
937         timing->ready = SPEED_CVT(*p);
938         timing->rdyscale = exponent[scale & 7];
939     } else
940         timing->ready = 0;
941     scale >>= 3;
942     if (scale != 7) {
943         if (++p == q)
944                 return NULL;
945         timing->reserved = SPEED_CVT(*p);
946         timing->rsvscale = exponent[scale];
947     } else
948         timing->reserved = 0;
949     p++;
950     return p;
951 }
952
953 /*====================================================================*/
954
955 static u_char *parse_io(u_char *p, u_char *q, cistpl_io_t *io)
956 {
957     int i, j, bsz, lsz;
958
959     if (p == q)
960             return NULL;
961     io->flags = *p;
962
963     if (!(*p & 0x80)) {
964         io->nwin = 1;
965         io->win[0].base = 0;
966         io->win[0].len = (1 << (io->flags & CISTPL_IO_LINES_MASK));
967         return p+1;
968     }
969
970     if (++p == q)
971             return NULL;
972     io->nwin = (*p & 0x0f) + 1;
973     bsz = (*p & 0x30) >> 4;
974     if (bsz == 3)
975             bsz++;
976     lsz = (*p & 0xc0) >> 6;
977     if (lsz == 3)
978             lsz++;
979     p++;
980
981     for (i = 0; i < io->nwin; i++) {
982         io->win[i].base = 0;
983         io->win[i].len = 1;
984         for (j = 0; j < bsz; j++, p++) {
985             if (p == q)
986                     return NULL;
987             io->win[i].base += *p << (j*8);
988         }
989         for (j = 0; j < lsz; j++, p++) {
990             if (p == q)
991                     return NULL;
992             io->win[i].len += *p << (j*8);
993         }
994     }
995     return p;
996 }
997
998 /*====================================================================*/
999
1000 static u_char *parse_mem(u_char *p, u_char *q, cistpl_mem_t *mem)
1001 {
1002     int i, j, asz, lsz, has_ha;
1003     u_int len, ca, ha;
1004
1005     if (p == q)
1006             return NULL;
1007
1008     mem->nwin = (*p & 0x07) + 1;
1009     lsz = (*p & 0x18) >> 3;
1010     asz = (*p & 0x60) >> 5;
1011     has_ha = (*p & 0x80);
1012     if (++p == q)
1013             return NULL;
1014
1015     for (i = 0; i < mem->nwin; i++) {
1016         len = ca = ha = 0;
1017         for (j = 0; j < lsz; j++, p++) {
1018             if (p == q)
1019                     return NULL;
1020             len += *p << (j*8);
1021         }
1022         for (j = 0; j < asz; j++, p++) {
1023             if (p == q)
1024                     return NULL;
1025             ca += *p << (j*8);
1026         }
1027         if (has_ha)
1028             for (j = 0; j < asz; j++, p++) {
1029                 if (p == q)
1030                         return NULL;
1031                 ha += *p << (j*8);
1032             }
1033         mem->win[i].len = len << 8;
1034         mem->win[i].card_addr = ca << 8;
1035         mem->win[i].host_addr = ha << 8;
1036     }
1037     return p;
1038 }
1039
1040 /*====================================================================*/
1041
1042 static u_char *parse_irq(u_char *p, u_char *q, cistpl_irq_t *irq)
1043 {
1044     if (p == q)
1045             return NULL;
1046     irq->IRQInfo1 = *p; p++;
1047     if (irq->IRQInfo1 & IRQ_INFO2_VALID) {
1048         if (p+2 > q)
1049                 return NULL;
1050         irq->IRQInfo2 = (p[1]<<8) + p[0];
1051         p += 2;
1052     }
1053     return p;
1054 }
1055
1056 /*====================================================================*/
1057
1058 static int parse_cftable_entry(tuple_t *tuple,
1059                                cistpl_cftable_entry_t *entry)
1060 {
1061     u_char *p, *q, features;
1062
1063     p = tuple->TupleData;
1064     q = p + tuple->TupleDataLen;
1065     entry->index = *p & 0x3f;
1066     entry->flags = 0;
1067     if (*p & 0x40)
1068         entry->flags |= CISTPL_CFTABLE_DEFAULT;
1069     if (*p & 0x80) {
1070         if (++p == q)
1071                 return -EINVAL;
1072         if (*p & 0x10)
1073             entry->flags |= CISTPL_CFTABLE_BVDS;
1074         if (*p & 0x20)
1075             entry->flags |= CISTPL_CFTABLE_WP;
1076         if (*p & 0x40)
1077             entry->flags |= CISTPL_CFTABLE_RDYBSY;
1078         if (*p & 0x80)
1079             entry->flags |= CISTPL_CFTABLE_MWAIT;
1080         entry->interface = *p & 0x0f;
1081     } else
1082         entry->interface = 0;
1083
1084     /* Process optional features */
1085     if (++p == q)
1086             return -EINVAL;
1087     features = *p; p++;
1088
1089     /* Power options */
1090     if ((features & 3) > 0) {
1091         p = parse_power(p, q, &entry->vcc);
1092         if (p == NULL)
1093                 return -EINVAL;
1094     } else
1095         entry->vcc.present = 0;
1096     if ((features & 3) > 1) {
1097         p = parse_power(p, q, &entry->vpp1);
1098         if (p == NULL)
1099                 return -EINVAL;
1100     } else
1101         entry->vpp1.present = 0;
1102     if ((features & 3) > 2) {
1103         p = parse_power(p, q, &entry->vpp2);
1104         if (p == NULL)
1105                 return -EINVAL;
1106     } else
1107         entry->vpp2.present = 0;
1108
1109     /* Timing options */
1110     if (features & 0x04) {
1111         p = parse_timing(p, q, &entry->timing);
1112         if (p == NULL)
1113                 return -EINVAL;
1114     } else {
1115         entry->timing.wait = 0;
1116         entry->timing.ready = 0;
1117         entry->timing.reserved = 0;
1118     }
1119
1120     /* I/O window options */
1121     if (features & 0x08) {
1122         p = parse_io(p, q, &entry->io);
1123         if (p == NULL)
1124                 return -EINVAL;
1125     } else
1126         entry->io.nwin = 0;
1127
1128     /* Interrupt options */
1129     if (features & 0x10) {
1130         p = parse_irq(p, q, &entry->irq);
1131         if (p == NULL)
1132                 return -EINVAL;
1133     } else
1134         entry->irq.IRQInfo1 = 0;
1135
1136     switch (features & 0x60) {
1137     case 0x00:
1138         entry->mem.nwin = 0;
1139         break;
1140     case 0x20:
1141         entry->mem.nwin = 1;
1142         entry->mem.win[0].len = get_unaligned_le16(p) << 8;
1143         entry->mem.win[0].card_addr = 0;
1144         entry->mem.win[0].host_addr = 0;
1145         p += 2;
1146         if (p > q)
1147                 return -EINVAL;
1148         break;
1149     case 0x40:
1150         entry->mem.nwin = 1;
1151         entry->mem.win[0].len = get_unaligned_le16(p) << 8;
1152         entry->mem.win[0].card_addr = get_unaligned_le16(p + 2) << 8;
1153         entry->mem.win[0].host_addr = 0;
1154         p += 4;
1155         if (p > q)
1156                 return -EINVAL;
1157         break;
1158     case 0x60:
1159         p = parse_mem(p, q, &entry->mem);
1160         if (p == NULL)
1161                 return -EINVAL;
1162         break;
1163     }
1164
1165     /* Misc features */
1166     if (features & 0x80) {
1167         if (p == q)
1168                 return -EINVAL;
1169         entry->flags |= (*p << 8);
1170         while (*p & 0x80)
1171             if (++p == q)
1172                     return -EINVAL;
1173         p++;
1174     }
1175
1176     entry->subtuples = q-p;
1177
1178     return 0;
1179 }
1180
1181 /*====================================================================*/
1182
1183 static int parse_device_geo(tuple_t *tuple, cistpl_device_geo_t *geo)
1184 {
1185     u_char *p, *q;
1186     int n;
1187
1188     p = (u_char *)tuple->TupleData;
1189     q = p + tuple->TupleDataLen;
1190
1191     for (n = 0; n < CISTPL_MAX_DEVICES; n++) {
1192         if (p > q-6)
1193                 break;
1194         geo->geo[n].buswidth = p[0];
1195         geo->geo[n].erase_block = 1 << (p[1]-1);
1196         geo->geo[n].read_block  = 1 << (p[2]-1);
1197         geo->geo[n].write_block = 1 << (p[3]-1);
1198         geo->geo[n].partition   = 1 << (p[4]-1);
1199         geo->geo[n].interleave  = 1 << (p[5]-1);
1200         p += 6;
1201     }
1202     geo->ngeo = n;
1203     return 0;
1204 }
1205
1206 /*====================================================================*/
1207
1208 static int parse_vers_2(tuple_t *tuple, cistpl_vers_2_t *v2)
1209 {
1210     u_char *p, *q;
1211
1212     if (tuple->TupleDataLen < 10)
1213         return -EINVAL;
1214
1215     p = tuple->TupleData;
1216     q = p + tuple->TupleDataLen;
1217
1218     v2->vers = p[0];
1219     v2->comply = p[1];
1220     v2->dindex = get_unaligned_le16(p + 2);
1221     v2->vspec8 = p[6];
1222     v2->vspec9 = p[7];
1223     v2->nhdr = p[8];
1224     p += 9;
1225     return parse_strings(p, q, 2, v2->str, &v2->vendor, NULL);
1226 }
1227
1228 /*====================================================================*/
1229
1230 static int parse_org(tuple_t *tuple, cistpl_org_t *org)
1231 {
1232     u_char *p, *q;
1233     int i;
1234
1235     p = tuple->TupleData;
1236     q = p + tuple->TupleDataLen;
1237     if (p == q)
1238             return -EINVAL;
1239     org->data_org = *p;
1240     if (++p == q)
1241             return -EINVAL;
1242     for (i = 0; i < 30; i++) {
1243         org->desc[i] = *p;
1244         if (*p == '\0')
1245                 break;
1246         if (++p == q)
1247                 return -EINVAL;
1248     }
1249     return 0;
1250 }
1251
1252 /*====================================================================*/
1253
1254 static int parse_format(tuple_t *tuple, cistpl_format_t *fmt)
1255 {
1256     u_char *p;
1257
1258     if (tuple->TupleDataLen < 10)
1259         return -EINVAL;
1260
1261     p = tuple->TupleData;
1262
1263     fmt->type = p[0];
1264     fmt->edc = p[1];
1265     fmt->offset = get_unaligned_le32(p + 2);
1266     fmt->length = get_unaligned_le32(p + 6);
1267
1268     return 0;
1269 }
1270
1271 /*====================================================================*/
1272
1273 int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse)
1274 {
1275     int ret = 0;
1276
1277     if (tuple->TupleDataLen > tuple->TupleDataMax)
1278         return -EINVAL;
1279     switch (tuple->TupleCode) {
1280     case CISTPL_DEVICE:
1281     case CISTPL_DEVICE_A:
1282         ret = parse_device(tuple, &parse->device);
1283         break;
1284     case CISTPL_CHECKSUM:
1285         ret = parse_checksum(tuple, &parse->checksum);
1286         break;
1287     case CISTPL_LONGLINK_A:
1288     case CISTPL_LONGLINK_C:
1289         ret = parse_longlink(tuple, &parse->longlink);
1290         break;
1291     case CISTPL_LONGLINK_MFC:
1292         ret = parse_longlink_mfc(tuple, &parse->longlink_mfc);
1293         break;
1294     case CISTPL_VERS_1:
1295         ret = parse_vers_1(tuple, &parse->version_1);
1296         break;
1297     case CISTPL_ALTSTR:
1298         ret = parse_altstr(tuple, &parse->altstr);
1299         break;
1300     case CISTPL_JEDEC_A:
1301     case CISTPL_JEDEC_C:
1302         ret = parse_jedec(tuple, &parse->jedec);
1303         break;
1304     case CISTPL_MANFID:
1305         ret = parse_manfid(tuple, &parse->manfid);
1306         break;
1307     case CISTPL_FUNCID:
1308         ret = parse_funcid(tuple, &parse->funcid);
1309         break;
1310     case CISTPL_FUNCE:
1311         ret = parse_funce(tuple, &parse->funce);
1312         break;
1313     case CISTPL_CONFIG:
1314         ret = parse_config(tuple, &parse->config);
1315         break;
1316     case CISTPL_CFTABLE_ENTRY:
1317         ret = parse_cftable_entry(tuple, &parse->cftable_entry);
1318         break;
1319     case CISTPL_DEVICE_GEO:
1320     case CISTPL_DEVICE_GEO_A:
1321         ret = parse_device_geo(tuple, &parse->device_geo);
1322         break;
1323     case CISTPL_VERS_2:
1324         ret = parse_vers_2(tuple, &parse->vers_2);
1325         break;
1326     case CISTPL_ORG:
1327         ret = parse_org(tuple, &parse->org);
1328         break;
1329     case CISTPL_FORMAT:
1330     case CISTPL_FORMAT_A:
1331         ret = parse_format(tuple, &parse->format);
1332         break;
1333     case CISTPL_NO_LINK:
1334     case CISTPL_LINKTARGET:
1335         ret = 0;
1336         break;
1337     default:
1338         ret = -EINVAL;
1339         break;
1340     }
1341     if (ret)
1342             pr_debug("parse_tuple failed %d\n", ret);
1343     return ret;
1344 }
1345 EXPORT_SYMBOL(pcmcia_parse_tuple);
1346
1347 /*======================================================================
1348
1349     This is used internally by Card Services to look up CIS stuff.
1350
1351 ======================================================================*/
1352
1353 int pccard_read_tuple(struct pcmcia_socket *s, unsigned int function, cisdata_t code, void *parse)
1354 {
1355     tuple_t tuple;
1356     cisdata_t *buf;
1357     int ret;
1358
1359     buf = kmalloc(256, GFP_KERNEL);
1360     if (buf == NULL) {
1361             dev_printk(KERN_WARNING, &s->dev, "no memory to read tuple\n");
1362             return -ENOMEM;
1363     }
1364     tuple.DesiredTuple = code;
1365     tuple.Attributes = 0;
1366     if (function == BIND_FN_ALL)
1367             tuple.Attributes = TUPLE_RETURN_COMMON;
1368     ret = pccard_get_first_tuple(s, function, &tuple);
1369     if (ret != 0)
1370             goto done;
1371     tuple.TupleData = buf;
1372     tuple.TupleOffset = 0;
1373     tuple.TupleDataMax = 255;
1374     ret = pccard_get_tuple_data(s, &tuple);
1375     if (ret != 0)
1376             goto done;
1377     ret = pcmcia_parse_tuple(&tuple, parse);
1378 done:
1379     kfree(buf);
1380     return ret;
1381 }
1382 EXPORT_SYMBOL(pccard_read_tuple);
1383
1384
1385 /**
1386  * pccard_loop_tuple() - loop over tuples in the CIS
1387  * @s:          the struct pcmcia_socket where the card is inserted
1388  * @function:   the device function we loop for
1389  * @code:       which CIS code shall we look for?
1390  * @parse:      buffer where the tuple shall be parsed (or NULL, if no parse)
1391  * @priv_data:  private data to be passed to the loop_tuple function.
1392  * @loop_tuple: function to call for each CIS entry of type @function. IT
1393  *              gets passed the raw tuple, the paresed tuple (if @parse is
1394  *              set) and @priv_data.
1395  *
1396  * pccard_loop_tuple() loops over all CIS entries of type @function, and
1397  * calls the @loop_tuple function for each entry. If the call to @loop_tuple
1398  * returns 0, the loop exits. Returns 0 on success or errorcode otherwise.
1399  */
1400 int pccard_loop_tuple(struct pcmcia_socket *s, unsigned int function,
1401                       cisdata_t code, cisparse_t *parse, void *priv_data,
1402                       int (*loop_tuple) (tuple_t *tuple,
1403                                          cisparse_t *parse,
1404                                          void *priv_data))
1405 {
1406         tuple_t tuple;
1407         cisdata_t *buf;
1408         int ret;
1409
1410         buf = kzalloc(256, GFP_KERNEL);
1411         if (buf == NULL) {
1412                 dev_printk(KERN_WARNING, &s->dev, "no memory to read tuple\n");
1413                 return -ENOMEM;
1414         }
1415
1416         tuple.TupleData = buf;
1417         tuple.TupleDataMax = 255;
1418         tuple.TupleOffset = 0;
1419         tuple.DesiredTuple = code;
1420         tuple.Attributes = 0;
1421
1422         ret = pccard_get_first_tuple(s, function, &tuple);
1423         while (!ret) {
1424                 if (pccard_get_tuple_data(s, &tuple))
1425                         goto next_entry;
1426
1427                 if (parse)
1428                         if (pcmcia_parse_tuple(&tuple, parse))
1429                                 goto next_entry;
1430
1431                 ret = loop_tuple(&tuple, parse, priv_data);
1432                 if (!ret)
1433                         break;
1434
1435 next_entry:
1436                 ret = pccard_get_next_tuple(s, function, &tuple);
1437         }
1438
1439         kfree(buf);
1440         return ret;
1441 }
1442 EXPORT_SYMBOL(pccard_loop_tuple);
1443
1444
1445 /**
1446  * pccard_validate_cis() - check whether card has a sensible CIS
1447  * @s:          the struct pcmcia_socket we are to check
1448  * @info:       returns the number of tuples in the (valid) CIS, or 0
1449  *
1450  * This tries to determine if a card has a sensible CIS.  In @info, it
1451  * returns the number of tuples in the CIS, or 0 if the CIS looks bad. The
1452  * checks include making sure several critical tuples are present and
1453  * valid; seeing if the total number of tuples is reasonable; and
1454  * looking for tuples that use reserved codes.
1455  *
1456  * The function returns 0 on success.
1457  */
1458 int pccard_validate_cis(struct pcmcia_socket *s, unsigned int *info)
1459 {
1460         tuple_t *tuple;
1461         cisparse_t *p;
1462         unsigned int count = 0;
1463         int ret, reserved, dev_ok = 0, ident_ok = 0;
1464
1465         if (!s)
1466                 return -EINVAL;
1467
1468         /* We do not want to validate the CIS cache... */
1469         destroy_cis_cache(s);
1470
1471         tuple = kmalloc(sizeof(*tuple), GFP_KERNEL);
1472         if (tuple == NULL) {
1473                 dev_warn(&s->dev, "no memory to validate CIS\n");
1474                 return -ENOMEM;
1475         }
1476         p = kmalloc(sizeof(*p), GFP_KERNEL);
1477         if (p == NULL) {
1478                 kfree(tuple);
1479                 dev_warn(&s->dev, "no memory to validate CIS\n");
1480                 return -ENOMEM;
1481         }
1482
1483         count = reserved = 0;
1484         tuple->DesiredTuple = RETURN_FIRST_TUPLE;
1485         tuple->Attributes = TUPLE_RETURN_COMMON;
1486         ret = pccard_get_first_tuple(s, BIND_FN_ALL, tuple);
1487         if (ret != 0)
1488                 goto done;
1489
1490         /* First tuple should be DEVICE; we should really have either that
1491            or a CFTABLE_ENTRY of some sort */
1492         if ((tuple->TupleCode == CISTPL_DEVICE) ||
1493             (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_CFTABLE_ENTRY, p)) ||
1494             (!pccard_read_tuple(s, BIND_FN_ALL, CISTPL_CFTABLE_ENTRY_CB, p)))
1495                 dev_ok++;
1496
1497         /* All cards should have a MANFID tuple, and/or a VERS_1 or VERS_2
1498            tuple, for card identification.  Certain old D-Link and Linksys
1499            cards have only a broken VERS_2 tuple; hence the bogus test. */
1500         if ((pccard_read_tuple(s, BIND_FN_ALL, CISTPL_MANFID, p) == 0) ||
1501             (pccard_read_tuple(s, BIND_FN_ALL, CISTPL_VERS_1, p) == 0) ||
1502             (pccard_read_tuple(s, BIND_FN_ALL, CISTPL_VERS_2, p) != -ENOSPC))
1503                 ident_ok++;
1504
1505         if (!dev_ok && !ident_ok)
1506                 goto done;
1507
1508         for (count = 1; count < MAX_TUPLES; count++) {
1509                 ret = pccard_get_next_tuple(s, BIND_FN_ALL, tuple);
1510                 if (ret != 0)
1511                         break;
1512                 if (((tuple->TupleCode > 0x23) && (tuple->TupleCode < 0x40)) ||
1513                     ((tuple->TupleCode > 0x47) && (tuple->TupleCode < 0x80)) ||
1514                     ((tuple->TupleCode > 0x90) && (tuple->TupleCode < 0xff)))
1515                         reserved++;
1516         }
1517         if ((count == MAX_TUPLES) || (reserved > 5) ||
1518                 ((!dev_ok || !ident_ok) && (count > 10)))
1519                 count = 0;
1520
1521         ret = 0;
1522
1523 done:
1524         /* invalidate CIS cache on failure */
1525         if (!dev_ok || !ident_ok || !count) {
1526                 destroy_cis_cache(s);
1527                 ret = -EIO;
1528         }
1529
1530         if (info)
1531                 *info = count;
1532         kfree(tuple);
1533         kfree(p);
1534         return ret;
1535 }
1536 EXPORT_SYMBOL(pccard_validate_cis);