2 * cistpl.c -- 16-bit PCMCIA Card Information Structure parser
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.
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.
12 * (C) 1999 David A. Hinds
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>
24 #include <linux/pci.h>
25 #include <linux/ioport.h>
27 #include <asm/byteorder.h>
28 #include <asm/unaligned.h>
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"
37 static const u_char mantissa
[] = {
38 10, 12, 13, 15, 20, 25, 30, 35,
39 40, 45, 50, 55, 60, 70, 80, 90
42 static const u_int exponent
[] = {
43 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000
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])
54 /* Upper limit on reasonable # of tuples */
55 #define MAX_TUPLES 200
57 /*====================================================================*/
59 /* Parameters that can be set with 'insmod' */
63 module_param(cis_width
, int, 0444);
65 void release_cis_mem(struct pcmcia_socket
*s
)
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
);
71 release_resource(s
->cis_mem
.res
);
72 kfree(s
->cis_mem
.res
);
73 s
->cis_mem
.res
= NULL
;
79 EXPORT_SYMBOL(release_cis_mem
);
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.
87 set_cis_map(struct pcmcia_socket
*s
, unsigned int card_offset
, unsigned int flags
)
89 pccard_mem_map
*mem
= &s
->cis_mem
;
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");
102 if (!(s
->features
& SS_CAP_STATIC_MAP
) && (!s
->cis_virt
))
103 s
->cis_virt
= ioremap(mem
->res
->start
, s
->map_size
);
105 mem
->card_start
= card_offset
;
108 ret
= s
->ops
->set_mem_map(s
, mem
);
110 iounmap(s
->cis_virt
);
115 if (s
->features
& SS_CAP_STATIC_MAP
) {
117 iounmap(s
->cis_virt
);
118 s
->cis_virt
= ioremap(mem
->static_start
, s
->map_size
);
124 /*======================================================================
126 Low-level functions to read and write CIS memory. I think the
127 write routine is only useful for writing one-byte registers.
129 ======================================================================*/
131 /* Bits in attr field */
133 #define IS_INDIRECT 8
135 int pcmcia_read_cis_mem(struct pcmcia_socket
*s
, int attr
, u_int addr
,
136 u_int len
, void *ptr
)
138 void __iomem
*sys
, *end
;
139 unsigned char *buf
= ptr
;
141 dev_dbg(&s
->dev
, "pcmcia_read_cis_mem(%d, %#x, %u)\n", attr
, addr
, len
);
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
) {
149 flags
= ICTRL0_AUTOINC
;
152 sys
= set_cis_map(s
, 0, MAP_ACTIVE
| ((cis_width
) ? MAP_16BIT
: 0));
154 memset(ptr
, 0xff, len
);
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
);
166 u_int inc
= 1, card_offset
, flags
;
168 flags
= MAP_ACTIVE
| ((cis_width
) ? MAP_16BIT
: 0);
175 card_offset
= addr
& ~(s
->map_size
-1);
177 sys
= set_cis_map(s
, card_offset
, flags
);
179 memset(ptr
, 0xff, len
);
182 end
= sys
+ s
->map_size
;
183 sys
= sys
+ (addr
& (s
->map_size
-1));
184 for ( ; len
> 0; len
--, buf
++, sys
+= inc
) {
189 card_offset
+= s
->map_size
;
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));
198 EXPORT_SYMBOL(pcmcia_read_cis_mem
);
201 void pcmcia_write_cis_mem(struct pcmcia_socket
*s
, int attr
, u_int addr
,
202 u_int len
, void *ptr
)
204 void __iomem
*sys
, *end
;
205 unsigned char *buf
= ptr
;
207 dev_dbg(&s
->dev
, "pcmcia_write_cis_mem(%d, %#x, %u)\n", attr
, addr
, len
);
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
) {
215 flags
= ICTRL0_AUTOINC
;
218 sys
= set_cis_map(s
, 0, MAP_ACTIVE
| ((cis_width
) ? MAP_16BIT
: 0));
220 return; /* FIXME: Error */
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
);
230 u_int inc
= 1, card_offset
, flags
;
232 flags
= MAP_ACTIVE
| ((cis_width
) ? MAP_16BIT
: 0);
233 if (attr
& IS_ATTR
) {
239 card_offset
= addr
& ~(s
->map_size
-1);
241 sys
= set_cis_map(s
, card_offset
, flags
);
243 return; /* FIXME: error */
245 end
= sys
+ s
->map_size
;
246 sys
= sys
+ (addr
& (s
->map_size
-1));
247 for ( ; len
> 0; len
--, buf
++, sys
+= inc
) {
252 card_offset
+= s
->map_size
;
257 EXPORT_SYMBOL(pcmcia_write_cis_mem
);
260 /*======================================================================
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.
266 ======================================================================*/
268 static void read_cis_cache(struct pcmcia_socket
*s
, int attr
, u_int addr
,
269 size_t len
, void *ptr
)
271 struct cis_cache_entry
*cis
;
275 if (s
->fake_cis_len
>= addr
+len
)
276 memcpy(ptr
, s
->fake_cis
+addr
, len
);
278 memset(ptr
, 0xff, len
);
282 list_for_each_entry(cis
, &s
->cis_cache
, node
) {
283 if (cis
->addr
== addr
&& cis
->len
== len
&& cis
->attr
== attr
) {
284 memcpy(ptr
, cis
->cache
, len
);
289 #ifdef CONFIG_CARDBUS
290 if (s
->state
& SOCKET_CARDBUS
)
291 ret
= read_cb_mem(s
, attr
, addr
, len
, ptr
);
294 ret
= pcmcia_read_cis_mem(s
, attr
, addr
, len
, ptr
);
297 /* Copy data into the cache */
298 cis
= kmalloc(sizeof(struct cis_cache_entry
) + len
, GFP_KERNEL
);
303 memcpy(cis
->cache
, ptr
, len
);
304 list_add(&cis
->node
, &s
->cis_cache
);
310 remove_cis_cache(struct pcmcia_socket
*s
, int attr
, u_int addr
, u_int len
)
312 struct cis_cache_entry
*cis
;
314 list_for_each_entry(cis
, &s
->cis_cache
, node
)
315 if (cis
->addr
== addr
&& cis
->len
== len
&& cis
->attr
== attr
) {
316 list_del(&cis
->node
);
322 void destroy_cis_cache(struct pcmcia_socket
*s
)
324 struct list_head
*l
, *n
;
326 list_for_each_safe(l
, n
, &s
->cis_cache
) {
327 struct cis_cache_entry
*cis
= list_entry(l
, struct cis_cache_entry
, node
);
329 list_del(&cis
->node
);
334 * If there was a fake CIS, destroy that as well.
339 EXPORT_SYMBOL(destroy_cis_cache
);
341 /*======================================================================
343 This verifies if the CIS of a card matches what is in the CIS
346 ======================================================================*/
348 int verify_cis_cache(struct pcmcia_socket
*s
)
350 struct cis_cache_entry
*cis
;
353 buf
= kmalloc(256, GFP_KERNEL
);
355 dev_printk(KERN_WARNING
, &s
->dev
,
356 "no memory for verifying CIS\n");
359 list_for_each_entry(cis
, &s
->cis_cache
, node
) {
364 #ifdef CONFIG_CARDBUS
365 if (s
->state
& SOCKET_CARDBUS
)
366 read_cb_mem(s
, cis
->attr
, cis
->addr
, len
, buf
);
369 pcmcia_read_cis_mem(s
, cis
->attr
, cis
->addr
, len
, buf
);
371 if (memcmp(buf
, cis
->cache
, len
) != 0) {
380 /*======================================================================
382 For really bad cards, we provide a facility for uploading a
385 ======================================================================*/
387 int pcmcia_replace_cis(struct pcmcia_socket
*s
,
388 const u8
*data
, const size_t len
)
390 if (len
> CISTPL_MAX_CIS_SIZE
) {
391 dev_printk(KERN_WARNING
, &s
->dev
, "replacement CIS too big\n");
395 s
->fake_cis
= kmalloc(len
, GFP_KERNEL
);
396 if (s
->fake_cis
== NULL
) {
397 dev_printk(KERN_WARNING
, &s
->dev
, "no memory to replace CIS\n");
400 s
->fake_cis_len
= len
;
401 memcpy(s
->fake_cis
, data
, len
);
404 EXPORT_SYMBOL(pcmcia_replace_cis
);
406 /*======================================================================
408 The high-level CIS tuple services
410 ======================================================================*/
412 typedef struct tuple_flags
{
419 #define LINK_SPACE(f) (((tuple_flags *)(&(f)))->link_space)
420 #define HAS_LINK(f) (((tuple_flags *)(&(f)))->has_link)
421 #define MFC_FN(f) (((tuple_flags *)(&(f)))->mfc_fn)
422 #define SPACE(f) (((tuple_flags *)(&(f)))->space)
424 int pccard_get_first_tuple(struct pcmcia_socket
*s
, unsigned int function
, tuple_t
*tuple
)
428 if (!(s
->state
& SOCKET_PRESENT
))
430 tuple
->TupleLink
= tuple
->Flags
= 0;
431 #ifdef CONFIG_CARDBUS
432 if (s
->state
& SOCKET_CARDBUS
) {
433 struct pci_dev
*dev
= s
->cb_dev
;
435 pci_bus_read_config_dword(dev
->subordinate
, 0, PCI_CARDBUS_CIS
, &ptr
);
436 tuple
->CISOffset
= ptr
& ~7;
437 SPACE(tuple
->Flags
) = (ptr
& 7);
441 /* Assume presence of a LONGLINK_C to address 0 */
442 tuple
->CISOffset
= tuple
->LinkOffset
= 0;
443 SPACE(tuple
->Flags
) = HAS_LINK(tuple
->Flags
) = 1;
445 if (!(s
->state
& SOCKET_CARDBUS
) && (s
->functions
> 1) &&
446 !(tuple
->Attributes
& TUPLE_RETURN_COMMON
)) {
447 cisdata_t req
= tuple
->DesiredTuple
;
448 tuple
->DesiredTuple
= CISTPL_LONGLINK_MFC
;
449 if (pccard_get_next_tuple(s
, function
, tuple
) == 0) {
450 tuple
->DesiredTuple
= CISTPL_LINKTARGET
;
451 if (pccard_get_next_tuple(s
, function
, tuple
) != 0)
454 tuple
->CISOffset
= tuple
->TupleLink
= 0;
455 tuple
->DesiredTuple
= req
;
457 return pccard_get_next_tuple(s
, function
, tuple
);
459 EXPORT_SYMBOL(pccard_get_first_tuple
);
461 static int follow_link(struct pcmcia_socket
*s
, tuple_t
*tuple
)
466 if (MFC_FN(tuple
->Flags
)) {
467 /* Get indirect link from the MFC tuple */
468 read_cis_cache(s
, LINK_SPACE(tuple
->Flags
),
469 tuple
->LinkOffset
, 5, link
);
470 ofs
= get_unaligned_le32(link
+ 1);
471 SPACE(tuple
->Flags
) = (link
[0] == CISTPL_MFC_ATTR
);
472 /* Move to the next indirect link */
473 tuple
->LinkOffset
+= 5;
474 MFC_FN(tuple
->Flags
)--;
475 } else if (HAS_LINK(tuple
->Flags
)) {
476 ofs
= tuple
->LinkOffset
;
477 SPACE(tuple
->Flags
) = LINK_SPACE(tuple
->Flags
);
478 HAS_LINK(tuple
->Flags
) = 0;
482 if (!(s
->state
& SOCKET_CARDBUS
) && SPACE(tuple
->Flags
)) {
483 /* This is ugly, but a common CIS error is to code the long
484 link offset incorrectly, so we check the right spot... */
485 read_cis_cache(s
, SPACE(tuple
->Flags
), ofs
, 5, link
);
486 if ((link
[0] == CISTPL_LINKTARGET
) && (link
[1] >= 3) &&
487 (strncmp(link
+2, "CIS", 3) == 0))
489 remove_cis_cache(s
, SPACE(tuple
->Flags
), ofs
, 5);
490 /* Then, we try the wrong spot... */
493 read_cis_cache(s
, SPACE(tuple
->Flags
), ofs
, 5, link
);
494 if ((link
[0] == CISTPL_LINKTARGET
) && (link
[1] >= 3) &&
495 (strncmp(link
+2, "CIS", 3) == 0))
497 remove_cis_cache(s
, SPACE(tuple
->Flags
), ofs
, 5);
501 int pccard_get_next_tuple(struct pcmcia_socket
*s
, unsigned int function
, tuple_t
*tuple
)
508 if (!(s
->state
& SOCKET_PRESENT
))
511 link
[1] = tuple
->TupleLink
;
512 ofs
= tuple
->CISOffset
+ tuple
->TupleLink
;
513 attr
= SPACE(tuple
->Flags
);
515 for (i
= 0; i
< MAX_TUPLES
; i
++) {
516 if (link
[1] == 0xff) {
517 link
[0] = CISTPL_END
;
519 read_cis_cache(s
, attr
, ofs
, 2, link
);
520 if (link
[0] == CISTPL_NULL
) {
525 /* End of chain? Follow long link if possible */
526 if (link
[0] == CISTPL_END
) {
527 ofs
= follow_link(s
, tuple
);
530 attr
= SPACE(tuple
->Flags
);
531 read_cis_cache(s
, attr
, ofs
, 2, link
);
534 /* Is this a link tuple? Make a note of it */
535 if ((link
[0] == CISTPL_LONGLINK_A
) ||
536 (link
[0] == CISTPL_LONGLINK_C
) ||
537 (link
[0] == CISTPL_LONGLINK_MFC
) ||
538 (link
[0] == CISTPL_LINKTARGET
) ||
539 (link
[0] == CISTPL_INDIRECT
) ||
540 (link
[0] == CISTPL_NO_LINK
)) {
542 case CISTPL_LONGLINK_A
:
543 HAS_LINK(tuple
->Flags
) = 1;
544 LINK_SPACE(tuple
->Flags
) = attr
| IS_ATTR
;
545 read_cis_cache(s
, attr
, ofs
+2, 4, &tuple
->LinkOffset
);
547 case CISTPL_LONGLINK_C
:
548 HAS_LINK(tuple
->Flags
) = 1;
549 LINK_SPACE(tuple
->Flags
) = attr
& ~IS_ATTR
;
550 read_cis_cache(s
, attr
, ofs
+2, 4, &tuple
->LinkOffset
);
552 case CISTPL_INDIRECT
:
553 HAS_LINK(tuple
->Flags
) = 1;
554 LINK_SPACE(tuple
->Flags
) = IS_ATTR
| IS_INDIRECT
;
555 tuple
->LinkOffset
= 0;
557 case CISTPL_LONGLINK_MFC
:
558 tuple
->LinkOffset
= ofs
+ 3;
559 LINK_SPACE(tuple
->Flags
) = attr
;
560 if (function
== BIND_FN_ALL
) {
561 /* Follow all the MFC links */
562 read_cis_cache(s
, attr
, ofs
+2, 1, &tmp
);
563 MFC_FN(tuple
->Flags
) = tmp
;
565 /* Follow exactly one of the links */
566 MFC_FN(tuple
->Flags
) = 1;
567 tuple
->LinkOffset
+= function
* 5;
571 HAS_LINK(tuple
->Flags
) = 0;
574 if ((tuple
->Attributes
& TUPLE_RETURN_LINK
) &&
575 (tuple
->DesiredTuple
== RETURN_FIRST_TUPLE
))
578 if (tuple
->DesiredTuple
== RETURN_FIRST_TUPLE
)
581 if (link
[0] == tuple
->DesiredTuple
)
585 if (i
== MAX_TUPLES
) {
586 dev_dbg(&s
->dev
, "cs: overrun in pcmcia_get_next_tuple\n");
590 tuple
->TupleCode
= link
[0];
591 tuple
->TupleLink
= link
[1];
592 tuple
->CISOffset
= ofs
+ 2;
595 EXPORT_SYMBOL(pccard_get_next_tuple
);
597 /*====================================================================*/
599 #define _MIN(a, b) (((a) < (b)) ? (a) : (b))
601 int pccard_get_tuple_data(struct pcmcia_socket
*s
, tuple_t
*tuple
)
608 if (tuple
->TupleLink
< tuple
->TupleOffset
)
610 len
= tuple
->TupleLink
- tuple
->TupleOffset
;
611 tuple
->TupleDataLen
= tuple
->TupleLink
;
614 read_cis_cache(s
, SPACE(tuple
->Flags
),
615 tuple
->CISOffset
+ tuple
->TupleOffset
,
616 _MIN(len
, tuple
->TupleDataMax
), tuple
->TupleData
);
619 EXPORT_SYMBOL(pccard_get_tuple_data
);
622 /*======================================================================
624 Parsing routines for individual tuples
626 ======================================================================*/
628 static int parse_device(tuple_t
*tuple
, cistpl_device_t
*device
)
634 p
= (u_char
*)tuple
->TupleData
;
635 q
= p
+ tuple
->TupleDataLen
;
638 for (i
= 0; i
< CISTPL_MAX_DEVICES
; i
++) {
642 device
->dev
[i
].type
= (*p
>> 4);
643 device
->dev
[i
].wp
= (*p
& 0x08) ? 1 : 0;
646 device
->dev
[i
].speed
= 0;
649 device
->dev
[i
].speed
= 250;
652 device
->dev
[i
].speed
= 200;
655 device
->dev
[i
].speed
= 150;
658 device
->dev
[i
].speed
= 100;
663 device
->dev
[i
].speed
= SPEED_CVT(*p
);
679 device
->dev
[i
].size
= ((*p
>> 3) + 1) * (512 << (scale
*2));
688 /*====================================================================*/
690 static int parse_checksum(tuple_t
*tuple
, cistpl_checksum_t
*csum
)
693 if (tuple
->TupleDataLen
< 5)
695 p
= (u_char
*) tuple
->TupleData
;
696 csum
->addr
= tuple
->CISOffset
+ get_unaligned_le16(p
) - 2;
697 csum
->len
= get_unaligned_le16(p
+ 2);
698 csum
->sum
= *(p
+ 4);
702 /*====================================================================*/
704 static int parse_longlink(tuple_t
*tuple
, cistpl_longlink_t
*link
)
706 if (tuple
->TupleDataLen
< 4)
708 link
->addr
= get_unaligned_le32(tuple
->TupleData
);
712 /*====================================================================*/
714 static int parse_longlink_mfc(tuple_t
*tuple
,
715 cistpl_longlink_mfc_t
*link
)
720 p
= (u_char
*)tuple
->TupleData
;
723 if (tuple
->TupleDataLen
<= link
->nfn
*5)
725 for (i
= 0; i
< link
->nfn
; i
++) {
726 link
->fn
[i
].space
= *p
; p
++;
727 link
->fn
[i
].addr
= get_unaligned_le32(p
);
733 /*====================================================================*/
735 static int parse_strings(u_char
*p
, u_char
*q
, int max
,
736 char *s
, u_char
*ofs
, u_char
*found
)
743 for (i
= 0; i
< max
; i
++) {
749 s
[j
++] = (*p
== 0xff) ? '\0' : *p
;
750 if ((*p
== '\0') || (*p
== 0xff))
755 if ((*p
== 0xff) || (++p
== q
))
762 return (ns
== max
) ? 0 : -EINVAL
;
766 /*====================================================================*/
768 static int parse_vers_1(tuple_t
*tuple
, cistpl_vers_1_t
*vers_1
)
772 p
= (u_char
*)tuple
->TupleData
;
773 q
= p
+ tuple
->TupleDataLen
;
775 vers_1
->major
= *p
; p
++;
776 vers_1
->minor
= *p
; p
++;
780 return parse_strings(p
, q
, CISTPL_VERS_1_MAX_PROD_STRINGS
,
781 vers_1
->str
, vers_1
->ofs
, &vers_1
->ns
);
784 /*====================================================================*/
786 static int parse_altstr(tuple_t
*tuple
, cistpl_altstr_t
*altstr
)
790 p
= (u_char
*)tuple
->TupleData
;
791 q
= p
+ tuple
->TupleDataLen
;
793 return parse_strings(p
, q
, CISTPL_MAX_ALTSTR_STRINGS
,
794 altstr
->str
, altstr
->ofs
, &altstr
->ns
);
797 /*====================================================================*/
799 static int parse_jedec(tuple_t
*tuple
, cistpl_jedec_t
*jedec
)
804 p
= (u_char
*)tuple
->TupleData
;
805 q
= p
+ tuple
->TupleDataLen
;
807 for (nid
= 0; nid
< CISTPL_MAX_DEVICES
; nid
++) {
810 jedec
->id
[nid
].mfr
= p
[0];
811 jedec
->id
[nid
].info
= p
[1];
818 /*====================================================================*/
820 static int parse_manfid(tuple_t
*tuple
, cistpl_manfid_t
*m
)
822 if (tuple
->TupleDataLen
< 4)
824 m
->manf
= get_unaligned_le16(tuple
->TupleData
);
825 m
->card
= get_unaligned_le16(tuple
->TupleData
+ 2);
829 /*====================================================================*/
831 static int parse_funcid(tuple_t
*tuple
, cistpl_funcid_t
*f
)
834 if (tuple
->TupleDataLen
< 2)
836 p
= (u_char
*)tuple
->TupleData
;
842 /*====================================================================*/
844 static int parse_funce(tuple_t
*tuple
, cistpl_funce_t
*f
)
848 if (tuple
->TupleDataLen
< 1)
850 p
= (u_char
*)tuple
->TupleData
;
852 for (i
= 1; i
< tuple
->TupleDataLen
; i
++)
857 /*====================================================================*/
859 static int parse_config(tuple_t
*tuple
, cistpl_config_t
*config
)
864 p
= (u_char
*)tuple
->TupleData
;
866 rmsz
= (*p
& 0x3c) >> 2;
867 if (tuple
->TupleDataLen
< rasz
+rmsz
+4)
869 config
->last_idx
= *(++p
);
872 for (i
= 0; i
<= rasz
; i
++)
873 config
->base
+= p
[i
] << (8*i
);
875 for (i
= 0; i
< 4; i
++)
876 config
->rmask
[i
] = 0;
877 for (i
= 0; i
<= rmsz
; i
++)
878 config
->rmask
[i
>>2] += p
[i
] << (8*(i
%4));
879 config
->subtuples
= tuple
->TupleDataLen
- (rasz
+rmsz
+4);
883 /*======================================================================
885 The following routines are all used to parse the nightmarish
886 config table entries.
888 ======================================================================*/
890 static u_char
*parse_power(u_char
*p
, u_char
*q
,
901 for (i
= 0; i
< 7; i
++)
902 if (pwr
->present
& (1<<i
)) {
905 pwr
->param
[i
] = POWER_CVT(*p
);
906 scale
= POWER_SCALE(*p
);
910 if ((*p
& 0x7f) < 100)
911 pwr
->param
[i
] += (*p
& 0x7f) * scale
/ 100;
913 pwr
->flags
|= CISTPL_POWER_HIGHZ_OK
;
917 pwr
->flags
|= CISTPL_POWER_HIGHZ_REQ
;
926 /*====================================================================*/
928 static u_char
*parse_timing(u_char
*p
, u_char
*q
,
929 cistpl_timing_t
*timing
)
936 if ((scale
& 3) != 3) {
939 timing
->wait
= SPEED_CVT(*p
);
940 timing
->waitscale
= exponent
[scale
& 3];
944 if ((scale
& 7) != 7) {
947 timing
->ready
= SPEED_CVT(*p
);
948 timing
->rdyscale
= exponent
[scale
& 7];
955 timing
->reserved
= SPEED_CVT(*p
);
956 timing
->rsvscale
= exponent
[scale
];
958 timing
->reserved
= 0;
963 /*====================================================================*/
965 static u_char
*parse_io(u_char
*p
, u_char
*q
, cistpl_io_t
*io
)
976 io
->win
[0].len
= (1 << (io
->flags
& CISTPL_IO_LINES_MASK
));
982 io
->nwin
= (*p
& 0x0f) + 1;
983 bsz
= (*p
& 0x30) >> 4;
986 lsz
= (*p
& 0xc0) >> 6;
991 for (i
= 0; i
< io
->nwin
; i
++) {
994 for (j
= 0; j
< bsz
; j
++, p
++) {
997 io
->win
[i
].base
+= *p
<< (j
*8);
999 for (j
= 0; j
< lsz
; j
++, p
++) {
1002 io
->win
[i
].len
+= *p
<< (j
*8);
1008 /*====================================================================*/
1010 static u_char
*parse_mem(u_char
*p
, u_char
*q
, cistpl_mem_t
*mem
)
1012 int i
, j
, asz
, lsz
, has_ha
;
1018 mem
->nwin
= (*p
& 0x07) + 1;
1019 lsz
= (*p
& 0x18) >> 3;
1020 asz
= (*p
& 0x60) >> 5;
1021 has_ha
= (*p
& 0x80);
1025 for (i
= 0; i
< mem
->nwin
; i
++) {
1027 for (j
= 0; j
< lsz
; j
++, p
++) {
1032 for (j
= 0; j
< asz
; j
++, p
++) {
1038 for (j
= 0; j
< asz
; j
++, p
++) {
1043 mem
->win
[i
].len
= len
<< 8;
1044 mem
->win
[i
].card_addr
= ca
<< 8;
1045 mem
->win
[i
].host_addr
= ha
<< 8;
1050 /*====================================================================*/
1052 static u_char
*parse_irq(u_char
*p
, u_char
*q
, cistpl_irq_t
*irq
)
1056 irq
->IRQInfo1
= *p
; p
++;
1057 if (irq
->IRQInfo1
& IRQ_INFO2_VALID
) {
1060 irq
->IRQInfo2
= (p
[1]<<8) + p
[0];
1066 /*====================================================================*/
1068 static int parse_cftable_entry(tuple_t
*tuple
,
1069 cistpl_cftable_entry_t
*entry
)
1071 u_char
*p
, *q
, features
;
1073 p
= tuple
->TupleData
;
1074 q
= p
+ tuple
->TupleDataLen
;
1075 entry
->index
= *p
& 0x3f;
1078 entry
->flags
|= CISTPL_CFTABLE_DEFAULT
;
1083 entry
->flags
|= CISTPL_CFTABLE_BVDS
;
1085 entry
->flags
|= CISTPL_CFTABLE_WP
;
1087 entry
->flags
|= CISTPL_CFTABLE_RDYBSY
;
1089 entry
->flags
|= CISTPL_CFTABLE_MWAIT
;
1090 entry
->interface
= *p
& 0x0f;
1092 entry
->interface
= 0;
1094 /* Process optional features */
1100 if ((features
& 3) > 0) {
1101 p
= parse_power(p
, q
, &entry
->vcc
);
1105 entry
->vcc
.present
= 0;
1106 if ((features
& 3) > 1) {
1107 p
= parse_power(p
, q
, &entry
->vpp1
);
1111 entry
->vpp1
.present
= 0;
1112 if ((features
& 3) > 2) {
1113 p
= parse_power(p
, q
, &entry
->vpp2
);
1117 entry
->vpp2
.present
= 0;
1119 /* Timing options */
1120 if (features
& 0x04) {
1121 p
= parse_timing(p
, q
, &entry
->timing
);
1125 entry
->timing
.wait
= 0;
1126 entry
->timing
.ready
= 0;
1127 entry
->timing
.reserved
= 0;
1130 /* I/O window options */
1131 if (features
& 0x08) {
1132 p
= parse_io(p
, q
, &entry
->io
);
1138 /* Interrupt options */
1139 if (features
& 0x10) {
1140 p
= parse_irq(p
, q
, &entry
->irq
);
1144 entry
->irq
.IRQInfo1
= 0;
1146 switch (features
& 0x60) {
1148 entry
->mem
.nwin
= 0;
1151 entry
->mem
.nwin
= 1;
1152 entry
->mem
.win
[0].len
= get_unaligned_le16(p
) << 8;
1153 entry
->mem
.win
[0].card_addr
= 0;
1154 entry
->mem
.win
[0].host_addr
= 0;
1160 entry
->mem
.nwin
= 1;
1161 entry
->mem
.win
[0].len
= get_unaligned_le16(p
) << 8;
1162 entry
->mem
.win
[0].card_addr
= get_unaligned_le16(p
+ 2) << 8;
1163 entry
->mem
.win
[0].host_addr
= 0;
1169 p
= parse_mem(p
, q
, &entry
->mem
);
1176 if (features
& 0x80) {
1179 entry
->flags
|= (*p
<< 8);
1186 entry
->subtuples
= q
-p
;
1191 /*====================================================================*/
1193 #ifdef CONFIG_CARDBUS
1195 static int parse_bar(tuple_t
*tuple
, cistpl_bar_t
*bar
)
1198 if (tuple
->TupleDataLen
< 6)
1200 p
= (u_char
*)tuple
->TupleData
;
1203 bar
->size
= get_unaligned_le32(p
);
1207 static int parse_config_cb(tuple_t
*tuple
, cistpl_config_t
*config
)
1211 p
= (u_char
*)tuple
->TupleData
;
1212 if ((*p
!= 3) || (tuple
->TupleDataLen
< 6))
1214 config
->last_idx
= *(++p
);
1216 config
->base
= get_unaligned_le32(p
);
1217 config
->subtuples
= tuple
->TupleDataLen
- 6;
1221 static int parse_cftable_entry_cb(tuple_t
*tuple
,
1222 cistpl_cftable_entry_cb_t
*entry
)
1224 u_char
*p
, *q
, features
;
1226 p
= tuple
->TupleData
;
1227 q
= p
+ tuple
->TupleDataLen
;
1228 entry
->index
= *p
& 0x3f;
1231 entry
->flags
|= CISTPL_CFTABLE_DEFAULT
;
1233 /* Process optional features */
1239 if ((features
& 3) > 0) {
1240 p
= parse_power(p
, q
, &entry
->vcc
);
1244 entry
->vcc
.present
= 0;
1245 if ((features
& 3) > 1) {
1246 p
= parse_power(p
, q
, &entry
->vpp1
);
1250 entry
->vpp1
.present
= 0;
1251 if ((features
& 3) > 2) {
1252 p
= parse_power(p
, q
, &entry
->vpp2
);
1256 entry
->vpp2
.present
= 0;
1258 /* I/O window options */
1259 if (features
& 0x08) {
1262 entry
->io
= *p
; p
++;
1266 /* Interrupt options */
1267 if (features
& 0x10) {
1268 p
= parse_irq(p
, q
, &entry
->irq
);
1272 entry
->irq
.IRQInfo1
= 0;
1274 if (features
& 0x20) {
1277 entry
->mem
= *p
; p
++;
1282 if (features
& 0x80) {
1285 entry
->flags
|= (*p
<< 8);
1289 entry
->flags
|= (*p
<< 16);
1297 entry
->subtuples
= q
-p
;
1304 /*====================================================================*/
1306 static int parse_device_geo(tuple_t
*tuple
, cistpl_device_geo_t
*geo
)
1311 p
= (u_char
*)tuple
->TupleData
;
1312 q
= p
+ tuple
->TupleDataLen
;
1314 for (n
= 0; n
< CISTPL_MAX_DEVICES
; n
++) {
1317 geo
->geo
[n
].buswidth
= p
[0];
1318 geo
->geo
[n
].erase_block
= 1 << (p
[1]-1);
1319 geo
->geo
[n
].read_block
= 1 << (p
[2]-1);
1320 geo
->geo
[n
].write_block
= 1 << (p
[3]-1);
1321 geo
->geo
[n
].partition
= 1 << (p
[4]-1);
1322 geo
->geo
[n
].interleave
= 1 << (p
[5]-1);
1329 /*====================================================================*/
1331 static int parse_vers_2(tuple_t
*tuple
, cistpl_vers_2_t
*v2
)
1335 if (tuple
->TupleDataLen
< 10)
1338 p
= tuple
->TupleData
;
1339 q
= p
+ tuple
->TupleDataLen
;
1343 v2
->dindex
= get_unaligned_le16(p
+ 2);
1348 return parse_strings(p
, q
, 2, v2
->str
, &v2
->vendor
, NULL
);
1351 /*====================================================================*/
1353 static int parse_org(tuple_t
*tuple
, cistpl_org_t
*org
)
1358 p
= tuple
->TupleData
;
1359 q
= p
+ tuple
->TupleDataLen
;
1365 for (i
= 0; i
< 30; i
++) {
1375 /*====================================================================*/
1377 static int parse_format(tuple_t
*tuple
, cistpl_format_t
*fmt
)
1381 if (tuple
->TupleDataLen
< 10)
1384 p
= tuple
->TupleData
;
1388 fmt
->offset
= get_unaligned_le32(p
+ 2);
1389 fmt
->length
= get_unaligned_le32(p
+ 6);
1394 /*====================================================================*/
1396 int pcmcia_parse_tuple(tuple_t
*tuple
, cisparse_t
*parse
)
1400 if (tuple
->TupleDataLen
> tuple
->TupleDataMax
)
1402 switch (tuple
->TupleCode
) {
1404 case CISTPL_DEVICE_A
:
1405 ret
= parse_device(tuple
, &parse
->device
);
1407 #ifdef CONFIG_CARDBUS
1409 ret
= parse_bar(tuple
, &parse
->bar
);
1411 case CISTPL_CONFIG_CB
:
1412 ret
= parse_config_cb(tuple
, &parse
->config
);
1414 case CISTPL_CFTABLE_ENTRY_CB
:
1415 ret
= parse_cftable_entry_cb(tuple
, &parse
->cftable_entry_cb
);
1418 case CISTPL_CHECKSUM
:
1419 ret
= parse_checksum(tuple
, &parse
->checksum
);
1421 case CISTPL_LONGLINK_A
:
1422 case CISTPL_LONGLINK_C
:
1423 ret
= parse_longlink(tuple
, &parse
->longlink
);
1425 case CISTPL_LONGLINK_MFC
:
1426 ret
= parse_longlink_mfc(tuple
, &parse
->longlink_mfc
);
1429 ret
= parse_vers_1(tuple
, &parse
->version_1
);
1432 ret
= parse_altstr(tuple
, &parse
->altstr
);
1434 case CISTPL_JEDEC_A
:
1435 case CISTPL_JEDEC_C
:
1436 ret
= parse_jedec(tuple
, &parse
->jedec
);
1439 ret
= parse_manfid(tuple
, &parse
->manfid
);
1442 ret
= parse_funcid(tuple
, &parse
->funcid
);
1445 ret
= parse_funce(tuple
, &parse
->funce
);
1448 ret
= parse_config(tuple
, &parse
->config
);
1450 case CISTPL_CFTABLE_ENTRY
:
1451 ret
= parse_cftable_entry(tuple
, &parse
->cftable_entry
);
1453 case CISTPL_DEVICE_GEO
:
1454 case CISTPL_DEVICE_GEO_A
:
1455 ret
= parse_device_geo(tuple
, &parse
->device_geo
);
1458 ret
= parse_vers_2(tuple
, &parse
->vers_2
);
1461 ret
= parse_org(tuple
, &parse
->org
);
1464 case CISTPL_FORMAT_A
:
1465 ret
= parse_format(tuple
, &parse
->format
);
1467 case CISTPL_NO_LINK
:
1468 case CISTPL_LINKTARGET
:
1476 pr_debug("parse_tuple failed %d\n", ret
);
1479 EXPORT_SYMBOL(pcmcia_parse_tuple
);
1481 /*======================================================================
1483 This is used internally by Card Services to look up CIS stuff.
1485 ======================================================================*/
1487 int pccard_read_tuple(struct pcmcia_socket
*s
, unsigned int function
, cisdata_t code
, void *parse
)
1493 buf
= kmalloc(256, GFP_KERNEL
);
1495 dev_printk(KERN_WARNING
, &s
->dev
, "no memory to read tuple\n");
1498 tuple
.DesiredTuple
= code
;
1499 tuple
.Attributes
= 0;
1500 if (function
== BIND_FN_ALL
)
1501 tuple
.Attributes
= TUPLE_RETURN_COMMON
;
1502 ret
= pccard_get_first_tuple(s
, function
, &tuple
);
1505 tuple
.TupleData
= buf
;
1506 tuple
.TupleOffset
= 0;
1507 tuple
.TupleDataMax
= 255;
1508 ret
= pccard_get_tuple_data(s
, &tuple
);
1511 ret
= pcmcia_parse_tuple(&tuple
, parse
);
1516 EXPORT_SYMBOL(pccard_read_tuple
);
1520 * pccard_loop_tuple() - loop over tuples in the CIS
1521 * @s: the struct pcmcia_socket where the card is inserted
1522 * @function: the device function we loop for
1523 * @code: which CIS code shall we look for?
1524 * @parse: buffer where the tuple shall be parsed (or NULL, if no parse)
1525 * @priv_data: private data to be passed to the loop_tuple function.
1526 * @loop_tuple: function to call for each CIS entry of type @function. IT
1527 * gets passed the raw tuple, the paresed tuple (if @parse is
1528 * set) and @priv_data.
1530 * pccard_loop_tuple() loops over all CIS entries of type @function, and
1531 * calls the @loop_tuple function for each entry. If the call to @loop_tuple
1532 * returns 0, the loop exits. Returns 0 on success or errorcode otherwise.
1534 int pccard_loop_tuple(struct pcmcia_socket
*s
, unsigned int function
,
1535 cisdata_t code
, cisparse_t
*parse
, void *priv_data
,
1536 int (*loop_tuple
) (tuple_t
*tuple
,
1544 buf
= kzalloc(256, GFP_KERNEL
);
1546 dev_printk(KERN_WARNING
, &s
->dev
, "no memory to read tuple\n");
1550 tuple
.TupleData
= buf
;
1551 tuple
.TupleDataMax
= 255;
1552 tuple
.TupleOffset
= 0;
1553 tuple
.DesiredTuple
= code
;
1554 tuple
.Attributes
= 0;
1556 ret
= pccard_get_first_tuple(s
, function
, &tuple
);
1558 if (pccard_get_tuple_data(s
, &tuple
))
1562 if (pcmcia_parse_tuple(&tuple
, parse
))
1565 ret
= loop_tuple(&tuple
, parse
, priv_data
);
1570 ret
= pccard_get_next_tuple(s
, function
, &tuple
);
1576 EXPORT_SYMBOL(pccard_loop_tuple
);
1579 /*======================================================================
1581 This tries to determine if a card has a sensible CIS. It returns
1582 the number of tuples in the CIS, or 0 if the CIS looks bad. The
1583 checks include making sure several critical tuples are present and
1584 valid; seeing if the total number of tuples is reasonable; and
1585 looking for tuples that use reserved codes.
1587 ======================================================================*/
1589 int pccard_validate_cis(struct pcmcia_socket
*s
, unsigned int *info
)
1593 unsigned int count
= 0;
1594 int ret
, reserved
, dev_ok
= 0, ident_ok
= 0;
1599 tuple
= kmalloc(sizeof(*tuple
), GFP_KERNEL
);
1600 if (tuple
== NULL
) {
1601 dev_printk(KERN_WARNING
, &s
->dev
, "no memory to validate CIS\n");
1604 p
= kmalloc(sizeof(*p
), GFP_KERNEL
);
1607 dev_printk(KERN_WARNING
, &s
->dev
, "no memory to validate CIS\n");
1611 count
= reserved
= 0;
1612 tuple
->DesiredTuple
= RETURN_FIRST_TUPLE
;
1613 tuple
->Attributes
= TUPLE_RETURN_COMMON
;
1614 ret
= pccard_get_first_tuple(s
, BIND_FN_ALL
, tuple
);
1618 /* First tuple should be DEVICE; we should really have either that
1619 or a CFTABLE_ENTRY of some sort */
1620 if ((tuple
->TupleCode
== CISTPL_DEVICE
) ||
1621 (pccard_read_tuple(s
, BIND_FN_ALL
, CISTPL_CFTABLE_ENTRY
, p
) == 0) ||
1622 (pccard_read_tuple(s
, BIND_FN_ALL
, CISTPL_CFTABLE_ENTRY_CB
, p
) == 0))
1625 /* All cards should have a MANFID tuple, and/or a VERS_1 or VERS_2
1626 tuple, for card identification. Certain old D-Link and Linksys
1627 cards have only a broken VERS_2 tuple; hence the bogus test. */
1628 if ((pccard_read_tuple(s
, BIND_FN_ALL
, CISTPL_MANFID
, p
) == 0) ||
1629 (pccard_read_tuple(s
, BIND_FN_ALL
, CISTPL_VERS_1
, p
) == 0) ||
1630 (pccard_read_tuple(s
, BIND_FN_ALL
, CISTPL_VERS_2
, p
) != -ENOSPC
))
1633 if (!dev_ok
&& !ident_ok
)
1636 for (count
= 1; count
< MAX_TUPLES
; count
++) {
1637 ret
= pccard_get_next_tuple(s
, BIND_FN_ALL
, tuple
);
1640 if (((tuple
->TupleCode
> 0x23) && (tuple
->TupleCode
< 0x40)) ||
1641 ((tuple
->TupleCode
> 0x47) && (tuple
->TupleCode
< 0x80)) ||
1642 ((tuple
->TupleCode
> 0x90) && (tuple
->TupleCode
< 0xff)))
1645 if ((count
== MAX_TUPLES
) || (reserved
> 5) ||
1646 ((!dev_ok
|| !ident_ok
) && (count
> 10)))
1656 EXPORT_SYMBOL(pccard_validate_cis
);