isa_io.c revision 1.6 1 /* $NetBSD: isa_io.c,v 1.6 2009/03/14 15:36:05 dsl Exp $ */
2
3 /*
4 * Copyright 1997
5 * Digital Equipment Corporation. All rights reserved.
6 *
7 * This software is furnished under license and may be used and
8 * copied only in accordance with the following terms and conditions.
9 * Subject to these conditions, you may download, copy, install,
10 * use, modify and distribute this software in source and/or binary
11 * form. No title or ownership is transferred hereby.
12 *
13 * 1) Any source code used, modified or distributed must reproduce
14 * and retain this copyright notice and list of conditions as
15 * they appear in the source file.
16 *
17 * 2) No right is granted to use any trade name, trademark, or logo of
18 * Digital Equipment Corporation. Neither the "Digital Equipment
19 * Corporation" name nor any trademark or logo of Digital Equipment
20 * Corporation may be used to endorse or promote products derived
21 * from this software without the prior written permission of
22 * Digital Equipment Corporation.
23 *
24 * 3) This software is provided "AS-IS" and any express or implied
25 * warranties, including but not limited to, any implied warranties
26 * of merchantability, fitness for a particular purpose, or
27 * non-infringement are disclaimed. In no event shall DIGITAL be
28 * liable for any damages whatsoever, and in particular, DIGITAL
29 * shall not be liable for special, indirect, consequential, or
30 * incidental damages or damages for lost profits, loss of
31 * revenue or loss of use, whether such damages arise in contract,
32 * negligence, tort, under statute, in equity, at law or otherwise,
33 * even if advised of the possibility of such damage.
34 */
35
36 /*
37 * bus_space I/O functions for isa
38 */
39
40 #include <sys/cdefs.h>
41 __KERNEL_RCSID(0, "$NetBSD: isa_io.c,v 1.6 2009/03/14 15:36:05 dsl Exp $");
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/malloc.h>
46 #include <sys/extent.h>
47 #include <machine/bus.h>
48 #include <machine/pio.h>
49 #include <machine/isa_machdep.h>
50
51 /* Proto types for all the bus_space structure functions */
52
53 bs_protos(isa);
54 bs_protos(bs_notimpl);
55 void isa_bs_mallocok(void);
56
57 /*
58 * Declare the isa bus space tags
59 * The IO and MEM structs are identical, except for the cookies,
60 * which contain the address space bases.
61 */
62
63 /*
64 * NOTE: ASSEMBLY LANGUAGE RELIES ON THE COOKIE -- THE FIRST MEMBER OF
65 * THIS STRUCTURE -- TO BE THE VIRTUAL ADDRESS OF 16 BIT ISA/IO!
66 */
67 struct bus_space isa_io_bs_tag = {
68 /* cookie */
69 NULL, /* initialized below */
70
71 /* mapping/unmapping */
72 isa_bs_map,
73 isa_bs_unmap,
74 isa_bs_subregion,
75
76 /* allocation/deallocation */
77 isa_bs_alloc,
78 isa_bs_free,
79
80 /* get kernel virtual address */
81 isa_bs_vaddr,
82
83 /* mmap bus space for userland */
84 bs_notimpl_bs_mmap, /* XXX possible even? XXX */
85
86 /* barrier */
87 isa_bs_barrier,
88
89 /* read (single) */
90 isa_bs_r_1,
91 isa_bs_r_2,
92 isa_bs_r_4,
93 bs_notimpl_bs_r_8,
94
95 /* read multiple */
96 isa_bs_rm_1,
97 isa_bs_rm_2,
98 isa_bs_rm_4,
99 bs_notimpl_bs_rm_8,
100
101 /* read region */
102 isa_bs_rr_1,
103 isa_bs_rr_2,
104 isa_bs_rr_4,
105 bs_notimpl_bs_rr_8,
106
107 /* write (single) */
108 isa_bs_w_1,
109 isa_bs_w_2,
110 isa_bs_w_4,
111 bs_notimpl_bs_w_8,
112
113 /* write multiple */
114 isa_bs_wm_1,
115 isa_bs_wm_2,
116 isa_bs_wm_4,
117 bs_notimpl_bs_wm_8,
118
119 /* write region */
120 isa_bs_wr_1,
121 isa_bs_wr_2,
122 isa_bs_wr_4,
123 bs_notimpl_bs_wr_8,
124
125 /* set multiple */
126 bs_notimpl_bs_sm_1,
127 bs_notimpl_bs_sm_2,
128 bs_notimpl_bs_sm_4,
129 bs_notimpl_bs_sm_8,
130
131 /* set region */
132 bs_notimpl_bs_sr_1,
133 isa_bs_sr_2,
134 bs_notimpl_bs_sr_4,
135 bs_notimpl_bs_sr_8,
136
137 /* copy */
138 bs_notimpl_bs_c_1,
139 bs_notimpl_bs_c_2,
140 bs_notimpl_bs_c_4,
141 bs_notimpl_bs_c_8,
142 };
143
144 /*
145 * NOTE: ASSEMBLY LANGUAGE RELIES ON THE COOKIE -- THE FIRST MEMBER OF
146 * THIS STRUCTURE -- TO BE THE VIRTUAL ADDRESS OF ISA/MEMORY!
147 */
148 struct bus_space isa_mem_bs_tag = {
149 /* cookie */
150 NULL, /* initialized below */
151
152 /* mapping/unmapping */
153 isa_bs_map,
154 isa_bs_unmap,
155 isa_bs_subregion,
156
157 /* allocation/deallocation */
158 isa_bs_alloc,
159 isa_bs_free,
160
161 /* get kernel virtual address */
162 isa_bs_vaddr,
163
164 /* mmap bus space for userland */
165 bs_notimpl_bs_mmap, /* XXX open for now ... XXX */
166
167 /* barrier */
168 isa_bs_barrier,
169
170 /* read (single) */
171 isa_bs_r_1,
172 isa_bs_r_2,
173 isa_bs_r_4,
174 bs_notimpl_bs_r_8,
175
176 /* read multiple */
177 isa_bs_rm_1,
178 isa_bs_rm_2,
179 isa_bs_rm_4,
180 bs_notimpl_bs_rm_8,
181
182 /* read region */
183 isa_bs_rr_1,
184 isa_bs_rr_2,
185 isa_bs_rr_4,
186 bs_notimpl_bs_rr_8,
187
188 /* write (single) */
189 isa_bs_w_1,
190 isa_bs_w_2,
191 isa_bs_w_4,
192 bs_notimpl_bs_w_8,
193
194 /* write multiple */
195 isa_bs_wm_1,
196 isa_bs_wm_2,
197 isa_bs_wm_4,
198 bs_notimpl_bs_wm_8,
199
200 /* write region */
201 isa_bs_wr_1,
202 isa_bs_wr_2,
203 isa_bs_wr_4,
204 bs_notimpl_bs_wr_8,
205
206 /* set multiple */
207 bs_notimpl_bs_sm_1,
208 bs_notimpl_bs_sm_2,
209 bs_notimpl_bs_sm_4,
210 bs_notimpl_bs_sm_8,
211
212 /* set region */
213 bs_notimpl_bs_sr_1,
214 isa_bs_sr_2,
215 bs_notimpl_bs_sr_4,
216 bs_notimpl_bs_sr_8,
217
218 /* copy */
219 bs_notimpl_bs_c_1,
220 bs_notimpl_bs_c_2,
221 bs_notimpl_bs_c_4,
222 bs_notimpl_bs_c_8,
223 };
224
225 static long isaio_ex_storage[EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long)];
226 static long isamem_ex_storage[EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long)];
227 static int malloc_safe = 0;
228 struct extent *isaio_ex;
229 struct extent *isamem_ex;
230
231 void
232 isa_bs_mallocok(void)
233 {
234 malloc_safe = 1;
235 }
236
237 /* bus space functions */
238
239 void
240 isa_io_init(vm_offset_t isa_io_addr, vm_offset_t isa_mem_addr)
241 {
242 isa_io_bs_tag.bs_cookie = (void *)isa_io_addr;
243 isa_mem_bs_tag.bs_cookie = (void *)isa_mem_addr;
244
245 isaio_ex = extent_create("isaio", 0x0, 0xffff, M_DEVBUF,
246 (void *)isaio_ex_storage, sizeof(isaio_ex_storage),
247 EX_NOWAIT|EX_NOCOALESCE);
248 isamem_ex = extent_create("isamem", 0x0, 0xfffff, M_DEVBUF,
249 (void *)isamem_ex_storage, sizeof(isamem_ex_storage),
250 EX_NOWAIT|EX_NOCOALESCE);
251 if (isaio_ex == NULL || isamem_ex == NULL)
252 panic("isa_io_init(): can't alloc extent maps");
253 }
254
255 /*
256 * break the abstraction: sometimes, other parts of the system
257 * (e.g. X servers) need to map ISA space directly. use these
258 * functions sparingly!
259 */
260 vm_offset_t
261 isa_io_data_vaddr(void)
262 {
263 return (vm_offset_t)isa_io_bs_tag.bs_cookie;
264 }
265
266 vm_offset_t
267 isa_mem_data_vaddr(void)
268 {
269 return (vm_offset_t)isa_mem_bs_tag.bs_cookie;
270 }
271
272 int
273 isa_bs_map(void *t, bus_addr_t bpa, bus_size_t size, int cacheable, bus_space_handle_t *bshp)
274 {
275 struct extent *ex;
276 int err;
277
278 if (t == isa_io_bs_tag.bs_cookie)
279 ex = isaio_ex;
280 else
281 ex = isamem_ex;
282
283 err = extent_alloc_region(ex, bpa, size,
284 EX_NOWAIT|(malloc_safe ? EX_MALLOCOK : 0));
285 if (err)
286 return err;
287
288 *bshp = bpa + (bus_addr_t)t;
289 return(0);
290 }
291
292 void
293 isa_bs_unmap(void *t, bus_space_handle_t bsh, bus_size_t size)
294 {
295 isa_bs_free(t, bsh, size);
296 }
297
298 int
299 isa_bs_subregion(t, bsh, offset, size, nbshp)
300 void *t;
301 bus_space_handle_t bsh;
302 bus_size_t offset, size;
303 bus_space_handle_t *nbshp;
304 {
305 *nbshp = bsh + offset;
306 return(0);
307 }
308
309 int
310 isa_bs_alloc(t, rstart, rend, size, alignment, boundary, cacheable,
311 bpap, bshp)
312 void *t;
313 bus_addr_t rstart, rend;
314 bus_size_t size, alignment, boundary;
315 int cacheable;
316 bus_addr_t *bpap;
317 bus_space_handle_t *bshp;
318 {
319 struct extent *ex;
320 u_long bpa;
321 int err;
322
323 if (t == isa_io_bs_tag.bs_cookie)
324 ex = isaio_ex;
325 else
326 ex = isamem_ex;
327
328 err = extent_alloc_subregion(ex, rstart, rend, size, alignment,
329 boundary, (EX_FAST|EX_NOWAIT|(malloc_safe ? EX_MALLOCOK : 0)),
330 &bpa);
331
332 if (err)
333 return err;
334
335 *bshp = *bpap = bpa + (bus_addr_t)t;
336 return 0;
337 }
338
339 void
340 isa_bs_free(void *t, bus_space_handle_t bsh, bus_size_t size)
341 {
342 struct extent *ex;
343
344 if (t == isa_io_bs_tag.bs_cookie)
345 ex = isaio_ex;
346 else
347 ex = isamem_ex;
348
349 extent_free(ex, bsh - (bus_addr_t)t, size,
350 EX_NOWAIT|(malloc_safe ? EX_MALLOCOK : 0));
351 }
352
353 void *
354 isa_bs_vaddr(void *t, bus_space_handle_t bsh)
355 {
356
357 return ((void *)bsh);
358 }
359
360 void
361 isa_bs_barrier(t, bsh, offset, len, flags)
362 void *t;
363 bus_space_handle_t bsh;
364 bus_size_t offset, len;
365 int flags;
366 {
367 /* just return */
368 }
369