1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright (c) 1995-1996 by Sun Microsystems, Inc.
24*7c478bd9Sstevel@tonic-gate  * All rights reserved.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate /*
28*7c478bd9Sstevel@tonic-gate  * This file contains an array of structures, each of which refers to
29*7c478bd9Sstevel@tonic-gate  *	a tuple that we are prepared to handle.  The last structure
30*7c478bd9Sstevel@tonic-gate  *	in this array must have a type of CISTPL_END.
31*7c478bd9Sstevel@tonic-gate  *
32*7c478bd9Sstevel@tonic-gate  * If you want the generic tuple handler to be called for a tuple, use
33*7c478bd9Sstevel@tonic-gate  *	the cis_no_tuple_handler() entry point.
34*7c478bd9Sstevel@tonic-gate  */
35*7c478bd9Sstevel@tonic-gate 
36*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
37*7c478bd9Sstevel@tonic-gate #include <sys/systm.h>
38*7c478bd9Sstevel@tonic-gate #include <sys/user.h>
39*7c478bd9Sstevel@tonic-gate #include <sys/buf.h>
40*7c478bd9Sstevel@tonic-gate #include <sys/file.h>
41*7c478bd9Sstevel@tonic-gate #include <sys/uio.h>
42*7c478bd9Sstevel@tonic-gate #include <sys/conf.h>
43*7c478bd9Sstevel@tonic-gate #include <sys/stat.h>
44*7c478bd9Sstevel@tonic-gate #include <sys/autoconf.h>
45*7c478bd9Sstevel@tonic-gate #include <sys/vtoc.h>
46*7c478bd9Sstevel@tonic-gate #include <sys/dkio.h>
47*7c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
48*7c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
49*7c478bd9Sstevel@tonic-gate #include <sys/debug.h>
50*7c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
51*7c478bd9Sstevel@tonic-gate #include <sys/kstat.h>
52*7c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
53*7c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
54*7c478bd9Sstevel@tonic-gate #include <sys/kobj.h>
55*7c478bd9Sstevel@tonic-gate #include <sys/callb.h>
56*7c478bd9Sstevel@tonic-gate 
57*7c478bd9Sstevel@tonic-gate #include <sys/pctypes.h>
58*7c478bd9Sstevel@tonic-gate #include <pcmcia/sys/cs_types.h>
59*7c478bd9Sstevel@tonic-gate #include <pcmcia/sys/cis.h>
60*7c478bd9Sstevel@tonic-gate #include <pcmcia/sys/cis_handlers.h>
61*7c478bd9Sstevel@tonic-gate #include <pcmcia/sys/cs.h>
62*7c478bd9Sstevel@tonic-gate #include <pcmcia/sys/cs_priv.h>
63*7c478bd9Sstevel@tonic-gate #include <pcmcia/sys/cis_protos.h>
64*7c478bd9Sstevel@tonic-gate 
65*7c478bd9Sstevel@tonic-gate /*
66*7c478bd9Sstevel@tonic-gate  * cistpl_std_callout - callout list for standard tuples
67*7c478bd9Sstevel@tonic-gate  */
68*7c478bd9Sstevel@tonic-gate cistpl_callout_t cistpl_std_callout[] = {
69*7c478bd9Sstevel@tonic-gate 	{	CISTPL_DEVICE,			/* device information */
70*7c478bd9Sstevel@tonic-gate 		0,
71*7c478bd9Sstevel@tonic-gate 		0,
72*7c478bd9Sstevel@tonic-gate 		cistpl_device_handler,
73*7c478bd9Sstevel@tonic-gate 		"CISTPL_DEVICE"		},
74*7c478bd9Sstevel@tonic-gate 	{	CISTPL_CHECKSUM,		/* checksum control */
75*7c478bd9Sstevel@tonic-gate 		0,
76*7c478bd9Sstevel@tonic-gate 		0,
77*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
78*7c478bd9Sstevel@tonic-gate 		"CISTPL_CHECKSUM"	},
79*7c478bd9Sstevel@tonic-gate 	{	CISTPL_LONGLINK_A,		/* long-link to AM */
80*7c478bd9Sstevel@tonic-gate 		0,
81*7c478bd9Sstevel@tonic-gate 		0,
82*7c478bd9Sstevel@tonic-gate 		cistpl_longlink_ac_handler,
83*7c478bd9Sstevel@tonic-gate 		"CISTPL_LONGLINK_A"	},
84*7c478bd9Sstevel@tonic-gate 	{	CISTPL_LONGLINK_C,		/* long-link to CM */
85*7c478bd9Sstevel@tonic-gate 		0,
86*7c478bd9Sstevel@tonic-gate 		0,
87*7c478bd9Sstevel@tonic-gate 		cistpl_longlink_ac_handler,
88*7c478bd9Sstevel@tonic-gate 		"CISTPL_LONGLINK_C"	},
89*7c478bd9Sstevel@tonic-gate 	{	CISTPL_LONGLINK_MFC,		/* long-link to MFC CIS */
90*7c478bd9Sstevel@tonic-gate 		0,
91*7c478bd9Sstevel@tonic-gate 		0,
92*7c478bd9Sstevel@tonic-gate 		cistpl_longlink_mfc_handler,
93*7c478bd9Sstevel@tonic-gate 		"CISTPL_LONGLINK_MFC"	},
94*7c478bd9Sstevel@tonic-gate 	{	CISTPL_LINKTARGET,		/* link-target control */
95*7c478bd9Sstevel@tonic-gate 		0,
96*7c478bd9Sstevel@tonic-gate 		0,
97*7c478bd9Sstevel@tonic-gate 		cistpl_linktarget_handler,
98*7c478bd9Sstevel@tonic-gate 		"CISTPL_LINKTARGET"	},
99*7c478bd9Sstevel@tonic-gate 	{	CISTPL_NO_LINK,			/* no-link control */
100*7c478bd9Sstevel@tonic-gate 		0,
101*7c478bd9Sstevel@tonic-gate 		0,
102*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
103*7c478bd9Sstevel@tonic-gate 		"CISTPL_NO_LINK"	},
104*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VERS_1,			/* level 1 version info */
105*7c478bd9Sstevel@tonic-gate 		0,
106*7c478bd9Sstevel@tonic-gate 		0,
107*7c478bd9Sstevel@tonic-gate 		cistpl_vers_1_handler,
108*7c478bd9Sstevel@tonic-gate 		"CISTPL_VERS_1"		},
109*7c478bd9Sstevel@tonic-gate 	{	CISTPL_ALTSTR,			/* alternate language string */
110*7c478bd9Sstevel@tonic-gate 		0,
111*7c478bd9Sstevel@tonic-gate 		0,
112*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
113*7c478bd9Sstevel@tonic-gate 		"CISTPL_ALTSTR"		},
114*7c478bd9Sstevel@tonic-gate 	{	CISTPL_DEVICE_A,		/* AM device information */
115*7c478bd9Sstevel@tonic-gate 		0,
116*7c478bd9Sstevel@tonic-gate 		0,
117*7c478bd9Sstevel@tonic-gate 		cistpl_device_handler,
118*7c478bd9Sstevel@tonic-gate 		"CISTPL_DEVICE_A"	},
119*7c478bd9Sstevel@tonic-gate 	{	CISTPL_JEDEC_C,			/* JEDEC info for CM */
120*7c478bd9Sstevel@tonic-gate 		0,
121*7c478bd9Sstevel@tonic-gate 		0,
122*7c478bd9Sstevel@tonic-gate 		cistpl_jedec_handler,
123*7c478bd9Sstevel@tonic-gate 		"CISTPL_JEDEC_C"	},
124*7c478bd9Sstevel@tonic-gate 	{	CISTPL_JEDEC_A,			/* JEDEC info for AM */
125*7c478bd9Sstevel@tonic-gate 		0,
126*7c478bd9Sstevel@tonic-gate 		0,
127*7c478bd9Sstevel@tonic-gate 		cistpl_jedec_handler,
128*7c478bd9Sstevel@tonic-gate 		"CISTPL_JEDEC_A"	},
129*7c478bd9Sstevel@tonic-gate 	{	CISTPL_CONFIG,			/* configuration */
130*7c478bd9Sstevel@tonic-gate 		0,
131*7c478bd9Sstevel@tonic-gate 		0,
132*7c478bd9Sstevel@tonic-gate 		cistpl_config_handler,
133*7c478bd9Sstevel@tonic-gate 		"CISTPL_CONFIG"		},
134*7c478bd9Sstevel@tonic-gate 	{	CISTPL_CFTABLE_ENTRY,		/* configuration-table-entry */
135*7c478bd9Sstevel@tonic-gate 		0,
136*7c478bd9Sstevel@tonic-gate 		0,
137*7c478bd9Sstevel@tonic-gate 		cistpl_cftable_handler,
138*7c478bd9Sstevel@tonic-gate 		"CISTPL_CFTABLE_ENTRY"	},
139*7c478bd9Sstevel@tonic-gate 	{	CISTPL_DEVICE_OC,		/* other conditions for CM */
140*7c478bd9Sstevel@tonic-gate 		0,
141*7c478bd9Sstevel@tonic-gate 		0,
142*7c478bd9Sstevel@tonic-gate 		cistpl_device_handler,
143*7c478bd9Sstevel@tonic-gate 		"CISTPL_DEVICE_OC"	},
144*7c478bd9Sstevel@tonic-gate 	{	CISTPL_DEVICE_OA,		/* other conditions for AM */
145*7c478bd9Sstevel@tonic-gate 		0,
146*7c478bd9Sstevel@tonic-gate 		0,
147*7c478bd9Sstevel@tonic-gate 		cistpl_device_handler,
148*7c478bd9Sstevel@tonic-gate 		"CISTPL_DEVICE_OA"	},
149*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VERS_2,			/* level 2 version info */
150*7c478bd9Sstevel@tonic-gate 		0,
151*7c478bd9Sstevel@tonic-gate 		0,
152*7c478bd9Sstevel@tonic-gate 		cistpl_vers_2_handler,
153*7c478bd9Sstevel@tonic-gate 		"CISTPL_VERS_2"		},
154*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FORMAT,			/* format type */
155*7c478bd9Sstevel@tonic-gate 		0,
156*7c478bd9Sstevel@tonic-gate 		0,
157*7c478bd9Sstevel@tonic-gate 		cistpl_format_handler,
158*7c478bd9Sstevel@tonic-gate 		"CISTPL_FORMAT"		},
159*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FORMAT_A,		/* Attribute Memory */
160*7c478bd9Sstevel@tonic-gate 		0,				/* recording format */
161*7c478bd9Sstevel@tonic-gate 		0,
162*7c478bd9Sstevel@tonic-gate 		cistpl_format_handler,
163*7c478bd9Sstevel@tonic-gate 		"CISTPL_FORMAT_A"	},
164*7c478bd9Sstevel@tonic-gate 	{	CISTPL_GEOMETRY,		/* geometry */
165*7c478bd9Sstevel@tonic-gate 		0,
166*7c478bd9Sstevel@tonic-gate 		0,
167*7c478bd9Sstevel@tonic-gate 		cistpl_geometry_handler,
168*7c478bd9Sstevel@tonic-gate 		"CISTPL_GEOMETRY"	},
169*7c478bd9Sstevel@tonic-gate 	{	CISTPL_BYTEORDER,		/* byte order */
170*7c478bd9Sstevel@tonic-gate 		0,
171*7c478bd9Sstevel@tonic-gate 		0,
172*7c478bd9Sstevel@tonic-gate 		cistpl_byteorder_handler,
173*7c478bd9Sstevel@tonic-gate 		"CISTPL_BYTEORDER"	},
174*7c478bd9Sstevel@tonic-gate 	{	CISTPL_DATE,			/* card initialization date */
175*7c478bd9Sstevel@tonic-gate 		0,
176*7c478bd9Sstevel@tonic-gate 		0,
177*7c478bd9Sstevel@tonic-gate 		cistpl_date_handler,
178*7c478bd9Sstevel@tonic-gate 		"CISTPL_DATE"		},
179*7c478bd9Sstevel@tonic-gate 	{	CISTPL_BATTERY,			/* battery replacement date */
180*7c478bd9Sstevel@tonic-gate 		0,
181*7c478bd9Sstevel@tonic-gate 		0,
182*7c478bd9Sstevel@tonic-gate 		cistpl_battery_handler,
183*7c478bd9Sstevel@tonic-gate 		"CISTPL_BATTERY"	},
184*7c478bd9Sstevel@tonic-gate 	{	CISTPL_ORG,			/* organization */
185*7c478bd9Sstevel@tonic-gate 		0,
186*7c478bd9Sstevel@tonic-gate 		0,
187*7c478bd9Sstevel@tonic-gate 		cistpl_org_handler,
188*7c478bd9Sstevel@tonic-gate 		"CISTPL_ORG"		},
189*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCID,			/* card function ID */
190*7c478bd9Sstevel@tonic-gate 		0,
191*7c478bd9Sstevel@tonic-gate 		0,
192*7c478bd9Sstevel@tonic-gate 		cistpl_funcid_handler,
193*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCID"		},
194*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
195*7c478bd9Sstevel@tonic-gate 		TPLFUNC_MULTI,		/* for multifunction cards */
196*7c478bd9Sstevel@tonic-gate 		0,
197*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
198*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/MULTI"	},
199*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
200*7c478bd9Sstevel@tonic-gate 		TPLFUNC_MEMORY,		/* for memory cards */
201*7c478bd9Sstevel@tonic-gate 		0,
202*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
203*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/MEMORY"	},
204*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
205*7c478bd9Sstevel@tonic-gate 		TPLFUNC_SERIAL,		/* for serial port cards */
206*7c478bd9Sstevel@tonic-gate 		0,
207*7c478bd9Sstevel@tonic-gate 		cistpl_funce_serial_handler,
208*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/SERIAL"	},
209*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
210*7c478bd9Sstevel@tonic-gate 		TPLFUNC_PARALLEL,		/* for parallel port cards */
211*7c478bd9Sstevel@tonic-gate 		0,
212*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
213*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/PARALLEL"	},
214*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
215*7c478bd9Sstevel@tonic-gate 		TPLFUNC_FIXED,		/* for fixed disk cards */
216*7c478bd9Sstevel@tonic-gate 		0,
217*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
218*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/FIXED"	},
219*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
220*7c478bd9Sstevel@tonic-gate 		TPLFUNC_VIDEO,		/* for video cards */
221*7c478bd9Sstevel@tonic-gate 		0,
222*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
223*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/VIDEO"	},
224*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
225*7c478bd9Sstevel@tonic-gate 		TPLFUNC_LAN,		/* for LAN cards */
226*7c478bd9Sstevel@tonic-gate 		0,
227*7c478bd9Sstevel@tonic-gate 		cistpl_funce_lan_handler,
228*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/LAN"	},
229*7c478bd9Sstevel@tonic-gate 
230*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
231*7c478bd9Sstevel@tonic-gate 		TPLFUNC_AIMS,		/* Auto Incrementing Mass Storage */
232*7c478bd9Sstevel@tonic-gate 		0,
233*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
234*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/AIMS"	},
235*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
236*7c478bd9Sstevel@tonic-gate 		TPLFUNC_SCSI,		/* SCSI bridge */
237*7c478bd9Sstevel@tonic-gate 		0,
238*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
239*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/SCSI"	},
240*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
241*7c478bd9Sstevel@tonic-gate 		TPLFUNC_VENDOR_SPECIFIC,	/* Vendor Specific */
242*7c478bd9Sstevel@tonic-gate 		0,
243*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
244*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/VENDOR_SPECIFIC"	},
245*7c478bd9Sstevel@tonic-gate 	{	CISTPL_FUNCE,			/* card function extension */
246*7c478bd9Sstevel@tonic-gate 		TPLFUNC_UNKNOWN,	/* for unknown functions */
247*7c478bd9Sstevel@tonic-gate 		0,
248*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
249*7c478bd9Sstevel@tonic-gate 		"CISTPL_FUNCE/unknown"	},
250*7c478bd9Sstevel@tonic-gate 	{	CISTPL_MANFID,			/* manufacturer ID */
251*7c478bd9Sstevel@tonic-gate 		0,
252*7c478bd9Sstevel@tonic-gate 		0,
253*7c478bd9Sstevel@tonic-gate 		cistpl_manfid_handler,
254*7c478bd9Sstevel@tonic-gate 		"CISTPL_MANFID"		},
255*7c478bd9Sstevel@tonic-gate 	{	CISTPL_SPCL,			/* special-purpose tuple */
256*7c478bd9Sstevel@tonic-gate 		0,
257*7c478bd9Sstevel@tonic-gate 		0,
258*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
259*7c478bd9Sstevel@tonic-gate 		"CISTPL_SPCL"		},
260*7c478bd9Sstevel@tonic-gate 	{	CISTPL_LONGLINK_CB,		/* longlink to next */
261*7c478bd9Sstevel@tonic-gate 		0,				/* tuple chain */
262*7c478bd9Sstevel@tonic-gate 		0,
263*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
264*7c478bd9Sstevel@tonic-gate 		"CISTPL_LONGLINK_CB"	},
265*7c478bd9Sstevel@tonic-gate 	{	CISTPL_CONFIG_CB,		/* configuration tuple */
266*7c478bd9Sstevel@tonic-gate 		0,
267*7c478bd9Sstevel@tonic-gate 		0,
268*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
269*7c478bd9Sstevel@tonic-gate 		"CISTPL_CONFIG_CB"	},
270*7c478bd9Sstevel@tonic-gate 	{	CISTPL_CFTABLE_ENTRY_CB,	/* configuration table */
271*7c478bd9Sstevel@tonic-gate 		0,				/* entry */
272*7c478bd9Sstevel@tonic-gate 		0,
273*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
274*7c478bd9Sstevel@tonic-gate 		"CISTPL_CFTABLE_ENTRY_CB"	},
275*7c478bd9Sstevel@tonic-gate 	{	CISTPL_BAR,			/* Base Address Register */
276*7c478bd9Sstevel@tonic-gate 		0,				/* definition */
277*7c478bd9Sstevel@tonic-gate 		0,
278*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
279*7c478bd9Sstevel@tonic-gate 		"CISTPL_BAR"		},
280*7c478bd9Sstevel@tonic-gate 	{	CISTPL_DEVICEGEO,		/* Common Memory */
281*7c478bd9Sstevel@tonic-gate 		0,				/* device geometry */
282*7c478bd9Sstevel@tonic-gate 		0,
283*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
284*7c478bd9Sstevel@tonic-gate 		"CISTPL_DEVICEGEO"	},
285*7c478bd9Sstevel@tonic-gate 	{	CISTPL_DEVICEGEO_A,		/* Attribute Memory */
286*7c478bd9Sstevel@tonic-gate 		0,				/* device geometry */
287*7c478bd9Sstevel@tonic-gate 		0,
288*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
289*7c478bd9Sstevel@tonic-gate 		"CISTPL_DEVICEGEO_A"	},
290*7c478bd9Sstevel@tonic-gate 	{	CISTPL_SWIL,			/* software interleave */
291*7c478bd9Sstevel@tonic-gate 		0,
292*7c478bd9Sstevel@tonic-gate 		0,
293*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
294*7c478bd9Sstevel@tonic-gate 		"CISTPL_SWIL"		},
295*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_80,		/* vendor-specific 0x80 */
296*7c478bd9Sstevel@tonic-gate 		0,
297*7c478bd9Sstevel@tonic-gate 		0,
298*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
299*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_80"	},
300*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_81,		/* vendor-specific 0x81 */
301*7c478bd9Sstevel@tonic-gate 		0,
302*7c478bd9Sstevel@tonic-gate 		0,
303*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
304*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_81"	},
305*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_82,		/* vendor-specific 0x82 */
306*7c478bd9Sstevel@tonic-gate 		0,
307*7c478bd9Sstevel@tonic-gate 		0,
308*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
309*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_82"	},
310*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_83,		/* vendor-specific 0x83 */
311*7c478bd9Sstevel@tonic-gate 		0,
312*7c478bd9Sstevel@tonic-gate 		0,
313*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
314*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_83"	},
315*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_84,		/* vendor-specific 0x84 */
316*7c478bd9Sstevel@tonic-gate 		0,
317*7c478bd9Sstevel@tonic-gate 		0,
318*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
319*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_84"	},
320*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_85,		/* vendor-specific 0x85 */
321*7c478bd9Sstevel@tonic-gate 		0,
322*7c478bd9Sstevel@tonic-gate 		0,
323*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
324*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_85"	},
325*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_86,		/* vendor-specific 0x86 */
326*7c478bd9Sstevel@tonic-gate 		0,
327*7c478bd9Sstevel@tonic-gate 		0,
328*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
329*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_86"	},
330*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_87,		/* vendor-specific 0x87 */
331*7c478bd9Sstevel@tonic-gate 		0,
332*7c478bd9Sstevel@tonic-gate 		0,
333*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
334*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_87"	},
335*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_88,		/* vendor-specific 0x88 */
336*7c478bd9Sstevel@tonic-gate 		0,
337*7c478bd9Sstevel@tonic-gate 		0,
338*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
339*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_88"	},
340*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_89,		/* vendor-specific 0x89 */
341*7c478bd9Sstevel@tonic-gate 		0,
342*7c478bd9Sstevel@tonic-gate 		0,
343*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
344*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_89"	},
345*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_8a,		/* vendor-specific 0x8a */
346*7c478bd9Sstevel@tonic-gate 		0,
347*7c478bd9Sstevel@tonic-gate 		0,
348*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
349*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_8a"	},
350*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_8b,		/* vendor-specific 0x8b */
351*7c478bd9Sstevel@tonic-gate 		0,
352*7c478bd9Sstevel@tonic-gate 		0,
353*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
354*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_8b"	},
355*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_8c,		/* vendor-specific 0x8c */
356*7c478bd9Sstevel@tonic-gate 		0,
357*7c478bd9Sstevel@tonic-gate 		0,
358*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
359*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_8c"	},
360*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_8d,		/* vendor-specific 0x8d */
361*7c478bd9Sstevel@tonic-gate 		0,
362*7c478bd9Sstevel@tonic-gate 		0,
363*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
364*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_8d"	},
365*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_8e,		/* vendor-specific 0x8e */
366*7c478bd9Sstevel@tonic-gate 		0,
367*7c478bd9Sstevel@tonic-gate 		0,
368*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
369*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_8e"	},
370*7c478bd9Sstevel@tonic-gate 	{	CISTPL_VEND_SPEC_8f,		/* vendor-specific 0x8f */
371*7c478bd9Sstevel@tonic-gate 		0,
372*7c478bd9Sstevel@tonic-gate 		0,
373*7c478bd9Sstevel@tonic-gate 		cis_unknown_tuple_handler,
374*7c478bd9Sstevel@tonic-gate 		"CISTPL_VEND_SPEC_8f"	},
375*7c478bd9Sstevel@tonic-gate 	{	CISTPL_END,			/* end-of-list tuple */
376*7c478bd9Sstevel@tonic-gate 		0,
377*7c478bd9Sstevel@tonic-gate 		0,
378*7c478bd9Sstevel@tonic-gate 		cis_no_tuple_handler,
379*7c478bd9Sstevel@tonic-gate 		"unknown tuple"		},
380*7c478bd9Sstevel@tonic-gate 	};
381