]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/sparc64/ebus/ebusreg.h
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / sparc64 / ebus / ebusreg.h
1 /*      $FreeBSD$       */
2 /*      $OpenBSD: ebusreg.h,v 1.4 2001/10/01 18:08:04 jason Exp $       */
3 /*      $NetBSD: ebusreg.h,v 1.1 1999/06/04 13:29:13 mrg Exp $  */
4
5 /*-
6  * Copyright (c) 1999 Matthew R. Green
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. The name of the author may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  */
33
34 /*
35  * UltraSPARC `ebus'
36  *
37  * The `ebus' bus is designed to plug traditional PC-ISA devices into
38  * an SPARC system with as few costs as possible, without sacrificing
39  * to performance.  Typically, it is implemented in the PCIO IC from
40  * SME, which also implements a `hme-compatible' PCI network device
41  * (`network').  The ebus has 4 DMA channels, similar to the DMA seen
42  * in the ESP SCSI DMA.
43  *
44  * Typical UltraSPARC systems have a NatSemi SuperIO IC to provide
45  * serial ports for the keyboard and mouse (`se'), floppy disk
46  * controller (`fdthree'), parallel port controller (`bpp') connected
47  * to the ebus, and a PCI-IDE controller (connected directly to the
48  * PCI bus, of course), as well as a Siemens Nixdorf SAB82532 dual
49  * channel serial controller (`su' providing ttya and ttyb), an MK48T59
50  * EEPROM/clock controller (also where the idprom, including the
51  * ethernet address, is located), the audio system (`SUNW,CS4231', same
52  * as other UltraSPARC and some SPARC systems), and other various
53  * internal devices found on traditional SPARC systems such as the
54  * `power', `flashprom', etc., devices.
55  *
56  * The ebus uses an interrupt mapping scheme similar to PCI, though
57  * the actual structures are different.
58  */
59
60 /* EBUS dma registers */
61 #define EBDMA_DCSR              0x0             /* control/status */
62 #define EBDMA_DADDR             0x4             /* DMA address */
63 #define EBDMA_DCNT              0x8             /* DMA count */
64
65 /* EBUS DMA control/status (EBDMA_DCSR) */
66 #define EBDCSR_INT              0x00000001      /* interrupt pending */
67 #define EBDCSR_ERR              0x00000002      /* error pending */
68 #define EBDCSR_DRAIN            0x00000004      /* drain */
69 #define EBDCSR_INTEN            0x00000010      /* interrupt enable */
70 #define EBDCSR_RESET            0x00000080      /* reset */
71 #define EBDCSR_WRITE            0x00000100      /* write */
72 #define EBDCSR_DMAEN            0x00000200      /* dma enable */
73 #define EBDCSR_CYC              0x00000400      /* cyc pending */
74 #define EBDCSR_DIAGRD           0x00000800      /* diagnostic read done */
75 #define EBDCSR_DIAGWR           0x00001000      /* diagnostic write done */
76 #define EBDCSR_CNTEN            0x00002000      /* count enable */
77 #define EBDCSR_TC               0x00004000      /* terminal count */
78 #define EBDCSR_CSRDRNDIS        0x00010000      /* disable csr drain */
79 #define EBDCSR_BURSTMASK        0x000c0000      /* burst size mask */
80 #define EBDCSR_BURST_1          0x00080000      /* burst 1 */
81 #define EBDCSR_BURST_4          0x00000000      /* burst 4 */
82 #define EBDCSR_BURST_8          0x00040000      /* burst 8 */
83 #define EBDCSR_BURST_16         0x000c0000      /* burst 16 */
84 #define EBDCSR_DIAGEN           0x00100000      /* enable diagnostics */
85 #define EBDCSR_ERRDIS           0x00400000      /* disable error pending */
86 #define EBDCSR_TCIDIS           0x00800000      /* disable TCI */
87 #define EBDCSR_NEXTEN           0x01000000      /* enable next */
88 #define EBDCSR_DMAON            0x02000000      /* dma on */
89 #define EBDCSR_A_LOADED         0x04000000      /* address loaded */
90 #define EBDCSR_NA_LOADED        0x08000000      /* next address loaded */
91 #define EBDCSR_DEVMASK          0xf0000000      /* device id mask */