isa_machdep.h revision 1.1 1 1.1 matt /* $NetBSD: isa_machdep.h,v 1.1 2003/10/19 03:33:50 matt Exp $ */
2 1.1 matt
3 1.1 matt /*-
4 1.1 matt * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
5 1.1 matt * All rights reserved.
6 1.1 matt *
7 1.1 matt * This code is derived from software contributed to The NetBSD Foundation
8 1.1 matt * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1 matt * NASA Ames Research Center.
10 1.1 matt *
11 1.1 matt * Redistribution and use in source and binary forms, with or without
12 1.1 matt * modification, are permitted provided that the following conditions
13 1.1 matt * are met:
14 1.1 matt * 1. Redistributions of source code must retain the above copyright
15 1.1 matt * notice, this list of conditions and the following disclaimer.
16 1.1 matt * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 matt * notice, this list of conditions and the following disclaimer in the
18 1.1 matt * documentation and/or other materials provided with the distribution.
19 1.1 matt * 3. All advertising materials mentioning features or use of this software
20 1.1 matt * must display the following acknowledgement:
21 1.1 matt * This product includes software developed by the NetBSD
22 1.1 matt * Foundation, Inc. and its contributors.
23 1.1 matt * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 matt * contributors may be used to endorse or promote products derived
25 1.1 matt * from this software without specific prior written permission.
26 1.1 matt *
27 1.1 matt * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 matt * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 matt * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 matt * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 matt * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 matt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 matt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 matt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 matt * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 matt * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 matt * POSSIBILITY OF SUCH DAMAGE.
38 1.1 matt */
39 1.1 matt
40 1.1 matt /*-
41 1.1 matt * Copyright (c) 1990 The Regents of the University of California.
42 1.1 matt * All rights reserved.
43 1.1 matt *
44 1.1 matt * This code is derived from software contributed to Berkeley by
45 1.1 matt * William Jolitz.
46 1.1 matt *
47 1.1 matt * Redistribution and use in source and binary forms, with or without
48 1.1 matt * modification, are permitted provided that the following conditions
49 1.1 matt * are met:
50 1.1 matt * 1. Redistributions of source code must retain the above copyright
51 1.1 matt * notice, this list of conditions and the following disclaimer.
52 1.1 matt * 2. Redistributions in binary form must reproduce the above copyright
53 1.1 matt * notice, this list of conditions and the following disclaimer in the
54 1.1 matt * documentation and/or other materials provided with the distribution.
55 1.1 matt * 3. All advertising materials mentioning features or use of this software
56 1.1 matt * must display the following acknowledgement:
57 1.1 matt * This product includes software developed by the University of
58 1.1 matt * California, Berkeley and its contributors.
59 1.1 matt * 4. Neither the name of the University nor the names of its contributors
60 1.1 matt * may be used to endorse or promote products derived from this software
61 1.1 matt * without specific prior written permission.
62 1.1 matt *
63 1.1 matt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
64 1.1 matt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
65 1.1 matt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
66 1.1 matt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
67 1.1 matt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
68 1.1 matt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
69 1.1 matt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
70 1.1 matt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
71 1.1 matt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
72 1.1 matt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 1.1 matt * SUCH DAMAGE.
74 1.1 matt *
75 1.1 matt * @(#)isa.h 5.7 (Berkeley) 5/9/91
76 1.1 matt */
77 1.1 matt
78 1.1 matt /*
79 1.1 matt * Various pieces of the prep port want to include this file without
80 1.1 matt * or in spite of using isavar.h, and should be fixed.
81 1.1 matt */
82 1.1 matt
83 1.1 matt #ifndef _IBMNWS_ISA_MACHDEP_H_
84 1.1 matt #define _IBMNWS_ISA_MACHDEP_H_
85 1.1 matt
86 1.1 matt #include <machine/bus.h>
87 1.1 matt #include <dev/isa/isadmavar.h>
88 1.1 matt #include <powerpc/isa_machdep.h>
89 1.1 matt
90 1.1 matt /*
91 1.1 matt * ALL OF THE FOLLOWING ARE MACHINE-DEPENDENT, AND SHOULD NOT BE USED
92 1.1 matt * BY PORTABLE CODE.
93 1.1 matt */
94 1.1 matt
95 1.1 matt #define isa_outb(x,y) outb(PREP_BUS_SPACE_IO + (x), y)
96 1.1 matt #define isa_inb(x) inb(PREP_BUS_SPACE_IO + (x))
97 1.1 matt
98 1.1 matt extern struct powerpc_bus_space isa_io_bus_space_tag;
99 1.1 matt extern struct powerpc_bus_space isa_mem_bus_space_tag;
100 1.1 matt extern struct powerpc_bus_dma_tag isa_bus_dma_tag;
101 1.1 matt
102 1.1 matt /*
103 1.1 matt * XXX Various seemingly PC-specific constants, some of which may be
104 1.1 matt * unnecessary anyway.
105 1.1 matt */
106 1.1 matt
107 1.1 matt /*
108 1.1 matt * stuff that used to be in pccons.c
109 1.1 matt */
110 1.1 matt #define MONO_BASE 0x3B4
111 1.1 matt #define MONO_BUF 0xB0000
112 1.1 matt #define CGA_BASE 0x3D4
113 1.1 matt #define CGA_BUF 0xB8000
114 1.1 matt
115 1.1 matt /*
116 1.1 matt * Miscellanous functions.
117 1.1 matt */
118 1.1 matt void isabeep(int, int); /* beep with the system speaker */
119 1.1 matt void init_icu(int); /* change ELCR */
120 1.1 matt
121 1.1 matt #endif /* _IBMNWS_ISA_MACHDEP_H_ */
122