mmemcard.c revision 1.13 1 1.13 ad /* $NetBSD: mmemcard.c,v 1.13 2007/10/08 16:41:07 ad Exp $ */
2 1.1 itohy
3 1.1 itohy /*-
4 1.1 itohy * Copyright (c) 2002 The NetBSD Foundation, Inc.
5 1.1 itohy * All rights reserved.
6 1.1 itohy *
7 1.1 itohy * This code is derived from software contributed to The NetBSD Foundation
8 1.1 itohy * by ITOH Yasufumi.
9 1.1 itohy *
10 1.1 itohy * Redistribution and use in source and binary forms, with or without
11 1.1 itohy * modification, are permitted provided that the following conditions
12 1.1 itohy * are met:
13 1.1 itohy * 1. Redistributions of source code must retain the above copyright
14 1.1 itohy * notice, this list of conditions and the following disclaimer.
15 1.1 itohy * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 itohy * notice, this list of conditions and the following disclaimer in the
17 1.1 itohy * documentation and/or other materials provided with the distribution.
18 1.1 itohy * 3. All advertising materials mentioning features or use of this software
19 1.1 itohy * must display the following acknowledgement:
20 1.1 itohy * This product includes software developed by the NetBSD
21 1.1 itohy * Foundation, Inc. and its contributors.
22 1.1 itohy * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 itohy * contributors may be used to endorse or promote products derived
24 1.1 itohy * from this software without specific prior written permission.
25 1.1 itohy *
26 1.1 itohy * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 itohy * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 itohy * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 itohy * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 itohy * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 itohy * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 itohy * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 itohy * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 itohy * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 itohy * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 itohy * POSSIBILITY OF SUCH DAMAGE.
37 1.1 itohy */
38 1.3 lukem
39 1.3 lukem #include <sys/cdefs.h>
40 1.13 ad __KERNEL_RCSID(0, "$NetBSD: mmemcard.c,v 1.13 2007/10/08 16:41:07 ad Exp $");
41 1.1 itohy
42 1.1 itohy #include <sys/param.h>
43 1.1 itohy #include <sys/buf.h>
44 1.4 yamt #include <sys/bufq.h>
45 1.1 itohy #include <sys/device.h>
46 1.1 itohy #include <sys/disklabel.h>
47 1.1 itohy #include <sys/disk.h>
48 1.1 itohy #include <sys/kernel.h>
49 1.1 itohy #include <sys/malloc.h>
50 1.1 itohy #include <sys/proc.h>
51 1.1 itohy #include <sys/stat.h>
52 1.1 itohy #include <sys/systm.h>
53 1.1 itohy #include <sys/vnode.h>
54 1.1 itohy #include <sys/conf.h>
55 1.1 itohy
56 1.1 itohy #include <dreamcast/dev/maple/maple.h>
57 1.1 itohy #include <dreamcast/dev/maple/mapleconf.h>
58 1.1 itohy
59 1.1 itohy #define MMEM_MAXACCSIZE 1012 /* (255*4) - 8 = 253*32 / 8 */
60 1.1 itohy
61 1.1 itohy struct mmem_funcdef { /* XXX assuming little-endian structure packing */
62 1.1 itohy unsigned unused : 8,
63 1.1 itohy ra : 4, /* number of access / read */
64 1.1 itohy wa : 4, /* number of access / write */
65 1.1 itohy bb : 8, /* block size / 32 - 1 */
66 1.1 itohy pt : 8; /* number of partition - 1 */
67 1.1 itohy };
68 1.1 itohy
69 1.1 itohy struct mmem_request_read_data {
70 1.5 tsutsui uint32_t func_code;
71 1.5 tsutsui uint8_t pt;
72 1.5 tsutsui uint8_t phase;
73 1.5 tsutsui uint16_t block;
74 1.1 itohy };
75 1.1 itohy
76 1.1 itohy struct mmem_response_read_data {
77 1.5 tsutsui uint32_t func_code; /* function code (big endian) */
78 1.5 tsutsui uint32_t blkno; /* 512byte block number (big endian) */
79 1.5 tsutsui uint8_t data[MMEM_MAXACCSIZE];
80 1.1 itohy };
81 1.1 itohy
82 1.1 itohy struct mmem_request_write_data {
83 1.5 tsutsui uint32_t func_code;
84 1.5 tsutsui uint8_t pt;
85 1.5 tsutsui uint8_t phase; /* 0, 1, 2, 3: for each 128 byte */
86 1.5 tsutsui uint16_t block;
87 1.5 tsutsui uint8_t data[MMEM_MAXACCSIZE];
88 1.1 itohy };
89 1.1 itohy #define MMEM_SIZE_REQW(sc) ((sc)->sc_waccsz + 8)
90 1.1 itohy
91 1.1 itohy struct mmem_request_get_media_info {
92 1.5 tsutsui uint32_t func_code;
93 1.5 tsutsui uint32_t pt; /* pt (1 byte) and unused 3 bytes */
94 1.1 itohy };
95 1.1 itohy
96 1.1 itohy struct mmem_media_info {
97 1.5 tsutsui uint16_t maxblk, minblk;
98 1.5 tsutsui uint16_t infpos;
99 1.5 tsutsui uint16_t fatpos, fatsz;
100 1.5 tsutsui uint16_t dirpos, dirsz;
101 1.5 tsutsui uint16_t icon;
102 1.5 tsutsui uint16_t datasz;
103 1.5 tsutsui uint16_t rsvd[3];
104 1.1 itohy };
105 1.1 itohy
106 1.1 itohy struct mmem_response_media_info {
107 1.5 tsutsui uint32_t func_code; /* function code (big endian) */
108 1.1 itohy struct mmem_media_info info;
109 1.1 itohy };
110 1.1 itohy
111 1.1 itohy struct mmem_softc {
112 1.1 itohy struct device sc_dev;
113 1.1 itohy
114 1.1 itohy struct device *sc_parent;
115 1.1 itohy struct maple_unit *sc_unit;
116 1.1 itohy struct maple_devinfo *sc_devinfo;
117 1.1 itohy
118 1.1 itohy enum mmem_stat {
119 1.1 itohy MMEM_INIT, /* during initialization */
120 1.1 itohy MMEM_INIT2, /* during initialization */
121 1.1 itohy MMEM_IDLE, /* init done, not in I/O */
122 1.1 itohy MMEM_READ, /* in read operation */
123 1.1 itohy MMEM_WRITE1, /* in write operation (read and compare) */
124 1.1 itohy MMEM_WRITE2, /* in write operation (write) */
125 1.1 itohy MMEM_DETACH /* detaching */
126 1.1 itohy } sc_stat;
127 1.1 itohy
128 1.1 itohy int sc_npt; /* number of partitions */
129 1.1 itohy int sc_bsize; /* block size */
130 1.1 itohy int sc_wacc; /* number of write access per block */
131 1.1 itohy int sc_waccsz; /* size of a write access */
132 1.1 itohy int sc_racc; /* number of read access per block */
133 1.1 itohy int sc_raccsz; /* size of a read access */
134 1.1 itohy
135 1.1 itohy struct mmem_pt {
136 1.1 itohy int pt_flags;
137 1.1 itohy #define MMEM_PT_OK 1 /* partition is alive */
138 1.1 itohy struct disk pt_dk; /* disk(9) */
139 1.1 itohy struct mmem_media_info pt_info; /* geometry per part */
140 1.1 itohy
141 1.2 itohy char pt_name[16 /* see device.h */ + 4 /* ".255" */];
142 1.1 itohy } *sc_pt;
143 1.1 itohy
144 1.1 itohy /* write request buffer (only one is used at a time) */
145 1.1 itohy union {
146 1.1 itohy struct mmem_request_read_data req_read;
147 1.1 itohy struct mmem_request_write_data req_write;
148 1.1 itohy struct mmem_request_get_media_info req_minfo;
149 1.1 itohy } sc_req;
150 1.1 itohy #define sc_reqr sc_req.req_read
151 1.1 itohy #define sc_reqw sc_req.req_write
152 1.1 itohy #define sc_reqm sc_req.req_minfo
153 1.1 itohy
154 1.1 itohy /* pending buffers */
155 1.6 yamt struct bufq_state *sc_q;
156 1.1 itohy
157 1.1 itohy /* current I/O access */
158 1.1 itohy struct buf *sc_bp;
159 1.1 itohy int sc_cnt;
160 1.1 itohy char *sc_iobuf;
161 1.1 itohy int sc_retry;
162 1.1 itohy #define MMEM_MAXRETRY 12
163 1.1 itohy };
164 1.1 itohy
165 1.1 itohy /*
166 1.1 itohy * minor number layout (mmemdetach() depends on this layout):
167 1.1 itohy *
168 1.1 itohy * 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
169 1.1 itohy * |---------------------| |---------------------| |---------|
170 1.1 itohy * unit part disklabel partition
171 1.1 itohy */
172 1.1 itohy #define MMEM_PART(diskunit) ((diskunit) & 0xff)
173 1.1 itohy #define MMEM_UNIT(diskunit) ((diskunit) >> 8)
174 1.1 itohy #define MMEM_DISKMINOR(unit, part, disklabel_partition) \
175 1.1 itohy DISKMINOR(((unit) << 8) | (part), (disklabel_partition))
176 1.1 itohy
177 1.5 tsutsui static int mmemmatch(struct device *, struct cfdata *, void *);
178 1.5 tsutsui static void mmemattach(struct device *, struct device *, void *);
179 1.5 tsutsui static void mmem_defaultlabel(struct mmem_softc *, struct mmem_pt *,
180 1.5 tsutsui struct disklabel *);
181 1.5 tsutsui static int mmemdetach(struct device *, int);
182 1.5 tsutsui static void mmem_intr(void *, struct maple_response *, int, int);
183 1.5 tsutsui static void mmem_printerror(const char *, int, int, uint32_t);
184 1.5 tsutsui static void mmemstart(struct mmem_softc *);
185 1.5 tsutsui static void mmemstart_bp(struct mmem_softc *);
186 1.5 tsutsui static void mmemstart_write2(struct mmem_softc *);
187 1.5 tsutsui static void mmemdone(struct mmem_softc *, struct mmem_pt *, int);
188 1.1 itohy
189 1.1 itohy dev_type_open(mmemopen);
190 1.1 itohy dev_type_close(mmemclose);
191 1.1 itohy dev_type_read(mmemread);
192 1.1 itohy dev_type_write(mmemwrite);
193 1.1 itohy dev_type_ioctl(mmemioctl);
194 1.1 itohy dev_type_strategy(mmemstrategy);
195 1.1 itohy
196 1.1 itohy const struct bdevsw mmem_bdevsw = {
197 1.1 itohy mmemopen, mmemclose, mmemstrategy, mmemioctl, nodump,
198 1.1 itohy nosize, D_DISK
199 1.1 itohy };
200 1.1 itohy
201 1.1 itohy const struct cdevsw mmem_cdevsw = {
202 1.1 itohy mmemopen, mmemclose, mmemread, mmemwrite, mmemioctl,
203 1.1 itohy nostop, notty, nopoll, nommap, nokqfilter, D_DISK
204 1.1 itohy };
205 1.1 itohy
206 1.1 itohy CFATTACH_DECL(mmem, sizeof(struct mmem_softc),
207 1.1 itohy mmemmatch, mmemattach, mmemdetach, NULL);
208 1.1 itohy
209 1.1 itohy extern struct cfdriver mmem_cd;
210 1.1 itohy
211 1.1 itohy struct dkdriver mmemdkdriver = { mmemstrategy };
212 1.1 itohy
213 1.1 itohy static int
214 1.5 tsutsui mmemmatch(struct device *parent, struct cfdata *cf, void *aux)
215 1.1 itohy {
216 1.1 itohy struct maple_attach_args *ma = aux;
217 1.1 itohy
218 1.5 tsutsui return ma->ma_function == MAPLE_FN_MEMCARD ? MAPLE_MATCH_FUNC : 0;
219 1.1 itohy }
220 1.1 itohy
221 1.1 itohy static void
222 1.5 tsutsui mmemattach(struct device *parent, struct device *self, void *aux)
223 1.1 itohy {
224 1.5 tsutsui struct mmem_softc *sc = (void *)self;
225 1.1 itohy struct maple_attach_args *ma = aux;
226 1.1 itohy int i;
227 1.1 itohy union {
228 1.5 tsutsui uint32_t v;
229 1.1 itohy struct mmem_funcdef s;
230 1.1 itohy } funcdef;
231 1.1 itohy
232 1.1 itohy sc->sc_parent = parent;
233 1.1 itohy sc->sc_unit = ma->ma_unit;
234 1.1 itohy sc->sc_devinfo = ma->ma_devinfo;
235 1.1 itohy
236 1.1 itohy funcdef.v = maple_get_function_data(ma->ma_devinfo, MAPLE_FN_MEMCARD);
237 1.1 itohy printf(": Memory card\n");
238 1.1 itohy printf("%s: %d part, %d bytes/block, ",
239 1.1 itohy sc->sc_dev.dv_xname,
240 1.1 itohy sc->sc_npt = funcdef.s.pt + 1,
241 1.1 itohy sc->sc_bsize = (funcdef.s.bb + 1) << 5);
242 1.1 itohy if ((sc->sc_wacc = funcdef.s.wa) == 0)
243 1.1 itohy printf("no write, ");
244 1.1 itohy else
245 1.1 itohy printf("%d acc/write, ", sc->sc_wacc);
246 1.1 itohy if ((sc->sc_racc = funcdef.s.ra) == 0)
247 1.1 itohy printf("no read\n");
248 1.1 itohy else
249 1.1 itohy printf("%d acc/read\n", sc->sc_racc);
250 1.1 itohy
251 1.1 itohy /*
252 1.1 itohy * start init sequence
253 1.1 itohy */
254 1.1 itohy sc->sc_stat = MMEM_INIT;
255 1.6 yamt bufq_alloc(&sc->sc_q, "disksort", BUFQ_SORT_RAWBLOCK);
256 1.1 itohy
257 1.1 itohy /* check consistency */
258 1.1 itohy if (sc->sc_wacc != 0) {
259 1.1 itohy sc->sc_waccsz = sc->sc_bsize / sc->sc_wacc;
260 1.1 itohy if (sc->sc_bsize != sc->sc_waccsz * sc->sc_wacc) {
261 1.1 itohy printf("%s: write access isn't equally divided\n",
262 1.1 itohy sc->sc_dev.dv_xname);
263 1.1 itohy sc->sc_wacc = 0; /* no write */
264 1.1 itohy } else if (sc->sc_waccsz > MMEM_MAXACCSIZE) {
265 1.1 itohy printf("%s: write access size is too large\n",
266 1.1 itohy sc->sc_dev.dv_xname);
267 1.1 itohy sc->sc_wacc = 0; /* no write */
268 1.1 itohy }
269 1.1 itohy }
270 1.1 itohy if (sc->sc_racc != 0) {
271 1.1 itohy sc->sc_raccsz = sc->sc_bsize / sc->sc_racc;
272 1.1 itohy if (sc->sc_bsize != sc->sc_raccsz * sc->sc_racc) {
273 1.1 itohy printf("%s: read access isn't equally divided\n",
274 1.1 itohy sc->sc_dev.dv_xname);
275 1.1 itohy sc->sc_racc = 0; /* no read */
276 1.1 itohy } else if (sc->sc_raccsz > MMEM_MAXACCSIZE) {
277 1.1 itohy printf("%s: read access size is too large\n",
278 1.1 itohy sc->sc_dev.dv_xname);
279 1.1 itohy sc->sc_racc = 0; /* no read */
280 1.1 itohy }
281 1.1 itohy }
282 1.1 itohy if (sc->sc_wacc == 0 && sc->sc_racc == 0) {
283 1.1 itohy printf("%s: device doesn't support read nor write\n",
284 1.1 itohy sc->sc_dev.dv_xname);
285 1.1 itohy return;
286 1.1 itohy }
287 1.1 itohy
288 1.1 itohy /* per-part structure */
289 1.1 itohy sc->sc_pt = malloc(sizeof(struct mmem_pt) * sc->sc_npt, M_DEVBUF,
290 1.1 itohy M_WAITOK|M_ZERO);
291 1.1 itohy
292 1.1 itohy for (i = 0; i < sc->sc_npt; i++) {
293 1.1 itohy sprintf(sc->sc_pt[i].pt_name, "%s.%d", sc->sc_dev.dv_xname, i);
294 1.1 itohy }
295 1.1 itohy
296 1.1 itohy maple_set_callback(parent, sc->sc_unit, MAPLE_FN_MEMCARD,
297 1.1 itohy mmem_intr, sc);
298 1.1 itohy
299 1.1 itohy /*
300 1.1 itohy * get capacity (start from partition 0)
301 1.1 itohy */
302 1.5 tsutsui sc->sc_reqm.func_code = htobe32(MAPLE_FUNC(MAPLE_FN_MEMCARD));
303 1.1 itohy sc->sc_reqm.pt = 0;
304 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit, MAPLE_FN_MEMCARD,
305 1.1 itohy MAPLE_COMMAND_GETMINFO, sizeof sc->sc_reqm / 4, &sc->sc_reqm, 0);
306 1.1 itohy }
307 1.1 itohy
308 1.1 itohy static int
309 1.5 tsutsui mmemdetach(struct device *self, int flags)
310 1.1 itohy {
311 1.1 itohy struct mmem_softc *sc = (struct mmem_softc *) self;
312 1.1 itohy struct buf *bp;
313 1.1 itohy int i;
314 1.1 itohy int minor_l, minor_h;
315 1.1 itohy
316 1.1 itohy sc->sc_stat = MMEM_DETACH; /* just in case */
317 1.1 itohy
318 1.1 itohy /*
319 1.1 itohy * kill pending I/O
320 1.1 itohy */
321 1.1 itohy if ((bp = sc->sc_bp) != NULL) {
322 1.1 itohy bp->b_error = EIO;
323 1.1 itohy bp->b_resid = bp->b_bcount;
324 1.1 itohy biodone(bp);
325 1.1 itohy }
326 1.6 yamt while ((bp = BUFQ_GET(sc->sc_q)) != NULL) {
327 1.1 itohy bp->b_error = EIO;
328 1.1 itohy bp->b_resid = bp->b_bcount;
329 1.1 itohy biodone(bp);
330 1.1 itohy }
331 1.6 yamt bufq_free(sc->sc_q);
332 1.1 itohy
333 1.1 itohy /*
334 1.1 itohy * revoke vnodes
335 1.1 itohy */
336 1.1 itohy #ifdef __HAVE_OLD_DISKLABEL
337 1.1 itohy #error This code assumes DISKUNIT() is contiguous in minor number.
338 1.1 itohy #endif
339 1.8 thorpej minor_l = MMEM_DISKMINOR(device_unit(self), 0, 0);
340 1.8 thorpej minor_h = MMEM_DISKMINOR(device_unit(self), sc->sc_npt - 1,
341 1.1 itohy MAXPARTITIONS - 1);
342 1.1 itohy vdevgone(bdevsw_lookup_major(&mmem_bdevsw), minor_l, minor_h, VBLK);
343 1.1 itohy vdevgone(cdevsw_lookup_major(&mmem_cdevsw), minor_l, minor_h, VCHR);
344 1.1 itohy
345 1.1 itohy /*
346 1.1 itohy * free per-partition structure
347 1.1 itohy */
348 1.1 itohy if (sc->sc_pt) {
349 1.1 itohy /*
350 1.1 itohy * detach disks
351 1.1 itohy */
352 1.1 itohy for (i = 0; i < sc->sc_npt; i++) {
353 1.13 ad if (sc->sc_pt[i].pt_flags & MMEM_PT_OK) {
354 1.1 itohy disk_detach(&sc->sc_pt[i].pt_dk);
355 1.13 ad disk_destroy(&sc->sc_pt[i].pt_dk);
356 1.13 ad }
357 1.1 itohy }
358 1.1 itohy free(sc->sc_pt, M_DEVBUF);
359 1.1 itohy }
360 1.1 itohy
361 1.1 itohy return 0;
362 1.1 itohy }
363 1.1 itohy
364 1.1 itohy /* fake disklabel */
365 1.1 itohy static void
366 1.5 tsutsui mmem_defaultlabel(struct mmem_softc *sc, struct mmem_pt *pt,
367 1.5 tsutsui struct disklabel *d)
368 1.1 itohy {
369 1.1 itohy
370 1.5 tsutsui memset(d, 0, sizeof *d);
371 1.1 itohy
372 1.1 itohy #if 0
373 1.1 itohy d->d_type = DTYPE_FLOPPY; /* XXX? */
374 1.1 itohy #endif
375 1.1 itohy strncpy(d->d_typename, sc->sc_devinfo->di_product_name,
376 1.1 itohy sizeof d->d_typename);
377 1.1 itohy strcpy(d->d_packname, "fictitious");
378 1.1 itohy d->d_secsize = sc->sc_bsize;
379 1.1 itohy d->d_ntracks = 1; /* XXX */
380 1.1 itohy d->d_nsectors = d->d_secpercyl = 8; /* XXX */
381 1.1 itohy d->d_secperunit = pt->pt_info.maxblk - pt->pt_info.minblk + 1;
382 1.1 itohy d->d_ncylinders = d->d_secperunit / d->d_secpercyl;
383 1.1 itohy d->d_rpm = 1; /* when 4 acc/write */
384 1.1 itohy
385 1.1 itohy d->d_npartitions = RAW_PART + 1;
386 1.1 itohy d->d_partitions[RAW_PART].p_size = d->d_secperunit;
387 1.1 itohy
388 1.1 itohy d->d_magic = d->d_magic2 = DISKMAGIC;
389 1.1 itohy d->d_checksum = dkcksum(d);
390 1.1 itohy }
391 1.1 itohy
392 1.1 itohy /*
393 1.1 itohy * called back from maple bus driver
394 1.1 itohy */
395 1.1 itohy static void
396 1.5 tsutsui mmem_intr(void *dev, struct maple_response *response, int sz, int flags)
397 1.1 itohy {
398 1.1 itohy struct mmem_softc *sc = dev;
399 1.1 itohy struct mmem_response_read_data *r = (void *) response->data;
400 1.1 itohy struct mmem_response_media_info *rm = (void *) response->data;
401 1.1 itohy struct buf *bp;
402 1.1 itohy int part;
403 1.1 itohy struct mmem_pt *pt;
404 1.1 itohy char pbuf[9];
405 1.1 itohy int off;
406 1.1 itohy
407 1.1 itohy switch (sc->sc_stat) {
408 1.1 itohy case MMEM_INIT:
409 1.1 itohy /* checking part geometry */
410 1.1 itohy part = sc->sc_reqm.pt;
411 1.1 itohy pt = &sc->sc_pt[part];
412 1.1 itohy switch ((maple_response_t) response->response_code) {
413 1.1 itohy case MAPLE_RESPONSE_DATATRF:
414 1.1 itohy pt->pt_info = rm->info;
415 1.1 itohy format_bytes(pbuf, sizeof(pbuf),
416 1.5 tsutsui (uint64_t)
417 1.1 itohy ((pt->pt_info.maxblk - pt->pt_info.minblk + 1)
418 1.1 itohy * sc->sc_bsize));
419 1.1 itohy printf("%s: %s, blk %d %d, inf %d, fat %d %d, dir %d %d, icon %d, data %d\n",
420 1.1 itohy pt->pt_name,
421 1.1 itohy pbuf,
422 1.1 itohy pt->pt_info.maxblk, pt->pt_info.minblk,
423 1.1 itohy pt->pt_info.infpos,
424 1.1 itohy pt->pt_info.fatpos, pt->pt_info.fatsz,
425 1.1 itohy pt->pt_info.dirpos, pt->pt_info.dirsz,
426 1.1 itohy pt->pt_info.icon,
427 1.1 itohy pt->pt_info.datasz);
428 1.1 itohy
429 1.13 ad disk_init(&pt->pt_dk, pt->pt_name, &mmemdkdriver);
430 1.1 itohy disk_attach(&pt->pt_dk);
431 1.1 itohy
432 1.1 itohy mmem_defaultlabel(sc, pt, pt->pt_dk.dk_label);
433 1.1 itohy
434 1.1 itohy /* this partition is active */
435 1.1 itohy pt->pt_flags = MMEM_PT_OK;
436 1.1 itohy
437 1.1 itohy break;
438 1.1 itohy default:
439 1.1 itohy printf("%s: init: unexpected response %#x, sz %d\n",
440 1.5 tsutsui pt->pt_name, be32toh(response->response_code), sz);
441 1.1 itohy break;
442 1.1 itohy }
443 1.1 itohy if (++part == sc->sc_npt) {
444 1.1 itohy #if 1
445 1.1 itohy /*
446 1.1 itohy * XXX Read a block and discard the contents (only to
447 1.1 itohy * turn off the access indicator on Visual Memory).
448 1.1 itohy */
449 1.1 itohy pt = &sc->sc_pt[0];
450 1.1 itohy sc->sc_reqr.func_code =
451 1.5 tsutsui htobe32(MAPLE_FUNC(MAPLE_FN_MEMCARD));
452 1.1 itohy sc->sc_reqr.pt = 0;
453 1.5 tsutsui sc->sc_reqr.block = htobe16(pt->pt_info.minblk);
454 1.1 itohy sc->sc_reqr.phase = 0;
455 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit,
456 1.1 itohy MAPLE_FN_MEMCARD, MAPLE_COMMAND_BREAD,
457 1.1 itohy sizeof sc->sc_reqr / 4, &sc->sc_reqr, 0);
458 1.1 itohy sc->sc_stat = MMEM_INIT2;
459 1.1 itohy #else
460 1.1 itohy sc->sc_stat = MMEM_IDLE; /* init done */
461 1.1 itohy #endif
462 1.1 itohy } else {
463 1.1 itohy sc->sc_reqm.pt = part;
464 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit,
465 1.1 itohy MAPLE_FN_MEMCARD, MAPLE_COMMAND_GETMINFO,
466 1.1 itohy sizeof sc->sc_reqm / 4, &sc->sc_reqm, 0);
467 1.1 itohy }
468 1.1 itohy break;
469 1.1 itohy
470 1.1 itohy case MMEM_INIT2:
471 1.1 itohy /* XXX just discard */
472 1.1 itohy sc->sc_stat = MMEM_IDLE; /* init done */
473 1.1 itohy break;
474 1.1 itohy
475 1.1 itohy case MMEM_READ:
476 1.1 itohy bp = sc->sc_bp;
477 1.1 itohy
478 1.1 itohy switch ((maple_response_t) response->response_code) {
479 1.1 itohy case MAPLE_RESPONSE_DATATRF: /* read done */
480 1.1 itohy off = sc->sc_raccsz * sc->sc_reqr.phase;
481 1.5 tsutsui memcpy(sc->sc_iobuf + off, r->data + off,
482 1.5 tsutsui sc->sc_raccsz);
483 1.1 itohy
484 1.1 itohy if (++sc->sc_reqr.phase == sc->sc_racc) {
485 1.1 itohy /* all phase done */
486 1.1 itohy pt = &sc->sc_pt[sc->sc_reqr.pt];
487 1.1 itohy mmemdone(sc, pt, 0);
488 1.1 itohy } else {
489 1.1 itohy /* go next phase */
490 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit,
491 1.1 itohy MAPLE_FN_MEMCARD, MAPLE_COMMAND_BREAD,
492 1.1 itohy sizeof sc->sc_reqr / 4, &sc->sc_reqr, 0);
493 1.1 itohy }
494 1.1 itohy break;
495 1.1 itohy case MAPLE_RESPONSE_FILEERR:
496 1.1 itohy mmem_printerror(sc->sc_pt[sc->sc_reqr.pt].pt_name,
497 1.1 itohy 1, bp->b_rawblkno,
498 1.1 itohy r->func_code /* XXX */);
499 1.1 itohy mmemstart_bp(sc); /* retry */
500 1.1 itohy break;
501 1.1 itohy default:
502 1.1 itohy printf("%s: read: unexpected response %#x %#x, sz %d\n",
503 1.1 itohy sc->sc_pt[sc->sc_reqr.pt].pt_name,
504 1.5 tsutsui be32toh(response->response_code),
505 1.5 tsutsui be32toh(r->func_code), sz);
506 1.1 itohy mmemstart_bp(sc); /* retry */
507 1.1 itohy break;
508 1.1 itohy }
509 1.1 itohy break;
510 1.1 itohy
511 1.1 itohy case MMEM_WRITE1: /* read before write / verify after write */
512 1.1 itohy bp = sc->sc_bp;
513 1.1 itohy
514 1.1 itohy switch ((maple_response_t) response->response_code) {
515 1.1 itohy case MAPLE_RESPONSE_DATATRF: /* read done */
516 1.1 itohy off = sc->sc_raccsz * sc->sc_reqr.phase;
517 1.5 tsutsui if (memcmp(r->data + off, sc->sc_iobuf + off,
518 1.1 itohy sc->sc_raccsz)) {
519 1.1 itohy /*
520 1.1 itohy * data differ, start writing
521 1.1 itohy */
522 1.1 itohy mmemstart_write2(sc);
523 1.1 itohy } else if (++sc->sc_reqr.phase == sc->sc_racc) {
524 1.1 itohy /*
525 1.1 itohy * all phase done and compared equal
526 1.1 itohy */
527 1.1 itohy pt = &sc->sc_pt[sc->sc_reqr.pt];
528 1.1 itohy mmemdone(sc, pt, 0);
529 1.1 itohy } else {
530 1.1 itohy /* go next phase */
531 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit,
532 1.1 itohy MAPLE_FN_MEMCARD, MAPLE_COMMAND_BREAD,
533 1.1 itohy sizeof sc->sc_reqr / 4, &sc->sc_reqr, 0);
534 1.1 itohy }
535 1.1 itohy break;
536 1.1 itohy case MAPLE_RESPONSE_FILEERR:
537 1.1 itohy mmem_printerror(sc->sc_pt[sc->sc_reqr.pt].pt_name,
538 1.1 itohy 1, bp->b_rawblkno,
539 1.1 itohy r->func_code /* XXX */);
540 1.1 itohy mmemstart_write2(sc); /* start writing */
541 1.1 itohy break;
542 1.1 itohy default:
543 1.1 itohy printf("%s: verify: unexpected response %#x %#x, sz %d\n",
544 1.1 itohy sc->sc_pt[sc->sc_reqr.pt].pt_name,
545 1.5 tsutsui be32toh(response->response_code),
546 1.5 tsutsui be32toh(r->func_code), sz);
547 1.1 itohy mmemstart_write2(sc); /* start writing */
548 1.1 itohy break;
549 1.1 itohy }
550 1.1 itohy break;
551 1.1 itohy
552 1.1 itohy case MMEM_WRITE2: /* write */
553 1.1 itohy bp = sc->sc_bp;
554 1.1 itohy
555 1.1 itohy switch ((maple_response_t) response->response_code) {
556 1.1 itohy case MAPLE_RESPONSE_OK: /* write done */
557 1.1 itohy if (sc->sc_reqw.phase == sc->sc_wacc) {
558 1.1 itohy /* all phase done */
559 1.1 itohy mmemstart_bp(sc); /* start verify */
560 1.1 itohy } else if (++sc->sc_reqw.phase == sc->sc_wacc) {
561 1.1 itohy /* check error */
562 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit,
563 1.1 itohy MAPLE_FN_MEMCARD, MAPLE_COMMAND_GETLASTERR,
564 1.1 itohy 2 /* no data */ , &sc->sc_reqw,
565 1.1 itohy MAPLE_FLAG_CMD_PERIODIC_TIMING);
566 1.1 itohy } else {
567 1.1 itohy /* go next phase */
568 1.5 tsutsui memcpy(sc->sc_reqw.data, sc->sc_iobuf +
569 1.5 tsutsui sc->sc_waccsz * sc->sc_reqw.phase,
570 1.5 tsutsui sc->sc_waccsz);
571 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit,
572 1.1 itohy MAPLE_FN_MEMCARD, MAPLE_COMMAND_BWRITE,
573 1.1 itohy MMEM_SIZE_REQW(sc) / 4, &sc->sc_reqw,
574 1.1 itohy MAPLE_FLAG_CMD_PERIODIC_TIMING);
575 1.1 itohy }
576 1.1 itohy break;
577 1.1 itohy case MAPLE_RESPONSE_FILEERR:
578 1.1 itohy mmem_printerror(sc->sc_pt[sc->sc_reqw.pt].pt_name,
579 1.1 itohy 0, bp->b_rawblkno,
580 1.1 itohy r->func_code /* XXX */);
581 1.1 itohy mmemstart_write2(sc); /* retry writing */
582 1.1 itohy break;
583 1.1 itohy default:
584 1.1 itohy printf("%s: write: unexpected response %#x, %#x, sz %d\n",
585 1.1 itohy sc->sc_pt[sc->sc_reqw.pt].pt_name,
586 1.5 tsutsui be32toh(response->response_code),
587 1.5 tsutsui be32toh(r->func_code), sz);
588 1.1 itohy mmemstart_write2(sc); /* retry writing */
589 1.1 itohy break;
590 1.1 itohy }
591 1.1 itohy break;
592 1.1 itohy
593 1.1 itohy default:
594 1.1 itohy break;
595 1.1 itohy }
596 1.1 itohy }
597 1.1 itohy
598 1.1 itohy static void
599 1.5 tsutsui mmem_printerror(const char *head, int rd, int blk, uint32_t code)
600 1.1 itohy {
601 1.1 itohy
602 1.1 itohy printf("%s: error %sing blk %d:", head, rd? "read" : "writ", blk);
603 1.1 itohy NTOHL(code);
604 1.1 itohy if (code & 1)
605 1.1 itohy printf(" PT error");
606 1.1 itohy if (code & 2)
607 1.1 itohy printf(" Phase error");
608 1.1 itohy if (code & 4)
609 1.1 itohy printf(" Block error");
610 1.1 itohy if (code & 010)
611 1.1 itohy printf(" Write error");
612 1.1 itohy if (code & 020)
613 1.1 itohy printf(" Length error");
614 1.1 itohy if (code & 040)
615 1.1 itohy printf(" CRC error");
616 1.1 itohy if (code & ~077)
617 1.1 itohy printf(" Unknown error %#x", code & ~077);
618 1.1 itohy printf("\n");
619 1.1 itohy }
620 1.1 itohy
621 1.1 itohy int
622 1.7 christos mmemopen(dev_t dev, int flags, int devtype, struct lwp *l)
623 1.1 itohy {
624 1.1 itohy int diskunit, unit, part, labelpart;
625 1.1 itohy struct mmem_softc *sc;
626 1.1 itohy struct mmem_pt *pt;
627 1.1 itohy
628 1.1 itohy diskunit = DISKUNIT(dev);
629 1.1 itohy unit = MMEM_UNIT(diskunit);
630 1.1 itohy part = MMEM_PART(diskunit);
631 1.1 itohy labelpart = DISKPART(dev);
632 1.1 itohy if ((sc = device_lookup(&mmem_cd, unit)) == NULL
633 1.1 itohy || sc->sc_stat == MMEM_INIT
634 1.1 itohy || sc->sc_stat == MMEM_INIT2
635 1.1 itohy || part >= sc->sc_npt || (pt = &sc->sc_pt[part])->pt_flags == 0)
636 1.1 itohy return ENXIO;
637 1.1 itohy
638 1.1 itohy switch (devtype) {
639 1.1 itohy case S_IFCHR:
640 1.1 itohy pt->pt_dk.dk_copenmask |= (1 << labelpart);
641 1.1 itohy break;
642 1.1 itohy case S_IFBLK:
643 1.1 itohy pt->pt_dk.dk_bopenmask |= (1 << labelpart);
644 1.1 itohy break;
645 1.1 itohy }
646 1.1 itohy
647 1.1 itohy return 0;
648 1.1 itohy }
649 1.1 itohy
650 1.1 itohy int
651 1.7 christos mmemclose(dev_t dev, int flags, int devtype, struct lwp *l)
652 1.1 itohy {
653 1.1 itohy int diskunit, unit, part, labelpart;
654 1.1 itohy struct mmem_softc *sc;
655 1.1 itohy struct mmem_pt *pt;
656 1.1 itohy
657 1.1 itohy diskunit = DISKUNIT(dev);
658 1.1 itohy unit = MMEM_UNIT(diskunit);
659 1.1 itohy part = MMEM_PART(diskunit);
660 1.1 itohy sc = mmem_cd.cd_devs[unit];
661 1.1 itohy pt = &sc->sc_pt[part];
662 1.1 itohy labelpart = DISKPART(dev);
663 1.1 itohy
664 1.1 itohy switch (devtype) {
665 1.1 itohy case S_IFCHR:
666 1.1 itohy pt->pt_dk.dk_copenmask &= ~(1 << labelpart);
667 1.1 itohy break;
668 1.1 itohy case S_IFBLK:
669 1.1 itohy pt->pt_dk.dk_bopenmask &= ~(1 << labelpart);
670 1.1 itohy break;
671 1.1 itohy }
672 1.1 itohy
673 1.1 itohy return 0;
674 1.1 itohy }
675 1.1 itohy
676 1.1 itohy void
677 1.5 tsutsui mmemstrategy(struct buf *bp)
678 1.1 itohy {
679 1.1 itohy int diskunit, unit, part, labelpart;
680 1.1 itohy struct mmem_softc *sc;
681 1.1 itohy struct mmem_pt *pt;
682 1.1 itohy daddr_t off, nblk, cnt;
683 1.1 itohy
684 1.1 itohy diskunit = DISKUNIT(bp->b_dev);
685 1.1 itohy unit = MMEM_UNIT(diskunit);
686 1.1 itohy part = MMEM_PART(diskunit);
687 1.2 itohy if ((sc = device_lookup(&mmem_cd, unit)) == NULL
688 1.2 itohy || sc->sc_stat == MMEM_INIT
689 1.2 itohy || sc->sc_stat == MMEM_INIT2
690 1.2 itohy || part >= sc->sc_npt || (pt = &sc->sc_pt[part])->pt_flags == 0)
691 1.2 itohy goto inval;
692 1.1 itohy
693 1.1 itohy #if 0
694 1.1 itohy printf("%s: mmemstrategy: blkno %d, count %ld\n",
695 1.1 itohy pt->pt_name, bp->b_blkno, bp->b_bcount);
696 1.1 itohy #endif
697 1.1 itohy
698 1.1 itohy if (bp->b_flags & B_READ) {
699 1.1 itohy if (sc->sc_racc == 0)
700 1.1 itohy goto inval; /* no read */
701 1.1 itohy } else if (sc->sc_wacc == 0) {
702 1.1 itohy bp->b_error = EROFS; /* no write */
703 1.11 ad goto done;
704 1.1 itohy }
705 1.1 itohy
706 1.1 itohy if (bp->b_blkno & ~(~(daddr_t)0 >> (DEV_BSHIFT + 1 /* sign bit */))
707 1.1 itohy || (bp->b_bcount % sc->sc_bsize) != 0)
708 1.1 itohy goto inval;
709 1.1 itohy
710 1.1 itohy cnt = howmany(bp->b_bcount, sc->sc_bsize);
711 1.1 itohy if (cnt == 0)
712 1.1 itohy goto done; /* no work */
713 1.1 itohy
714 1.1 itohy off = bp->b_blkno * DEV_BSIZE / sc->sc_bsize;
715 1.1 itohy
716 1.1 itohy /* offset to disklabel partition */
717 1.1 itohy labelpart = DISKPART(bp->b_dev);
718 1.1 itohy if (labelpart == RAW_PART) {
719 1.1 itohy nblk = pt->pt_info.maxblk - pt->pt_info.minblk + 1;
720 1.1 itohy } else {
721 1.1 itohy off +=
722 1.1 itohy nblk = pt->pt_dk.dk_label->d_partitions[labelpart].p_offset;
723 1.1 itohy nblk += pt->pt_dk.dk_label->d_partitions[labelpart].p_size;
724 1.1 itohy }
725 1.1 itohy
726 1.1 itohy /* deal with the EOF condition */
727 1.1 itohy if (off + cnt > nblk) {
728 1.1 itohy if (off >= nblk) {
729 1.1 itohy if (off == nblk)
730 1.1 itohy goto done;
731 1.1 itohy goto inval;
732 1.1 itohy }
733 1.1 itohy cnt = nblk - off;
734 1.1 itohy bp->b_resid = bp->b_bcount - (cnt * sc->sc_bsize);
735 1.1 itohy }
736 1.1 itohy
737 1.1 itohy bp->b_rawblkno = off;
738 1.1 itohy
739 1.1 itohy /* queue this transfer */
740 1.6 yamt BUFQ_PUT(sc->sc_q, bp);
741 1.1 itohy
742 1.1 itohy if (sc->sc_stat == MMEM_IDLE)
743 1.1 itohy mmemstart(sc);
744 1.1 itohy
745 1.1 itohy return;
746 1.1 itohy
747 1.1 itohy inval: bp->b_error = EINVAL;
748 1.1 itohy done: bp->b_resid = bp->b_bcount;
749 1.1 itohy biodone(bp);
750 1.1 itohy }
751 1.1 itohy
752 1.1 itohy /*
753 1.1 itohy * start I/O operations
754 1.1 itohy */
755 1.1 itohy static void
756 1.5 tsutsui mmemstart(struct mmem_softc *sc)
757 1.1 itohy {
758 1.1 itohy struct buf *bp;
759 1.1 itohy struct mmem_pt *pt;
760 1.1 itohy int s;
761 1.1 itohy
762 1.6 yamt if ((bp = BUFQ_GET(sc->sc_q)) == NULL) {
763 1.1 itohy sc->sc_stat = MMEM_IDLE;
764 1.1 itohy maple_enable_unit_ping(sc->sc_parent, sc->sc_unit,
765 1.1 itohy MAPLE_FN_MEMCARD, 1);
766 1.1 itohy return;
767 1.1 itohy }
768 1.1 itohy
769 1.1 itohy sc->sc_bp = bp;
770 1.1 itohy sc->sc_cnt = howmany(bp->b_bcount - bp->b_resid, sc->sc_bsize);
771 1.1 itohy KASSERT(sc->sc_cnt);
772 1.1 itohy sc->sc_iobuf = bp->b_data;
773 1.1 itohy sc->sc_retry = 0;
774 1.1 itohy
775 1.1 itohy pt = &sc->sc_pt[MMEM_PART(DISKUNIT(bp->b_dev))];
776 1.1 itohy s = splbio();
777 1.1 itohy disk_busy(&pt->pt_dk);
778 1.1 itohy splx(s);
779 1.1 itohy
780 1.1 itohy /*
781 1.1 itohy * I/O access will fail if the removal detection (by maple driver)
782 1.1 itohy * occurs before finishing the I/O, so disable it.
783 1.1 itohy * We are sending commands, and the removal detection is still alive.
784 1.1 itohy */
785 1.1 itohy maple_enable_unit_ping(sc->sc_parent, sc->sc_unit, MAPLE_FN_MEMCARD, 0);
786 1.1 itohy
787 1.1 itohy mmemstart_bp(sc);
788 1.1 itohy }
789 1.1 itohy
790 1.1 itohy /*
791 1.1 itohy * start/retry a specified I/O operation
792 1.1 itohy */
793 1.1 itohy static void
794 1.5 tsutsui mmemstart_bp(struct mmem_softc *sc)
795 1.1 itohy {
796 1.1 itohy struct buf *bp;
797 1.1 itohy int diskunit, part;
798 1.1 itohy struct mmem_pt *pt;
799 1.1 itohy
800 1.1 itohy bp = sc->sc_bp;
801 1.1 itohy diskunit = DISKUNIT(bp->b_dev);
802 1.1 itohy part = MMEM_PART(diskunit);
803 1.1 itohy pt = &sc->sc_pt[part];
804 1.1 itohy
805 1.1 itohy /* handle retry */
806 1.1 itohy if (sc->sc_retry++ > MMEM_MAXRETRY) {
807 1.1 itohy /* retry count exceeded */
808 1.2 itohy mmemdone(sc, pt, EIO);
809 1.1 itohy return;
810 1.1 itohy }
811 1.1 itohy
812 1.1 itohy /*
813 1.1 itohy * Start the first phase (phase# = 0).
814 1.1 itohy */
815 1.1 itohy /* start read */
816 1.1 itohy sc->sc_stat = (bp->b_flags & B_READ) ? MMEM_READ : MMEM_WRITE1;
817 1.5 tsutsui sc->sc_reqr.func_code = htobe32(MAPLE_FUNC(MAPLE_FN_MEMCARD));
818 1.1 itohy sc->sc_reqr.pt = part;
819 1.5 tsutsui sc->sc_reqr.block = htobe16(bp->b_rawblkno);
820 1.1 itohy sc->sc_reqr.phase = 0; /* first phase */
821 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit, MAPLE_FN_MEMCARD,
822 1.1 itohy MAPLE_COMMAND_BREAD, sizeof sc->sc_reqr / 4, &sc->sc_reqr, 0);
823 1.1 itohy }
824 1.1 itohy
825 1.1 itohy static void
826 1.5 tsutsui mmemstart_write2(struct mmem_softc *sc)
827 1.1 itohy {
828 1.1 itohy struct buf *bp;
829 1.1 itohy int diskunit, part;
830 1.1 itohy struct mmem_pt *pt;
831 1.1 itohy
832 1.1 itohy bp = sc->sc_bp;
833 1.1 itohy diskunit = DISKUNIT(bp->b_dev);
834 1.1 itohy part = MMEM_PART(diskunit);
835 1.1 itohy pt = &sc->sc_pt[part];
836 1.1 itohy
837 1.1 itohy /* handle retry */
838 1.1 itohy if (sc->sc_retry++ > MMEM_MAXRETRY - 2 /* spare for verify read */) {
839 1.1 itohy /* retry count exceeded */
840 1.2 itohy mmemdone(sc, pt, EIO);
841 1.1 itohy return;
842 1.1 itohy }
843 1.1 itohy
844 1.1 itohy /*
845 1.1 itohy * Start the first phase (phase# = 0).
846 1.1 itohy */
847 1.1 itohy /* start write */
848 1.1 itohy sc->sc_stat = MMEM_WRITE2;
849 1.5 tsutsui sc->sc_reqw.func_code = htobe32(MAPLE_FUNC(MAPLE_FN_MEMCARD));
850 1.1 itohy sc->sc_reqw.pt = part;
851 1.5 tsutsui sc->sc_reqw.block = htobe16(bp->b_rawblkno);
852 1.1 itohy sc->sc_reqw.phase = 0; /* first phase */
853 1.5 tsutsui memcpy(sc->sc_reqw.data, sc->sc_iobuf /* + sc->sc_waccsz * phase */,
854 1.5 tsutsui sc->sc_waccsz);
855 1.1 itohy maple_command(sc->sc_parent, sc->sc_unit, MAPLE_FN_MEMCARD,
856 1.1 itohy MAPLE_COMMAND_BWRITE, MMEM_SIZE_REQW(sc) / 4, &sc->sc_reqw,
857 1.1 itohy MAPLE_FLAG_CMD_PERIODIC_TIMING);
858 1.1 itohy }
859 1.1 itohy
860 1.1 itohy static void
861 1.5 tsutsui mmemdone(struct mmem_softc *sc, struct mmem_pt *pt, int err)
862 1.1 itohy {
863 1.1 itohy struct buf *bp = sc->sc_bp;
864 1.1 itohy int s;
865 1.1 itohy int bcnt;
866 1.1 itohy
867 1.1 itohy KASSERT(bp);
868 1.1 itohy
869 1.1 itohy if (err) {
870 1.10 he bcnt = (char *)sc->sc_iobuf - (char *)bp->b_data;
871 1.1 itohy bp->b_resid = bp->b_bcount - bcnt;
872 1.1 itohy
873 1.1 itohy /* raise error if no block is read */
874 1.1 itohy if (bcnt == 0) {
875 1.2 itohy bp->b_error = err;
876 1.1 itohy }
877 1.1 itohy goto term_xfer;
878 1.1 itohy }
879 1.1 itohy
880 1.1 itohy sc->sc_iobuf += sc->sc_bsize;
881 1.1 itohy if (--sc->sc_cnt == 0) {
882 1.1 itohy term_xfer:
883 1.1 itohy /* terminate current transfer */
884 1.1 itohy sc->sc_bp = NULL;
885 1.1 itohy s = splbio();
886 1.10 he disk_unbusy(&pt->pt_dk,
887 1.10 he (char *)sc->sc_iobuf - (char *)bp->b_data,
888 1.1 itohy sc->sc_stat == MMEM_READ);
889 1.1 itohy biodone(bp);
890 1.1 itohy splx(s);
891 1.1 itohy
892 1.1 itohy /* go next transfer */
893 1.1 itohy mmemstart(sc);
894 1.1 itohy } else {
895 1.1 itohy /* go next block */
896 1.1 itohy bp->b_rawblkno++;
897 1.1 itohy sc->sc_retry = 0;
898 1.1 itohy mmemstart_bp(sc);
899 1.1 itohy }
900 1.1 itohy }
901 1.1 itohy
902 1.1 itohy int
903 1.5 tsutsui mmemread(dev_t dev, struct uio *uio, int flags)
904 1.1 itohy {
905 1.1 itohy
906 1.5 tsutsui return physio(mmemstrategy, NULL, dev, B_READ, minphys, uio);
907 1.1 itohy }
908 1.1 itohy
909 1.1 itohy int
910 1.5 tsutsui mmemwrite(dev_t dev, struct uio *uio, int flags)
911 1.1 itohy {
912 1.1 itohy
913 1.5 tsutsui return physio(mmemstrategy, NULL, dev, B_WRITE, minphys, uio);
914 1.1 itohy }
915 1.1 itohy
916 1.1 itohy int
917 1.9 christos mmemioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
918 1.1 itohy {
919 1.1 itohy int diskunit, unit, part;
920 1.1 itohy struct mmem_softc *sc;
921 1.1 itohy struct mmem_pt *pt;
922 1.1 itohy
923 1.1 itohy diskunit = DISKUNIT(dev);
924 1.1 itohy unit = MMEM_UNIT(diskunit);
925 1.1 itohy part = MMEM_PART(diskunit);
926 1.1 itohy sc = mmem_cd.cd_devs[unit];
927 1.1 itohy pt = &sc->sc_pt[part];
928 1.1 itohy
929 1.1 itohy switch (cmd) {
930 1.1 itohy case DIOCGDINFO:
931 1.1 itohy *(struct disklabel *)data = *pt->pt_dk.dk_label; /* XXX */
932 1.1 itohy break;
933 1.1 itohy
934 1.1 itohy default:
935 1.1 itohy /* generic maple ioctl */
936 1.1 itohy return maple_unit_ioctl(sc->sc_parent, sc->sc_unit, cmd, data,
937 1.7 christos flag, l);
938 1.1 itohy }
939 1.1 itohy
940 1.1 itohy return 0;
941 1.1 itohy }
942