1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23 * Use is subject to license terms.
24 */
25
26#ifndef	_SYS_PCMU_TYPES_H
27#define	_SYS_PCMU_TYPES_H
28
29#pragma ident	"%Z%%M%	%I%	%E% SMI"
30
31#ifdef	__cplusplus
32extern "C" {
33#endif
34
35typedef struct pcicmu pcmu_t;
36typedef struct pcmu_cb pcmu_cb_t;
37typedef struct pcmu_ib pcmu_ib_t;
38typedef struct pcmu_pbm pcmu_pbm_t;
39typedef uint16_t pcmu_ign_t;
40typedef struct pcmu_errstate pcmu_errstate_t;
41typedef struct pcmu_ecc_errstate pcmu_ecc_errstate_t;
42typedef struct pcmu_pbm_errstate pcmu_pbm_errstate_t;
43typedef struct pcmu_cb_errstate pcmu_cb_errstate_t;
44typedef struct pcmu_bus_range pcmu_bus_range_t;
45typedef struct pcmu_ranges  pcmu_ranges_t;
46typedef enum pcmu_cb_nintr_index pcmu_cb_nintr_index_t;
47typedef struct pcmu_ecc pcmu_ecc_t;
48typedef struct pcmu_ecc_intr_info pcmu_ecc_intr_info_t;
49
50#ifdef	__cplusplus
51}
52#endif
53
54#endif	/* _SYS_PCMU_TYPES_H */
55