/* * Write a PM register */ int sili_pm_write(struct sili_port *ap, int target, int which, u_int32_t data) { struct ata_xfer *xa; int error; xa = sili_ata_get_xfer(ap, &ap->ap_ata[15]); xa->fis->type = ATA_FIS_TYPE_H2D; xa->fis->flags = ATA_H2D_FLAGS_CMD | 15; xa->fis->command = ATA_C_WRITE_PM; xa->fis->features = which; xa->fis->device = target | ATA_H2D_DEVICE_LBA; xa->fis->sector_count = (u_int8_t)data; xa->fis->lba_low = (u_int8_t)(data >> 8); xa->fis->lba_mid = (u_int8_t)(data >> 16); xa->fis->lba_high = (u_int8_t)(data >> 24); xa->fis->control = ATA_FIS_CONTROL_4BIT; xa->complete = sili_pm_dummy_done; xa->datalen = 0; xa->flags = ATA_F_POLL | ATA_F_EXCLUSIVE; xa->timeout = 1000; if (sili_ata_cmd(xa) == ATA_S_COMPLETE) error = 0; else error = EIO; sili_ata_put_xfer(xa); return(error); }
/* * Read a PM register */ int sili_pm_read(struct sili_port *ap, int target, int which, u_int32_t *datap) { struct ata_xfer *xa; int error; xa = sili_ata_get_xfer(ap, &ap->ap_ata[15]); xa->fis->type = ATA_FIS_TYPE_H2D; xa->fis->flags = ATA_H2D_FLAGS_CMD | 15; xa->fis->command = ATA_C_READ_PM; xa->fis->features = which; xa->fis->device = target | ATA_H2D_DEVICE_LBA; xa->fis->control = ATA_FIS_CONTROL_4BIT; xa->complete = sili_pm_dummy_done; xa->datalen = 0; xa->flags = ATA_F_POLL | ATA_F_AUTOSENSE; xa->timeout = 1000; if (sili_ata_cmd(xa) == ATA_S_COMPLETE) { *datap = xa->rfis->sector_count | (xa->rfis->lba_low << 8) | (xa->rfis->lba_mid << 16) | (xa->rfis->lba_high << 24); error = 0; } else { kprintf("%s.%d pm_read SCA[%d] failed\n", PORTNAME(ap), target, which); *datap = 0; error = EIO; } sili_ata_put_xfer(xa); return (error); }
int sili_pm_set_feature(struct sili_port *ap, int feature, int enable) { struct ata_xfer *xa; int error; xa = sili_ata_get_xfer(ap, &ap->ap_ata[15]); xa->fis->type = ATA_FIS_TYPE_H2D; xa->fis->flags = ATA_H2D_FLAGS_CMD | 15; xa->fis->command = enable ? ATA_C_SATA_FEATURE_ENA : ATA_C_SATA_FEATURE_DIS; xa->fis->sector_count = feature; xa->fis->control = ATA_FIS_CONTROL_4BIT; xa->complete = sili_pm_dummy_done; xa->datalen = 0; xa->flags = ATA_F_POLL | ATA_F_EXCLUSIVE; xa->timeout = 1000; if (sili_ata_cmd(xa) == ATA_S_COMPLETE) error = 0; else error = EIO; sili_ata_put_xfer(xa); return(error); }
/* * Setting the transfer mode is irrelevant for the SATA transport * but some (atapi) devices seem to need it anyway. In addition * if we are running through a SATA->PATA converter for some reason * beyond my comprehension we might have to set the mode. * * We only support DMA modes for SATA attached devices, so don't bother * with legacy modes. */ static int sili_set_xfer(struct sili_port *ap, struct ata_port *atx) { struct ata_port *at; struct ata_xfer *xa; u_int16_t mode; u_int16_t mask; at = atx ? atx : ap->ap_ata; /* * Figure out the supported UDMA mode. Ignore other legacy modes. */ mask = le16toh(at->at_identify.ultradma); if ((mask & 0xFF) == 0 || mask == 0xFFFF) return(0); mask &= 0xFF; mode = 0x4F; while ((mask & 0x8000) == 0) { mask <<= 1; --mode; } /* * SATA atapi devices often still report a dma mode, even though * it is irrelevant for SATA transport. It is also possible that * we are running through a SATA->PATA converter and seeing the * PATA dma mode. * * In this case the device may require a (dummy) SETXFER to be * sent before it will work properly. */ xa = sili_ata_get_xfer(ap, atx); xa->complete = sili_ata_dummy_done; xa->fis->command = ATA_C_SET_FEATURES; xa->fis->features = ATA_SF_SETXFER; xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target; xa->fis->sector_count = mode; xa->flags = ATA_F_PIO | ATA_F_POLL; xa->timeout = 1000; xa->datalen = 0; if (sili_ata_cmd(xa) != ATA_S_COMPLETE) { kprintf("%s: Unable to set dummy xfer mode \n", ATANAME(ap, atx)); } else if (bootverbose) { kprintf("%s: Set dummy xfer mode to %02x\n", ATANAME(ap, atx), mode); } sili_ata_put_xfer(xa); return(0); }
/* * DISK-specific probe after initial ident */ static int sili_cam_probe_disk(struct sili_port *ap, struct ata_port *atx) { struct ata_port *at; struct ata_xfer *xa; at = atx ? atx : ap->ap_ata; /* * Set dummy xfer mode */ sili_set_xfer(ap, atx); /* * Enable write cache if supported * * NOTE: "WD My Book" external disk devices have a very poor * daughter board between the the ESATA and the HD. Sending * any ATA_C_SET_FEATURES commands will break the hardware port * with a fatal protocol error. However, this device also * indicates that WRITECACHE is already on and READAHEAD is * not supported so we avoid the issue. */ if ((at->at_identify.cmdset82 & ATA_IDENTIFY_WRITECACHE) && (at->at_identify.features85 & ATA_IDENTIFY_WRITECACHE) == 0) { xa = sili_ata_get_xfer(ap, atx); xa->complete = sili_ata_dummy_done; xa->fis->command = ATA_C_SET_FEATURES; /*xa->fis->features = ATA_SF_WRITECACHE_EN;*/ xa->fis->features = ATA_SF_LOOKAHEAD_EN; xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target; xa->fis->device = 0; xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL; xa->timeout = 1000; xa->datalen = 0; if (sili_ata_cmd(xa) == ATA_S_COMPLETE) at->at_features |= ATA_PORT_F_WCACHE; else kprintf("%s: Unable to enable write-caching\n", ATANAME(ap, atx)); sili_ata_put_xfer(xa); } /* * Enable readahead if supported */ if ((at->at_identify.cmdset82 & ATA_IDENTIFY_LOOKAHEAD) && (at->at_identify.features85 & ATA_IDENTIFY_LOOKAHEAD) == 0) { xa = sili_ata_get_xfer(ap, atx); xa->complete = sili_ata_dummy_done; xa->fis->command = ATA_C_SET_FEATURES; xa->fis->features = ATA_SF_LOOKAHEAD_EN; xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target; xa->fis->device = 0; xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL; xa->timeout = 1000; xa->datalen = 0; if (sili_ata_cmd(xa) == ATA_S_COMPLETE) at->at_features |= ATA_PORT_F_RAHEAD; else kprintf("%s: Unable to enable read-ahead\n", ATANAME(ap, atx)); sili_ata_put_xfer(xa); } /* * FREEZE LOCK the device so malicious users can't lock it on us. * As there is no harm in issuing this to devices that don't * support the security feature set we just send it, and don't bother * checking if the device sends a command abort to tell us it doesn't * support it */ if ((at->at_identify.cmdset82 & ATA_IDENTIFY_SECURITY) && (at->at_identify.securestatus & ATA_SECURE_FROZEN) == 0 && (SiliNoFeatures & (1 << ap->ap_num)) == 0) { xa = sili_ata_get_xfer(ap, atx); xa->complete = sili_ata_dummy_done; xa->fis->command = ATA_C_SEC_FREEZE_LOCK; xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target; xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL; xa->timeout = 1000; xa->datalen = 0; if (sili_ata_cmd(xa) == ATA_S_COMPLETE) at->at_features |= ATA_PORT_F_FRZLCK; else kprintf("%s: Unable to set security freeze\n", ATANAME(ap, atx)); sili_ata_put_xfer(xa); } return (0); }
/* * Once the SILI port has been attached we need to probe for a device or * devices on the port and setup various options. * * If at is NULL we are probing the direct-attached device on the port, * which may or may not be a port multiplier. */ int sili_cam_probe(struct sili_port *ap, struct ata_port *atx) { struct ata_port *at; struct ata_xfer *xa; u_int64_t capacity; u_int64_t capacity_bytes; int model_len; int firmware_len; int serial_len; int error; int devncqdepth; int i; const char *model_id; const char *firmware_id; const char *serial_id; const char *wcstr; const char *rastr; const char *scstr; const char *type; error = EIO; /* * Delayed CAM attachment for initial probe, sim may be NULL */ if (ap->ap_sim == NULL) return(0); /* * A NULL atx indicates a probe of the directly connected device. * A non-NULL atx indicates a device connected via a port multiplier. * We need to preserve atx for calls to sili_ata_get_xfer(). * * at is always non-NULL. For directly connected devices we supply * an (at) pointing to target 0. */ if (atx == NULL) { at = ap->ap_ata; /* direct attached - device 0 */ if (ap->ap_type == ATA_PORT_T_PM) { kprintf("%s: Found Port Multiplier\n", ATANAME(ap, atx)); return (0); } at->at_type = ap->ap_type; } else { at = atx; if (atx->at_type == ATA_PORT_T_PM) { kprintf("%s: Bogus device, reducing port count to %d\n", ATANAME(ap, atx), atx->at_target); if (ap->ap_pmcount > atx->at_target) ap->ap_pmcount = atx->at_target; goto err; } } if (ap->ap_type == ATA_PORT_T_NONE) goto err; if (at->at_type == ATA_PORT_T_NONE) goto err; /* * Issue identify, saving the result */ xa = sili_ata_get_xfer(ap, atx); xa->complete = sili_ata_dummy_done; xa->data = &at->at_identify; xa->datalen = sizeof(at->at_identify); xa->flags = ATA_F_READ | ATA_F_PIO | ATA_F_POLL; xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target; switch(at->at_type) { case ATA_PORT_T_DISK: xa->fis->command = ATA_C_IDENTIFY; type = "DISK"; break; case ATA_PORT_T_ATAPI: xa->fis->command = ATA_C_ATAPI_IDENTIFY; xa->flags |= ATA_F_AUTOSENSE; type = "ATAPI"; break; default: xa->fis->command = ATA_C_ATAPI_IDENTIFY; type = "UNKNOWN(ATAPI?)"; break; } xa->fis->features = 0; xa->fis->device = 0; xa->timeout = 1000; if (sili_ata_cmd(xa) != ATA_S_COMPLETE) { kprintf("%s: Detected %s device but unable to IDENTIFY\n", ATANAME(ap, atx), type); sili_ata_put_xfer(xa); goto err; } sili_ata_put_xfer(xa); ata_fix_identify(&at->at_identify); /* * Read capacity using SATA probe info. */ if (le16toh(at->at_identify.cmdset83) & 0x0400) { /* LBA48 feature set supported */ capacity = 0; for (i = 3; i >= 0; --i) { capacity <<= 16; capacity += le16toh(at->at_identify.addrsecxt[i]); } } else { capacity = le16toh(at->at_identify.addrsec[1]); capacity <<= 16; capacity += le16toh(at->at_identify.addrsec[0]); } at->at_capacity = capacity; if (atx == NULL) ap->ap_probe = ATA_PROBE_GOOD; capacity_bytes = capacity * 512; /* * Negotiate NCQ, throw away any ata_xfer's beyond the negotiated * number of slots and limit the number of CAM ccb's to one less * so we always have a slot available for recovery. * * NCQ is not used if ap_ncqdepth is 1 or the host controller does * not support it, and in that case the driver can handle extra * ccb's. * * NCQ is currently used only with direct-attached disks. It is * not used with port multipliers or direct-attached ATAPI devices. * * Remember at least one extra CCB needs to be reserved for the * error ccb. */ if ((ap->ap_sc->sc_flags & SILI_F_NCQ) && at->at_type == ATA_PORT_T_DISK && (le16toh(at->at_identify.satacap) & (1 << 8))) { at->at_ncqdepth = (le16toh(at->at_identify.qdepth) & 0x1F) + 1; devncqdepth = at->at_ncqdepth; if (at->at_ncqdepth > ap->ap_sc->sc_ncmds) at->at_ncqdepth = ap->ap_sc->sc_ncmds; if (at->at_ncqdepth > 1) { for (i = 0; i < ap->ap_sc->sc_ncmds; ++i) { xa = sili_ata_get_xfer(ap, atx); if (xa->tag < at->at_ncqdepth) { xa->state = ATA_S_COMPLETE; sili_ata_put_xfer(xa); } } if (at->at_ncqdepth >= ap->ap_sc->sc_ncmds) { cam_sim_set_max_tags(ap->ap_sim, at->at_ncqdepth - 1); } } } else { devncqdepth = 0; } /* * Make the model string a bit more presentable */ for (model_len = 40; model_len; --model_len) { if (at->at_identify.model[model_len-1] == ' ') continue; if (at->at_identify.model[model_len-1] == 0) continue; break; } model_len = sizeof(at->at_identify.model); model_id = at->at_identify.model; sili_strip_string(&model_id, &model_len); firmware_len = sizeof(at->at_identify.firmware); firmware_id = at->at_identify.firmware; sili_strip_string(&firmware_id, &firmware_len); serial_len = sizeof(at->at_identify.serial); serial_id = at->at_identify.serial; sili_strip_string(&serial_id, &serial_len); /* * Generate informatiive strings. * * NOTE: We do not automatically set write caching, lookahead, * or the security state for ATAPI devices. */ if (at->at_identify.cmdset82 & ATA_IDENTIFY_WRITECACHE) { if (at->at_identify.features85 & ATA_IDENTIFY_WRITECACHE) wcstr = "enabled"; else if (at->at_type == ATA_PORT_T_ATAPI) wcstr = "disabled"; else wcstr = "enabling"; } else { wcstr = "notsupp"; } if (at->at_identify.cmdset82 & ATA_IDENTIFY_LOOKAHEAD) { if (at->at_identify.features85 & ATA_IDENTIFY_LOOKAHEAD) rastr = "enabled"; else if (at->at_type == ATA_PORT_T_ATAPI) rastr = "disabled"; else rastr = "enabling"; } else { rastr = "notsupp"; } if (at->at_identify.cmdset82 & ATA_IDENTIFY_SECURITY) { if (at->at_identify.securestatus & ATA_SECURE_FROZEN) scstr = "frozen"; else if (at->at_type == ATA_PORT_T_ATAPI) scstr = "unfrozen"; else if (SiliNoFeatures & (1 << ap->ap_num)) scstr = "<disabled>"; else scstr = "freezing"; } else { scstr = "notsupp"; } kprintf("%s: Found %s \"%*.*s %*.*s\" serial=\"%*.*s\"\n" "%s: tags=%d/%d satacap=%04x satafea=%04x NCQ=%s " "capacity=%lld.%02dMB\n", ATANAME(ap, atx), type, model_len, model_len, model_id, firmware_len, firmware_len, firmware_id, serial_len, serial_len, serial_id, ATANAME(ap, atx), devncqdepth, ap->ap_sc->sc_ncmds, at->at_identify.satacap, at->at_identify.satafsup, (at->at_ncqdepth > 1 ? "YES" : "NO"), (long long)capacity_bytes / (1024 * 1024), (int)(capacity_bytes % (1024 * 1024)) * 100 / (1024 * 1024) ); kprintf("%s: f85=%04x f86=%04x f87=%04x WC=%s RA=%s SEC=%s\n", ATANAME(ap, atx), at->at_identify.features85, at->at_identify.features86, at->at_identify.features87, wcstr, rastr, scstr ); /* * Additional type-specific probing */ switch(at->at_type) { case ATA_PORT_T_DISK: error = sili_cam_probe_disk(ap, atx); break; case ATA_PORT_T_ATAPI: error = sili_cam_probe_atapi(ap, atx); break; default: error = EIO; break; } err: if (error) { at->at_probe = ATA_PROBE_FAILED; if (atx == NULL) ap->ap_probe = at->at_probe; } else { at->at_probe = ATA_PROBE_GOOD; if (atx == NULL) ap->ap_probe = at->at_probe; } return (error); }