xref: /freebsd/sys/cam/mmc/mmc_xpt.c (revision ac099daf6742ead81ea7ea86351a8ef4e783041b)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2013,2014 Ilya Bakulin <ilya@bakulin.de>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer,
12  *    without modification, immediately at the beginning of the file.
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 ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include <sys/param.h>
33 #include <sys/bus.h>
34 #include <sys/endian.h>
35 #include <sys/systm.h>
36 #include <sys/types.h>
37 #include <sys/malloc.h>
38 #include <sys/kernel.h>
39 #include <sys/time.h>
40 #include <sys/conf.h>
41 #include <sys/fcntl.h>
42 #include <sys/interrupt.h>
43 #include <sys/sbuf.h>
44 
45 #include <sys/lock.h>
46 #include <sys/mutex.h>
47 #include <sys/sysctl.h>
48 #include <sys/condvar.h>
49 
50 #include <cam/cam.h>
51 #include <cam/cam_ccb.h>
52 #include <cam/cam_queue.h>
53 #include <cam/cam_periph.h>
54 #include <cam/cam_sim.h>
55 #include <cam/cam_xpt.h>
56 #include <cam/cam_xpt_sim.h>
57 #include <cam/cam_xpt_periph.h>
58 #include <cam/cam_xpt_internal.h>
59 #include <cam/cam_debug.h>
60 
61 #include <cam/mmc/mmc.h>
62 #include <cam/mmc/mmc_bus.h>
63 
64 #include <machine/stdarg.h>	/* for xpt_print below */
65 #include <machine/_inttypes.h>  /* for PRIu64 */
66 #include "opt_cam.h"
67 
68 FEATURE(mmccam, "CAM-based MMC/SD/SDIO stack");
69 
70 static struct cam_ed * mmc_alloc_device(struct cam_eb *bus,
71     struct cam_et *target, lun_id_t lun_id);
72 static void mmc_dev_async(u_int32_t async_code, struct cam_eb *bus,
73     struct cam_et *target, struct cam_ed *device, void *async_arg);
74 static void	 mmc_action(union ccb *start_ccb);
75 static void	 mmc_dev_advinfo(union ccb *start_ccb);
76 static void	 mmc_announce_periph(struct cam_periph *periph);
77 static void	 mmc_scan_lun(struct cam_periph *periph,
78     struct cam_path *path, cam_flags flags, union ccb *ccb);
79 
80 /* mmcprobe methods */
81 static cam_status mmcprobe_register(struct cam_periph *periph, void *arg);
82 static void	 mmcprobe_start(struct cam_periph *periph, union ccb *start_ccb);
83 static void	 mmcprobe_cleanup(struct cam_periph *periph);
84 static void	 mmcprobe_done(struct cam_periph *periph, union ccb *done_ccb);
85 
86 static void mmc_proto_announce(struct cam_ed *device);
87 static void mmc_proto_denounce(struct cam_ed *device);
88 static void mmc_proto_debug_out(union ccb *ccb);
89 
90 typedef enum {
91 	PROBE_RESET,
92 	PROBE_IDENTIFY,
93 	PROBE_SDIO_RESET,
94 	PROBE_SEND_IF_COND,
95 	PROBE_SDIO_INIT,
96 	PROBE_MMC_INIT,
97 	PROBE_SEND_APP_OP_COND,
98 	PROBE_GET_CID,
99 	PROBE_GET_CSD,
100 	PROBE_SEND_RELATIVE_ADDR,
101 	PROBE_MMC_SET_RELATIVE_ADDR,
102 	PROBE_SELECT_CARD,
103 	PROBE_DONE,
104 	PROBE_INVALID
105 } probe_action;
106 
107 static char *probe_action_text[] = {
108 	"PROBE_RESET",
109 	"PROBE_IDENTIFY",
110 	"PROBE_SDIO_RESET",
111 	"PROBE_SEND_IF_COND",
112 	"PROBE_SDIO_INIT",
113 	"PROBE_MMC_INIT",
114 	"PROBE_SEND_APP_OP_COND",
115 	"PROBE_GET_CID",
116 	"PROBE_GET_CSD",
117 	"PROBE_SEND_RELATIVE_ADDR",
118 	"PROBE_MMC_SET_RELATIVE_ADDR",
119 	"PROBE_SELECT_CARD",
120 	"PROBE_DONE",
121 	"PROBE_INVALID"
122 };
123 
124 #define PROBE_SET_ACTION(softc, newaction)	\
125 do {									\
126 	char **text;							\
127 	text = probe_action_text;					\
128 	CAM_DEBUG((softc)->periph->path, CAM_DEBUG_PROBE,		\
129 	    ("Probe %s to %s\n", text[(softc)->action],			\
130 	    text[(newaction)]));					\
131 	(softc)->action = (newaction);					\
132 } while(0)
133 
134 static struct xpt_xport_ops mmc_xport_ops = {
135 	.alloc_device = mmc_alloc_device,
136 	.action = mmc_action,
137 	.async = mmc_dev_async,
138 	.announce = mmc_announce_periph,
139 };
140 
141 #define MMC_XPT_XPORT(x, X)				\
142 	static struct xpt_xport mmc_xport_ ## x = {	\
143 		.xport = XPORT_ ## X,			\
144 		.name = #x,				\
145 		.ops = &mmc_xport_ops,			\
146 	};						\
147 	CAM_XPT_XPORT(mmc_xport_ ## x);
148 
149 MMC_XPT_XPORT(mmc, MMCSD);
150 
151 static struct xpt_proto_ops mmc_proto_ops = {
152 	.announce = mmc_proto_announce,
153 	.denounce = mmc_proto_denounce,
154 	.debug_out = mmc_proto_debug_out,
155 };
156 
157 static struct xpt_proto mmc_proto = {
158 	.proto = PROTO_MMCSD,
159 	.name = "mmcsd",
160 	.ops = &mmc_proto_ops,
161 };
162 CAM_XPT_PROTO(mmc_proto);
163 
164 typedef struct {
165 	probe_action	action;
166 	int             restart;
167 	union ccb	saved_ccb;
168 	uint32_t	flags;
169 #define PROBE_FLAG_ACMD_SENT	0x1 /* CMD55 is sent, card expects ACMD */
170 #define PROBE_FLAG_HOST_CAN_DO_18V   0x2 /* Host can do 1.8V signaling */
171 	uint8_t         acmd41_count; /* how many times ACMD41 has been issued */
172 	struct cam_periph *periph;
173 } mmcprobe_softc;
174 
175 /* XPort functions -- an interface to CAM at periph side */
176 
177 static struct cam_ed *
178 mmc_alloc_device(struct cam_eb *bus, struct cam_et *target, lun_id_t lun_id)
179 {
180 	struct cam_ed *device;
181 
182 	device = xpt_alloc_device(bus, target, lun_id);
183 	if (device == NULL)
184 		return (NULL);
185 
186 	device->quirk = NULL;
187 	device->mintags = 0;
188 	device->maxtags = 0;
189 	bzero(&device->inq_data, sizeof(device->inq_data));
190 	device->inq_flags = 0;
191 	device->queue_flags = 0;
192 	device->serial_num = NULL;
193 	device->serial_num_len = 0;
194 	return (device);
195 }
196 
197 static void
198 mmc_dev_async(u_int32_t async_code, struct cam_eb *bus, struct cam_et *target,
199 	      struct cam_ed *device, void *async_arg)
200 {
201 
202 	/*
203 	 * We only need to handle events for real devices.
204 	 */
205 	if (target->target_id == CAM_TARGET_WILDCARD
206             || device->lun_id == CAM_LUN_WILDCARD)
207 		return;
208 
209 	if (async_code == AC_LOST_DEVICE &&
210 	    (device->flags & CAM_DEV_UNCONFIGURED) == 0) {
211 		device->flags |= CAM_DEV_UNCONFIGURED;
212 		xpt_release_device(device);
213 	}
214 }
215 
216 /* Taken from nvme_scan_lun, thanks to bsdimp@ */
217 static void
218 mmc_scan_lun(struct cam_periph *periph, struct cam_path *path,
219 	     cam_flags flags, union ccb *request_ccb)
220 {
221 	struct ccb_pathinq cpi;
222 	cam_status status;
223 	struct cam_periph *old_periph;
224 	int lock;
225 
226 	CAM_DEBUG(path, CAM_DEBUG_TRACE, ("mmc_scan_lun\n"));
227 
228 	xpt_path_inq(&cpi, path);
229 
230 	if (cpi.ccb_h.status != CAM_REQ_CMP) {
231 		if (request_ccb != NULL) {
232 			request_ccb->ccb_h.status = cpi.ccb_h.status;
233 			xpt_done(request_ccb);
234 		}
235 		return;
236 	}
237 
238 	if (xpt_path_lun_id(path) == CAM_LUN_WILDCARD) {
239 		CAM_DEBUG(path, CAM_DEBUG_TRACE, ("mmd_scan_lun ignoring bus\n"));
240 		request_ccb->ccb_h.status = CAM_REQ_CMP;	/* XXX signal error ? */
241 		xpt_done(request_ccb);
242 		return;
243 	}
244 
245 	lock = (xpt_path_owned(path) == 0);
246 	if (lock)
247 		xpt_path_lock(path);
248 
249 	if ((old_periph = cam_periph_find(path, "mmcprobe")) != NULL) {
250 		if ((old_periph->flags & CAM_PERIPH_INVALID) == 0) {
251 //			mmcprobe_softc *softc;
252 //			softc = (mmcprobe_softc *)old_periph->softc;
253 //                      Not sure if we need request ccb queue for mmc
254 //			TAILQ_INSERT_TAIL(&softc->request_ccbs,
255 //				&request_ccb->ccb_h, periph_links.tqe);
256 //			softc->restart = 1;
257                         CAM_DEBUG(path, CAM_DEBUG_INFO,
258                                   ("Got scan request, but mmcprobe already exists\n"));
259 			request_ccb->ccb_h.status = CAM_REQ_CMP_ERR;
260                         xpt_done(request_ccb);
261 		} else {
262 			request_ccb->ccb_h.status = CAM_REQ_CMP_ERR;
263 			xpt_done(request_ccb);
264 		}
265 	} else {
266 		CAM_DEBUG(path, CAM_DEBUG_INFO,
267 		    (" Set up the mmcprobe device...\n"));
268 
269                 status = cam_periph_alloc(mmcprobe_register, NULL,
270 					  mmcprobe_cleanup,
271 					  mmcprobe_start,
272 					  "mmcprobe",
273 					  CAM_PERIPH_BIO,
274 					  path, NULL, 0,
275 					  request_ccb);
276                 if (status != CAM_REQ_CMP) {
277 			xpt_print(path, "xpt_scan_lun: cam_alloc_periph "
278                                   "returned an error, can't continue probe\n");
279 		}
280 		request_ccb->ccb_h.status = status;
281 		xpt_done(request_ccb);
282 	}
283 
284 	if (lock)
285 		xpt_path_unlock(path);
286 }
287 
288 static void
289 mmc_action(union ccb *start_ccb)
290 {
291 	CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_TRACE,
292 		  ("mmc_action! func_code=%x, action %s\n", start_ccb->ccb_h.func_code,
293 		   xpt_action_name(start_ccb->ccb_h.func_code)));
294 	switch (start_ccb->ccb_h.func_code) {
295 	case XPT_SCAN_BUS:
296                 /* FALLTHROUGH */
297 	case XPT_SCAN_TGT:
298                 /* FALLTHROUGH */
299 	case XPT_SCAN_LUN:
300 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_INFO,
301 			  ("XPT_SCAN_{BUS,TGT,LUN}\n"));
302 		mmc_scan_lun(start_ccb->ccb_h.path->periph,
303 			     start_ccb->ccb_h.path, start_ccb->crcn.flags,
304 			     start_ccb);
305 		break;
306 
307 	case XPT_DEV_ADVINFO:
308 	{
309 		mmc_dev_advinfo(start_ccb);
310 		break;
311 	}
312 
313 	default:
314 		xpt_action_default(start_ccb);
315 		break;
316 	}
317 }
318 
319 static void
320 mmc_dev_advinfo(union ccb *start_ccb)
321 {
322 	struct cam_ed *device;
323 	struct ccb_dev_advinfo *cdai;
324 	off_t amt;
325 
326 	xpt_path_assert(start_ccb->ccb_h.path, MA_OWNED);
327 	start_ccb->ccb_h.status = CAM_REQ_INVALID;
328 	device = start_ccb->ccb_h.path->device;
329 	cdai = &start_ccb->cdai;
330 	CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_TRACE,
331 		  ("%s: request %x\n", __func__, cdai->buftype));
332 
333         /* We don't support writing any data */
334         if (cdai->flags & CDAI_FLAG_STORE)
335                 panic("Attempt to store data?!");
336 
337 	switch(cdai->buftype) {
338 	case CDAI_TYPE_SCSI_DEVID:
339 		cdai->provsiz = device->device_id_len;
340 		if (device->device_id_len == 0)
341 			break;
342 		amt = MIN(cdai->provsiz, cdai->bufsiz);
343 		memcpy(cdai->buf, device->device_id, amt);
344 		break;
345 	case CDAI_TYPE_SERIAL_NUM:
346 		cdai->provsiz = device->serial_num_len;
347 		if (device->serial_num_len == 0)
348 			break;
349 		amt = MIN(cdai->provsiz, cdai->bufsiz);
350 		memcpy(cdai->buf, device->serial_num, amt);
351 		break;
352         case CDAI_TYPE_PHYS_PATH: /* pass(4) wants this */
353                 cdai->provsiz = 0;
354                 break;
355 	case CDAI_TYPE_MMC_PARAMS:
356 		cdai->provsiz = sizeof(struct mmc_params);
357 		amt = MIN(cdai->provsiz, cdai->bufsiz);
358 		memcpy(cdai->buf, &device->mmc_ident_data, amt);
359 		break;
360 	default:
361                 panic("Unknown buftype");
362 		return;
363 	}
364 	start_ccb->ccb_h.status = CAM_REQ_CMP;
365 }
366 
367 static void
368 mmc_announce_periph(struct cam_periph *periph)
369 {
370 	struct	ccb_pathinq cpi;
371 	struct	ccb_trans_settings cts;
372 	struct	cam_path *path = periph->path;
373 
374 	cam_periph_assert(periph, MA_OWNED);
375 
376 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("mmc_announce_periph"));
377 
378 	memset(&cts, 0, sizeof(cts));
379 	xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NORMAL);
380 	cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
381 	cts.type = CTS_TYPE_CURRENT_SETTINGS;
382 	xpt_action((union ccb*)&cts);
383 	if ((cts.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP)
384 		return;
385 	xpt_path_inq(&cpi, periph->path);
386 	CAM_DEBUG(path, CAM_DEBUG_INFO,
387 	    ("XPT info: CLK %04d, ...\n", cts.proto_specific.mmc.ios.clock));
388 }
389 
390 void
391 mmccam_start_discovery(struct cam_sim *sim)
392 {
393 	union ccb *ccb;
394 	uint32_t pathid;
395 
396 	KASSERT(sim->sim_dev != NULL, ("mmccam_start_discovery(%s): sim_dev is not initialized,"
397 	    " has cam_sim_alloc_dev() been used?", cam_sim_name(sim)));
398 	pathid = cam_sim_path(sim);
399 	ccb = xpt_alloc_ccb();
400 
401 	/*
402 	 * We create a rescan request for BUS:0:0, since the card
403 	 * will be at lun 0.
404 	 */
405 	if (xpt_create_path(&ccb->ccb_h.path, NULL, pathid,
406 		/* target */ 0, /* lun */ 0) != CAM_REQ_CMP) {
407 		xpt_free_ccb(ccb);
408 		return;
409 	}
410 	xpt_rescan(ccb);
411 }
412 
413 /* This func is called per attached device :-( */
414 static void
415 mmc_print_ident(struct mmc_params *ident_data, struct sbuf *sb)
416 {
417 	bool space = false;
418 
419 	sbuf_printf(sb, "Relative addr: %08x\n", ident_data->card_rca);
420 	sbuf_printf(sb, "Card features: <");
421 	if (ident_data->card_features & CARD_FEATURE_MMC) {
422 		sbuf_printf(sb, "MMC");
423 		space = true;
424 	}
425 	if (ident_data->card_features & CARD_FEATURE_MEMORY) {
426 		sbuf_printf(sb, "%sMemory", space ? " " : "");
427 		space = true;
428 	}
429 	if (ident_data->card_features & CARD_FEATURE_SDHC) {
430 		sbuf_printf(sb, "%sHigh-Capacity", space ? " " : "");
431 		space = true;
432 	}
433 	if (ident_data->card_features & CARD_FEATURE_SD20) {
434 		sbuf_printf(sb, "%sSD2.0-Conditions", space ? " " : "");
435 		space = true;
436 	}
437 	if (ident_data->card_features & CARD_FEATURE_SDIO) {
438 		sbuf_printf(sb, "%sSDIO", space ? " " : "");
439 		space = true;
440 	}
441 	if (ident_data->card_features & CARD_FEATURE_18V) {
442 		sbuf_printf(sb, "%s1.8-Signaling", space ? " " : "");
443 	}
444 	sbuf_printf(sb, ">\n");
445 
446 	if (ident_data->card_features & CARD_FEATURE_MEMORY)
447 		sbuf_printf(sb, "Card memory OCR: %08x\n",
448 		    ident_data->card_ocr);
449 
450 	if (ident_data->card_features & CARD_FEATURE_SDIO) {
451 		sbuf_printf(sb, "Card IO OCR: %08x\n", ident_data->io_ocr);
452 		sbuf_printf(sb, "Number of functions: %u\n",
453 		    ident_data->sdio_func_count);
454 	}
455 
456 	sbuf_finish(sb);
457 	printf("%s", sbuf_data(sb));
458 	sbuf_clear(sb);
459 }
460 
461 static void
462 mmc_proto_announce(struct cam_ed *device)
463 {
464 	struct sbuf	sb;
465 	char		buffer[256];
466 
467 	sbuf_new(&sb, buffer, sizeof(buffer), SBUF_FIXEDLEN);
468 	mmc_print_ident(&device->mmc_ident_data, &sb);
469 	sbuf_finish(&sb);
470 	sbuf_putbuf(&sb);
471 }
472 
473 static void
474 mmc_proto_denounce(struct cam_ed *device)
475 {
476 
477 	mmc_proto_announce(device);
478 }
479 
480 static void
481 mmc_proto_debug_out(union ccb *ccb)
482 {
483 	if (ccb->ccb_h.func_code != XPT_MMC_IO)
484 		return;
485 
486 	CAM_DEBUG(ccb->ccb_h.path,
487 	    CAM_DEBUG_CDB,("mmc_proto_debug_out\n"));
488 }
489 
490 static periph_init_t probe_periph_init;
491 
492 static struct periph_driver probe_driver =
493 {
494 	probe_periph_init, "mmcprobe",
495 	TAILQ_HEAD_INITIALIZER(probe_driver.units), /* generation */ 0,
496 	CAM_PERIPH_DRV_EARLY
497 };
498 
499 PERIPHDRIVER_DECLARE(mmcprobe, probe_driver);
500 
501 #define	CARD_ID_FREQUENCY 400000 /* Spec requires 400kHz max during ID phase. */
502 
503 static void
504 probe_periph_init(void)
505 {
506 }
507 
508 static cam_status
509 mmcprobe_register(struct cam_periph *periph, void *arg)
510 {
511 	mmcprobe_softc *softc;
512 	union ccb *request_ccb;	/* CCB representing the probe request */
513 	int status;
514 
515 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("mmcprobe_register\n"));
516 
517 	request_ccb = (union ccb *)arg;
518 	if (request_ccb == NULL) {
519 		printf("mmcprobe_register: no probe CCB, "
520 		       "can't register device\n");
521 		return(CAM_REQ_CMP_ERR);
522 	}
523 
524 	softc = (mmcprobe_softc *)malloc(sizeof(*softc), M_CAMXPT, M_NOWAIT);
525 
526 	if (softc == NULL) {
527 		printf("proberegister: Unable to probe new device. "
528 		       "Unable to allocate softc\n");
529 		return(CAM_REQ_CMP_ERR);
530 	}
531 
532 	softc->flags = 0;
533 	softc->acmd41_count = 0;
534 	periph->softc = softc;
535 	softc->periph = periph;
536 	softc->action = PROBE_INVALID;
537         softc->restart = 0;
538 	status = cam_periph_acquire(periph);
539 
540         memset(&periph->path->device->mmc_ident_data, 0, sizeof(struct mmc_params));
541 	if (status != 0) {
542 		printf("proberegister: cam_periph_acquire failed (status=%d)\n",
543 			status);
544 		return (CAM_REQ_CMP_ERR);
545 	}
546 	CAM_DEBUG(periph->path, CAM_DEBUG_PROBE, ("Probe started\n"));
547 
548 	if (periph->path->device->flags & CAM_DEV_UNCONFIGURED)
549 		PROBE_SET_ACTION(softc, PROBE_RESET);
550 	else
551 		PROBE_SET_ACTION(softc, PROBE_IDENTIFY);
552 
553 	/* This will kick the ball */
554 	xpt_schedule(periph, CAM_PRIORITY_XPT);
555 
556 	return(CAM_REQ_CMP);
557 }
558 
559 static int
560 mmc_highest_voltage(uint32_t ocr)
561 {
562 	int i;
563 
564 	for (i = MMC_OCR_MAX_VOLTAGE_SHIFT;
565 	    i >= MMC_OCR_MIN_VOLTAGE_SHIFT; i--)
566 		if (ocr & (1 << i))
567 			return (i);
568 	return (-1);
569 }
570 
571 static inline void
572 init_standard_ccb(union ccb *ccb, uint32_t cmd)
573 {
574 	ccb->ccb_h.func_code = cmd;
575 	ccb->ccb_h.flags = CAM_DIR_OUT;
576 	ccb->ccb_h.retry_count = 0;
577 	ccb->ccb_h.timeout = 15 * 1000;
578 	ccb->ccb_h.cbfcnp = mmcprobe_done;
579 }
580 
581 static void
582 mmcprobe_start(struct cam_periph *periph, union ccb *start_ccb)
583 {
584 	mmcprobe_softc *softc;
585 	struct cam_path *path;
586 	struct ccb_mmcio *mmcio;
587 	struct mtx *p_mtx = cam_periph_mtx(periph);
588 	struct ccb_trans_settings_mmc *cts;
589 
590 	CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("mmcprobe_start\n"));
591 	softc = (mmcprobe_softc *)periph->softc;
592 	path = start_ccb->ccb_h.path;
593 	mmcio = &start_ccb->mmcio;
594 	cts = &start_ccb->cts.proto_specific.mmc;
595 	struct mmc_params *mmcp = &path->device->mmc_ident_data;
596 
597 	memset(&mmcio->cmd, 0, sizeof(struct mmc_command));
598 
599 	if (softc->restart) {
600 		softc->restart = 0;
601 		if (path->device->flags & CAM_DEV_UNCONFIGURED)
602 			softc->action = PROBE_RESET;
603 		else
604 			softc->action = PROBE_IDENTIFY;
605 	}
606 
607 	/* Here is the place where the identify fun begins */
608 	switch (softc->action) {
609 	case PROBE_RESET:
610 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("Start with PROBE_RESET\n"));
611 		/* FALLTHROUGH */
612 	case PROBE_IDENTIFY:
613 		xpt_path_inq(&start_ccb->cpi, periph->path);
614 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("Start with PROBE_IDENTIFY\n"));
615 		init_standard_ccb(start_ccb, XPT_GET_TRAN_SETTINGS);
616 		xpt_action(start_ccb);
617 		if (cts->ios.power_mode != power_off) {
618 			init_standard_ccb(start_ccb, XPT_SET_TRAN_SETTINGS);
619 			cts->ios.power_mode = power_off;
620 			cts->ios_valid = MMC_PM;
621 			xpt_action(start_ccb);
622 			mtx_sleep(periph, p_mtx, 0, "mmcios", 100);
623 		}
624 		/* mmc_power_up */
625 		/* Get the host OCR */
626 		init_standard_ccb(start_ccb, XPT_GET_TRAN_SETTINGS);
627 		xpt_action(start_ccb);
628 
629 		uint32_t host_caps = cts->host_caps;
630 		if (host_caps & MMC_CAP_SIGNALING_180)
631 			softc->flags |= PROBE_FLAG_HOST_CAN_DO_18V;
632 		uint32_t hv = mmc_highest_voltage(cts->host_ocr);
633 		init_standard_ccb(start_ccb, XPT_SET_TRAN_SETTINGS);
634 		cts->ios.vdd = hv;
635 		cts->ios.bus_mode = opendrain;
636 		cts->ios.chip_select = cs_dontcare;
637 		cts->ios.power_mode = power_up;
638 		cts->ios.bus_width = bus_width_1;
639 		cts->ios.clock = 0;
640 		cts->ios_valid = MMC_VDD | MMC_PM | MMC_BM |
641 			MMC_CS | MMC_BW | MMC_CLK;
642 		xpt_action(start_ccb);
643 		mtx_sleep(periph, p_mtx, 0, "mmcios", 100);
644 
645 		init_standard_ccb(start_ccb, XPT_SET_TRAN_SETTINGS);
646 		cts->ios.power_mode = power_on;
647 		cts->ios.clock = CARD_ID_FREQUENCY;
648 		cts->ios.timing = bus_timing_normal;
649 		cts->ios_valid = MMC_PM | MMC_CLK | MMC_BT;
650 		xpt_action(start_ccb);
651 		mtx_sleep(periph, p_mtx, 0, "mmcios", 100);
652 		/* End for mmc_power_on */
653 
654 		/* Begin mmc_idle_cards() */
655 		init_standard_ccb(start_ccb, XPT_SET_TRAN_SETTINGS);
656 		cts->ios.chip_select = cs_high;
657 		cts->ios_valid = MMC_CS;
658 		xpt_action(start_ccb);
659 		mtx_sleep(periph, p_mtx, 0, "mmcios", 1);
660 
661 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("Send first XPT_MMC_IO\n"));
662 		init_standard_ccb(start_ccb, XPT_MMC_IO);
663 		mmcio->cmd.opcode = MMC_GO_IDLE_STATE; /* CMD 0 */
664 		mmcio->cmd.arg = 0;
665 		mmcio->cmd.flags = MMC_RSP_NONE | MMC_CMD_BC;
666 		mmcio->cmd.data = NULL;
667 		mmcio->stop.opcode = 0;
668 
669 		/* XXX Reset I/O portion as well */
670 		break;
671 	case PROBE_SDIO_RESET:
672 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE,
673 			  ("Start with PROBE_SDIO_RESET\n"));
674 		uint32_t mmc_arg = SD_IO_RW_ADR(SD_IO_CCCR_CTL)
675 			| SD_IO_RW_DAT(CCCR_CTL_RES) | SD_IO_RW_WR | SD_IO_RW_RAW;
676 		cam_fill_mmcio(&start_ccb->mmcio,
677 			       /*retries*/ 0,
678 			       /*cbfcnp*/ mmcprobe_done,
679 			       /*flags*/ CAM_DIR_NONE,
680 			       /*mmc_opcode*/ SD_IO_RW_DIRECT,
681 			       /*mmc_arg*/ mmc_arg,
682 			       /*mmc_flags*/ MMC_RSP_R5 | MMC_CMD_AC,
683 			       /*mmc_data*/ NULL,
684 			       /*timeout*/ 1000);
685 		break;
686 	case PROBE_SEND_IF_COND:
687 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE,
688 			  ("Start with PROBE_SEND_IF_COND\n"));
689 		init_standard_ccb(start_ccb, XPT_MMC_IO);
690 		mmcio->cmd.opcode = SD_SEND_IF_COND; /* CMD 8 */
691 		mmcio->cmd.arg = (1 << 8) + 0xAA;
692 		mmcio->cmd.flags = MMC_RSP_R7 | MMC_CMD_BCR;
693 		mmcio->stop.opcode = 0;
694 		break;
695 
696 	case PROBE_SDIO_INIT:
697 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE,
698 			  ("Start with PROBE_SDIO_INIT\n"));
699 		init_standard_ccb(start_ccb, XPT_MMC_IO);
700 		mmcio->cmd.opcode = IO_SEND_OP_COND; /* CMD 5 */
701 		mmcio->cmd.arg = mmcp->io_ocr;
702 		mmcio->cmd.flags = MMC_RSP_R4;
703 		mmcio->stop.opcode = 0;
704 		break;
705 
706 	case PROBE_MMC_INIT:
707 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE,
708 			  ("Start with PROBE_MMC_INIT\n"));
709 		init_standard_ccb(start_ccb, XPT_MMC_IO);
710 		mmcio->cmd.opcode = MMC_SEND_OP_COND; /* CMD 1 */
711 		mmcio->cmd.arg = MMC_OCR_CCS | mmcp->card_ocr; /* CCS + ocr */;
712 		mmcio->cmd.flags = MMC_RSP_R3 | MMC_CMD_BCR;
713 		mmcio->stop.opcode = 0;
714 		break;
715 
716 	case PROBE_SEND_APP_OP_COND:
717 		init_standard_ccb(start_ccb, XPT_MMC_IO);
718 		if (softc->flags & PROBE_FLAG_ACMD_SENT) {
719 			mmcio->cmd.opcode = ACMD_SD_SEND_OP_COND; /* CMD 41 */
720 			/*
721 			 * We set CCS bit because we do support SDHC cards.
722 			 * XXX: Don't set CCS if no response to CMD8.
723 			 */
724 			uint32_t cmd_arg = MMC_OCR_CCS | mmcp->card_ocr; /* CCS + ocr */
725 			if (softc->acmd41_count < 10 && mmcp->card_ocr != 0 )
726 				cmd_arg |= MMC_OCR_S18R;
727 			mmcio->cmd.arg = cmd_arg;
728 			mmcio->cmd.flags = MMC_RSP_R3 | MMC_CMD_BCR;
729 			softc->acmd41_count++;
730 		} else {
731 			mmcio->cmd.opcode = MMC_APP_CMD; /* CMD 55 */
732 			mmcio->cmd.arg = 0; /* rca << 16 */
733 			mmcio->cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
734 		}
735 		mmcio->stop.opcode = 0;
736 		break;
737 
738 	case PROBE_GET_CID: /* XXX move to mmc_da */
739 		init_standard_ccb(start_ccb, XPT_MMC_IO);
740 		mmcio->cmd.opcode = MMC_ALL_SEND_CID;
741 		mmcio->cmd.arg = 0;
742 		mmcio->cmd.flags = MMC_RSP_R2 | MMC_CMD_BCR;
743 		mmcio->stop.opcode = 0;
744 		break;
745 	case PROBE_SEND_RELATIVE_ADDR:
746 		init_standard_ccb(start_ccb, XPT_MMC_IO);
747 		mmcio->cmd.opcode = SD_SEND_RELATIVE_ADDR;
748 		mmcio->cmd.arg = 0;
749 		mmcio->cmd.flags = MMC_RSP_R6 | MMC_CMD_BCR;
750 		mmcio->stop.opcode = 0;
751 		break;
752 	case PROBE_MMC_SET_RELATIVE_ADDR:
753 		init_standard_ccb(start_ccb, XPT_MMC_IO);
754 		mmcio->cmd.opcode = MMC_SET_RELATIVE_ADDR;
755 		mmcio->cmd.arg = MMC_PROPOSED_RCA << 16;
756 		mmcio->cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
757 		mmcio->stop.opcode = 0;
758 		break;
759 	case PROBE_SELECT_CARD:
760 		init_standard_ccb(start_ccb, XPT_MMC_IO);
761 		mmcio->cmd.opcode = MMC_SELECT_CARD;
762 		mmcio->cmd.arg = (uint32_t)path->device->mmc_ident_data.card_rca << 16;
763 		mmcio->cmd.flags = MMC_RSP_R1B | MMC_CMD_AC;
764 		mmcio->stop.opcode = 0;
765 		break;
766 	case PROBE_GET_CSD: /* XXX move to mmc_da */
767 		init_standard_ccb(start_ccb, XPT_MMC_IO);
768 		mmcio->cmd.opcode = MMC_SEND_CSD;
769 		mmcio->cmd.arg = (uint32_t)path->device->mmc_ident_data.card_rca << 16;
770 		mmcio->cmd.flags = MMC_RSP_R2 | MMC_CMD_BCR;
771 		mmcio->stop.opcode = 0;
772 		break;
773 	case PROBE_DONE:
774 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("Start with PROBE_DONE\n"));
775 		init_standard_ccb(start_ccb, XPT_SET_TRAN_SETTINGS);
776 		cts->ios.bus_mode = pushpull;
777 		cts->ios_valid = MMC_BM;
778 		xpt_action(start_ccb);
779 		return;
780 		/* NOTREACHED */
781 		break;
782 	case PROBE_INVALID:
783 		break;
784 	default:
785 		CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("probestart: invalid action state 0x%x\n", softc->action));
786 		panic("default: case in mmc_probe_start()");
787 	}
788 
789 	start_ccb->ccb_h.flags |= CAM_DEV_QFREEZE;
790 	xpt_action(start_ccb);
791 }
792 
793 static void mmcprobe_cleanup(struct cam_periph *periph)
794 {
795 	free(periph->softc, M_CAMXPT);
796 }
797 
798 static void
799 mmcprobe_done(struct cam_periph *periph, union ccb *done_ccb)
800 {
801 	mmcprobe_softc *softc;
802 	struct cam_path *path;
803 
804 	int err;
805 	struct ccb_mmcio *mmcio;
806 	u_int32_t  priority;
807 
808 	CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_TRACE, ("mmcprobe_done\n"));
809 	softc = (mmcprobe_softc *)periph->softc;
810 	path = done_ccb->ccb_h.path;
811 	priority = done_ccb->ccb_h.pinfo.priority;
812 
813 	switch (softc->action) {
814 	case PROBE_RESET:
815 		/* FALLTHROUGH */
816 	case PROBE_IDENTIFY:
817 	{
818 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("done with PROBE_RESET\n"));
819 		mmcio = &done_ccb->mmcio;
820 		err = mmcio->cmd.error;
821 
822 		if (err != MMC_ERR_NONE) {
823 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
824 				  ("GO_IDLE_STATE failed with error %d\n",
825 				   err));
826 
827 			/* There was a device there, but now it's gone... */
828 			if ((path->device->flags & CAM_DEV_UNCONFIGURED) == 0) {
829 				CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
830 				  ("Device lost!\n"));
831 
832 				xpt_async(AC_LOST_DEVICE, path, NULL);
833 			}
834 			PROBE_SET_ACTION(softc, PROBE_INVALID);
835 			break;
836 		}
837 		path->device->protocol = PROTO_MMCSD;
838 		PROBE_SET_ACTION(softc, PROBE_SEND_IF_COND);
839 		break;
840 	}
841 	case PROBE_SEND_IF_COND:
842 	{
843 		mmcio = &done_ccb->mmcio;
844 		err = mmcio->cmd.error;
845 		struct mmc_params *mmcp = &path->device->mmc_ident_data;
846 
847 		if (err != MMC_ERR_NONE || mmcio->cmd.resp[0] != 0x1AA) {
848 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
849 				  ("IF_COND: error %d, pattern %08x\n",
850 				   err, mmcio->cmd.resp[0]));
851 		} else {
852 			mmcp->card_features |= CARD_FEATURE_SD20;
853 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
854 				  ("SD 2.0 interface conditions: OK\n"));
855 		}
856                 PROBE_SET_ACTION(softc, PROBE_SDIO_RESET);
857 		break;
858 	}
859 	case PROBE_SDIO_RESET:
860 	{
861 		mmcio = &done_ccb->mmcio;
862 		err = mmcio->cmd.error;
863 
864 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
865 		    ("SDIO_RESET: error %d, CCCR CTL register: %08x\n",
866 		    err, mmcio->cmd.resp[0]));
867 		PROBE_SET_ACTION(softc, PROBE_SDIO_INIT);
868 		break;
869 	}
870 	case PROBE_SDIO_INIT:
871 	{
872 		mmcio = &done_ccb->mmcio;
873 		err = mmcio->cmd.error;
874 		struct mmc_params *mmcp = &path->device->mmc_ident_data;
875 
876 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
877 		    ("SDIO_INIT: error %d, %08x %08x %08x %08x\n",
878 		    err, mmcio->cmd.resp[0],
879 		    mmcio->cmd.resp[1],
880 		    mmcio->cmd.resp[2],
881 		    mmcio->cmd.resp[3]));
882 
883 		/*
884 		 * Error here means that this card is not SDIO,
885 		 * so proceed with memory init as if nothing has happened
886 		 */
887 		if (err != MMC_ERR_NONE) {
888 			PROBE_SET_ACTION(softc, PROBE_SEND_APP_OP_COND);
889 			break;
890 		}
891 		mmcp->card_features |= CARD_FEATURE_SDIO;
892 		uint32_t ioifcond = mmcio->cmd.resp[0];
893 		uint32_t io_ocr = ioifcond & R4_IO_OCR_MASK;
894 
895 		mmcp->sdio_func_count = R4_IO_NUM_FUNCTIONS(ioifcond);
896 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
897 		    ("SDIO card: %d functions\n", mmcp->sdio_func_count));
898 		if (io_ocr == 0) {
899 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
900 			  ("SDIO OCR invalid, retrying\n"));
901 			break; /* Retry */
902 		}
903 
904 		if (io_ocr != 0 && mmcp->io_ocr == 0) {
905 			mmcp->io_ocr = io_ocr;
906 			break; /* Retry, this time with non-0 OCR */
907 		}
908 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
909 		    ("SDIO OCR: %08x\n", mmcp->io_ocr));
910 
911 		if (ioifcond & R4_IO_MEM_PRESENT) {
912 			/* Combo card -- proceed to memory initialization */
913 			PROBE_SET_ACTION(softc, PROBE_SEND_APP_OP_COND);
914 		} else {
915 			/* No memory portion -- get RCA and select card */
916 			PROBE_SET_ACTION(softc, PROBE_SEND_RELATIVE_ADDR);
917 		}
918 		break;
919 	}
920 	case PROBE_MMC_INIT:
921 	{
922 		mmcio = &done_ccb->mmcio;
923 		err = mmcio->cmd.error;
924 		struct mmc_params *mmcp = &path->device->mmc_ident_data;
925 
926 		if (err != MMC_ERR_NONE) {
927 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
928 				  ("MMC_INIT: error %d, resp %08x\n",
929 				   err, mmcio->cmd.resp[0]));
930 			PROBE_SET_ACTION(softc, PROBE_INVALID);
931 			break;
932 		}
933 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
934 		    ("MMC card, OCR %08x\n", mmcio->cmd.resp[0]));
935 
936 		if (mmcp->card_ocr == 0) {
937 			/* We haven't sent the OCR to the card yet -- do it */
938 			mmcp->card_ocr = mmcio->cmd.resp[0];
939 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
940 			    ("-> sending OCR to card\n"));
941 			break;
942 		}
943 
944 		if (!(mmcio->cmd.resp[0] & MMC_OCR_CARD_BUSY)) {
945 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
946 			    ("Card is still powering up\n"));
947 			break;
948 		}
949 
950 		mmcp->card_features |= CARD_FEATURE_MMC | CARD_FEATURE_MEMORY;
951 		PROBE_SET_ACTION(softc, PROBE_GET_CID);
952 		break;
953 	}
954 	case PROBE_SEND_APP_OP_COND:
955 	{
956 		mmcio = &done_ccb->mmcio;
957 		err = mmcio->cmd.error;
958 
959 		if (err != MMC_ERR_NONE) {
960 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
961 				  ("APP_OP_COND: error %d, resp %08x\n",
962 				   err, mmcio->cmd.resp[0]));
963 			PROBE_SET_ACTION(softc, PROBE_MMC_INIT);
964 			break;
965 		}
966 
967 		if (!(softc->flags & PROBE_FLAG_ACMD_SENT)) {
968 			/* Don't change the state */
969 			softc->flags |= PROBE_FLAG_ACMD_SENT;
970 			break;
971 		}
972 
973 		softc->flags &= ~PROBE_FLAG_ACMD_SENT;
974 		if ((mmcio->cmd.resp[0] & MMC_OCR_CARD_BUSY) ||
975 		    (mmcio->cmd.arg & MMC_OCR_VOLTAGE) == 0) {
976 			struct mmc_params *mmcp = &path->device->mmc_ident_data;
977 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
978 			    ("Card OCR: %08x\n",  mmcio->cmd.resp[0]));
979 			if (mmcp->card_ocr == 0) {
980 				mmcp->card_ocr = mmcio->cmd.resp[0];
981 				/* Now when we know OCR that we want -- send it to card */
982 				CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
983 				    ("-> sending OCR to card\n"));
984 			} else {
985 				/* We already know the OCR and despite of that we
986 				 * are processing the answer to ACMD41 -> move on
987 				 */
988 				PROBE_SET_ACTION(softc, PROBE_GET_CID);
989 			}
990 			/* Getting an answer to ACMD41 means the card has memory */
991 			mmcp->card_features |= CARD_FEATURE_MEMORY;
992 
993 			/* Standard capacity vs High Capacity memory card */
994 			if (mmcio->cmd.resp[0] & MMC_OCR_CCS) {
995 				CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
996 				    ("Card is SDHC\n"));
997 				mmcp->card_features |= CARD_FEATURE_SDHC;
998 			}
999 
1000 			/* Whether the card supports 1.8V signaling */
1001 			if (mmcio->cmd.resp[0] & MMC_OCR_S18A) {
1002 				CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1003 					  ("Card supports 1.8V signaling\n"));
1004 				mmcp->card_features |= CARD_FEATURE_18V;
1005 				if (softc->flags & PROBE_FLAG_HOST_CAN_DO_18V) {
1006 					CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1007 						  ("Host supports 1.8V signaling. Switch voltage!\n"));
1008 					done_ccb->ccb_h.func_code = XPT_SET_TRAN_SETTINGS;
1009 					done_ccb->ccb_h.flags = CAM_DIR_NONE;
1010 					done_ccb->ccb_h.retry_count = 0;
1011 					done_ccb->ccb_h.timeout = 100;
1012 					done_ccb->ccb_h.cbfcnp = NULL;
1013 					done_ccb->cts.proto_specific.mmc.ios.vccq = vccq_180;
1014 					done_ccb->cts.proto_specific.mmc.ios_valid = MMC_VCCQ;
1015 					xpt_action(done_ccb);
1016 				}
1017 			}
1018 		} else {
1019 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1020 				  ("Card not ready: %08x\n",  mmcio->cmd.resp[0]));
1021 			/* Send CMD55+ACMD41 once again  */
1022 			PROBE_SET_ACTION(softc, PROBE_SEND_APP_OP_COND);
1023 		}
1024 
1025 		break;
1026 	}
1027 	case PROBE_GET_CID: /* XXX move to mmc_da */
1028 	{
1029 		mmcio = &done_ccb->mmcio;
1030 		err = mmcio->cmd.error;
1031 
1032 		if (err != MMC_ERR_NONE) {
1033 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1034 				  ("PROBE_GET_CID: error %d\n", err));
1035 			PROBE_SET_ACTION(softc, PROBE_INVALID);
1036 			break;
1037 		}
1038 
1039 		struct mmc_params *mmcp = &path->device->mmc_ident_data;
1040 		memcpy(mmcp->card_cid, mmcio->cmd.resp, 4 * sizeof(uint32_t));
1041 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1042 		    ("CID %08x%08x%08x%08x\n",
1043 		      mmcp->card_cid[0],
1044 		      mmcp->card_cid[1],
1045 		      mmcp->card_cid[2],
1046 		      mmcp->card_cid[3]));
1047 		if (mmcp->card_features & CARD_FEATURE_MMC)
1048 			PROBE_SET_ACTION(softc, PROBE_MMC_SET_RELATIVE_ADDR);
1049 		else
1050 			PROBE_SET_ACTION(softc, PROBE_SEND_RELATIVE_ADDR);
1051 		break;
1052 	}
1053 	case PROBE_SEND_RELATIVE_ADDR: {
1054 		mmcio = &done_ccb->mmcio;
1055 		err = mmcio->cmd.error;
1056 		struct mmc_params *mmcp = &path->device->mmc_ident_data;
1057 		uint16_t rca = mmcio->cmd.resp[0] >> 16;
1058 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1059 		    ("Card published RCA: %u\n", rca));
1060 		path->device->mmc_ident_data.card_rca = rca;
1061 		if (err != MMC_ERR_NONE) {
1062 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1063 				  ("PROBE_SEND_RELATIVE_ADDR: error %d\n", err));
1064 			PROBE_SET_ACTION(softc, PROBE_INVALID);
1065 			break;
1066 		}
1067 
1068 		/* If memory is present, get CSD, otherwise select card */
1069 		if (mmcp->card_features & CARD_FEATURE_MEMORY)
1070 			PROBE_SET_ACTION(softc, PROBE_GET_CSD);
1071 		else
1072 			PROBE_SET_ACTION(softc, PROBE_SELECT_CARD);
1073 		break;
1074 	}
1075 	case PROBE_MMC_SET_RELATIVE_ADDR:
1076 		mmcio = &done_ccb->mmcio;
1077 		err = mmcio->cmd.error;
1078 		if (err != MMC_ERR_NONE) {
1079 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1080 			    ("PROBE_MMC_SET_RELATIVE_ADDR: error %d\n", err));
1081 			PROBE_SET_ACTION(softc, PROBE_INVALID);
1082 			break;
1083 		}
1084 		path->device->mmc_ident_data.card_rca = MMC_PROPOSED_RCA;
1085 		PROBE_SET_ACTION(softc, PROBE_GET_CSD);
1086 		break;
1087 	case PROBE_GET_CSD: {
1088 		mmcio = &done_ccb->mmcio;
1089 		err = mmcio->cmd.error;
1090 
1091 		if (err != MMC_ERR_NONE) {
1092 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1093 				  ("PROBE_GET_CSD: error %d\n", err));
1094 			PROBE_SET_ACTION(softc, PROBE_INVALID);
1095 			break;
1096 		}
1097 
1098 		struct mmc_params *mmcp = &path->device->mmc_ident_data;
1099 		memcpy(mmcp->card_csd, mmcio->cmd.resp, 4 * sizeof(uint32_t));
1100 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1101 		    ("CSD %08x%08x%08x%08x\n",
1102 		      mmcp->card_csd[0],
1103 		      mmcp->card_csd[1],
1104 		      mmcp->card_csd[2],
1105 		      mmcp->card_csd[3]));
1106 		PROBE_SET_ACTION(softc, PROBE_SELECT_CARD);
1107 		break;
1108 	}
1109 	case PROBE_SELECT_CARD: {
1110 		mmcio = &done_ccb->mmcio;
1111 		err = mmcio->cmd.error;
1112 		if (err != MMC_ERR_NONE) {
1113 			CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1114 				  ("PROBE_SEND_RELATIVE_ADDR: error %d\n", err));
1115 			PROBE_SET_ACTION(softc, PROBE_INVALID);
1116 			break;
1117 		}
1118 
1119 		PROBE_SET_ACTION(softc, PROBE_DONE);
1120 		break;
1121 	}
1122 	default:
1123 		CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1124 			  ("mmcprobe_done: invalid action state 0x%x\n", softc->action));
1125 		panic("default: case in mmc_probe_done()");
1126 	}
1127 
1128 	if (softc->action == PROBE_INVALID &&
1129 	  (path->device->flags & CAM_DEV_UNCONFIGURED) == 0) {
1130 		xpt_async(AC_LOST_DEVICE, path, NULL);
1131 	}
1132 
1133 	if (softc->action != PROBE_INVALID)
1134 		xpt_schedule(periph, priority);
1135 	/* Drop freeze taken due to CAM_DEV_QFREEZE flag set. */
1136 	int frozen = cam_release_devq(path, 0, 0, 0, FALSE);
1137 	CAM_DEBUG(done_ccb->ccb_h.path, CAM_DEBUG_PROBE,
1138 	  ("mmcprobe_done: remaining freeze count %d\n", frozen));
1139 
1140 	if (softc->action == PROBE_DONE) {
1141                 /* Notify the system that the device is found! */
1142 		if (periph->path->device->flags & CAM_DEV_UNCONFIGURED) {
1143 			path->device->flags &= ~CAM_DEV_UNCONFIGURED;
1144 			xpt_acquire_device(path->device);
1145 			done_ccb->ccb_h.func_code = XPT_GDEV_TYPE;
1146 			xpt_action(done_ccb);
1147 			xpt_async(AC_FOUND_DEVICE, path, done_ccb);
1148 		}
1149 	}
1150 	xpt_release_ccb(done_ccb);
1151 	if (softc->action == PROBE_DONE || softc->action == PROBE_INVALID) {
1152 		cam_periph_invalidate(periph);
1153 		cam_periph_release_locked(periph);
1154 	}
1155 }
1156 
1157 void
1158 mmc_path_inq(struct ccb_pathinq *cpi, const char *hba,
1159     const struct cam_sim *sim, size_t maxio)
1160 {
1161 
1162 	cpi->version_num = 1;
1163 	cpi->hba_inquiry = 0;
1164 	cpi->target_sprt = 0;
1165 	cpi->hba_misc = PIM_NOBUSRESET | PIM_SEQSCAN;
1166 	cpi->hba_eng_cnt = 0;
1167 	cpi->max_target = 0;
1168 	cpi->max_lun = 0;
1169 	cpi->initiator_id = 1;
1170 	cpi->maxio = maxio;
1171 	strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
1172 	strncpy(cpi->hba_vid, hba, HBA_IDLEN);
1173 	strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
1174 	cpi->unit_number = cam_sim_unit(sim);
1175 	cpi->bus_id = cam_sim_bus(sim);
1176 	cpi->protocol = PROTO_MMCSD;
1177 	cpi->protocol_version = SCSI_REV_0;
1178 	cpi->transport = XPORT_MMCSD;
1179 	cpi->transport_version = 1;
1180 
1181 	cpi->base_transfer_speed = 100; /* XXX WTF? */
1182 
1183 	cpi->ccb_h.status = CAM_REQ_CMP;
1184 }
1185