xref: /dragonfly/sys/dev/raid/aac/aac_disk.c (revision 36a3d1d6)
1 /*-
2  * Copyright (c) 2000 Michael Smith
3  * Copyright (c) 2001 Scott Long
4  * Copyright (c) 2000 BSDi
5  * Copyright (c) 2001 Adaptec, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	$FreeBSD: src/sys/dev/aac/aac_disk.c,v 1.3.2.8 2003/01/11 18:39:39 scottl Exp $
30  *	$DragonFly: src/sys/dev/raid/aac/aac_disk.c,v 1.20 2008/01/20 03:40:35 pavalos Exp $
31  */
32 
33 #include "opt_aac.h"
34 
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/kernel.h>
38 #include <sys/module.h>
39 #include <sys/sysctl.h>
40 
41 #include <sys/bus.h>
42 #include <sys/conf.h>
43 #include <sys/devicestat.h>
44 #include <sys/disk.h>
45 #include <sys/dtype.h>
46 #include <sys/rman.h>
47 
48 #include <vm/vm.h>
49 #include <vm/pmap.h>
50 
51 #include <machine/md_var.h>
52 
53 #include "aacreg.h"
54 #include "aac_ioctl.h"
55 #include "aacvar.h"
56 
57 /*
58  * Interface to parent.
59  */
60 static int aac_disk_probe(device_t dev);
61 static int aac_disk_attach(device_t dev);
62 static int aac_disk_detach(device_t dev);
63 
64 /*
65  * Interface to the device switch.
66  */
67 static	d_open_t	aac_disk_open;
68 static	d_close_t	aac_disk_close;
69 static	d_strategy_t	aac_disk_strategy;
70 static	d_dump_t	aac_disk_dump;
71 
72 #define AAC_DISK_CDEV_MAJOR	151
73 
74 static struct dev_ops aac_disk_ops = {
75 	{ "aacd", AAC_DISK_CDEV_MAJOR, D_DISK },
76 	.d_open =		aac_disk_open,
77 	.d_close =		aac_disk_close,
78 	.d_read =		physread,
79 	.d_write =		physwrite,
80 	.d_strategy =		aac_disk_strategy,
81 	.d_dump =		aac_disk_dump,
82 };
83 
84 static devclass_t	aac_disk_devclass;
85 
86 static device_method_t aac_disk_methods[] = {
87 	DEVMETHOD(device_probe,	aac_disk_probe),
88 	DEVMETHOD(device_attach,	aac_disk_attach),
89 	DEVMETHOD(device_detach,	aac_disk_detach),
90 	{ 0, 0 }
91 };
92 
93 static driver_t aac_disk_driver = {
94 	"aacd",
95 	aac_disk_methods,
96 	sizeof(struct aac_disk)
97 };
98 
99 #define AAC_MAXIO	65536
100 
101 DRIVER_MODULE(aacd, aac, aac_disk_driver, aac_disk_devclass, 0, 0);
102 
103 /* sysctl tunables */
104 static unsigned int aac_iosize_max = AAC_MAXIO;	/* due to limits of the card */
105 TUNABLE_INT("hw.aac.iosize_max", &aac_iosize_max);
106 
107 SYSCTL_DECL(_hw_aac);
108 SYSCTL_UINT(_hw_aac, OID_AUTO, iosize_max, CTLFLAG_RD, &aac_iosize_max, 0,
109 	    "Max I/O size per transfer to an array");
110 
111 /*
112  * Handle open from generic layer.
113  *
114  * This is called by the diskslice code on first open in order to get the
115  * basic device geometry paramters.
116  */
117 static int
118 aac_disk_open(struct dev_open_args *ap)
119 {
120 	cdev_t dev = ap->a_head.a_dev;
121 	struct aac_disk	*sc;
122 
123 	debug_called(0);
124 
125 	sc = (struct aac_disk *)dev->si_drv1;
126 
127 	if (sc == NULL) {
128 		kprintf("aac_disk_open: No Softc\n");
129 		return (ENXIO);
130 	}
131 
132 	/* check that the controller is up and running */
133 	if (sc->ad_controller->aac_state & AAC_STATE_SUSPEND) {
134 		kprintf("Controller Suspended controller state = 0x%x\n",
135 		       sc->ad_controller->aac_state);
136 		return(ENXIO);
137 	}
138 
139 	/* build synthetic label */
140 #if 0
141 	bzero(&info, sizeof(info));
142 	info.d_media_blksize= AAC_BLOCK_SIZE;		/* mandatory */
143 	info.d_media_blocks = sc->ad_size;
144 
145 	info.d_type = DTYPE_ESDI;			/* optional */
146 	info.d_secpertrack   = sc->ad_sectors;
147 	info.d_nheads	= sc->ad_heads;
148 	info.d_ncylinders = sc->ad_cylinders;
149 	info.d_secpercyl  = sc->ad_sectors * sc->ad_heads;
150 
151 	disk_setdiskinfo(&sc->ad_disk, &info);
152 #endif
153 	sc->ad_flags |= AAC_DISK_OPEN;
154 	return (0);
155 }
156 
157 /*
158  * Handle last close of the disk device.
159  */
160 static int
161 aac_disk_close(struct dev_close_args *ap)
162 {
163 	cdev_t dev = ap->a_head.a_dev;
164 	struct aac_disk	*sc;
165 
166 	debug_called(0);
167 
168 	sc = (struct aac_disk *)dev->si_drv1;
169 
170 	if (sc == NULL)
171 		return (ENXIO);
172 
173 	sc->ad_flags &= ~AAC_DISK_OPEN;
174 	return (0);
175 }
176 
177 /*
178  * Handle an I/O request.
179  */
180 static int
181 aac_disk_strategy(struct dev_strategy_args *ap)
182 {
183 	cdev_t dev = ap->a_head.a_dev;
184 	struct bio *bio = ap->a_bio;
185 	struct buf *bp = bio->bio_buf;
186 	struct aac_disk	*sc;
187 
188 	debug_called(4);
189 
190 	sc = (struct aac_disk *)dev->si_drv1;
191 
192 	/* bogus disk? */
193 	if (sc == NULL) {
194 		bp->b_flags |= B_ERROR;
195 		bp->b_error = EINVAL;
196 		biodone(bio);
197 		return(0);
198 	}
199 
200 	/* do-nothing operation? */
201 	if (bp->b_bcount == 0) {
202 		bp->b_resid = bp->b_bcount;
203 		biodone(bio);
204 		return(0);
205 	}
206 
207 	/* perform accounting */
208 
209 	/* pass the bio to the controller - it can work out who we are */
210 	AAC_LOCK_ACQUIRE(&sc->ad_controller->aac_io_lock);
211 	devstat_start_transaction(&sc->ad_stats);
212 	aac_submit_bio(sc, bio);
213 	AAC_LOCK_RELEASE(&sc->ad_controller->aac_io_lock);
214 
215 	return(0);
216 }
217 
218 /*
219  * Dump memory out to an array
220  *
221  * This queues blocks of memory of size AAC_MAXIO to the controller and waits
222  * for the controller to complete the requests.
223  */
224 static int
225 aac_disk_dump(struct dev_dump_args *ap)
226 {
227 	kprintf("dumps on aac are currently broken, not dumping\n");
228 	return (ENXIO);
229 #if 0
230 	cdev_t dev = ap->a_head.a_dev;
231 	struct aac_disk *ad;
232 	struct aac_softc *sc;
233 	vm_offset_t addr;
234 	long blkcnt;
235 	int dumppages;
236 	int i, error;
237 
238 	ad = dev->si_drv1;
239 	addr = 0;
240 	dumppages = AAC_MAXIO / PAGE_SIZE;
241 
242 	if (ad == NULL)
243 		return (ENXIO);
244 
245 	sc= ad->ad_controller;
246 
247 	blkcnt = howmany(PAGE_SIZE, ap->a_secsize);
248 
249 	while (ap->a_count > 0) {
250 		caddr_t va = NULL;
251 
252 		if ((ap->a_count / blkcnt) < dumppages)
253 			dumppages = ap->a_count / blkcnt;
254 
255 		for (i = 0; i < dumppages; ++i) {
256 			vm_offset_t a = addr + (i * PAGE_SIZE);
257 			if (is_physical_memory(a)) {
258 				va = pmap_kenter_temporary(trunc_page(a), i);
259 			} else {
260 				va = pmap_kenter_temporary(trunc_page(0), i);
261 			}
262 		}
263 
264 retry:
265 		/*
266 		 * Queue the block to the controller.  If the queue is full,
267 		 * EBUSY will be returned.
268 		 */
269 		error = aac_dump_enqueue(ad, ap->a_blkno, va, dumppages);
270 		if (error && (error != EBUSY))
271 			return (error);
272 
273 		if (!error) {
274 			if (dumpstatus(addr, (off_t)(ap->a_count * DEV_BSIZE)) < 0)
275 			return (EINTR);
276 
277 			ap->a_blkno += blkcnt * dumppages;
278 			ap->a_count -= blkcnt * dumppages;
279 			addr += PAGE_SIZE * dumppages;
280 			if (ap->a_count > 0)
281 			continue;
282 		}
283 
284 		/*
285 		 * Either the queue was full on the last attemp, or we have no
286 		 * more data to dump.  Let the queue drain out and retry the
287 		 * block if the queue was full.
288 		 */
289 		aac_dump_complete(sc);
290 
291 		if (error == EBUSY)
292 			goto retry;
293 	}
294 
295 	return (0);
296 #endif
297 }
298 
299 /*
300  * Handle completion of an I/O request.
301  */
302 void
303 aac_biodone(struct bio *bio, const char *code)
304 {
305 	struct buf *bp = bio->bio_buf;
306 	struct aac_disk	*sc;
307 
308 	debug_called(4);
309 
310 	sc = (struct aac_disk *)bio->bio_driver_info;
311 
312 	devstat_end_transaction_buf(&sc->ad_stats, bp);
313 	if (bp->b_flags & B_ERROR) {
314 		diskerr(bio, sc->ad_dev_t,
315 			code, 0, 0);
316 	}
317 	biodone(bio);
318 }
319 
320 /*
321  * Stub only.
322  */
323 static int
324 aac_disk_probe(device_t dev)
325 {
326 
327 	debug_called(2);
328 
329 	return (0);
330 }
331 
332 /*
333  * Attach a unit to the controller.
334  */
335 static int
336 aac_disk_attach(device_t dev)
337 {
338 	struct disk_info info;
339 	struct aac_disk	*sc;
340 
341 	debug_called(0);
342 
343 	sc = (struct aac_disk *)device_get_softc(dev);
344 
345 	/* initialise our softc */
346 	sc->ad_controller =
347 	    (struct aac_softc *)device_get_softc(device_get_parent(dev));
348 	sc->ad_container = device_get_ivars(dev);
349 	sc->ad_dev = dev;
350 
351 	/*
352 	 * require that extended translation be enabled - other drivers read the
353 	 * disk!
354 	 */
355 	sc->ad_size = sc->ad_container->co_mntobj.Capacity;
356 	if (sc->ad_size >= (2 * 1024 * 1024)) {		/* 2GB */
357 		sc->ad_heads = 255;
358 		sc->ad_sectors = 63;
359 	} else if (sc->ad_size >= (1 * 1024 * 1024)) {	/* 1GB */
360 		sc->ad_heads = 128;
361 		sc->ad_sectors = 32;
362 	} else {
363 		sc->ad_heads = 64;
364 		sc->ad_sectors = 32;
365 	}
366 	sc->ad_cylinders = (sc->ad_size / (sc->ad_heads * sc->ad_sectors));
367 
368 	device_printf(dev, "%uMB (%u sectors)\n",
369 		      sc->ad_size / ((1024 * 1024) / AAC_BLOCK_SIZE),
370 		      sc->ad_size);
371 
372 	devstat_add_entry(&sc->ad_stats, "aacd", device_get_unit(dev),
373 			  AAC_BLOCK_SIZE, DEVSTAT_NO_ORDERED_TAGS,
374 			  DEVSTAT_TYPE_STORARRAY | DEVSTAT_TYPE_IF_OTHER,
375 			  DEVSTAT_PRIORITY_ARRAY);
376 
377 	/* attach a generic disk device to ourselves */
378 	sc->ad_dev_t = disk_create(device_get_unit(dev), &sc->ad_disk,
379 				   &aac_disk_ops);
380 	sc->ad_dev_t->si_drv1 = sc;
381 
382 	sc->ad_dev_t->si_iosize_max = aac_iosize_max;
383 	sc->unit = device_get_unit(dev);
384 
385 	/*
386 	 * Set disk info, as it appears that all needed data is available already.
387 	 * Setting the disk info will also cause the probing to start.
388 	 */
389 	bzero(&info, sizeof(info));
390 	info.d_media_blksize= AAC_BLOCK_SIZE;		/* mandatory */
391 	info.d_media_blocks = sc->ad_size;
392 
393 	info.d_type = DTYPE_ESDI;			/* optional */
394 	info.d_secpertrack   = sc->ad_sectors;
395 	info.d_nheads	= sc->ad_heads;
396 	info.d_ncylinders = sc->ad_cylinders;
397 	info.d_secpercyl  = sc->ad_sectors * sc->ad_heads;
398 
399 	disk_setdiskinfo(&sc->ad_disk, &info);
400 
401 	return (0);
402 }
403 
404 /*
405  * Disconnect ourselves from the system.
406  */
407 static int
408 aac_disk_detach(device_t dev)
409 {
410 	struct aac_disk *sc;
411 
412 	debug_called(2);
413 
414 	sc = (struct aac_disk *)device_get_softc(dev);
415 
416 	if (sc->ad_flags & AAC_DISK_OPEN)
417 		return(EBUSY);
418 
419 	devstat_remove_entry(&sc->ad_stats);
420 	disk_destroy(&sc->ad_disk);
421 	return(0);
422 }
423