1csx_Parse_CISTPL_DATE(9F)Kernel Functions for Driverscsx_Parse_CISTPL_DATE(9F)
2
3
4
6 csx_Parse_CISTPL_DATE - parse the Card Initialization Date tuple
7
9 #include <sys/pccard.h>
10
11
12
13 int32_t csx_Parse_CISTPL_DATE(client_handle_t ch, tuple_t *tu,
14 cistpl_date_t *cd);
15
16
18 Solaris DDI Specific (Solaris DDI)
19
21 ch Client handle returned from csx_RegisterClient(9F).
22
23
24 tu Pointer to a tuple_t structure (see tuple(9S)) returned by a call
25 to csx_GetFirstTuple(9F) or csx_GetNextTuple(9F).
26
27
28 cd Pointer to a cistpl_date_t structure which contains the parsed
29 CISTPL_DATE tuple information upon return from this function.
30
31
33 This function parses the Card Initialization Date tuple, CISTPL_DATE,
34 into a form usable by PC Card drivers.
35
36
37 The CISTPL_DATE tuple is an optional tuple. It indicates the date and
38 time at which the card was formatted. Only one CISTPL_DATE tuple is
39 allowed per PC Card.
40
42 The structure members of cistpl_date_t are:
43
44 uint32_t time;
45 uint32_t day
46
47
48
49 The fields are defined as follows:
50
51 time This field indicates the time at which the PC Card was initialā
52 ized.
53
54
55 day This field indicates the date the PC Card was initialized.
56
57
59 CS_SUCCESS Successful operation.
60
61
62 CS_BAD_HANDLE Client handle is invalid.
63
64
65 CS_UNKNOWN_TUPLE Parser does not know how to parse tuple.
66
67
68 CS_NO_CARD No PC Card in socket.
69
70
71 CS_NO_CIS No Card Information Structure (CIS) on PC
72 Card.
73
74
75 CS_UNSUPPORTED_FUNCTION No PCMCIA hardware installed.
76
77
79 This function may be called from user or kernel context.
80
82 csx_GetFirstTuple(9F), csx_GetTupleData(9F), csx_RegisterClient(9F),
83 csx_ValidateCIS(9F), tuple(9S)
84
85
86 PC Card 95 Standard, PCMCIA/JEIDA
87
88
89
90SunOS 5.11 20 Dec 1996 csx_Parse_CISTPL_DATE(9F)