isa_machdep.h revision 1.13.8.2 1 1.13.8.2 matt /* $NetBSD: isa_machdep.h,v 1.13.8.2 2001/06/06 17:42:31 matt Exp $ */
2 1.13.8.2 matt
3 1.13.8.2 matt /*-
4 1.13.8.2 matt * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
5 1.13.8.2 matt * All rights reserved.
6 1.13.8.2 matt *
7 1.13.8.2 matt * This code is derived from software contributed to The NetBSD Foundation
8 1.13.8.2 matt * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.13.8.2 matt * NASA Ames Research Center.
10 1.13.8.2 matt *
11 1.13.8.2 matt * Redistribution and use in source and binary forms, with or without
12 1.13.8.2 matt * modification, are permitted provided that the following conditions
13 1.13.8.2 matt * are met:
14 1.13.8.2 matt * 1. Redistributions of source code must retain the above copyright
15 1.13.8.2 matt * notice, this list of conditions and the following disclaimer.
16 1.13.8.2 matt * 2. Redistributions in binary form must reproduce the above copyright
17 1.13.8.2 matt * notice, this list of conditions and the following disclaimer in the
18 1.13.8.2 matt * documentation and/or other materials provided with the distribution.
19 1.13.8.2 matt * 3. All advertising materials mentioning features or use of this software
20 1.13.8.2 matt * must display the following acknowledgement:
21 1.13.8.2 matt * This product includes software developed by the NetBSD
22 1.13.8.2 matt * Foundation, Inc. and its contributors.
23 1.13.8.2 matt * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.13.8.2 matt * contributors may be used to endorse or promote products derived
25 1.13.8.2 matt * from this software without specific prior written permission.
26 1.13.8.2 matt *
27 1.13.8.2 matt * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.13.8.2 matt * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.13.8.2 matt * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.13.8.2 matt * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.13.8.2 matt * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.13.8.2 matt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.13.8.2 matt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.13.8.2 matt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.13.8.2 matt * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.13.8.2 matt * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.13.8.2 matt * POSSIBILITY OF SUCH DAMAGE.
38 1.13.8.2 matt */
39 1.13.8.2 matt
40 1.13.8.2 matt /*-
41 1.13.8.2 matt * Copyright (c) 1990 The Regents of the University of California.
42 1.13.8.2 matt * All rights reserved.
43 1.13.8.2 matt *
44 1.13.8.2 matt * This code is derived from software contributed to Berkeley by
45 1.13.8.2 matt * William Jolitz.
46 1.13.8.2 matt *
47 1.13.8.2 matt * Redistribution and use in source and binary forms, with or without
48 1.13.8.2 matt * modification, are permitted provided that the following conditions
49 1.13.8.2 matt * are met:
50 1.13.8.2 matt * 1. Redistributions of source code must retain the above copyright
51 1.13.8.2 matt * notice, this list of conditions and the following disclaimer.
52 1.13.8.2 matt * 2. Redistributions in binary form must reproduce the above copyright
53 1.13.8.2 matt * notice, this list of conditions and the following disclaimer in the
54 1.13.8.2 matt * documentation and/or other materials provided with the distribution.
55 1.13.8.2 matt * 3. All advertising materials mentioning features or use of this software
56 1.13.8.2 matt * must display the following acknowledgement:
57 1.13.8.2 matt * This product includes software developed by the University of
58 1.13.8.2 matt * California, Berkeley and its contributors.
59 1.13.8.2 matt * 4. Neither the name of the University nor the names of its contributors
60 1.13.8.2 matt * may be used to endorse or promote products derived from this software
61 1.13.8.2 matt * without specific prior written permission.
62 1.13.8.2 matt *
63 1.13.8.2 matt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
64 1.13.8.2 matt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
65 1.13.8.2 matt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
66 1.13.8.2 matt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
67 1.13.8.2 matt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
68 1.13.8.2 matt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
69 1.13.8.2 matt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
70 1.13.8.2 matt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
71 1.13.8.2 matt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
72 1.13.8.2 matt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 1.13.8.2 matt * SUCH DAMAGE.
74 1.13.8.2 matt *
75 1.13.8.2 matt * @(#)isa.h 5.7 (Berkeley) 5/9/91
76 1.13.8.2 matt */
77 1.13.8.2 matt
78 1.13.8.2 matt /*
79 1.13.8.2 matt * Various pieces of the bebox port want to include this file without
80 1.13.8.2 matt * or in spite of using isavar.h, and should be fixed.
81 1.13.8.2 matt */
82 1.13.8.2 matt
83 1.13.8.2 matt #ifndef _BEBOX_ISA_MACHDEP_H_ /* XXX */
84 1.13.8.2 matt #define _BEBOX_ISA_MACHDEP_H_ /* XXX */
85 1.13.8.2 matt
86 1.13.8.2 matt #include <machine/bus.h>
87 1.13.8.2 matt #include <dev/isa/isadmavar.h>
88 1.13.8.2 matt
89 1.13.8.2 matt /*
90 1.13.8.2 matt * XXX THIS FILE IS A MESS. copyright: berkeley's probably.
91 1.13.8.2 matt * contents from isavar.h and isareg.h, mostly the latter.
92 1.13.8.2 matt * perhaps charles's?
93 1.13.8.2 matt *
94 1.13.8.2 matt * copyright from berkeley's isa.h which is now dev/isa/isareg.h.
95 1.13.8.2 matt */
96 1.13.8.2 matt
97 1.13.8.2 matt /*
98 1.13.8.2 matt * Types provided to machine-independent ISA code.
99 1.13.8.2 matt */
100 1.13.8.2 matt struct bebox_isa_chipset {
101 1.13.8.2 matt struct isa_dma_state ic_dmastate;
102 1.13.8.2 matt };
103 1.13.8.2 matt
104 1.13.8.2 matt typedef struct bebox_isa_chipset *isa_chipset_tag_t;
105 1.13.8.2 matt
106 1.13.8.2 matt struct device; /* XXX */
107 1.13.8.2 matt struct isabus_attach_args; /* XXX */
108 1.13.8.2 matt
109 1.13.8.2 matt /*
110 1.13.8.2 matt * Functions provided to machine-independent ISA code.
111 1.13.8.2 matt */
112 1.13.8.2 matt void isa_attach_hook(struct device *, struct device *,
113 1.13.8.2 matt struct isabus_attach_args *);
114 1.13.8.2 matt const struct evcnt *isa_intr_evcnt(isa_chipset_tag_t ic, int irq);
115 1.13.8.2 matt void *isa_intr_establish(isa_chipset_tag_t ic, int irq, int type,
116 1.13.8.2 matt int level, int (*ih_fun)(void *), void *ih_arg);
117 1.13.8.2 matt void isa_intr_disestablish(isa_chipset_tag_t ic, void *handler);
118 1.13.8.2 matt
119 1.13.8.2 matt #define isa_dmainit(ic, bst, dmat, d) \
120 1.13.8.2 matt _isa_dmainit(&(ic)->ic_dmastate, (bst), (dmat), (d))
121 1.13.8.2 matt #define isa_dmacascade(ic, c) \
122 1.13.8.2 matt _isa_dmacascade(&(ic)->ic_dmastate, (c))
123 1.13.8.2 matt #define isa_dmamaxsize(ic, c) \
124 1.13.8.2 matt _isa_dmamaxsize(&(ic)->ic_dmastate, (c))
125 1.13.8.2 matt #define isa_dmamap_create(ic, c, s, f) \
126 1.13.8.2 matt _isa_dmamap_create(&(ic)->ic_dmastate, (c), (s), (f))
127 1.13.8.2 matt #define isa_dmamap_destroy(ic, c) \
128 1.13.8.2 matt _isa_dmamap_destroy(&(ic)->ic_dmastate, (c))
129 1.13.8.2 matt #define isa_dmastart(ic, c, a, n, p, f, bf) \
130 1.13.8.2 matt _isa_dmastart(&(ic)->ic_dmastate, (c), (a), (n), (p), (f), (bf))
131 1.13.8.2 matt #define isa_dmaabort(ic, c) \
132 1.13.8.2 matt _isa_dmaabort(&(ic)->ic_dmastate, (c))
133 1.13.8.2 matt #define isa_dmacount(ic, c) \
134 1.13.8.2 matt _isa_dmacount(&(ic)->ic_dmastate, (c))
135 1.13.8.2 matt #define isa_dmafinished(ic, c) \
136 1.13.8.2 matt _isa_dmafinished(&(ic)->ic_dmastate, (c))
137 1.13.8.2 matt #define isa_dmadone(ic, c) \
138 1.13.8.2 matt _isa_dmadone(&(ic)->ic_dmastate, (c))
139 1.13.8.2 matt #define isa_dmafreeze(ic) \
140 1.13.8.2 matt _isa_dmafreeze(&(ic)->ic_dmastate)
141 1.13.8.2 matt #define isa_dmathaw(ic) \
142 1.13.8.2 matt _isa_dmathaw(&(ic)->ic_dmastate)
143 1.13.8.2 matt #define isa_dmamem_alloc(ic, c, s, ap, f) \
144 1.13.8.2 matt _isa_dmamem_alloc(&(ic)->ic_dmastate, (c), (s), (ap), (f))
145 1.13.8.2 matt #define isa_dmamem_free(ic, c, a, s) \
146 1.13.8.2 matt _isa_dmamem_free(&(ic)->ic_dmastate, (c), (a), (s))
147 1.13.8.2 matt #define isa_dmamem_map(ic, c, a, s, kp, f) \
148 1.13.8.2 matt _isa_dmamem_map(&(ic)->ic_dmastate, (c), (a), (s), (kp), (f))
149 1.13.8.2 matt #define isa_dmamem_unmap(ic, c, k, s) \
150 1.13.8.2 matt _isa_dmamem_unmap(&(ic)->ic_dmastate, (c), (k), (s))
151 1.13.8.2 matt #define isa_dmamem_mmap(ic, c, a, s, o, p, f) \
152 1.13.8.2 matt _isa_dmamem_mmap(&(ic)->ic_dmastate, (c), (a), (s), (o), (p), (f))
153 1.13.8.2 matt #define isa_drq_isfree(ic, c) \
154 1.13.8.2 matt _isa_drq_isfree(&(ic)->ic_dmastate, (c))
155 1.13.8.2 matt #define isa_malloc(ic, c, s, p, f) \
156 1.13.8.2 matt _isa_malloc(&(ic)->ic_dmastate, (c), (s), (p), (f))
157 1.13.8.2 matt #define isa_free(a, p) \
158 1.13.8.2 matt _isa_free((a), (p))
159 1.13.8.2 matt #define isa_mappage(m, o, p) \
160 1.13.8.2 matt _isa_mappage((m), (o), (p))
161 1.13.8.2 matt
162 1.13.8.2 matt /*
163 1.13.8.2 matt * ALL OF THE FOLLOWING ARE MACHINE-DEPENDENT, AND SHOULD NOT BE USED
164 1.13.8.2 matt * BY PORTABLE CODE.
165 1.13.8.2 matt */
166 1.13.8.2 matt
167 1.13.8.2 matt #define isa_outb(x,y) outb(BEBOX_BUS_SPACE_IO + (x), y)
168 1.13.8.2 matt #define isa_inb(x) inb(BEBOX_BUS_SPACE_IO + (x))
169 1.13.8.2 matt
170 1.13.8.2 matt extern struct powerpc_bus_dma_tag isa_bus_dma_tag;
171 1.13.8.2 matt
172 1.13.8.2 matt /*
173 1.13.8.2 matt * XXX Various seemingly PC-specific constants, some of which may be
174 1.13.8.2 matt * unnecessary anyway.
175 1.13.8.2 matt */
176 1.13.8.2 matt
177 1.13.8.2 matt /*
178 1.13.8.2 matt * stuff that used to be in pccons.c
179 1.13.8.2 matt */
180 1.13.8.2 matt #define MONO_BASE 0x3B4
181 1.13.8.2 matt #define MONO_BUF 0xB0000
182 1.13.8.2 matt #define CGA_BASE 0x3D4
183 1.13.8.2 matt #define CGA_BUF 0xB8000
184 1.13.8.2 matt
185 1.13.8.2 matt /*
186 1.13.8.2 matt * Miscellanous functions.
187 1.13.8.2 matt */
188 1.13.8.2 matt void sysbeep(int, int); /* beep with the system speaker */
189 1.13.8.2 matt
190 1.13.8.2 matt #endif /* _BEBOX_ISA_MACHDEP_H_ XXX */
191