xref: /dragonfly/sys/dev/disk/mmcsd/mmcsd.c (revision 38b720cd)
1 /*-
2  * Copyright (c) 2006 Bernd Walter.  All rights reserved.
3  * Copyright (c) 2006 M. Warner Losh.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * Portions of this software may have been developed with reference to
26  * the SD Simplified Specification.  The following disclaimer may apply:
27  *
28  * The following conditions apply to the release of the simplified
29  * specification ("Simplified Specification") by the SD Card Association and
30  * the SD Group. The Simplified Specification is a subset of the complete SD
31  * Specification which is owned by the SD Card Association and the SD
32  * Group. This Simplified Specification is provided on a non-confidential
33  * basis subject to the disclaimers below. Any implementation of the
34  * Simplified Specification may require a license from the SD Card
35  * Association, SD Group, SD-3C LLC or other third parties.
36  *
37  * Disclaimers:
38  *
39  * The information contained in the Simplified Specification is presented only
40  * as a standard specification for SD Cards and SD Host/Ancillary products and
41  * is provided "AS-IS" without any representations or warranties of any
42  * kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD
43  * Card Association for any damages, any infringements of patents or other
44  * right of the SD Group, SD-3C LLC, the SD Card Association or any third
45  * parties, which may result from its use. No license is granted by
46  * implication, estoppel or otherwise under any patent or other rights of the
47  * SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing
48  * herein shall be construed as an obligation by the SD Group, the SD-3C LLC
49  * or the SD Card Association to disclose or distribute any technical
50  * information, know-how or other confidential information to any third party.
51  *
52  * $FreeBSD: src/sys/dev/mmc/mmcsd.c,v 1.20 2009/02/17 19:17:25 mav Exp $
53  */
54 
55 #include <sys/param.h>
56 #include <sys/systm.h>
57 #include <sys/buf.h>
58 #include <sys/bus.h>
59 #include <sys/conf.h>
60 #include <sys/disk.h>
61 #include <sys/device.h>
62 #include <sys/devicestat.h>
63 #include <sys/kernel.h>
64 #include <sys/kthread.h>
65 #include <sys/lock.h>
66 #include <sys/malloc.h>
67 #include <sys/module.h>
68 #include <sys/spinlock.h>
69 
70 #include <sys/buf2.h>
71 
72 #include <bus/mmc/mmcvar.h>
73 #include <bus/mmc/mmcreg.h>
74 
75 #include "mmcbus_if.h"
76 
77 struct mmcsd_softc {
78 	device_t dev;
79 	cdev_t dev_t;
80 	struct lock sc_lock;
81 	struct disk disk;
82 	struct devstat device_stats;
83 	struct thread *td;
84 	struct bio_queue_head bio_queue;
85 	daddr_t eblock, eend;	/* Range remaining after the last erase. */
86 	int running;
87 	int suspend;
88 };
89 
90 /* bus entry points */
91 static int mmcsd_probe(device_t dev);
92 static int mmcsd_attach(device_t dev);
93 static int mmcsd_detach(device_t dev);
94 
95 /* disk routines */
96 static d_open_t mmcsd_open;
97 static d_close_t mmcsd_close;
98 static d_strategy_t mmcsd_strategy;
99 static d_dump_t mmcsd_dump;
100 
101 static void mmcsd_task(void *arg);
102 
103 static const char *mmcsd_card_name(device_t dev);
104 static int mmcsd_bus_bit_width(device_t dev);
105 
106 #define MMCSD_LOCK(_sc)		lockmgr(&(_sc)->sc_lock, LK_EXCLUSIVE)
107 #define	MMCSD_UNLOCK(_sc)	lockmgr(&(_sc)->sc_lock, LK_RELEASE)
108 #define MMCSD_LOCK_INIT(_sc)	lockinit(&(_sc)->sc_lock, "mmcsd", 0, LK_CANRECURSE)
109 #define MMCSD_LOCK_DESTROY(_sc)	lockuninit(&(_sc)->sc_lock);
110 #define MMCSD_ASSERT_LOCKED(_sc) KKASSERT(lockstatus(&(_sc)->sc_lock, curthread) != 0);
111 #define MMCSD_ASSERT_UNLOCKED(_sc) KKASSERT(lockstatus(&(_sc)->sc_lock, curthread) == 0);
112 
113 static struct dev_ops mmcsd_ops = {
114 	{ "mmcsd", 0, D_DISK },
115 	.d_open = mmcsd_open,
116 	.d_close = mmcsd_close,
117 	.d_strategy = mmcsd_strategy,
118 	.d_dump = mmcsd_dump,
119 };
120 
121 static int
122 mmcsd_probe(device_t dev)
123 {
124 
125 	device_quiet(dev);
126 	device_set_desc(dev, "MMC/SD Memory Card");
127 	return (0);
128 }
129 
130 static int
131 mmcsd_attach(device_t dev)
132 {
133 	struct mmcsd_softc *sc;
134 	struct disk_info info;
135 	cdev_t dsk;
136 	intmax_t mb;
137 	char unit;
138 	int sector_size;
139 
140 	sc = device_get_softc(dev);
141 	sc->dev = dev;
142 	MMCSD_LOCK_INIT(sc);
143 
144 	sector_size = mmc_get_sector_size(dev);
145 	devstat_add_entry(&sc->device_stats, "mmcsd", device_get_unit(dev),
146 	    sector_size, DEVSTAT_NO_ORDERED_TAGS,
147 	    DEVSTAT_TYPE_DIRECT | DEVSTAT_TYPE_IF_OTHER,
148 	    DEVSTAT_PRIORITY_DISK);
149 
150 	dsk = disk_create(device_get_unit(dev), &sc->disk, &mmcsd_ops);
151 	dsk->si_drv1 = sc;
152 	sc->dev_t = dsk;
153 
154 	dsk->si_iosize_max = 4*1024*1024;	/* Maximum defined SD card AU size. */
155 
156 	bzero(&info, sizeof(info));
157 	info.d_media_blksize = sector_size;
158 	info.d_media_blocks = mmc_get_media_size(dev);
159 	disk_setdiskinfo(&sc->disk, &info);
160 
161 	/*
162 	 * Display in most natural units.  There's no cards < 1MB.
163 	 * The SD standard goes to 2GiB, but the data format supports
164 	 * up to 4GiB and some card makers push it up to this limit.
165 	 * The SDHC standard only goes to 32GiB (the data format in
166 	 * SDHC is good to 2TiB however, which isn't too ugly at
167 	 * 2048GiBm, so we note it in passing here and don't add the
168 	 * code to print TiB).
169 	 */
170 	mb = (info.d_media_blksize * info.d_media_blocks) >> 20;	/* 1MiB == 1 << 20 */
171 	unit = 'M';
172 	if (mb >= 10240) {		/* 1GiB = 1024 MiB */
173 		unit = 'G';
174 		mb /= 1024;
175 	}
176 	device_printf(dev, "%ju%cB <%s Memory Card>%s at %s %dMHz/%dbit\n",
177 	    mb, unit, mmcsd_card_name(dev),
178 	    mmc_get_read_only(dev) ? " (read-only)" : "",
179 	    device_get_nameunit(device_get_parent(dev)),
180 	    mmc_get_tran_speed(dev) / 1000000, mmcsd_bus_bit_width(dev));
181 
182 	bioq_init(&sc->bio_queue);
183 
184 	sc->running = 1;
185 	sc->suspend = 0;
186 	sc->eblock = sc->eend = 0;
187 	kthread_create(mmcsd_task, sc, &sc->td, "mmc/sd card task");
188 
189 	return (0);
190 }
191 
192 static int
193 mmcsd_detach(device_t dev)
194 {
195 	struct mmcsd_softc *sc = device_get_softc(dev);
196 	struct buf *q_bp;
197 	struct bio *q_bio;
198 
199 	MMCSD_LOCK(sc);
200 	sc->suspend = 0;
201 	if (sc->running > 0) {
202 		/* kill thread */
203 		sc->running = 0;
204 		wakeup(sc);
205 		/* wait for thread to finish. */
206 		while (sc->running != -1)
207 			lksleep(sc, &sc->sc_lock, 0, "detach", 0);
208 	}
209 	MMCSD_UNLOCK(sc);
210 
211 	/*
212 	 * Flush the request queue.
213 	 *
214 	 * XXX: Return all queued I/O with ENXIO. Is this correct?
215 	 */
216 	while ((q_bio = bioq_takefirst(&sc->bio_queue)) != NULL) {
217 		q_bp = q_bio->bio_buf;
218 		q_bp->b_resid = q_bp->b_bcount;
219 		q_bp->b_error = ENXIO;
220 		q_bp->b_flags |= B_ERROR;
221 		biodone(q_bio);
222 	}
223 
224 	/* kill disk */
225 	disk_destroy(&sc->disk);
226 	devstat_remove_entry(&sc->device_stats);
227 
228 	MMCSD_LOCK_DESTROY(sc);
229 
230 	return (0);
231 }
232 
233 static int
234 mmcsd_suspend(device_t dev)
235 {
236 	struct mmcsd_softc *sc = device_get_softc(dev);
237 
238 	MMCSD_LOCK(sc);
239 	sc->suspend = 1;
240 	if (sc->running > 0) {
241 		/* kill thread */
242 		sc->running = 0;
243 		wakeup(sc);
244 		/* wait for thread to finish. */
245 		while (sc->running != -1)
246 			lksleep(sc, &sc->sc_lock, 0, "detach", 0);
247 	}
248 	MMCSD_UNLOCK(sc);
249 	return (0);
250 }
251 
252 static int
253 mmcsd_resume(device_t dev)
254 {
255 	struct mmcsd_softc *sc = device_get_softc(dev);
256 
257 	MMCSD_LOCK(sc);
258 	sc->suspend = 0;
259 	if (sc->running <= 0) {
260 		sc->running = 1;
261 		MMCSD_UNLOCK(sc);
262 		kthread_create(mmcsd_task, sc, &sc->td, "mmc/sd card task");
263 	} else
264 		MMCSD_UNLOCK(sc);
265 	return (0);
266 }
267 
268 static int
269 mmcsd_open(struct dev_open_args *ap)
270 {
271 	return (0);
272 }
273 
274 static int
275 mmcsd_close(struct dev_close_args *ap)
276 {
277 	return (0);
278 }
279 
280 static int
281 mmcsd_strategy(struct dev_strategy_args *ap)
282 {
283 	struct mmcsd_softc *sc;
284 	struct bio *bio = ap->a_bio;
285 	struct buf *bp = bio->bio_buf;
286 
287 	sc = (struct mmcsd_softc *)ap->a_head.a_dev->si_drv1;
288 	MMCSD_LOCK(sc);
289 	if (sc->running > 0 || sc->suspend > 0) {
290 		bioqdisksort(&sc->bio_queue, bio);
291 		devstat_start_transaction(&sc->device_stats);
292 		MMCSD_UNLOCK(sc);
293 		wakeup(sc);
294 	} else {
295 		MMCSD_UNLOCK(sc);
296 		bp->b_error = ENXIO;
297 		bp->b_flags |= B_ERROR;
298 		bp->b_resid = bp->b_bcount;
299 		biodone(bio);
300 	}
301 	return (0);
302 }
303 
304 static daddr_t
305 mmcsd_rw(struct mmcsd_softc *sc, struct bio *bio)
306 {
307 	daddr_t block, end;
308 	struct mmc_command cmd;
309 	struct mmc_command stop;
310 	struct mmc_request req;
311 	struct mmc_data data;
312 	device_t dev = sc->dev;
313 	int sz = sc->disk.d_info.d_media_blksize;
314 	struct buf *bp = bio->bio_buf;
315 
316 	block = bio->bio_offset / sz;
317 	end = block + (bp->b_bcount / sz);
318 	while (block < end) {
319 		char *vaddr = bp->b_data +
320 		    (block - (bio->bio_offset / sz)) * sz;
321 		int numblocks = min(end - block, mmc_get_max_data(dev));
322 		memset(&req, 0, sizeof(req));
323 		memset(&cmd, 0, sizeof(cmd));
324 		memset(&stop, 0, sizeof(stop));
325 		req.cmd = &cmd;
326 		cmd.data = &data;
327 		if (bp->b_cmd == BUF_CMD_READ) {
328 			if (numblocks > 1)
329 				cmd.opcode = MMC_READ_MULTIPLE_BLOCK;
330 			else
331 				cmd.opcode = MMC_READ_SINGLE_BLOCK;
332 		} else {
333 			if (numblocks > 1)
334 				cmd.opcode = MMC_WRITE_MULTIPLE_BLOCK;
335 			else
336 				cmd.opcode = MMC_WRITE_BLOCK;
337 		}
338 		cmd.arg = block;
339 		if (!mmc_get_high_cap(dev))
340 			cmd.arg <<= 9;
341 		cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
342 		data.data = vaddr;
343 		data.mrq = &req;
344 		if (bp->b_cmd == BUF_CMD_READ)
345 			data.flags = MMC_DATA_READ;
346 		else
347 			data.flags = MMC_DATA_WRITE;
348 		data.len = numblocks * sz;
349 		if (numblocks > 1) {
350 			data.flags |= MMC_DATA_MULTI;
351 			stop.opcode = MMC_STOP_TRANSMISSION;
352 			stop.arg = 0;
353 			stop.flags = MMC_RSP_R1B | MMC_CMD_AC;
354 			req.stop = &stop;
355 		}
356 //		kprintf("Len %d  %lld-%lld flags %#x sz %d\n",
357 //		    (int)data.len, (long long)block, (long long)end, data.flags, sz);
358 		MMCBUS_WAIT_FOR_REQUEST(device_get_parent(dev), dev, &req);
359 		if (req.cmd->error != MMC_ERR_NONE)
360 			break;
361 		block += numblocks;
362 	}
363 	return (block);
364 }
365 
366 static daddr_t
367 mmcsd_delete(struct mmcsd_softc *sc, struct bio *bio)
368 {
369 	daddr_t block, end, start, stop;
370 	struct mmc_command cmd;
371 	struct mmc_request req;
372 	device_t dev = sc->dev;
373 	int sz = sc->disk.d_info.d_media_blksize;
374 	int erase_sector;
375 	struct buf *bp = bio->bio_buf;
376 
377 	block = bio->bio_offset / sz;
378 	end = block + (bp->b_bcount / sz);
379 	/* Coalesce with part remaining from previous request. */
380 	if (block > sc->eblock && block <= sc->eend)
381 		block = sc->eblock;
382 	if (end >= sc->eblock && end < sc->eend)
383 		end = sc->eend;
384 	/* Safe round to the erase sector boundaries. */
385 	erase_sector = mmc_get_erase_sector(dev);
386 	start = block + erase_sector - 1;	 /* Round up. */
387 	start -= start % erase_sector;
388 	stop = end;				/* Round down. */
389 	stop -= end % erase_sector;
390 	/* We can't erase area smaller then sector, store it for later. */
391 	if (start >= stop) {
392 		sc->eblock = block;
393 		sc->eend = end;
394 		return (end);
395 	}
396 
397 	/* Set erase start position. */
398 	memset(&req, 0, sizeof(req));
399 	memset(&cmd, 0, sizeof(cmd));
400 	req.cmd = &cmd;
401 	if (mmc_get_card_type(dev) == mode_sd)
402 		cmd.opcode = SD_ERASE_WR_BLK_START;
403 	else
404 		cmd.opcode = MMC_ERASE_GROUP_START;
405 	cmd.arg = start;
406 	if (!mmc_get_high_cap(dev))
407 		cmd.arg <<= 9;
408 	cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
409 	MMCBUS_WAIT_FOR_REQUEST(device_get_parent(dev), dev, &req);
410 	if (req.cmd->error != MMC_ERR_NONE) {
411 	    kprintf("erase err1: %d\n", req.cmd->error);
412 	    return (block);
413 	}
414 	/* Set erase stop position. */
415 	memset(&req, 0, sizeof(req));
416 	memset(&cmd, 0, sizeof(cmd));
417 	req.cmd = &cmd;
418 	if (mmc_get_card_type(dev) == mode_sd)
419 		cmd.opcode = SD_ERASE_WR_BLK_END;
420 	else
421 		cmd.opcode = MMC_ERASE_GROUP_END;
422 	cmd.arg = stop;
423 	if (!mmc_get_high_cap(dev))
424 		cmd.arg <<= 9;
425 	cmd.arg--;
426 	cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
427 	MMCBUS_WAIT_FOR_REQUEST(device_get_parent(dev), dev, &req);
428 	if (req.cmd->error != MMC_ERR_NONE) {
429 	    kprintf("erase err2: %d\n", req.cmd->error);
430 	    return (block);
431 	}
432 	/* Erase range. */
433 	memset(&req, 0, sizeof(req));
434 	memset(&cmd, 0, sizeof(cmd));
435 	req.cmd = &cmd;
436 	cmd.opcode = MMC_ERASE;
437 	cmd.arg = 0;
438 	cmd.flags = MMC_RSP_R1B | MMC_CMD_AC;
439 	MMCBUS_WAIT_FOR_REQUEST(device_get_parent(dev), dev, &req);
440 	if (req.cmd->error != MMC_ERR_NONE) {
441 	    kprintf("erase err3 %d\n", req.cmd->error);
442 	    return (block);
443 	}
444 	/* Store one of remaining parts for the next call. */
445 	if ((bio->bio_offset / sz) >= sc->eblock || block == start) {
446 		sc->eblock = stop;	/* Predict next forward. */
447 		sc->eend = end;
448 	} else {
449 		sc->eblock = block;	/* Predict next backward. */
450 		sc->eend = start;
451 	}
452 	return (end);
453 }
454 
455 static int
456 mmcsd_dump(struct dev_dump_args *ap)
457 {
458 #if 0
459 	cdev_t cdev = ap->a_head.a_dev;
460 	struct mmcsd_softc *sc = (struct mmcsd_softc *)cdev->si_drv1;
461 	device_t dev = sc->dev;
462 	struct bio bp;
463 	daddr_t block, end;
464 	int length = ap->a_length;
465 
466 	/* length zero is special and really means flush buffers to media */
467 	if (!length)
468 		return (0);
469 
470 	bzero(&bp, sizeof(struct bio));
471 	bp.bio_driver_info = cdev;
472 	bp.bio_pblkno = offset / sc->disk->d_sectorsize;
473 	bp.bio_bcount = length;
474 	bp.bio_data = virtual;
475 	bp.bio_cmd = BIO_WRITE;
476 	end = bp.bio_pblkno + bp.bio_bcount / sc->disk.d_info.d_media_blksize;
477 	MMCBUS_ACQUIRE_BUS(device_get_parent(dev), dev);
478 	block = mmcsd_rw(sc, &bp);
479 	MMCBUS_RELEASE_BUS(device_get_parent(dev), dev);
480 	return ((end < block) ? EIO : 0);
481 #endif
482 	return EIO;
483 }
484 
485 static void
486 mmcsd_task(void *arg)
487 {
488 	struct mmcsd_softc *sc = (struct mmcsd_softc*)arg;
489 	struct bio *bio;
490 	struct buf *bp;
491 	int sz;
492 	daddr_t block, end;
493 	device_t dev;
494 
495 	dev = sc->dev;
496 
497 	while (1) {
498 		MMCSD_LOCK(sc);
499 		do {
500 			if (sc->running == 0)
501 				goto out;
502 			bio = bioq_takefirst(&sc->bio_queue);
503 			if (bio == NULL)
504 				lksleep(sc, &sc->sc_lock, 0, "jobqueue", 0);
505 		} while (bio == NULL);
506 		bp = bio->bio_buf;
507 		MMCSD_UNLOCK(sc);
508 		if (bp->b_cmd != BUF_CMD_READ && mmc_get_read_only(dev)) {
509 			bp->b_error = EROFS;
510 			bp->b_resid = bp->b_bcount;
511 			bp->b_flags |= B_ERROR;
512 			devstat_end_transaction_buf(&sc->device_stats, bp);
513 			biodone(bio);
514 			continue;
515 		}
516 		MMCBUS_ACQUIRE_BUS(device_get_parent(dev), dev);
517 		sz = sc->disk.d_info.d_media_blksize;
518 		block = bio->bio_offset / sz;
519 		end = block + (bp->b_bcount / sz);
520 		if (bp->b_cmd == BUF_CMD_READ ||
521 		    bp->b_cmd == BUF_CMD_WRITE) {
522 			/* Access to the remaining erase block obsoletes it. */
523 			if (block < sc->eend && end > sc->eblock)
524 				sc->eblock = sc->eend = 0;
525 			block = mmcsd_rw(sc, bio);
526 		} else if (bp->b_cmd == BUF_CMD_FREEBLKS) {
527 			block = mmcsd_delete(sc, bio);
528 		}
529 		MMCBUS_RELEASE_BUS(device_get_parent(dev), dev);
530 		if (block < end) {
531 			bp->b_error = EIO;
532 			bp->b_resid = (end - block) * sz;
533 			bp->b_flags |= B_ERROR;
534 		} else {
535 			bp->b_resid = 0;
536 		}
537 		devstat_end_transaction_buf(&sc->device_stats, bp);
538 		biodone(bio);
539 	}
540 out:
541 	/* tell parent we're done */
542 	sc->running = -1;
543 	MMCSD_UNLOCK(sc);
544 	wakeup(sc);
545 }
546 
547 static const char *
548 mmcsd_card_name(device_t dev)
549 {
550 	if (mmc_get_card_type(dev) == mode_mmc)
551 		return ("MMC");
552 	if (mmc_get_high_cap(dev))
553 		return ("SDHC");
554 	return ("SD");
555 }
556 
557 static int
558 mmcsd_bus_bit_width(device_t dev)
559 {
560 	if (mmc_get_bus_width(dev) == bus_width_1)
561 		return (1);
562 	if (mmc_get_bus_width(dev) == bus_width_4)
563 		return (4);
564 	return (8);
565 }
566 
567 static device_method_t mmcsd_methods[] = {
568 	DEVMETHOD(device_probe, mmcsd_probe),
569 	DEVMETHOD(device_attach, mmcsd_attach),
570 	DEVMETHOD(device_detach, mmcsd_detach),
571 	DEVMETHOD(device_suspend, mmcsd_suspend),
572 	DEVMETHOD(device_resume, mmcsd_resume),
573 	DEVMETHOD_END
574 };
575 
576 static driver_t mmcsd_driver = {
577 	"mmcsd",
578 	mmcsd_methods,
579 	sizeof(struct mmcsd_softc),
580 };
581 static devclass_t mmcsd_devclass;
582 
583 DRIVER_MODULE(mmcsd, mmc, mmcsd_driver, mmcsd_devclass, NULL, NULL);
584