AHCI - Implement parallel port scan and thread each port interrupt.
[dragonfly.git] / sys / dev / disk / ahci / ahci.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 2006 David Gwynne <dlg@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 *
16 *
17 * Copyright (c) 2009 The DragonFly Project. All rights reserved.
18 *
19 * This code is derived from software contributed to The DragonFly Project
20 * by Matthew Dillon <dillon@backplane.com>
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 *
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in
30 * the documentation and/or other materials provided with the
31 * distribution.
32 * 3. Neither the name of The DragonFly Project nor the names of its
33 * contributors may be used to endorse or promote products derived
34 * from this software without specific, prior written permission.
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
37 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
38 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
39 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
40 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
41 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
42 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
44 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
45 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
46 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
47 * SUCH DAMAGE.
48 *
49 * $OpenBSD: ahci.c,v 1.147 2009/02/16 21:19:07 miod Exp $
50 */
51
52#include "ahci.h"
53
54int ahci_port_start(struct ahci_port *ap);
55int ahci_port_stop(struct ahci_port *ap, int stop_fis_rx);
56int ahci_port_clo(struct ahci_port *ap);
57void ahci_port_interrupt_enable(struct ahci_port *ap);
58
59int ahci_load_prdt(struct ahci_ccb *);
60void ahci_unload_prdt(struct ahci_ccb *);
61static void ahci_load_prdt_callback(void *info, bus_dma_segment_t *segs,
62 int nsegs, int error);
63void ahci_start(struct ahci_ccb *);
64int ahci_port_softreset(struct ahci_port *ap);
65int ahci_port_pmprobe(struct ahci_port *ap);
66int ahci_port_hardreset(struct ahci_port *ap, int hard);
67void ahci_port_hardstop(struct ahci_port *ap);
68void ahci_flush_tfd(struct ahci_port *ap);
69
70static void ahci_ata_cmd_timeout_unserialized(void *arg);
71
72void ahci_issue_pending_ncq_commands(struct ahci_port *);
73void ahci_issue_pending_commands(struct ahci_port *, int);
74
75struct ahci_ccb *ahci_get_err_ccb(struct ahci_port *);
76void ahci_put_err_ccb(struct ahci_ccb *);
77
78int ahci_port_read_ncq_error(struct ahci_port *, int *);
79
80struct ahci_dmamem *ahci_dmamem_alloc(struct ahci_softc *, bus_dma_tag_t tag);
81void ahci_dmamem_free(struct ahci_softc *, struct ahci_dmamem *);
82static void ahci_dmamem_saveseg(void *info, bus_dma_segment_t *segs, int nsegs, int error);
83
84void ahci_empty_done(struct ahci_ccb *ccb);
85void ahci_ata_cmd_done(struct ahci_ccb *ccb);
86
87/* Wait for all bits in _b to be cleared */
88#define ahci_pwait_clr(_ap, _r, _b) \
89 ahci_pwait_eq((_ap), AHCI_PWAIT_TIMEOUT, (_r), (_b), 0)
90#define ahci_pwait_clr_to(_ap, _to, _r, _b) \
91 ahci_pwait_eq((_ap), _to, (_r), (_b), 0)
92
93/* Wait for all bits in _b to be set */
94#define ahci_pwait_set(_ap, _r, _b) \
95 ahci_pwait_eq((_ap), AHCI_PWAIT_TIMEOUT, (_r), (_b), (_b))
96#define ahci_pwait_set_to(_ap, _to, _r, _b) \
97 ahci_pwait_eq((_ap), _to, (_r), (_b), (_b))
98
99#define AHCI_PWAIT_TIMEOUT 1000
100
101/*
102 * Initialize the global AHCI hardware. This code does not set up any of
103 * its ports.
104 */
105int
106ahci_init(struct ahci_softc *sc)
107{
108 u_int32_t cap, pi;
109
110 DPRINTF(AHCI_D_VERBOSE, " GHC 0x%b",
111 ahci_read(sc, AHCI_REG_GHC), AHCI_FMT_GHC);
112
113 /* save BIOS initialised parameters, enable staggered spin up */
114 cap = ahci_read(sc, AHCI_REG_CAP);
115 cap &= AHCI_REG_CAP_SMPS;
116 cap |= AHCI_REG_CAP_SSS;
117 pi = ahci_read(sc, AHCI_REG_PI);
118
119 /*
120 * Unconditionally reset the controller, do not conditionalize on
121 * trying to figure it if it was previously active or not.
122 */
123 ahci_write(sc, AHCI_REG_GHC, AHCI_REG_GHC_HR);
124 if (ahci_wait_ne(sc, AHCI_REG_GHC, AHCI_REG_GHC_HR,
125 AHCI_REG_GHC_HR) != 0) {
126 device_printf(sc->sc_dev,
127 "unable to reset controller\n");
128 return (1);
129 }
130
131 /* enable ahci (global interrupts disabled) */
132 ahci_write(sc, AHCI_REG_GHC, AHCI_REG_GHC_AE);
133
134 /* restore parameters */
135 ahci_write(sc, AHCI_REG_CAP, cap);
136 ahci_write(sc, AHCI_REG_PI, pi);
137
138 return (0);
139}
140
141/*
142 * Allocate and initialize an AHCI port.
143 */
144int
145ahci_port_alloc(struct ahci_softc *sc, u_int port)
146{
147 struct ahci_port *ap;
148 struct ata_port *at;
149 struct ahci_ccb *ccb;
150 u_int64_t dva;
151 u_int32_t cmd;
152 struct ahci_cmd_hdr *hdr;
153 struct ahci_cmd_table *table;
154 int rc = ENOMEM;
155 int error;
156 int i;
157
158 ap = kmalloc(sizeof(*ap), M_DEVBUF, M_WAITOK | M_ZERO);
159 if (ap == NULL) {
160 device_printf(sc->sc_dev,
161 "unable to allocate memory for port %d\n",
162 port);
163 goto reterr;
164 }
165
166 ksnprintf(ap->ap_name, sizeof(ap->ap_name), "%s%d.%d",
167 device_get_name(sc->sc_dev),
168 device_get_unit(sc->sc_dev),
169 port);
170 sc->sc_ports[port] = ap;
171
172 /*
173 * Allocate enough so we never have to reallocate, it makes
174 * it easier.
175 *
176 * ap_pmcount will be reduced by the scan if we encounter the
177 * port multiplier port prior to target 15.
178 */
179 if (ap->ap_ata == NULL) {
180 ap->ap_ata = kmalloc(sizeof(*ap->ap_ata) * AHCI_MAX_PMPORTS,
181 M_DEVBUF, M_INTWAIT | M_ZERO);
182 for (i = 0; i < AHCI_MAX_PMPORTS; ++i) {
183 at = &ap->ap_ata[i];
184 at->at_ahci_port = ap;
185 at->at_target = i;
186 at->at_probe = ATA_PROBE_NEED_INIT;
187 ksnprintf(at->at_name, sizeof(at->at_name),
188 "%s.%d", ap->ap_name, i);
189 }
190 }
191 if (bus_space_subregion(sc->sc_iot, sc->sc_ioh,
192 AHCI_PORT_REGION(port), AHCI_PORT_SIZE, &ap->ap_ioh) != 0) {
193 device_printf(sc->sc_dev,
194 "unable to create register window for port %d\n",
195 port);
196 goto freeport;
197 }
198
199 ap->ap_sc = sc;
200 ap->ap_num = port;
201 ap->ap_probe = ATA_PROBE_NEED_INIT;
202 TAILQ_INIT(&ap->ap_ccb_free);
203 TAILQ_INIT(&ap->ap_ccb_pending);
204 lockinit(&ap->ap_ccb_lock, "ahcipo", 0, 0);
205
206 /* Disable port interrupts */
207 ahci_pwrite(ap, AHCI_PREG_IE, 0);
208
209 /*
210 * Sec 10.1.2 - deinitialise port if it is already running
211 */
212 cmd = ahci_pread(ap, AHCI_PREG_CMD);
213 if ((cmd & (AHCI_PREG_CMD_ST | AHCI_PREG_CMD_CR |
214 AHCI_PREG_CMD_FRE | AHCI_PREG_CMD_FR)) ||
215 (ahci_pread(ap, AHCI_PREG_SCTL) & AHCI_PREG_SCTL_DET)) {
216 int r;
217
218 r = ahci_port_stop(ap, 1);
219 if (r) {
220 device_printf(sc->sc_dev,
221 "unable to disable %s, ignoring port %d\n",
222 ((r == 2) ? "CR" : "FR"), port);
223 rc = ENXIO;
224 goto freeport;
225 }
226
227 /* Write DET to zero */
228 ahci_pwrite(ap, AHCI_PREG_SCTL, AHCI_PREG_SCTL_IPM_DISABLED);
229 }
230
231 /* Allocate RFIS */
232 ap->ap_dmamem_rfis = ahci_dmamem_alloc(sc, sc->sc_tag_rfis);
233 if (ap->ap_dmamem_rfis == NULL) {
234 kprintf("%s: NORFIS\n", PORTNAME(ap));
235 goto nomem;
236 }
237
238 /* Setup RFIS base address */
239 ap->ap_rfis = (struct ahci_rfis *) AHCI_DMA_KVA(ap->ap_dmamem_rfis);
240 dva = AHCI_DMA_DVA(ap->ap_dmamem_rfis);
241 ahci_pwrite(ap, AHCI_PREG_FBU, (u_int32_t)(dva >> 32));
242 ahci_pwrite(ap, AHCI_PREG_FB, (u_int32_t)dva);
243
244 /* Enable FIS reception and activate port. */
245 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
246 cmd &= ~(AHCI_PREG_CMD_CLO | AHCI_PREG_CMD_PMA);
247 cmd |= AHCI_PREG_CMD_FRE | AHCI_PREG_CMD_POD | AHCI_PREG_CMD_SUD;
248 ahci_pwrite(ap, AHCI_PREG_CMD, cmd | AHCI_PREG_CMD_ICC_ACTIVE);
249
250 /* Check whether port activated. Skip it if not. */
251 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
252 if ((cmd & AHCI_PREG_CMD_FRE) == 0) {
253 kprintf("%s: NOT-ACTIVATED\n", PORTNAME(ap));
254 rc = ENXIO;
255 goto freeport;
256 }
257
258 /* Allocate a CCB for each command slot */
259 ap->ap_ccbs = kmalloc(sizeof(struct ahci_ccb) * sc->sc_ncmds, M_DEVBUF,
260 M_WAITOK | M_ZERO);
261 if (ap->ap_ccbs == NULL) {
262 device_printf(sc->sc_dev,
263 "unable to allocate command list for port %d\n",
264 port);
265 goto freeport;
266 }
267
268 /* Command List Structures and Command Tables */
269 ap->ap_dmamem_cmd_list = ahci_dmamem_alloc(sc, sc->sc_tag_cmdh);
270 ap->ap_dmamem_cmd_table = ahci_dmamem_alloc(sc, sc->sc_tag_cmdt);
271 if (ap->ap_dmamem_cmd_table == NULL ||
272 ap->ap_dmamem_cmd_list == NULL) {
273nomem:
274 device_printf(sc->sc_dev,
275 "unable to allocate DMA memory for port %d\n",
276 port);
277 goto freeport;
278 }
279
280 /* Setup command list base address */
281 dva = AHCI_DMA_DVA(ap->ap_dmamem_cmd_list);
282 ahci_pwrite(ap, AHCI_PREG_CLBU, (u_int32_t)(dva >> 32));
283 ahci_pwrite(ap, AHCI_PREG_CLB, (u_int32_t)dva);
284
285 /* Split CCB allocation into CCBs and assign to command header/table */
286 hdr = AHCI_DMA_KVA(ap->ap_dmamem_cmd_list);
287 table = AHCI_DMA_KVA(ap->ap_dmamem_cmd_table);
288 for (i = 0; i < sc->sc_ncmds; i++) {
289 ccb = &ap->ap_ccbs[i];
290
291 error = bus_dmamap_create(sc->sc_tag_data, BUS_DMA_ALLOCNOW,
292 &ccb->ccb_dmamap);
293 if (error) {
294 device_printf(sc->sc_dev,
295 "unable to create dmamap for port %d "
296 "ccb %d\n", port, i);
297 goto freeport;
298 }
299
300 callout_init(&ccb->ccb_timeout);
301 ccb->ccb_slot = i;
302 ccb->ccb_port = ap;
303 ccb->ccb_cmd_hdr = &hdr[i];
304 ccb->ccb_cmd_table = &table[i];
305 dva = AHCI_DMA_DVA(ap->ap_dmamem_cmd_table) +
306 ccb->ccb_slot * sizeof(struct ahci_cmd_table);
307 ccb->ccb_cmd_hdr->ctba_hi = htole32((u_int32_t)(dva >> 32));
308 ccb->ccb_cmd_hdr->ctba_lo = htole32((u_int32_t)dva);
309
310 ccb->ccb_xa.fis =
311 (struct ata_fis_h2d *)ccb->ccb_cmd_table->cfis;
312 ccb->ccb_xa.packetcmd = ccb->ccb_cmd_table->acmd;
313 ccb->ccb_xa.tag = i;
314
315 ccb->ccb_xa.state = ATA_S_COMPLETE;
316 ahci_put_ccb(ccb);
317 }
318
319 /* Wait for ICC change to complete */
320 ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_ICC);
321
322 /*
323 * Start the port. The helper thread will call ahci_port_init()
324 * so the ports can all be started in parallel. A failure by
325 * ahci_port_init() does not deallocate the port since we still
326 * want hot-plug events.
327 */
328 ahci_os_start_port(ap);
329 return(0);
330freeport:
331 ahci_port_free(sc, port);
332reterr:
333 return (rc);
334}
335
336/*
337 * [re]initialize an idle port. No CCBs should be active.
338 *
339 * If at is NULL we are initializing a directly connected port, otherwise
340 * we are indirectly initializing a port multiplier port.
341 *
342 * This function is called during the initial port allocation sequence
343 * and is also called on hot-plug insertion. We take no chances and
344 * use a portreset instead of a softreset.
345 *
346 * This function is the only way to move a failed port back to active
347 * status.
348 *
349 * Returns 0 if a device is successfully detected.
350 */
351int
352ahci_port_init(struct ahci_port *ap, struct ata_port *atx)
353{
354 int rc;
355
356 /*
357 * Clear all notification bits
358 */
359 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SSNTF)
360 ahci_pwrite(ap, AHCI_PREG_SNTF, -1);
361
362 /*
363 * Hard-reset the port. If a device is detected but it is busy
364 * we try a second time, this time cycling the phy as well.
365 */
366 if (atx)
367 atx->at_probe = ATA_PROBE_NEED_HARD_RESET;
368 else
369 ap->ap_probe = ATA_PROBE_NEED_HARD_RESET;
370 rc = ahci_port_reset(ap, atx, 1);
371 if (rc == EBUSY) {
372 rc = ahci_port_reset(ap, atx, 2);
373 }
374
375 switch (rc) {
376 case ENODEV:
377 /*
378 * We had problems talking to the device on the port.
379 */
380 switch (ahci_pread(ap, AHCI_PREG_SSTS) & AHCI_PREG_SSTS_DET) {
381 case AHCI_PREG_SSTS_DET_DEV_NE:
382 kprintf("%s: Device not communicating\n", PORTNAME(ap));
383 break;
384 case AHCI_PREG_SSTS_DET_PHYOFFLINE:
385 kprintf("%s: PHY offline\n", PORTNAME(ap));
386 break;
387 default:
388 kprintf("%s: No device detected\n", PORTNAME(ap));
389 break;
390 }
391 break;
392
393 case EBUSY:
394 /*
395 * The device on the port is still telling us its busy,
396 * which means that it is not properly handling a SATA
397 * port COMRESET.
398 *
399 * It may be possible to softreset the device using CLO
400 * and a device reset command.
401 */
402 kprintf("%s: Device on port is bricked, trying softreset\n",
403 PORTNAME(ap));
404
405 rc = ahci_port_reset(ap, atx, 0);
406 if (rc) {
407 kprintf("%s: Unable unbrick device\n",
408 PORTNAME(ap));
409 } else {
410 kprintf("%s: Successfully unbricked\n",
411 PORTNAME(ap));
412 }
413 break;
414
415 default:
416 break;
417 }
418
419 /*
420 * Command transfers can only be enabled if a device was successfully
421 * detected.
422 *
423 * Allocate or deallocate the ap_ata array here too.
424 */
425 switch(ap->ap_type) {
426 case ATA_PORT_T_NONE:
427 ap->ap_pmcount = 0;
428 break;
429 case ATA_PORT_T_PM:
430 /* already set */
431 break;
432 default:
433 ap->ap_pmcount = 1;
434 break;
435 }
436
437 /*
438 * Start the port if we succeeded.
439 *
440 * There's nothing to start for devices behind a port multiplier.
441 */
442 if (rc == 0 && atx == NULL) {
443 if (ahci_port_start(ap)) {
444 kprintf("%s: failed to start command DMA on port, "
445 "disabling\n", PORTNAME(ap));
446 rc = ENXIO; /* couldn't start port */
447 }
448 }
449
450 /*
451 * Flush interrupts on the port. XXX
452 *
453 * Enable interrupts on the port whether a device is sitting on
454 * it or not, to handle hot-plug events.
455 */
456 if (atx == NULL) {
457 ahci_pwrite(ap, AHCI_PREG_IS, ahci_pread(ap, AHCI_PREG_IS));
458 ahci_write(ap->ap_sc, AHCI_REG_IS, 1 << ap->ap_num);
459
460 ahci_port_interrupt_enable(ap);
461 }
462 return(rc);
463}
464
465/*
466 * Enable or re-enable interrupts on a port.
467 *
468 * This routine is called from the port initialization code or from the
469 * helper thread as the real interrupt may be forced to turn off certain
470 * interrupt sources.
471 */
472void
473ahci_port_interrupt_enable(struct ahci_port *ap)
474{
475 u_int32_t data;
476
477 data = AHCI_PREG_IE_TFEE | AHCI_PREG_IE_HBFE |
478 AHCI_PREG_IE_IFE | AHCI_PREG_IE_OFE |
479 AHCI_PREG_IE_DPE | AHCI_PREG_IE_UFE |
480 AHCI_PREG_IE_PCE | AHCI_PREG_IE_PRCE |
481 AHCI_PREG_IE_DHRE;
482 if (ap->ap_sc->sc_cap & AHCI_REG_CAP_SSNTF)
483 data |= AHCI_PREG_IE_SDBE;
484#ifdef AHCI_COALESCE
485 if (sc->sc_ccc_ports & (1 << port)
486 data &= ~(AHCI_PREG_IE_SDBE | AHCI_PREG_IE_DHRE);
487#endif
488 ahci_pwrite(ap, AHCI_PREG_IE, data);
489}
490
491/*
492 * Run the port / target state machine from a main context.
493 *
494 * The state machine for the port is always run.
495 *
496 * If atx is non-NULL run the state machine for a particular target.
497 * If atx is NULL run the state machine for all targets.
498 */
499void
500ahci_port_state_machine(struct ahci_port *ap)
501{
502 struct ata_port *at;
503 u_int32_t data;
504 int target;
505 int didsleep;
506
507 if (ap->ap_type == ATA_PORT_T_NONE) {
508 if (ap->ap_probe == ATA_PROBE_NEED_INIT) {
509 for (target = 0; target < AHCI_MAX_PMPORTS; ++target) {
510 at = &ap->ap_ata[target];
511 at->at_probe = ATA_PROBE_NEED_INIT;
512 }
513 ahci_port_init(ap, NULL);
514 }
515 if (ap->ap_probe == ATA_PROBE_NEED_HARD_RESET)
516 ahci_port_reset(ap, NULL, 1);
517 if (ap->ap_probe == ATA_PROBE_NEED_SOFT_RESET)
518 ahci_port_reset(ap, NULL, 0);
519 if (ap->ap_probe == ATA_PROBE_NEED_IDENT)
520 ahci_cam_probe(ap, NULL);
521 }
522 if (ap->ap_type != ATA_PORT_T_PM) {
523 if (ap->ap_probe == ATA_PROBE_FAILED) {
524 ahci_cam_changed(ap, NULL, 0);
525 } else if (ap->ap_probe >= ATA_PROBE_NEED_IDENT) {
526 ahci_cam_changed(ap, NULL, 1);
527 }
528 return;
529 }
530
531 for (;;) {
532 if (ahci_pm_read(ap, 15, AHCI_PMREG_EINFO, &data)) {
533 kprintf("%s: PM unable to read hot-plug bitmap\n",
534 PORTNAME(ap));
535 break;
536 }
537 data &= (1 << ap->ap_pmcount) - 1;
538
539 /*
540 * Stop if no ports on the target have indicated a state
541 * change.
542 */
543 if (data == 0)
544 break;
545
546 /*
547 * New devices showing up in the bitmap require some spin-up
548 * time before we start probing them. Reset didsleep. The
549 * first new device we detect will sleep before probing.
550 */
551 didsleep = 0;
552
553 for (target = 0; target < ap->ap_pmcount; ++target) {
554 at = &ap->ap_ata[target];
555
556 /*
557 * Check the target state for targets behind the PM
558 * which have changed state. This will adjust
559 * at_probe and set ATA_PORT_F_RESCAN
560 *
561 * We want to wait at least 4 seconds before probing
562 * a newly inserted device. If the check status
563 * indicates a device is present and in need of a
564 * hard reset, we make sure we have slept before
565 * continuing.
566 */
567 if (data & (1 << target)) {
568 ahci_pm_check_good(ap, target);
569 if (at->at_probe == ATA_PROBE_NEED_HARD_RESET) {
570 if (didsleep == 0) {
571 didsleep = 1;
572 ahci_os_sleep(4000);
573 }
574 }
575 }
576
577 /*
578 * Run through the state machine as necessary.
579 */
580 if (at->at_type == ATA_PORT_T_NONE &&
581 at->at_probe != ATA_PROBE_FAILED) {
582 if (at->at_probe == ATA_PROBE_NEED_INIT)
583 ahci_port_init(ap, at);
584 if (at->at_probe == ATA_PROBE_NEED_HARD_RESET)
585 ahci_port_reset(ap, at, 1);
586 if (at->at_probe == ATA_PROBE_NEED_SOFT_RESET)
587 ahci_port_reset(ap, at, 0);
588 if (at->at_probe == ATA_PROBE_NEED_IDENT)
589 ahci_cam_probe(ap, at);
590 }
591
592 if (data & (1 << target)) {
593 kprintf("%s: HOTPLUG event, ",
594 ATANAME(ap, at));
595 if (at->at_probe >= ATA_PROBE_NEED_IDENT)
596 kprintf("device inserted\n");
597 else
598 kprintf("device removed\n");
599 }
600
601 /*
602 * Initial conditions set automatic add/rem
603 */
604 if (at->at_probe <= ATA_PROBE_NEED_HARD_RESET)
605 at->at_features |= ATA_PORT_F_RESCAN;
606
607 /*
608 * add or remove from CAM
609 */
610 if (at->at_features & ATA_PORT_F_RESCAN) {
611 at->at_features &= ~ATA_PORT_F_RESCAN;
612 if (at->at_probe == ATA_PROBE_FAILED) {
613 ahci_cam_changed(ap, at, 0);
614 } else if (at->at_probe >= ATA_PROBE_NEED_IDENT) {
615 ahci_cam_changed(ap, at, 1);
616 }
617 }
618 }
619 }
620}
621
622
623/*
624 * De-initialize and detach a port.
625 */
626void
627ahci_port_free(struct ahci_softc *sc, u_int port)
628{
629 struct ahci_port *ap = sc->sc_ports[port];
630 struct ahci_ccb *ccb;
631
632 /*
633 * Ensure port is disabled and its interrupts are all flushed.
634 */
635 if (ap->ap_sc) {
636 ahci_port_stop(ap, 1);
637 ahci_os_stop_port(ap);
638 ahci_pwrite(ap, AHCI_PREG_CMD, 0);
639 ahci_pwrite(ap, AHCI_PREG_IE, 0);
640 ahci_pwrite(ap, AHCI_PREG_IS, ahci_pread(ap, AHCI_PREG_IS));
641 ahci_write(sc, AHCI_REG_IS, 1 << port);
642 }
643
644 if (ap->ap_ccbs) {
645 while ((ccb = ahci_get_ccb(ap)) != NULL) {
646 if (ccb->ccb_dmamap) {
647 bus_dmamap_destroy(sc->sc_tag_data,
648 ccb->ccb_dmamap);
649 ccb->ccb_dmamap = NULL;
650 }
651 }
652 kfree(ap->ap_ccbs, M_DEVBUF);
653 ap->ap_ccbs = NULL;
654 }
655
656 if (ap->ap_dmamem_cmd_list) {
657 ahci_dmamem_free(sc, ap->ap_dmamem_cmd_list);
658 ap->ap_dmamem_cmd_list = NULL;
659 }
660 if (ap->ap_dmamem_rfis) {
661 ahci_dmamem_free(sc, ap->ap_dmamem_rfis);
662 ap->ap_dmamem_rfis = NULL;
663 }
664 if (ap->ap_dmamem_cmd_table) {
665 ahci_dmamem_free(sc, ap->ap_dmamem_cmd_table);
666 ap->ap_dmamem_cmd_table = NULL;
667 }
668 if (ap->ap_ata) {
669 kfree(ap->ap_ata, M_DEVBUF);
670 ap->ap_ata = NULL;
671 }
672
673 /* bus_space(9) says we dont free the subregions handle */
674
675 kfree(ap, M_DEVBUF);
676 sc->sc_ports[port] = NULL;
677}
678
679/*
680 * Start high-level command processing on the port
681 */
682int
683ahci_port_start(struct ahci_port *ap)
684{
685 u_int32_t r, oldr, s, olds, is, oldis, tfd, oldtfd;
686
687 /*
688 * FRE must be turned on before ST. Wait for FR to go active
689 * before turning on ST. The spec doesn't seem to think this
690 * is necessary but waiting here avoids an on-off race in the
691 * ahci_port_stop() code.
692 */
693 /* XXX REMOVE ME */
694 olds = ahci_pread(ap, AHCI_PREG_SERR);
695 oldis= ahci_pread(ap, AHCI_PREG_IS);
696 oldtfd = ahci_pread(ap, AHCI_PREG_TFD);
697 oldr = r = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
698 if ((r & AHCI_PREG_CMD_FRE) == 0) {
699 r |= AHCI_PREG_CMD_FRE;
700 ahci_pwrite(ap, AHCI_PREG_CMD, r);
701 }
702 if ((ap->ap_sc->sc_flags & AHCI_F_IGN_FR) == 0) {
703 if (ahci_pwait_set(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_FR)) {
704 kprintf("%s: Cannot start FIS reception\n",
705 PORTNAME(ap));
706 return (2);
707 }
708 }
709
710 /*
711 * Turn on ST, wait for CR to come up.
712 */
713 r |= AHCI_PREG_CMD_ST;
714 ahci_pwrite(ap, AHCI_PREG_CMD, r);
715 if (ahci_pwait_set(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_CR)) {
716 s = ahci_pread(ap, AHCI_PREG_SERR);
717 is = ahci_pread(ap, AHCI_PREG_IS);
718 tfd = ahci_pread(ap, AHCI_PREG_TFD);
719 kprintf("%s: Cannot start command DMA\n"
720 "OCMD=%b OSERR=%b\n"
721 "NCMP=%b NSERR=%b\n"
722 "OLDIS=%b\nNEWIS=%b\n"
723 "OLDTFD=%b\nNEWTFD=%b\n",
724 PORTNAME(ap),
725 oldr, AHCI_PFMT_CMD, olds, AHCI_PFMT_SERR,
726 r, AHCI_PFMT_CMD, s, AHCI_PFMT_SERR,
727 oldis, AHCI_PFMT_IS, is, AHCI_PFMT_IS,
728 oldtfd, AHCI_PFMT_TFD_STS, tfd, AHCI_PFMT_TFD_STS);
729 return (1);
730 }
731
732#ifdef AHCI_COALESCE
733 /*
734 * (Re-)enable coalescing on the port.
735 */
736 if (ap->ap_sc->sc_ccc_ports & (1 << ap->ap_num)) {
737 ap->ap_sc->sc_ccc_ports_cur |= (1 << ap->ap_num);
738 ahci_write(ap->ap_sc, AHCI_REG_CCC_PORTS,
739 ap->ap_sc->sc_ccc_ports_cur);
740 }
741#endif
742
743 return (0);
744}
745
746/*
747 * Stop high-level command processing on a port
748 */
749int
750ahci_port_stop(struct ahci_port *ap, int stop_fis_rx)
751{
752 u_int32_t r;
753
754#ifdef AHCI_COALESCE
755 /*
756 * Disable coalescing on the port while it is stopped.
757 */
758 if (ap->ap_sc->sc_ccc_ports & (1 << ap->ap_num)) {
759 ap->ap_sc->sc_ccc_ports_cur &= ~(1 << ap->ap_num);
760 ahci_write(ap->ap_sc, AHCI_REG_CCC_PORTS,
761 ap->ap_sc->sc_ccc_ports_cur);
762 }
763#endif
764
765 /*
766 * Turn off ST, then wait for CR to go off.
767 */
768 r = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
769 r &= ~AHCI_PREG_CMD_ST;
770 ahci_pwrite(ap, AHCI_PREG_CMD, r);
771
772 if (ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_CR)) {
773 kprintf("%s: Port bricked, unable to stop (ST)\n",
774 PORTNAME(ap));
775 return (1);
776 }
777
778#if 0
779 /*
780 * Turn off FRE, then wait for FR to go off. FRE cannot
781 * be turned off until CR transitions to 0.
782 */
783 if ((r & AHCI_PREG_CMD_FR) == 0) {
784 kprintf("%s: FR stopped, clear FRE for next start\n",
785 PORTNAME(ap));
786 stop_fis_rx = 2;
787 }
788#endif
789 if (stop_fis_rx) {
790 r &= ~AHCI_PREG_CMD_FRE;
791 ahci_pwrite(ap, AHCI_PREG_CMD, r);
792 if (ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_FR)) {
793 kprintf("%s: Port bricked, unable to stop (FRE)\n",
794 PORTNAME(ap));
795 return (2);
796 }
797 }
798
799 return (0);
800}
801
802/*
803 * AHCI command list override -> forcibly clear TFD.STS.{BSY,DRQ}
804 */
805int
806ahci_port_clo(struct ahci_port *ap)
807{
808 struct ahci_softc *sc = ap->ap_sc;
809 u_int32_t cmd;
810
811 /* Only attempt CLO if supported by controller */
812 if ((ahci_read(sc, AHCI_REG_CAP) & AHCI_REG_CAP_SCLO) == 0)
813 return (1);
814
815 /* Issue CLO */
816 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
817#ifdef DIAGNOSTIC
818 if (cmd & AHCI_PREG_CMD_ST) {
819 kprintf("%s: CLO requested while port running\n",
820 PORTNAME(ap));
821 }
822#endif
823 ahci_pwrite(ap, AHCI_PREG_CMD, cmd | AHCI_PREG_CMD_CLO);
824
825 /* Wait for completion */
826 if (ahci_pwait_clr(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_CLO)) {
827 kprintf("%s: CLO did not complete\n", PORTNAME(ap));
828 return (1);
829 }
830
831 return (0);
832}
833
834/*
835 * Reset a port.
836 *
837 * If hard is 0 perform a softreset of the port.
838 * If hard is 1 perform a hard reset of the port.
839 * If hard is 2 perform a hard reset of the port and cycle the phy.
840 *
841 * If at is non-NULL an indirect port via a port-multiplier is being
842 * reset, otherwise a direct port is being reset.
843 *
844 * NOTE: Indirect ports can only be soft-reset.
845 */
846int
847ahci_port_reset(struct ahci_port *ap, struct ata_port *at, int hard)
848{
849 int rc;
850
851 if (hard) {
852 if (at)
853 rc = ahci_pm_hardreset(ap, at->at_target, hard);
854 else
855 rc = ahci_port_hardreset(ap, hard);
856 } else {
857 if (at)
858 rc = ahci_pm_softreset(ap, at->at_target);
859 else
860 rc = ahci_port_softreset(ap);
861#if 0
862 if (rc && at == NULL)
863 rc = ahci_port_hardreset(ap, hard);
864#endif
865 }
866 return(rc);
867}
868
869/*
870 * AHCI soft reset, Section 10.4.1
871 *
872 * (at) will be NULL when soft-resetting a directly-attached device, and
873 * non-NULL when soft-resetting a device through a port multiplier.
874 *
875 * This function keeps port communications intact and attempts to generate
876 * a reset to the connected device using device commands.
877 */
878int
879ahci_port_softreset(struct ahci_port *ap)
880{
881 struct ahci_ccb *ccb = NULL;
882 struct ahci_cmd_hdr *cmd_slot;
883 u_int8_t *fis;
884 int error;
885 u_int32_t cmd;
886
887 error = EIO;
888
889 kprintf("%s: START SOFTRESET %b\n", PORTNAME(ap),
890 ahci_pread(ap, AHCI_PREG_CMD), AHCI_PFMT_CMD);
891
892 DPRINTF(AHCI_D_VERBOSE, "%s: soft reset\n", PORTNAME(ap));
893
894 crit_enter();
895 ap->ap_flags |= AP_F_IN_RESET;
896 ap->ap_state = AP_S_NORMAL;
897
898 /*
899 * Remember port state in cmd (main to restore start/stop)
900 *
901 * Idle port.
902 */
903 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
904 if (ahci_port_stop(ap, 0)) {
905 kprintf("%s: failed to stop port, cannot softreset\n",
906 PORTNAME(ap));
907 goto err;
908 }
909
910 /*
911 * Request CLO if device appears hung.
912 */
913 if (ahci_pread(ap, AHCI_PREG_TFD) &
914 (AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
915 ahci_port_clo(ap);
916 }
917
918 /*
919 * This is an attempt to clear errors so a new signature will
920 * be latched. It isn't working properly. XXX
921 */
922 ahci_flush_tfd(ap);
923 ahci_pwrite(ap, AHCI_PREG_SERR, -1);
924
925 /* Restart port */
926 if (ahci_port_start(ap)) {
927 kprintf("%s: failed to start port, cannot softreset\n",
928 PORTNAME(ap));
929 goto err;
930 }
931
932 /* Check whether CLO worked */
933 if (ahci_pwait_clr(ap, AHCI_PREG_TFD,
934 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
935 kprintf("%s: CLO %s, need port reset\n",
936 PORTNAME(ap),
937 (ahci_read(ap->ap_sc, AHCI_REG_CAP) & AHCI_REG_CAP_SCLO)
938 ? "failed" : "unsupported");
939 error = EBUSY;
940 goto err;
941 }
942
943 /*
944 * Prep first D2H command with SRST feature & clear busy/reset flags
945 *
946 * It is unclear which other fields in the FIS are used. Just zero
947 * everything.
948 */
949 ccb = ahci_get_err_ccb(ap);
950 ccb->ccb_xa.at = NULL;
951 cmd_slot = ccb->ccb_cmd_hdr;
952
953 fis = ccb->ccb_cmd_table->cfis;
954 bzero(fis, sizeof(ccb->ccb_cmd_table->cfis));
955 fis[0] = ATA_FIS_TYPE_H2D;
956 fis[15] = ATA_FIS_CONTROL_SRST|ATA_FIS_CONTROL_4BIT;
957
958 cmd_slot->prdtl = 0;
959 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */
960 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_C); /* Clear busy on OK */
961 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_R); /* Reset */
962
963 ccb->ccb_xa.state = ATA_S_PENDING;
964 ccb->ccb_xa.flags = 0;
965 if (ahci_poll(ccb, 1000, NULL) != 0 ||
966 ccb->ccb_xa.state != ATA_S_COMPLETE) {
967 kprintf("%s: First FIS failed\n", PORTNAME(ap));
968 goto err;
969 }
970
971 /*
972 * The device may muff the PHY up.
973 */
974 ahci_os_sleep(10); /* 3ms min, use 10 */
975
976 /*
977 * Prep second D2H command to read status and complete reset sequence
978 * AHCI 10.4.1 and "Serial ATA Revision 2.6". I can't find the ATA
979 * Rev 2.6 and it is unclear how the second FIS should be set up
980 * from the AHCI document.
981 *
982 * Give the device 3ms before sending the second FIS.
983 *
984 * It is unclear which other fields in the FIS are used. Just zero
985 * everything.
986 */
987 bzero(fis, sizeof(ccb->ccb_cmd_table->cfis));
988 fis[0] = ATA_FIS_TYPE_H2D;
989 fis[15] = ATA_FIS_CONTROL_4BIT;
990
991 cmd_slot->prdtl = 0;
992 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */
993
994 ccb->ccb_xa.state = ATA_S_PENDING;
995 ccb->ccb_xa.flags = 0;
996 if (ahci_poll(ccb, 1000, NULL) != 0 ||
997 ccb->ccb_xa.state != ATA_S_COMPLETE) {
998 kprintf("%s: Second FIS failed\n", PORTNAME(ap));
999 goto err;
1000 }
1001
1002 if (ahci_pwait_clr(ap, AHCI_PREG_TFD,
1003 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
1004 kprintf("%s: device didn't come ready after reset, TFD: 0x%b\n",
1005 PORTNAME(ap),
1006 ahci_pread(ap, AHCI_PREG_TFD), AHCI_PFMT_TFD_STS);
1007 error = EBUSY;
1008 goto err;
1009 }
1010 ahci_os_sleep(10);
1011
1012 /*
1013 * If the softreset is trying to clear a BSY condition after a
1014 * normal portreset we assign the port type.
1015 *
1016 * If the softreset is being run first as part of the ccb error
1017 * processing code then report if the device signature changed
1018 * unexpectedly.
1019 */
1020 if (ap->ap_type == ATA_PORT_T_NONE) {
1021 ap->ap_type = ahci_port_signature_detect(ap, NULL);
1022 } else {
1023 if (ahci_port_signature_detect(ap, NULL) != ap->ap_type) {
1024 kprintf("%s: device signature unexpectedly "
1025 "changed\n", PORTNAME(ap));
1026 error = EBUSY; /* XXX */
1027 }
1028 }
1029 error = 0;
1030
1031 ahci_os_sleep(3);
1032err:
1033 if (ccb != NULL) {
1034 /*
1035 * Abort our command, if it failed, by stopping command DMA.
1036 */
1037 if (error && (ap->ap_active & (1 << ccb->ccb_slot))) {
1038 kprintf("%s: stopping the port, softreset slot "
1039 "%d was still active.\n",
1040 PORTNAME(ap),
1041 ccb->ccb_slot);
1042 ahci_port_stop(ap, 0);
1043 }
1044 ccb->ccb_xa.state = ATA_S_ERROR;
1045 fis[15] = 0;
1046 ahci_put_err_ccb(ccb);
1047
1048 /*
1049 * If the target is busy use CLO to clear the busy
1050 * condition. The BSY should be cleared on the next
1051 * start.
1052 */
1053 if (ahci_pread(ap, AHCI_PREG_TFD) &
1054 (AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
1055 ahci_port_clo(ap);
1056 }
1057 }
1058
1059 /*
1060 * If we failed to softreset make the port quiescent, otherwise
1061 * make sure the port's start/stop state matches what it was on
1062 * entry.
1063 *
1064 * Don't kill the port if the softreset is on a port multiplier
1065 * target, that would kill all the targets!
1066 */
1067 if (error) {
1068 ahci_port_hardstop(ap);
1069 /* ap_probe set to failed */
1070 } else if (cmd & AHCI_PREG_CMD_ST) {
1071 ap->ap_probe = ATA_PROBE_NEED_IDENT;
1072 kprintf("%s: STARTING PORT\n", PORTNAME(ap));
1073 ahci_port_start(ap);
1074 } else {
1075 ap->ap_probe = ATA_PROBE_NEED_IDENT;
1076 kprintf("%s: STOPPING PORT\n", PORTNAME(ap));
1077 ahci_port_stop(ap, !(cmd & AHCI_PREG_CMD_FRE));
1078 }
1079 ap->ap_flags &= ~AP_F_IN_RESET;
1080 crit_exit();
1081
1082 kprintf("%s: END SOFTRESET\n", PORTNAME(ap));
1083
1084 return (error);
1085}
1086
1087/*
1088 * AHCI port reset, Section 10.4.2
1089 *
1090 * This function does a hard reset of the port. Note that the device
1091 * connected to the port could still end-up hung.
1092 */
1093int
1094ahci_port_hardreset(struct ahci_port *ap, int hard)
1095{
1096 u_int32_t cmd, r;
1097 int error;
1098 int loop;
1099 int type;
1100
1101 DPRINTF(AHCI_D_VERBOSE, "%s: port reset\n", PORTNAME(ap));
1102
1103 ap->ap_flags |= AP_F_IN_RESET;
1104
1105 /*
1106 * Idle the port,
1107 */
1108 ahci_port_stop(ap, 0);
1109 ap->ap_state = AP_S_NORMAL;
1110 error = 0;
1111
1112 /*
1113 * The port may have been quiescent with its SUD bit cleared, so
1114 * set the SUD (spin up device).
1115 */
1116 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
1117 cmd |= AHCI_PREG_CMD_SUD;
1118 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
1119
1120 /*
1121 * Perform device detection. Cycle the PHY off, wait 10ms.
1122 * This simulates the SATA cable being physically unplugged.
1123 */
1124 ap->ap_type = ATA_PORT_T_NONE;
1125
1126 r = AHCI_PREG_SCTL_IPM_DISABLED;
1127 if (hard == 2)
1128 r |= AHCI_PREG_SCTL_DET_DISABLE;
1129 ahci_pwrite(ap, AHCI_PREG_SCTL, r);
1130 ahci_os_sleep(10);
1131
1132 /*
1133 * Start transmitting COMRESET. COMRESET must be sent for at
1134 * least 1ms.
1135 */
1136 r = AHCI_PREG_SCTL_IPM_DISABLED | AHCI_PREG_SCTL_DET_INIT;
1137 if (AhciForceGen1 & (1 << ap->ap_num)) {
1138 kprintf("%s: Force 1.5Gbits\n", PORTNAME(ap));
1139 r |= AHCI_PREG_SCTL_SPD_GEN1;
1140 } else {
1141 r |= AHCI_PREG_SCTL_SPD_ANY;
1142 }
1143 ahci_pwrite(ap, AHCI_PREG_SCTL, r);
1144 ahci_os_sleep(1);
1145
1146 /*
1147 * Only SERR_DIAG_X needs to be cleared for TFD updates, but
1148 * since we are hard-resetting the port we might as well clear
1149 * the whole enchillada
1150 */
1151 ahci_flush_tfd(ap);
1152 ahci_pwrite(ap, AHCI_PREG_SERR, -1);
1153 r &= ~AHCI_PREG_SCTL_DET_INIT;
1154 r |= AHCI_PREG_SCTL_DET_NONE;
1155 ahci_pwrite(ap, AHCI_PREG_SCTL, r);
1156
1157 /*
1158 * Try to determine if there is a device on the port.
1159 *
1160 * Give the device 3/10 second to at least be detected.
1161 * If we fail clear PRCS (phy detect) since we may cycled
1162 * the phy and probably caused another PRCS interrupt.
1163 */
1164 for (loop = 30; loop; --loop) {
1165 r = ahci_pread(ap, AHCI_PREG_SSTS);
1166 if (r & AHCI_PREG_SSTS_DET)
1167 break;
1168 ahci_os_sleep(10);
1169 }
1170 if (loop == 0) {
1171 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_PRCS);
1172 kprintf("%s: Port appears to be unplugged\n",
1173 PORTNAME(ap));
1174 error = ENODEV;
1175 }
1176
1177 /*
1178 * There is something on the port. Give the device 3 seconds
1179 * to fully negotiate.
1180 */
1181 if (error == 0 &&
1182 ahci_pwait_eq(ap, 3000, AHCI_PREG_SSTS,
1183 AHCI_PREG_SSTS_DET, AHCI_PREG_SSTS_DET_DEV)) {
1184 kprintf("%s: Device may be powered down\n",
1185 PORTNAME(ap));
1186 error = ENODEV;
1187 }
1188
1189 /*
1190 * Wait for the device to become ready.
1191 *
1192 * This can take more then a second, give it 3 seconds. If we
1193 * succeed give the device another 3ms after that.
1194 *
1195 * NOTE: Port multipliers can do two things here. First they can
1196 * return device-ready if a device is on target 0 and also
1197 * return the signature for that device. If there is no
1198 * device on target 0 then BSY/DRQ is never cleared and
1199 * it never comes ready.
1200 */
1201 if (error == 0 &&
1202 ahci_pwait_clr_to(ap, 3000, AHCI_PREG_TFD,
1203 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
1204 /*
1205 * The device is bricked or its a port multiplier and will
1206 * not unbusy until we do the pmprobe CLO softreset sequence.
1207 */
1208 error = ahci_port_pmprobe(ap);
1209 if (error) {
1210 kprintf("%s: Device will not come ready 0x%b\n",
1211 PORTNAME(ap),
1212 ahci_pread(ap, AHCI_PREG_TFD),
1213 AHCI_PFMT_TFD_STS);
1214 } else {
1215 ap->ap_type = ATA_PORT_T_PM;
1216 }
1217 } else if (error == 0) {
1218 /*
1219 * We generally will not get a port multiplier signature in
1220 * this case even if this is a port multiplier, because of
1221 * Intel's stupidity. We almost certainly got target 0
1222 * behind the PM, if there is a PM.
1223 *
1224 * Save the signature and probe for a PM. If we do not
1225 * find a PM then use the saved signature and return
1226 * success.
1227 */
1228 type = ahci_port_signature_detect(ap, NULL);
1229 error = ahci_port_pmprobe(ap);
1230 if (error) {
1231 ap->ap_type = type;
1232 error = 0;
1233 } else {
1234 ap->ap_type = ATA_PORT_T_PM;
1235 kprintf("%s: Port multiplier detected\n",
1236 PORTNAME(ap));
1237 }
1238 }
1239
1240 /*
1241 * hard-stop the port if we failed. This will set ap_probe
1242 * to FAILED.
1243 */
1244 ap->ap_flags &= ~AP_F_IN_RESET;
1245 if (error) {
1246 ahci_port_hardstop(ap);
1247 /* ap_probe set to failed */
1248 } else {
1249 if (ap->ap_type == ATA_PORT_T_PM)
1250 ap->ap_probe = ATA_PROBE_GOOD;
1251 else
1252 ap->ap_probe = ATA_PROBE_NEED_SOFT_RESET;
1253 }
1254 return (error);
1255}
1256
1257/*
1258 * AHCI port multiplier probe. This routine is run by the hardreset code
1259 * if it gets past the device detect, whether or not BSY is found to be
1260 * stuck.
1261 *
1262 * We MUST use CLO to properly probe whether the port multiplier exists
1263 * or not.
1264 *
1265 * Return 0 on success, non-zero on failure.
1266 */
1267int
1268ahci_port_pmprobe(struct ahci_port *ap)
1269{
1270 struct ahci_cmd_hdr *cmd_slot;
1271 struct ahci_ccb *ccb = NULL;
1272 u_int8_t *fis = NULL;
1273 int rc = EIO;
1274 u_int32_t cmd;
1275 int count;
1276
1277 /*
1278 * If we don't support port multipliers don't try to detect one.
1279 */
1280 if ((ap->ap_sc->sc_cap & AHCI_REG_CAP_SPM) == 0)
1281 return (ENODEV);
1282
1283 count = 2;
1284#if 0
1285 kprintf("%s: START PMPROBE\n", PORTNAME(ap));
1286#endif
1287retry:
1288 /*
1289 * This code is only called from hardreset, which does not
1290 * high level command processing. The port should be stopped.
1291 *
1292 * Set PMA mode while the port is stopped.
1293 *
1294 * NOTE: On retry the port might be running, stopped, or failed.
1295 */
1296 ahci_port_stop(ap, 0);
1297 ap->ap_state = AP_S_NORMAL;
1298 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
1299 cmd |= AHCI_PREG_CMD_PMA;
1300 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
1301
1302 /*
1303 * Flush any errors and request CLO unconditionally, then start
1304 * the port.
1305 */
1306 ahci_flush_tfd(ap);
1307 ahci_port_clo(ap);
1308 if (ahci_port_start(ap)) {
1309 kprintf("%s: PMPROBE failed to start port, cannot softreset\n",
1310 PORTNAME(ap));
1311 goto err;
1312 }
1313
1314 /*
1315 * Check whether CLO worked
1316 */
1317 if (ahci_pwait_clr(ap, AHCI_PREG_TFD,
1318 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
1319 kprintf("%s: PMPROBE CLO %s, need port reset\n",
1320 PORTNAME(ap),
1321 (ahci_read(ap->ap_sc, AHCI_REG_CAP) & AHCI_REG_CAP_SCLO)
1322 ? "failed" : "unsupported");
1323 rc = EBUSY;
1324 goto err;
1325 }
1326
1327 /*
1328 * Prep the first H2D command with SRST feature & clear busy/reset
1329 * flags.
1330 */
1331 ccb = ahci_get_err_ccb(ap);
1332 cmd_slot = ccb->ccb_cmd_hdr;
1333
1334 fis = ccb->ccb_cmd_table->cfis;
1335 bzero(fis, sizeof(ccb->ccb_cmd_table->cfis));
1336 fis[0] = ATA_FIS_TYPE_H2D;
1337 fis[1] = 0x0F; /* Target 15 */
1338 fis[15] = ATA_FIS_CONTROL_SRST | ATA_FIS_CONTROL_4BIT;
1339
1340 cmd_slot->prdtl = 0;
1341 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */
1342 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_C); /* Clear busy on OK */
1343 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_R); /* Reset */
1344 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_PMP); /* port 0xF */
1345
1346 ccb->ccb_xa.state = ATA_S_PENDING;
1347 ccb->ccb_xa.flags = 0;
1348
1349 if (ahci_poll(ccb, 1000, NULL) != 0 ||
1350 ccb->ccb_xa.state != ATA_S_COMPLETE) {
1351 kprintf("%s: PMPROBE First FIS failed\n", PORTNAME(ap));
1352 if (--count) {
1353 fis[15] = 0;
1354 ahci_put_err_ccb(ccb);
1355 goto retry;
1356 }
1357 goto err;
1358 }
1359 if (ahci_pwait_clr(ap, AHCI_PREG_TFD,
1360 AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
1361 kprintf("%s: PMPROBE Busy after first FIS\n", PORTNAME(ap));
1362 }
1363
1364 /*
1365 * The device may have muffed up the PHY when it reset.
1366 */
1367 ahci_os_sleep(10);
1368 ahci_flush_tfd(ap);
1369 ahci_pwrite(ap, AHCI_PREG_SERR, -1);
1370 /* ahci_pm_phy_status(ap, 15, &cmd); */
1371
1372 /*
1373 * Prep second D2H command to read status and complete reset sequence
1374 * AHCI 10.4.1 and "Serial ATA Revision 2.6". I can't find the ATA
1375 * Rev 2.6 and it is unclear how the second FIS should be set up
1376 * from the AHCI document.
1377 *
1378 * Give the device 3ms before sending the second FIS.
1379 *
1380 * It is unclear which other fields in the FIS are used. Just zero
1381 * everything.
1382 */
1383 bzero(fis, sizeof(ccb->ccb_cmd_table->cfis));
1384 fis[0] = ATA_FIS_TYPE_H2D;
1385 fis[1] = 0x0F;
1386 fis[15] = ATA_FIS_CONTROL_4BIT;
1387
1388 cmd_slot->prdtl = 0;
1389 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */
1390 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_PMP); /* port 0xF */
1391
1392 ccb->ccb_xa.state = ATA_S_PENDING;
1393 ccb->ccb_xa.flags = 0;
1394
1395 if (ahci_poll(ccb, 1000, NULL) != 0 ||
1396 ccb->ccb_xa.state != ATA_S_COMPLETE) {
1397 kprintf("%s: PMPROBE Second FIS failed\n", PORTNAME(ap));
1398 if (--count) {
1399 fis[15] = 0;
1400 ahci_put_err_ccb(ccb);
1401 goto retry;
1402 }
1403 goto err;
1404 }
1405
1406 /*
1407 * What? We succeeded? Yup, but for some reason the signature
1408 * is still latched from the original detect (that saw target 0
1409 * behind the PM), and I don't know how to clear the condition
1410 * other then by retrying the whole reset sequence.
1411 */
1412 if (--count) {
1413 fis[15] = 0;
1414 ahci_put_err_ccb(ccb);
1415 goto retry;
1416 }
1417
1418 /*
1419 * Get the signature. The caller sets the ap fields.
1420 */
1421 if (ahci_port_signature_detect(ap, NULL) == ATA_PORT_T_PM) {
1422 ap->ap_ata[15].at_probe = ATA_PROBE_GOOD;
1423 rc = 0;
1424 } else {
1425 rc = EBUSY;
1426 }
1427
1428 /*
1429 * Fall through / clean up the CCB and perform error processing.
1430 */
1431err:
1432 if (ccb != NULL) {
1433 /*
1434 * Abort our command, if it failed, by stopping command DMA.
1435 */
1436#if 0
1437 kprintf("rc=%d active=%08x sactive=%08x slot=%d\n",
1438 rc, ap->ap_active, ap->ap_sactive, ccb->ccb_slot);
1439#endif
1440 if (rc && (ap->ap_active & (1 << ccb->ccb_slot))) {
1441 kprintf("%s: PMP stopping the port, softreset slot "
1442 "%d was still active.\n",
1443 PORTNAME(ap),
1444 ccb->ccb_slot);
1445 ahci_port_stop(ap, 0);
1446 }
1447 ccb->ccb_xa.state = ATA_S_ERROR;
1448 fis[15] = 0;
1449 ahci_put_err_ccb(ccb);
1450 }
1451
1452 if (rc == 0 && ahci_pm_identify(ap)) {
1453 kprintf("%s: PM - cannot identify port multiplier\n",
1454 PORTNAME(ap));
1455 rc = EBUSY;
1456 }
1457#if 0
1458 if (rc == 0 && ahci_pm_set_feature(ap, ATA_SATAFT_ASYNCNOTIFY, 1)) {
1459 kprintf("%s: PM - Warning, cannot enable async notify\n",
1460 PORTNAME(ap));
1461 /* ignore error */
1462 }
1463 if (rc == 0) {
1464 u_int32_t data;
1465 if (ahci_pm_read(ap, 2, 4, &data))
1466 kprintf("Cannot read snotify\n");
1467 else
1468 kprintf("Read snotify %08x\n", data);
1469 }
1470#endif
1471
1472 /*
1473 * If we failed turn off PMA, otherwise identify the port multiplier.
1474 * CAM will iterate the devices.
1475 */
1476 if (rc) {
1477 ahci_port_stop(ap, 0);
1478 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
1479 cmd &= ~AHCI_PREG_CMD_PMA;
1480 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
1481 }
1482 ahci_port_stop(ap, 0);
1483
1484#if 0
1485 kprintf("%s: END PMPROBE\n", PORTNAME(ap));
1486#endif
1487
1488 return(rc);
1489}
1490
1491
1492/*
1493 * Hard-stop on hot-swap device removal. See 10.10.1
1494 *
1495 * Place the port in a mode that will allow it to detect hot-swap insertions.
1496 * This is a bit imprecise because just setting-up SCTL to DET_INIT doesn't
1497 * seem to do the job.
1498 */
1499void
1500ahci_port_hardstop(struct ahci_port *ap)
1501{
1502 struct ata_port *at;
1503 u_int32_t r;
1504 u_int32_t cmd;
1505 int i;
1506
1507 /*
1508 * Stop the port. We can't modify things like SUD if the port
1509 * is running.
1510 */
1511 ap->ap_state = AP_S_FATAL_ERROR;
1512 ap->ap_probe = ATA_PROBE_FAILED;
1513 ap->ap_type = ATA_PORT_T_NONE;
1514 ahci_port_stop(ap, 0);
1515 cmd = ahci_pread(ap, AHCI_PREG_CMD);
1516
1517 /*
1518 * Clean up AT sub-ports on SATA port.
1519 */
1520 for (i = 0; ap->ap_ata && i < AHCI_MAX_PMPORTS; ++i) {
1521 at = &ap->ap_ata[i];
1522 at->at_type = ATA_PORT_T_NONE;
1523 at->at_probe = ATA_PROBE_FAILED;
1524 }
1525
1526 /*
1527 * Turn off port-multiplier control bit
1528 */
1529 if (cmd & AHCI_PREG_CMD_PMA) {
1530 cmd &= ~AHCI_PREG_CMD_PMA;
1531 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
1532 }
1533
1534 /*
1535 * Make sure FRE is active. There isn't anything we can do if it
1536 * fails so just ignore errors.
1537 */
1538 if ((cmd & AHCI_PREG_CMD_FRE) == 0) {
1539 cmd |= AHCI_PREG_CMD_FRE;
1540 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
1541 if ((ap->ap_sc->sc_flags & AHCI_F_IGN_FR) == 0)
1542 ahci_pwait_set(ap, AHCI_PREG_CMD, AHCI_PREG_CMD_FR);
1543 }
1544
1545 /*
1546 * 10.10.3 DET must be set to 0 before setting SUD to 0.
1547 * 10.10.1 place us in the Listen state.
1548 *
1549 * Deactivating SUD only applies if the controller supports SUD.
1550 */
1551 ahci_pwrite(ap, AHCI_PREG_SCTL, AHCI_PREG_SCTL_IPM_DISABLED);
1552 ahci_os_sleep(1);
1553 if (cmd & AHCI_PREG_CMD_SUD) {
1554 cmd &= ~AHCI_PREG_CMD_SUD;
1555 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
1556 }
1557 ahci_os_sleep(1);
1558
1559 /*
1560 * Transition su to the spin-up state. HVA shall send COMRESET and
1561 * begin initialization sequence (whatever that means).
1562 *
1563 * This only applies if the controller supports SUD.
1564 */
1565 cmd |= AHCI_PREG_CMD_SUD;
1566 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
1567 ahci_os_sleep(1);
1568
1569 /*
1570 * Transition us to the Reset state. Theoretically we send a
1571 * continuous stream of COMRESETs in this state.
1572 */
1573 r = AHCI_PREG_SCTL_IPM_DISABLED | AHCI_PREG_SCTL_DET_INIT;
1574 if (AhciForceGen1 & (1 << ap->ap_num)) {
1575 kprintf("%s: Force 1.5Gbits\n", PORTNAME(ap));
1576 r |= AHCI_PREG_SCTL_SPD_GEN1;
1577 } else {
1578 r |= AHCI_PREG_SCTL_SPD_ANY;
1579 }
1580 ahci_pwrite(ap, AHCI_PREG_SCTL, r);
1581 ahci_os_sleep(1);
1582
1583 /*
1584 * Flush SERR_DIAG_X so the TFD can update.
1585 */
1586 ahci_flush_tfd(ap);
1587
1588 /*
1589 * Leave us in COMRESET (both SUD and INIT active), the HBA should
1590 * hopefully send us a DIAG_X-related interrupt if it receives
1591 * a COMINIT, and if not that then at least a Phy transition
1592 * interrupt.
1593 *
1594 * If we transition INIT from 1->0 to begin the initalization
1595 * sequence it is unclear if that sequence will remain active
1596 * until the next device insertion.
1597 *
1598 * If we go back to the listen state it is unclear if the
1599 * device will actually send us a COMINIT, since we aren't
1600 * sending any COMRESET's
1601 */
1602 /* NOP */
1603}
1604
1605/*
1606 * Multiple events may have built up in the TFD. The spec is not very
1607 * clear on this but it does seem to serialize events so clearing DIAG_X
1608 * just once might not do the job during a reset sequence.
1609 */
1610void
1611ahci_flush_tfd(struct ahci_port *ap)
1612{
1613 u_int32_t r;
1614
1615 r = ahci_pread(ap, AHCI_PREG_SERR);
1616 while (r & AHCI_PREG_SERR_DIAG_X) {
1617 ahci_pwrite(ap, AHCI_PREG_SERR, AHCI_PREG_SERR_DIAG_X);
1618 ahci_os_sleep(1);
1619 r = ahci_pread(ap, AHCI_PREG_SERR);
1620 }
1621}
1622
1623/*
1624 * Figure out what type of device is connected to the port, ATAPI or
1625 * DISK.
1626 */
1627int
1628ahci_port_signature_detect(struct ahci_port *ap, struct ata_port *at)
1629{
1630 u_int32_t sig;
1631
1632 sig = ahci_pread(ap, AHCI_PREG_SIG);
1633 kprintf("%s: sig %08x\n", ATANAME(ap, at), sig);
1634 if ((sig & 0xffff0000) == (SATA_SIGNATURE_ATAPI & 0xffff0000)) {
1635 return(ATA_PORT_T_ATAPI);
1636 } else if ((sig & 0xffff0000) ==
1637 (SATA_SIGNATURE_PORT_MULTIPLIER & 0xffff0000)) {
1638 return(ATA_PORT_T_PM);
1639 } else {
1640 return(ATA_PORT_T_DISK);
1641 }
1642}
1643
1644/*
1645 * Load the DMA descriptor table for a CCB's buffer.
1646 */
1647int
1648ahci_load_prdt(struct ahci_ccb *ccb)
1649{
1650 struct ahci_port *ap = ccb->ccb_port;
1651 struct ahci_softc *sc = ap->ap_sc;
1652 struct ata_xfer *xa = &ccb->ccb_xa;
1653 struct ahci_prdt *prdt = ccb->ccb_cmd_table->prdt;
1654 bus_dmamap_t dmap = ccb->ccb_dmamap;
1655 struct ahci_cmd_hdr *cmd_slot = ccb->ccb_cmd_hdr;
1656 int error;
1657
1658 if (xa->datalen == 0) {
1659 ccb->ccb_cmd_hdr->prdtl = 0;
1660 return (0);
1661 }
1662
1663 error = bus_dmamap_load(sc->sc_tag_data, dmap,
1664 xa->data, xa->datalen,
1665 ahci_load_prdt_callback,
1666 &prdt,
1667 ((xa->flags & ATA_F_NOWAIT) ?
1668 BUS_DMA_NOWAIT : BUS_DMA_WAITOK));
1669 if (error != 0) {
1670 kprintf("%s: error %d loading dmamap\n", PORTNAME(ap), error);
1671 return (1);
1672 }
1673 if (xa->flags & ATA_F_PIO)
1674 prdt->flags |= htole32(AHCI_PRDT_FLAG_INTR);
1675
1676 cmd_slot->prdtl = htole16(prdt - ccb->ccb_cmd_table->prdt + 1);
1677
1678 bus_dmamap_sync(sc->sc_tag_data, dmap,
1679 (xa->flags & ATA_F_READ) ?
1680 BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
1681
1682 return (0);
1683
1684#ifdef DIAGNOSTIC
1685diagerr:
1686 bus_dmamap_unload(sc->sc_tag_data, dmap);
1687 return (1);
1688#endif
1689}
1690
1691/*
1692 * Callback from BUSDMA system to load the segment list. The passed segment
1693 * list is a temporary structure.
1694 */
1695static
1696void
1697ahci_load_prdt_callback(void *info, bus_dma_segment_t *segs, int nsegs,
1698 int error)
1699{
1700 struct ahci_prdt *prd = *(void **)info;
1701 u_int64_t addr;
1702
1703 KKASSERT(nsegs <= AHCI_MAX_PRDT);
1704
1705 while (nsegs) {
1706 addr = segs->ds_addr;
1707 prd->dba_hi = htole32((u_int32_t)(addr >> 32));
1708 prd->dba_lo = htole32((u_int32_t)addr);
1709#ifdef DIAGNOSTIC
1710 KKASSERT((addr & 1) == 0);
1711 KKASSERT((segs->ds_len & 1) == 0);
1712#endif
1713 prd->flags = htole32(segs->ds_len - 1);
1714 --nsegs;
1715 if (nsegs)
1716 ++prd;
1717 ++segs;
1718 }
1719 *(void **)info = prd; /* return last valid segment */
1720}
1721
1722void
1723ahci_unload_prdt(struct ahci_ccb *ccb)
1724{
1725 struct ahci_port *ap = ccb->ccb_port;
1726 struct ahci_softc *sc = ap->ap_sc;
1727 struct ata_xfer *xa = &ccb->ccb_xa;
1728 bus_dmamap_t dmap = ccb->ccb_dmamap;
1729
1730 if (xa->datalen != 0) {
1731 bus_dmamap_sync(sc->sc_tag_data, dmap,
1732 (xa->flags & ATA_F_READ) ?
1733 BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
1734
1735 bus_dmamap_unload(sc->sc_tag_data, dmap);
1736
1737 if (ccb->ccb_xa.flags & ATA_F_NCQ)
1738 xa->resid = 0;
1739 else
1740 xa->resid = xa->datalen -
1741 le32toh(ccb->ccb_cmd_hdr->prdbc);
1742 }
1743}
1744
1745/*
1746 * Start a command and poll for completion.
1747 *
1748 * timeout is in ms and only counts once the command gets on-chip.
1749 *
1750 * NOTE: If the caller specifies a NULL timeout function the caller is
1751 * responsible for clearing hardware state on failure, but we will
1752 * deal with removing the ccb from any pending queue.
1753 *
1754 * NOTE: NCQ should never be used with this function.
1755 *
1756 * NOTE: If the port is in a failed state and stopped we do not try
1757 * to activate the ccb.
1758 */
1759int
1760ahci_poll(struct ahci_ccb *ccb, int timeout, void (*timeout_fn)(void *))
1761{
1762 struct ahci_port *ap = ccb->ccb_port;
1763 int xtimeout = timeout * 2;
1764
1765 if (ccb->ccb_port->ap_state == AP_S_FATAL_ERROR) {
1766 ccb->ccb_xa.state = ATA_S_ERROR;
1767 return(1);
1768 }
1769 crit_enter();
1770 ahci_start(ccb);
1771
1772 do {
1773 ahci_port_intr(ap, 1);
1774 if (ccb->ccb_xa.state != ATA_S_ONCHIP &&
1775 ccb->ccb_xa.state != ATA_S_PENDING) {
1776 crit_exit();
1777 return (0);
1778 }
1779 ahci_os_sleep(100);
1780 if (xtimeout < 0) {
1781 kprintf("poll timeout %d xa.state = %d\n", timeout, ccb->ccb_xa.state);
1782 Debugger("Excessive poll");
1783 break;
1784 }
1785 xtimeout -= 100;
1786 if (ccb->ccb_xa.state == ATA_S_ONCHIP)
1787 timeout -= 100;
1788 } while (timeout > 0);
1789
1790 kprintf("%s: Poll timed-out for slot %d state %d\n",
1791 ATANAME(ap, ccb->ccb_xa.at), ccb->ccb_slot, ccb->ccb_xa.state);
1792
1793 if (timeout_fn != NULL) {
1794 timeout_fn(ccb);
1795 } else {
1796 if (ccb->ccb_xa.state == ATA_S_PENDING)
1797 TAILQ_REMOVE(&ap->ap_ccb_pending, ccb, ccb_entry);
1798 ccb->ccb_xa.state = ATA_S_TIMEOUT;
1799 }
1800 crit_exit();
1801
1802 return (1);
1803}
1804
1805static
1806__inline
1807void
1808ahci_start_timeout(struct ahci_ccb *ccb)
1809{
1810 if (ccb->ccb_xa.flags & ATA_F_TIMEOUT_DESIRED) {
1811 ccb->ccb_xa.flags |= ATA_F_TIMEOUT_RUNNING;
1812 callout_reset(&ccb->ccb_timeout,
1813 (ccb->ccb_xa.timeout * hz + 999) / 1000,
1814 ahci_ata_cmd_timeout_unserialized, ccb);
1815 }
1816}
1817
1818void
1819ahci_start(struct ahci_ccb *ccb)
1820{
1821 struct ahci_port *ap = ccb->ccb_port;
1822 struct ahci_softc *sc = ap->ap_sc;
1823
1824 KKASSERT(ccb->ccb_xa.state == ATA_S_PENDING);
1825
1826 /* Zero transferred byte count before transfer */
1827 ccb->ccb_cmd_hdr->prdbc = 0;
1828
1829 /* Sync command list entry and corresponding command table entry */
1830 bus_dmamap_sync(sc->sc_tag_cmdh,
1831 AHCI_DMA_MAP(ap->ap_dmamem_cmd_list),
1832 BUS_DMASYNC_PREWRITE);
1833 bus_dmamap_sync(sc->sc_tag_cmdt,
1834 AHCI_DMA_MAP(ap->ap_dmamem_cmd_table),
1835 BUS_DMASYNC_PREWRITE);
1836
1837 /* Prepare RFIS area for write by controller */
1838 bus_dmamap_sync(sc->sc_tag_rfis,
1839 AHCI_DMA_MAP(ap->ap_dmamem_rfis),
1840 BUS_DMASYNC_PREREAD);
1841
1842 if (ccb->ccb_xa.flags & ATA_F_NCQ) {
1843 /*
1844 * Issue NCQ commands only when there are no outstanding
1845 * standard commands.
1846 */
1847 if (ap->ap_active || TAILQ_FIRST(&ap->ap_ccb_pending)) {
1848 TAILQ_INSERT_TAIL(&ap->ap_ccb_pending, ccb, ccb_entry);
1849 } else {
1850 ahci_start_timeout(ccb);
1851 KKASSERT(ap->ap_active_cnt == 0);
1852 ap->ap_sactive |= (1 << ccb->ccb_slot);
1853 ccb->ccb_xa.state = ATA_S_ONCHIP;
1854 ahci_pwrite(ap, AHCI_PREG_SACT, 1 << ccb->ccb_slot);
1855 ahci_pwrite(ap, AHCI_PREG_CI, 1 << ccb->ccb_slot);
1856 }
1857 } else {
1858 /*
1859 * Wait for all NCQ commands to finish before issuing standard
1860 * command. Allow up to <limit> non-NCQ commands to be active.
1861 *
1862 * XXX If ap is a port multiplier only allow 1. At least the
1863 * NVidia-MCP77 part seems to barf if more then one
1864 * command is activated, even though it isn't NCQ.
1865 *
1866 * If I set up more then one I get phy errors and the
1867 * port fails.
1868 */
1869 int limit = (ap->ap_type == ATA_PORT_T_PM) ? 1 : 2;
1870 if (ap->ap_sactive || ap->ap_active_cnt >= limit) {
1871 TAILQ_INSERT_TAIL(&ap->ap_ccb_pending, ccb, ccb_entry);
1872 } else {
1873 ahci_start_timeout(ccb);
1874 ap->ap_active |= 1 << ccb->ccb_slot;
1875 ccb->ccb_xa.state = ATA_S_ONCHIP;
1876 ahci_pwrite(ap, AHCI_PREG_CI, 1 << ccb->ccb_slot);
1877 ap->ap_active_cnt++;
1878 }
1879 }
1880}
1881
1882void
1883ahci_issue_pending_ncq_commands(struct ahci_port *ap)
1884{
1885 struct ahci_ccb *nextccb;
1886 u_int32_t sact_change = 0;
1887
1888 KKASSERT(ap->ap_active_cnt == 0);
1889
1890 nextccb = TAILQ_FIRST(&ap->ap_ccb_pending);
1891 if (nextccb == NULL || !(nextccb->ccb_xa.flags & ATA_F_NCQ))
1892 return;
1893
1894 /* Start all the NCQ commands at the head of the pending list. */
1895 do {
1896 TAILQ_REMOVE(&ap->ap_ccb_pending, nextccb, ccb_entry);
1897 ahci_start_timeout(nextccb);
1898 sact_change |= 1 << nextccb->ccb_slot;
1899 nextccb->ccb_xa.state = ATA_S_ONCHIP;
1900 nextccb = TAILQ_FIRST(&ap->ap_ccb_pending);
1901 } while (nextccb && (nextccb->ccb_xa.flags & ATA_F_NCQ));
1902
1903 ap->ap_sactive |= sact_change;
1904 ahci_pwrite(ap, AHCI_PREG_SACT, sact_change);
1905 ahci_pwrite(ap, AHCI_PREG_CI, sact_change);
1906
1907 return;
1908}
1909
1910void
1911ahci_issue_pending_commands(struct ahci_port *ap, int last_was_ncq)
1912{
1913 struct ahci_ccb *nextccb;
1914
1915 nextccb = TAILQ_FIRST(&ap->ap_ccb_pending);
1916 if (nextccb && (nextccb->ccb_xa.flags & ATA_F_NCQ)) {
1917 KKASSERT(last_was_ncq == 0); /* otherwise it should have
1918 * been started already. */
1919
1920 /*
1921 * Issue NCQ commands only when there are no outstanding
1922 * standard commands.
1923 */
1924 if (ap->ap_active == 0)
1925 ahci_issue_pending_ncq_commands(ap);
1926 else
1927 KKASSERT(ap->ap_active_cnt > 0);
1928 } else if (nextccb) {
1929 if (ap->ap_sactive || last_was_ncq)
1930 KKASSERT(ap->ap_active_cnt == 0);
1931
1932 /*
1933 * Wait for all NCQ commands to finish before issuing standard
1934 * command. Then keep up to 2 standard commands on-chip at
1935 * a time.
1936 */
1937 if (ap->ap_sactive)
1938 return;
1939
1940 while (ap->ap_active_cnt < 2 &&
1941 nextccb && (nextccb->ccb_xa.flags & ATA_F_NCQ) == 0) {
1942 TAILQ_REMOVE(&ap->ap_ccb_pending, nextccb, ccb_entry);
1943 ahci_start_timeout(nextccb);
1944 ap->ap_active |= 1 << nextccb->ccb_slot;
1945 nextccb->ccb_xa.state = ATA_S_ONCHIP;
1946 ahci_pwrite(ap, AHCI_PREG_CI, 1 << nextccb->ccb_slot);
1947 ap->ap_active_cnt++;
1948 nextccb = TAILQ_FIRST(&ap->ap_ccb_pending);
1949 }
1950 }
1951}
1952
1953void
1954ahci_intr(void *arg)
1955{
1956 struct ahci_softc *sc = arg;
1957 struct ahci_port *ap;
1958 u_int32_t is, ack = 0;
1959 int port;
1960
1961 /*
1962 * Check if the master enable is up, and whether any interrupts are
1963 * pending.
1964 */
1965 if ((sc->sc_flags & AHCI_F_INT_GOOD) == 0)
1966 return;
1967 is = ahci_read(sc, AHCI_REG_IS);
1968 if (is == 0 || is == 0xffffffff)
1969 return;
1970 ack = is;
1971
1972#ifdef AHCI_COALESCE
1973 /* Check coalescing interrupt first */
1974 if (is & sc->sc_ccc_mask) {
1975 DPRINTF(AHCI_D_INTR, "%s: command coalescing interrupt\n",
1976 DEVNAME(sc));
1977 is &= ~sc->sc_ccc_mask;
1978 is |= sc->sc_ccc_ports_cur;
1979 }
1980#endif
1981
1982 /*
1983 * Process interrupts for each port in a non-blocking fashion.
1984 */
1985 while (is) {
1986 port = ffs(is) - 1;
1987 ap = sc->sc_ports[port];
1988 if (ap) {
1989 if (ahci_os_lock_port_nb(ap) == 0) {
1990 ahci_port_intr(ap, 0);
1991 ahci_os_unlock_port(ap);
1992 } else {
1993 ahci_pwrite(ap, AHCI_PREG_IE, 0);
1994 ahci_os_signal_port_thread(ap, AP_SIGF_PORTINT);
1995 }
1996 }
1997 is &= ~(1 << port);
1998 }
1999
2000 /* Finally, acknowledge global interrupt */
2001 ahci_write(sc, AHCI_REG_IS, ack);
2002}
2003
2004/*
2005 * Core called from helper thread.
2006 */
2007void
2008ahci_port_thread_core(struct ahci_port *ap, int mask)
2009{
2010 struct ahci_ccb *ccb;
2011 int i;
2012
2013 /*
2014 * Process any expired timedouts.
2015 */
2016 ahci_os_lock_port(ap);
2017 if (mask & AP_SIGF_TIMEOUT) {
2018 kprintf("%s: timeout", PORTNAME(ap));
2019 for (i = 0; i < ap->ap_sc->sc_ncmds; i++) {
2020 ccb = &ap->ap_ccbs[i];
2021 if (ccb->ccb_xa.flags & ATA_F_TIMEOUT_EXPIRED) {
2022 kprintf("%s: timeout slot %d\n",
2023 PORTNAME(ap), ccb->ccb_slot);
2024 ahci_ata_cmd_timeout(ccb);
2025 }
2026 }
2027 }
2028
2029 /*
2030 * Process port interrupts which require a higher level of
2031 * intervention.
2032 */
2033 if (mask & AP_SIGF_PORTINT) {
2034 ahci_port_intr(ap, 1);
2035 ahci_os_unlock_port(ap);
2036 ahci_port_interrupt_enable(ap);
2037 } else {
2038 ahci_os_unlock_port(ap);
2039 }
2040}
2041
2042/*
2043 * Core per-port interrupt handler.
2044 *
2045 * If blockable is 0 we cannot call ahci_os_sleep() at all and we can only
2046 * deal with normal command completions which do not require blocking.
2047 */
2048void
2049ahci_port_intr(struct ahci_port *ap, int blockable)
2050{
2051 struct ahci_softc *sc = ap->ap_sc;
2052 u_int32_t is, ci_saved, ci_masked;
2053 int slot;
2054 struct ahci_ccb *ccb = NULL;
2055 struct ata_port *ccb_at = NULL;
2056 volatile u_int32_t *active;
2057#ifdef DIAGNOSTIC
2058 u_int32_t tmp;
2059#endif
2060 const u_int32_t blockable_mask = AHCI_PREG_IS_TFES |
2061 AHCI_PREG_IS_IFS |
2062 AHCI_PREG_IS_PCS |
2063 AHCI_PREG_IS_PRCS |
2064 AHCI_PREG_IS_HBFS |
2065 AHCI_PREG_IS_OFS |
2066 AHCI_PREG_IS_UFS;
2067
2068 enum { NEED_NOTHING, NEED_RESTART, NEED_HOTPLUG_INSERT,
2069 NEED_HOTPLUG_REMOVE } need = NEED_NOTHING;
2070
2071 is = ahci_pread(ap, AHCI_PREG_IS);
2072
2073 /*
2074 * All basic command completions are always processed.
2075 */
2076 if (is & AHCI_PREG_IS_DPS)
2077 ahci_pwrite(ap, AHCI_PREG_IS, is & AHCI_PREG_IS_DPS);
2078
2079 /*
2080 * If we can't block then we can't handle these here. Disable
2081 * the interrupts in question so we don't live-lock, the helper
2082 * thread will re-enable them.
2083 *
2084 * If the port is in a completely failed state we do not want
2085 * to drop through to failed-command-processinf if blockable is 0,
2086 * just let the thread deal with it all.
2087 */
2088 if (blockable == 0) {
2089 if (ap->ap_state == AP_S_FATAL_ERROR) {
2090 ahci_pwrite(ap, AHCI_PREG_IE,
2091 ahci_pread(ap, AHCI_PREG_IE) & ~is);
2092 ahci_os_signal_port_thread(ap, AP_SIGF_PORTINT);
2093 return;
2094 }
2095 if (is & blockable_mask) {
2096 is &= blockable_mask | AHCI_PREG_IS_DHRS;
2097 ahci_pwrite(ap, AHCI_PREG_IE,
2098 ahci_pread(ap, AHCI_PREG_IE) & ~is);
2099 ahci_os_signal_port_thread(ap, AP_SIGF_PORTINT);
2100 }
2101 }
2102
2103#if 0
2104 kprintf("%s: INTERRUPT %b\n", PORTNAME(ap),
2105 is, AHCI_PFMT_IS);
2106#endif
2107
2108 /*
2109 * Either NCQ or non-NCQ commands will be active, never both.
2110 */
2111 if (ap->ap_sactive) {
2112 KKASSERT(ap->ap_active == 0);
2113 KKASSERT(ap->ap_active_cnt == 0);
2114 ci_saved = ahci_pread(ap, AHCI_PREG_SACT);
2115 active = &ap->ap_sactive;
2116 } else {
2117 ci_saved = ahci_pread(ap, AHCI_PREG_CI);
2118 active = &ap->ap_active;
2119 }
2120
2121 if (is & AHCI_PREG_IS_TFES) {
2122 /*
2123 * Command failed (blockable).
2124 *
2125 * See AHCI 1.1 spec 6.2.2.1 and 6.2.2.2.
2126 *
2127 * This stops command processing.
2128 */
2129 u_int32_t tfd, serr;
2130 int err_slot;
2131
2132 tfd = ahci_pread(ap, AHCI_PREG_TFD);
2133 serr = ahci_pread(ap, AHCI_PREG_SERR);
2134
2135 /*
2136 * If no NCQ commands are active the error slot is easily
2137 * determined, otherwise we have to extract the error
2138 * from the log page.
2139 */
2140 if (ap->ap_sactive == 0) {
2141 err_slot = AHCI_PREG_CMD_CCS(
2142 ahci_pread(ap, AHCI_PREG_CMD));
2143 ccb = &ap->ap_ccbs[err_slot];
2144 ccb_at = ccb->ccb_xa.at; /* can be NULL */
2145
2146 /* Preserve received taskfile data from the RFIS. */
2147 memcpy(&ccb->ccb_xa.rfis, ap->ap_rfis->rfis,
2148 sizeof(struct ata_fis_d2h));
2149 } else {
2150 err_slot = -1;
2151 }
2152
2153 DPRINTF(AHCI_D_VERBOSE, "%s: errd slot %d, TFD: %b, SERR: %b\n",
2154 PORTNAME(ap), err_slot,
2155 tfd, AHCI_PFMT_TFD_STS,
2156 serr, AHCI_PFMT_SERR);
2157
2158 /* Stopping the port clears CI and SACT */
2159 ahci_port_stop(ap, 0);
2160 need = NEED_RESTART;
2161
2162 /*
2163 * Clear SERR (primarily DIAG_X) to enable capturing of the
2164 * next error.
2165 */
2166 ahci_pwrite(ap, AHCI_PREG_SERR, serr);
2167
2168 /* Acknowledge the interrupts we can recover from. */
2169 ahci_pwrite(ap, AHCI_PREG_IS,
2170 is & (AHCI_PREG_IS_TFES | AHCI_PREG_IS_IFS));
2171 is &= ~(AHCI_PREG_IS_TFES | AHCI_PREG_IS_IFS);
2172
2173 /* If device hasn't cleared its busy status, try to idle it. */
2174 if (tfd & (AHCI_PREG_TFD_STS_BSY | AHCI_PREG_TFD_STS_DRQ)) {
2175 kprintf("%s: Attempting to idle device ccb=%p\n",
2176 PORTNAME(ap), ccb_at);
2177 if (ap->ap_flags & AP_F_IN_RESET)
2178 goto fatal;
2179 /*
2180 * XXX how do we unbrick a PM target (ccb_at != NULL).
2181 *
2182 * For now fail the target and use CLO to clear the
2183 * busy condition and make the ahci port usable for
2184 * the remaining devices.
2185 */
2186 if (ccb_at) {
2187 ccb_at->at_probe = ATA_PROBE_FAILED;
2188 ahci_port_clo(ap);
2189 } else if (ahci_port_reset(ap, ccb_at, 0)) {
2190 kprintf("%s: Unable to idle device, port "
2191 "bricked on us\n",
2192 PORTNAME(ap));
2193 goto fatal;
2194 }
2195
2196 /* Had to reset device, can't gather extended info. */
2197 } else if (ap->ap_sactive) {
2198 /*
2199 * Recover the NCQ error from log page 10h.
2200 *
2201 * XXX NCQ currently not supported with port
2202 * multiplier.
2203 */
2204 ahci_port_read_ncq_error(ap, &err_slot);
2205 kprintf("recover from NCQ error err_slot %d\n",
2206 err_slot);
2207 if (err_slot < 0)
2208 goto failall;
2209
2210 DPRINTF(AHCI_D_VERBOSE, "%s: NCQ errored slot %d\n",
2211 PORTNAME(ap), err_slot);
2212
2213 ccb = &ap->ap_ccbs[err_slot];
2214 } else {
2215 /* Didn't reset, could gather extended info from log. */
2216 kprintf("%s: didn't reset err_slot %d "
2217 "sact=%08x act=%08x\n",
2218 PORTNAME(ap),
2219 err_slot, ap->ap_sactive, ap->ap_active);
2220 }
2221
2222 /*
2223 * If we couldn't determine the errored slot, reset the port
2224 * and fail all the active slots.
2225 */
2226 if (err_slot == -1) {
2227 if (ap->ap_flags & AP_F_IN_RESET)
2228 goto fatal;
2229 /*
2230 * XXX how do we unbrick a PM target (ccb_at != NULL).
2231 *
2232 * For now fail the target and use CLO to clear the
2233 * busy condition and make the ahci port usable for
2234 * the remaining devices.
2235 */
2236 if (ccb_at) {
2237 ccb_at->at_probe = ATA_PROBE_FAILED;
2238 ahci_port_clo(ap);
2239 } else if (ahci_port_reset(ap, ccb_at, 0)) {
2240 kprintf("%s: Unable to idle device after "
2241 "NCQ error, port bricked on us\n",
2242 PORTNAME(ap));
2243 goto fatal;
2244 }
2245 kprintf("%s: couldn't recover NCQ error, failing "
2246 "all outstanding commands.\n",
2247 PORTNAME(ap));
2248 goto failall;
2249 }
2250
2251 /* Clear the failed command in saved CI so completion runs. */
2252 ci_saved &= ~(1 << err_slot);
2253
2254 /* Note the error in the ata_xfer. */
2255 KKASSERT(ccb->ccb_xa.state == ATA_S_ONCHIP);
2256 ccb->ccb_xa.state = ATA_S_ERROR;
2257
2258#ifdef DIAGNOSTIC
2259 /* There may only be one outstanding standard command now. */
2260 if (ap->ap_sactive == 0) {
2261 tmp = ci_saved;
2262 if (tmp) {
2263 slot = ffs(tmp) - 1;
2264 tmp &= ~(1 << slot);
2265 KKASSERT(tmp == 0);
2266 }
2267 }
2268#endif
2269 } else if (is & AHCI_PREG_IS_DHRS) {
2270 /*
2271 * Command posted D2H register FIS to the rfis (non-blocking).
2272 *
2273 * Command posted D2H register FIS to the rfis. This
2274 * does NOT stop command processing and it is unclear
2275 * how we are supposed to deal with it other then using
2276 * only a queue of 1.
2277 *
2278 * We must copy the port rfis to the ccb and restart
2279 * command processing. ahci_pm_read() does not function
2280 * without this support.
2281 */
2282 int err_slot;
2283
2284 if (ap->ap_sactive == 0) {
2285 err_slot = AHCI_PREG_CMD_CCS(
2286 ahci_pread(ap, AHCI_PREG_CMD));
2287 ccb = &ap->ap_ccbs[err_slot];
2288 ccb_at = ccb->ccb_xa.at; /* can be NULL */
2289
2290 memcpy(&ccb->ccb_xa.rfis, ap->ap_rfis->rfis,
2291 sizeof(struct ata_fis_d2h));
2292 } else {
2293 kprintf("%s: Unexpected DHRS posted while "
2294 "NCQ running\n", PORTNAME(ap));
2295 err_slot = -1;
2296 }
2297 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_DHRS);
2298 is &= ~AHCI_PREG_IS_DHRS;
2299 }
2300
2301 /*
2302 * Device notification to us (non-blocking)
2303 *
2304 * NOTE! On some parts notification bits can get set without
2305 * generating an interrupt. It is unclear whether this is
2306 * a bug in the PM (sending a DTOH device setbits with 'N' set
2307 * and 'I' not set), or a bug in the host controller.
2308 *
2309 * It only seems to occur under load.
2310 */
2311 if (/*(is & AHCI_PREG_IS_SDBS) &&*/ (sc->sc_cap & AHCI_REG_CAP_SSNTF)) {
2312 u_int32_t data;
2313 const char *xstr;
2314
2315 data = ahci_pread(ap, AHCI_PREG_SNTF);
2316 if (is & AHCI_PREG_IS_SDBS) {
2317 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_SDBS);
2318 is &= ~AHCI_PREG_IS_SDBS;
2319 xstr = " (no SDBS!)";
2320 } else {
2321 xstr = "";
2322 }
2323 if (data) {
2324 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_SDBS);
2325
2326 kprintf("%s: NOTIFY %08x%s\n",
2327 PORTNAME(ap), data, xstr);
2328 ahci_pwrite(ap, AHCI_PREG_SERR, AHCI_PREG_SERR_DIAG_N);
2329 ahci_pwrite(ap, AHCI_PREG_SNTF, data);
2330 ahci_cam_changed(ap, NULL, -1);
2331 }
2332 }
2333
2334 /*
2335 * Spurious IFS errors (blockable).
2336 *
2337 * Spurious IFS errors can occur while we are doing a reset
2338 * sequence through a PM. Try to recover if we are being asked
2339 * to ignore IFS errors during these periods.
2340 */
2341 if ((is & AHCI_PREG_IS_IFS) && (ap->ap_flags & AP_F_IGNORE_IFS)) {
2342 u_int32_t serr = ahci_pread(ap, AHCI_PREG_SERR);
2343 if ((ap->ap_flags & AP_F_IFS_IGNORED) == 0) {
2344 kprintf("%s: Ignoring IFS (XXX) (IS: %b, SERR: %b)\n",
2345 PORTNAME(ap),
2346 is, AHCI_PFMT_IS,
2347 serr, AHCI_PFMT_SERR);
2348 ap->ap_flags |= AP_F_IFS_IGNORED;
2349 }
2350 ap->ap_flags |= AP_F_IFS_OCCURED;
2351 ahci_pwrite(ap, AHCI_PREG_SERR, -1);
2352 ahci_pwrite(ap, AHCI_PREG_IS, AHCI_PREG_IS_IFS);
2353 is &= ~AHCI_PREG_IS_IFS;
2354 ahci_port_stop(ap, 0);
2355 ahci_port_start(ap);
2356 need = NEED_RESTART;
2357 }
2358
2359 /*
2360 * Port change (hot-plug) (blockable).
2361 *
2362 * A PCS interrupt will occur on hot-plug once communication is
2363 * established.
2364 *
2365 * A PRCS interrupt will occur on hot-unplug (and possibly also
2366 * on hot-plug).
2367 *
2368 * XXX We can then check the CPS (Cold Presence State) bit, if
2369 * supported, to determine if a device is plugged in or not and do
2370 * the right thing.
2371 *
2372 * WARNING: A PCS interrupt is cleared by clearing DIAG_X, and
2373 * can also occur if an unsolicited COMINIT is received.
2374 * If this occurs command processing is automatically
2375 * stopped (CR goes inactive) and the port must be stopped
2376 * and restarted.
2377 */
2378 if (is & (AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS)) {
2379 ahci_pwrite(ap, AHCI_PREG_IS,
2380 is & (AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS));
2381 is &= ~(AHCI_PREG_IS_PCS | AHCI_PREG_IS_PRCS);
2382 ahci_pwrite(ap, AHCI_PREG_SERR,
2383 (AHCI_PREG_SERR_DIAG_N | AHCI_PREG_SERR_DIAG_X));
2384 ahci_port_stop(ap, 0);
2385 switch (ahci_pread(ap, AHCI_PREG_SSTS) & AHCI_PREG_SSTS_DET) {
2386 case AHCI_PREG_SSTS_DET_DEV:
2387 if (ap->ap_type == ATA_PORT_T_NONE) {
2388 need = NEED_HOTPLUG_INSERT;
2389 goto fatal;
2390 }
2391 need = NEED_RESTART;
2392 break;
2393 default:
2394 if (ap->ap_type != ATA_PORT_T_NONE) {
2395 need = NEED_HOTPLUG_REMOVE;
2396 goto fatal;
2397 }
2398 need = NEED_RESTART;
2399 break;
2400 }
2401 }
2402
2403 /*
2404 * Check for remaining errors - they are fatal. (blockable)
2405 */
2406 if (is & (AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS | AHCI_PREG_IS_IFS |
2407 AHCI_PREG_IS_OFS | AHCI_PREG_IS_UFS)) {
2408 u_int32_t serr;
2409
2410 ahci_pwrite(ap, AHCI_PREG_IS,
2411 is & (AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS |
2412 AHCI_PREG_IS_IFS | AHCI_PREG_IS_OFS |
2413 AHCI_PREG_IS_UFS));
2414 is &= ~(AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS |
2415 AHCI_PREG_IS_IFS | AHCI_PREG_IS_OFS |
2416 AHCI_PREG_IS_UFS);
2417 serr = ahci_pread(ap, AHCI_PREG_SERR);
2418 kprintf("%s: unrecoverable errors (IS: %b, SERR: %b), "
2419 "disabling port.\n",
2420 PORTNAME(ap),
2421 is, AHCI_PFMT_IS,
2422 serr, AHCI_PFMT_SERR
2423 );
2424 /* XXX try recovery first */
2425 goto fatal;
2426 }
2427
2428 /*
2429 * Fail all outstanding commands if we know the port won't recover.
2430 *
2431 * We may have a ccb_at if the failed command is known and was
2432 * being sent to a device over a port multiplier (PM). In this
2433 * case if the port itself has not completely failed we fail just
2434 * the commands related to that target.
2435 */
2436 if (ap->ap_state == AP_S_FATAL_ERROR) {
2437fatal:
2438 ap->ap_state = AP_S_FATAL_ERROR;
2439failall:
2440
2441 /* Stopping the port clears CI/SACT */
2442 ahci_port_stop(ap, 0);
2443
2444 /*
2445 * Error all the active slots. If running across a PM
2446 * try to error out just the slots related to the target.
2447 */
2448 ci_masked = ci_saved & *active;
2449 while (ci_masked) {
2450 slot = ffs(ci_masked) - 1;
2451 ccb = &ap->ap_ccbs[slot];
2452 if (ccb_at == ccb->ccb_xa.at ||
2453 ap->ap_state == AP_S_FATAL_ERROR) {
2454 ci_masked &= ~(1 << slot);
2455 ccb->ccb_xa.state = ATA_S_ERROR;
2456 }
2457 }
2458
2459 /* Run completion for all active slots. */
2460 ci_saved &= ~*active;
2461
2462 /*
2463 * Don't restart the port if our problems were deemed fatal.
2464 *
2465 * Also acknowlege all fatal interrupt sources to prevent
2466 * a livelock.
2467 */
2468 if (ap->ap_state == AP_S_FATAL_ERROR) {
2469 if (need == NEED_RESTART)
2470 need = NEED_NOTHING;
2471 ahci_pwrite(ap, AHCI_PREG_IS,
2472 AHCI_PREG_IS_TFES | AHCI_PREG_IS_HBFS |
2473 AHCI_PREG_IS_IFS | AHCI_PREG_IS_OFS |
2474 AHCI_PREG_IS_UFS);
2475 }
2476 }
2477
2478 /*
2479 * CCB completion (non blocking).
2480 *
2481 * CCB completion is detected by noticing its slot's bit in CI has
2482 * changed to zero some time after we activated it.
2483 * If we are polling, we may only be interested in particular slot(s).
2484 *
2485 * Any active bits not saved are completed within the restrictions
2486 * imposed by the caller.
2487 */
2488 ci_masked = ~ci_saved & *active;
2489 while (ci_masked) {
2490 slot = ffs(ci_masked) - 1;
2491 ccb = &ap->ap_ccbs[slot];
2492 ci_masked &= ~(1 << slot);
2493
2494 DPRINTF(AHCI_D_INTR, "%s: slot %d is complete%s\n",
2495 PORTNAME(ap), slot, ccb->ccb_xa.state == ATA_S_ERROR ?
2496 " (error)" : "");
2497
2498 bus_dmamap_sync(sc->sc_tag_cmdh,
2499 AHCI_DMA_MAP(ap->ap_dmamem_cmd_list),
2500 BUS_DMASYNC_POSTWRITE);
2501
2502 bus_dmamap_sync(sc->sc_tag_cmdt,
2503 AHCI_DMA_MAP(ap->ap_dmamem_cmd_table),
2504 BUS_DMASYNC_POSTWRITE);
2505
2506 bus_dmamap_sync(sc->sc_tag_rfis,
2507 AHCI_DMA_MAP(ap->ap_dmamem_rfis),
2508 BUS_DMASYNC_POSTREAD);
2509
2510 *active &= ~(1 << ccb->ccb_slot);
2511 if (active == &ap->ap_active) {
2512 KKASSERT(ap->ap_active_cnt > 0);
2513 --ap->ap_active_cnt;
2514 }
2515 ccb->ccb_done(ccb);
2516 }
2517
2518 /*
2519 * Cleanup. Will not be set if non-blocking.
2520 */
2521 switch(need) {
2522 case NEED_RESTART:
2523 /*
2524 * A recoverable error occured and we can restart outstanding
2525 * commands on the port.
2526 */
2527 ahci_port_start(ap);
2528
2529 if (ci_saved) {
2530#ifdef DIAGNOSTIC
2531 tmp = ci_saved;
2532 while (tmp) {
2533 slot = ffs(tmp) - 1;
2534 tmp &= ~(1 << slot);
2535 ccb = &ap->ap_ccbs[slot];
2536 KKASSERT(ccb->ccb_xa.state == ATA_S_ONCHIP);
2537 KKASSERT((!!(ccb->ccb_xa.flags & ATA_F_NCQ)) ==
2538 (!!ap->ap_sactive));
2539 }
2540#endif
2541 DPRINTF(AHCI_D_VERBOSE, "%s: ahci_port_intr "
2542 "re-enabling%s slots %08x\n", PORTNAME(ap),
2543 ap->ap_sactive ? " NCQ" : "", ci_saved);
2544
2545 if (ap->ap_sactive)
2546 ahci_pwrite(ap, AHCI_PREG_SACT, ci_saved);
2547 ahci_pwrite(ap, AHCI_PREG_CI, ci_saved);
2548 }
2549 break;
2550 case NEED_HOTPLUG_INSERT:
2551 /*
2552 * A hot-plug insertion event has occured and all
2553 * outstanding commands have already been revoked.
2554 *
2555 * Don't recurse if this occurs while we are
2556 * resetting the port.
2557 */
2558 if ((ap->ap_flags & AP_F_IN_RESET) == 0) {
2559 kprintf("%s: HOTPLUG - Device inserted\n",
2560 PORTNAME(ap));
2561 ap->ap_probe = ATA_PROBE_NEED_INIT;
2562 ahci_cam_changed(ap, NULL, -1);
2563 }
2564 break;
2565 case NEED_HOTPLUG_REMOVE:
2566 /*
2567 * A hot-plug removal event has occured and all
2568 * outstanding commands have already been revoked.
2569 *
2570 * Don't recurse if this occurs while we are
2571 * resetting the port.
2572 */
2573 if ((ap->ap_flags & AP_F_IN_RESET) == 0) {
2574 kprintf("%s: HOTPLUG - Device removed\n",
2575 PORTNAME(ap));
2576 ahci_port_hardstop(ap);
2577 /* ap_probe set to failed */
2578 ahci_cam_changed(ap, NULL, -1);
2579 }
2580 break;
2581 default:
2582 break;
2583 }
2584}
2585
2586struct ahci_ccb *
2587ahci_get_ccb(struct ahci_port *ap)
2588{
2589 struct ahci_ccb *ccb;
2590
2591 lockmgr(&ap->ap_ccb_lock, LK_EXCLUSIVE);
2592 ccb = TAILQ_FIRST(&ap->ap_ccb_free);
2593 if (ccb != NULL) {
2594 KKASSERT(ccb->ccb_xa.state == ATA_S_PUT);
2595 TAILQ_REMOVE(&ap->ap_ccb_free, ccb, ccb_entry);
2596 ccb->ccb_xa.state = ATA_S_SETUP;
2597 ccb->ccb_xa.at = NULL;
2598 }
2599 lockmgr(&ap->ap_ccb_lock, LK_RELEASE);
2600
2601 return (ccb);
2602}
2603
2604void
2605ahci_put_ccb(struct ahci_ccb *ccb)
2606{
2607 struct ahci_port *ap = ccb->ccb_port;
2608
2609#ifdef DIAGNOSTIC
2610 if (ccb->ccb_xa.state != ATA_S_COMPLETE &&
2611 ccb->ccb_xa.state != ATA_S_TIMEOUT &&
2612 ccb->ccb_xa.state != ATA_S_ERROR) {
2613 kprintf("%s: invalid ata_xfer state %02x in ahci_put_ccb, "
2614 "slot %d\n",
2615 PORTNAME(ccb->ccb_port), ccb->ccb_xa.state,
2616 ccb->ccb_slot);
2617 }
2618#endif
2619
2620 ccb->ccb_xa.state = ATA_S_PUT;
2621 lockmgr(&ap->ap_ccb_lock, LK_EXCLUSIVE);
2622 TAILQ_INSERT_TAIL(&ap->ap_ccb_free, ccb, ccb_entry);
2623 lockmgr(&ap->ap_ccb_lock, LK_RELEASE);
2624}
2625
2626struct ahci_ccb *
2627ahci_get_err_ccb(struct ahci_port *ap)
2628{
2629 struct ahci_ccb *err_ccb;
2630 u_int32_t sact;
2631
2632 /* No commands may be active on the chip. */
2633 sact = ahci_pread(ap, AHCI_PREG_SACT);
2634 if (sact != 0)
2635 kprintf("ahci_get_err_ccb but SACT %08x != 0?\n", sact);
2636 KKASSERT(ahci_pread(ap, AHCI_PREG_CI) == 0);
2637
2638#ifdef DIAGNOSTIC
2639 KKASSERT(ap->ap_err_busy == 0);
2640 ap->ap_err_busy = 1;
2641#endif
2642 /* Save outstanding command state. */
2643 ap->ap_err_saved_active = ap->ap_active;
2644 ap->ap_err_saved_active_cnt = ap->ap_active_cnt;
2645 ap->ap_err_saved_sactive = ap->ap_sactive;
2646
2647 /*
2648 * Pretend we have no commands outstanding, so that completions won't
2649 * run prematurely.
2650 */
2651 ap->ap_active = ap->ap_active_cnt = ap->ap_sactive = 0;
2652
2653 /*
2654 * Grab a CCB to use for error recovery. This should never fail, as
2655 * we ask atascsi to reserve one for us at init time.
2656 */
2657 err_ccb = ahci_get_ccb(ap);
2658 KKASSERT(err_ccb != NULL);
2659 err_ccb->ccb_xa.flags = 0;
2660 err_ccb->ccb_done = ahci_empty_done;
2661
2662 return err_ccb;
2663}
2664
2665void
2666ahci_put_err_ccb(struct ahci_ccb *ccb)
2667{
2668 struct ahci_port *ap = ccb->ccb_port;
2669 u_int32_t sact;
2670 u_int32_t ci;
2671
2672#ifdef DIAGNOSTIC
2673 KKASSERT(ap->ap_err_busy);
2674#endif
2675 /*
2676 * No commands may be active on the chip
2677 */
2678 sact = ahci_pread(ap, AHCI_PREG_SACT);
2679 if (sact) {
2680 panic("ahci_port_err_ccb(%d) but SACT %08x != 0\n",
2681 ccb->ccb_slot, sact);
2682 }
2683 ci = ahci_pread(ap, AHCI_PREG_CI);
2684 if (ci) {
2685 panic("ahci_put_err_ccb(%d) but CI %08x != 0 "
2686 "(act=%08x sact=%08x)\n",
2687 ccb->ccb_slot, ci,
2688 ap->ap_active, ap->ap_sactive);
2689 }
2690
2691 /* Done with the CCB */
2692 ahci_put_ccb(ccb);
2693
2694 /* Restore outstanding command state */
2695 ap->ap_sactive = ap->ap_err_saved_sactive;
2696 ap->ap_active_cnt = ap->ap_err_saved_active_cnt;
2697 ap->ap_active = ap->ap_err_saved_active;
2698
2699#ifdef DIAGNOSTIC
2700 ap->ap_err_busy = 0;
2701#endif
2702}
2703
2704/*
2705 * Read log page to get NCQ error.
2706 *
2707 * NOTE: NCQ not currently supported on port multipliers. XXX
2708 */
2709int
2710ahci_port_read_ncq_error(struct ahci_port *ap, int *err_slotp)
2711{
2712 struct ahci_ccb *ccb;
2713 struct ahci_cmd_hdr *cmd_slot;
2714 u_int32_t cmd;
2715 struct ata_fis_h2d *fis;
2716 int rc = EIO;
2717
2718 DPRINTF(AHCI_D_VERBOSE, "%s: read log page\n", PORTNAME(ap));
2719
2720 /* Save command register state. */
2721 cmd = ahci_pread(ap, AHCI_PREG_CMD) & ~AHCI_PREG_CMD_ICC;
2722
2723 /* Port should have been idled already. Start it. */
2724 KKASSERT((cmd & AHCI_PREG_CMD_CR) == 0);
2725 ahci_port_start(ap);
2726
2727 /* Prep error CCB for READ LOG EXT, page 10h, 1 sector. */
2728 ccb = ahci_get_err_ccb(ap);
2729 ccb->ccb_xa.flags = ATA_F_NOWAIT | ATA_F_READ | ATA_F_POLL;
2730 ccb->ccb_xa.data = ap->ap_err_scratch;
2731 ccb->ccb_xa.datalen = 512;
2732 cmd_slot = ccb->ccb_cmd_hdr;
2733 bzero(ccb->ccb_cmd_table, sizeof(struct ahci_cmd_table));
2734
2735 fis = (struct ata_fis_h2d *)ccb->ccb_cmd_table->cfis;
2736 fis->type = ATA_FIS_TYPE_H2D;
2737 fis->flags = ATA_H2D_FLAGS_CMD;
2738 fis->command = ATA_C_READ_LOG_EXT;
2739 fis->lba_low = 0x10; /* queued error log page (10h) */
2740 fis->sector_count = 1; /* number of sectors (1) */
2741 fis->sector_count_exp = 0;
2742 fis->lba_mid = 0; /* starting offset */
2743 fis->lba_mid_exp = 0;
2744 fis->device = 0;
2745
2746 cmd_slot->flags = htole16(5); /* FIS length: 5 DWORDS */
2747
2748 if (ahci_load_prdt(ccb) != 0) {
2749 rc = ENOMEM; /* XXX caller must abort all commands */
2750 goto err;
2751 }
2752
2753 ccb->ccb_xa.state = ATA_S_PENDING;
2754 if (ahci_poll(ccb, 1000, NULL) != 0)
2755 goto err;
2756
2757 rc = 0;
2758err:
2759 /* Abort our command, if it failed, by stopping command DMA. */
2760 if (rc && (ap->ap_active & (1 << ccb->ccb_slot))) {
2761 kprintf("%s: log page read failed, slot %d was still active.\n",
2762 PORTNAME(ap), ccb->ccb_slot);
2763 ahci_port_stop(ap, 0);
2764 }
2765
2766 /* Done with the error CCB now. */
2767 ahci_unload_prdt(ccb);
2768 ahci_put_err_ccb(ccb);
2769
2770 /* Extract failed register set and tags from the scratch space. */
2771 if (rc == 0) {
2772 struct ata_log_page_10h *log;
2773 int err_slot;
2774
2775 log = (struct ata_log_page_10h *)ap->ap_err_scratch;
2776 if (log->err_regs.type & ATA_LOG_10H_TYPE_NOTQUEUED) {
2777 /* Not queued bit was set - wasn't an NCQ error? */
2778 kprintf("%s: read NCQ error page, but not an NCQ "
2779 "error?\n",
2780 PORTNAME(ap));
2781 rc = ESRCH;
2782 } else {
2783 /* Copy back the log record as a D2H register FIS. */
2784 *err_slotp = err_slot = log->err_regs.type &
2785 ATA_LOG_10H_TYPE_TAG_MASK;
2786
2787 ccb = &ap->ap_ccbs[err_slot];
2788 memcpy(&ccb->ccb_xa.rfis, &log->err_regs,
2789 sizeof(struct ata_fis_d2h));
2790 ccb->ccb_xa.rfis.type = ATA_FIS_TYPE_D2H;
2791 ccb->ccb_xa.rfis.flags = 0;
2792 }
2793 }
2794
2795 /* Restore saved CMD register state */
2796 ahci_pwrite(ap, AHCI_PREG_CMD, cmd);
2797
2798 return (rc);
2799}
2800
2801/*
2802 * Allocate memory for various structures DMAd by hardware. The maximum
2803 * number of segments for these tags is 1 so the DMA memory will have a
2804 * single physical base address.
2805 */
2806struct ahci_dmamem *
2807ahci_dmamem_alloc(struct ahci_softc *sc, bus_dma_tag_t tag)
2808{
2809 struct ahci_dmamem *adm;
2810 int error;
2811
2812 adm = kmalloc(sizeof(*adm), M_DEVBUF, M_INTWAIT | M_ZERO);
2813
2814 error = bus_dmamem_alloc(tag, (void **)&adm->adm_kva,
2815 BUS_DMA_ZERO, &adm->adm_map);
2816 if (error == 0) {
2817 adm->adm_tag = tag;
2818 error = bus_dmamap_load(tag, adm->adm_map,
2819 adm->adm_kva,
2820 bus_dma_tag_getmaxsize(tag),
2821 ahci_dmamem_saveseg, &adm->adm_busaddr,
2822 0);
2823 }
2824 if (error) {
2825 if (adm->adm_map) {
2826 bus_dmamap_destroy(tag, adm->adm_map);
2827 adm->adm_map = NULL;
2828 adm->adm_tag = NULL;
2829 adm->adm_kva = NULL;
2830 }
2831 kfree(adm, M_DEVBUF);
2832 adm = NULL;
2833 }
2834 return (adm);
2835}
2836
2837static
2838void
2839ahci_dmamem_saveseg(void *info, bus_dma_segment_t *segs, int nsegs, int error)
2840{
2841 KKASSERT(error == 0);
2842 KKASSERT(nsegs == 1);
2843 *(bus_addr_t *)info = segs->ds_addr;
2844}
2845
2846
2847void
2848ahci_dmamem_free(struct ahci_softc *sc, struct ahci_dmamem *adm)
2849{
2850 if (adm->adm_map) {
2851 bus_dmamap_unload(adm->adm_tag, adm->adm_map);
2852 bus_dmamap_destroy(adm->adm_tag, adm->adm_map);
2853 adm->adm_map = NULL;
2854 adm->adm_tag = NULL;
2855 adm->adm_kva = NULL;
2856 }
2857 kfree(adm, M_DEVBUF);
2858}
2859
2860u_int32_t
2861ahci_read(struct ahci_softc *sc, bus_size_t r)
2862{
2863 bus_space_barrier(sc->sc_iot, sc->sc_ioh, r, 4,
2864 BUS_SPACE_BARRIER_READ);
2865 return (bus_space_read_4(sc->sc_iot, sc->sc_ioh, r));
2866}
2867
2868void
2869ahci_write(struct ahci_softc *sc, bus_size_t r, u_int32_t v)
2870{
2871 bus_space_write_4(sc->sc_iot, sc->sc_ioh, r, v);
2872 bus_space_barrier(sc->sc_iot, sc->sc_ioh, r, 4,
2873 BUS_SPACE_BARRIER_WRITE);
2874}
2875
2876int
2877ahci_wait_ne(struct ahci_softc *sc, bus_size_t r, u_int32_t mask,
2878 u_int32_t target)
2879{
2880 int i;
2881
2882 for (i = 0; i < 1000; i++) {
2883 if ((ahci_read(sc, r) & mask) != target)
2884 return (0);
2885 ahci_os_sleep(1);
2886 }
2887
2888 return (1);
2889}
2890
2891u_int32_t
2892ahci_pread(struct ahci_port *ap, bus_size_t r)
2893{
2894 bus_space_barrier(ap->ap_sc->sc_iot, ap->ap_ioh, r, 4,
2895 BUS_SPACE_BARRIER_READ);
2896 return (bus_space_read_4(ap->ap_sc->sc_iot, ap->ap_ioh, r));
2897}
2898
2899void
2900ahci_pwrite(struct ahci_port *ap, bus_size_t r, u_int32_t v)
2901{
2902 bus_space_write_4(ap->ap_sc->sc_iot, ap->ap_ioh, r, v);
2903 bus_space_barrier(ap->ap_sc->sc_iot, ap->ap_ioh, r, 4,
2904 BUS_SPACE_BARRIER_WRITE);
2905}
2906
2907int
2908ahci_pwait_eq(struct ahci_port *ap, int timeout,
2909 bus_size_t r, u_int32_t mask, u_int32_t target)
2910{
2911 int i;
2912
2913 for (i = 0; i < timeout; i++) {
2914 if ((ahci_pread(ap, r) & mask) == target)
2915 return (0);
2916 ahci_os_sleep(1);
2917 }
2918
2919 return (1);
2920}
2921
2922/*
2923 * Acquire an ata transfer.
2924 *
2925 * Pass a NULL at for direct-attached transfers, and a non-NULL at for
2926 * targets that go through the port multiplier.
2927 */
2928struct ata_xfer *
2929ahci_ata_get_xfer(struct ahci_port *ap, struct ata_port *at)
2930{
2931 struct ahci_ccb *ccb;
2932
2933 ccb = ahci_get_ccb(ap);
2934 if (ccb == NULL) {
2935 DPRINTF(AHCI_D_XFER, "%s: ahci_ata_get_xfer: NULL ccb\n",
2936 PORTNAME(ap));
2937 return (NULL);
2938 }
2939
2940 DPRINTF(AHCI_D_XFER, "%s: ahci_ata_get_xfer got slot %d\n",
2941 PORTNAME(ap), ccb->ccb_slot);
2942
2943 ccb->ccb_xa.at = at;
2944 ccb->ccb_xa.fis->type = ATA_FIS_TYPE_H2D;
2945
2946 return (&ccb->ccb_xa);
2947}
2948
2949void
2950ahci_ata_put_xfer(struct ata_xfer *xa)
2951{
2952 struct ahci_ccb *ccb = (struct ahci_ccb *)xa;
2953
2954 DPRINTF(AHCI_D_XFER, "ahci_ata_put_xfer slot %d\n", ccb->ccb_slot);
2955
2956 ahci_put_ccb(ccb);
2957}
2958
2959int
2960ahci_ata_cmd(struct ata_xfer *xa)
2961{
2962 struct ahci_ccb *ccb = (struct ahci_ccb *)xa;
2963 struct ahci_cmd_hdr *cmd_slot;
2964
2965 KKASSERT(xa->state == ATA_S_SETUP);
2966
2967 if (ccb->ccb_port->ap_state == AP_S_FATAL_ERROR)
2968 goto failcmd;
2969#if 0
2970 kprintf("%s: started std command %b ccb %d ccb_at %p %d\n",
2971 ATANAME(ccb->ccb_port, ccb->ccb_xa.at),
2972 ahci_pread(ccb->ccb_port, AHCI_PREG_CMD), AHCI_PFMT_CMD,
2973 ccb->ccb_slot,
2974 ccb->ccb_xa.at,
2975 ccb->ccb_xa.at ? ccb->ccb_xa.at->at_target : -1);
2976#endif
2977
2978 ccb->ccb_done = ahci_ata_cmd_done;
2979
2980 cmd_slot = ccb->ccb_cmd_hdr;
2981 cmd_slot->flags = htole16(5); /* FIS length (in DWORDs) */
2982 if (ccb->ccb_xa.at) {
2983 cmd_slot->flags |= htole16(ccb->ccb_xa.at->at_target <<
2984 AHCI_CMD_LIST_FLAG_PMP_SHIFT);
2985 }
2986
2987 if (xa->flags & ATA_F_WRITE)
2988 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_W);
2989
2990 if (xa->flags & ATA_F_PACKET)
2991 cmd_slot->flags |= htole16(AHCI_CMD_LIST_FLAG_A);
2992
2993 if (ahci_load_prdt(ccb) != 0)
2994 goto failcmd;
2995
2996 xa->state = ATA_S_PENDING;
2997
2998 if (xa->flags & ATA_F_POLL) {
2999 ahci_poll(ccb, xa->timeout, ahci_ata_cmd_timeout);
3000 return (ATA_COMPLETE);
3001 }
3002
3003 crit_enter();
3004 KKASSERT((xa->flags & ATA_F_TIMEOUT_EXPIRED) == 0);
3005 xa->flags |= ATA_F_TIMEOUT_DESIRED;
3006 ahci_start(ccb);
3007 crit_exit();
3008 return (ATA_QUEUED);
3009
3010failcmd:
3011 crit_enter();
3012 xa->state = ATA_S_ERROR;
3013 xa->complete(xa);
3014 crit_exit();
3015 return (ATA_ERROR);
3016}
3017
3018void
3019ahci_ata_cmd_done(struct ahci_ccb *ccb)
3020{
3021 struct ata_xfer *xa = &ccb->ccb_xa;
3022
3023 if (xa->flags & ATA_F_TIMEOUT_RUNNING) {
3024 xa->flags &= ~ATA_F_TIMEOUT_RUNNING;
3025 callout_stop(&ccb->ccb_timeout);
3026 }
3027 xa->flags &= ~(ATA_F_TIMEOUT_DESIRED | ATA_F_TIMEOUT_EXPIRED);
3028
3029 if (xa->state == ATA_S_ONCHIP || xa->state == ATA_S_ERROR) {
3030 ahci_issue_pending_commands(ccb->ccb_port,
3031 xa->flags & ATA_F_NCQ);
3032 }
3033
3034 ahci_unload_prdt(ccb);
3035
3036 if (xa->state == ATA_S_ONCHIP)
3037 xa->state = ATA_S_COMPLETE;
3038#ifdef DIAGNOSTIC
3039 else if (xa->state != ATA_S_ERROR && xa->state != ATA_S_TIMEOUT)
3040 kprintf("%s: invalid ata_xfer state %02x in ahci_ata_cmd_done, "
3041 "slot %d\n",
3042 PORTNAME(ccb->ccb_port), xa->state, ccb->ccb_slot);
3043#endif
3044 if (xa->state != ATA_S_TIMEOUT)
3045 xa->complete(xa);
3046}
3047
3048/*
3049 * Timeout from callout, MPSAFE - nothing can mess with the CCB's flags
3050 * while the callout is runing.
3051 *
3052 * We can't safely get the port lock here or delay, we could block
3053 * the callout thread.
3054 */
3055static void
3056ahci_ata_cmd_timeout_unserialized(void *arg)
3057{
3058 struct ahci_ccb *ccb = arg;
3059 struct ahci_port *ap = ccb->ccb_port;
3060
3061 ccb->ccb_xa.flags &= ~ATA_F_TIMEOUT_RUNNING;
3062 ccb->ccb_xa.flags |= ATA_F_TIMEOUT_EXPIRED;
3063 ahci_os_signal_port_thread(ap, AP_SIGF_TIMEOUT);
3064}
3065
3066void
3067ahci_ata_cmd_timeout(void *arg)
3068{
3069 struct ahci_ccb *ccb = arg;
3070 struct ata_xfer *xa = &ccb->ccb_xa;
3071 struct ahci_port *ap = ccb->ccb_port;
3072 volatile u_int32_t *active;
3073 int ccb_was_started, ncq_cmd;
3074 int status;
3075
3076 crit_enter();
3077 kprintf("%s: CMD TIMEOUT cmd-reg 0x%b\n"
3078 "\tsactive=%08x active=%08x\n"
3079 "\t sact=%08x ci=%08x\n",
3080 ATANAME(ap, ccb->ccb_xa.at),
3081 ahci_pread(ap, AHCI_PREG_CMD), AHCI_PFMT_CMD,
3082 ap->ap_sactive, ap->ap_active,
3083 ahci_pread(ap, AHCI_PREG_SACT),
3084 ahci_pread(ap, AHCI_PREG_CI));
3085
3086 /*
3087 * NOTE: Timeout will not be running if the command was polled.
3088 * If we got here at least one of these flags should be set.
3089 */
3090 KKASSERT(xa->flags & (ATA_F_POLL | ATA_F_TIMEOUT_DESIRED |
3091 ATA_F_TIMEOUT_RUNNING));
3092 xa->flags &= ~(ATA_F_TIMEOUT_RUNNING | ATA_F_TIMEOUT_EXPIRED);
3093 ncq_cmd = (xa->flags & ATA_F_NCQ);
3094 active = ncq_cmd ? &ap->ap_sactive : &ap->ap_active;
3095
3096 if (ccb->ccb_xa.state == ATA_S_PENDING) {
3097 DPRINTF(AHCI_D_TIMEOUT, "%s: command for slot %d timed out "
3098 "before it got on chip\n", PORTNAME(ap), ccb->ccb_slot);
3099 TAILQ_REMOVE(&ap->ap_ccb_pending, ccb, ccb_entry);
3100 ccb_was_started = 0;
3101 } else if (ccb->ccb_xa.state != ATA_S_ONCHIP) {
3102 DPRINTF(AHCI_D_TIMEOUT, "%s: command slot %d already "
3103 "handled%s\n", PORTNAME(ap), ccb->ccb_slot,
3104 (*active & (1 << ccb->ccb_slot)) ?
3105 " but slot is still active?" : ".");
3106 goto ret;
3107 } else if ((ahci_pread(ap, ncq_cmd ? AHCI_PREG_SACT : AHCI_PREG_CI) &
3108 (1 << ccb->ccb_slot)) == 0 &&
3109 (*active & (1 << ccb->ccb_slot))) {
3110 DPRINTF(AHCI_D_TIMEOUT, "%s: command slot %d completed but "
3111 "IRQ handler didn't detect it. Why?\n", PORTNAME(ap),
3112 ccb->ccb_slot);
3113 *active &= ~(1 << ccb->ccb_slot);
3114 if (ncq_cmd == 0) {
3115 KKASSERT(ap->ap_active_cnt > 0);
3116 --ap->ap_active_cnt;
3117 }
3118 ccb->ccb_done(ccb);
3119 goto ret;
3120 } else {
3121 ccb_was_started = 1;
3122 }
3123
3124 /* Complete the slot with a timeout error. */
3125 ccb->ccb_xa.state = ATA_S_TIMEOUT;
3126 *active &= ~(1 << ccb->ccb_slot);
3127 if (ncq_cmd == 0) {
3128 KKASSERT(ap->ap_active_cnt > 0);
3129 --ap->ap_active_cnt;
3130 }
3131 DPRINTF(AHCI_D_TIMEOUT, "%s: run completion (1)\n", PORTNAME(ap));
3132 ccb->ccb_done(ccb); /* This won't issue pending commands or run the
3133 atascsi completion. */
3134
3135 /* Reset port to abort running command. */
3136 if (ccb_was_started) {
3137 DPRINTF(AHCI_D_TIMEOUT, "%s: resetting port to abort%s command "
3138 "in slot %d, active %08x\n", PORTNAME(ap), ncq_cmd ? " NCQ"
3139 : "", ccb->ccb_slot, *active);
3140 /* XXX */
3141 if (ccb->ccb_xa.at && ap->ap_type == ATA_PORT_T_PM) {
3142 /* XXX how do we unbrick a PM target? */
3143 kprintf("%s: PM target bricked and timed-out, "
3144 "disabling PM target but trying to "
3145 "leave the port intact\n",
3146 ATANAME(ap, ccb->ccb_xa.at));
3147 ccb->ccb_xa.at->at_probe = ATA_PROBE_FAILED;
3148 ahci_port_intr(ap, 1);
3149 ahci_port_stop(ap, 0);
3150 ahci_port_clo(ap);
3151 ahci_port_start(ap);
3152 status = 0;
3153 } else if (ahci_port_reset(ap, ccb->ccb_xa.at, 0)) {
3154 /*
3155 * If the softreset failed place the port in a
3156 * failed state and use ahci_port_intr() to cancel
3157 * any remaining commands.
3158 */
3159 kprintf("%s: Unable to reset during timeout, port "
3160 "bricked on us\n",
3161 PORTNAME(ap));
3162 ap->ap_state = AP_S_FATAL_ERROR;
3163 ahci_port_intr(ap, 1);
3164 status = 1;
3165 } else {
3166 status = 0;
3167 }
3168 if (status == 0) {
3169 /*
3170 * Restart any other commands that were aborted
3171 * by the reset.
3172 */
3173 if (*active) {
3174 DPRINTF(AHCI_D_TIMEOUT, "%s: re-enabling%s slots "
3175 "%08x\n", PORTNAME(ap), ncq_cmd ? " NCQ" : "",
3176 *active);
3177 if (ncq_cmd)
3178 ahci_pwrite(ap, AHCI_PREG_SACT, *active);
3179 ahci_pwrite(ap, AHCI_PREG_CI, *active);
3180 }
3181 }
3182 }
3183
3184 /* Issue any pending commands now. */
3185 DPRINTF(AHCI_D_TIMEOUT, "%s: issue pending\n", PORTNAME(ap));
3186 if (ccb_was_started)
3187 ahci_issue_pending_commands(ap, ncq_cmd);
3188 else if (ap->ap_active == 0)
3189 ahci_issue_pending_ncq_commands(ap);
3190
3191 /* Complete the timed out ata_xfer I/O (may generate new I/O). */
3192 DPRINTF(AHCI_D_TIMEOUT, "%s: run completion (2)\n", PORTNAME(ap));
3193 xa->complete(xa);
3194
3195 DPRINTF(AHCI_D_TIMEOUT, "%s: splx\n", PORTNAME(ap));
3196ret:
3197 crit_exit();
3198}
3199
3200void
3201ahci_empty_done(struct ahci_ccb *ccb)
3202{
3203 ccb->ccb_xa.state = ATA_S_COMPLETE;
3204}