1 /* 2 * (MPSAFE) 3 * 4 * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 * 18 * 19 * Copyright (c) 2009 The DragonFly Project. All rights reserved. 20 * 21 * This code is derived from software contributed to The DragonFly Project 22 * by Matthew Dillon <dillon@backplane.com> 23 * 24 * Redistribution and use in source and binary forms, with or without 25 * modification, are permitted provided that the following conditions 26 * are met: 27 * 28 * 1. Redistributions of source code must retain the above copyright 29 * notice, this list of conditions and the following disclaimer. 30 * 2. Redistributions in binary form must reproduce the above copyright 31 * notice, this list of conditions and the following disclaimer in 32 * the documentation and/or other materials provided with the 33 * distribution. 34 * 3. Neither the name of The DragonFly Project nor the names of its 35 * contributors may be used to endorse or promote products derived 36 * from this software without specific, prior written permission. 37 * 38 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 39 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 40 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 41 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 42 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 43 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, 44 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 45 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 46 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 47 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 48 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 49 * SUCH DAMAGE. 50 * 51 * $OpenBSD: ahci.c,v 1.147 2009/02/16 21:19:07 miod Exp $ 52 */ 53 54 #include "ahci.h" 55 56 void ahci_port_interrupt_enable(struct ahci_port *ap); 57 58 int ahci_load_prdt(struct ahci_ccb *); 59 void ahci_unload_prdt(struct ahci_ccb *); 60 static void ahci_load_prdt_callback(void *info, bus_dma_segment_t *segs, 61 int nsegs, int error); 62 void ahci_start(struct ahci_ccb *); 63 int ahci_port_softreset(struct ahci_port *ap); 64 int ahci_port_hardreset(struct ahci_port *ap, int hard); 65 void ahci_port_hardstop(struct ahci_port *ap); 66 67 static void ahci_ata_cmd_timeout_unserialized(void *); 68 void ahci_check_active_timeouts(struct ahci_port *ap); 69 70 void ahci_beg_exclusive_access(struct ahci_port *ap, struct ata_port *at); 71 void ahci_end_exclusive_access(struct ahci_port *ap, struct ata_port *at); 72 void ahci_issue_pending_commands(struct ahci_port *ap, struct ahci_ccb *ccb); 73 void ahci_issue_saved_commands(struct ahci_port *ap, u_int32_t mask); 74 75 int ahci_port_read_ncq_error(struct ahci_port *, int); 76 77 struct ahci_dmamem *ahci_dmamem_alloc(struct ahci_softc *, bus_dma_tag_t tag); 78 void ahci_dmamem_free(struct ahci_softc *, struct ahci_dmamem *); 79 static void ahci_dmamem_saveseg(void *info, bus_dma_segment_t *segs, int nsegs, int error); 80 81 static void ahci_dummy_done(struct ata_xfer *xa); 82 static void ahci_empty_done(struct ahci_ccb *ccb); 83 static void ahci_ata_cmd_done(struct ahci_ccb *ccb); 84 static u_int32_t ahci_pactive(struct ahci_port *ap); 85 86 /* 87 * Initialize the global AHCI hardware. This code does not set up any of 88 * its ports. 89 */ 90 int 91 ahci_init(struct ahci_softc *sc) 92 { 93 u_int32_t pi, pleft; 94 u_int32_t bios_cap, vers; 95 int i; 96 struct ahci_port *ap; 97 98 DPRINTF(AHCI_D_VERBOSE, " GHC 0x%b", 99 ahci_read(sc, AHCI_REG_GHC), AHCI_FMT_GHC); 100 101 /* 102 * AHCI version. 103 */ 104 vers = ahci_read(sc, AHCI_REG_VS); 105 106 /* 107 * save BIOS initialised parameters, enable staggered spin up 108 */ 109 bios_cap = ahci_read(sc, AHCI_REG_CAP); 110 bios_cap &= AHCI_REG_CAP_SMPS | AHCI_REG_CAP_SSS; 111 112 pi = ahci_read(sc, AHCI_REG_PI); 113 114 /* 115 * Unconditionally reset the controller, do not conditionalize on 116 * trying to figure it if it was previously active or not. 117 * 118 * NOTE: On AE before HR. The AHCI-1.1 spec has a note in section 119 * 5.2.2.1 regarding this. HR should be set to 1 only after 120 * AE is set to 1. The reset sequence will clear HR when 121 * it completes, and will also clear AE if SAM is 0. AE must 122 * then be set again. When SAM is 1 the AE bit typically reads 123 * as 1 (and is read-only). 124 * 125 * NOTE: Avoid PCI[e] transaction burst by issuing dummy reads, 126 * otherwise the writes will only be separated by a few 127 * nanoseconds. 128 * 129 * NOTE BRICKS (1) 130 * 131 * If you have a port multiplier and it does not have a device 132 * in target 0, and it probes normally, but a later operation 133 * mis-probes a target behind that PM, it is possible for the 134 * port to brick such that only (a) a power cycle of the host 135 * or (b) placing a device in target 0 will fix the problem. 136 * Power cycling the PM has no effect (it works fine on another 137 * host port). This issue is unrelated to CLO. 138 */ 139 /* 140 * Wait for any prior reset sequence to complete 141 */ 142 if (ahci_wait_ne(sc, AHCI_REG_GHC, 143 AHCI_REG_GHC_HR, AHCI_REG_GHC_HR) != 0) { 144 device_printf(sc->sc_dev, "Controller is stuck in reset\n"); 145 return (1); 146 } 147 ahci_write(sc, AHCI_REG_GHC, AHCI_REG_GHC_AE); 148 ahci_os_sleep(250); 149 ahci_read(sc, AHCI_REG_GHC); /* flush */ 150 ahci_write(sc, AHCI_REG_GHC, AHCI_REG_GHC_AE | AHCI_REG_GHC_HR); 151 ahci_os_sleep(250); 152 ahci_read(sc, AHCI_REG_GHC); /* flush */ 153 if (ahci_wait_ne(sc, AHCI_REG_GHC, 154 AHCI_REG_GHC_HR, AHCI_REG_GHC_HR) != 0) { 155 device_printf(sc->sc_dev, "unable to reset controller\n"); 156 return (1); 157 } 158 if (ahci_read(sc, AHCI_REG_GHC) & AHCI_REG_GHC_AE) { 159 device_printf(sc->sc_dev, "AE did not auto-clear!\n"); 160 ahci_write(sc, AHCI_REG_GHC, 0); 161 ahci_os_sleep(250); 162 } 163 164 /* 165 * Enable ahci (global interrupts disabled) 166 * 167 * Restore saved parameters. Avoid pci transaction burst write 168 * by issuing dummy reads. 169 */ 170 ahci_os_sleep(10); 171 ahci_write(sc, AHCI_REG_GHC, AHCI_REG_GHC_AE); 172 ahci_os_sleep(10); 173 174 ahci_read(sc, AHCI_REG_GHC); /* flush */ 175 176 bios_cap |= AHCI_REG_CAP_SSS; 177 ahci_write(sc, AHCI_REG_CAP, ahci_read(sc, AHCI_REG_CAP) | bios_cap); 178 ahci_write(sc, AHCI_REG_PI, pi); 179 ahci_read(sc, AHCI_REG_GHC); /* flush */ 180 181 /* 182 * Intel hocus pocus in case the BIOS has not set the chip up 183 * properly for AHCI operation. 184 */ 185 if (pci_get_vendor(sc->sc_dev) == PCI_VENDOR_INTEL) { 186 if ((pci_read_config(sc->sc_dev, 0x92, 2) & 0x0F) != 0x0F) 187 device_printf(sc->sc_dev, "Intel hocus pocus\n"); 188 pci_write_config(sc->sc_dev, 0x92, 189 pci_read_config(sc->sc_dev, 0x92, 2) | 0x0F, 2); 190 } 191 192 /* 193 * This is a hack that currently does not appear to have 194 * a significant effect, but I noticed the port registers 195 * do not appear to be completely cleared after the host 196 * controller is reset. 197 * 198 * Use a temporary ap structure so we can call ahci_pwrite(). 199 * 200 * We must be sure to stop the port 201 */ 202 ap = kmalloc(sizeof(*ap), M_DEVBUF, M_WAITOK | M_ZERO); 203 ap->ap_sc = sc; 204 pleft = pi; 205 for (i = 0; i < AHCI_MAX_PORTS; ++i) { 206 if (pleft == 0) 207 break; 208 if ((pi & (1 << i)) == 0) 209 continue; 210 if (bus_space_subregion(sc->sc_iot, sc->sc_ioh, 211 AHCI_PORT_REGION(i), AHCI_PORT_SIZE, &ap->ap_ioh) != 0) { 212 device_printf(sc->sc_dev, "can't map port\n"); 213 return (1); 214 } 215 /* 216 * NOTE! Setting AHCI_PREG_SCTL_DET_DISABLE on AHCI1.0 or 217 * AHCI1.1 can brick the chipset. Not only brick it, 218 * but also crash the PC. The bit seems unreliable 219 * on AHCI1.2 as well. 220 */ 221 ahci_port_stop(ap, 1); 222 ahci_pwrite(ap, AHCI_PREG_SCTL, ap->ap_sc->sc_ipm_disable); 223 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 224 ahci_pwrite(ap, AHCI_PREG_IE, 0); 225 ahci_write(ap->ap_sc, AHCI_REG_IS, 1 << i); 226 ahci_pwrite(ap, AHCI_PREG_CMD, 0); 227 ahci_pwrite(ap, AHCI_PREG_IS, -1); 228 sc->sc_portmask |= (1 << i); 229 pleft &= ~(1 << i); 230 } 231 sc->sc_numports = i; 232 kfree(ap, M_DEVBUF); 233 234 return (0); 235 } 236 237 /* 238 * Allocate and initialize an AHCI port. 239 */ 240 int 241 ahci_port_alloc(struct ahci_softc *sc, u_int port) 242 { 243 struct ahci_port *ap; 244 struct ata_port *at; 245 struct ahci_ccb *ccb; 246 u_int64_t dva; 247 u_int32_t cmd; 248 u_int32_t data; 249 struct ahci_cmd_hdr *hdr; 250 struct ahci_cmd_table *table; 251 int rc = ENOMEM; 252 int error; 253 int i; 254 255 ap = kmalloc(sizeof(*ap), M_DEVBUF, M_WAITOK | M_ZERO); 256 ap->ap_err_scratch = kmalloc(512, M_DEVBUF, M_WAITOK | M_ZERO); 257 258 ksnprintf(ap->ap_name, sizeof(ap->ap_name), "%s%d.%d", 259 device_get_name(sc->sc_dev), 260 device_get_unit(sc->sc_dev), 261 port); 262 sc->sc_ports[port] = ap; 263 264 /* 265 * Allocate enough so we never have to reallocate, it makes 266 * it easier. 267 * 268 * ap_pmcount will be reduced by the scan if we encounter the 269 * port multiplier port prior to target 15. 270 * 271 * kmalloc power-of-2 allocations are guaranteed not to cross 272 * a page boundary. Make sure the identify sub-structure in the 273 * at structure does not cross a page boundary, just in case the 274 * part is AHCI-1.1 and can't handle multiple DRQ blocks. 275 */ 276 if (ap->ap_ata[0] == NULL) { 277 int pw2; 278 279 for (pw2 = 1; pw2 < sizeof(*at); pw2 <<= 1) 280 ; 281 for (i = 0; i < AHCI_MAX_PMPORTS; ++i) { 282 at = kmalloc(pw2, M_DEVBUF, M_INTWAIT | M_ZERO); 283 ap->ap_ata[i] = at; 284 at->at_ahci_port = ap; 285 at->at_target = i; 286 at->at_probe = ATA_PROBE_NEED_INIT; 287 at->at_features |= ATA_PORT_F_RESCAN; 288 ksnprintf(at->at_name, sizeof(at->at_name), 289 "%s.%d", ap->ap_name, i); 290 } 291 } 292 if (bus_space_subregion(sc->sc_iot, sc->sc_ioh, 293 AHCI_PORT_REGION(port), AHCI_PORT_SIZE, &ap->ap_ioh) != 0) { 294 device_printf(sc->sc_dev, 295 "unable to create register window for port %d\n", 296 port); 297 goto freeport; 298 } 299 300 ap->ap_sc = sc; 301 ap->ap_num = port; 302 ap->ap_probe = ATA_PROBE_NEED_INIT; 303 ap->link_pwr_mgmt = AHCI_LINK_PWR_MGMT_NONE; 304 ap->sysctl_tree = NULL; 305 TAILQ_INIT(&ap->ap_ccb_free); 306 TAILQ_INIT(&ap->ap_ccb_pending); 307 lockinit(&ap->ap_ccb_lock, "ahcipo", 0, 0); 308 309 /* Disable port interrupts */ 310 ahci_pwrite(ap, AHCI_PREG_IE, 0); 311 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 312 313 /* 314 * Sec 10.1.2 - deinitialise port if it is already running 315 */ 316 cmd = ahci_pread(ap, AHCI_PREG_CMD); 317 318 if ((cmd & (AHCI_PREG_CMD_ST | AHCI_PREG_CMD_CR | 319 AHCI_PREG_CMD_FRE | AHCI_PREG_CMD_FR)) || 320 (ahci_pread(ap, AHCI_PREG_SCTL) & AHCI_PREG_SCTL_DET)) { 321 int r; 322 323 r = ahci_port_stop(ap, 1); 324 if (r) { 325 device_printf(sc->sc_dev, 326 "unable to disable %s, ignoring port %d\n", 327 ((r == 2) ? "CR" : "FR"), port); 328 rc = ENXIO; 329 goto freeport; 330 } 331 332 /* Write DET to zero */ 333 ahci_pwrite(ap, AHCI_PREG_SCTL, ap->ap_sc->sc_ipm_disable); 334 } 335 336 /* Allocate RFIS */ 337 ap->ap_dmamem_rfis = ahci_dmamem_alloc(sc, sc->sc_tag_rfis); 338 if (ap->ap_dmamem_rfis == NULL) { 339 kprintf("%s: NORFIS\n", PORTNAME(ap)); 340 goto nomem; 341 } 342 343 /* Setup RFIS base address */ 344 ap->ap_rfis = (struct ahci_rfis *) AHCI_DMA_KVA(ap->ap_dmamem_rfis); 345 bzero(ap->ap_rfis, sc->sc_rfis_size); 346 347 dva = AHCI_DMA_DVA(ap->ap_dmamem_rfis); 348 ahci_pwrite(ap, AHCI_PREG_FB, (u_int32_t)dva); 349 ahci_pwrite(ap, AHCI_PREG_FBU, (u_int32_t)(dva >> 32)); 350 351 /* Clear SERR before starting FIS reception or ST or anything */ 352 ahci_flush_tfd(ap); 353 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 354 355 /* 356 * Power up any device sitting on the port. 357 * 358 * Don't turn on FIS reception here, it will be handled in the first 359 * ahci_port_start(). 360 * 361 * Don't make the ICC ACTIVE here, it will be handled in port_init. 362 */ 363 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC; 364 cmd &= ~(AHCI_PREG_CMD_CLO | AHCI_PREG_CMD_PMA); 365 cmd |= AHCI_PREG_CMD_POD | AHCI_PREG_CMD_SUD; 366 #if 0 367 /* this will be done in ahci_pm_port_probe() */ 368 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SPM) 369 cmd |= AHCI_PREG_CMD_PMA; 370 #endif 371 372 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 373 374 /* Allocate a CCB for each command slot */ 375 ap->ap_ccbs = kmalloc(sizeof(struct ahci_ccb) * sc->sc_ncmds, M_DEVBUF, 376 M_WAITOK | M_ZERO); 377 if (ap->ap_ccbs == NULL) { 378 device_printf(sc->sc_dev, 379 "unable to allocate command list for port %d\n", 380 port); 381 goto freeport; 382 } 383 384 /* Command List Structures and Command Tables */ 385 ap->ap_dmamem_cmd_list = ahci_dmamem_alloc(sc, sc->sc_tag_cmdh); 386 ap->ap_dmamem_cmd_table = ahci_dmamem_alloc(sc, sc->sc_tag_cmdt); 387 if (ap->ap_dmamem_cmd_table == NULL || 388 ap->ap_dmamem_cmd_list == NULL) { 389 nomem: 390 device_printf(sc->sc_dev, 391 "unable to allocate DMA memory for port %d\n", 392 port); 393 goto freeport; 394 } 395 396 /* Setup command list base address */ 397 dva = AHCI_DMA_DVA(ap->ap_dmamem_cmd_list); 398 ahci_pwrite(ap, AHCI_PREG_CLB, (u_int32_t)dva); 399 ahci_pwrite(ap, AHCI_PREG_CLBU, (u_int32_t)(dva >> 32)); 400 401 /* Split CCB allocation into CCBs and assign to command header/table */ 402 hdr = AHCI_DMA_KVA(ap->ap_dmamem_cmd_list); 403 table = AHCI_DMA_KVA(ap->ap_dmamem_cmd_table); 404 bzero(hdr, sc->sc_cmdlist_size); 405 406 for (i = 0; i < sc->sc_ncmds; i++) { 407 ccb = &ap->ap_ccbs[i]; 408 409 error = bus_dmamap_create(sc->sc_tag_data, BUS_DMA_ALLOCNOW, 410 &ccb->ccb_dmamap); 411 if (error) { 412 device_printf(sc->sc_dev, 413 "unable to create dmamap for port %d " 414 "ccb %d\n", port, i); 415 goto freeport; 416 } 417 418 callout_init_mp(&ccb->ccb_timeout); 419 ccb->ccb_slot = i; 420 ccb->ccb_port = ap; 421 ccb->ccb_cmd_hdr = &hdr[i]; 422 ccb->ccb_cmd_table = &table[i]; 423 dva = AHCI_DMA_DVA(ap->ap_dmamem_cmd_table) + 424 ccb->ccb_slot * sizeof(struct ahci_cmd_table); 425 ccb->ccb_cmd_hdr->ctba_hi = htole32((u_int32_t)(dva >> 32)); 426 ccb->ccb_cmd_hdr->ctba_lo = htole32((u_int32_t)dva); 427 428 ccb->ccb_xa.fis = 429 (struct ata_fis_h2d *)ccb->ccb_cmd_table->cfis; 430 ccb->ccb_xa.packetcmd = ccb->ccb_cmd_table->acmd; 431 ccb->ccb_xa.tag = i; 432 433 ccb->ccb_xa.state = ATA_S_COMPLETE; 434 435 /* 436 * CCB[1] is the error CCB and is not get or put. It is 437 * also used for probing. Numerous HBAs only load the 438 * signature from CCB[1] so it MUST be used for the second 439 * FIS. 440 */ 441 if (i == 1) 442 ap->ap_err_ccb = ccb; 443 else 444 ahci_put_ccb(ccb); 445 } 446 447 /* 448 * Wait for ICC change to complete 449 */ 450 ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_ICC); 451 452 /* 453 * Calculate the interrupt mask 454 */ 455 data = AHCI_PREG_IE_TFEE | AHCI_PREG_IE_HBFE | 456 AHCI_PREG_IE_IFE | AHCI_PREG_IE_OFE | 457 AHCI_PREG_IE_DPE | AHCI_PREG_IE_UFE | 458 AHCI_PREG_IE_PCE | AHCI_PREG_IE_PRCE | 459 AHCI_PREG_IE_DHRE | AHCI_PREG_IE_SDBE; 460 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SSNTF) 461 data |= AHCI_PREG_IE_IPME; 462 #ifdef AHCI_COALESCE 463 if (sc->sc_ccc_ports & (1 << port) 464 data &= ~(AHCI_PREG_IE_SDBE | AHCI_PREG_IE_DHRE); 465 #endif 466 ap->ap_intmask = data; 467 468 /* 469 * Start the port helper thread. The helper thread will call 470 * ahci_port_init() so the ports can all be started in parallel. 471 * A failure by ahci_port_init() does not deallocate the port 472 * since we still want hot-plug events. 473 */ 474 ahci_os_start_port(ap); 475 return(0); 476 freeport: 477 ahci_port_free(sc, port); 478 return (rc); 479 } 480 481 /* 482 * [re]initialize an idle port. No CCBs should be active. (from port thread) 483 * 484 * This function is called during the initial port allocation sequence 485 * and is also called on hot-plug insertion. We take no chances and 486 * use a portreset instead of a softreset. 487 * 488 * This function is the only way to move a failed port back to active 489 * status. 490 * 491 * Returns 0 if a device is successfully detected. 492 */ 493 int 494 ahci_port_init(struct ahci_port *ap) 495 { 496 u_int32_t cmd; 497 498 /* 499 * Register [re]initialization 500 * 501 * Flush the TFD and SERR and make sure the port is stopped before 502 * enabling its interrupt. We no longer cycle the port start as 503 * the port should not be started unless a device is present. 504 * 505 * XXX should we enable FIS reception? (FRE)? 506 */ 507 ahci_pwrite(ap, AHCI_PREG_IE, 0); 508 ahci_port_stop(ap, 0); 509 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SSNTF) 510 ahci_pwrite(ap, AHCI_PREG_SNTF, -1); 511 ahci_flush_tfd(ap); 512 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 513 514 /* 515 * If we are being harsh try to kill the port completely. Normally 516 * we would want to hold on to some of the state the BIOS may have 517 * set, such as SUD (spin up device). 518 * 519 * AP_F_HARSH_REINIT is cleared in the hard reset state 520 */ 521 if (ap->ap_flags & AP_F_HARSH_REINIT) { 522 ahci_pwrite(ap, AHCI_PREG_SCTL, ap->ap_sc->sc_ipm_disable); 523 ahci_pwrite(ap, AHCI_PREG_CMD, 0); 524 525 ahci_os_sleep(1000); 526 527 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC; 528 cmd &= ~(AHCI_PREG_CMD_CLO | AHCI_PREG_CMD_PMA); 529 cmd |= AHCI_PREG_CMD_POD | AHCI_PREG_CMD_SUD; 530 cmd |= AHCI_PREG_CMD_ICC_ACTIVE; 531 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 532 ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_ICC); 533 ahci_os_sleep(1000); 534 } 535 536 /* 537 * Clear any pending garbage and re-enable the interrupt before 538 * going to the next stage. 539 */ 540 ap->ap_probe = ATA_PROBE_NEED_HARD_RESET; 541 ap->ap_pmcount = 0; 542 543 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SSNTF) 544 ahci_pwrite(ap, AHCI_PREG_SNTF, -1); 545 ahci_flush_tfd(ap); 546 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 547 ahci_pwrite(ap, AHCI_PREG_IS, -1); 548 549 ahci_port_interrupt_enable(ap); 550 551 return (0); 552 } 553 554 /* 555 * Enable or re-enable interrupts on a port. 556 * 557 * This routine is called from the port initialization code or from the 558 * helper thread as the real interrupt may be forced to turn off certain 559 * interrupt sources. 560 */ 561 void 562 ahci_port_interrupt_enable(struct ahci_port *ap) 563 { 564 ahci_pwrite(ap, AHCI_PREG_IE, ap->ap_intmask); 565 } 566 567 /* 568 * Manage the agressive link power management capability. 569 */ 570 void 571 ahci_port_link_pwr_mgmt(struct ahci_port *ap, int link_pwr_mgmt) 572 { 573 u_int32_t cmd, sctl; 574 575 if (link_pwr_mgmt == ap->link_pwr_mgmt) 576 return; 577 578 if ((ap->ap_sc->sc_cap & AHCI_REG_CAP_SALP) == 0) { 579 kprintf("%s: link power management not supported.\n", 580 PORTNAME(ap)); 581 return; 582 } 583 584 ahci_os_lock_port(ap); 585 586 if (link_pwr_mgmt == AHCI_LINK_PWR_MGMT_AGGR && 587 (ap->ap_sc->sc_cap & AHCI_REG_CAP_SSC)) { 588 kprintf("%s: enabling aggressive link power management.\n", 589 PORTNAME(ap)); 590 591 ap->link_pwr_mgmt = link_pwr_mgmt; 592 593 ap->ap_intmask &= ~AHCI_PREG_IE_PRCE; 594 ahci_port_interrupt_enable(ap); 595 596 sctl = ahci_pread(ap, AHCI_PREG_SCTL); 597 sctl &= ~(AHCI_PREG_SCTL_IPM); 598 if (ap->ap_sc->sc_cap2 & AHCI_REG_CAP2_SDS) 599 sctl |= AHCI_PREG_SCTL_IPM_NODEVSLP; 600 ahci_pwrite(ap, AHCI_PREG_SCTL, sctl); 601 602 /* 603 * Enable device initiated link power management for 604 * directly attached devices that support it. 605 */ 606 if (ap->ap_type != ATA_PORT_T_PM && 607 (ap->ap_ata[0]->at_identify.satafsup & 608 SATA_FEATURE_SUP_DEVIPS)) { 609 if (ahci_set_feature(ap, NULL, ATA_SATAFT_DEVIPS, 1)) 610 kprintf("%s: Could not enable device initiated " 611 "link power management.\n", 612 PORTNAME(ap)); 613 } 614 615 cmd = ahci_pread(ap, AHCI_PREG_CMD); 616 cmd |= AHCI_PREG_CMD_ASP; 617 cmd |= AHCI_PREG_CMD_ALPE; 618 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 619 } else if (link_pwr_mgmt == AHCI_LINK_PWR_MGMT_MEDIUM && 620 (ap->ap_sc->sc_cap & AHCI_REG_CAP_PSC)) { 621 kprintf("%s: enabling medium link power management.\n", 622 PORTNAME(ap)); 623 624 ap->link_pwr_mgmt = link_pwr_mgmt; 625 626 ap->ap_intmask &= ~AHCI_PREG_IE_PRCE; 627 ahci_port_interrupt_enable(ap); 628 629 sctl = ahci_pread(ap, AHCI_PREG_SCTL); 630 sctl &= ~(AHCI_PREG_SCTL_IPM); 631 sctl |= AHCI_PREG_SCTL_IPM_NOSLUMBER; 632 if (ap->ap_sc->sc_cap2 & AHCI_REG_CAP2_SDS) 633 sctl |= AHCI_PREG_SCTL_IPM_NODEVSLP; 634 ahci_pwrite(ap, AHCI_PREG_SCTL, sctl); 635 636 cmd = ahci_pread(ap, AHCI_PREG_CMD); 637 cmd &= ~AHCI_PREG_CMD_ASP; 638 cmd |= AHCI_PREG_CMD_ALPE; 639 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 640 641 } else if (link_pwr_mgmt == AHCI_LINK_PWR_MGMT_NONE) { 642 kprintf("%s: disabling link power management.\n", 643 PORTNAME(ap)); 644 645 /* Disable device initiated link power management */ 646 if (ap->ap_type != ATA_PORT_T_PM && 647 (ap->ap_ata[0]->at_identify.satafsup & 648 SATA_FEATURE_SUP_DEVIPS)) { 649 ahci_set_feature(ap, NULL, ATA_SATAFT_DEVIPS, 0); 650 } 651 652 cmd = ahci_pread(ap, AHCI_PREG_CMD); 653 cmd &= ~(AHCI_PREG_CMD_ALPE | AHCI_PREG_CMD_ASP); 654 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 655 656 sctl = ahci_pread(ap, AHCI_PREG_SCTL); 657 sctl &= ~(AHCI_PREG_SCTL_IPM); 658 sctl |= ap->ap_sc->sc_ipm_disable; 659 ahci_pwrite(ap, AHCI_PREG_SCTL, sctl); 660 661 /* let the drive come back to avoid PRCS interrupts later */ 662 ahci_os_unlock_port(ap); 663 ahci_os_sleep(1000); 664 ahci_os_lock_port(ap); 665 666 ahci_pwrite(ap, AHCI_PREG_SERR, 667 AHCI_PREG_SERR_DIAG_N | AHCI_PREG_SERR_DIAG_W); 668 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_PRCS); 669 670 ap->ap_intmask |= AHCI_PREG_IE_PRCE; 671 ahci_port_interrupt_enable(ap); 672 673 ap->link_pwr_mgmt = link_pwr_mgmt; 674 } else { 675 kprintf("%s: unsupported link power management state %d.\n", 676 PORTNAME(ap), link_pwr_mgmt); 677 } 678 679 ahci_os_unlock_port(ap); 680 } 681 682 /* 683 * Return current link power state. 684 */ 685 int 686 ahci_port_link_pwr_state(struct ahci_port *ap) 687 { 688 uint32_t r; 689 690 r = ahci_pread(ap, AHCI_PREG_SSTS); 691 switch (r & AHCI_PREG_SSTS_IPM) { 692 case AHCI_PREG_SSTS_IPM_ACTIVE: 693 return 1; 694 case AHCI_PREG_SSTS_IPM_PARTIAL: 695 return 2; 696 case AHCI_PREG_SSTS_IPM_SLUMBER: 697 return 3; 698 case AHCI_PREG_SSTS_IPM_DEVSLEEP: 699 return 4; 700 default: 701 return 0; 702 } 703 } 704 705 /* 706 * Run the port / target state machine from a main context. 707 * 708 * The state machine for the port is always run. 709 * 710 * If atx is non-NULL run the state machine for a particular target. 711 * If atx is NULL run the state machine for all targets. 712 */ 713 void 714 ahci_port_state_machine(struct ahci_port *ap, int initial) 715 { 716 struct ata_port *at; 717 u_int32_t data; 718 int target; 719 int didsleep; 720 int loop; 721 722 /* 723 * State machine for port. Note that CAM is not yet associated 724 * during the initial parallel probe and the port's probe state 725 * will not get past ATA_PROBE_NEED_IDENT. 726 */ 727 { 728 if (initial == 0 && ap->ap_probe <= ATA_PROBE_NEED_HARD_RESET) { 729 kprintf("%s: Waiting 10 seconds on insertion\n", 730 PORTNAME(ap)); 731 ahci_os_sleep(10000); 732 initial = 1; 733 } 734 if (ap->ap_probe == ATA_PROBE_NEED_INIT) 735 ahci_port_init(ap); 736 if (ap->ap_probe == ATA_PROBE_NEED_HARD_RESET) 737 ahci_port_reset(ap, NULL, 1); 738 if (ap->ap_probe == ATA_PROBE_NEED_SOFT_RESET) 739 ahci_port_reset(ap, NULL, 0); 740 if (ap->ap_probe == ATA_PROBE_NEED_IDENT) 741 ahci_cam_probe(ap, NULL); 742 } 743 if (ap->ap_type != ATA_PORT_T_PM) { 744 if (ap->ap_probe == ATA_PROBE_FAILED) { 745 ahci_cam_changed(ap, NULL, 0); 746 } else if (ap->ap_probe >= ATA_PROBE_NEED_IDENT) { 747 ahci_cam_changed(ap, NULL, 1); 748 } 749 return; 750 } 751 752 /* 753 * Port Multiplier state machine. 754 * 755 * Get a mask of changed targets and combine with any runnable 756 * states already present. 757 */ 758 for (loop = 0; ;++loop) { 759 if (ahci_pm_read(ap, 15, SATA_PMREG_EINFO, &data)) { 760 kprintf("%s: PM unable to read hot-plug bitmap\n", 761 PORTNAME(ap)); 762 break; 763 } 764 765 /* 766 * Do at least one loop, then stop if no more state changes 767 * have occured. The PM might not generate a new 768 * notification until we clear the entire bitmap. 769 */ 770 if (loop && data == 0) 771 break; 772 773 /* 774 * New devices showing up in the bitmap require some spin-up 775 * time before we start probing them. Reset didsleep. The 776 * first new device we detect will sleep before probing. 777 * 778 * This only applies to devices whos change bit is set in 779 * the data, and does not apply to the initial boot-time 780 * probe. 781 */ 782 didsleep = 0; 783 784 for (target = 0; target < ap->ap_pmcount; ++target) { 785 at = ap->ap_ata[target]; 786 787 /* 788 * Check the target state for targets behind the PM 789 * which have changed state. This will adjust 790 * at_probe and set ATA_PORT_F_RESCAN 791 * 792 * We want to wait at least 10 seconds before probing 793 * a newly inserted device. If the check status 794 * indicates a device is present and in need of a 795 * hard reset, we make sure we have slept before 796 * continuing. 797 * 798 * We also need to wait at least 1 second for the 799 * PHY state to change after insertion, if we 800 * haven't already waited the 10 seconds. 801 * 802 * NOTE: When pm_check_good finds a good port it 803 * typically starts us in probe state 804 * NEED_HARD_RESET rather than INIT. 805 */ 806 if (data & (1 << target)) { 807 if (initial == 0 && didsleep == 0) 808 ahci_os_sleep(1000); 809 ahci_pm_check_good(ap, target); 810 if (initial == 0 && didsleep == 0 && 811 at->at_probe <= ATA_PROBE_NEED_HARD_RESET 812 ) { 813 didsleep = 1; 814 kprintf("%s: Waiting 10 seconds on insertion\n", PORTNAME(ap)); 815 ahci_os_sleep(10000); 816 } 817 } 818 819 /* 820 * Report hot-plug events before the probe state 821 * really gets hot. Only actual events are reported 822 * here to reduce spew. 823 */ 824 if (data & (1 << target)) { 825 kprintf("%s: HOTPLUG (PM) - ", ATANAME(ap, at)); 826 switch(at->at_probe) { 827 case ATA_PROBE_NEED_INIT: 828 case ATA_PROBE_NEED_HARD_RESET: 829 kprintf("Device inserted\n"); 830 break; 831 case ATA_PROBE_FAILED: 832 kprintf("Device removed\n"); 833 break; 834 default: 835 kprintf("Device probe in progress\n"); 836 break; 837 } 838 } 839 840 /* 841 * Run through the state machine as necessary if 842 * the port is not marked failed. 843 * 844 * The state machine may stop at NEED_IDENT if 845 * CAM is not yet attached. 846 * 847 * Acquire exclusive access to the port while we 848 * are doing this. This prevents command-completion 849 * from queueing commands for non-polled targets 850 * inbetween our probe steps. We need to do this 851 * because the reset probes can generate severe PHY 852 * and protocol errors and soft-brick the port. 853 */ 854 if (at->at_probe != ATA_PROBE_FAILED && 855 at->at_probe != ATA_PROBE_GOOD) { 856 ahci_beg_exclusive_access(ap, at); 857 if (at->at_probe == ATA_PROBE_NEED_INIT) 858 ahci_pm_port_init(ap, at); 859 if (at->at_probe == ATA_PROBE_NEED_HARD_RESET) 860 ahci_port_reset(ap, at, 1); 861 if (at->at_probe == ATA_PROBE_NEED_SOFT_RESET) 862 ahci_port_reset(ap, at, 0); 863 if (at->at_probe == ATA_PROBE_NEED_IDENT) 864 ahci_cam_probe(ap, at); 865 ahci_end_exclusive_access(ap, at); 866 } 867 868 /* 869 * Add or remove from CAM 870 */ 871 if (at->at_features & ATA_PORT_F_RESCAN) { 872 at->at_features &= ~ATA_PORT_F_RESCAN; 873 if (at->at_probe == ATA_PROBE_FAILED) { 874 ahci_cam_changed(ap, at, 0); 875 } else if (at->at_probe >= ATA_PROBE_NEED_IDENT) { 876 ahci_cam_changed(ap, at, 1); 877 } 878 } 879 data &= ~(1 << target); 880 } 881 if (data) { 882 kprintf("%s: WARNING (PM): extra bits set in " 883 "EINFO: %08x\n", PORTNAME(ap), data); 884 while (target < AHCI_MAX_PMPORTS) { 885 ahci_pm_check_good(ap, target); 886 ++target; 887 } 888 } 889 } 890 } 891 892 893 /* 894 * De-initialize and detach a port. 895 */ 896 void 897 ahci_port_free(struct ahci_softc *sc, u_int port) 898 { 899 struct ahci_port *ap = sc->sc_ports[port]; 900 struct ahci_ccb *ccb; 901 int i; 902 903 /* 904 * Ensure port is disabled and its interrupts are all flushed. 905 */ 906 if (ap->ap_sc) { 907 ahci_port_stop(ap, 1); 908 ahci_os_stop_port(ap); 909 ahci_pwrite(ap, AHCI_PREG_CMD, 0); 910 ahci_pwrite(ap, AHCI_PREG_IE, 0); 911 ahci_pwrite(ap, AHCI_PREG_IS, ahci_pread(ap, AHCI_PREG_IS)); 912 ahci_write(sc, AHCI_REG_IS, 1 << port); 913 } 914 915 if (ap->ap_ccbs) { 916 while ((ccb = ahci_get_ccb(ap)) != NULL) { 917 if (ccb->ccb_dmamap) { 918 bus_dmamap_destroy(sc->sc_tag_data, 919 ccb->ccb_dmamap); 920 ccb->ccb_dmamap = NULL; 921 } 922 } 923 if ((ccb = ap->ap_err_ccb) != NULL) { 924 if (ccb->ccb_dmamap) { 925 bus_dmamap_destroy(sc->sc_tag_data, 926 ccb->ccb_dmamap); 927 ccb->ccb_dmamap = NULL; 928 } 929 ap->ap_err_ccb = NULL; 930 } 931 kfree(ap->ap_ccbs, M_DEVBUF); 932 ap->ap_ccbs = NULL; 933 } 934 935 if (ap->ap_dmamem_cmd_list) { 936 ahci_dmamem_free(sc, ap->ap_dmamem_cmd_list); 937 ap->ap_dmamem_cmd_list = NULL; 938 } 939 if (ap->ap_dmamem_rfis) { 940 ahci_dmamem_free(sc, ap->ap_dmamem_rfis); 941 ap->ap_dmamem_rfis = NULL; 942 } 943 if (ap->ap_dmamem_cmd_table) { 944 ahci_dmamem_free(sc, ap->ap_dmamem_cmd_table); 945 ap->ap_dmamem_cmd_table = NULL; 946 } 947 if (ap->ap_ata) { 948 for (i = 0; i < AHCI_MAX_PMPORTS; ++i) { 949 if (ap->ap_ata[i]) { 950 kfree(ap->ap_ata[i], M_DEVBUF); 951 ap->ap_ata[i] = NULL; 952 } 953 } 954 } 955 if (ap->ap_err_scratch) { 956 kfree(ap->ap_err_scratch, M_DEVBUF); 957 ap->ap_err_scratch = NULL; 958 } 959 960 /* bus_space(9) says we dont free the subregions handle */ 961 962 kfree(ap, M_DEVBUF); 963 sc->sc_ports[port] = NULL; 964 } 965 966 static 967 u_int32_t 968 ahci_pactive(struct ahci_port *ap) 969 { 970 u_int32_t mask; 971 972 mask = ahci_pread(ap, AHCI_PREG_CI); 973 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SNCQ) 974 mask |= ahci_pread(ap, AHCI_PREG_SACT); 975 return(mask); 976 } 977 978 /* 979 * Start high-level command processing on the port 980 */ 981 int 982 ahci_port_start(struct ahci_port *ap) 983 { 984 u_int32_t r, s, is, tfd; 985 986 /* 987 * FRE must be turned on before ST. Wait for FR to go active 988 * before turning on ST. The spec doesn't seem to think this 989 * is necessary but waiting here avoids an on-off race in the 990 * ahci_port_stop() code. 991 */ 992 r = ahci_pread(ap, AHCI_PREG_CMD); 993 if ((r & AHCI_PREG_CMD_FRE) == 0) { 994 r |= AHCI_PREG_CMD_FRE; 995 ahci_pwrite(ap, AHCI_PREG_CMD, r); 996 } 997 if ((ap->ap_sc->sc_flags & AHCI_F_IGN_FR) == 0) { 998 if (ahci_pwait_set(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_FR)) { 999 kprintf("%s: Cannot start FIS reception\n", 1000 PORTNAME(ap)); 1001 return (2); 1002 } 1003 } else { 1004 ahci_os_sleep(10); 1005 } 1006 1007 /* 1008 * Turn on ST, wait for CR to come up. 1009 */ 1010 r |= AHCI_PREG_CMD_ST; 1011 ahci_pwrite(ap, AHCI_PREG_CMD, r); 1012 1013 if ((ap->ap_sc->sc_flags & AHCI_F_IGN_CR) == 0 && 1014 ahci_pwait_set_to(ap, 2000, AHCI_PREG_CMD, AHCI_PREG_CMD_CR)) { 1015 s = ahci_pread(ap, AHCI_PREG_SERR); 1016 is = ahci_pread(ap, AHCI_PREG_IS); 1017 tfd = ahci_pread(ap, AHCI_PREG_TFD); 1018 kprintf("%s: Cannot start command DMA\n" 1019 "NCMP=%b NSERR=%b\n" 1020 "NEWIS=%b\n" 1021 "NEWTFD=%b\n", 1022 PORTNAME(ap), 1023 r, AHCI_PFMT_CMD, s, AHCI_PFMT_SERR, 1024 is, AHCI_PFMT_IS, 1025 tfd, AHCI_PFMT_TFD_STS); 1026 return (1); 1027 } 1028 1029 #ifdef AHCI_COALESCE 1030 /* 1031 * (Re-)enable coalescing on the port. 1032 */ 1033 if (ap->ap_sc->sc_ccc_ports & (1 << ap->ap_num)) { 1034 ap->ap_sc->sc_ccc_ports_cur |= (1 << ap->ap_num); 1035 ahci_write(ap->ap_sc, AHCI_REG_CCC_PORTS, 1036 ap->ap_sc->sc_ccc_ports_cur); 1037 } 1038 #endif 1039 1040 return (0); 1041 } 1042 1043 /* 1044 * Stop high-level command processing on a port 1045 * 1046 * WARNING! If the port is stopped while CR is still active our saved 1047 * CI/SACT will race any commands completed by the command 1048 * processor prior to being able to stop. Thus we never call 1049 * this function unless we intend to dispose of any remaining 1050 * active commands. In particular, this complicates the timeout 1051 * code. 1052 */ 1053 int 1054 ahci_port_stop(struct ahci_port *ap, int stop_fis_rx) 1055 { 1056 u_int32_t r; 1057 1058 #ifdef AHCI_COALESCE 1059 /* 1060 * Disable coalescing on the port while it is stopped. 1061 */ 1062 if (ap->ap_sc->sc_ccc_ports & (1 << ap->ap_num)) { 1063 ap->ap_sc->sc_ccc_ports_cur &= ~(1 << ap->ap_num); 1064 ahci_write(ap->ap_sc, AHCI_REG_CCC_PORTS, 1065 ap->ap_sc->sc_ccc_ports_cur); 1066 } 1067 #endif 1068 1069 /* 1070 * Turn off ST, then wait for CR to go off. 1071 */ 1072 r = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC; 1073 if (r & AHCI_PREG_CMD_ST) { 1074 r &= ~AHCI_PREG_CMD_ST; 1075 ahci_pwrite(ap, AHCI_PREG_CMD, r); 1076 } 1077 1078 if (ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_CR)) { 1079 kprintf("%s: Port bricked, unable to stop (ST)\n", 1080 PORTNAME(ap)); 1081 return (1); 1082 } 1083 1084 #if 0 1085 /* 1086 * Turn off FRE, then wait for FR to go off. FRE cannot 1087 * be turned off until CR transitions to 0. 1088 */ 1089 if ((r & AHCI_PREG_CMD_FR) == 0) { 1090 kprintf("%s: FR stopped, clear FRE for next start\n", 1091 PORTNAME(ap)); 1092 stop_fis_rx = 2; 1093 } 1094 #endif 1095 if (stop_fis_rx) { 1096 r &= ~AHCI_PREG_CMD_FRE; 1097 ahci_pwrite(ap, AHCI_PREG_CMD, r); 1098 if (ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_FR)) { 1099 kprintf("%s: Port bricked, unable to stop (FRE)\n", 1100 PORTNAME(ap)); 1101 return (2); 1102 } 1103 } 1104 return (0); 1105 } 1106 1107 /* 1108 * AHCI command list override -> forcibly clear TFD.STS.{BSY,DRQ} 1109 */ 1110 int 1111 ahci_port_clo(struct ahci_port *ap) 1112 { 1113 struct ahci_softc *sc = ap->ap_sc; 1114 u_int32_t cmd; 1115 1116 /* Only attempt CLO if supported by controller */ 1117 if ((sc->sc_cap & AHCI_REG_CAP_SCLO) == 0) 1118 return (1); 1119 1120 /* Issue CLO */ 1121 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC; 1122 ahci_pwrite(ap, AHCI_PREG_CMD, cmd | AHCI_PREG_CMD_CLO); 1123 1124 /* Wait for completion */ 1125 if (ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_CLO)) { 1126 kprintf("%s: CLO did not complete\n", PORTNAME(ap)); 1127 return (1); 1128 } 1129 1130 return (0); 1131 } 1132 1133 /* 1134 * Reset a port. 1135 * 1136 * If hard is 0 perform a softreset of the port. 1137 * If hard is 1 perform a hard reset of the port. 1138 * 1139 * If at is non-NULL an indirect port via a port-multiplier is being 1140 * reset, otherwise a direct port is being reset. 1141 * 1142 * NOTE: Indirect ports can only be soft-reset. 1143 */ 1144 int 1145 ahci_port_reset(struct ahci_port *ap, struct ata_port *at, int hard) 1146 { 1147 int rc; 1148 1149 if (hard) { 1150 if (at) 1151 rc = ahci_pm_hardreset(ap, at->at_target, hard); 1152 else 1153 rc = ahci_port_hardreset(ap, hard); 1154 } else { 1155 if (at) 1156 rc = ahci_pm_softreset(ap, at->at_target); 1157 else 1158 rc = ahci_port_softreset(ap); 1159 } 1160 return(rc); 1161 } 1162 1163 /* 1164 * AHCI soft reset, Section 10.4.1 1165 * 1166 * (at) will be NULL when soft-resetting a directly-attached device, and 1167 * non-NULL when soft-resetting a device through a port multiplier. 1168 * 1169 * This function keeps port communications intact and attempts to generate 1170 * a reset to the connected device using device commands. 1171 */ 1172 int 1173 ahci_port_softreset(struct ahci_port *ap) 1174 { 1175 struct ahci_ccb *ccb = NULL; 1176 struct ahci_cmd_hdr *cmd_slot; 1177 u_int8_t *fis; 1178 int error; 1179 1180 error = EIO; 1181 1182 if (bootverbose) { 1183 kprintf("%s: START SOFTRESET %b\n", PORTNAME(ap), 1184 ahci_pread(ap, AHCI_PREG_CMD), AHCI_PFMT_CMD); 1185 } 1186 1187 DPRINTF(AHCI_D_VERBOSE, "%s: soft reset\n", PORTNAME(ap)); 1188 1189 crit_enter(); 1190 ap->ap_flags |= AP_F_IN_RESET; 1191 ap->ap_state = AP_S_NORMAL; 1192 1193 /* 1194 * Remember port state in cmd (main to restore start/stop) 1195 * 1196 * Idle port. 1197 */ 1198 if (ahci_port_stop(ap, 0)) { 1199 kprintf("%s: failed to stop port, cannot softreset\n", 1200 PORTNAME(ap)); 1201 goto err; 1202 } 1203 1204 /* 1205 * Request CLO if device appears hung. 1206 */ 1207 if (ahci_pread(ap, AHCI_PREG_TFD) & 1208 (AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) { 1209 ahci_port_clo(ap); 1210 } 1211 1212 /* 1213 * This is an attempt to clear errors so a new signature will 1214 * be latched. It isn't working properly. XXX 1215 */ 1216 ahci_flush_tfd(ap); 1217 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 1218 1219 /* Restart port */ 1220 if (ahci_port_start(ap)) { 1221 kprintf("%s: failed to start port, cannot softreset\n", 1222 PORTNAME(ap)); 1223 goto err; 1224 } 1225 1226 /* Check whether CLO worked */ 1227 if (ahci_pwait_clr(ap, AHCI_PREG_TFD, 1228 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) { 1229 kprintf("%s: CLO %s, need port reset\n", 1230 PORTNAME(ap), 1231 (ahci_read(ap->ap_sc, AHCI_REG_CAP) & AHCI_REG_CAP_SCLO) 1232 ? "failed" : "unsupported"); 1233 error = EBUSY; 1234 goto err; 1235 } 1236 1237 /* 1238 * Prep first D2H command with SRST feature & clear busy/reset flags 1239 * 1240 * It is unclear which other fields in the FIS are used. Just zero 1241 * everything. 1242 * 1243 * NOTE! This CCB is used for both the first and second commands. 1244 * The second command must use CCB slot 1 to properly load 1245 * the signature. 1246 */ 1247 ccb = ahci_get_err_ccb(ap); 1248 ccb->ccb_xa.complete = ahci_dummy_done; 1249 ccb->ccb_xa.flags = ATA_F_POLL | ATA_F_EXCLUSIVE; 1250 KKASSERT(ccb->ccb_slot == 1); 1251 ccb->ccb_xa.at = NULL; 1252 cmd_slot = ccb->ccb_cmd_hdr; 1253 1254 fis = ccb->ccb_cmd_table->cfis; 1255 bzero(fis, sizeof(ccb->ccb_cmd_table->cfis)); 1256 fis[0] = ATA_FIS_TYPE_H2D; 1257 fis[15] = ATA_FIS_CONTROL_SRST|ATA_FIS_CONTROL_4BIT; 1258 1259 cmd_slot->prdtl = 0; 1260 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */ 1261 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_C); /* Clear busy on OK */ 1262 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_R); /* Reset */ 1263 1264 ccb->ccb_xa.state = ATA_S_PENDING; 1265 1266 if (ahci_poll(ccb, 1000, ahci_quick_timeout) != ATA_S_COMPLETE) { 1267 kprintf("%s: First FIS failed\n", PORTNAME(ap)); 1268 goto err; 1269 } 1270 1271 /* 1272 * WARNING! TIME SENSITIVE SPACE! WARNING! 1273 * 1274 * The two FISes are supposed to be back to back. Don't issue other 1275 * commands or even delay if we can help it. 1276 */ 1277 1278 /* 1279 * Prep second D2H command to read status and complete reset sequence 1280 * AHCI 10.4.1 and "Serial ATA Revision 2.6". I can't find the ATA 1281 * Rev 2.6 and it is unclear how the second FIS should be set up 1282 * from the AHCI document. 1283 * 1284 * It is unclear which other fields in the FIS are used. Just zero 1285 * everything. 1286 */ 1287 ccb->ccb_xa.flags = ATA_F_POLL | ATA_F_AUTOSENSE | ATA_F_EXCLUSIVE; 1288 1289 bzero(fis, sizeof(ccb->ccb_cmd_table->cfis)); 1290 fis[0] = ATA_FIS_TYPE_H2D; 1291 fis[15] = ATA_FIS_CONTROL_4BIT; 1292 1293 cmd_slot->prdtl = 0; 1294 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */ 1295 1296 ccb->ccb_xa.state = ATA_S_PENDING; 1297 if (ahci_poll(ccb, 1000, ahci_quick_timeout) != ATA_S_COMPLETE) { 1298 kprintf("%s: Second FIS failed\n", PORTNAME(ap)); 1299 goto err; 1300 } 1301 1302 if (ahci_pwait_clr(ap, AHCI_PREG_TFD, 1303 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) { 1304 kprintf("%s: device didn't come ready after reset, TFD: 0x%b\n", 1305 PORTNAME(ap), 1306 ahci_pread(ap, AHCI_PREG_TFD), AHCI_PFMT_TFD_STS); 1307 error = EBUSY; 1308 goto err; 1309 } 1310 1311 /* 1312 * If the softreset is trying to clear a BSY condition after a 1313 * normal portreset we assign the port type. 1314 * 1315 * If the softreset is being run first as part of the ccb error 1316 * processing code then report if the device signature changed 1317 * unexpectedly. 1318 */ 1319 ahci_os_sleep(100); 1320 if (ap->ap_type == ATA_PORT_T_NONE) { 1321 ap->ap_type = ahci_port_signature_detect(ap, NULL); 1322 } else { 1323 if (ahci_port_signature_detect(ap, NULL) != ap->ap_type) { 1324 kprintf("%s: device signature unexpectedly " 1325 "changed\n", PORTNAME(ap)); 1326 error = EBUSY; /* XXX */ 1327 } 1328 } 1329 error = 0; 1330 1331 ahci_os_sleep(3); 1332 err: 1333 if (ccb != NULL) { 1334 ahci_put_err_ccb(ccb); 1335 1336 /* 1337 * If the target is busy use CLO to clear the busy 1338 * condition. The BSY should be cleared on the next 1339 * start. 1340 */ 1341 if (ahci_pread(ap, AHCI_PREG_TFD) & 1342 (AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) { 1343 ahci_port_clo(ap); 1344 } 1345 } 1346 1347 /* 1348 * If we failed to softreset make the port quiescent, otherwise 1349 * make sure the port's start/stop state matches what it was on 1350 * entry. 1351 * 1352 * Don't kill the port if the softreset is on a port multiplier 1353 * target, that would kill all the targets! 1354 */ 1355 if (error) { 1356 ahci_port_hardstop(ap); 1357 /* ap_probe set to failed */ 1358 } else { 1359 ap->ap_probe = ATA_PROBE_NEED_IDENT; 1360 ap->ap_pmcount = 1; 1361 ahci_port_start(ap); 1362 } 1363 ap->ap_flags &= ~AP_F_IN_RESET; 1364 crit_exit(); 1365 1366 if (bootverbose) 1367 kprintf("%s: END SOFTRESET\n", PORTNAME(ap)); 1368 1369 return (error); 1370 } 1371 1372 /* 1373 * Issue just do the core COMRESET and basic device detection on a port. 1374 * 1375 * NOTE: Only called by ahci_port_hardreset(). 1376 */ 1377 int 1378 ahci_comreset(struct ahci_port *ap, int *pmdetectp) 1379 { 1380 u_int32_t cmd; 1381 u_int32_t r; 1382 int error; 1383 int loop; 1384 int retries = 0; 1385 1386 /* 1387 * Idle the port. We must cycle FRE for certain chips that silently 1388 * clear FR on disconnect. Normally we do not want to cycle FRE 1389 * because other chipsets might react badly to that. 1390 */ 1391 *pmdetectp = 0; 1392 if (ap->ap_sc->sc_flags & AHCI_F_CYCLE_FR) 1393 ahci_port_stop(ap, 1); 1394 else 1395 ahci_port_stop(ap, 0); 1396 ap->ap_state = AP_S_NORMAL; 1397 ahci_os_sleep(10); 1398 1399 /* 1400 * FIS-based switching must be turned off when doing a hardware 1401 * reset, and will be turned on again during the PM probe. 1402 */ 1403 if (ap->ap_flags & AP_F_FBSS_ENABLED) { 1404 ap->ap_flags &= ~AP_F_FBSS_ENABLED; 1405 cmd = ahci_pread(ap, AHCI_PREG_FBS); 1406 cmd &= ~AHCI_PREG_FBS_EN; 1407 cmd |= AHCI_PREG_FBS_DEC; 1408 ahci_pwrite(ap, AHCI_PREG_FBS, cmd); 1409 } 1410 1411 /* 1412 * The port may have been quiescent with its SUD bit cleared, so 1413 * set the SUD (spin up device). Also POD (Power up device), 1414 * and issue an ICC_ACTIVE request to bring up communications. 1415 * 1416 * NOTE: I do not know if SUD is a hardware pin/low-level signal 1417 * or if it is messaged. 1418 */ 1419 r = ap->ap_sc->sc_ipm_disable; 1420 ahci_pwrite(ap, AHCI_PREG_SCTL, r); 1421 1422 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC; 1423 cmd |= AHCI_PREG_CMD_SUD | AHCI_PREG_CMD_POD; 1424 cmd |= AHCI_PREG_CMD_ICC_ACTIVE; 1425 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 1426 ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_ICC); 1427 1428 /* 1429 * Some parts need FIS reception enabled to be able to COMINIT at 1430 * all, so we can't delay FRE until port-start. Even though that 1431 * isn't what the spec says. 1432 * 1433 * This is typically the first enablement of FRE, but in most cases 1434 * we never turn it off making this a NOP for later calls. 1435 */ 1436 cmd |= AHCI_PREG_CMD_FRE; 1437 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 1438 if ((ap->ap_sc->sc_flags & AHCI_F_IGN_FR) == 0) 1439 ahci_pwait_set(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_FR); 1440 1441 /* 1442 * Make sure that all power management is disabled. 1443 * 1444 * NOTE! AHCI_PREG_SCTL_DET_DISABLE seems to be highly unreliable 1445 * on multiple chipsets and can brick the chipset or even 1446 * the whole PC. Never use it. 1447 */ 1448 ap->ap_type = ATA_PORT_T_NONE; 1449 1450 retry: 1451 /* 1452 * Give the new power management state time to settle, then clear 1453 * pending status. 1454 */ 1455 ahci_os_sleep(1000); 1456 ahci_flush_tfd(ap); 1457 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 1458 1459 /* 1460 * Start transmitting COMRESET. The spec says that COMRESET must 1461 * be sent for at least 1ms but in actual fact numerous devices 1462 * appear to take much longer. Delay a whole second here. 1463 * 1464 * In addition, SATA-3 ports can take longer to train, so even 1465 * SATA-2 devices which would normally detect very quickly may 1466 * take longer when plugged into a SATA-3 port. 1467 */ 1468 r |= AHCI_PREG_SCTL_DET_INIT; 1469 1470 switch(AhciForceGen) { 1471 case 0: 1472 r |= AHCI_PREG_SCTL_SPD_ANY; 1473 break; 1474 case 1: 1475 r |= AHCI_PREG_SCTL_SPD_GEN1; 1476 break; 1477 case 2: 1478 r |= AHCI_PREG_SCTL_SPD_GEN2; 1479 break; 1480 case 3: 1481 r |= AHCI_PREG_SCTL_SPD_GEN3; 1482 break; 1483 default: 1484 r |= AHCI_PREG_SCTL_SPD_GEN3; 1485 break; 1486 } 1487 ahci_pwrite(ap, AHCI_PREG_SCTL, r); 1488 ahci_os_sleep(1000); 1489 1490 ap->ap_flags &= ~AP_F_HARSH_REINIT; 1491 1492 /* 1493 * Only SERR_DIAG_X needs to be cleared for TFD updates, but 1494 * since we are hard-resetting the port we might as well clear 1495 * the whole enchillada. Also be sure to clear any spurious BSY 1496 * prior to clearing INIT. 1497 * 1498 * Wait 1 whole second after clearing INIT before checking 1499 * the device detection bits in an attempt to work around chipsets 1500 * which do not properly mask PCS/PRCS during low level init. 1501 */ 1502 ahci_flush_tfd(ap); 1503 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 1504 /* ahci_port_clo(ap);*/ 1505 ahci_os_sleep(10); 1506 1507 r &= ~AHCI_PREG_SCTL_SPD; 1508 r &= ~AHCI_PREG_SCTL_DET_INIT; 1509 r |= AHCI_PREG_SCTL_DET_NONE; 1510 ahci_pwrite(ap, AHCI_PREG_SCTL, r); 1511 ahci_os_sleep(1000); 1512 1513 /* 1514 * Try to determine if there is a device on the port. This operation 1515 * typically runs in parallel on all ports belonging to an AHCI 1516 * controller. 1517 * 1518 * 3/10 of a second (loop = 300) is plenty for directly attached 1519 * devices, but not enough for some port multipliers, particularly 1520 * if powered-on cold. Since this operation runs in parallel, 1521 * give us 2 seconds to detect. 1522 * 1523 * NOTE: The 10-second hot-swap delay prior to the COMRESET is not 1524 * sufficient, since the first COMRESET after a cold power-on 1525 * of a port-multiplier can take extra time. 1526 * 1527 * If we fail clear PRCS (phy detect) since we may cycled 1528 * the phy and probably caused another PRCS interrupt. 1529 */ 1530 loop = 2000; 1531 while (loop > 0) { 1532 r = ahci_pread(ap, AHCI_PREG_SSTS); 1533 if (r & AHCI_PREG_SSTS_DET) 1534 break; 1535 loop -= ahci_os_softsleep(); 1536 } 1537 if (loop == 0) { 1538 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_PRCS); 1539 if (bootverbose) { 1540 kprintf("%s: Port appears to be unplugged\n", 1541 PORTNAME(ap)); 1542 } 1543 error = ENODEV; 1544 goto done; 1545 } 1546 1547 /* 1548 * There is something on the port. Regardless of what happens 1549 * after this tell the caller to try to detect a port multiplier. 1550 * 1551 * Give the device 3 seconds to fully negotiate. 1552 */ 1553 *pmdetectp = 1; 1554 1555 if (ahci_pwait_eq(ap, 3000, AHCI_PREG_SSTS, 1556 AHCI_PREG_SSTS_DET, AHCI_PREG_SSTS_DET_DEV)) { 1557 if (bootverbose) { 1558 kprintf("%s: Device may be powered down\n", 1559 PORTNAME(ap)); 1560 } 1561 error = ENODEV; 1562 goto done; 1563 } 1564 1565 /* 1566 * We got something that definitely looks like a device. Give 1567 * the device time to send us its first D2H FIS. Waiting for 1568 * BSY to clear accomplishes this. 1569 * 1570 * The target device might be hung in a BSY state depending on 1571 * the order things are power cycled. We want to retry the COMRESET 1572 * at least once if we find the device BSY for reliable operation. 1573 * 1574 * NOTE: A port multiplier may or may not clear BSY here, 1575 * particularly if it was previously configured and now 1576 * its cable has been unplugged and plugged back in, 1577 * and also depending on what is sitting in target 0 behind it. 1578 * 1579 * NOTE: Intel SSDs seem to have compatibility problems with Intel 1580 * mobo's on cold boots and may leave BSY set. A single 1581 * retry works around the problem. This is definitely a bug 1582 * with the mobo and/or the SSD and does not appear to occur 1583 * with other devices connected to the same port. 1584 */ 1585 ahci_flush_tfd(ap); 1586 if (ahci_pwait_clr_to(ap, 8000, AHCI_PREG_TFD, 1587 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) { 1588 kprintf("%s: Device BUSY: %b\n", 1589 PORTNAME(ap), 1590 ahci_pread(ap, AHCI_PREG_TFD), 1591 AHCI_PFMT_TFD_STS); 1592 if (retries == 0) { 1593 kprintf("%s: Retrying\n", PORTNAME(ap)); 1594 retries = 1; 1595 goto retry; 1596 } 1597 error = EBUSY; 1598 } else { 1599 if (retries) 1600 kprintf("%s: Device Unbusied after retry\n", 1601 PORTNAME(ap)); 1602 error = 0; 1603 } 1604 1605 done: 1606 ahci_flush_tfd(ap); 1607 return error; 1608 } 1609 1610 1611 /* 1612 * AHCI port reset, Section 10.4.2 1613 * 1614 * This function does a hard reset of the port. Note that the device 1615 * connected to the port could still end-up hung. 1616 */ 1617 int 1618 ahci_port_hardreset(struct ahci_port *ap, int hard) 1619 { 1620 u_int32_t data; 1621 int error; 1622 int pmdetect; 1623 1624 if (bootverbose) 1625 kprintf("%s: START HARDRESET\n", PORTNAME(ap)); 1626 ap->ap_flags |= AP_F_IN_RESET; 1627 1628 error = ahci_comreset(ap, &pmdetect); 1629 1630 /* 1631 * We may be asked to perform a port multiplier check even if the 1632 * comreset failed. This typically occurs when the PM has nothing 1633 * in slot 0, which can cause BSY to remain set. 1634 * 1635 * If the PM detection is successful it will override (error), 1636 * otherwise (error) is retained. If an error does occur it 1637 * is possible that a normal device has blown up on us DUE to 1638 * the PM detection code, so re-run the comreset and assume 1639 * a normal device. 1640 */ 1641 if (pmdetect) { 1642 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SPM) { 1643 error = ahci_pm_port_probe(ap, error); 1644 if (error) { 1645 error = ahci_comreset(ap, &pmdetect); 1646 } 1647 } 1648 } 1649 1650 /* 1651 * Finish up. 1652 */ 1653 ahci_os_sleep(500); 1654 1655 switch(error) { 1656 case 0: 1657 /* 1658 * All good, make sure the port is running and set the 1659 * probe state. Ignore the signature junk (it's unreliable) 1660 * until we get to the softreset code. 1661 */ 1662 if (ahci_port_start(ap)) { 1663 kprintf("%s: failed to start command DMA on port, " 1664 "disabling\n", PORTNAME(ap)); 1665 error = EBUSY; 1666 break; 1667 } 1668 if (ap->ap_type == ATA_PORT_T_PM) 1669 ap->ap_probe = ATA_PROBE_GOOD; 1670 else 1671 ap->ap_probe = ATA_PROBE_NEED_SOFT_RESET; 1672 break; 1673 case ENODEV: 1674 /* 1675 * Normal device probe failure 1676 */ 1677 data = ahci_pread(ap, AHCI_PREG_SSTS); 1678 1679 switch(data & AHCI_PREG_SSTS_DET) { 1680 case AHCI_PREG_SSTS_DET_DEV_NE: 1681 kprintf("%s: Device not communicating\n", 1682 PORTNAME(ap)); 1683 break; 1684 case AHCI_PREG_SSTS_DET_PHYOFFLINE: 1685 kprintf("%s: PHY offline\n", 1686 PORTNAME(ap)); 1687 break; 1688 default: 1689 kprintf("%s: No device detected\n", 1690 PORTNAME(ap)); 1691 break; 1692 } 1693 ahci_port_hardstop(ap); 1694 break; 1695 default: 1696 /* 1697 * Abnormal probe (EBUSY) 1698 */ 1699 kprintf("%s: Device on port is bricked\n", 1700 PORTNAME(ap)); 1701 ahci_port_hardstop(ap); 1702 #if 0 1703 rc = ahci_port_reset(ap, atx, 0); 1704 if (rc) { 1705 kprintf("%s: Unable unbrick device\n", 1706 PORTNAME(ap)); 1707 } else { 1708 kprintf("%s: Successfully unbricked\n", 1709 PORTNAME(ap)); 1710 } 1711 #endif 1712 break; 1713 } 1714 1715 /* 1716 * Clean up 1717 */ 1718 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 1719 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS); 1720 1721 ap->ap_flags &= ~AP_F_IN_RESET; 1722 1723 if (bootverbose) 1724 kprintf("%s: END HARDRESET %d\n", PORTNAME(ap), error); 1725 return (error); 1726 } 1727 1728 /* 1729 * Hard-stop on hot-swap device removal. See 10.10.1 1730 * 1731 * Place the port in a mode that will allow it to detect hot-swap insertions. 1732 * This is a bit imprecise because just setting-up SCTL to DET_INIT doesn't 1733 * seem to do the job. 1734 * 1735 * FIS reception is left enabled but command processing is disabled. 1736 * Cycling FIS reception (FRE) can brick ports. 1737 */ 1738 void 1739 ahci_port_hardstop(struct ahci_port *ap) 1740 { 1741 struct ahci_ccb *ccb; 1742 struct ata_port *at; 1743 u_int32_t r; 1744 u_int32_t cmd; 1745 int slot; 1746 int i; 1747 int serial; 1748 1749 /* 1750 * Stop the port. We can't modify things like SUD if the port 1751 * is running. 1752 */ 1753 ap->ap_state = AP_S_FATAL_ERROR; 1754 ap->ap_probe = ATA_PROBE_FAILED; 1755 ap->ap_type = ATA_PORT_T_NONE; 1756 ahci_port_stop(ap, 0); 1757 cmd = ahci_pread(ap, AHCI_PREG_CMD); 1758 cmd &= ~(AHCI_PREG_CMD_CLO | AHCI_PREG_CMD_PMA | AHCI_PREG_CMD_ICC); 1759 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 1760 1761 /* 1762 * Clean up AT sub-ports on SATA port. 1763 */ 1764 for (i = 0; ap->ap_ata && i < AHCI_MAX_PMPORTS; ++i) { 1765 at = ap->ap_ata[i]; 1766 at->at_type = ATA_PORT_T_NONE; 1767 at->at_probe = ATA_PROBE_FAILED; 1768 } 1769 1770 /* 1771 * 10.10.1 place us in the Listen state. 1772 * 1773 * 10.10.3 DET must be set to 0 and found to be 0 before 1774 * setting SUD to 0. 1775 * 1776 * Deactivating SUD only applies if the controller supports SUD, it 1777 * is a bit unclear what happens w/regards to detecting hotplug 1778 * if it doesn't. 1779 * 1780 * NOTE: AHCI_PREG_SCTL_SPM_* bits are not implemented by the spec 1781 * and must be zero. 1782 */ 1783 r = ap->ap_sc->sc_ipm_disable; 1784 ahci_pwrite(ap, AHCI_PREG_SCTL, r); 1785 ahci_os_sleep(10); 1786 1787 cmd = ahci_pread(ap, AHCI_PREG_CMD); 1788 cmd &= ~AHCI_PREG_CMD_SUD; 1789 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 1790 ahci_os_sleep(10); 1791 1792 /* 1793 * 10.10.1 1794 * 1795 * Transition su to the spin-up state. HBA shall send COMRESET and 1796 * begin initialization sequence (whatever that means). Presumably 1797 * this is edge-triggered. Following the spin-up state the HBA 1798 * will automatically transition to the Normal state. 1799 * 1800 * This only applies if the controller supports SUD. 1801 * NEVER use AHCI_PREG_DET_DISABLE. 1802 */ 1803 cmd |= AHCI_PREG_CMD_POD | 1804 AHCI_PREG_CMD_SUD | 1805 AHCI_PREG_CMD_ICC_ACTIVE; 1806 ahci_pwrite(ap, AHCI_PREG_CMD, cmd); 1807 ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_ICC); 1808 1809 /* 1810 * Flush SERR_DIAG_X so the TFD can update. 1811 */ 1812 ahci_flush_tfd(ap); 1813 1814 /* 1815 * Clean out pending ccbs 1816 */ 1817 restart: 1818 while (ap->ap_active) { 1819 slot = ffs(ap->ap_active) - 1; 1820 ap->ap_active &= ~(1 << slot); 1821 --ap->ap_active_cnt; 1822 ccb = &ap->ap_ccbs[slot]; 1823 if (ccb->ccb_xa.flags & ATA_F_TIMEOUT_RUNNING) { 1824 serial = ccb->ccb_xa.serial; 1825 callout_stop_sync(&ccb->ccb_timeout); 1826 if (serial != ccb->ccb_xa.serial) { 1827 kprintf("%s: Warning: timeout race ccb %p\n", 1828 PORTNAME(ap), ccb); 1829 goto restart; 1830 } 1831 ccb->ccb_xa.flags &= ~ATA_F_TIMEOUT_RUNNING; 1832 } 1833 ap->ap_expired &= ~(1 << slot); 1834 ccb->ccb_xa.flags &= ~(ATA_F_TIMEOUT_DESIRED | 1835 ATA_F_TIMEOUT_EXPIRED); 1836 ccb->ccb_xa.state = ATA_S_TIMEOUT; 1837 ccb->ccb_done(ccb); 1838 ccb->ccb_xa.complete(&ccb->ccb_xa); 1839 } 1840 while (ap->ap_sactive) { 1841 slot = ffs(ap->ap_sactive) - 1; 1842 ap->ap_sactive &= ~(1 << slot); 1843 ccb = &ap->ap_ccbs[slot]; 1844 if (ccb->ccb_xa.flags & ATA_F_TIMEOUT_RUNNING) { 1845 serial = ccb->ccb_xa.serial; 1846 callout_stop_sync(&ccb->ccb_timeout); 1847 if (serial != ccb->ccb_xa.serial) { 1848 kprintf("%s: Warning: timeout race ccb %p\n", 1849 PORTNAME(ap), ccb); 1850 goto restart; 1851 } 1852 ccb->ccb_xa.flags &= ~ATA_F_TIMEOUT_RUNNING; 1853 } 1854 ap->ap_expired &= ~(1 << slot); 1855 ccb->ccb_xa.flags &= ~(ATA_F_TIMEOUT_DESIRED | 1856 ATA_F_TIMEOUT_EXPIRED); 1857 ccb->ccb_xa.state = ATA_S_TIMEOUT; 1858 ccb->ccb_done(ccb); 1859 ccb->ccb_xa.complete(&ccb->ccb_xa); 1860 } 1861 KKASSERT(ap->ap_active_cnt == 0); 1862 1863 while ((ccb = TAILQ_FIRST(&ap->ap_ccb_pending)) != NULL) { 1864 TAILQ_REMOVE(&ap->ap_ccb_pending, ccb, ccb_entry); 1865 ccb->ccb_xa.state = ATA_S_TIMEOUT; 1866 ccb->ccb_xa.flags &= ~ATA_F_TIMEOUT_DESIRED; 1867 ccb->ccb_done(ccb); 1868 ccb->ccb_xa.complete(&ccb->ccb_xa); 1869 } 1870 1871 /* 1872 * Hot-plug device detection should work at this point. e.g. on 1873 * AMD chipsets Spin-Up/Normal state is sufficient for hot-plug 1874 * detection and entering RESET (continuous COMRESET by setting INIT) 1875 * will actually prevent hot-plug detection from working properly. 1876 * 1877 * There may be cases where this will fail to work, I have some 1878 * additional code to place the HBA in RESET (send continuous 1879 * COMRESET) and hopefully get DIAG.X or other events when something 1880 * is plugged in. Unfortunately this isn't universal and can 1881 * also prevent events from generating interrupts. 1882 */ 1883 1884 #if 0 1885 /* 1886 * Transition us to the Reset state. Theoretically we send a 1887 * continuous stream of COMRESETs in this state. 1888 */ 1889 r |= AHCI_PREG_SCTL_DET_INIT; 1890 if (AhciForceGen1 & (1 << ap->ap_num)) { 1891 kprintf("%s: Force 1.5Gbits\n", PORTNAME(ap)); 1892 r |= AHCI_PREG_SCTL_SPD_GEN1; 1893 } else { 1894 r |= AHCI_PREG_SCTL_SPD_ANY; 1895 } 1896 ahci_pwrite(ap, AHCI_PREG_SCTL, r); 1897 ahci_os_sleep(10); 1898 1899 /* 1900 * Flush SERR_DIAG_X so the TFD can update. 1901 */ 1902 ahci_flush_tfd(ap); 1903 #endif 1904 /* NOP */ 1905 } 1906 1907 /* 1908 * We can't loop on the X bit, a continuous COMINIT received will make 1909 * it loop forever. Just assume one event has built up and clear X 1910 * so the task file descriptor can update. 1911 */ 1912 void 1913 ahci_flush_tfd(struct ahci_port *ap) 1914 { 1915 u_int32_t r; 1916 1917 r = ahci_pread(ap, AHCI_PREG_SERR); 1918 if (r & AHCI_PREG_SERR_DIAG_X) 1919 ahci_pwrite(ap, AHCI_PREG_SERR, AHCI_PREG_SERR_DIAG_X); 1920 } 1921 1922 /* 1923 * Figure out what type of device is connected to the port, ATAPI or 1924 * DISK. 1925 */ 1926 int 1927 ahci_port_signature_detect(struct ahci_port *ap, struct ata_port *at) 1928 { 1929 u_int32_t sig; 1930 1931 sig = ahci_pread(ap, AHCI_PREG_SIG); 1932 if (bootverbose) 1933 kprintf("%s: SIG %08x\n", ATANAME(ap, at), sig); 1934 if ((sig & 0xffff0000) == (SATA_SIGNATURE_ATAPI & 0xffff0000)) { 1935 return(ATA_PORT_T_ATAPI); 1936 } else if ((sig & 0xffff0000) == 1937 (SATA_SIGNATURE_PORT_MULTIPLIER & 0xffff0000)) { 1938 return(ATA_PORT_T_PM); 1939 } else { 1940 return(ATA_PORT_T_DISK); 1941 } 1942 } 1943 1944 /* 1945 * Load the DMA descriptor table for a CCB's buffer. 1946 */ 1947 int 1948 ahci_load_prdt(struct ahci_ccb *ccb) 1949 { 1950 struct ahci_port *ap = ccb->ccb_port; 1951 struct ahci_softc *sc = ap->ap_sc; 1952 struct ata_xfer *xa = &ccb->ccb_xa; 1953 struct ahci_prdt *prdt = ccb->ccb_cmd_table->prdt; 1954 bus_dmamap_t dmap = ccb->ccb_dmamap; 1955 struct ahci_cmd_hdr *cmd_slot = ccb->ccb_cmd_hdr; 1956 int error; 1957 1958 if (xa->datalen == 0) { 1959 ccb->ccb_cmd_hdr->prdtl = 0; 1960 return (0); 1961 } 1962 1963 error = bus_dmamap_load(sc->sc_tag_data, dmap, 1964 xa->data, xa->datalen, 1965 ahci_load_prdt_callback, 1966 &prdt, 1967 ((xa->flags & ATA_F_NOWAIT) ? 1968 BUS_DMA_NOWAIT : BUS_DMA_WAITOK)); 1969 if (error != 0) { 1970 kprintf("%s: error %d loading dmamap\n", PORTNAME(ap), error); 1971 return (1); 1972 } 1973 #if 0 1974 if (xa->flags & ATA_F_PIO) 1975 prdt->flags |= htole32(AHCI_PRDT_FLAG_INTR); 1976 #endif 1977 1978 cmd_slot->prdtl = htole16(prdt - ccb->ccb_cmd_table->prdt + 1); 1979 1980 if (xa->flags & ATA_F_READ) 1981 bus_dmamap_sync(sc->sc_tag_data, dmap, BUS_DMASYNC_PREREAD); 1982 if (xa->flags & ATA_F_WRITE) 1983 bus_dmamap_sync(sc->sc_tag_data, dmap, BUS_DMASYNC_PREWRITE); 1984 1985 return (0); 1986 } 1987 1988 /* 1989 * Callback from BUSDMA system to load the segment list. The passed segment 1990 * list is a temporary structure. 1991 */ 1992 static 1993 void 1994 ahci_load_prdt_callback(void *info, bus_dma_segment_t *segs, int nsegs, 1995 int error) 1996 { 1997 struct ahci_prdt *prd = *(void **)info; 1998 u_int64_t addr; 1999 2000 KKASSERT(nsegs <= AHCI_MAX_PRDT); 2001 2002 while (nsegs) { 2003 addr = segs->ds_addr; 2004 prd->dba_hi = htole32((u_int32_t)(addr >> 32)); 2005 prd->dba_lo = htole32((u_int32_t)addr); 2006 prd->flags = htole32(segs->ds_len - 1); 2007 --nsegs; 2008 if (nsegs) 2009 ++prd; 2010 ++segs; 2011 } 2012 *(void **)info = prd; /* return last valid segment */ 2013 } 2014 2015 void 2016 ahci_unload_prdt(struct ahci_ccb *ccb) 2017 { 2018 struct ahci_port *ap = ccb->ccb_port; 2019 struct ahci_softc *sc = ap->ap_sc; 2020 struct ata_xfer *xa = &ccb->ccb_xa; 2021 bus_dmamap_t dmap = ccb->ccb_dmamap; 2022 2023 if (xa->datalen != 0) { 2024 if (xa->flags & ATA_F_READ) { 2025 bus_dmamap_sync(sc->sc_tag_data, dmap, 2026 BUS_DMASYNC_POSTREAD); 2027 } 2028 if (xa->flags & ATA_F_WRITE) { 2029 bus_dmamap_sync(sc->sc_tag_data, dmap, 2030 BUS_DMASYNC_POSTWRITE); 2031 } 2032 bus_dmamap_unload(sc->sc_tag_data, dmap); 2033 2034 /* 2035 * prdbc is only updated by hardware for non-NCQ commands. 2036 */ 2037 if (ccb->ccb_xa.flags & ATA_F_NCQ) { 2038 xa->resid = 0; 2039 } else { 2040 if (ccb->ccb_cmd_hdr->prdbc == 0 && 2041 ccb->ccb_xa.state == ATA_S_COMPLETE) { 2042 kprintf("%s: WARNING! Unload prdbc resid " 2043 "was zero! tag=%d\n", 2044 ATANAME(ap, xa->at), ccb->ccb_slot); 2045 } 2046 xa->resid = xa->datalen - 2047 le32toh(ccb->ccb_cmd_hdr->prdbc); 2048 } 2049 } 2050 } 2051 2052 /* 2053 * Start a command and poll for completion. 2054 * 2055 * timeout is in ms and only counts once the command gets on-chip. 2056 * 2057 * Returns ATA_S_* state, compare against ATA_S_COMPLETE to determine 2058 * that no error occured. 2059 * 2060 * NOTE: If the caller specifies a NULL timeout function the caller is 2061 * responsible for clearing hardware state on failure, but we will 2062 * deal with removing the ccb from any pending queue. 2063 * 2064 * NOTE: NCQ should never be used with this function. 2065 * 2066 * NOTE: If the port is in a failed state and stopped we do not try 2067 * to activate the ccb. 2068 */ 2069 int 2070 ahci_poll(struct ahci_ccb *ccb, int timeout, 2071 void (*timeout_fn)(struct ahci_ccb *)) 2072 { 2073 struct ahci_port *ap = ccb->ccb_port; 2074 2075 if (ccb->ccb_port->ap_state == AP_S_FATAL_ERROR) { 2076 ccb->ccb_xa.state = ATA_S_ERROR; 2077 return(ccb->ccb_xa.state); 2078 } 2079 crit_enter(); 2080 #if 0 2081 kprintf("%s: Start command %02x tag=%d\n", 2082 ATANAME(ccb->ccb_port, ccb->ccb_xa.at), 2083 ccb->ccb_xa.fis->command, ccb->ccb_slot); 2084 #endif 2085 ahci_start(ccb); 2086 2087 do { 2088 ahci_port_intr(ap, 1); 2089 switch(ccb->ccb_xa.state) { 2090 case ATA_S_ONCHIP: 2091 timeout -= ahci_os_softsleep(); 2092 break; 2093 case ATA_S_PENDING: 2094 timeout -= ahci_os_softsleep(); 2095 ahci_check_active_timeouts(ap); 2096 break; 2097 default: 2098 crit_exit(); 2099 return (ccb->ccb_xa.state); 2100 } 2101 } while (timeout > 0); 2102 2103 if ((ccb->ccb_xa.flags & ATA_F_SILENT) == 0) { 2104 kprintf("%s: Poll timeout slot %d CMD: %b TFD: 0x%b SERR: %b\n", 2105 ATANAME(ap, ccb->ccb_xa.at), ccb->ccb_slot, 2106 ahci_pread(ap, AHCI_PREG_CMD), AHCI_PFMT_CMD, 2107 ahci_pread(ap, AHCI_PREG_TFD), AHCI_PFMT_TFD_STS, 2108 ahci_pread(ap, AHCI_PREG_SERR), AHCI_PFMT_SERR); 2109 } 2110 2111 timeout_fn(ccb); 2112 2113 crit_exit(); 2114 2115 return(ccb->ccb_xa.state); 2116 } 2117 2118 /* 2119 * When polling we have to check if the currently active CCB(s) 2120 * have timed out as the callout will be deadlocked while we 2121 * hold the port lock. 2122 */ 2123 void 2124 ahci_check_active_timeouts(struct ahci_port *ap) 2125 { 2126 struct ahci_ccb *ccb; 2127 u_int32_t mask; 2128 int tag; 2129 2130 mask = ap->ap_active | ap->ap_sactive; 2131 while (mask) { 2132 tag = ffs(mask) - 1; 2133 mask &= ~(1 << tag); 2134 ccb = &ap->ap_ccbs[tag]; 2135 if (ccb->ccb_xa.flags & ATA_F_TIMEOUT_EXPIRED) { 2136 ahci_ata_cmd_timeout(ccb); 2137 } 2138 } 2139 } 2140 2141 static 2142 __inline 2143 void 2144 ahci_start_timeout(struct ahci_ccb *ccb) 2145 { 2146 if (ccb->ccb_xa.flags & ATA_F_TIMEOUT_DESIRED) { 2147 ccb->ccb_xa.flags |= ATA_F_TIMEOUT_RUNNING; 2148 callout_reset(&ccb->ccb_timeout, 2149 (ccb->ccb_xa.timeout * hz + 999) / 1000, 2150 ahci_ata_cmd_timeout_unserialized, ccb); 2151 } 2152 } 2153 2154 void 2155 ahci_start(struct ahci_ccb *ccb) 2156 { 2157 struct ahci_port *ap = ccb->ccb_port; 2158 struct ahci_softc *sc = ap->ap_sc; 2159 2160 KKASSERT(ccb->ccb_xa.state == ATA_S_PENDING); 2161 2162 /* Zero transferred byte count before transfer */ 2163 ccb->ccb_cmd_hdr->prdbc = 0; 2164 2165 /* Sync command list entry and corresponding command table entry */ 2166 bus_dmamap_sync(sc->sc_tag_cmdh, 2167 AHCI_DMA_MAP(ap->ap_dmamem_cmd_list), 2168 BUS_DMASYNC_PREWRITE); 2169 bus_dmamap_sync(sc->sc_tag_cmdt, 2170 AHCI_DMA_MAP(ap->ap_dmamem_cmd_table), 2171 BUS_DMASYNC_PREWRITE); 2172 2173 /* Prepare RFIS area for write by controller */ 2174 bus_dmamap_sync(sc->sc_tag_rfis, 2175 AHCI_DMA_MAP(ap->ap_dmamem_rfis), 2176 BUS_DMASYNC_PREREAD); 2177 2178 /* 2179 * There's no point trying to optimize this, it only shaves a few 2180 * nanoseconds so just queue the command and call our generic issue. 2181 */ 2182 ahci_issue_pending_commands(ap, ccb); 2183 } 2184 2185 /* 2186 * While holding the port lock acquire exclusive access to the port. 2187 * 2188 * This is used when running the state machine to initialize and identify 2189 * targets over a port multiplier. Setting exclusive access prevents 2190 * ahci_port_intr() from activating any requests sitting on the pending 2191 * queue. 2192 */ 2193 void 2194 ahci_beg_exclusive_access(struct ahci_port *ap, struct ata_port *at) 2195 { 2196 KKASSERT((ap->ap_flags & AP_F_EXCLUSIVE_ACCESS) == 0); 2197 ap->ap_flags |= AP_F_EXCLUSIVE_ACCESS; 2198 while (ap->ap_active || ap->ap_sactive) { 2199 ahci_port_intr(ap, 1); 2200 ahci_os_softsleep(); 2201 } 2202 } 2203 2204 void 2205 ahci_end_exclusive_access(struct ahci_port *ap, struct ata_port *at) 2206 { 2207 KKASSERT((ap->ap_flags & AP_F_EXCLUSIVE_ACCESS) != 0); 2208 ap->ap_flags &= ~AP_F_EXCLUSIVE_ACCESS; 2209 ahci_issue_pending_commands(ap, NULL); 2210 } 2211 2212 /* 2213 * If ccb is not NULL enqueue and/or issue it. 2214 * 2215 * If ccb is NULL issue whatever we can from the queue. However, nothing 2216 * new is issued if the exclusive access flag is set or expired ccb's are 2217 * present. 2218 * 2219 * If existing commands are still active (ap_active/ap_sactive) we can only 2220 * issue matching new commands. 2221 */ 2222 void 2223 ahci_issue_pending_commands(struct ahci_port *ap, struct ahci_ccb *ccb) 2224 { 2225 u_int32_t mask; 2226 int limit; 2227 struct ata_port *ccb_at; 2228 2229 /* 2230 * Enqueue the ccb. 2231 * 2232 * If just running the queue and in exclusive access mode we 2233 * just return. Also in this case if there are any expired ccb's 2234 * we want to clear the queue so the port can be safely stopped. 2235 */ 2236 if (ccb) { 2237 TAILQ_INSERT_TAIL(&ap->ap_ccb_pending, ccb, ccb_entry); 2238 } else if ((ap->ap_flags & AP_F_EXCLUSIVE_ACCESS) || ap->ap_expired) { 2239 return; 2240 } 2241 2242 /* 2243 * Pull the next ccb off the queue and run it if possible. 2244 * 2245 * The error CCB supercedes all normal queue operations and 2246 * implies exclusive access while the error CCB is active. 2247 */ 2248 if (ccb != ap->ap_err_ccb) { 2249 if ((ccb = TAILQ_FIRST(&ap->ap_ccb_pending)) == NULL) 2250 return; 2251 if (ap->ap_flags & AP_F_ERR_CCB_RESERVED) { 2252 kprintf("DELAY CCB slot %d\n", ccb->ccb_slot); 2253 return; 2254 } 2255 } 2256 2257 /* 2258 * Handle exclusivity requirements. 2259 * 2260 * ATA_F_EXCLUSIVE is used when we want to be the only command 2261 * running. 2262 * 2263 * ATA_F_AUTOSENSE is used when we want the D2H rfis loaded 2264 * back into the ccb on a normal (non-errored) command completion. 2265 * For example, for PM requests to target 15. Because the AHCI 2266 * spec does not stop the command processor and has only one rfis 2267 * area (for non-FBSS anyway), AUTOSENSE currently implies EXCLUSIVE. 2268 * Otherwise multiple completions can destroy the rfis data before 2269 * we have a chance to copy it. 2270 */ 2271 if (ap->ap_active & ~ap->ap_expired) { 2272 /* 2273 * There may be multiple ccb's already running, 2274 * if any are running and ap_run_flags sets 2275 * one of these flags then we know only one is 2276 * running. 2277 * 2278 * XXX Current AUTOSENSE code forces exclusivity 2279 * to simplify the code. 2280 */ 2281 if (ap->ap_run_flags & 2282 (ATA_F_EXCLUSIVE | ATA_F_AUTOSENSE)) { 2283 return; 2284 } 2285 2286 if (ccb->ccb_xa.flags & 2287 (ATA_F_EXCLUSIVE | ATA_F_AUTOSENSE)) { 2288 return; 2289 } 2290 } 2291 2292 if (ccb->ccb_xa.flags & ATA_F_NCQ) { 2293 /* 2294 * The next command is a NCQ command and can be issued as 2295 * long as currently active commands are not standard. 2296 */ 2297 if (ap->ap_active) { 2298 KKASSERT(ap->ap_active_cnt > 0); 2299 return; 2300 } 2301 KKASSERT(ap->ap_active_cnt == 0); 2302 2303 mask = 0; 2304 do { 2305 TAILQ_REMOVE(&ap->ap_ccb_pending, ccb, ccb_entry); 2306 KKASSERT((mask & (1 << ccb->ccb_slot)) == 0); 2307 mask |= 1 << ccb->ccb_slot; 2308 KKASSERT(ccb->ccb_xa.state == ATA_S_PENDING); 2309 KKASSERT(ccb == &ap->ap_ccbs[ccb->ccb_slot]); 2310 ccb->ccb_xa.state = ATA_S_ONCHIP; 2311 ahci_start_timeout(ccb); 2312 ap->ap_run_flags = ccb->ccb_xa.flags; 2313 2314 ccb_at = ccb->ccb_xa.at; 2315 if (ap->ap_flags & AP_F_FBSS_ENABLED) { 2316 ap->ap_sactive |= mask; 2317 ahci_pwrite(ap, AHCI_PREG_SACT, mask); 2318 if (ccb_at) { 2319 ahci_pwrite(ap, AHCI_PREG_FBS, 2320 (ccb_at->at_target << 2321 AHCI_PREG_FBS_DEV_SHIFT) | 2322 AHCI_PREG_FBS_EN); 2323 } else { 2324 ahci_pwrite(ap, AHCI_PREG_FBS, 2325 AHCI_PREG_FBS_EN); 2326 } 2327 ahci_pwrite(ap, AHCI_PREG_CI, mask); 2328 mask = 0; 2329 } 2330 ccb = TAILQ_FIRST(&ap->ap_ccb_pending); 2331 } while (ccb && (ccb->ccb_xa.flags & ATA_F_NCQ) && 2332 (ap->ap_run_flags & 2333 (ATA_F_EXCLUSIVE | ATA_F_AUTOSENSE)) == 0); 2334 2335 KKASSERT(((ap->ap_active | ap->ap_sactive) & mask) == 0); 2336 2337 if (mask) { 2338 ap->ap_sactive |= mask; 2339 ahci_pwrite(ap, AHCI_PREG_SACT, mask); 2340 ahci_pwrite(ap, AHCI_PREG_CI, mask); 2341 } 2342 } else { 2343 /* 2344 * The next command is a standard command and can be issued 2345 * as long as currently active commands are not NCQ. 2346 * 2347 * We limit ourself to 1 command if we have a port multiplier, 2348 * (at least without FBSS support), otherwise timeouts on 2349 * one port can race completions on other ports (see 2350 * ahci_ata_cmd_timeout() for more information). 2351 * 2352 * If not on a port multiplier generally allow up to 4 2353 * standard commands to be enqueued. Remember that the 2354 * command processor will still process them sequentially. 2355 */ 2356 if (ap->ap_sactive) 2357 return; 2358 if (ap->ap_type == ATA_PORT_T_PM && 2359 (ap->ap_flags & AP_F_FBSS_ENABLED) == 0) { 2360 limit = 1; 2361 } else if (ap->ap_sc->sc_ncmds > 4) { 2362 limit = 4; 2363 } else { 2364 limit = 2; 2365 } 2366 2367 while (ap->ap_active_cnt < limit && ccb && 2368 (ccb->ccb_xa.flags & ATA_F_NCQ) == 0) { 2369 ccb_at = ccb->ccb_xa.at; 2370 TAILQ_REMOVE(&ap->ap_ccb_pending, ccb, ccb_entry); 2371 KKASSERT(((ap->ap_active | ap->ap_sactive) & 2372 (1 << ccb->ccb_slot)) == 0); 2373 ap->ap_active |= 1 << ccb->ccb_slot; 2374 ap->ap_active_cnt++; 2375 ap->ap_run_flags = ccb->ccb_xa.flags; 2376 ccb->ccb_xa.state = ATA_S_ONCHIP; 2377 ahci_start_timeout(ccb); 2378 if (ap->ap_flags & AP_F_FBSS_ENABLED) { 2379 if (ccb_at) { 2380 ahci_pwrite(ap, AHCI_PREG_FBS, 2381 (ccb_at->at_target << 2382 AHCI_PREG_FBS_DEV_SHIFT) | 2383 AHCI_PREG_FBS_EN); 2384 } else { 2385 ahci_pwrite(ap, AHCI_PREG_FBS, 2386 AHCI_PREG_FBS_EN); 2387 } 2388 } 2389 ahci_pwrite(ap, AHCI_PREG_CI, 1 << ccb->ccb_slot); 2390 if ((ap->ap_run_flags & 2391 (ATA_F_EXCLUSIVE | ATA_F_AUTOSENSE)) == 0) { 2392 break; 2393 } 2394 ccb = TAILQ_FIRST(&ap->ap_ccb_pending); 2395 if (ccb && (ccb->ccb_xa.flags & 2396 (ATA_F_EXCLUSIVE | ATA_F_AUTOSENSE))) { 2397 break; 2398 } 2399 } 2400 } 2401 } 2402 2403 void 2404 ahci_intr(void *arg) 2405 { 2406 struct ahci_softc *sc = arg; 2407 struct ahci_port *ap; 2408 u_int32_t is; 2409 u_int32_t ack; 2410 int port; 2411 2412 /* 2413 * Check if the master enable is up, and whether any interrupts are 2414 * pending. 2415 */ 2416 if ((sc->sc_flags & AHCI_F_INT_GOOD) == 0) 2417 return; 2418 is = ahci_read(sc, AHCI_REG_IS); 2419 if (is == 0 || is == 0xffffffff) { 2420 return; 2421 } 2422 is &= sc->sc_portmask; 2423 2424 #ifdef AHCI_COALESCE 2425 /* Check coalescing interrupt first */ 2426 if (is & sc->sc_ccc_mask) { 2427 DPRINTF(AHCI_D_INTR, "%s: command coalescing interrupt\n", 2428 DEVNAME(sc)); 2429 is &= ~sc->sc_ccc_mask; 2430 is |= sc->sc_ccc_ports_cur; 2431 } 2432 #endif 2433 2434 /* 2435 * Process interrupts for each port in a non-blocking fashion. 2436 * 2437 * The global IS bit is supposed to be forced on if any unmasked 2438 * port interrupt is pending, even if we clear it. 2439 * 2440 * However it would appear that it is simply latched on some parts, 2441 * which means we have to clear it BEFORE processing the status bits 2442 * to avoid races. 2443 */ 2444 ahci_write(sc, AHCI_REG_IS, is); 2445 for (ack = 0; is; is &= ~(1 << port)) { 2446 port = ffs(is) - 1; 2447 ack |= 1 << port; 2448 2449 ap = sc->sc_ports[port]; 2450 if (ap == NULL) 2451 continue; 2452 2453 if (ahci_os_lock_port_nb(ap) == 0) { 2454 ahci_port_intr(ap, 0); 2455 ahci_os_unlock_port(ap); 2456 } else { 2457 ahci_pwrite(ap, AHCI_PREG_IE, 0); 2458 ahci_os_signal_port_thread(ap, AP_SIGF_PORTINT); 2459 } 2460 } 2461 } 2462 2463 /* 2464 * Core called from helper thread. 2465 */ 2466 void 2467 ahci_port_thread_core(struct ahci_port *ap, int mask) 2468 { 2469 /* 2470 * Process any expired timedouts. 2471 */ 2472 ahci_os_lock_port(ap); 2473 if (mask & AP_SIGF_TIMEOUT) { 2474 ahci_check_active_timeouts(ap); 2475 } 2476 2477 /* 2478 * Process port interrupts which require a higher level of 2479 * intervention. 2480 */ 2481 if (mask & AP_SIGF_PORTINT) { 2482 ahci_port_intr(ap, 1); 2483 ahci_port_interrupt_enable(ap); 2484 } else if (ap->ap_probe != ATA_PROBE_FAILED) { 2485 ahci_port_intr(ap, 1); 2486 ahci_port_interrupt_enable(ap); 2487 } 2488 ahci_os_unlock_port(ap); 2489 } 2490 2491 /* 2492 * Core per-port interrupt handler. 2493 * 2494 * If blockable is 0 we cannot call ahci_os_sleep() at all and we can only 2495 * deal with normal command completions which do not require blocking. 2496 */ 2497 void 2498 ahci_port_intr(struct ahci_port *ap, int blockable) 2499 { 2500 struct ahci_softc *sc = ap->ap_sc; 2501 u_int32_t is, ci_saved, ci_masked; 2502 int slot; 2503 int stopped = 0; 2504 struct ahci_ccb *ccb = NULL; 2505 struct ata_port *ccb_at = NULL; 2506 volatile u_int32_t *active; 2507 const u_int32_t blockable_mask = AHCI_PREG_IS_TFES | 2508 AHCI_PREG_IS_IFS | 2509 AHCI_PREG_IS_PCS | 2510 AHCI_PREG_IS_PRCS | 2511 AHCI_PREG_IS_HBFS | 2512 AHCI_PREG_IS_OFS | 2513 AHCI_PREG_IS_UFS; 2514 2515 enum { NEED_NOTHING, NEED_REINIT, NEED_RESTART, 2516 NEED_HOTPLUG_INSERT, NEED_HOTPLUG_REMOVE } need = NEED_NOTHING; 2517 2518 /* 2519 * All basic command completions are always processed. 2520 */ 2521 is = ahci_pread(ap, AHCI_PREG_IS); 2522 if (is & AHCI_PREG_IS_DPS) 2523 ahci_pwrite(ap, AHCI_PREG_IS, is & AHCI_PREG_IS_DPS); 2524 2525 /* 2526 * If we can't block then we can't handle these here. Disable 2527 * the interrupts in question so we don't live-lock, the helper 2528 * thread will re-enable them. 2529 * 2530 * If the port is in a completely failed state we do not want 2531 * to drop through to failed-command-processing if blockable is 0, 2532 * just let the thread deal with it all. 2533 * 2534 * Otherwise we fall through and still handle DHRS and any commands 2535 * which completed normally. Even if we are errored we haven't 2536 * stopped the port yet so CI/SACT are still good. 2537 */ 2538 if (blockable == 0) { 2539 if (ap->ap_state == AP_S_FATAL_ERROR) { 2540 ahci_pwrite(ap, AHCI_PREG_IE, 0); 2541 ahci_os_signal_port_thread(ap, AP_SIGF_PORTINT); 2542 return; 2543 } 2544 if (is & blockable_mask) { 2545 ahci_pwrite(ap, AHCI_PREG_IE, 0); 2546 ahci_os_signal_port_thread(ap, AP_SIGF_PORTINT); 2547 return; 2548 } 2549 } 2550 2551 /* 2552 * Either NCQ or non-NCQ commands will be active, never both. 2553 */ 2554 if (ap->ap_sactive) { 2555 KKASSERT(ap->ap_active == 0); 2556 KKASSERT(ap->ap_active_cnt == 0); 2557 ci_saved = ahci_pread(ap, AHCI_PREG_SACT); 2558 active = &ap->ap_sactive; 2559 } else { 2560 ci_saved = ahci_pread(ap, AHCI_PREG_CI); 2561 active = &ap->ap_active; 2562 } 2563 KKASSERT(!(ap->ap_sactive && ap->ap_active)); 2564 KKASSERT((ci_saved & (ap->ap_sactive | ap->ap_active)) == ci_saved); 2565 #if 0 2566 kprintf("CHECK act=%08x/%08x sact=%08x/%08x\n", 2567 ap->ap_active, ahci_pread(ap, AHCI_PREG_CI), 2568 ap->ap_sactive, ahci_pread(ap, AHCI_PREG_SACT)); 2569 #endif 2570 2571 /* 2572 * Ignore AHCI_PREG_IS_PRCS when link power management is on 2573 */ 2574 if (ap->link_pwr_mgmt != AHCI_LINK_PWR_MGMT_NONE) { 2575 is &= ~AHCI_PREG_IS_PRCS; 2576 ahci_pwrite(ap, AHCI_PREG_SERR, 2577 AHCI_PREG_SERR_DIAG_N | AHCI_PREG_SERR_DIAG_W); 2578 } 2579 2580 /* 2581 * Command failed (blockable). 2582 * 2583 * See AHCI 1.1 spec 6.2.2.1 and 6.2.2.2. 2584 * 2585 * This stops command processing. 2586 */ 2587 if (is & AHCI_PREG_IS_TFES) { 2588 u_int32_t tfd, serr; 2589 int err_slot; 2590 2591 process_error: 2592 tfd = ahci_pread(ap, AHCI_PREG_TFD); 2593 serr = ahci_pread(ap, AHCI_PREG_SERR); 2594 2595 /* 2596 * Load the error slot and restart command processing. 2597 * CLO if we need to. The error slot may not be valid. 2598 * MUST BE DONE BEFORE CLEARING ST! 2599 * 2600 * Cycle ST. 2601 * 2602 * It is unclear but we may have to clear SERR to reenable 2603 * error processing. 2604 */ 2605 err_slot = AHCI_PREG_CMD_CCS(ahci_pread(ap, AHCI_PREG_CMD)); 2606 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_TFES | 2607 AHCI_PREG_IS_PSS | 2608 AHCI_PREG_IS_DHRS | 2609 AHCI_PREG_IS_SDBS); 2610 is &= ~(AHCI_PREG_IS_TFES | AHCI_PREG_IS_PSS | 2611 AHCI_PREG_IS_DHRS | AHCI_PREG_IS_SDBS); 2612 ahci_pwrite(ap, AHCI_PREG_SERR, serr); 2613 ahci_port_stop(ap, 0); 2614 ahci_os_hardsleep(10); 2615 if (tfd & (AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) { 2616 kprintf("%s: Issuing CLO\n", PORTNAME(ap)); 2617 ahci_port_clo(ap); 2618 } 2619 2620 /* 2621 * We are now stopped and need a restart. If we have to 2622 * process a NCQ error we will temporarily start and then 2623 * stop the port again, so this condition holds. 2624 */ 2625 stopped = 1; 2626 need = NEED_RESTART; 2627 2628 /* 2629 * ATAPI errors are fairly common from probing, just 2630 * report disk errors or if bootverbose is on. 2631 */ 2632 if (bootverbose || ap->ap_type != ATA_PORT_T_ATAPI) { 2633 kprintf("%s: TFES slot %d ci_saved = %08x\n", 2634 PORTNAME(ap), err_slot, ci_saved); 2635 } 2636 2637 /* 2638 * If we got an error on an error CCB just complete it 2639 * with an error. ci_saved has the mask to restart 2640 * (the err_ccb will be removed from it by finish_error). 2641 */ 2642 if (ap->ap_flags & AP_F_ERR_CCB_RESERVED) { 2643 err_slot = ap->ap_err_ccb->ccb_slot; 2644 goto finish_error; 2645 } 2646 2647 /* 2648 * If NCQ commands were active get the error slot from 2649 * the log page. NCQ is not supported for PM's so this 2650 * is a direct-attached target. 2651 * 2652 * Otherwise if no commands were active we have a problem. 2653 * 2654 * Otherwise if the error slot is bad we have a problem. 2655 * 2656 * Otherwise process the error for the slot. 2657 */ 2658 if (ap->ap_sactive) { 2659 ahci_port_start(ap); 2660 err_slot = ahci_port_read_ncq_error(ap, 0); 2661 ahci_port_stop(ap, 0); 2662 } else if (ap->ap_active == 0) { 2663 kprintf("%s: TFES with no commands pending\n", 2664 PORTNAME(ap)); 2665 err_slot = -1; 2666 } else if (err_slot < 0 || err_slot >= ap->ap_sc->sc_ncmds) { 2667 kprintf("%s: bad error slot %d\n", 2668 PORTNAME(ap), err_slot); 2669 err_slot = -1; 2670 } else { 2671 ccb = &ap->ap_ccbs[err_slot]; 2672 2673 /* 2674 * Validate the errored ccb. Note that ccb_at can 2675 * be NULL for direct-attached ccb's. 2676 * 2677 * Copy received taskfile data from the RFIS. 2678 */ 2679 if (ccb->ccb_xa.state == ATA_S_ONCHIP) { 2680 int fis_target; 2681 uint32_t bytes; 2682 intmax_t offset; 2683 struct ata_fis_d2h *rfis; 2684 2685 ccb_at = ccb->ccb_xa.at; 2686 if (ccb_at && 2687 (ap->ap_flags & AP_F_FBSS_ENABLED)) 2688 fis_target = ccb_at->at_target; 2689 else 2690 fis_target = 0; 2691 2692 memcpy(&ccb->ccb_xa.rfis, 2693 ap->ap_rfis[fis_target].rfis, 2694 sizeof(struct ata_fis_d2h)); 2695 rfis = &ccb->ccb_xa.rfis; 2696 2697 offset = (intmax_t)rfis->lba_low | 2698 ((intmax_t)rfis->lba_mid << 8) | 2699 ((intmax_t)rfis->lba_high << 16) | 2700 ((intmax_t)rfis->lba_low_exp << 24) | 2701 ((intmax_t)rfis->lba_mid_exp << 32) | 2702 ((intmax_t)rfis->lba_high_exp << 40); 2703 offset *= 512; 2704 bytes = rfis->sector_count * 512; 2705 2706 /* NOTE: expect type == 0x34 */ 2707 kprintf("%s: TFES ccb=%p slot=%d RFIS-%02x " 2708 "flg=%02x " 2709 "st=%02x err=%02x dev=%02x " 2710 "off=%jd/%d\n", 2711 PORTNAME(ap), 2712 ccb->ccb_xa.atascsi_private, 2713 ccb->ccb_slot, 2714 rfis->type, 2715 rfis->flags, 2716 rfis->status, 2717 rfis->error, 2718 rfis->device, 2719 offset, bytes); 2720 } else { 2721 kprintf("%s: Cannot copy rfis, CCB slot " 2722 "%d is not on-chip (state=%d)\n", 2723 ATANAME(ap, ccb->ccb_xa.at), 2724 err_slot, ccb->ccb_xa.state); 2725 err_slot = -1; 2726 } 2727 } 2728 2729 /* 2730 * If we could not determine the errored slot then 2731 * reset the port. 2732 */ 2733 if (err_slot < 0) { 2734 kprintf("%s: TFES: Unable to determine errored slot\n", 2735 PORTNAME(ap)); 2736 if (ap->ap_flags & AP_F_IN_RESET) 2737 goto fatal; 2738 goto failall; 2739 } 2740 2741 /* 2742 * Finish error on slot. We will restart ci_saved 2743 * commands except the errored slot which we generate 2744 * a failure for. 2745 */ 2746 finish_error: 2747 ccb = &ap->ap_ccbs[err_slot]; 2748 ci_saved &= ~(1 << err_slot); 2749 KKASSERT(ccb->ccb_xa.state == ATA_S_ONCHIP); 2750 ccb->ccb_xa.state = ATA_S_ERROR; 2751 } else if (is & AHCI_PREG_IS_DHRS) { 2752 /* 2753 * Command posted D2H register FIS to the rfis (non-blocking). 2754 * 2755 * A normal completion with an error may set DHRS instead 2756 * of TFES. The CCS bits are only valid if ERR was set. 2757 * If ERR is set command processing was probably stopped. 2758 * 2759 * If ERR was not set we can only copy-back data for 2760 * exclusive-mode commands because otherwise we won't know 2761 * which tag the rfis belonged to. 2762 * 2763 * err_slot must be read from the CCS before any other port 2764 * action, such as stopping the port. 2765 * 2766 * WARNING! This is not well documented in the AHCI spec. 2767 * It can be found in the state machine tables 2768 * but not in the explanations. 2769 */ 2770 u_int32_t tfd; 2771 u_int32_t cmd; 2772 int err_slot; 2773 2774 tfd = ahci_pread(ap, AHCI_PREG_TFD); 2775 cmd = ahci_pread(ap, AHCI_PREG_CMD); 2776 2777 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_DHRS); 2778 2779 /* 2780 * If command processing is turned off we can process the 2781 * error immediately. Use the ST bit here instead of the 2782 * CR bit in case the CR bit is not implemented via the 2783 * F_IGN_CR quirk. 2784 */ 2785 if ((tfd & AHCI_PREG_TFD_STS_ERR) && 2786 (cmd & AHCI_PREG_CMD_ST) == 0) { 2787 err_slot = AHCI_PREG_CMD_CCS( 2788 ahci_pread(ap, AHCI_PREG_CMD)); 2789 ccb = &ap->ap_ccbs[err_slot]; 2790 kprintf("%s: DHRS tfd=%b err_slot=%d cmd=%02x\n", 2791 PORTNAME(ap), 2792 tfd, AHCI_PFMT_TFD_STS, 2793 err_slot, ccb->ccb_xa.fis->command); 2794 goto process_error; 2795 } 2796 /* 2797 * NO ELSE... copy back is in the normal command completion 2798 * code and only if no error occured and ATA_F_AUTOSENSE 2799 * was set. 2800 */ 2801 } 2802 2803 /* 2804 * Device notification to us (non-blocking) 2805 * 2806 * NOTE! On some parts notification bits can cause an IPMS 2807 * interrupt instead of a SDBS interrupt. 2808 * 2809 * NOTE! On some parts (e.g. VBOX, probably intel ICHx), 2810 * SDBS notifies us of the completion of a NCQ command 2811 * and DBS does not. 2812 */ 2813 if (is & (AHCI_PREG_IS_SDBS | AHCI_PREG_IS_IPMS)) { 2814 u_int32_t data; 2815 2816 ahci_pwrite(ap, AHCI_PREG_IS, 2817 AHCI_PREG_IS_SDBS | AHCI_PREG_IS_IPMS); 2818 if (sc->sc_cap & AHCI_REG_CAP_SSNTF) { 2819 data = ahci_pread(ap, AHCI_PREG_SNTF); 2820 if (data) { 2821 ahci_pwrite(ap, AHCI_PREG_IS, 2822 AHCI_PREG_IS_SDBS); 2823 kprintf("%s: NOTIFY %08x\n", 2824 PORTNAME(ap), data); 2825 ahci_pwrite(ap, AHCI_PREG_SERR, 2826 AHCI_PREG_SERR_DIAG_N); 2827 ahci_pwrite(ap, AHCI_PREG_SNTF, data); 2828 ahci_cam_changed(ap, NULL, -1); 2829 } 2830 } 2831 is &= ~(AHCI_PREG_IS_SDBS | AHCI_PREG_IS_IPMS); 2832 } 2833 2834 /* 2835 * Spurious IFS errors (blockable) - when AP_F_IGNORE_IFS is set. 2836 * 2837 * Spurious IFS errors can occur while we are doing a reset 2838 * sequence through a PM, probably due to an unexpected FIS 2839 * being received during the PM target reset sequence. Chipsets 2840 * are supposed to mask these events but some do not. 2841 * 2842 * Try to recover from the condition. 2843 */ 2844 if ((is & AHCI_PREG_IS_IFS) && (ap->ap_flags & AP_F_IGNORE_IFS)) { 2845 u_int32_t serr = ahci_pread(ap, AHCI_PREG_SERR); 2846 if ((ap->ap_flags & AP_F_IFS_IGNORED) == 0) { 2847 kprintf("%s: IFS during PM probe (ignored) " 2848 "IS=%b, SERR=%b\n", 2849 PORTNAME(ap), 2850 is, AHCI_PFMT_IS, 2851 serr, AHCI_PFMT_SERR); 2852 ap->ap_flags |= AP_F_IFS_IGNORED; 2853 } 2854 2855 /* 2856 * Try to clear the error condition. The IFS error killed 2857 * the port so stop it so we can restart it. 2858 */ 2859 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_IFS); 2860 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 2861 is &= ~AHCI_PREG_IS_IFS; 2862 need = NEED_RESTART; 2863 goto failall; 2864 } 2865 2866 /* 2867 * Port change (hot-plug) (blockable). 2868 * 2869 * A PRCS interrupt can occur: 2870 * (1) On hot-unplug / normal-unplug (phy lost) 2871 * (2) Sometimes on hot-plug too. 2872 * 2873 * A PCS interrupt can occur in a number of situations: 2874 * (1) On hot-plug once communication is established 2875 * (2) On hot-unplug sometimes. 2876 * (3) For chipsets with badly written firmware it can occur 2877 * during INIT/RESET sequences due to the device reset. 2878 * (4) For chipsets with badly written firmware it can occur 2879 * when it thinks an unsolicited COMRESET is received 2880 * during a INIT/RESET sequence, even though we actually 2881 * did request it. 2882 * 2883 * XXX We can then check the CPS (Cold Presence State) bit, if 2884 * supported, to determine if a device is plugged in or not and do 2885 * the right thing. 2886 * 2887 * PCS interrupts are cleared by clearing DIAG_X. If this occurs 2888 * command processing is automatically stopped (CR goes inactive) 2889 * and the port must be stopped and restarted. 2890 * 2891 * WARNING: AMD parts (e.g. 880G chipset, probably others) can 2892 * generate PCS on initialization even when device is 2893 * already connected up. It is unclear why this happens. 2894 * Depending on the state of the device detect this can 2895 * cause us to go into harsh reinit or hot-plug insertion 2896 * mode. 2897 * 2898 * WARNING: PCS errors can be repetitive (e.g. unsolicited COMRESET 2899 * continues to flow in from the device), we must clear the 2900 * interrupt in all cases and enforce a delay to prevent 2901 * a livelock and give the port time to settle down. 2902 * Only print something if we aren't in INIT/HARD-RESET. 2903 */ 2904 if (is & (AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS)) { 2905 ahci_pwrite(ap, AHCI_PREG_IS, 2906 is & (AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS)); 2907 /* 2908 * Try to clear the error. Because of the repetitiveness 2909 * of this interrupt avoid any harsh action if the port is 2910 * already in the init or hard-reset probe state. 2911 */ 2912 ahci_pwrite(ap, AHCI_PREG_SERR, -1); 2913 /* (AHCI_PREG_SERR_DIAG_N | AHCI_PREG_SERR_DIAG_X) */ 2914 2915 /* 2916 * Ignore PCS/PRCS errors during probes (but still clear the 2917 * interrupt to avoid a livelock). The AMD 880/890/SB850 2918 * chipsets do not mask PCS/PRCS internally during reset 2919 * sequences. 2920 */ 2921 if (ap->ap_flags & AP_F_IN_RESET) 2922 goto skip_pcs; 2923 2924 if (ap->ap_probe == ATA_PROBE_NEED_INIT || 2925 ap->ap_probe == ATA_PROBE_NEED_HARD_RESET) { 2926 is &= ~(AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS); 2927 need = NEED_NOTHING; 2928 ahci_os_sleep(1000); 2929 goto failall; 2930 } 2931 kprintf("%s: Transient Errors: %b (%d)\n", 2932 PORTNAME(ap), is, AHCI_PFMT_IS, ap->ap_probe); 2933 is &= ~(AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS); 2934 ahci_os_sleep(200); 2935 2936 /* 2937 * Stop the port and figure out what to do next. 2938 */ 2939 ahci_port_stop(ap, 0); 2940 stopped = 1; 2941 2942 switch (ahci_pread(ap, AHCI_PREG_SSTS) & AHCI_PREG_SSTS_DET) { 2943 case AHCI_PREG_SSTS_DET_DEV: 2944 /* 2945 * Device detect 2946 */ 2947 if (ap->ap_probe == ATA_PROBE_FAILED) { 2948 need = NEED_HOTPLUG_INSERT; 2949 goto fatal; 2950 } 2951 need = NEED_RESTART; 2952 break; 2953 case AHCI_PREG_SSTS_DET_DEV_NE: 2954 /* 2955 * Device not communicating. AMD parts seem to 2956 * like to throw this error on initialization 2957 * for no reason that I can fathom. 2958 */ 2959 kprintf("%s: Device present but not communicating, " 2960 "attempting port restart\n", 2961 PORTNAME(ap)); 2962 need = NEED_REINIT; 2963 goto fatal; 2964 default: 2965 if (ap->ap_probe != ATA_PROBE_FAILED) { 2966 need = NEED_HOTPLUG_REMOVE; 2967 goto fatal; 2968 } 2969 need = NEED_RESTART; 2970 break; 2971 } 2972 skip_pcs: 2973 ; 2974 } 2975 2976 /* 2977 * Check for remaining errors - they are fatal. (blockable) 2978 */ 2979 if (is & (AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS | AHCI_PREG_IS_IFS | 2980 AHCI_PREG_IS_OFS | AHCI_PREG_IS_UFS)) { 2981 u_int32_t serr; 2982 2983 ahci_pwrite(ap, AHCI_PREG_IS, 2984 is & (AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS | 2985 AHCI_PREG_IS_IFS | AHCI_PREG_IS_OFS | 2986 AHCI_PREG_IS_UFS)); 2987 serr = ahci_pread(ap, AHCI_PREG_SERR); 2988 kprintf("%s: Unrecoverable errors (IS: %b, SERR: %b), " 2989 "disabling port.\n", 2990 PORTNAME(ap), 2991 is, AHCI_PFMT_IS, 2992 serr, AHCI_PFMT_SERR 2993 ); 2994 is &= ~(AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS | 2995 AHCI_PREG_IS_IFS | AHCI_PREG_IS_OFS | 2996 AHCI_PREG_IS_UFS); 2997 2998 /* 2999 * Fail all commands but then what? For now try to 3000 * reinitialize the port. 3001 */ 3002 need = NEED_REINIT; 3003 goto fatal; 3004 } 3005 3006 /* 3007 * Fail all outstanding commands if we know the port won't recover. 3008 * 3009 * We may have a ccb_at if the failed command is known and was 3010 * being sent to a device over a port multiplier (PM). In this 3011 * case if the port itself has not completely failed we fail just 3012 * the commands related to that target. 3013 * 3014 * ci_saved contains the mask of active commands as of when the 3015 * error occured, prior to any port stops. 3016 */ 3017 if (ap->ap_state == AP_S_FATAL_ERROR) { 3018 fatal: 3019 ap->ap_state = AP_S_FATAL_ERROR; 3020 failall: 3021 ahci_port_stop(ap, 0); 3022 stopped = 1; 3023 3024 /* 3025 * Error all the active slots not already errored. 3026 */ 3027 ci_masked = ci_saved & *active & ~ap->ap_expired; 3028 if (ci_masked) { 3029 kprintf("%s: Failing all commands: %08x\n", 3030 PORTNAME(ap), ci_masked); 3031 } 3032 3033 while (ci_masked) { 3034 slot = ffs(ci_masked) - 1; 3035 ccb = &ap->ap_ccbs[slot]; 3036 ccb->ccb_xa.state = ATA_S_TIMEOUT; 3037 ap->ap_expired |= 1 << slot; 3038 ci_saved &= ~(1 << slot); 3039 ci_masked &= ~(1 << slot); 3040 } 3041 3042 /* 3043 * Clear bits in ci_saved (cause completions to be run) 3044 * for all slots which are not active. 3045 */ 3046 ci_saved &= ~*active; 3047 3048 /* 3049 * Don't restart the port if our problems were deemed fatal. 3050 * 3051 * Also acknowlege all fatal interrupt sources to prevent 3052 * a livelock. 3053 */ 3054 if (ap->ap_state == AP_S_FATAL_ERROR) { 3055 if (need == NEED_RESTART) 3056 need = NEED_NOTHING; 3057 ahci_pwrite(ap, AHCI_PREG_IS, 3058 AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS | 3059 AHCI_PREG_IS_IFS | AHCI_PREG_IS_OFS | 3060 AHCI_PREG_IS_UFS); 3061 } 3062 } 3063 3064 /* 3065 * If we are stopped the AHCI chipset is supposed to have cleared 3066 * CI and SACT. Did it? If it didn't we try very hard to clear 3067 * the fields otherwise we may end up completing CCBs which are 3068 * actually still active. 3069 * 3070 * IFS errors on (at least) AMD chipsets create this confusion. 3071 */ 3072 if (stopped) { 3073 u_int32_t mask; 3074 if ((mask = ahci_pactive(ap)) != 0) { 3075 kprintf("%s: chipset failed to clear " 3076 "active cmds %08x\n", 3077 PORTNAME(ap), mask); 3078 ahci_port_start(ap); 3079 ahci_port_stop(ap, 0); 3080 if ((mask = ahci_pactive(ap)) != 0) { 3081 kprintf("%s: unable to prod the chip into " 3082 "clearing active cmds %08x\n", 3083 PORTNAME(ap), mask); 3084 /* what do we do now? */ 3085 } 3086 } 3087 } 3088 3089 /* 3090 * CCB completion (non blocking). 3091 * 3092 * CCB completion is detected by noticing its slot's bit in CI has 3093 * changed to zero some time after we activated it. 3094 * If we are polling, we may only be interested in particular slot(s). 3095 * 3096 * Any active bits not saved are completed within the restrictions 3097 * imposed by the caller. 3098 */ 3099 ci_masked = ~ci_saved & *active; 3100 while (ci_masked) { 3101 slot = ffs(ci_masked) - 1; 3102 ccb = &ap->ap_ccbs[slot]; 3103 ci_masked &= ~(1 << slot); 3104 3105 DPRINTF(AHCI_D_INTR, "%s: slot %d is complete%s\n", 3106 PORTNAME(ap), slot, ccb->ccb_xa.state == ATA_S_ERROR ? 3107 " (error)" : ""); 3108 3109 bus_dmamap_sync(sc->sc_tag_cmdh, 3110 AHCI_DMA_MAP(ap->ap_dmamem_cmd_list), 3111 BUS_DMASYNC_POSTWRITE); 3112 3113 bus_dmamap_sync(sc->sc_tag_cmdt, 3114 AHCI_DMA_MAP(ap->ap_dmamem_cmd_table), 3115 BUS_DMASYNC_POSTWRITE); 3116 3117 bus_dmamap_sync(sc->sc_tag_rfis, 3118 AHCI_DMA_MAP(ap->ap_dmamem_rfis), 3119 BUS_DMASYNC_POSTREAD); 3120 3121 *active &= ~(1 << ccb->ccb_slot); 3122 if (active == &ap->ap_active) { 3123 KKASSERT(ap->ap_active_cnt > 0); 3124 --ap->ap_active_cnt; 3125 } 3126 3127 /* 3128 * Complete the ccb. If the ccb was marked expired it 3129 * was probably already removed from the command processor, 3130 * so don't take the clear ci_saved bit as meaning the 3131 * command actually succeeded, it didn't. 3132 */ 3133 if (ap->ap_expired & (1 << ccb->ccb_slot)) { 3134 ap->ap_expired &= ~(1 << ccb->ccb_slot); 3135 ccb->ccb_xa.state = ATA_S_TIMEOUT; 3136 ccb->ccb_done(ccb); 3137 ccb->ccb_xa.complete(&ccb->ccb_xa); 3138 } else { 3139 if (ccb->ccb_xa.state == ATA_S_ONCHIP) { 3140 ccb->ccb_xa.state = ATA_S_COMPLETE; 3141 if (ccb->ccb_xa.flags & ATA_F_AUTOSENSE) { 3142 int fis_target; 3143 3144 ccb_at = ccb->ccb_xa.at; 3145 if (ccb_at && 3146 (ap->ap_flags & AP_F_FBSS_ENABLED)) 3147 fis_target = ccb_at->at_target; 3148 else 3149 fis_target = 0; 3150 memcpy(&ccb->ccb_xa.rfis, 3151 ap->ap_rfis[fis_target].rfis, 3152 sizeof(struct ata_fis_d2h)); 3153 if (ccb->ccb_xa.state == ATA_S_TIMEOUT) 3154 ccb->ccb_xa.state = ATA_S_ERROR; 3155 } 3156 } 3157 ccb->ccb_done(ccb); 3158 } 3159 } 3160 3161 /* 3162 * Cleanup. Will not be set if non-blocking. 3163 */ 3164 switch(need) { 3165 case NEED_NOTHING: 3166 /* 3167 * If operating normally and not stopped the interrupt was 3168 * probably just a normal completion and we may be able to 3169 * issue more commands. 3170 */ 3171 if (stopped == 0 && ap->ap_state != AP_S_FATAL_ERROR) 3172 ahci_issue_pending_commands(ap, NULL); 3173 break; 3174 case NEED_RESTART: 3175 /* 3176 * A recoverable error occured and we can restart outstanding 3177 * commands on the port. 3178 */ 3179 ci_saved &= ~ap->ap_expired; 3180 if (ci_saved) { 3181 kprintf("%s: Restart %08x\n", PORTNAME(ap), ci_saved); 3182 ahci_issue_saved_commands(ap, ci_saved); 3183 } 3184 3185 /* 3186 * Potentially issue new commands if not in a failed 3187 * state. 3188 */ 3189 if (ap->ap_state != AP_S_FATAL_ERROR) { 3190 ahci_port_start(ap); 3191 ahci_issue_pending_commands(ap, NULL); 3192 } 3193 break; 3194 case NEED_REINIT: 3195 /* 3196 * Something horrible happened to the port and we 3197 * need to reinitialize it. 3198 */ 3199 kprintf("%s: REINIT - Attempting to reinitialize the port " 3200 "after it had a horrible accident\n", 3201 PORTNAME(ap)); 3202 ap->ap_flags |= AP_F_IN_RESET; 3203 ap->ap_flags |= AP_F_HARSH_REINIT; 3204 ap->ap_probe = ATA_PROBE_NEED_INIT; 3205 ahci_cam_changed(ap, NULL, -1); 3206 break; 3207 case NEED_HOTPLUG_INSERT: 3208 /* 3209 * A hot-plug insertion event has occured and all 3210 * outstanding commands have already been revoked. 3211 * 3212 * Don't recurse if this occurs while we are 3213 * resetting the port. 3214 */ 3215 if ((ap->ap_flags & AP_F_IN_RESET) == 0) { 3216 kprintf("%s: HOTPLUG - Device inserted\n", 3217 PORTNAME(ap)); 3218 ap->ap_probe = ATA_PROBE_NEED_INIT; 3219 ahci_cam_changed(ap, NULL, -1); 3220 } 3221 break; 3222 case NEED_HOTPLUG_REMOVE: 3223 /* 3224 * A hot-plug removal event has occured and all 3225 * outstanding commands have already been revoked. 3226 * 3227 * Don't recurse if this occurs while we are 3228 * resetting the port. 3229 */ 3230 if ((ap->ap_flags & AP_F_IN_RESET) == 0) { 3231 kprintf("%s: HOTPLUG - Device removed\n", 3232 PORTNAME(ap)); 3233 ahci_port_hardstop(ap); 3234 /* ap_probe set to failed */ 3235 ahci_cam_changed(ap, NULL, -1); 3236 } 3237 break; 3238 default: 3239 break; 3240 } 3241 } 3242 3243 struct ahci_ccb * 3244 ahci_get_ccb(struct ahci_port *ap) 3245 { 3246 struct ahci_ccb *ccb; 3247 3248 lockmgr(&ap->ap_ccb_lock, LK_EXCLUSIVE); 3249 ccb = TAILQ_FIRST(&ap->ap_ccb_free); 3250 if (ccb != NULL) { 3251 KKASSERT((ap->ap_sactive & (1 << ccb->ccb_slot)) == 0); 3252 KKASSERT(ccb->ccb_xa.state == ATA_S_PUT); 3253 TAILQ_REMOVE(&ap->ap_ccb_free, ccb, ccb_entry); 3254 ccb->ccb_xa.state = ATA_S_SETUP; 3255 ccb->ccb_xa.flags = 0; 3256 ccb->ccb_xa.at = NULL; 3257 } 3258 lockmgr(&ap->ap_ccb_lock, LK_RELEASE); 3259 3260 return (ccb); 3261 } 3262 3263 void 3264 ahci_put_ccb(struct ahci_ccb *ccb) 3265 { 3266 struct ahci_port *ap = ccb->ccb_port; 3267 3268 KKASSERT(ccb->ccb_xa.state != ATA_S_PUT); 3269 KKASSERT((ap->ap_sactive & (1 << ccb->ccb_slot)) == 0); 3270 lockmgr(&ap->ap_ccb_lock, LK_EXCLUSIVE); 3271 ccb->ccb_xa.state = ATA_S_PUT; 3272 ++ccb->ccb_xa.serial; 3273 TAILQ_INSERT_TAIL(&ap->ap_ccb_free, ccb, ccb_entry); 3274 lockmgr(&ap->ap_ccb_lock, LK_RELEASE); 3275 } 3276 3277 struct ahci_ccb * 3278 ahci_get_err_ccb(struct ahci_port *ap) 3279 { 3280 struct ahci_ccb *err_ccb; 3281 u_int32_t sact; 3282 u_int32_t ci; 3283 3284 /* No commands may be active on the chip. */ 3285 3286 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SNCQ) { 3287 sact = ahci_pread(ap, AHCI_PREG_SACT); 3288 if (sact != 0) { 3289 kprintf("%s: ahci_get_err_ccb but SACT %08x != 0?\n", 3290 PORTNAME(ap), sact); 3291 } 3292 } 3293 ci = ahci_pread(ap, AHCI_PREG_CI); 3294 if (ci) { 3295 kprintf("%s: ahci_get_err_ccb: ci not 0 (%08x)\n", 3296 ap->ap_name, ci); 3297 } 3298 KKASSERT(ci == 0); 3299 KKASSERT((ap->ap_flags & AP_F_ERR_CCB_RESERVED) == 0); 3300 ap->ap_flags |= AP_F_ERR_CCB_RESERVED; 3301 3302 /* Save outstanding command state. */ 3303 ap->ap_err_saved_active = ap->ap_active; 3304 ap->ap_err_saved_active_cnt = ap->ap_active_cnt; 3305 ap->ap_err_saved_sactive = ap->ap_sactive; 3306 3307 /* 3308 * Pretend we have no commands outstanding, so that completions won't 3309 * run prematurely. 3310 */ 3311 ap->ap_active = ap->ap_active_cnt = ap->ap_sactive = 0; 3312 3313 /* 3314 * Grab a CCB to use for error recovery. This should never fail, as 3315 * we ask atascsi to reserve one for us at init time. 3316 */ 3317 err_ccb = ap->ap_err_ccb; 3318 KKASSERT(err_ccb != NULL); 3319 err_ccb->ccb_xa.flags = 0; 3320 err_ccb->ccb_done = ahci_empty_done; 3321 3322 return err_ccb; 3323 } 3324 3325 void 3326 ahci_put_err_ccb(struct ahci_ccb *ccb) 3327 { 3328 struct ahci_port *ap = ccb->ccb_port; 3329 u_int32_t sact; 3330 u_int32_t ci; 3331 3332 KKASSERT((ap->ap_flags & AP_F_ERR_CCB_RESERVED) != 0); 3333 3334 /* 3335 * No commands may be active on the chip 3336 */ 3337 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SNCQ) { 3338 sact = ahci_pread(ap, AHCI_PREG_SACT); 3339 if (sact) { 3340 panic("ahci_port_err_ccb(%d) but SACT %08x != 0", 3341 ccb->ccb_slot, sact); 3342 } 3343 } 3344 ci = ahci_pread(ap, AHCI_PREG_CI); 3345 if (ci) { 3346 panic("ahci_put_err_ccb(%d) but CI %08x != 0 " 3347 "(act=%08x sact=%08x)\n", 3348 ccb->ccb_slot, ci, 3349 ap->ap_active, ap->ap_sactive); 3350 } 3351 3352 KKASSERT(ccb == ap->ap_err_ccb); 3353 3354 /* Restore outstanding command state */ 3355 ap->ap_sactive = ap->ap_err_saved_sactive; 3356 ap->ap_active_cnt = ap->ap_err_saved_active_cnt; 3357 ap->ap_active = ap->ap_err_saved_active; 3358 3359 ap->ap_flags &= ~AP_F_ERR_CCB_RESERVED; 3360 } 3361 3362 /* 3363 * Read log page to get NCQ error. 3364 * 3365 * NOTE: NCQ not currently supported on port multipliers. XXX 3366 */ 3367 int 3368 ahci_port_read_ncq_error(struct ahci_port *ap, int target) 3369 { 3370 struct ata_log_page_10h *log; 3371 struct ahci_ccb *ccb; 3372 struct ahci_ccb *ccb2; 3373 struct ahci_cmd_hdr *cmd_slot; 3374 struct ata_fis_h2d *fis; 3375 int err_slot; 3376 3377 if (bootverbose) { 3378 kprintf("%s: READ LOG PAGE target %d\n", PORTNAME(ap), 3379 target); 3380 } 3381 3382 /* 3383 * Prep error CCB for READ LOG EXT, page 10h, 1 sector. 3384 * 3385 * Getting err_ccb clears active/sactive/active_cnt, putting 3386 * it back restores the fields. 3387 */ 3388 ccb = ahci_get_err_ccb(ap); 3389 ccb->ccb_xa.flags = ATA_F_READ | ATA_F_POLL; 3390 ccb->ccb_xa.data = ap->ap_err_scratch; 3391 ccb->ccb_xa.datalen = 512; 3392 ccb->ccb_xa.complete = ahci_dummy_done; 3393 ccb->ccb_xa.at = ap->ap_ata[target]; 3394 3395 fis = (struct ata_fis_h2d *)ccb->ccb_cmd_table->cfis; 3396 bzero(fis, sizeof(*fis)); 3397 fis->type = ATA_FIS_TYPE_H2D; 3398 fis->flags = ATA_H2D_FLAGS_CMD | target; 3399 fis->command = ATA_C_READ_LOG_EXT; 3400 fis->lba_low = 0x10; /* queued error log page (10h) */ 3401 fis->sector_count = 1; /* number of sectors (1) */ 3402 fis->sector_count_exp = 0; 3403 fis->lba_mid = 0; /* starting offset */ 3404 fis->lba_mid_exp = 0; 3405 fis->device = 0; 3406 3407 cmd_slot = ccb->ccb_cmd_hdr; 3408 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */ 3409 3410 if (ahci_load_prdt(ccb) != 0) { 3411 err_slot = -1; 3412 goto err; 3413 } 3414 3415 ccb->ccb_xa.state = ATA_S_PENDING; 3416 if (ahci_poll(ccb, 1000, ahci_quick_timeout) != ATA_S_COMPLETE) { 3417 err_slot = -1; 3418 ahci_unload_prdt(ccb); 3419 goto err; 3420 } 3421 ahci_unload_prdt(ccb); 3422 3423 /* 3424 * Success, extract failed register set and tags from the scratch 3425 * space. 3426 */ 3427 log = (struct ata_log_page_10h *)ap->ap_err_scratch; 3428 if (log->err_regs.type & ATA_LOG_10H_TYPE_NOTQUEUED) { 3429 /* Not queued bit was set - wasn't an NCQ error? */ 3430 kprintf("%s: read NCQ error page, but not an NCQ error?\n", 3431 PORTNAME(ap)); 3432 err_slot = -1; 3433 } else { 3434 /* Copy back the log record as a D2H register FIS. */ 3435 err_slot = log->err_regs.type & ATA_LOG_10H_TYPE_TAG_MASK; 3436 3437 ccb2 = &ap->ap_ccbs[err_slot]; 3438 if (ccb2->ccb_xa.state == ATA_S_ONCHIP) { 3439 kprintf("%s: read NCQ error page slot=%d\n", 3440 ATANAME(ap, ccb2->ccb_xa.at), 3441 err_slot); 3442 memcpy(&ccb2->ccb_xa.rfis, &log->err_regs, 3443 sizeof(struct ata_fis_d2h)); 3444 ccb2->ccb_xa.rfis.type = ATA_FIS_TYPE_D2H; 3445 ccb2->ccb_xa.rfis.flags = 0; 3446 } else { 3447 kprintf("%s: read NCQ error page slot=%d, " 3448 "slot does not match any cmds\n", 3449 ATANAME(ccb2->ccb_port, ccb2->ccb_xa.at), 3450 err_slot); 3451 err_slot = -1; 3452 } 3453 } 3454 err: 3455 ahci_put_err_ccb(ccb); 3456 kprintf("%s: DONE log page target %d err_slot=%d\n", 3457 PORTNAME(ap), target, err_slot); 3458 return (err_slot); 3459 } 3460 3461 /* 3462 * Allocate memory for various structures DMAd by hardware. The maximum 3463 * number of segments for these tags is 1 so the DMA memory will have a 3464 * single physical base address. 3465 */ 3466 struct ahci_dmamem * 3467 ahci_dmamem_alloc(struct ahci_softc *sc, bus_dma_tag_t tag) 3468 { 3469 struct ahci_dmamem *adm; 3470 int error; 3471 3472 adm = kmalloc(sizeof(*adm), M_DEVBUF, M_INTWAIT | M_ZERO); 3473 3474 error = bus_dmamem_alloc(tag, (void **)&adm->adm_kva, 3475 BUS_DMA_ZERO, &adm->adm_map); 3476 if (error == 0) { 3477 adm->adm_tag = tag; 3478 error = bus_dmamap_load(tag, adm->adm_map, 3479 adm->adm_kva, 3480 bus_dma_tag_getmaxsize(tag), 3481 ahci_dmamem_saveseg, &adm->adm_busaddr, 3482 0); 3483 } 3484 if (error) { 3485 if (adm->adm_map) { 3486 bus_dmamap_destroy(tag, adm->adm_map); 3487 adm->adm_map = NULL; 3488 adm->adm_tag = NULL; 3489 adm->adm_kva = NULL; 3490 } 3491 kfree(adm, M_DEVBUF); 3492 adm = NULL; 3493 } 3494 return (adm); 3495 } 3496 3497 static 3498 void 3499 ahci_dmamem_saveseg(void *info, bus_dma_segment_t *segs, int nsegs, int error) 3500 { 3501 KKASSERT(error == 0); 3502 KKASSERT(nsegs == 1); 3503 *(bus_addr_t *)info = segs->ds_addr; 3504 } 3505 3506 3507 void 3508 ahci_dmamem_free(struct ahci_softc *sc, struct ahci_dmamem *adm) 3509 { 3510 if (adm->adm_map) { 3511 bus_dmamap_unload(adm->adm_tag, adm->adm_map); 3512 bus_dmamap_destroy(adm->adm_tag, adm->adm_map); 3513 adm->adm_map = NULL; 3514 adm->adm_tag = NULL; 3515 adm->adm_kva = NULL; 3516 } 3517 kfree(adm, M_DEVBUF); 3518 } 3519 3520 u_int32_t 3521 ahci_read(struct ahci_softc *sc, bus_size_t r) 3522 { 3523 bus_space_barrier(sc->sc_iot, sc->sc_ioh, r, 4, 3524 BUS_SPACE_BARRIER_READ); 3525 return (bus_space_read_4(sc->sc_iot, sc->sc_ioh, r)); 3526 } 3527 3528 void 3529 ahci_write(struct ahci_softc *sc, bus_size_t r, u_int32_t v) 3530 { 3531 bus_space_write_4(sc->sc_iot, sc->sc_ioh, r, v); 3532 bus_space_barrier(sc->sc_iot, sc->sc_ioh, r, 4, 3533 BUS_SPACE_BARRIER_WRITE); 3534 } 3535 3536 u_int32_t 3537 ahci_pread(struct ahci_port *ap, bus_size_t r) 3538 { 3539 bus_space_barrier(ap->ap_sc->sc_iot, ap->ap_ioh, r, 4, 3540 BUS_SPACE_BARRIER_READ); 3541 return (bus_space_read_4(ap->ap_sc->sc_iot, ap->ap_ioh, r)); 3542 } 3543 3544 void 3545 ahci_pwrite(struct ahci_port *ap, bus_size_t r, u_int32_t v) 3546 { 3547 bus_space_write_4(ap->ap_sc->sc_iot, ap->ap_ioh, r, v); 3548 bus_space_barrier(ap->ap_sc->sc_iot, ap->ap_ioh, r, 4, 3549 BUS_SPACE_BARRIER_WRITE); 3550 } 3551 3552 /* 3553 * Wait up to (timeout) milliseconds for the masked port register to 3554 * match the target. 3555 * 3556 * Timeout is in milliseconds. 3557 */ 3558 int 3559 ahci_pwait_eq(struct ahci_port *ap, int timeout, 3560 bus_size_t r, u_int32_t mask, u_int32_t target) 3561 { 3562 int t; 3563 3564 /* 3565 * Loop hard up to 100uS 3566 */ 3567 for (t = 0; t < 100; ++t) { 3568 if ((ahci_pread(ap, r) & mask) == target) 3569 return (0); 3570 ahci_os_hardsleep(1); /* us */ 3571 } 3572 3573 do { 3574 timeout -= ahci_os_softsleep(); 3575 if ((ahci_pread(ap, r) & mask) == target) 3576 return (0); 3577 } while (timeout > 0); 3578 return (1); 3579 } 3580 3581 int 3582 ahci_wait_ne(struct ahci_softc *sc, bus_size_t r, u_int32_t mask, 3583 u_int32_t target) 3584 { 3585 int t; 3586 3587 /* 3588 * Loop hard up to 100uS 3589 */ 3590 for (t = 0; t < 100; ++t) { 3591 if ((ahci_read(sc, r) & mask) != target) 3592 return (0); 3593 ahci_os_hardsleep(1); /* us */ 3594 } 3595 3596 /* 3597 * And one millisecond the slow way 3598 */ 3599 t = 1000; 3600 do { 3601 t -= ahci_os_softsleep(); 3602 if ((ahci_read(sc, r) & mask) != target) 3603 return (0); 3604 } while (t > 0); 3605 3606 return (1); 3607 } 3608 3609 3610 /* 3611 * Acquire an ata transfer. 3612 * 3613 * Pass a NULL at for direct-attached transfers, and a non-NULL at for 3614 * targets that go through the port multiplier. 3615 */ 3616 struct ata_xfer * 3617 ahci_ata_get_xfer(struct ahci_port *ap, struct ata_port *at) 3618 { 3619 struct ahci_ccb *ccb; 3620 3621 ccb = ahci_get_ccb(ap); 3622 if (ccb == NULL) { 3623 DPRINTF(AHCI_D_XFER, "%s: ahci_ata_get_xfer: NULL ccb\n", 3624 PORTNAME(ap)); 3625 return (NULL); 3626 } 3627 3628 DPRINTF(AHCI_D_XFER, "%s: ahci_ata_get_xfer got slot %d\n", 3629 PORTNAME(ap), ccb->ccb_slot); 3630 3631 bzero(ccb->ccb_xa.fis, sizeof(*ccb->ccb_xa.fis)); 3632 ccb->ccb_xa.at = at; 3633 ccb->ccb_xa.fis->type = ATA_FIS_TYPE_H2D; 3634 3635 return (&ccb->ccb_xa); 3636 } 3637 3638 void 3639 ahci_ata_put_xfer(struct ata_xfer *xa) 3640 { 3641 struct ahci_ccb *ccb = (struct ahci_ccb *)xa; 3642 3643 DPRINTF(AHCI_D_XFER, "ahci_ata_put_xfer slot %d\n", ccb->ccb_slot); 3644 3645 ahci_put_ccb(ccb); 3646 } 3647 3648 int 3649 ahci_ata_cmd(struct ata_xfer *xa) 3650 { 3651 struct ahci_ccb *ccb = (struct ahci_ccb *)xa; 3652 struct ahci_cmd_hdr *cmd_slot; 3653 3654 KKASSERT(xa->state == ATA_S_SETUP); 3655 3656 if (ccb->ccb_port->ap_state == AP_S_FATAL_ERROR) 3657 goto failcmd; 3658 ccb->ccb_done = ahci_ata_cmd_done; 3659 3660 cmd_slot = ccb->ccb_cmd_hdr; 3661 cmd_slot->flags = htole16(5); /* FIS length (in DWORDs) */ 3662 if (ccb->ccb_xa.at) { 3663 cmd_slot->flags |= htole16(ccb->ccb_xa.at->at_target << 3664 AHCI_CMD_LIST_FLAG_PMP_SHIFT); 3665 } 3666 3667 if (xa->flags & ATA_F_WRITE) 3668 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_W); 3669 3670 if (xa->flags & ATA_F_PACKET) 3671 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_A); 3672 3673 if (ahci_load_prdt(ccb) != 0) 3674 goto failcmd; 3675 3676 xa->state = ATA_S_PENDING; 3677 3678 if (xa->flags & ATA_F_POLL) 3679 return (ahci_poll(ccb, xa->timeout, ahci_ata_cmd_timeout)); 3680 3681 crit_enter(); 3682 KKASSERT((xa->flags & ATA_F_TIMEOUT_EXPIRED) == 0); 3683 xa->flags |= ATA_F_TIMEOUT_DESIRED; 3684 ahci_start(ccb); 3685 crit_exit(); 3686 return (xa->state); 3687 3688 failcmd: 3689 crit_enter(); 3690 xa->state = ATA_S_ERROR; 3691 xa->complete(xa); 3692 crit_exit(); 3693 return (ATA_S_ERROR); 3694 } 3695 3696 static void 3697 ahci_ata_cmd_done(struct ahci_ccb *ccb) 3698 { 3699 struct ata_xfer *xa = &ccb->ccb_xa; 3700 int serial; 3701 3702 /* 3703 * NOTE: Callout does not lock port and may race us modifying 3704 * the flags, so make sure its stopped. 3705 * 3706 * A callout race can clean up the ccb. A change in the 3707 * serial number should catch this condition. 3708 */ 3709 if (xa->flags & ATA_F_TIMEOUT_RUNNING) { 3710 serial = ccb->ccb_xa.serial; 3711 callout_stop_sync(&ccb->ccb_timeout); 3712 if (serial != ccb->ccb_xa.serial) { 3713 kprintf("%s: Warning: timeout race ccb %p\n", 3714 PORTNAME(ccb->ccb_port), ccb); 3715 return; 3716 } 3717 xa->flags &= ~ATA_F_TIMEOUT_RUNNING; 3718 } 3719 xa->flags &= ~(ATA_F_TIMEOUT_DESIRED | ATA_F_TIMEOUT_EXPIRED); 3720 ccb->ccb_port->ap_expired &= ~(1 << ccb->ccb_slot); 3721 3722 KKASSERT(xa->state != ATA_S_ONCHIP && xa->state != ATA_S_PUT); 3723 ahci_unload_prdt(ccb); 3724 3725 if (xa->state != ATA_S_TIMEOUT) 3726 xa->complete(xa); 3727 } 3728 3729 /* 3730 * Timeout from callout, MPSAFE - nothing can mess with the CCB's flags 3731 * while the callout is runing. 3732 * 3733 * We can't safely get the port lock here or delay, we could block 3734 * the callout thread. 3735 */ 3736 static void 3737 ahci_ata_cmd_timeout_unserialized(void *arg) 3738 { 3739 struct ahci_ccb *ccb = arg; 3740 struct ahci_port *ap = ccb->ccb_port; 3741 3742 KKASSERT(ccb->ccb_xa.flags & ATA_F_TIMEOUT_RUNNING); 3743 ccb->ccb_xa.flags &= ~ATA_F_TIMEOUT_RUNNING; 3744 ccb->ccb_xa.flags |= ATA_F_TIMEOUT_EXPIRED; 3745 ahci_os_signal_port_thread(ap, AP_SIGF_TIMEOUT); 3746 } 3747 3748 /* 3749 * Timeout code, typically called when the port command processor is running. 3750 * 3751 * We have to be very very careful here. We cannot stop the port unless 3752 * CR is already clear or the only active commands remaining are timed-out 3753 * ones. Otherwise stopping the port will race the command processor and 3754 * we can lose events. While we can theoretically just restart everything 3755 * that could result in a double-issue which will not work for ATAPI commands. 3756 */ 3757 void 3758 ahci_ata_cmd_timeout(struct ahci_ccb *ccb) 3759 { 3760 struct ata_xfer *xa = &ccb->ccb_xa; 3761 struct ahci_port *ap = ccb->ccb_port; 3762 struct ata_port *at; 3763 u_int32_t ci_saved; 3764 u_int32_t mask; 3765 int slot; 3766 3767 at = ccb->ccb_xa.at; 3768 3769 kprintf("%s: CMD TIMEOUT state=%d slot=%d\n" 3770 "\tglb-status 0x%08x\n" 3771 "\tcmd-reg 0x%b\n" 3772 "\tport_status 0x%b\n" 3773 "\tsactive=%08x active=%08x expired=%08x\n" 3774 "\t sact=%08x ci=%08x\n" 3775 "\t STS=%b\n", 3776 ATANAME(ap, at), 3777 ccb->ccb_xa.state, ccb->ccb_slot, 3778 ahci_read(ap->ap_sc, AHCI_REG_IS), 3779 ahci_pread(ap, AHCI_PREG_CMD), AHCI_PFMT_CMD, 3780 ahci_pread(ap, AHCI_PREG_IS), AHCI_PFMT_IS, 3781 ap->ap_sactive, ap->ap_active, ap->ap_expired, 3782 ahci_pread(ap, AHCI_PREG_SACT), 3783 ahci_pread(ap, AHCI_PREG_CI), 3784 ahci_pread(ap, AHCI_PREG_TFD), AHCI_PFMT_TFD_STS 3785 ); 3786 3787 3788 /* 3789 * NOTE: Timeout will not be running if the command was polled. 3790 * If we got here at least one of these flags should be set. 3791 */ 3792 KKASSERT(xa->flags & (ATA_F_POLL | ATA_F_TIMEOUT_DESIRED | 3793 ATA_F_TIMEOUT_RUNNING)); 3794 xa->flags &= ~(ATA_F_TIMEOUT_RUNNING | ATA_F_TIMEOUT_EXPIRED); 3795 3796 if (ccb->ccb_xa.state == ATA_S_PENDING) { 3797 TAILQ_REMOVE(&ap->ap_ccb_pending, ccb, ccb_entry); 3798 ccb->ccb_xa.state = ATA_S_TIMEOUT; 3799 ccb->ccb_done(ccb); 3800 xa->complete(xa); 3801 ahci_issue_pending_commands(ap, NULL); 3802 return; 3803 } 3804 if (ccb->ccb_xa.state != ATA_S_ONCHIP) { 3805 kprintf("%s: Unexpected state during timeout: %d\n", 3806 ATANAME(ap, at), ccb->ccb_xa.state); 3807 return; 3808 } 3809 3810 /* 3811 * Ok, we can only get this command off the chip if CR is inactive 3812 * or if the only commands running on the chip are all expired. 3813 * Otherwise we have to wait until the port is in a safe state. 3814 * Use the ST bit here instead of the CR bit in case the CR bit is 3815 * not implemented via the F_IGN_CR quirk. 3816 * 3817 * Do not set state here, it will cause polls to return when the 3818 * ccb is not yet off the chip. 3819 */ 3820 ap->ap_expired |= 1 << ccb->ccb_slot; 3821 3822 if ((ahci_pread(ap, AHCI_PREG_CMD) & AHCI_PREG_CMD_ST) && 3823 (ap->ap_active | ap->ap_sactive) != ap->ap_expired) { 3824 /* 3825 * If using FBSS or NCQ we can't safely stop the port 3826 * right now. 3827 */ 3828 kprintf("%s: Deferred timeout until its safe, slot %d\n", 3829 ATANAME(ap, at), ccb->ccb_slot); 3830 return; 3831 } 3832 3833 /* 3834 * We can safely stop the port and process all expired ccb's, 3835 * which will include our current ccb. 3836 */ 3837 ci_saved = (ap->ap_sactive) ? ahci_pread(ap, AHCI_PREG_SACT) : 3838 ahci_pread(ap, AHCI_PREG_CI); 3839 ahci_port_stop(ap, 0); 3840 3841 while (ap->ap_expired) { 3842 slot = ffs(ap->ap_expired) - 1; 3843 ap->ap_expired &= ~(1 << slot); 3844 ci_saved &= ~(1 << slot); 3845 ccb = &ap->ap_ccbs[slot]; 3846 ccb->ccb_xa.state = ATA_S_TIMEOUT; 3847 if (ccb->ccb_xa.flags & ATA_F_NCQ) { 3848 KKASSERT(ap->ap_sactive & (1 << slot)); 3849 ap->ap_sactive &= ~(1 << slot); 3850 } else { 3851 KKASSERT(ap->ap_active & (1 << slot)); 3852 ap->ap_active &= ~(1 << slot); 3853 --ap->ap_active_cnt; 3854 } 3855 ccb->ccb_done(ccb); 3856 ccb->ccb_xa.complete(&ccb->ccb_xa); 3857 } 3858 /* ccb invalid now */ 3859 3860 /* 3861 * We can safely CLO the port to clear any BSY/DRQ, a case which 3862 * can occur with port multipliers. This will unbrick the port 3863 * and allow commands to other targets behind the PM continue. 3864 * (FBSS). 3865 * 3866 * Finally, once the port has been restarted we can issue any 3867 * previously saved pending commands, and run the port interrupt 3868 * code to handle any completions which may have occured when 3869 * we saved CI. 3870 */ 3871 if (ahci_pread(ap, AHCI_PREG_TFD) & 3872 (AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) { 3873 kprintf("%s: Warning, issuing CLO after timeout\n", 3874 ATANAME(ap, at)); 3875 ahci_port_clo(ap); 3876 } 3877 ahci_port_start(ap); 3878 3879 /* 3880 * We absolutely must make sure the chipset cleared activity on 3881 * all slots. This sometimes might not happen due to races with 3882 * a chipset interrupt which stops the port before we can manage 3883 * to. For some reason some chipsets don't clear the active 3884 * commands when we turn off CMD_ST after the chip has stopped 3885 * operations itself. 3886 */ 3887 if (ahci_pactive(ap) != 0) { 3888 ahci_port_stop(ap, 0); 3889 ahci_port_start(ap); 3890 if ((mask = ahci_pactive(ap)) != 0) { 3891 kprintf("%s: quick-timeout: chipset failed " 3892 "to clear active cmds %08x\n", 3893 PORTNAME(ap), mask); 3894 } 3895 } 3896 ahci_issue_saved_commands(ap, ci_saved & ~ap->ap_expired); 3897 ahci_issue_pending_commands(ap, NULL); 3898 ahci_port_intr(ap, 0); 3899 } 3900 3901 /* 3902 * Issue a previously saved set of commands 3903 */ 3904 void 3905 ahci_issue_saved_commands(struct ahci_port *ap, u_int32_t ci_saved) 3906 { 3907 if (ci_saved && (ap->ap_flags & AP_F_FBSS_ENABLED) == 0) { 3908 KKASSERT(!((ap->ap_active & ci_saved) && 3909 (ap->ap_sactive & ci_saved))); 3910 KKASSERT((ci_saved & ap->ap_expired) == 0); 3911 if (ap->ap_sactive & ci_saved) 3912 ahci_pwrite(ap, AHCI_PREG_SACT, ci_saved); 3913 ahci_pwrite(ap, AHCI_PREG_CI, ci_saved); 3914 } else if (ci_saved) { 3915 struct ata_port *ccb_at; 3916 int i; 3917 int fis_target; 3918 3919 for (i = 0; i < 32; ++i) { 3920 if ((ci_saved & (1 << i)) == 0) 3921 continue; 3922 ccb_at = ap->ap_ccbs[i].ccb_xa.at; 3923 if (ccb_at) 3924 fis_target = ccb_at->at_target; 3925 else 3926 fis_target = 0; 3927 ahci_pwrite(ap, AHCI_PREG_FBS, 3928 (fis_target << 3929 AHCI_PREG_FBS_DEV_SHIFT) | 3930 AHCI_PREG_FBS_EN); 3931 if (ap->ap_sactive & (1 << i)) 3932 ahci_pwrite(ap, AHCI_PREG_SACT, (1 << i)); 3933 ahci_pwrite(ap, AHCI_PREG_CI, 1 << i); 3934 } 3935 } 3936 } 3937 3938 /* 3939 * Used by the softreset, pmprobe, and read_ncq_error only, in very 3940 * specialized, controlled circumstances. 3941 * 3942 * Only one command may be pending. 3943 */ 3944 void 3945 ahci_quick_timeout(struct ahci_ccb *ccb) 3946 { 3947 struct ahci_port *ap = ccb->ccb_port; 3948 u_int32_t mask; 3949 3950 switch (ccb->ccb_xa.state) { 3951 case ATA_S_PENDING: 3952 TAILQ_REMOVE(&ap->ap_ccb_pending, ccb, ccb_entry); 3953 ccb->ccb_xa.state = ATA_S_TIMEOUT; 3954 break; 3955 case ATA_S_ONCHIP: 3956 /* 3957 * We have to clear the command on-chip. 3958 */ 3959 KKASSERT(ap->ap_active == (1 << ccb->ccb_slot) && 3960 ap->ap_sactive == 0); 3961 ahci_port_stop(ap, 0); 3962 ahci_port_start(ap); 3963 if (ahci_pactive(ap) != 0) { 3964 ahci_port_stop(ap, 0); 3965 ahci_port_start(ap); 3966 if ((mask = ahci_pactive(ap)) != 0) { 3967 kprintf("%s: quick-timeout: chipset failed " 3968 "to clear active cmds %08x\n", 3969 PORTNAME(ap), mask); 3970 } 3971 } 3972 3973 ccb->ccb_xa.state = ATA_S_TIMEOUT; 3974 ap->ap_active &= ~(1 << ccb->ccb_slot); 3975 KKASSERT(ap->ap_active_cnt > 0); 3976 --ap->ap_active_cnt; 3977 break; 3978 default: 3979 panic("%s: ahci_quick_timeout: ccb in bad state %d", 3980 ATANAME(ap, ccb->ccb_xa.at), ccb->ccb_xa.state); 3981 } 3982 } 3983 3984 static void 3985 ahci_dummy_done(struct ata_xfer *xa) 3986 { 3987 } 3988 3989 static void 3990 ahci_empty_done(struct ahci_ccb *ccb) 3991 { 3992 } 3993 3994 int 3995 ahci_set_feature(struct ahci_port *ap, struct ata_port *atx, 3996 int feature, int enable) 3997 { 3998 struct ata_port *at; 3999 struct ata_xfer *xa; 4000 int error; 4001 4002 at = atx ? atx : ap->ap_ata[0]; 4003 4004 xa = ahci_ata_get_xfer(ap, atx); 4005 4006 xa->fis->type = ATA_FIS_TYPE_H2D; 4007 xa->fis->flags = ATA_H2D_FLAGS_CMD | at->at_target; 4008 xa->fis->command = ATA_C_SET_FEATURES; 4009 xa->fis->features = enable ? ATA_SF_SATAFT_ENA : ATA_SF_SATAFT_DIS; 4010 xa->fis->sector_count = feature; 4011 xa->fis->control = ATA_FIS_CONTROL_4BIT; 4012 4013 xa->complete = ahci_dummy_done; 4014 xa->datalen = 0; 4015 xa->flags = ATA_F_POLL; 4016 xa->timeout = 1000; 4017 4018 if (ahci_ata_cmd(xa) == ATA_S_COMPLETE) 4019 error = 0; 4020 else 4021 error = EIO; 4022 ahci_ata_put_xfer(xa); 4023 return(error); 4024 } 4025