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
|
/* $OpenBSD: mgnsc.c,v 1.8 1996/10/04 15:10:40 niklas Exp $ */
/* $NetBSD: mgnsc.c,v 1.18 1996/04/21 21:12:11 veego Exp $ */
/*
* Copyright (c) 1994 Michael L. Hitch
* Copyright (c) 1982, 1990 The Regents of the University of California.
* 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 the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
*
* @(#)dma.c
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <machine/intr.h>
#include <machine/psl.h>
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
#include <amiga/amiga/custom.h>
#include <amiga/amiga/cc.h>
#include <amiga/amiga/device.h>
#include <amiga/amiga/isr.h>
#include <amiga/dev/siopreg.h>
#include <amiga/dev/siopvar.h>
#include <amiga/dev/zbusvar.h>
int mgnscprint __P((void *auxp, char *));
void mgnscattach __P((struct device *, struct device *, void *));
int mgnscmatch __P((struct device *, void *, void *));
int mgnsc_dmaintr __P((void *));
#ifdef DEBUG
void mgnsc_dump __P((void));
#endif
struct scsi_adapter mgnsc_scsiswitch = {
siop_scsicmd,
siop_minphys,
0, /* no lun support */
0, /* no lun support */
};
struct scsi_device mgnsc_scsidev = {
NULL, /* use default error handler */
NULL, /* do not have a start functio */
NULL, /* have no async handler */
NULL, /* Use default done routine */
};
#ifdef DEBUG
#endif
struct cfattach mgnsc_ca = {
sizeof(struct siop_softc), mgnscmatch, mgnscattach
};
struct cfdriver mgnsc_cd = {
NULL, "mgnsc", DV_DULL, NULL, 0
};
/*
* if we are a CSA Magnum 40 SCSI
*/
int
mgnscmatch(pdp, match, auxp)
struct device *pdp;
void *match, *auxp;
{
struct zbus_args *zap;
zap = auxp;
if (zap->manid == 1058 && zap->prodid == 17)
return(1);
return(0);
}
void
mgnscattach(pdp, dp, auxp)
struct device *pdp, *dp;
void *auxp;
{
struct siop_softc *sc;
struct zbus_args *zap;
siop_regmap_p rp;
printf("\n");
zap = auxp;
sc = (struct siop_softc *)dp;
sc->sc_siopp = rp = zap->va + 0x8000;
/*
* CTEST7 = TT1
*/
sc->sc_clock_freq = 33; /* Clock = 33Mhz */
sc->sc_ctest7 = SIOP_CTEST7_TT1;
sc->sc_dcntl = 0x00;
alloc_sicallback();
sc->sc_link.adapter_softc = sc;
sc->sc_link.adapter_target = 7;
sc->sc_link.adapter = &mgnsc_scsiswitch;
sc->sc_link.device = &mgnsc_scsidev;
sc->sc_link.openings = 2;
siopinitialize(sc);
sc->sc_isr.isr_intr = mgnsc_dmaintr;
sc->sc_isr.isr_arg = sc;
sc->sc_isr.isr_ipl = 6;
#if defined(IPL_REMAP_1) || defined(IPL_REMAP_2)
sc->sc_isr.isr_mapped_ipl = IPL_BIO;
#endif
add_isr (&sc->sc_isr);
/*
* attach all scsi units on us
*/
config_found(dp, &sc->sc_link, mgnscprint);
}
/*
* print diag if pnp is NULL else just extra
*/
int
mgnscprint(auxp, pnp)
void *auxp;
char *pnp;
{
if (pnp == NULL)
return(UNCONF);
return(QUIET);
}
/*
* Level 6 interrupt processing for the Magnum/40 SCSI. Because the
* level 6 interrupt is above splbio, the interrupt status is saved
* and an sicallback to the level 2 interrupt handler scheduled.
* This way, the actual processing of the interrupt can be deferred
* until splbio is unblocked.
*/
int
mgnsc_dmaintr(arg)
void *arg;
{
struct siop_softc *sc = arg;
siop_regmap_p rp;
u_char istat;
if (sc->sc_flags & SIOP_INTSOFF)
return (0); /* interrupts are not active */
rp = sc->sc_siopp;
istat = rp->siop_istat;
if ((istat & (SIOP_ISTAT_SIP | SIOP_ISTAT_DIP)) == 0)
return (0);
/*
* save interrupt status, DMA status, and SCSI status 0
* (may need to deal with stacked interrupts?)
*/
sc->sc_sstat0 = rp->siop_sstat0;
sc->sc_istat = istat;
sc->sc_dstat = rp->siop_dstat;
/*
* disable interrupts until the callback can process this
* interrupt.
*/
rp->siop_sien = 0;
rp->siop_dien = 0;
sc->sc_flags |= SIOP_INTDEFER | SIOP_INTSOFF;
#if defined(IPL_REMAP_1) || defined(IPL_REMAP_2)
siopintr(sc);
#else
add_sicallback((sifunc_t)siopintr, sc, NULL);
#endif
return (1);
}
#ifdef DEBUG
void
mgnsc_dump()
{
int i;
for (i = 0; i < mgnsc_cd.cd_ndevs; ++i)
if (mgnsc_cd.cd_devs[i])
siop_dump(mgnsc_cd.cd_devs[i]);
}
#endif
|