Lines Matching full:cts

380 	struct	ccb_trans_settings cts;  in mmc_announce_periph_sbuf()  local
387 memset(&cts, 0, sizeof(cts)); in mmc_announce_periph_sbuf()
388 xpt_setup_ccb(&cts.ccb_h, path, CAM_PRIORITY_NORMAL); in mmc_announce_periph_sbuf()
389 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; in mmc_announce_periph_sbuf()
390 cts.type = CTS_TYPE_CURRENT_SETTINGS; in mmc_announce_periph_sbuf()
391 xpt_action((union ccb*)&cts); in mmc_announce_periph_sbuf()
392 if ((cts.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) in mmc_announce_periph_sbuf()
396 ("XPT info: CLK %04d, ...\n", cts.proto_specific.mmc.ios.clock)); in mmc_announce_periph_sbuf()
588 struct ccb_trans_settings_mmc *cts; in mmcprobe_start() local
594 cts = &start_ccb->cts.proto_specific.mmc; in mmcprobe_start()
620 cts->ios.power_mode = power_off; in mmcprobe_start()
621 cts->ios_valid = MMC_PM; in mmcprobe_start()
631 uint32_t host_caps = cts->host_caps; in mmcprobe_start()
637 cts->ios.vdd = hv; in mmcprobe_start()
638 cts->ios.bus_mode = opendrain; in mmcprobe_start()
639 cts->ios.chip_select = cs_dontcare; in mmcprobe_start()
640 cts->ios.power_mode = power_up; in mmcprobe_start()
641 cts->ios.bus_width = bus_width_1; in mmcprobe_start()
642 cts->ios.clock = 0; in mmcprobe_start()
643 cts->ios_valid = MMC_VDD | MMC_PM | MMC_BM | in mmcprobe_start()
651 cts->ios.power_mode = power_on; in mmcprobe_start()
652 cts->ios.clock = CARD_ID_FREQUENCY; in mmcprobe_start()
653 cts->ios.timing = bus_timing_normal; in mmcprobe_start()
654 cts->ios_valid = MMC_PM | MMC_CLK | MMC_BT; in mmcprobe_start()
660 cts->ios.chip_select = cs_high; in mmcprobe_start()
661 cts->ios_valid = MMC_CS; in mmcprobe_start()
781 cts->ios.bus_mode = pushpull; in mmcprobe_start()
782 cts->ios_valid = MMC_BM; in mmcprobe_start()
835 struct ccb_trans_settings_mmc *cts; in mmcprobe_done() local
836 cts = &done_ccb->cts.proto_specific.mmc; in mmcprobe_done()
837 softc->host_ocr = cts->host_ocr; in mmcprobe_done()
1057 done_ccb->cts.proto_specific.mmc.ios.vccq = vccq_180; in mmcprobe_done()
1058 done_ccb->cts.proto_specific.mmc.ios_valid = MMC_VCCQ; in mmcprobe_done()