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