dbrireg.h revision 1.1 1 1.1 macallan /* $NetBSD: dbrireg.h,v 1.1 2005/07/16 18:58:50 macallan Exp $ */
2 1.1 macallan
3 1.1 macallan /*
4 1.1 macallan * Copyright (c) 2001 Jared D. McNeill <jmcneill (at) invisible.yi.org>
5 1.1 macallan * All rights reserved.
6 1.1 macallan *
7 1.1 macallan * Redistribution and use in source and binary forms, with or without
8 1.1 macallan * modification, are permitted provided that the following conditions
9 1.1 macallan * are met:
10 1.1 macallan * 1. Redistributions of source code must retain the above copyright
11 1.1 macallan * notice, this list of conditions and the following disclaimer.
12 1.1 macallan * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 macallan * notice, this list of conditions and the following disclaimer in the
14 1.1 macallan * documentation and/or other materials provided with the distribution.
15 1.1 macallan * 3. All advertising materials mentioning features or use of this software
16 1.1 macallan * must display the following acknowledgement:
17 1.1 macallan * This product includes software developed by Jared D. McNeill.
18 1.1 macallan * 4. Neither the name of the author nor the names of any contributors may
19 1.1 macallan * be used to endorse or promote products derived from this software
20 1.1 macallan * without specific prior written permission.
21 1.1 macallan *
22 1.1 macallan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 macallan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 macallan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 macallan * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 macallan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 macallan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 macallan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 macallan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 macallan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 macallan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 macallan * SUCH DAMAGE.
33 1.1 macallan *
34 1.1 macallan */
35 1.1 macallan
36 1.1 macallan #define DBRI_REG0 0x00L /* status and control */
37 1.1 macallan #define DBRI_COMMAND_VALID (1<<15)
38 1.1 macallan #define DBRI_BURST_4 (1<<14) /* allow 4-word sbus bursts */
39 1.1 macallan #define DBRI_BURST_16 (1<<13) /* allow 16-word sbus bursts */
40 1.1 macallan #define DBRI_BURST_8 (1<<12) /* allow 8-word sbus bursts */
41 1.1 macallan #define DBRI_CHI_ACTIVATE (1<<4) /* allow activation of CHI interface */
42 1.1 macallan #define DBRI_DISABLE_MASTER (1<<2) /* disable master mode */
43 1.1 macallan #define DBRI_SOFT_RESET (1<<0) /* soft reset */
44 1.1 macallan #define DBRI_REG1 0x04UL /* mode and interrupt */
45 1.1 macallan #define DBRI_MRR (1<<4) /* multiple error ack on sbus */
46 1.1 macallan #define DBRI_MLE (1<<3) /* multiple late error on sbus */
47 1.1 macallan #define DBRI_LBG (1<<2) /* lost bus grant on sbus */
48 1.1 macallan #define DBRI_MBE (1<<1) /* burst error on sbus */
49 1.1 macallan #define DBRI_REG2 0x08UL /* parallel I/O */
50 1.1 macallan #define DBRI_PIO2_ENABLE (1<<6) /* enable pin 2 */
51 1.1 macallan #define DBRI_PIO_ENABLE_ALL (0xf0) /* enable all the pins */
52 1.1 macallan #define DBRI_PIO3 (1<<3) /* pin 3: 1: data mode, 0: ctrl mode */
53 1.1 macallan #define DBRI_PIO2 (1<<2) /* pin 2: 1: onboard PDN */ /* XXX according to SPARCbook manual this is RESET */
54 1.1 macallan #define DBRI_PIO1 (1<<1) /* pin 1: 0: reset */ /* XXX according to SPARCbook manual this is PDN */
55 1.1 macallan #define DBRI_PIO0 (1<<0) /* pin 0: 1: speakerbox PDN */
56 1.1 macallan #define DBRI_REG8 0x20UL /* command queue pointer */
57 1.1 macallan #define DBRI_COMMAND_WAIT 0x0
58 1.1 macallan #define DBRI_COMMAND_PAUSE 0x1
59 1.1 macallan #define DBRI_COMMAND_IIQ 0x3
60 1.1 macallan #define DBRI_COMMAND_SDP 0x5
61 1.1 macallan #define DBRI_COMMAND_CDP 0x6
62 1.1 macallan #define DBRI_COMMAND_DTS 0x7
63 1.1 macallan #define DBRI_COMMAND_SSP 0x8
64 1.1 macallan #define DBRI_COMMAND_CHI 0x9
65 1.1 macallan #define DBRI_COMMAND_CDM 0xe /* CHI data mode */
66 1.1 macallan
67 1.1 macallan /* interrupts */
68 1.1 macallan #define DBRI_INTR_BRDY 1 /* buffer ready for processing */
69 1.1 macallan #define DBRI_INTR_XCMP 8 /* transmission of frame complete */
70 1.1 macallan #define DBRI_INTR_SBRI 9 /* BRI status change info */
71 1.1 macallan #define DBRI_INTR_FXDT 10 /* fixed data change */
72 1.1 macallan #define DBRI_INTR_UNDR 15 /* DMA underrun */
73 1.1 macallan
74 1.1 macallan #define DBRI_INTR_CMD 38
75 1.1 macallan
76 1.1 macallan /* setup data pipe */
77 1.1 macallan /* IRM */
78 1.1 macallan #define DBRI_SDP_2SAME (1<<18) /* report 2nd time in a row recv val */
79 1.1 macallan #define DBRI_SDP_CHANGE (2<<18) /* report any changes */
80 1.1 macallan #define DBRI_SDP_EVERY (3<<18) /* report any changes */
81 1.1 macallan /* pipe data mode */
82 1.1 macallan #define DBRI_SDP_FIXED (6<<13) /* short only */
83 1.1 macallan #define DBRI_SDP_TO_SER (1<<12) /* direction */
84 1.1 macallan #define DBRI_SDP_FROM_SER (0<<12) /* direction */
85 1.1 macallan #define DBRI_SDP_CLEAR (1<<7) /* clear */
86 1.1 macallan #define DBRI_SDP_VALID_POINTER (1<<10) /* pointer valid */
87 1.1 macallan #define DBRI_SDP_MEM (0<<13) /* to/from memory */
88 1.1 macallan #define DBRI_SDP_MSB (1<<11) /* bit order */
89 1.1 macallan #define DBRI_SDP_LSB (0<<11) /* bit order */
90 1.1 macallan
91 1.1 macallan /* define time slot */
92 1.1 macallan #define DBRI_DTS_VI (1<<17) /* valid input time-slot descriptor */
93 1.1 macallan #define DBRI_DTS_VO (1<<16) /* valid output time-slot descriptor */
94 1.1 macallan #define DBRI_DTS_INS (1<<15) /* insert time-slot */
95 1.1 macallan #define DBRI_DTS_DEL (0<<15) /* delete time-slot */
96 1.1 macallan #define DBRI_DTS_PRVIN(v) ((v)<<10) /* previous in-pipe */
97 1.1 macallan #define DBRI_DTS_PRVOUT(v) ((v)<<5) /* previous out-pipe */
98 1.1 macallan
99 1.1 macallan /* time slot defines */
100 1.1 macallan #define DBRI_TS_ANCHOR (7<<10) /* starting short pipes */
101 1.1 macallan #define DBRI_TS_NEXT(v) ((v)<<0) /* pipe #: 0-15 long, 16-21 short */
102 1.1 macallan #define DBRI_TS_LEN(v) ((v)<<24) /* # of bits in this timeslot */
103 1.1 macallan #define DBRI_TS_CYCLE(v) ((v)<<14) /* bit count at start of cycle */
104 1.1 macallan
105 1.1 macallan /* concentration highway interface (CHI) modes */
106 1.1 macallan #define DBRI_CHI_CHICM(v) ((v)<<16) /* clock mode */
107 1.1 macallan #define DBRI_CHI_BPF(v) ((v)<<0) /* bits per frame */
108 1.1 macallan #define DBRI_CHI_FD (1<<11) /* frame drive */
109 1.1 macallan
110 1.1 macallan /* CHI data mode */
111 1.1 macallan #define DBRI_CDM_XCE (1<<2) /* transmit on rising edge of CHICK */
112 1.1 macallan #define DBRI_CDM_XEN (1<<1) /* transmit highway enable */
113 1.1 macallan #define DBRI_CDM_REN (1<<0) /* receive highway enable */
114 1.1 macallan
115 1.1 macallan /* transmit descriptor defines */
116 1.1 macallan #define DBRI_TD_CNT(v) ((v)<<16) /* # valid bytes in buffer */
117 1.1 macallan #define DBRI_TD_STATUS(v) ((v)&0xff) /* transmit status */
118 1.1 macallan #define DBRI_TD_EOF (1<<31) /* end of frame */
119 1.1 macallan #define DBRI_TD_FINAL (1<<15) /* final interrupt */
120 1.1 macallan #define DBRI_TD_IDLE (1<<13) /* transmit idle characters */
121 1.1 macallan #define DBRI_TD_TBC (1<<0) /* transmit buffer complete */
122