16683 pthread_cond_timedwait broken when using static initializer
[illumos-gate.git] / usr / src / uts / common / sys / lombus.h
blobd33aaca184623c722851e1ac142ee2fabad65b6e
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) 2001 by Sun Microsystems, Inc.
24 * All rights reserved.
27 #ifndef _SYS_LOMBUS_H
28 #define _SYS_LOMBUS_H
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
35 * Information for client (child) drivers:
37 * Register space definitions
38 * Fault info access
39 * Fault codes
41 * LOMbus child regspecs are triples, in the form
42 * <space>, <base>, <size>
44 typedef struct {
45 int lombus_space;
46 int lombus_base;
47 int lombus_size;
48 } lombus_regspec_t;
50 #define LOMBUS_REGSPEC_SIZE 3 /* words/regspec */
54 * Register spaces
56 * Space Size Range Meaning
57 * (bits)
59 * 0 8 [0 .. 16383] LOM virtual registers
60 * 1 8 [0] Watchdog pat (on write)
61 * 2 16 [0] Async event info (read only)
62 * All 32 [-4 .. -12] Access handle fault info
64 #define LOMBUS_VREG_SPACE (0)
65 #define LOMBUS_PAT_SPACE (1)
66 #define LOMBUS_EVENT_SPACE (2)
68 #define LOMBUS_MAX_REG (16383) /* space 0: [0..16383] */
69 #define LOMBUS_PAT_REG (0) /* space 1: [0] */
70 #define LOMBUS_EVENT_REG (0) /* space 2: [0] */
72 #define LOMBUS_FAULT_REG (-4) /* 32-bit only, R/W */
73 #define LOMBUS_PROBE_REG (-8) /* 32-bit only, R/W */
74 #define LOMBUS_ASYNC_REG (-12) /* 32-bit only, R/O */
78 * Internally-generated errors
80 * Note: LOM-generated errors are 0x00-0x7f and SunVTS uses 0x80-0xff,
81 * so these start at 0x100
83 enum lombus_errs {
84 LOMBUS_ERR_BASE = 0x100,
87 * Errors in the way the child is accessing the virtual registers.
88 * These are programming errors and won't go away on retry!
90 LOMBUS_ERR_REG_NUM, /* register number out of range */
91 LOMBUS_ERR_REG_RO, /* write to read-only register */
92 LOMBUS_ERR_REG_SIZE, /* access with invalid size */
95 * Error accessing the underlying SIO hardware
96 * This is unlikely to be recoverable.
98 LOMBUS_ERR_SIOHW = 0x110,
101 * Errors in the LOMbus <-> LOM firmware protocol
102 * These may or may not be recoverable, depending
103 * on the state of the LOM.
105 LOMBUS_ERR_TIMEOUT = 0x120, /* no response from LOM */
106 LOMBUS_ERR_OFLOW, /* rcv buf oflo - LOM babbling? */
107 LOMBUS_ERR_SEQUENCE, /* cmd/reply sequence mismatch */
108 LOMBUS_ERR_BADSTATUS, /* bad status byte in reply pkt */
109 LOMBUS_ERR_BADERRCODE /* invalid error code in reply */
114 * Time periods, in nanoseconds
116 #define LOMBUS_ONE_SEC 1000000000LL
117 #define LOMBUS_MIN_PAT (LOMBUS_ONE_SEC/5)
118 #define LOMBUS_CMD_TIMEOUT (LOMBUS_ONE_SEC*5)
121 #ifdef __cplusplus
123 #endif
125 #endif /* _SYS_LOMBUS_H */