8354 sync regcomp(3C) with upstream (fix make catalog)
[unleashed/tickless.git] / usr / src / uts / sun4u / serengeti / sys / sbdp_mbox.h
blobb85c3b92bf373824ebfd54c8e899afd4256c6e12
1 /*
2 * CDDL HEADER START
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.
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.
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]
19 * CDDL HEADER END
23 * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #ifndef _SBDP_MBOX_H
28 #define _SBDP_MBOX_H
30 #pragma ident "%Z%%M% %I% %E% SMI"
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
36 #define SBDP_POWER_OFF 0x0
37 #define SBDP_POWER_ON 0x1
38 #define SBDP_UNASSIGN 0x0
39 #define SBDP_ASSIGN 0x1
42 * DR Mailbox definitions
44 #define DR_MBOX_SHOW_BOARD 0x2002
45 #define DR_MBOX_POWER 0x2003
46 #define DR_MBOX_ASSIGN 0x2004
47 #define DR_MBOX_TEST_BD 0x2005
48 #define DR_MBOX_STICK_ADM 0x2006
49 #define DR_MBOX_SWAP_SLICES 0x2007
50 #define DR_MBOX_START_CPU 0x2008
51 #define DR_MBOX_STOP_CPU 0x2009
52 #define DR_MBOX_START_CPU_PAIRS 0x2010
53 #define DR_MBOX_CLAIM 0x2011
54 #define DR_MBOX_UNCLAIM 0x2012
55 #define DR_MBOX_NOOP 0x2013
58 * DR Mailbox data structures
60 typedef struct {
61 int revision; /* temp */
62 int node; /* Node ID */
63 int board; /* Board number */
64 int extra; /* for assign and power */
65 } info2_t;
67 typedef struct {
68 info2_t info; /* Normal information */
69 uint32_t flag; /* Force operation */
70 } testb_t;
72 typedef struct {
73 int revision; /* temp */
74 int node; /* Node ID */
75 int board; /* Board number */
76 } info_t;
78 typedef struct {
79 int revision;
80 int s_cond; /* 0 = unknown, 1 = ok, 2 = failing, */
81 /* 3 = failed, 4 = unusable */
82 int s_power; /* 0 = off, 1 = on */
83 int s_assigned; /* 0 = unassigned, 1 = assigned */
84 int s_claimed; /* 0 = unclaimed, 1 = claimed */
85 int s_present; /* 0 = slot empty 1 = present */
86 int s_ledstatus; /* LEDs status */
87 char s_type[12]; /* type of board */
88 char s_info[64]; /* TBD */
89 } show_board_t;
91 typedef struct {
92 int board1;
93 int board2;
94 } swap_slices_t;
97 int sbdp_start_cpu(processorid_t);
98 int sbdp_start_cpu_pairs(processorid_t);
99 int sbdp_stop_cpu(processorid_t);
101 #ifdef __cplusplus
103 #endif
105 #endif /* _SBDP_MBOX_H */