Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / acorn32 / eb7500atx / rsbus_io.c
blob73262d4859ba1449943d87a410ed1cd6d79d5754
1 /* $NetBSD: rsbus_io.c,v 1.1.4.3 2004/09/21 13:11:27 skrll Exp $ */
3 /*
4 * Copyright (c) 1997 Mark Brinicombe.
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Mark Brinicombe.
18 * 4. The name of the company nor the name of the author may be used to
19 * endorse or promote products derived from this software without specific
20 * prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
36 * bus_space I/O functions for rsbus
39 #include <sys/cdefs.h>
40 __KERNEL_RCSID(0, "$NetBSD: rsbus_io.c,v 1.1.4.3 2004/09/21 13:11:27 skrll Exp $");
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <machine/bus.h>
46 /* Proto types for all the bus_space structure functions */
48 bs_protos(rsbus);
49 bs_protos(bs_notimpl);
50 bs_protos(mainbus);
52 /* Declare the rsbus bus space tag */
53 struct bus_space rsbus_bs_tag = {
54 /* cookie */
55 (void *) 2, /* Shift to apply to registers */
57 /* mapping/unmapping */
58 mainbus_bs_map,
59 mainbus_bs_unmap,
60 mainbus_bs_subregion,
62 /* allocation/deallocation */
63 mainbus_bs_alloc,
64 mainbus_bs_free,
66 /* get kernel virtual address */
67 0, /* there is no linear mapping */
69 /* mmap bus space for userland */
70 mainbus_bs_mmap,
72 /* barrier */
73 mainbus_bs_barrier,
75 /* read (single) */
76 rsbus_bs_r_1,
77 rsbus_bs_r_2,
78 rsbus_bs_r_4,
79 bs_notimpl_bs_r_8,
81 /* read multiple */
82 rsbus_bs_rm_1,
83 rsbus_bs_rm_2,
84 bs_notimpl_bs_rm_4,
85 bs_notimpl_bs_rm_8,
87 /* read region */
88 rsbus_bs_rr_1,
89 rsbus_bs_rr_2,
90 bs_notimpl_bs_rr_4,
91 bs_notimpl_bs_rr_8,
93 /* write (single) */
94 rsbus_bs_w_1,
95 rsbus_bs_w_2,
96 rsbus_bs_w_4,
97 bs_notimpl_bs_w_8,
99 /* write multiple */
100 rsbus_bs_wm_1,
101 rsbus_bs_wm_2,
102 bs_notimpl_bs_wm_4,
103 bs_notimpl_bs_wm_8,
105 /* write region */
106 rsbus_bs_wr_1,
107 rsbus_bs_wr_2,
108 bs_notimpl_bs_wr_4,
109 bs_notimpl_bs_wr_8,
111 /* set multiple */
112 bs_notimpl_bs_sm_1,
113 bs_notimpl_bs_sm_2,
114 bs_notimpl_bs_sm_4,
115 bs_notimpl_bs_sm_8,
117 /* set region */
118 rsbus_bs_sr_1,
119 rsbus_bs_sr_2,
120 bs_notimpl_bs_sr_4,
121 bs_notimpl_bs_sr_8,
123 /* copy */
124 bs_notimpl_bs_c_1,
125 bs_notimpl_bs_c_2,
126 bs_notimpl_bs_c_4,
127 bs_notimpl_bs_c_8,
130 /* bus space functions */
132 /* Rough-and-ready implementations from arm26 */
133 void
134 rsbus_bs_rr_1(void *cookie, bus_space_handle_t bsh,
135 bus_size_t offset, u_int8_t *datap, bus_size_t count)
137 int i;
139 for (i = 0; i < count; i++)
140 datap[i] = rsbus_bs_r_1(cookie, bsh, offset + i);
143 void
144 rsbus_bs_rr_2(void *cookie, bus_space_handle_t bsh,
145 bus_size_t offset, u_int16_t *datap, bus_size_t count)
147 int i;
149 for (i = 0; i < count; i++)
150 datap[i] = rsbus_bs_r_2(cookie, bsh, offset + i);
153 void
154 rsbus_bs_wr_1(void *cookie, bus_space_handle_t bsh,
155 bus_size_t offset, u_int8_t const *datap,
156 bus_size_t count)
158 int i;
160 for (i = 0; i < count; i++)
161 rsbus_bs_w_1(cookie, bsh, offset + i, datap[i]);
164 void
165 rsbus_bs_wr_2(void *cookie, bus_space_handle_t bsh,
166 bus_size_t offset, u_int16_t const *datap,
167 bus_size_t count)
169 int i;
171 for (i = 0; i < count; i++)
172 rsbus_bs_w_2(cookie, bsh, offset + i, datap[i]);
175 void
176 rsbus_bs_sr_1(void *cookie, bus_space_handle_t bsh,
177 bus_size_t offset, u_int8_t value, bus_size_t count)
179 int i;
181 for (i = 0; i < count; i++)
182 rsbus_bs_w_1(cookie, bsh, offset + i, value);
185 void
186 rsbus_bs_sr_2(void *cookie, bus_space_handle_t bsh,
187 bus_size_t offset, u_int16_t value, bus_size_t count)
189 int i;
191 for (i = 0; i < count; i++)
192 rsbus_bs_w_2(cookie, bsh, offset + i, value);