8354 sync regcomp(3C) with upstream (fix make catalog)
[unleashed/tickless.git] / usr / src / uts / sun4u / serengeti / sys / sgevents.h
blob89c5a69b4522836d9c879c1ba50114f4133555df
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
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.
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]
20 * CDDL HEADER END
23 * Copyright (c) 2000-2001 by Sun Microsystems, Inc.
24 * All rights reserved.
27 #ifndef _SYS_SGEVENTS_H
28 #define _SYS_SGEVENTS_H
30 #pragma ident "%Z%%M% %I% %E% SMI"
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
37 * sgevents.h - Serengeti Events defintions
39 * This header file contains the common definitions and macros for the
40 * events support on the Serengeti platform.
44 * Serengeti Events Payloads (events are defined in sgsbbc_mailbox.h)
48 * there are a class of events which are consider generic. They all have
49 * the same msg_type and payload. There is a detail that comes with it to
50 * let the client know what actualy happened. This can be found in the
51 * event_details as defined below
55 #define SG_EVT_BOARD_ABSENT 0x10
56 #define SG_EVT_BOARD_PRESENT 0x11
57 #define SG_EVT_UNASSIGN 0x20
58 #define SG_EVT_ASSIGN 0x21
59 #define SG_EVT_UNAVAILABLE 0x30
60 #define SG_EVT_AVAILABLE 0x31
61 #define SG_EVT_POWER_OFF 0x40
62 #define SG_EVT_POWER_ON 0x41
63 #define SG_EVT_PASSED_TEST 0x50
64 #define SG_EVT_FAILED_TEST 0x51
68 * Miscallaneous defintions
71 /* Payload of ENV event */
72 #define SC_EVENT_FAN 0x4
73 #define SC_EVENT_ENV 0x7
75 /* Payload of PANIC_SHUTDOWN event */
76 #define SC_EVENT_PANIC_ENV 0x1
77 #define SC_EVENT_PANIC_KEYSWITCH 0x2
81 * Generic event payload.
83 typedef struct {
84 int node; /* wildcat node number */
85 int slot; /* Slot number for this event */
86 uint64_t parent_hdl; /* Parent fru handle */
87 uint64_t child_hdl; /* Child fru handle */
88 int event_details;
89 } sg_system_fru_descriptor_t;
93 * Domain State event payload.
95 * Possible values for this are defined in serengeti.h (SG_KEY_POSN_XXX)
97 typedef int sg_event_key_position_t;
101 * Environmental event payloads.
103 typedef struct sg_event_env_changed {
104 int32_t event_type;
106 } sg_event_env_changed_t;
108 typedef struct sg_event_fan_status {
109 int32_t event_type;
110 int32_t node_id;
111 int32_t slot_number;
112 int32_t fan_speed;
114 } sg_event_fan_status_t;
118 * Panic Shutdown event payload.
120 typedef int sg_panic_shutdown_t;
123 #ifdef __cplusplus
125 #endif
127 #endif /* _SYS_SGEVENTS_H */