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