1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
|
/* $OpenBSD: cross.c,v 1.9 1997/01/05 02:04:33 niklas Exp $ */
/*
* Copyright (c) 1994, 1996 Niklas Hallqvist, Carsten Hammer
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Niklas Hallqvist.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/syslog.h>
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/bus.h>
#include <machine/cpu.h>
#include <machine/intr.h>
#include <dev/isa/isavar.h>
#include <amiga/amiga/custom.h>
#include <amiga/amiga/device.h>
#include <amiga/amiga/isr.h>
#include <amiga/dev/zbusvar.h>
#include <amiga/isa/isa_machdep.h>
#include <amiga/isa/crossreg.h>
#include <amiga/isa/crossvar.h>
extern int cold;
int crossdebug = 0;
void crossattach __P((struct device *, struct device *, void *));
int crossmatch __P((struct device *, void *, void *));
int crossprint __P((void *, const char *));
int cross_io_map __P((bus_space_tag_t, bus_addr_t, bus_size_t, int,
bus_space_handle_t *));
int cross_mem_map __P((bus_space_tag_t, bus_addr_t, bus_size_t, int,
bus_space_handle_t *));
int cross_io_unmap __P((bus_space_tag_t, bus_space_handle_t, bus_size_t));
int cross_mem_unmap __P((bus_space_tag_t, bus_space_handle_t, bus_size_t));
int crossintr __P((void *));
void cross_attach_hook __P((struct device *, struct device *,
struct isabus_attach_args *));
void *cross_intr_establish __P((void *, int, int, int, int (*)(void *),
void *, char *));
void cross_intr_disestablish __P((void *, void *));
int cross_pager_get_pages __P((vm_pager_t, vm_page_t *, int, boolean_t));
struct cfattach cross_ca = {
sizeof(struct cross_softc), crossmatch, crossattach
};
struct cfdriver cross_cd = {
NULL, "cross", DV_DULL, 0
};
struct pagerops crosspagerops = {
NULL,
NULL,
NULL,
cross_pager_get_pages,
NULL,
NULL,
vm_pager_clusternull,
NULL,
NULL,
NULL
};
struct pager_struct cross_pager;
int
crossmatch(parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct zbus_args *zap = aux;
/*
* Check manufacturer and product id.
*/
if (zap->manid == 2011 && zap->prodid == 3)
return(1);
return(0);
}
void
crossattach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct cross_softc *sc = (struct cross_softc *)self;
struct zbus_args *zap = aux;
struct isabus_attach_args iba;
int i;
bcopy(zap, &sc->sc_zargs, sizeof(struct zbus_args));
sc->sc_status = CROSS_STATUS_ADDR(zap->va);
sc->sc_imask = 1 << CROSS_MASTER;
sc->sc_iot.bs_data = sc;
sc->sc_iot.bs_map = cross_io_map;
sc->sc_iot.bs_unmap = cross_io_unmap;
sc->sc_iot.bs_swapped = 1;
sc->sc_memt.bs_data = sc;
sc->sc_memt.bs_map = cross_mem_map;
sc->sc_memt.bs_unmap = cross_mem_unmap;
sc->sc_memt.bs_swapped = 1;
sc->sc_ic.ic_data = sc;
sc->sc_ic.ic_attach_hook = cross_attach_hook;
sc->sc_ic.ic_intr_establish = cross_intr_establish;
sc->sc_ic.ic_intr_disestablish = cross_intr_disestablish;
sc->sc_pager.pg_ops = &crosspagerops;
sc->sc_pager.pg_type = PG_DFLT;
sc->sc_pager.pg_flags = 0;
sc->sc_pager.pg_data = sc;
/* Allocate a bunch of pages used for the bank-switching logic. */
for (i = 0; i < CROSS_BANK_SIZE / NBPG; i++) {
VM_PAGE_INIT(&sc->sc_page[i], NULL, 0);
sc->sc_page[i].phys_addr = (vm_offset_t)zap->pa +
CROSS_XL_MEM + i * NBPG;
sc->sc_page[i].flags |= PG_FICTITIOUS;
vm_page_free(&sc->sc_page[i]);
}
/* Enable interrupts lazily in cross_intr_establish. */
CROSS_ENABLE_INTS(zap->va, 0);
/* Default 16 bit tranfer */
*CROSS_HANDLE_TO_XLP_LATCH((bus_space_handle_t)zap->va) = CROSS_SBHE;
printf(": pa 0x%08x va 0x%08x size 0x%x\n", zap->pa, zap->va,
zap->size);
iba.iba_busname = "isa";
iba.iba_iot = &sc->sc_iot;
iba.iba_memt = &sc->sc_memt;
iba.iba_ic = &sc->sc_ic;
config_found(self, &iba, crossprint);
}
int
crossprint(auxp, pnp)
void *auxp;
const char *pnp;
{
if (pnp == NULL)
return(QUIET);
return(UNCONF);
}
int
cross_io_map(bst, addr, sz, cacheable, handle)
bus_space_tag_t bst;
bus_addr_t addr;
bus_size_t sz;
int cacheable;
bus_space_handle_t *handle;
{
*handle = (bus_space_handle_t)
((struct cross_softc *)bst->bs_data)->sc_zargs.va + 2 * addr;
return 0;
}
int
cross_mem_map(bst, addr, sz, cacheable, handle)
bus_space_tag_t bst;
bus_addr_t addr;
bus_size_t sz;
int cacheable;
bus_space_handle_t *handle;
{
struct cross_softc *sc = (struct cross_softc *)bst->bs_data;
bus_addr_t banked_start;
bus_size_t banked_size;
vm_object_t object;
vm_offset_t kva;
int error;
/*
* XXX Do extent checking here.
*/
/*
* Compute the bank range. Note that we need to shift bus-addresses
* and sizes left one bit.
*/
banked_start = (addr << 1) & ~(CROSS_BANK_SIZE - 1);
banked_size = ((sz << 1) + CROSS_BANK_SIZE - 1) &
~(CROSS_BANK_SIZE - 1);
/* Create the object that will take care of the bankswitching. */
object = vm_object_allocate(banked_size);
if (object == NULL)
goto fail_obj;
vm_object_enter(object, &sc->sc_pager);
vm_object_setpager(object, &sc->sc_pager, banked_start, FALSE);
/*
* When done like this double mappings will be possible, thus
* wasting a little mapping space. This happens when several
* bus_space_map maps stuff from the same bank. But I don't care.
*/
kva = kmem_alloc_pageable(kernel_map, banked_size);
if (kva == 0)
goto fail_alloc;
vm_map_lock(kernel_map);
error = vm_map_insert(kernel_map, object, 0, kva, kva + banked_size);
vm_map_unlock(kernel_map);
if (error != KERN_SUCCESS)
goto fail_insert;
/* Tell caller where to find his data. */
*handle = (bus_space_handle_t)(kva + (addr << 1) - banked_start);
return 0;
fail_insert:
kmem_free(kernel_map, kva, banked_size);
fail_alloc:
vm_object_deallocate(object);
fail_obj:
return -1;
}
int
cross_io_unmap(bst, handle, sz)
bus_space_tag_t bst;
bus_space_handle_t handle;
bus_size_t sz;
{
return 0;
}
int
cross_mem_unmap(bst, handle, sz)
bus_space_tag_t bst;
bus_space_handle_t handle;
bus_size_t sz;
{
#if 0
struct cross_softc *sc = (struct cross_softc *)bst->bs_data;
#endif
/* Remove the object handling this mapping. */
return 0;
}
static cross_int_map[] = {
0, 0, 0, 0, CROSS_IRQ3, CROSS_IRQ4, CROSS_IRQ5, CROSS_IRQ6, CROSS_IRQ7, 0,
CROSS_IRQ9, CROSS_IRQ10, CROSS_IRQ11, CROSS_IRQ12, 0, CROSS_IRQ14,
CROSS_IRQ15
};
int
crossintr(v)
void *v;
{
struct intrhand *ih = (struct intrhand *)v;
int handled;
if (!(*ih->ih_status & ih->ih_mask))
return 0;
for (handled = 0; ih; ih = ih->ih_next)
if ((*ih->ih_fun)(ih->ih_arg))
handled = 1;
return handled;
}
void
cross_attach_hook(parent, self, iba)
struct device *parent, *self;
struct isabus_attach_args *iba;
{
}
void *
cross_intr_establish(ic, irq, type, level, ih_fun, ih_arg, ih_what)
void *ic;
int irq;
int type;
int level;
int (*ih_fun)(void *);
void *ih_arg;
char *ih_what;
{
struct intrhand **p, *c, *ih;
struct cross_softc *sc = (struct cross_softc *)ic;
/* no point in sleeping unless someone can free memory. */
ih = malloc(sizeof *ih, M_DEVBUF, cold ? M_NOWAIT : M_WAITOK);
if (ih == NULL)
panic("cross_intr_establish: can't malloc handler info");
if (irq > ICU_LEN || type == IST_NONE)
panic("cross_intr_establish: bogus irq or type");
switch (sc->sc_intrsharetype[irq]) {
case IST_EDGE:
case IST_LEVEL:
if (type == sc->sc_intrsharetype[irq])
break;
case IST_PULSE:
if (type != IST_NONE)
panic("cross_intr_establish: can't share %s with %s",
isa_intr_typename(sc->sc_intrsharetype[irq]),
isa_intr_typename(type));
break;
}
/*
* Figure out where to put the handler.
* This is O(N^2), but we want to preserve the order, and N is
* generally small.
*/
for (p = &sc->sc_ih[irq]; (c = *p) != NULL; p = &c->ih_next)
;
/*
* Poke the real handler in now.
*/
ih->ih_fun = ih_fun;
ih->ih_arg = ih_arg;
ih->ih_count = 0;
ih->ih_next = NULL;
ih->ih_irq = irq;
ih->ih_what = ih_what;
ih->ih_mask = 1 << cross_int_map[irq + 1];
ih->ih_status = sc->sc_status;
ih->ih_isr.isr_intr = crossintr;
ih->ih_isr.isr_arg = ih;
ih->ih_isr.isr_ipl = 6;
ih->ih_isr.isr_mapped_ipl = level;
*p = ih;
add_isr(&ih->ih_isr);
sc->sc_imask |= 1 << cross_int_map[irq + 1];
CROSS_ENABLE_INTS(sc->sc_zargs.va, sc->sc_imask);
return ih;
}
void
cross_intr_disestablish(ic, arg)
void *ic;
void *arg;
{
struct intrhand *ih = arg;
struct cross_softc *sc = (struct cross_softc *)ic;
int irq = ih->ih_irq;
struct intrhand **p, *q;
if (irq > ICU_LEN)
panic("cross_intr_establish: bogus irq");
sc->sc_imask &= ~ih->ih_mask;
CROSS_ENABLE_INTS (sc->sc_zargs.va, sc->sc_imask);
remove_isr(&ih->ih_isr);
/*
* Remove the handler from the chain.
* This is O(n^2), too.
*/
for (p = &sc->sc_ih[irq]; (q = *p) != NULL && q != ih; p = &q->ih_next)
;
if (q)
*p = q->ih_next;
else
panic("cross_intr_disestablish: handler not registered");
free(ih, M_DEVBUF);
if (sc->sc_intrsharetype[irq] == NULL)
sc->sc_intrsharetype[irq] = IST_NONE;
}
int
cross_pager_get_pages(pager, mlist, npages, sync)
vm_pager_t pager;
vm_page_t *mlist;
int npages;
boolean_t sync;
{
struct cross_softc *sc = (struct cross_softc *)pager->pg_data;
int i;
vm_object_t object, old_object;
vm_offset_t offset;
while(npages--) {
i = ((*mlist)->offset & (CROSS_BANK_SIZE - 1)) / NBPG;
object = (*mlist)->object;
old_object = sc->sc_page[i].object;
offset = (*mlist)->offset;
vm_page_lock_queues();
vm_object_lock(object);
if (old_object)
vm_object_lock(old_object);
vm_page_free(*mlist);
/* generate A13-A19 for correct page */
*CROSS_HANDLE_TO_XLP_LATCH((bus_space_handle_t)sc->sc_zargs.va) =
object->paging_offset >> 13 | CROSS_SBHE;
vm_page_rename(&sc->sc_page[i], object, offset);
if (old_object)
vm_object_unlock(old_object);
vm_object_unlock(object);
vm_page_unlock_queues();
mlist++;
}
return VM_PAGER_OK;
}
|