7 * with the License.
8 *
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright (c) 1995-1999 by Sun Microsystems, Inc.
24 * All rights reserved.
25 */
26
27 #pragma ident "%Z%%M% %I% %E% SMI"
28
29 #include <sys/types.h>
30 #include <sys/systm.h>
31 #include <sys/user.h>
32 #include <sys/buf.h>
33 #include <sys/file.h>
34 #include <sys/uio.h>
35 #include <sys/conf.h>
36 #include <sys/stat.h>
37 #include <sys/autoconf.h>
38 #include <sys/vtoc.h>
39 #include <sys/dkio.h>
40 #include <sys/ddi.h>
41 #include <sys/sunddi.h>
42 #include <sys/ddi_impldefs.h>
43 #include <sys/kstat.h>
44 #include <sys/kmem.h>
45 #include <sys/modctl.h>
46 #include <sys/kobj.h>
47
48 #include <sys/pctypes.h>
211 uint32_t cistpl_cftable_io_size_table[] = {
212 0,
213 1,
214 2,
215 4,
216 };
217
218 uint32_t cistpl_cftable_shift_table[] = {
219 0,
220 8,
221 16,
222 24,
223 };
224
225 /*
226 * List of tuples in the global CIS to ignore if they show
227 * up in both the global and function-specific CIS lists.
228 * This list MUST end with CISTPL_NULL.
229 */
230 cistpl_ignore_list_t cistpl_ignore_list[] = {
231 CISTPL_FUNCID,
232 CISTPL_FUNCE,
233 CISTPL_CONFIG,
234 CISTPL_CFTABLE_ENTRY,
235 CISTPL_NULL /* list must end with CISTPL_NULL */
236 };
|
7 * with the License.
8 *
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright (c) 1995-1999 by Sun Microsystems, Inc.
24 * All rights reserved.
25 */
26
27 #include <sys/types.h>
28 #include <sys/systm.h>
29 #include <sys/user.h>
30 #include <sys/buf.h>
31 #include <sys/file.h>
32 #include <sys/uio.h>
33 #include <sys/conf.h>
34 #include <sys/stat.h>
35 #include <sys/autoconf.h>
36 #include <sys/vtoc.h>
37 #include <sys/dkio.h>
38 #include <sys/ddi.h>
39 #include <sys/sunddi.h>
40 #include <sys/ddi_impldefs.h>
41 #include <sys/kstat.h>
42 #include <sys/kmem.h>
43 #include <sys/modctl.h>
44 #include <sys/kobj.h>
45
46 #include <sys/pctypes.h>
209 uint32_t cistpl_cftable_io_size_table[] = {
210 0,
211 1,
212 2,
213 4,
214 };
215
216 uint32_t cistpl_cftable_shift_table[] = {
217 0,
218 8,
219 16,
220 24,
221 };
222
223 /*
224 * List of tuples in the global CIS to ignore if they show
225 * up in both the global and function-specific CIS lists.
226 * This list MUST end with CISTPL_NULL.
227 */
228 cistpl_ignore_list_t cistpl_ignore_list[] = {
229 { CISTPL_FUNCID },
230 { CISTPL_FUNCE },
231 { CISTPL_CONFIG },
232 { CISTPL_CFTABLE_ENTRY },
233 { CISTPL_NULL } /* list must end with CISTPL_NULL */
234 };
|