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) 2000-2001 by Sun Microsystems, Inc.
24*7c478bd9Sstevel@tonic-gate  * All rights reserved.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate #ifndef	_DAK_HPC3130_EVENTS_H
28*7c478bd9Sstevel@tonic-gate #define	_DAK_HPC3130_EVENTS_H
29*7c478bd9Sstevel@tonic-gate 
30*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
31*7c478bd9Sstevel@tonic-gate 
32*7c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
33*7c478bd9Sstevel@tonic-gate extern "C" {
34*7c478bd9Sstevel@tonic-gate #endif
35*7c478bd9Sstevel@tonic-gate 
36*7c478bd9Sstevel@tonic-gate #define	HPC3130_DAK_IOC			('D' << 8)
37*7c478bd9Sstevel@tonic-gate #define	HPC3130_GET_EVENT		(HPC3130_DAK_IOC | 0)	/* (uint8_t) */
38*7c478bd9Sstevel@tonic-gate #define	HPC3130_CONF_DR			(HPC3130_DAK_IOC | 1)
39*7c478bd9Sstevel@tonic-gate 
40*7c478bd9Sstevel@tonic-gate #define	HPC3130_SLOTS			0x4
41*7c478bd9Sstevel@tonic-gate #define	HPC3130_CONTROLLERS		0x4
42*7c478bd9Sstevel@tonic-gate #define	HPC3130_DR_DISABLE		0x0
43*7c478bd9Sstevel@tonic-gate #define	HPC3130_DR_ENABLE		0x1
44*7c478bd9Sstevel@tonic-gate 
45*7c478bd9Sstevel@tonic-gate #ifdef _KERNEL
46*7c478bd9Sstevel@tonic-gate 
47*7c478bd9Sstevel@tonic-gate /*
48*7c478bd9Sstevel@tonic-gate  * Internal events bits.  These are translated to hpc3130_event_type_t's
49*7c478bd9Sstevel@tonic-gate  * by the time the user sees them (in ioctl(HPC3130_GET_SOFT_EVENT))
50*7c478bd9Sstevel@tonic-gate  */
51*7c478bd9Sstevel@tonic-gate #define	HPC3130_IEVENT_OCCUPANCY	(1<<0)
52*7c478bd9Sstevel@tonic-gate #define	HPC3130_IEVENT_POWER		(1<<1)
53*7c478bd9Sstevel@tonic-gate #define	HPC3130_IEVENT_BUTTON		(1<<2)
54*7c478bd9Sstevel@tonic-gate #define	HPC3130_IEVENT_FAULT		(1<<3)
55*7c478bd9Sstevel@tonic-gate #define	HPC3130_IEVENT_OK2REM		(1<<4)
56*7c478bd9Sstevel@tonic-gate #endif /* _KERNEL */
57*7c478bd9Sstevel@tonic-gate 
58*7c478bd9Sstevel@tonic-gate typedef enum {
59*7c478bd9Sstevel@tonic-gate 	HPC3130_EVENT_NONE,
60*7c478bd9Sstevel@tonic-gate 	HPC3130_EVENT_INSERTION,
61*7c478bd9Sstevel@tonic-gate 	HPC3130_EVENT_REMOVAL,
62*7c478bd9Sstevel@tonic-gate 	HPC3130_EVENT_POWERON,
63*7c478bd9Sstevel@tonic-gate 	HPC3130_EVENT_POWEROFF,
64*7c478bd9Sstevel@tonic-gate 	HPC3130_EVENT_BUTTON,
65*7c478bd9Sstevel@tonic-gate 	HPC3130_LED_FAULT_ON,
66*7c478bd9Sstevel@tonic-gate 	HPC3130_LED_FAULT_OFF,
67*7c478bd9Sstevel@tonic-gate 	HPC3130_LED_REMOVABLE_ON,
68*7c478bd9Sstevel@tonic-gate 	HPC3130_LED_REMOVABLE_OFF
69*7c478bd9Sstevel@tonic-gate } hpc3130_event_type_t;
70*7c478bd9Sstevel@tonic-gate 
71*7c478bd9Sstevel@tonic-gate #define	HPC3130_NAME_MAX MAXPATHLEN
72*7c478bd9Sstevel@tonic-gate 
73*7c478bd9Sstevel@tonic-gate typedef enum {
74*7c478bd9Sstevel@tonic-gate 	HPC3130_SLOT_TYPE_PCI,
75*7c478bd9Sstevel@tonic-gate 	HPC3130_SLOT_TYPE_SBD
76*7c478bd9Sstevel@tonic-gate } hpc3130_slot_type_t;
77*7c478bd9Sstevel@tonic-gate 
78*7c478bd9Sstevel@tonic-gate struct hpc3130_event {
79*7c478bd9Sstevel@tonic-gate 	hpc3130_event_type_t id;
80*7c478bd9Sstevel@tonic-gate 	char name[HPC3130_NAME_MAX];
81*7c478bd9Sstevel@tonic-gate };
82*7c478bd9Sstevel@tonic-gate 
83*7c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
84*7c478bd9Sstevel@tonic-gate }
85*7c478bd9Sstevel@tonic-gate #endif
86*7c478bd9Sstevel@tonic-gate 
87*7c478bd9Sstevel@tonic-gate #endif	/* _DAK_HPC3130_EVENTS_H */
88