uts: make emu10k non-verbose
[unleashed.git] / include / sys / lombus.h
bloba5bbb588dab691b5306601089b7b5aeb4ce315a4
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 #pragma ident "%Z%%M% %I% %E% SMI"
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
37 * Information for client (child) drivers:
39 * Register space definitions
40 * Fault info access
41 * Fault codes
43 * LOMbus child regspecs are triples, in the form
44 * <space>, <base>, <size>
46 typedef struct {
47 int lombus_space;
48 int lombus_base;
49 int lombus_size;
50 } lombus_regspec_t;
52 #define LOMBUS_REGSPEC_SIZE 3 /* words/regspec */
56 * Register spaces
58 * Space Size Range Meaning
59 * (bits)
61 * 0 8 [0 .. 16383] LOM virtual registers
62 * 1 8 [0] Watchdog pat (on write)
63 * 2 16 [0] Async event info (read only)
64 * All 32 [-4 .. -12] Access handle fault info
66 #define LOMBUS_VREG_SPACE (0)
67 #define LOMBUS_PAT_SPACE (1)
68 #define LOMBUS_EVENT_SPACE (2)
70 #define LOMBUS_MAX_REG (16383) /* space 0: [0..16383] */
71 #define LOMBUS_PAT_REG (0) /* space 1: [0] */
72 #define LOMBUS_EVENT_REG (0) /* space 2: [0] */
74 #define LOMBUS_FAULT_REG (-4) /* 32-bit only, R/W */
75 #define LOMBUS_PROBE_REG (-8) /* 32-bit only, R/W */
76 #define LOMBUS_ASYNC_REG (-12) /* 32-bit only, R/O */
80 * Internally-generated errors
82 * Note: LOM-generated errors are 0x00-0x7f and SunVTS uses 0x80-0xff,
83 * so these start at 0x100
85 enum lombus_errs {
86 LOMBUS_ERR_BASE = 0x100,
89 * Errors in the way the child is accessing the virtual registers.
90 * These are programming errors and won't go away on retry!
92 LOMBUS_ERR_REG_NUM, /* register number out of range */
93 LOMBUS_ERR_REG_RO, /* write to read-only register */
94 LOMBUS_ERR_REG_SIZE, /* access with invalid size */
97 * Error accessing the underlying SIO hardware
98 * This is unlikely to be recoverable.
100 LOMBUS_ERR_SIOHW = 0x110,
103 * Errors in the LOMbus <-> LOM firmware protocol
104 * These may or may not be recoverable, depending
105 * on the state of the LOM.
107 LOMBUS_ERR_TIMEOUT = 0x120, /* no response from LOM */
108 LOMBUS_ERR_OFLOW, /* rcv buf oflo - LOM babbling? */
109 LOMBUS_ERR_SEQUENCE, /* cmd/reply sequence mismatch */
110 LOMBUS_ERR_BADSTATUS, /* bad status byte in reply pkt */
111 LOMBUS_ERR_BADERRCODE /* invalid error code in reply */
116 * Time periods, in nanoseconds
118 #define LOMBUS_ONE_SEC 1000000000LL
119 #define LOMBUS_MIN_PAT (LOMBUS_ONE_SEC/5)
120 #define LOMBUS_CMD_TIMEOUT (LOMBUS_ONE_SEC*5)
123 #ifdef __cplusplus
125 #endif
127 #endif /* _SYS_LOMBUS_H */