ld_icp.c revision 1.8 1 1.8 thorpej /* $NetBSD: ld_icp.c,v 1.8 2003/06/13 05:57:31 thorpej Exp $ */
2 1.1 ad
3 1.1 ad /*-
4 1.1 ad * Copyright (c) 2002 The NetBSD Foundation, Inc.
5 1.1 ad * All rights reserved.
6 1.1 ad *
7 1.1 ad * This code is derived from software contributed to The NetBSD Foundation
8 1.1 ad * by Andrew Doran.
9 1.1 ad *
10 1.1 ad * Redistribution and use in source and binary forms, with or without
11 1.1 ad * modification, are permitted provided that the following conditions
12 1.1 ad * are met:
13 1.1 ad * 1. Redistributions of source code must retain the above copyright
14 1.1 ad * notice, this list of conditions and the following disclaimer.
15 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 ad * notice, this list of conditions and the following disclaimer in the
17 1.1 ad * documentation and/or other materials provided with the distribution.
18 1.1 ad * 3. All advertising materials mentioning features or use of this software
19 1.1 ad * must display the following acknowledgement:
20 1.1 ad * This product includes software developed by the NetBSD
21 1.1 ad * Foundation, Inc. and its contributors.
22 1.1 ad * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 ad * contributors may be used to endorse or promote products derived
24 1.1 ad * from this software without specific prior written permission.
25 1.1 ad *
26 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 ad * POSSIBILITY OF SUCH DAMAGE.
37 1.1 ad */
38 1.1 ad
39 1.1 ad /*
40 1.1 ad * ICP-Vortex "GDT" front-end for ld(4) driver.
41 1.1 ad */
42 1.1 ad
43 1.1 ad #include <sys/cdefs.h>
44 1.8 thorpej __KERNEL_RCSID(0, "$NetBSD: ld_icp.c,v 1.8 2003/06/13 05:57:31 thorpej Exp $");
45 1.1 ad
46 1.1 ad #include "rnd.h"
47 1.1 ad
48 1.1 ad #include <sys/param.h>
49 1.1 ad #include <sys/systm.h>
50 1.1 ad #include <sys/kernel.h>
51 1.1 ad #include <sys/device.h>
52 1.1 ad #include <sys/buf.h>
53 1.1 ad #include <sys/endian.h>
54 1.1 ad #include <sys/dkio.h>
55 1.1 ad #include <sys/disk.h>
56 1.1 ad #if NRND > 0
57 1.1 ad #include <sys/rnd.h>
58 1.1 ad #endif
59 1.1 ad
60 1.1 ad #include <uvm/uvm_extern.h>
61 1.1 ad
62 1.1 ad #include <machine/bus.h>
63 1.1 ad
64 1.1 ad #include <dev/ldvar.h>
65 1.1 ad
66 1.1 ad #include <dev/ic/icpreg.h>
67 1.1 ad #include <dev/ic/icpvar.h>
68 1.1 ad
69 1.1 ad struct ld_icp_softc {
70 1.1 ad struct ld_softc sc_ld;
71 1.1 ad int sc_hwunit;
72 1.1 ad };
73 1.1 ad
74 1.1 ad void ld_icp_attach(struct device *, struct device *, void *);
75 1.8 thorpej int ld_icp_detach(struct device *, int);
76 1.1 ad int ld_icp_dobio(struct ld_icp_softc *, void *, int, int, int,
77 1.1 ad struct buf *);
78 1.1 ad int ld_icp_dump(struct ld_softc *, void *, int, int);
79 1.1 ad int ld_icp_flush(struct ld_softc *);
80 1.1 ad void ld_icp_intr(struct icp_ccb *);
81 1.1 ad int ld_icp_match(struct device *, struct cfdata *, void *);
82 1.1 ad int ld_icp_start(struct ld_softc *, struct buf *);
83 1.1 ad
84 1.8 thorpej void ld_icp_adjqparam(struct device *, int);
85 1.8 thorpej
86 1.4 thorpej CFATTACH_DECL(ld_icp, sizeof(struct ld_icp_softc),
87 1.8 thorpej ld_icp_match, ld_icp_attach, ld_icp_detach, NULL);
88 1.8 thorpej
89 1.8 thorpej static const struct icp_servicecb ld_icp_servicecb = {
90 1.8 thorpej ld_icp_adjqparam,
91 1.8 thorpej };
92 1.1 ad
93 1.1 ad int
94 1.1 ad ld_icp_match(struct device *parent, struct cfdata *match, void *aux)
95 1.1 ad {
96 1.1 ad struct icp_attach_args *icpa;
97 1.1 ad
98 1.1 ad icpa = aux;
99 1.1 ad
100 1.1 ad return (icpa->icpa_unit < ICPA_UNIT_SCSI);
101 1.1 ad }
102 1.1 ad
103 1.1 ad void
104 1.1 ad ld_icp_attach(struct device *parent, struct device *self, void *aux)
105 1.1 ad {
106 1.1 ad struct icp_attach_args *icpa;
107 1.1 ad struct ld_icp_softc *sc;
108 1.1 ad struct ld_softc *ld;
109 1.1 ad struct icp_softc *icp;
110 1.1 ad struct icp_cachedrv *cd;
111 1.1 ad struct icp_cdevinfo *cdi;
112 1.1 ad const char *str;
113 1.1 ad int t;
114 1.1 ad
115 1.1 ad sc = (struct ld_icp_softc *)self;
116 1.1 ad ld = &sc->sc_ld;
117 1.1 ad icp = (struct icp_softc *)parent;
118 1.1 ad icpa = aux;
119 1.1 ad cd = &icp->icp_cdr[icpa->icpa_unit];
120 1.1 ad
121 1.8 thorpej icp_register_servicecb(icp, icpa->icpa_unit, &ld_icp_servicecb);
122 1.8 thorpej
123 1.1 ad sc->sc_hwunit = icpa->icpa_unit;
124 1.1 ad ld->sc_maxxfer = ICP_MAX_XFER;
125 1.1 ad ld->sc_secsize = ICP_SECTOR_SIZE;
126 1.1 ad ld->sc_start = ld_icp_start;
127 1.1 ad ld->sc_dump = ld_icp_dump;
128 1.1 ad ld->sc_flush = ld_icp_flush;
129 1.1 ad ld->sc_secperunit = cd->cd_size;
130 1.1 ad ld->sc_flags = LDF_ENABLED;
131 1.1 ad ld->sc_maxqueuecnt = icp->icp_openings;
132 1.1 ad
133 1.1 ad if (!icp_cmd(icp, ICP_CACHESERVICE, ICP_IOCTL, ICP_CACHE_DRV_INFO,
134 1.1 ad sc->sc_hwunit, sizeof(struct icp_cdevinfo))) {
135 1.2 thorpej printf(": unable to retrieve device info\n");
136 1.1 ad ld->sc_flags = LDF_ENABLED;
137 1.1 ad goto out;
138 1.1 ad }
139 1.1 ad cdi = (struct icp_cdevinfo *)icp->icp_scr;
140 1.1 ad
141 1.1 ad printf(": <%.8s>, ", cdi->ld_name);
142 1.1 ad t = le32toh(cdi->ld_dtype) >> 16;
143 1.1 ad
144 1.1 ad /*
145 1.1 ad * Print device type.
146 1.1 ad */
147 1.1 ad if (le32toh(cdi->ld_dcnt) > 1 || le32toh(cdi->ld_slave) != -1)
148 1.1 ad str = "RAID-1";
149 1.1 ad else if (t == 0)
150 1.1 ad str = "JBOD";
151 1.1 ad else if (t == 1)
152 1.1 ad str = "RAID-0";
153 1.1 ad else if (t == 2)
154 1.1 ad str = "Chain";
155 1.1 ad else
156 1.1 ad str = "unknown type";
157 1.1 ad
158 1.1 ad printf("type: %s, ", str);
159 1.1 ad
160 1.1 ad /*
161 1.1 ad * Print device status.
162 1.1 ad */
163 1.1 ad if (t > 2)
164 1.1 ad str = "missing";
165 1.1 ad else if ((cdi->ld_error & 1) != 0) {
166 1.1 ad str = "fault";
167 1.1 ad ld->sc_flags = LDF_ENABLED;
168 1.1 ad } else if ((cdi->ld_error & 2) != 0)
169 1.1 ad str = "invalid";
170 1.1 ad else {
171 1.1 ad str = "optimal";
172 1.1 ad ld->sc_flags = LDF_ENABLED;
173 1.1 ad }
174 1.1 ad
175 1.1 ad printf("status: %s\n", str);
176 1.1 ad
177 1.1 ad out:
178 1.1 ad ldattach(ld);
179 1.1 ad }
180 1.1 ad
181 1.1 ad int
182 1.8 thorpej ld_icp_detach(struct device *dv, int flags)
183 1.8 thorpej {
184 1.8 thorpej int rv;
185 1.8 thorpej
186 1.8 thorpej if ((rv = ldbegindetach((struct ld_softc *)dv, flags)) != 0)
187 1.8 thorpej return (rv);
188 1.8 thorpej ldenddetach((struct ld_softc *) dv);
189 1.8 thorpej
190 1.8 thorpej return (0);
191 1.8 thorpej }
192 1.8 thorpej
193 1.8 thorpej int
194 1.1 ad ld_icp_dobio(struct ld_icp_softc *sc, void *data, int datasize, int blkno,
195 1.1 ad int dowrite, struct buf *bp)
196 1.1 ad {
197 1.1 ad struct icp_cachecmd *cc;
198 1.1 ad struct icp_ccb *ic;
199 1.1 ad struct icp_softc *icp;
200 1.1 ad int s, rv;
201 1.1 ad
202 1.1 ad icp = (struct icp_softc *)sc->sc_ld.sc_dv.dv_parent;
203 1.1 ad
204 1.1 ad /*
205 1.1 ad * Allocate a command control block.
206 1.1 ad */
207 1.7 thorpej if (__predict_false((ic = icp_ccb_alloc(icp)) == NULL))
208 1.6 thorpej return (EAGAIN);
209 1.1 ad
210 1.1 ad /*
211 1.1 ad * Map the data transfer.
212 1.1 ad */
213 1.1 ad cc = &ic->ic_cmd.cmd_packet.cc;
214 1.1 ad ic->ic_sg = cc->cc_sg;
215 1.1 ad ic->ic_service = ICP_CACHESERVICE;
216 1.1 ad
217 1.1 ad rv = icp_ccb_map(icp, ic, data, datasize,
218 1.1 ad dowrite ? IC_XFER_OUT : IC_XFER_IN);
219 1.1 ad if (rv != 0) {
220 1.1 ad icp_ccb_free(icp, ic);
221 1.1 ad return (rv);
222 1.1 ad }
223 1.1 ad
224 1.1 ad /*
225 1.1 ad * Build the command.
226 1.1 ad */
227 1.1 ad ic->ic_cmd.cmd_opcode = htole16((dowrite ? ICP_WRITE : ICP_READ));
228 1.1 ad cc->cc_deviceno = htole16(sc->sc_hwunit);
229 1.1 ad cc->cc_blockno = htole32(blkno);
230 1.1 ad cc->cc_blockcnt = htole32(datasize / ICP_SECTOR_SIZE);
231 1.1 ad cc->cc_addr = ~0; /* scatter gather */
232 1.1 ad cc->cc_nsgent = htole32(ic->ic_nsgent);
233 1.1 ad
234 1.1 ad ic->ic_cmdlen = (u_long)ic->ic_sg - (u_long)&ic->ic_cmd +
235 1.1 ad ic->ic_nsgent * sizeof(*ic->ic_sg);
236 1.1 ad
237 1.1 ad /*
238 1.1 ad * Fire it off to the controller.
239 1.1 ad */
240 1.1 ad if (bp == NULL) {
241 1.1 ad s = splbio();
242 1.1 ad rv = icp_ccb_poll(icp, ic, 10000);
243 1.1 ad icp_ccb_unmap(icp, ic);
244 1.1 ad icp_ccb_free(icp, ic);
245 1.1 ad splx(s);
246 1.1 ad } else {
247 1.1 ad ic->ic_intr = ld_icp_intr;
248 1.1 ad ic->ic_context = bp;
249 1.1 ad ic->ic_dv = &sc->sc_ld.sc_dv;
250 1.1 ad icp_ccb_enqueue(icp, ic);
251 1.1 ad }
252 1.1 ad
253 1.1 ad return (rv);
254 1.1 ad }
255 1.1 ad
256 1.1 ad int
257 1.1 ad ld_icp_start(struct ld_softc *ld, struct buf *bp)
258 1.1 ad {
259 1.1 ad
260 1.1 ad return (ld_icp_dobio((struct ld_icp_softc *)ld, bp->b_data,
261 1.1 ad bp->b_bcount, bp->b_rawblkno, (bp->b_flags & B_READ) == 0, bp));
262 1.1 ad }
263 1.1 ad
264 1.1 ad int
265 1.1 ad ld_icp_dump(struct ld_softc *ld, void *data, int blkno, int blkcnt)
266 1.1 ad {
267 1.1 ad
268 1.1 ad return (ld_icp_dobio((struct ld_icp_softc *)ld, data,
269 1.1 ad blkcnt * ld->sc_secsize, blkno, 1, NULL));
270 1.1 ad }
271 1.1 ad
272 1.1 ad int
273 1.1 ad ld_icp_flush(struct ld_softc *ld)
274 1.1 ad {
275 1.1 ad struct ld_icp_softc *sc;
276 1.1 ad struct icp_softc *icp;
277 1.1 ad struct icp_cachecmd *cc;
278 1.1 ad struct icp_ccb *ic;
279 1.1 ad int rv;
280 1.1 ad
281 1.1 ad sc = (struct ld_icp_softc *)ld;
282 1.1 ad icp = (struct icp_softc *)ld->sc_dv.dv_parent;
283 1.1 ad
284 1.6 thorpej ic = icp_ccb_alloc_wait(icp);
285 1.1 ad ic->ic_cmd.cmd_opcode = htole16(ICP_FLUSH);
286 1.1 ad
287 1.1 ad cc = &ic->ic_cmd.cmd_packet.cc;
288 1.1 ad cc->cc_deviceno = htole16(sc->sc_hwunit);
289 1.1 ad cc->cc_blockno = htole32(1);
290 1.1 ad cc->cc_blockcnt = 0;
291 1.1 ad cc->cc_addr = 0;
292 1.1 ad cc->cc_nsgent = 0;
293 1.1 ad
294 1.1 ad ic->ic_cmdlen = (u_long)&cc->cc_sg - (u_long)&ic->ic_cmd;
295 1.1 ad ic->ic_service = ICP_CACHESERVICE;
296 1.1 ad
297 1.1 ad rv = icp_ccb_wait(icp, ic, 30000);
298 1.1 ad icp_ccb_free(icp, ic);
299 1.1 ad
300 1.1 ad return (rv);
301 1.1 ad }
302 1.1 ad
303 1.1 ad void
304 1.1 ad ld_icp_intr(struct icp_ccb *ic)
305 1.1 ad {
306 1.1 ad struct buf *bp;
307 1.1 ad struct ld_icp_softc *sc;
308 1.1 ad struct icp_softc *icp;
309 1.1 ad
310 1.1 ad bp = ic->ic_context;
311 1.1 ad sc = (struct ld_icp_softc *)ic->ic_dv;
312 1.1 ad icp = (struct icp_softc *)sc->sc_ld.sc_dv.dv_parent;
313 1.1 ad
314 1.1 ad if (ic->ic_status != ICP_S_OK) {
315 1.1 ad printf("%s: request failed; status=0x%04x\n",
316 1.1 ad ic->ic_dv->dv_xname, ic->ic_status);
317 1.1 ad bp->b_flags |= B_ERROR;
318 1.1 ad bp->b_error = EIO;
319 1.1 ad bp->b_resid = bp->b_bcount;
320 1.6 thorpej
321 1.6 thorpej icp->icp_evt.size = sizeof(icp->icp_evt.eu.sync);
322 1.6 thorpej icp->icp_evt.eu.sync.ionode = icp->icp_dv.dv_unit;
323 1.6 thorpej icp->icp_evt.eu.sync.service = icp->icp_service;
324 1.6 thorpej icp->icp_evt.eu.sync.status = icp->icp_status;
325 1.6 thorpej icp->icp_evt.eu.sync.info = icp->icp_info;
326 1.6 thorpej icp->icp_evt.eu.sync.hostdrive = sc->sc_hwunit;
327 1.6 thorpej if (icp->icp_status >= 0x8000)
328 1.6 thorpej icp_store_event(icp, GDT_ES_SYNC, 0, &icp->icp_evt);
329 1.6 thorpej else
330 1.6 thorpej icp_store_event(icp, GDT_ES_SYNC, icp->icp_service,
331 1.6 thorpej &icp->icp_evt);
332 1.1 ad } else
333 1.1 ad bp->b_resid = 0;
334 1.1 ad
335 1.1 ad icp_ccb_unmap(icp, ic);
336 1.1 ad icp_ccb_free(icp, ic);
337 1.1 ad lddone(&sc->sc_ld, bp);
338 1.8 thorpej }
339 1.8 thorpej
340 1.8 thorpej void
341 1.8 thorpej ld_icp_adjqparam(struct device *dv, int openings)
342 1.8 thorpej {
343 1.8 thorpej
344 1.8 thorpej ldadjqparam((struct ld_softc *) dv, openings);
345 1.1 ad }
346