ld_mlx.c revision 1.2.8.2 1 1.2.8.2 he /* $NetBSD: ld_mlx.c,v 1.2.8.2 2001/10/25 17:53:47 he Exp $ */
2 1.2.8.2 he
3 1.2.8.2 he /*-
4 1.2.8.2 he * Copyright (c) 2001 The NetBSD Foundation, Inc.
5 1.2.8.2 he * All rights reserved.
6 1.2.8.2 he *
7 1.2.8.2 he * This code is derived from software contributed to The NetBSD Foundation
8 1.2.8.2 he * by Andrew Doran.
9 1.2.8.2 he *
10 1.2.8.2 he * Redistribution and use in source and binary forms, with or without
11 1.2.8.2 he * modification, are permitted provided that the following conditions
12 1.2.8.2 he * are met:
13 1.2.8.2 he * 1. Redistributions of source code must retain the above copyright
14 1.2.8.2 he * notice, this list of conditions and the following disclaimer.
15 1.2.8.2 he * 2. Redistributions in binary form must reproduce the above copyright
16 1.2.8.2 he * notice, this list of conditions and the following disclaimer in the
17 1.2.8.2 he * documentation and/or other materials provided with the distribution.
18 1.2.8.2 he * 3. All advertising materials mentioning features or use of this software
19 1.2.8.2 he * must display the following acknowledgement:
20 1.2.8.2 he * This product includes software developed by the NetBSD
21 1.2.8.2 he * Foundation, Inc. and its contributors.
22 1.2.8.2 he * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.2.8.2 he * contributors may be used to endorse or promote products derived
24 1.2.8.2 he * from this software without specific prior written permission.
25 1.2.8.2 he *
26 1.2.8.2 he * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.2.8.2 he * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.2.8.2 he * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.2.8.2 he * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.2.8.2 he * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.2.8.2 he * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.2.8.2 he * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.2.8.2 he * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.2.8.2 he * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.2.8.2 he * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.2.8.2 he * POSSIBILITY OF SUCH DAMAGE.
37 1.2.8.2 he */
38 1.2.8.2 he
39 1.2.8.2 he /*
40 1.2.8.2 he * Mylex DAC960 front-end for ld(4) driver.
41 1.2.8.2 he */
42 1.2.8.2 he
43 1.2.8.2 he #include "rnd.h"
44 1.2.8.2 he
45 1.2.8.2 he #include <sys/param.h>
46 1.2.8.2 he #include <sys/systm.h>
47 1.2.8.2 he #include <sys/kernel.h>
48 1.2.8.2 he #include <sys/device.h>
49 1.2.8.2 he #include <sys/buf.h>
50 1.2.8.2 he #include <sys/endian.h>
51 1.2.8.2 he #include <sys/dkio.h>
52 1.2.8.2 he #include <sys/disk.h>
53 1.2.8.2 he #if NRND > 0
54 1.2.8.2 he #include <sys/rnd.h>
55 1.2.8.2 he #endif
56 1.2.8.2 he
57 1.2.8.2 he #include <machine/vmparam.h>
58 1.2.8.2 he #include <machine/bus.h>
59 1.2.8.2 he
60 1.2.8.2 he #include <dev/ldvar.h>
61 1.2.8.2 he
62 1.2.8.2 he #include <dev/ic/mlxreg.h>
63 1.2.8.2 he #include <dev/ic/mlxio.h>
64 1.2.8.2 he #include <dev/ic/mlxvar.h>
65 1.2.8.2 he
66 1.2.8.2 he struct ld_mlx_softc {
67 1.2.8.2 he struct ld_softc sc_ld;
68 1.2.8.2 he int sc_hwunit;
69 1.2.8.2 he };
70 1.2.8.2 he
71 1.2.8.2 he static void ld_mlx_attach(struct device *, struct device *, void *);
72 1.2.8.2 he static int ld_mlx_detach(struct device *, int);
73 1.2.8.2 he static int ld_mlx_dobio(struct ld_mlx_softc *, void *, int, int, int,
74 1.2.8.2 he struct buf *);
75 1.2.8.2 he static int ld_mlx_dump(struct ld_softc *, void *, int, int);
76 1.2.8.2 he static void ld_mlx_handler(struct mlx_ccb *);
77 1.2.8.2 he static int ld_mlx_match(struct device *, struct cfdata *, void *);
78 1.2.8.2 he static int ld_mlx_start(struct ld_softc *, struct buf *);
79 1.2.8.2 he
80 1.2.8.2 he struct cfattach ld_mlx_ca = {
81 1.2.8.2 he sizeof(struct ld_mlx_softc),
82 1.2.8.2 he ld_mlx_match,
83 1.2.8.2 he ld_mlx_attach,
84 1.2.8.2 he ld_mlx_detach
85 1.2.8.2 he };
86 1.2.8.2 he
87 1.2.8.2 he static int
88 1.2.8.2 he ld_mlx_match(struct device *parent, struct cfdata *match, void *aux)
89 1.2.8.2 he {
90 1.2.8.2 he
91 1.2.8.2 he return (1);
92 1.2.8.2 he }
93 1.2.8.2 he
94 1.2.8.2 he static void
95 1.2.8.2 he ld_mlx_attach(struct device *parent, struct device *self, void *aux)
96 1.2.8.2 he {
97 1.2.8.2 he struct mlx_attach_args *mlxa;
98 1.2.8.2 he struct ld_mlx_softc *sc;
99 1.2.8.2 he struct ld_softc *ld;
100 1.2.8.2 he struct mlx_softc *mlx;
101 1.2.8.2 he struct mlx_sysdrive *ms;
102 1.2.8.2 he const char *statestr;
103 1.2.8.2 he
104 1.2.8.2 he sc = (struct ld_mlx_softc *)self;
105 1.2.8.2 he ld = &sc->sc_ld;
106 1.2.8.2 he mlx = (struct mlx_softc *)parent;
107 1.2.8.2 he mlxa = aux;
108 1.2.8.2 he ms = &mlx->mlx_sysdrive[mlxa->mlxa_unit];
109 1.2.8.2 he
110 1.2.8.2 he sc->sc_hwunit = mlxa->mlxa_unit;
111 1.2.8.2 he ld->sc_maxxfer = MLX_MAX_XFER;
112 1.2.8.2 he ld->sc_secsize = MLX_SECTOR_SIZE;
113 1.2.8.2 he ld->sc_maxqueuecnt = 1;
114 1.2.8.2 he ld->sc_start = ld_mlx_start;
115 1.2.8.2 he ld->sc_dump = ld_mlx_dump;
116 1.2.8.2 he ld->sc_secperunit = ms->ms_size;
117 1.2.8.2 he
118 1.2.8.2 he /*
119 1.2.8.2 he * Report on current status, and attach to the ld driver proper.
120 1.2.8.2 he */
121 1.2.8.2 he switch (ms->ms_state) {
122 1.2.8.2 he case MLX_SYSD_ONLINE:
123 1.2.8.2 he statestr = "online";
124 1.2.8.2 he ld->sc_flags = LDF_ENABLED;
125 1.2.8.2 he break;
126 1.2.8.2 he
127 1.2.8.2 he case MLX_SYSD_CRITICAL:
128 1.2.8.2 he statestr = "critical";
129 1.2.8.2 he ld->sc_flags = LDF_ENABLED;
130 1.2.8.2 he break;
131 1.2.8.2 he
132 1.2.8.2 he case MLX_SYSD_OFFLINE:
133 1.2.8.2 he statestr = "offline";
134 1.2.8.2 he break;
135 1.2.8.2 he
136 1.2.8.2 he default:
137 1.2.8.2 he statestr = "state unknown";
138 1.2.8.2 he break;
139 1.2.8.2 he }
140 1.2.8.2 he
141 1.2.8.2 he if (ms->ms_raidlevel == MLX_SYS_DRV_JBOD)
142 1.2.8.2 he printf(": JBOD, %s\n", statestr);
143 1.2.8.2 he else
144 1.2.8.2 he printf(": RAID%d, %s\n", ms->ms_raidlevel, statestr);
145 1.2.8.2 he
146 1.2.8.2 he ldattach(ld);
147 1.2.8.2 he }
148 1.2.8.2 he
149 1.2.8.2 he static int
150 1.2.8.2 he ld_mlx_detach(struct device *dv, int flags)
151 1.2.8.2 he {
152 1.2.8.2 he int rv;
153 1.2.8.2 he
154 1.2.8.2 he if ((rv = ldbegindetach((struct ld_softc *)dv, flags)) != 0)
155 1.2.8.2 he return (rv);
156 1.2.8.2 he ldenddetach((struct ld_softc *)dv);
157 1.2.8.2 he mlx_flush((struct mlx_softc *)dv->dv_parent, 1);
158 1.2.8.2 he
159 1.2.8.2 he return (0);
160 1.2.8.2 he }
161 1.2.8.2 he
162 1.2.8.2 he static int
163 1.2.8.2 he ld_mlx_dobio(struct ld_mlx_softc *sc, void *data, int datasize, int blkno,
164 1.2.8.2 he int dowrite, struct buf *bp)
165 1.2.8.2 he {
166 1.2.8.2 he struct mlx_ccb *mc;
167 1.2.8.2 he struct mlx_softc *mlx;
168 1.2.8.2 he int s, rv;
169 1.2.8.2 he bus_addr_t sgphys;
170 1.2.8.2 he
171 1.2.8.2 he mlx = (struct mlx_softc *)sc->sc_ld.sc_dv.dv_parent;
172 1.2.8.2 he
173 1.2.8.2 he if ((rv = mlx_ccb_alloc(mlx, &mc, bp == NULL)) != 0)
174 1.2.8.2 he return (rv);
175 1.2.8.2 he
176 1.2.8.2 he /* Map the data transfer. */
177 1.2.8.2 he rv = mlx_ccb_map(mlx, mc, data, datasize,
178 1.2.8.2 he dowrite ? MC_XFER_OUT : MC_XFER_IN);
179 1.2.8.2 he if (rv != 0) {
180 1.2.8.2 he mlx_ccb_free(mlx, mc);
181 1.2.8.2 he return (rv);
182 1.2.8.2 he }
183 1.2.8.2 he
184 1.2.8.2 he /* Build the command. */
185 1.2.8.2 he sgphys = mlx->mlx_sgls_paddr + (MLX_SGL_SIZE * mc->mc_ident);
186 1.2.8.2 he datasize /= MLX_SECTOR_SIZE;
187 1.2.8.2 he
188 1.2.8.2 he if (mlx->mlx_iftype == 2)
189 1.2.8.2 he mlx_make_type1(mc,
190 1.2.8.2 he dowrite ? MLX_CMD_WRITESG_OLD : MLX_CMD_READSG_OLD,
191 1.2.8.2 he datasize & 0xff, blkno, sc->sc_hwunit, sgphys,
192 1.2.8.2 he mc->mc_nsgent);
193 1.2.8.2 he else
194 1.2.8.2 he mlx_make_type5(mc,
195 1.2.8.2 he dowrite ? MLX_CMD_WRITESG : MLX_CMD_READSG,
196 1.2.8.2 he datasize & 0xff,
197 1.2.8.2 he (sc->sc_hwunit << 3) | ((datasize >> 8) & 0x07),
198 1.2.8.2 he blkno, sgphys, mc->mc_nsgent);
199 1.2.8.2 he
200 1.2.8.2 he if (bp == NULL) {
201 1.2.8.2 he s = splbio();
202 1.2.8.2 he rv = mlx_ccb_poll(mlx, mc, 10000);
203 1.2.8.2 he mlx_ccb_unmap(mlx, mc);
204 1.2.8.2 he mlx_ccb_free(mlx, mc);
205 1.2.8.2 he splx(s);
206 1.2.8.2 he } else {
207 1.2.8.2 he mc->mc_mx.mx_handler = ld_mlx_handler;
208 1.2.8.2 he mc->mc_mx.mx_context = bp;
209 1.2.8.2 he mc->mc_mx.mx_dv = &sc->sc_ld.sc_dv;
210 1.2.8.2 he mlx_ccb_enqueue(mlx, mc);
211 1.2.8.2 he rv = 0;
212 1.2.8.2 he }
213 1.2.8.2 he
214 1.2.8.2 he return (rv);
215 1.2.8.2 he }
216 1.2.8.2 he
217 1.2.8.2 he static int
218 1.2.8.2 he ld_mlx_start(struct ld_softc *ld, struct buf *bp)
219 1.2.8.2 he {
220 1.2.8.2 he
221 1.2.8.2 he return (ld_mlx_dobio((struct ld_mlx_softc *)ld, bp->b_data,
222 1.2.8.2 he bp->b_bcount, bp->b_rawblkno, (bp->b_flags & B_READ) == 0, bp));
223 1.2.8.2 he }
224 1.2.8.2 he
225 1.2.8.2 he static void
226 1.2.8.2 he ld_mlx_handler(struct mlx_ccb *mc)
227 1.2.8.2 he {
228 1.2.8.2 he struct buf *bp;
229 1.2.8.2 he struct mlx_context *mx;
230 1.2.8.2 he struct ld_mlx_softc *sc;
231 1.2.8.2 he struct mlx_softc *mlx;
232 1.2.8.2 he
233 1.2.8.2 he mx = &mc->mc_mx;
234 1.2.8.2 he bp = mx->mx_context;
235 1.2.8.2 he sc = (struct ld_mlx_softc *)mx->mx_dv;
236 1.2.8.2 he mlx = (struct mlx_softc *)sc->sc_ld.sc_dv.dv_parent;
237 1.2.8.2 he
238 1.2.8.2 he if (mc->mc_status != MLX_STATUS_OK) {
239 1.2.8.2 he bp->b_flags |= B_ERROR;
240 1.2.8.2 he bp->b_error = EIO;
241 1.2.8.2 he bp->b_resid = bp->b_bcount;
242 1.2.8.2 he
243 1.2.8.2 he if (mc->mc_status == MLX_STATUS_RDWROFFLINE)
244 1.2.8.2 he printf("%s: drive offline\n",
245 1.2.8.2 he sc->sc_ld.sc_dv.dv_xname);
246 1.2.8.2 he else
247 1.2.8.2 he printf("%s: I/O error - %s\n",
248 1.2.8.2 he sc->sc_ld.sc_dv.dv_xname,
249 1.2.8.2 he mlx_ccb_diagnose(mc));
250 1.2.8.2 he } else
251 1.2.8.2 he bp->b_resid = 0;
252 1.2.8.2 he
253 1.2.8.2 he mlx_ccb_unmap(mlx, mc);
254 1.2.8.2 he mlx_ccb_free(mlx, mc);
255 1.2.8.2 he lddone(&sc->sc_ld, bp);
256 1.2.8.2 he }
257 1.2.8.2 he
258 1.2.8.2 he static int
259 1.2.8.2 he ld_mlx_dump(struct ld_softc *ld, void *data, int blkno, int blkcnt)
260 1.2.8.2 he {
261 1.2.8.2 he
262 1.2.8.2 he return (ld_mlx_dobio((struct ld_mlx_softc *)ld, data,
263 1.2.8.2 he blkcnt * ld->sc_secsize, blkno, 1, NULL));
264 1.2.8.2 he }
265