sa11x0_io.c revision 1.4 1 /* $NetBSD: sa11x0_io.c,v 1.4 2001/09/12 12:32:16 rjs Exp $ */
2
3 /*
4 * Copyright (c) 1997 Mark Brinicombe.
5 * Copyright (c) 1997 Causality Limited.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Ichiro FUKUHARA.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by Mark Brinicombe.
22 * 4. The name of the company nor the name of the author may be used to
23 * endorse or promote products derived from this software without specific
24 * prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
27 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
30 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
31 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
32 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
39 /*
40 * bus_space I/O functions for sa11x0
41 */
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/queue.h>
46
47 #include <uvm/uvm.h>
48
49 #include <machine/bus.h>
50 #include <machine/pmap.h>
51 #include <machine/pte.h>
52
53 /* Proto types for all the bus_space structure functions */
54
55 bs_protos(sa11x0);
56 bs_protos(bs_notimpl);
57
58 /* Declare the sa11x0 bus space tag */
59
60 struct bus_space sa11x0_bs_tag = {
61 /* cookie */
62 NULL,
63
64 /* mapping/unmapping */
65 sa11x0_bs_map,
66 sa11x0_bs_unmap,
67 sa11x0_bs_subregion,
68
69 /* allocation/deallocation */
70 sa11x0_bs_alloc,
71 sa11x0_bs_free,
72
73 /* get kernel virtual address */
74 sa11x0_bs_vaddr,
75
76 /* mmap bus space for userland */
77 bs_notimpl_bs_mmap,
78
79 /* barrier */
80 sa11x0_bs_barrier,
81
82 /* read (single) */
83 sa11x0_bs_r_1,
84 sa11x0_bs_r_2,
85 sa11x0_bs_r_4,
86 bs_notimpl_bs_r_8,
87
88 /* read multiple */
89 sa11x0_bs_rm_1,
90 sa11x0_bs_rm_2,
91 sa11x0_bs_rm_4,
92 bs_notimpl_bs_rm_8,
93
94 /* read region */
95 bs_notimpl_bs_rr_1,
96 sa11x0_bs_rr_2,
97 bs_notimpl_bs_rr_4,
98 bs_notimpl_bs_rr_8,
99
100 /* write (single) */
101 sa11x0_bs_w_1,
102 sa11x0_bs_w_2,
103 sa11x0_bs_w_4,
104 bs_notimpl_bs_w_8,
105
106 /* write multiple */
107 sa11x0_bs_wm_1,
108 sa11x0_bs_wm_2,
109 sa11x0_bs_wm_4,
110 bs_notimpl_bs_wm_8,
111
112 /* write region */
113 bs_notimpl_bs_wr_1,
114 sa11x0_bs_wr_2,
115 bs_notimpl_bs_wr_4,
116 bs_notimpl_bs_wr_8,
117
118 /* set multiple */
119 bs_notimpl_bs_sm_1,
120 bs_notimpl_bs_sm_2,
121 bs_notimpl_bs_sm_4,
122 bs_notimpl_bs_sm_8,
123
124 /* set region */
125 bs_notimpl_bs_sr_1,
126 sa11x0_bs_sr_2,
127 bs_notimpl_bs_sr_4,
128 bs_notimpl_bs_sr_8,
129
130 /* copy */
131 bs_notimpl_bs_c_1,
132 sa11x0_bs_c_2,
133 bs_notimpl_bs_c_4,
134 bs_notimpl_bs_c_8,
135 };
136
137 /* bus space functions */
138
139 int
140 sa11x0_bs_map(t, bpa, size, cacheable, bshp)
141 void *t;
142 bus_addr_t bpa;
143 bus_size_t size;
144 int cacheable;
145 bus_space_handle_t *bshp;
146 {
147 u_long startpa, endpa, pa;
148 vaddr_t va;
149 pt_entry_t *pte;
150
151 if ((u_long)bpa > (u_long)KERNEL_SPACE_START) {
152 /* XXX This is a temporary hack to aid transition. */
153 *bshp = bpa;
154 return(0);
155 }
156
157 startpa = trunc_page(bpa);
158 endpa = round_page(bpa + size);
159
160 /* XXX use extent manager to check duplicate mapping */
161
162 va = uvm_km_valloc(kernel_map, endpa - startpa);
163 if (! va)
164 return(ENOMEM);
165
166 *bshp = (bus_space_handle_t)(va + (bpa - startpa));
167
168 for(pa = startpa; pa < endpa; pa += PAGE_SIZE, va += PAGE_SIZE) {
169 pmap_kenter_pa(va, pa, VM_PROT_READ | VM_PROT_WRITE);
170 pte = pmap_pte(pmap_kernel(), va);
171 if (cacheable)
172 *pte |= PT_CACHEABLE;
173 else
174 *pte &= ~PT_CACHEABLE;
175 }
176 pmap_update(pmap_kernel());
177
178 return(0);
179 }
180
181 int
182 sa11x0_bs_alloc(t, rstart, rend, size, alignment, boundary, cacheable,
183 bpap, bshp)
184 void *t;
185 bus_addr_t rstart, rend;
186 bus_size_t size, alignment, boundary;
187 int cacheable;
188 bus_addr_t *bpap;
189 bus_space_handle_t *bshp;
190 {
191 panic("sa11x0_alloc(): Help!\n");
192 }
193
194
195 void
196 sa11x0_bs_unmap(t, bsh, size)
197 void *t;
198 bus_space_handle_t bsh;
199 bus_size_t size;
200 {
201 /*
202 * Temporary implementation
203 */
204 }
205
206 void
207 sa11x0_bs_free(t, bsh, size)
208 void *t;
209 bus_space_handle_t bsh;
210 bus_size_t size;
211 {
212
213 panic("sa11x0_free(): Help!\n");
214 /* sa11x0_unmap() does all that we need to do. */
215 /* sa11x0_unmap(t, bsh, size);*/
216 }
217
218 int
219 sa11x0_bs_subregion(t, bsh, offset, size, nbshp)
220 void *t;
221 bus_space_handle_t bsh;
222 bus_size_t offset, size;
223 bus_space_handle_t *nbshp;
224 {
225
226 *nbshp = bsh + offset;
227 return (0);
228 }
229
230 void *
231 sa11x0_bs_vaddr(t, bsh)
232 void *t;
233 bus_space_handle_t bsh;
234 {
235 return ((void *)bsh);
236 }
237
238 void
239 sa11x0_bs_barrier(t, bsh, offset, len, flags)
240 void *t;
241 bus_space_handle_t bsh;
242 bus_size_t offset, len;
243 int flags;
244 {
245 /* NULL */
246 }
247
248 /* End of sa11x0_io.c */
249