1csx_Parse_CISTPL_GEOMETRY(K9eFr)nel Functions for Drivcesrxs_Parse_CISTPL_GEOMETRY(9F)
2
3
4
6 csx_Parse_CISTPL_GEOMETRY - parse the Geometry tuple
7
9 #include <sys/pccard.h>
10
11
12
13 int32_t csx_Parse_CISTPL_GEOMETRY(client_handle_t ch, tuple_t *tu,
14 cistpl_geometry_t *pt);
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 pt Pointer to a cistpl_geometry_t structure which contains the
29 parsed CISTPL_GEOMETRY tuple information upon return from this
30 function.
31
32
34 This function parses the Geometry tuple, CISTPL_GEOMETRY, into a form
35 usable by PC Card drivers.
36
37
38 The CISTPL_GEOMETRY tuple indicates the geometry of a disk-like device.
39
41 The structure members of cistpl_geometry_t are:
42
43 uint32_t spt;
44 uint32_t tpc;
45 uint32_t ncyl;
46
47
48
49 The fields are defined as follows:
50
51 spt This field indicates the number of sectors per track.
52
53
54 tpc This field indicates the number of tracks per cylinder.
55
56
57 ncyl This field indicates the number of cylinders.
58
59
61 CS_SUCCESS Successful operation.
62
63
64 CS_BAD_HANDLE Client handle is invalid.
65
66
67 CS_UNKNOWN_TUPLE Parser does not know how to parse tuple.
68
69
70 CS_NO_CARD No PC Card in socket.
71
72
73 CS_NO_CIS No Card Information Structure (CIS) on PC
74 Card.
75
76
77 CS_UNSUPPORTED_FUNCTION No PCMCIA hardware installed.
78
79
81 This function may be called from user or kernel context.
82
84 csx_GetFirstTuple(9F), csx_GetTupleData(9F), csx_RegisterClient(9F),
85 csx_ValidateCIS(9F), tuple(9S)
86
87
88 PC Card 95 Standard, PCMCIA/JEIDA
89
90
91
92SunOS 5.11 24 Jan 1997 csx_Parse_CISTPL_GEOMETRY(9F)