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
|
/* $OpenBSD: atascsi.c,v 1.4 2007/02/19 11:55:04 dlg Exp $ */
/*
* Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <sys/proc.h>
#include <sys/queue.h>
#include <scsi/scsi_all.h>
#include <scsi/scsi_disk.h>
#include <scsi/scsiconf.h>
#include <dev/ata/atascsi.h>
struct atascsi {
struct device *as_dev;
void *as_cookie;
struct ata_port **as_ports;
struct atascsi_methods *as_methods;
struct scsi_adapter as_switch;
struct scsi_link as_link;
struct scsibus_softc *as_scsibus;
};
int atascsi_probe(struct atascsi *, int);
int atascsi_cmd(struct scsi_xfer *);
/* template */
struct scsi_adapter atascsi_switch = {
atascsi_cmd, /* scsi_cmd */
minphys, /* scsi_minphys */
NULL,
NULL,
NULL /* ioctl */
};
struct scsi_device atascsi_device = {
NULL, NULL, NULL, NULL
};
int atascsi_disk_cmd(struct scsi_xfer *);
int atascsi_disk_inq(struct scsi_xfer *);
int atascsi_disk_capacity(struct scsi_xfer *);
int atascsi_disk_sync(struct scsi_xfer *);
int atascsi_disk_sense(struct scsi_xfer *);
int atascsi_atapi_cmd(struct scsi_xfer *);
int atascsi_stuffup(struct scsi_xfer *);
struct atascsi *
atascsi_attach(struct device *self, struct atascsi_attach_args *aaa)
{
struct scsibus_attach_args saa;
struct atascsi *as;
int i;
as = malloc(sizeof(struct atascsi), M_DEVBUF, M_WAITOK);
bzero(as, sizeof(struct atascsi));
as->as_dev = self;
as->as_cookie = aaa->aaa_cookie;
as->as_methods = aaa->aaa_methods;
/* copy from template and modify for ourselves */
as->as_switch = atascsi_switch;
as->as_switch.scsi_minphys = aaa->aaa_minphys;
/* fill in our scsi_link */
as->as_link.device = &atascsi_device;
as->as_link.adapter = &as->as_switch;
as->as_link.adapter_softc = as;
as->as_link.adapter_buswidth = aaa->aaa_nports;
as->as_link.luns = 1; /* XXX port multiplier as luns */
as->as_link.adapter_target = aaa->aaa_nports;
as->as_link.openings = aaa->aaa_ncmds;
as->as_ports = malloc(sizeof(struct ata_port *) * aaa->aaa_nports,
M_DEVBUF, M_WAITOK);
bzero(as->as_ports, sizeof(int) * aaa->aaa_nports);
/* fill in the port array with the type of devices there */
for (i = 0; i < as->as_link.adapter_buswidth; i++)
atascsi_probe(as, i);
bzero(&saa, sizeof(saa));
saa.saa_sc_link = &as->as_link;
/* stash the scsibus so we can do hotplug on it */
as->as_scsibus = (struct scsibus_softc *)config_found(self, &saa,
scsiprint);
return (as);
}
int
atascsi_detach(struct atascsi *as)
{
return (0);
}
int
atascsi_probe(struct atascsi *as, int port)
{
if (port > as->as_link.adapter_buswidth)
return (ENXIO);
#if 0
as->as_ports[port] = as->as_methods->probe(as->as_cookie, port);
#endif
return (0);
}
int
atascsi_cmd(struct scsi_xfer *xs)
{
struct scsi_link *link = xs->sc_link;
struct atascsi *as = link->adapter_softc;
struct ata_port *ap = as->as_ports[link->target];
if (ap == NULL)
return (atascsi_stuffup(xs));
switch (ap->ap_type) {
case ATA_PORT_T_DISK:
return (atascsi_disk_cmd(xs));
case ATA_PORT_T_ATAPI:
return (atascsi_atapi_cmd(xs));
case ATA_PORT_T_NONE:
default:
return (atascsi_stuffup(xs));
}
}
int
atascsi_disk_cmd(struct scsi_xfer *xs)
{
#if 0
struct scsi_link *link = xs->sc_link;
struct atascsi *as = link->adapter_softc;
struct ata_port *ap = as->as_ports[link->target];
int s;
#endif
switch (xs->cmd->opcode) {
case READ_BIG:
case WRITE_BIG:
case READ_COMMAND:
case WRITE_COMMAND:
/* deal with io outside the switch */
break;
case SYNCHRONIZE_CACHE:
return (atascsi_disk_sync(xs));
case REQUEST_SENSE:
return (atascsi_disk_sense(xs));
case INQUIRY:
return (atascsi_disk_inq(xs));
case READ_CAPACITY:
return (atascsi_disk_capacity(xs));
case TEST_UNIT_READY:
case START_STOP:
case PREVENT_ALLOW:
return (COMPLETE);
default:
return (atascsi_stuffup(xs));
}
return (atascsi_stuffup(xs));
}
int
atascsi_disk_inq(struct scsi_xfer *xs)
{
return (atascsi_stuffup(xs));
}
int
atascsi_disk_sync(struct scsi_xfer *xs)
{
return (atascsi_stuffup(xs));
}
int
atascsi_disk_capacity(struct scsi_xfer *xs)
{
return (atascsi_stuffup(xs));
}
int
atascsi_disk_sense(struct scsi_xfer *xs)
{
struct scsi_sense_data *sd = xs->data;
bzero(xs->data, xs->datalen);
/* check datalen > sizeof(struct scsi_sense_data)? */
sd->error_code = 0x70; /* XXX magic */
sd->flags = SKEY_NO_SENSE;
xs->error = XS_NOERROR;
s = splbio();
scsi_done(xs);
splx(s);
return (COMPLETE);
}
int
atascsi_atapi_cmd(struct scsi_xfer *xs)
{
return (atascsi_stuffup(xs));
}
int
atascsi_stuffup(struct scsi_xfer *xs)
{
int s;
xs->error = XS_DRIVER_STUFFUP;
s = splbio();
scsi_done(xs);
splx(s);
return (COMPLETE);
}
|