]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/dev/siis/siis.c
MFC r198321
[FreeBSD/stable/8.git] / sys / dev / siis / siis.c
1 /*-
2  * Copyright (c) 2009 Alexander Motin <mav@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer,
10  *    without modification, immediately at the beginning of the file.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/module.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/ata.h>
35 #include <sys/bus.h>
36 #include <sys/endian.h>
37 #include <sys/malloc.h>
38 #include <sys/lock.h>
39 #include <sys/mutex.h>
40 #include <sys/sema.h>
41 #include <sys/taskqueue.h>
42 #include <vm/uma.h>
43 #include <machine/stdarg.h>
44 #include <machine/resource.h>
45 #include <machine/bus.h>
46 #include <sys/rman.h>
47 #include <dev/pci/pcivar.h>
48 #include <dev/pci/pcireg.h>
49 #include "siis.h"
50
51 #include <cam/cam.h>
52 #include <cam/cam_ccb.h>
53 #include <cam/cam_sim.h>
54 #include <cam/cam_xpt_sim.h>
55 #include <cam/cam_xpt_periph.h>
56 #include <cam/cam_debug.h>
57
58 /* local prototypes */
59 static int siis_setup_interrupt(device_t dev);
60 static void siis_intr(void *data);
61 static int siis_suspend(device_t dev);
62 static int siis_resume(device_t dev);
63 static int siis_ch_suspend(device_t dev);
64 static int siis_ch_resume(device_t dev);
65 static void siis_ch_intr_locked(void *data);
66 static void siis_ch_intr(void *data);
67 static void siis_begin_transaction(device_t dev, union ccb *ccb);
68 static void siis_dmasetprd(void *arg, bus_dma_segment_t *segs, int nsegs, int error);
69 static void siis_execute_transaction(struct siis_slot *slot);
70 static void siis_timeout(struct siis_slot *slot);
71 static void siis_end_transaction(struct siis_slot *slot, enum siis_err_type et);
72 static int siis_setup_fis(struct siis_cmd *ctp, union ccb *ccb, int tag);
73 static void siis_dmainit(device_t dev);
74 static void siis_dmasetupc_cb(void *xsc, bus_dma_segment_t *segs, int nsegs, int error);
75 static void siis_dmafini(device_t dev);
76 static void siis_slotsalloc(device_t dev);
77 static void siis_slotsfree(device_t dev);
78 static void siis_reset(device_t dev);
79 static void siis_portinit(device_t dev);
80 static int siis_wait_ready(device_t dev, int t);
81
82 static int siis_sata_connect(struct siis_channel *ch);
83 static int siis_sata_phy_reset(device_t dev);
84
85 static void siis_issue_read_log(device_t dev);
86 static void siis_process_read_log(device_t dev, union ccb *ccb);
87
88 static void siisaction(struct cam_sim *sim, union ccb *ccb);
89 static void siispoll(struct cam_sim *sim);
90
91 MALLOC_DEFINE(M_SIIS, "SIIS driver", "SIIS driver data buffers");
92
93 static int
94 siis_probe(device_t dev)
95 {
96         uint32_t devid = pci_get_devid(dev);
97
98         if (devid == SIIS_SII3124) {
99                 device_set_desc_copy(dev, "SiI3124 SATA2 controller");
100         } else if (devid == SIIS_SII3132 ||
101                    devid == SIIS_SII3132_1 ||
102                    devid == SIIS_SII3132_2) {
103                 device_set_desc_copy(dev, "SiI3132 SATA2 controller");
104         } else if (devid == SIIS_SII3531) {
105                 device_set_desc_copy(dev, "SiI3531 SATA2 controller");
106         } else {
107                 return (ENXIO);
108         }
109
110         return (BUS_PROBE_VENDOR);
111 }
112
113 static int
114 siis_attach(device_t dev)
115 {
116         struct siis_controller *ctlr = device_get_softc(dev);
117         uint32_t devid = pci_get_devid(dev);
118         device_t child;
119         int     error, unit;
120
121         ctlr->dev = dev;
122         /* Global memory */
123         ctlr->r_grid = PCIR_BAR(0);
124         if (!(ctlr->r_gmem = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
125             &ctlr->r_grid, RF_ACTIVE)))
126                 return (ENXIO);
127         /* Channels memory */
128         ctlr->r_rid = PCIR_BAR(2);
129         if (!(ctlr->r_mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
130             &ctlr->r_rid, RF_ACTIVE)))
131                 return (ENXIO);
132         /* Setup our own memory management for channels. */
133         ctlr->sc_iomem.rm_type = RMAN_ARRAY;
134         ctlr->sc_iomem.rm_descr = "I/O memory addresses";
135         if ((error = rman_init(&ctlr->sc_iomem)) != 0) {
136                 bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
137                 bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_grid, ctlr->r_gmem);
138                 return (error);
139         }
140         if ((error = rman_manage_region(&ctlr->sc_iomem,
141             rman_get_start(ctlr->r_mem), rman_get_end(ctlr->r_mem))) != 0) {
142                 bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
143                 bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_grid, ctlr->r_gmem);
144                 rman_fini(&ctlr->sc_iomem);
145                 return (error);
146         }
147         /* Reset controller */
148         siis_resume(dev);
149         /* Number of HW channels */
150         ctlr->channels = (devid == SIIS_SII3124) ? 4 :
151             (devid == SIIS_SII3531 ? 1 : 2);
152         /* Setup interrupts. */
153         if (siis_setup_interrupt(dev)) {
154                 bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
155                 bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_grid, ctlr->r_gmem);
156                 rman_fini(&ctlr->sc_iomem);
157                 return ENXIO;
158         }
159         /* Attach all channels on this controller */
160         for (unit = 0; unit < ctlr->channels; unit++) {
161                 child = device_add_child(dev, "siisch", -1);
162                 if (child == NULL)
163                         device_printf(dev, "failed to add channel device\n");
164                 else
165                         device_set_ivars(child, (void *)(intptr_t)unit);
166         }
167         bus_generic_attach(dev);
168         return 0;
169 }
170
171 static int
172 siis_detach(device_t dev)
173 {
174         struct siis_controller *ctlr = device_get_softc(dev);
175         device_t *children;
176         int nchildren, i;
177
178         /* Detach & delete all children */
179         if (!device_get_children(dev, &children, &nchildren)) {
180                 for (i = 0; i < nchildren; i++)
181                         device_delete_child(dev, children[i]);
182                 free(children, M_TEMP);
183         }
184         /* Free interrupts. */
185         if (ctlr->irq.r_irq) {
186                 bus_teardown_intr(dev, ctlr->irq.r_irq,
187                     ctlr->irq.handle);
188                 bus_release_resource(dev, SYS_RES_IRQ,
189                     ctlr->irq.r_irq_rid, ctlr->irq.r_irq);
190         }
191         pci_release_msi(dev);
192         /* Free memory. */
193         rman_fini(&ctlr->sc_iomem);
194         bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
195         bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_grid, ctlr->r_gmem);
196         return (0);
197 }
198
199 static int
200 siis_suspend(device_t dev)
201 {
202         struct siis_controller *ctlr = device_get_softc(dev);
203
204         bus_generic_suspend(dev);
205         /* Put controller into reset state. */
206         ATA_OUTL(ctlr->r_gmem, SIIS_GCTL, SIIS_GCTL_GRESET);
207         return 0;
208 }
209
210 static int
211 siis_resume(device_t dev)
212 {
213         struct siis_controller *ctlr = device_get_softc(dev);
214
215         /* Put controller into reset state. */
216         ATA_OUTL(ctlr->r_gmem, SIIS_GCTL, SIIS_GCTL_GRESET);
217         DELAY(10000);
218         /* Get controller out of reset state and enable port interrupts. */
219         ATA_OUTL(ctlr->r_gmem, SIIS_GCTL, 0x0000000f);
220         return (bus_generic_resume(dev));
221 }
222
223 static int
224 siis_setup_interrupt(device_t dev)
225 {
226         struct siis_controller *ctlr = device_get_softc(dev);
227         int msi = 0;
228
229         /* Process hints. */
230         resource_int_value(device_get_name(dev),
231             device_get_unit(dev), "msi", &msi);
232         if (msi < 0)
233                 msi = 0;
234         else if (msi > 0)
235                 msi = min(1, pci_msi_count(dev));
236         /* Allocate MSI if needed/present. */
237         if (msi && pci_alloc_msi(dev, &msi) != 0)
238                 msi = 0;
239         /* Allocate all IRQs. */
240         ctlr->irq.r_irq_rid = msi ? 1 : 0;
241         if (!(ctlr->irq.r_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ,
242             &ctlr->irq.r_irq_rid, RF_SHAREABLE | RF_ACTIVE))) {
243                 device_printf(dev, "unable to map interrupt\n");
244                 return ENXIO;
245         }
246         if ((bus_setup_intr(dev, ctlr->irq.r_irq, ATA_INTR_FLAGS, NULL,
247             siis_intr, ctlr, &ctlr->irq.handle))) {
248                 /* SOS XXX release r_irq */
249                 device_printf(dev, "unable to setup interrupt\n");
250                 return ENXIO;
251         }
252         return (0);
253 }
254
255 /*
256  * Common case interrupt handler.
257  */
258 static void
259 siis_intr(void *data)
260 {
261         struct siis_controller *ctlr = (struct siis_controller *)data;
262         u_int32_t is;
263         void *arg;
264         int unit;
265
266         is = ATA_INL(ctlr->r_gmem, SIIS_IS);
267         for (unit = 0; unit < ctlr->channels; unit++) {
268                 if ((is & SIIS_IS_PORT(unit)) != 0 &&
269                     (arg = ctlr->interrupt[unit].argument)) {
270                         ctlr->interrupt[unit].function(arg);
271                 }
272         }
273 }
274
275 static struct resource *
276 siis_alloc_resource(device_t dev, device_t child, int type, int *rid,
277                        u_long start, u_long end, u_long count, u_int flags)
278 {
279         struct siis_controller *ctlr = device_get_softc(dev);
280         int unit = ((struct siis_channel *)device_get_softc(child))->unit;
281         struct resource *res = NULL;
282         int offset = unit << 13;
283         long st;
284
285         switch (type) {
286         case SYS_RES_MEMORY:
287                 st = rman_get_start(ctlr->r_mem);
288                 res = rman_reserve_resource(&ctlr->sc_iomem, st + offset,
289                     st + offset + 0x2000, 0x2000, RF_ACTIVE, child);
290                 if (res) {
291                         bus_space_handle_t bsh;
292                         bus_space_tag_t bst;
293                         bsh = rman_get_bushandle(ctlr->r_mem);
294                         bst = rman_get_bustag(ctlr->r_mem);
295                         bus_space_subregion(bst, bsh, offset, 0x2000, &bsh);
296                         rman_set_bushandle(res, bsh);
297                         rman_set_bustag(res, bst);
298                 }
299                 break;
300         case SYS_RES_IRQ:
301                 if (*rid == ATA_IRQ_RID)
302                         res = ctlr->irq.r_irq;
303                 break;
304         }
305         return (res);
306 }
307
308 static int
309 siis_release_resource(device_t dev, device_t child, int type, int rid,
310                          struct resource *r)
311 {
312
313         switch (type) {
314         case SYS_RES_MEMORY:
315                 rman_release_resource(r);
316                 return (0);
317         case SYS_RES_IRQ:
318                 if (rid != ATA_IRQ_RID)
319                         return ENOENT;
320                 return (0);
321         }
322         return (EINVAL);
323 }
324
325 static int
326 siis_setup_intr(device_t dev, device_t child, struct resource *irq, 
327                    int flags, driver_filter_t *filter, driver_intr_t *function, 
328                    void *argument, void **cookiep)
329 {
330         struct siis_controller *ctlr = device_get_softc(dev);
331         int unit = (intptr_t)device_get_ivars(child);
332
333         if (filter != NULL) {
334                 printf("siis.c: we cannot use a filter here\n");
335                 return (EINVAL);
336         }
337         ctlr->interrupt[unit].function = function;
338         ctlr->interrupt[unit].argument = argument;
339         return (0);
340 }
341
342 static int
343 siis_teardown_intr(device_t dev, device_t child, struct resource *irq,
344                       void *cookie)
345 {
346         struct siis_controller *ctlr = device_get_softc(dev);
347         int unit = (intptr_t)device_get_ivars(child);
348
349         ctlr->interrupt[unit].function = NULL;
350         ctlr->interrupt[unit].argument = NULL;
351         return (0);
352 }
353
354 static int
355 siis_print_child(device_t dev, device_t child)
356 {
357         int retval;
358
359         retval = bus_print_child_header(dev, child);
360         retval += printf(" at channel %d",
361             (int)(intptr_t)device_get_ivars(child));
362         retval += bus_print_child_footer(dev, child);
363
364         return (retval);
365 }
366
367 devclass_t siis_devclass;
368 static device_method_t siis_methods[] = {
369         DEVMETHOD(device_probe,     siis_probe),
370         DEVMETHOD(device_attach,    siis_attach),
371         DEVMETHOD(device_detach,    siis_detach),
372         DEVMETHOD(device_suspend,   siis_suspend),
373         DEVMETHOD(device_resume,    siis_resume),
374         DEVMETHOD(bus_print_child,  siis_print_child),
375         DEVMETHOD(bus_alloc_resource,       siis_alloc_resource),
376         DEVMETHOD(bus_release_resource,     siis_release_resource),
377         DEVMETHOD(bus_setup_intr,   siis_setup_intr),
378         DEVMETHOD(bus_teardown_intr,siis_teardown_intr),
379         { 0, 0 }
380 };
381 static driver_t siis_driver = {
382         "siis",
383         siis_methods,
384         sizeof(struct siis_controller)
385 };
386 DRIVER_MODULE(siis, pci, siis_driver, siis_devclass, 0, 0);
387 MODULE_VERSION(siis, 1);
388 MODULE_DEPEND(siis, cam, 1, 1, 1);
389
390 static int
391 siis_ch_probe(device_t dev)
392 {
393
394         device_set_desc_copy(dev, "SIIS channel");
395         return (0);
396 }
397
398 static int
399 siis_ch_attach(device_t dev)
400 {
401         struct siis_channel *ch = device_get_softc(dev);
402         struct cam_devq *devq;
403         int rid, error;
404
405         ch->dev = dev;
406         ch->unit = (intptr_t)device_get_ivars(dev);
407         resource_int_value(device_get_name(dev),
408             device_get_unit(dev), "pm_level", &ch->pm_level);
409         resource_int_value(device_get_name(dev),
410             device_get_unit(dev), "sata_rev", &ch->sata_rev);
411         mtx_init(&ch->mtx, "SIIS channel lock", NULL, MTX_DEF);
412         rid = ch->unit;
413         if (!(ch->r_mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
414             &rid, RF_ACTIVE)))
415                 return (ENXIO);
416         siis_dmainit(dev);
417         siis_slotsalloc(dev);
418         siis_ch_resume(dev);
419         mtx_lock(&ch->mtx);
420         rid = ATA_IRQ_RID;
421         if (!(ch->r_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ,
422             &rid, RF_SHAREABLE | RF_ACTIVE))) {
423                 bus_release_resource(dev, SYS_RES_MEMORY, ch->unit, ch->r_mem);
424                 device_printf(dev, "Unable to map interrupt\n");
425                 return (ENXIO);
426         }
427         if ((bus_setup_intr(dev, ch->r_irq, ATA_INTR_FLAGS, NULL,
428             siis_ch_intr_locked, dev, &ch->ih))) {
429                 device_printf(dev, "Unable to setup interrupt\n");
430                 error = ENXIO;
431                 goto err1;
432         }
433         /* Create the device queue for our SIM. */
434         devq = cam_simq_alloc(SIIS_MAX_SLOTS);
435         if (devq == NULL) {
436                 device_printf(dev, "Unable to allocate simq\n");
437                 error = ENOMEM;
438                 goto err1;
439         }
440         /* Construct SIM entry */
441         ch->sim = cam_sim_alloc(siisaction, siispoll, "siisch", ch,
442             device_get_unit(dev), &ch->mtx, SIIS_MAX_SLOTS, 0, devq);
443         if (ch->sim == NULL) {
444                 device_printf(dev, "unable to allocate sim\n");
445                 error = ENOMEM;
446                 goto err2;
447         }
448         if (xpt_bus_register(ch->sim, dev, 0) != CAM_SUCCESS) {
449                 device_printf(dev, "unable to register xpt bus\n");
450                 error = ENXIO;
451                 goto err2;
452         }
453         if (xpt_create_path(&ch->path, /*periph*/NULL, cam_sim_path(ch->sim),
454             CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
455                 device_printf(dev, "unable to create path\n");
456                 error = ENXIO;
457                 goto err3;
458         }
459         mtx_unlock(&ch->mtx);
460         return (0);
461
462 err3:
463         xpt_bus_deregister(cam_sim_path(ch->sim));
464 err2:
465         cam_sim_free(ch->sim, /*free_devq*/TRUE);
466 err1:
467         bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ch->r_irq);
468         bus_release_resource(dev, SYS_RES_MEMORY, ch->unit, ch->r_mem);
469         mtx_unlock(&ch->mtx);
470         return (error);
471 }
472
473 static int
474 siis_ch_detach(device_t dev)
475 {
476         struct siis_channel *ch = device_get_softc(dev);
477
478         mtx_lock(&ch->mtx);
479         xpt_async(AC_LOST_DEVICE, ch->path, NULL);
480         xpt_free_path(ch->path);
481         xpt_bus_deregister(cam_sim_path(ch->sim));
482         cam_sim_free(ch->sim, /*free_devq*/TRUE);
483         mtx_unlock(&ch->mtx);
484
485         bus_teardown_intr(dev, ch->r_irq, ch->ih);
486         bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ch->r_irq);
487
488         siis_ch_suspend(dev);
489         siis_slotsfree(dev);
490         siis_dmafini(dev);
491
492         bus_release_resource(dev, SYS_RES_MEMORY, ch->unit, ch->r_mem);
493         mtx_destroy(&ch->mtx);
494         return (0);
495 }
496
497 static int
498 siis_ch_suspend(device_t dev)
499 {
500         struct siis_channel *ch = device_get_softc(dev);
501
502         /* Put port into reset state. */
503         ATA_OUTL(ch->r_mem, SIIS_P_CTLSET, SIIS_P_CTL_PORT_RESET);
504         return (0);
505 }
506
507 static int
508 siis_ch_resume(device_t dev)
509 {
510         struct siis_channel *ch = device_get_softc(dev);
511
512         /* Get port out of reset state. */
513         ATA_OUTL(ch->r_mem, SIIS_P_CTLCLR, SIIS_P_CTL_PORT_RESET);
514         ATA_OUTL(ch->r_mem, SIIS_P_CTLCLR, SIIS_P_CTL_32BIT);
515         ATA_OUTL(ch->r_mem, SIIS_P_CTLCLR, SIIS_P_CTL_PME);
516         /* Enable port interrupts */
517         ATA_OUTL(ch->r_mem, SIIS_P_IESET, SIIS_P_IX_ENABLED);
518         return (0);
519 }
520
521 devclass_t siisch_devclass;
522 static device_method_t siisch_methods[] = {
523         DEVMETHOD(device_probe,     siis_ch_probe),
524         DEVMETHOD(device_attach,    siis_ch_attach),
525         DEVMETHOD(device_detach,    siis_ch_detach),
526         DEVMETHOD(device_suspend,   siis_ch_suspend),
527         DEVMETHOD(device_resume,    siis_ch_resume),
528         { 0, 0 }
529 };
530 static driver_t siisch_driver = {
531         "siisch",
532         siisch_methods,
533         sizeof(struct siis_channel)
534 };
535 DRIVER_MODULE(siisch, siis, siisch_driver, siis_devclass, 0, 0);
536
537 struct siis_dc_cb_args {
538         bus_addr_t maddr;
539         int error;
540 };
541
542 static void
543 siis_dmainit(device_t dev)
544 {
545         struct siis_channel *ch = device_get_softc(dev);
546         struct siis_dc_cb_args dcba;
547
548         /* Command area. */
549         if (bus_dma_tag_create(bus_get_dma_tag(dev), 1024, 0,
550             BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
551             NULL, NULL, SIIS_WORK_SIZE, 1, SIIS_WORK_SIZE,
552             0, NULL, NULL, &ch->dma.work_tag))
553                 goto error;
554         if (bus_dmamem_alloc(ch->dma.work_tag, (void **)&ch->dma.work, 0,
555             &ch->dma.work_map))
556                 goto error;
557         if (bus_dmamap_load(ch->dma.work_tag, ch->dma.work_map, ch->dma.work,
558             SIIS_WORK_SIZE, siis_dmasetupc_cb, &dcba, 0) || dcba.error) {
559                 bus_dmamem_free(ch->dma.work_tag, ch->dma.work, ch->dma.work_map);
560                 goto error;
561         }
562         ch->dma.work_bus = dcba.maddr;
563         /* Data area. */
564         if (bus_dma_tag_create(bus_get_dma_tag(dev), 2, 0,
565             BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
566             NULL, NULL,
567             SIIS_SG_ENTRIES * PAGE_SIZE * SIIS_MAX_SLOTS,
568             SIIS_SG_ENTRIES, 0xFFFFFFFF,
569             0, busdma_lock_mutex, &ch->mtx, &ch->dma.data_tag)) {
570                 goto error;
571         }
572         return;
573
574 error:
575         device_printf(dev, "WARNING - DMA initialization failed\n");
576         siis_dmafini(dev);
577 }
578
579 static void
580 siis_dmasetupc_cb(void *xsc, bus_dma_segment_t *segs, int nsegs, int error)
581 {
582         struct siis_dc_cb_args *dcba = (struct siis_dc_cb_args *)xsc;
583
584         if (!(dcba->error = error))
585                 dcba->maddr = segs[0].ds_addr;
586 }
587
588 static void
589 siis_dmafini(device_t dev)
590 {
591         struct siis_channel *ch = device_get_softc(dev);
592
593         if (ch->dma.data_tag) {
594                 bus_dma_tag_destroy(ch->dma.data_tag);
595                 ch->dma.data_tag = NULL;
596         }
597         if (ch->dma.work_bus) {
598                 bus_dmamap_unload(ch->dma.work_tag, ch->dma.work_map);
599                 bus_dmamem_free(ch->dma.work_tag, ch->dma.work, ch->dma.work_map);
600                 ch->dma.work_bus = 0;
601                 ch->dma.work_map = NULL;
602                 ch->dma.work = NULL;
603         }
604         if (ch->dma.work_tag) {
605                 bus_dma_tag_destroy(ch->dma.work_tag);
606                 ch->dma.work_tag = NULL;
607         }
608 }
609
610 static void
611 siis_slotsalloc(device_t dev)
612 {
613         struct siis_channel *ch = device_get_softc(dev);
614         int i;
615
616         /* Alloc and setup command/dma slots */
617         bzero(ch->slot, sizeof(ch->slot));
618         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
619                 struct siis_slot *slot = &ch->slot[i];
620
621                 slot->dev = dev;
622                 slot->slot = i;
623                 slot->state = SIIS_SLOT_EMPTY;
624                 slot->ccb = NULL;
625                 callout_init_mtx(&slot->timeout, &ch->mtx, 0);
626
627                 if (bus_dmamap_create(ch->dma.data_tag, 0, &slot->dma.data_map))
628                         device_printf(ch->dev, "FAILURE - create data_map\n");
629         }
630 }
631
632 static void
633 siis_slotsfree(device_t dev)
634 {
635         struct siis_channel *ch = device_get_softc(dev);
636         int i;
637
638         /* Free all dma slots */
639         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
640                 struct siis_slot *slot = &ch->slot[i];
641
642                 if (slot->dma.data_map) {
643                         bus_dmamap_destroy(ch->dma.data_tag, slot->dma.data_map);
644                         slot->dma.data_map = NULL;
645                 }
646         }
647 }
648
649 static void
650 siis_notify_events(device_t dev)
651 {
652         struct siis_channel *ch = device_get_softc(dev);
653         struct cam_path *dpath;
654         u_int32_t status;
655         int i;
656
657         status = ATA_INL(ch->r_mem, SIIS_P_SNTF);
658         ATA_OUTL(ch->r_mem, SIIS_P_SNTF, status);
659         if (bootverbose)
660                 device_printf(dev, "SNTF 0x%04x\n", status);
661         for (i = 0; i < 16; i++) {
662                 if ((status & (1 << i)) == 0)
663                         continue;
664                 if (xpt_create_path(&dpath, NULL,
665                     xpt_path_path_id(ch->path), i, 0) == CAM_REQ_CMP) {
666                         xpt_async(AC_SCSI_AEN, dpath, NULL);
667                         xpt_free_path(dpath);
668                 }
669         }
670
671 }
672
673 static void
674 siis_phy_check_events(device_t dev)
675 {
676         struct siis_channel *ch = device_get_softc(dev);
677
678         /* If we have a connection event, deal with it */
679         if (ch->pm_level == 0) {
680                 u_int32_t status = ATA_INL(ch->r_mem, SIIS_P_SSTS);
681                 if (((status & ATA_SS_DET_MASK) == ATA_SS_DET_PHY_ONLINE) &&
682                     ((status & ATA_SS_SPD_MASK) != ATA_SS_SPD_NO_SPEED) &&
683                     ((status & ATA_SS_IPM_MASK) == ATA_SS_IPM_ACTIVE)) {
684                         if (bootverbose)
685                                 device_printf(dev, "CONNECT requested\n");
686                         siis_reset(dev);
687                 } else {
688                         if (bootverbose)
689                                 device_printf(dev, "DISCONNECT requested\n");
690                         ch->devices = 0;
691                 }
692         }
693 }
694
695 static void
696 siis_ch_intr_locked(void *data)
697 {
698         device_t dev = (device_t)data;
699         struct siis_channel *ch = device_get_softc(dev);
700
701         mtx_lock(&ch->mtx);
702         siis_ch_intr(data);
703         mtx_unlock(&ch->mtx);
704 }
705
706 static void
707 siis_ch_intr(void *data)
708 {
709         device_t dev = (device_t)data;
710         struct siis_channel *ch = device_get_softc(dev);
711         uint32_t istatus, sstatus, ctx, estatus, ok, err = 0;
712         enum siis_err_type et;
713         int i, ccs, port, tslots;
714
715         mtx_assert(&ch->mtx, MA_OWNED);
716         /* Read command statuses. */
717         sstatus = ATA_INL(ch->r_mem, SIIS_P_SS);
718         ok = ch->rslots & ~sstatus;
719         /* Complete all successfull commands. */
720         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
721                 if ((ok >> i) & 1)
722                         siis_end_transaction(&ch->slot[i], SIIS_ERR_NONE);
723         }
724         /* Do we have any other events? */
725         if ((sstatus & SIIS_P_SS_ATTN) == 0)
726                 return;
727         /* Read and clear interrupt statuses. */
728         istatus = ATA_INL(ch->r_mem, SIIS_P_IS) &
729             (0xFFFF & ~SIIS_P_IX_COMMCOMP);
730         ATA_OUTL(ch->r_mem, SIIS_P_IS, istatus);
731         /* Process PHY events */
732         if (istatus & SIIS_P_IX_PHYRDYCHG)
733                 siis_phy_check_events(dev);
734         /* Process NOTIFY events */
735         if (istatus & SIIS_P_IX_SDBN)
736                 siis_notify_events(dev);
737         /* Process command errors */
738         if (istatus & SIIS_P_IX_COMMERR) {
739                 estatus = ATA_INL(ch->r_mem, SIIS_P_CMDERR);
740                 ctx = ATA_INL(ch->r_mem, SIIS_P_CTX);
741                 ccs = (ctx & SIIS_P_CTX_SLOT) >> SIIS_P_CTX_SLOT_SHIFT;
742                 port = (ctx & SIIS_P_CTX_PMP) >> SIIS_P_CTX_PMP_SHIFT;
743                 err = ch->rslots & sstatus;
744 //device_printf(dev, "%s ERROR ss %08x is %08x rs %08x es %d act %d port %d serr %08x\n",
745 //    __func__, sstatus, istatus, ch->rslots, estatus, ccs, port,
746 //    ATA_INL(ch->r_mem, SIIS_P_SERR));
747
748                 if (!ch->readlog && !ch->recovery) {
749                         xpt_freeze_simq(ch->sim, ch->numrslots);
750                         ch->recovery = 1;
751                 }
752                 if (ch->frozen) {
753                         union ccb *fccb = ch->frozen;
754                         ch->frozen = NULL;
755                         fccb->ccb_h.status &= ~CAM_STATUS_MASK;
756                         fccb->ccb_h.status |= CAM_REQUEUE_REQ | CAM_RELEASE_SIMQ;
757                         if (!(fccb->ccb_h.status & CAM_DEV_QFRZN)) {
758                                 xpt_freeze_devq(fccb->ccb_h.path, 1);
759                                 fccb->ccb_h.status |= CAM_DEV_QFRZN;
760                         }
761                         xpt_done(fccb);
762                 }
763                 if (estatus == SIIS_P_CMDERR_DEV ||
764                     estatus == SIIS_P_CMDERR_SDB ||
765                     estatus == SIIS_P_CMDERR_DATAFIS) {
766                         tslots = ch->numtslots[port];
767                         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
768                                 /* XXX: reqests in loading state. */
769                                 if (((ch->rslots >> i) & 1) == 0)
770                                         continue;
771                                 if (ch->slot[i].ccb->ccb_h.target_id != port)
772                                         continue;
773                                 if (tslots == 0) {
774                                         /* Untagged operation. */
775                                         if (i == ccs)
776                                                 et = SIIS_ERR_TFE;
777                                         else
778                                                 et = SIIS_ERR_INNOCENT;
779                                 } else {
780                                         /* Tagged operation. */
781                                         et = SIIS_ERR_NCQ;
782                                 }
783                                 siis_end_transaction(&ch->slot[i], et);
784                         }
785                         /*
786                          * We can't reinit port if there are some other
787                          * commands active, use resume to complete them.
788                          */
789                         if (ch->rslots != 0)
790                                 ATA_OUTL(ch->r_mem, SIIS_P_CTLSET, SIIS_P_CTL_RESUME);
791                 } else {
792                         if (estatus == SIIS_P_CMDERR_SENDFIS ||
793                             estatus == SIIS_P_CMDERR_INCSTATE ||
794                             estatus == SIIS_P_CMDERR_PPE ||
795                             estatus == SIIS_P_CMDERR_SERVICE) {
796                                 et = SIIS_ERR_SATA;
797                         } else
798                                 et = SIIS_ERR_INVALID;
799                         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
800                                 /* XXX: reqests in loading state. */
801                                 if (((ch->rslots >> i) & 1) == 0)
802                                         continue;
803                                 siis_end_transaction(&ch->slot[i], et);
804                         }
805                 }
806         }
807 }
808
809 /* Must be called with channel locked. */
810 static int
811 siis_check_collision(device_t dev, union ccb *ccb)
812 {
813         struct siis_channel *ch = device_get_softc(dev);
814
815         mtx_assert(&ch->mtx, MA_OWNED);
816         if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
817             (ccb->ataio.cmd.flags & (CAM_ATAIO_CONTROL | CAM_ATAIO_NEEDRESULT))) {
818                 /* Atomic command while anything active. */
819                 if (ch->numrslots != 0)
820                         return (1);
821         }
822        /* We have some atomic command running. */
823        if (ch->aslots != 0)
824                return (1);
825         return (0);
826 }
827
828 /* Must be called with channel locked. */
829 static void
830 siis_begin_transaction(device_t dev, union ccb *ccb)
831 {
832         struct siis_channel *ch = device_get_softc(dev);
833         struct siis_slot *slot;
834         int tag;
835
836         mtx_assert(&ch->mtx, MA_OWNED);
837         /* Choose empty slot. */
838         tag = ch->lastslot;
839         do {
840                 tag++;
841                 if (tag >= SIIS_MAX_SLOTS)
842                         tag = 0;
843                 if (ch->slot[tag].state == SIIS_SLOT_EMPTY)
844                         break;
845         } while (tag != ch->lastslot);
846         if (ch->slot[tag].state != SIIS_SLOT_EMPTY)
847                 device_printf(ch->dev, "ALL SLOTS BUSY!\n");
848         ch->lastslot = tag;
849         /* Occupy chosen slot. */
850         slot = &ch->slot[tag];
851         slot->ccb = ccb;
852         /* Update channel stats. */
853         ch->numrslots++;
854         if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
855             (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA)) {
856                 ch->numtslots[ccb->ccb_h.target_id]++;
857         }
858         if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
859             (ccb->ataio.cmd.flags & (CAM_ATAIO_CONTROL | CAM_ATAIO_NEEDRESULT)))
860                 ch->aslots |= (1 << slot->slot);
861         slot->dma.nsegs = 0;
862         /* If request moves data, setup and load SG list */
863         if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) {
864                 void *buf;
865                 bus_size_t size;
866
867                 slot->state = SIIS_SLOT_LOADING;
868                 if (ccb->ccb_h.func_code == XPT_ATA_IO) {
869                         buf = ccb->ataio.data_ptr;
870                         size = ccb->ataio.dxfer_len;
871                 } else {
872                         buf = ccb->csio.data_ptr;
873                         size = ccb->csio.dxfer_len;
874                 }
875                 bus_dmamap_load(ch->dma.data_tag, slot->dma.data_map,
876                     buf, size, siis_dmasetprd, slot, 0);
877         } else
878                 siis_execute_transaction(slot);
879 }
880
881 /* Locked by busdma engine. */
882 static void
883 siis_dmasetprd(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
884 {    
885         struct siis_slot *slot = arg;
886         struct siis_channel *ch = device_get_softc(slot->dev);
887         struct siis_cmd *ctp;
888         struct siis_dma_prd *prd;
889         int i;
890
891         mtx_assert(&ch->mtx, MA_OWNED);
892         if (error) {
893                 device_printf(slot->dev, "DMA load error\n");
894                 if (!ch->readlog)
895                         xpt_freeze_simq(ch->sim, 1);
896                 siis_end_transaction(slot, SIIS_ERR_INVALID);
897                 return;
898         }
899         KASSERT(nsegs <= SIIS_SG_ENTRIES, ("too many DMA segment entries\n"));
900         /* Get a piece of the workspace for this request */
901         ctp = (struct siis_cmd *)
902                 (ch->dma.work + SIIS_CT_OFFSET + (SIIS_CT_SIZE * slot->slot));
903         /* Fill S/G table */
904         if (slot->ccb->ccb_h.func_code == XPT_ATA_IO) 
905                 prd = &ctp->u.ata.prd[0];
906         else
907                 prd = &ctp->u.atapi.prd[0];
908         for (i = 0; i < nsegs; i++) {
909                 prd[i].dba = htole64(segs[i].ds_addr);
910                 prd[i].dbc = htole32(segs[i].ds_len);
911                 prd[i].control = 0;
912         }
913         prd[nsegs - 1].control = htole32(SIIS_PRD_TRM);
914         slot->dma.nsegs = nsegs;
915         bus_dmamap_sync(ch->dma.data_tag, slot->dma.data_map,
916             ((slot->ccb->ccb_h.flags & CAM_DIR_IN) ?
917             BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE));
918         siis_execute_transaction(slot);
919 }
920
921 /* Must be called with channel locked. */
922 static void
923 siis_execute_transaction(struct siis_slot *slot)
924 {
925         device_t dev = slot->dev;
926         struct siis_channel *ch = device_get_softc(dev);
927         struct siis_cmd *ctp;
928         union ccb *ccb = slot->ccb;
929         u_int64_t prb_bus;
930
931         mtx_assert(&ch->mtx, MA_OWNED);
932         /* Get a piece of the workspace for this request */
933         ctp = (struct siis_cmd *)
934                 (ch->dma.work + SIIS_CT_OFFSET + (SIIS_CT_SIZE * slot->slot));
935         ctp->control = 0;
936         ctp->protocol_override = 0;
937         ctp->transfer_count = 0;
938         /* Special handling for Soft Reset command. */
939         if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
940             (ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL)) {
941                 ctp->control |= htole16(SIIS_PRB_SOFT_RESET);
942         } else if (ccb->ccb_h.func_code == XPT_SCSI_IO) {
943                 if (ccb->ccb_h.flags & CAM_DIR_IN)
944                         ctp->control |= htole16(SIIS_PRB_PACKET_READ);
945                 if (ccb->ccb_h.flags & CAM_DIR_OUT)
946                         ctp->control |= htole16(SIIS_PRB_PACKET_WRITE);
947         }
948         /* Setup the FIS for this request */
949         if (!siis_setup_fis(ctp, ccb, slot->slot)) {
950                 device_printf(ch->dev, "Setting up SATA FIS failed\n");
951                 if (!ch->readlog)
952                         xpt_freeze_simq(ch->sim, 1);
953                 siis_end_transaction(slot, SIIS_ERR_INVALID);
954                 return;
955         }
956         bus_dmamap_sync(ch->dma.work_tag, ch->dma.work_map,
957             BUS_DMASYNC_PREWRITE);
958         /* Issue command to the controller. */
959         slot->state = SIIS_SLOT_RUNNING;
960         ch->rslots |= (1 << slot->slot);
961         prb_bus = ch->dma.work_bus +
962               SIIS_CT_OFFSET + (SIIS_CT_SIZE * slot->slot);
963         ATA_OUTL(ch->r_mem, SIIS_P_CACTL(slot->slot), prb_bus);
964         ATA_OUTL(ch->r_mem, SIIS_P_CACTH(slot->slot), prb_bus >> 32);
965         /* Start command execution timeout */
966         callout_reset(&slot->timeout, (int)ccb->ccb_h.timeout * hz / 1000,
967             (timeout_t*)siis_timeout, slot);
968         return;
969 }
970
971 /* Locked by callout mechanism. */
972 static void
973 siis_timeout(struct siis_slot *slot)
974 {
975         device_t dev = slot->dev;
976         struct siis_channel *ch = device_get_softc(dev);
977         int i;
978
979         mtx_assert(&ch->mtx, MA_OWNED);
980         device_printf(dev, "Timeout on slot %d\n", slot->slot);
981 device_printf(dev, "%s is %08x ss %08x rs %08x es %08x sts %08x serr %08x\n",
982     __func__, ATA_INL(ch->r_mem, SIIS_P_IS), ATA_INL(ch->r_mem, SIIS_P_SS), ch->rslots,
983     ATA_INL(ch->r_mem, SIIS_P_CMDERR), ATA_INL(ch->r_mem, SIIS_P_STS),
984     ATA_INL(ch->r_mem, SIIS_P_SERR));
985         /* Kick controller into sane state. */
986         siis_portinit(ch->dev);
987
988         if (!ch->readlog)
989                 xpt_freeze_simq(ch->sim, ch->numrslots);
990         /* Handle frozen command. */
991         if (ch->frozen) {
992                 union ccb *fccb = ch->frozen;
993                 ch->frozen = NULL;
994                 fccb->ccb_h.status &= ~CAM_STATUS_MASK;
995                 fccb->ccb_h.status |= CAM_REQUEUE_REQ | CAM_RELEASE_SIMQ;
996                 if (!(fccb->ccb_h.status & CAM_DEV_QFRZN)) {
997                         xpt_freeze_devq(fccb->ccb_h.path, 1);
998                         fccb->ccb_h.status |= CAM_DEV_QFRZN;
999                 }
1000                 xpt_done(fccb);
1001         }
1002         /* Handle command with timeout. */
1003         siis_end_transaction(&ch->slot[slot->slot], SIIS_ERR_TIMEOUT);
1004         /* Handle the rest of commands. */
1005         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
1006                 /* Do we have a running request on slot? */
1007                 if (ch->slot[i].state < SIIS_SLOT_RUNNING)
1008                         continue;
1009                 siis_end_transaction(&ch->slot[i], SIIS_ERR_INNOCENT);
1010         }
1011 }
1012
1013 /* Must be called with channel locked. */
1014 static void
1015 siis_end_transaction(struct siis_slot *slot, enum siis_err_type et)
1016 {
1017         device_t dev = slot->dev;
1018         struct siis_channel *ch = device_get_softc(dev);
1019         union ccb *ccb = slot->ccb;
1020
1021         mtx_assert(&ch->mtx, MA_OWNED);
1022         /* Cancel command execution timeout */
1023         callout_stop(&slot->timeout);
1024         bus_dmamap_sync(ch->dma.work_tag, ch->dma.work_map,
1025             BUS_DMASYNC_POSTWRITE);
1026         /* Read result registers to the result struct
1027          * May be incorrect if several commands finished same time,
1028          * so read only when sure or have to.
1029          */
1030         if (ccb->ccb_h.func_code == XPT_ATA_IO) {
1031                 struct ata_res *res = &ccb->ataio.res;
1032                 if ((et == SIIS_ERR_TFE) ||
1033                     (ccb->ataio.cmd.flags & CAM_ATAIO_NEEDRESULT)) {
1034                         int offs = SIIS_P_LRAM_SLOT(slot->slot) + 8;
1035
1036                         res->status = ATA_INB(ch->r_mem, offs + 2);
1037                         res->error = ATA_INB(ch->r_mem, offs + 3);
1038                         res->lba_low = ATA_INB(ch->r_mem, offs + 4);
1039                         res->lba_mid = ATA_INB(ch->r_mem, offs + 5);
1040                         res->lba_high = ATA_INB(ch->r_mem, offs + 6);
1041                         res->device = ATA_INB(ch->r_mem, offs + 7);
1042                         res->lba_low_exp = ATA_INB(ch->r_mem, offs + 8);
1043                         res->lba_mid_exp = ATA_INB(ch->r_mem, offs + 9);
1044                         res->lba_high_exp = ATA_INB(ch->r_mem, offs + 10);
1045                         res->sector_count = ATA_INB(ch->r_mem, offs + 12);
1046                         res->sector_count_exp = ATA_INB(ch->r_mem, offs + 13);
1047                 } else
1048                         bzero(res, sizeof(*res));
1049         }
1050         if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) {
1051                 bus_dmamap_sync(ch->dma.data_tag, slot->dma.data_map,
1052                     (ccb->ccb_h.flags & CAM_DIR_IN) ?
1053                     BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
1054                 bus_dmamap_unload(ch->dma.data_tag, slot->dma.data_map);
1055         }
1056         /* Set proper result status. */
1057         if (et != SIIS_ERR_NONE || ch->recovery) {
1058                 ch->eslots |= (1 << slot->slot);
1059                 ccb->ccb_h.status |= CAM_RELEASE_SIMQ;
1060         }
1061         /* In case of error, freeze device for proper recovery. */
1062         if (et != SIIS_ERR_NONE &&
1063             !(ccb->ccb_h.status & CAM_DEV_QFRZN)) {
1064                 xpt_freeze_devq(ccb->ccb_h.path, 1);
1065                 ccb->ccb_h.status |= CAM_DEV_QFRZN;
1066         }
1067         ccb->ccb_h.status &= ~CAM_STATUS_MASK;
1068         switch (et) {
1069         case SIIS_ERR_NONE:
1070                 ccb->ccb_h.status |= CAM_REQ_CMP;
1071                 if (ccb->ccb_h.func_code == XPT_SCSI_IO)
1072                         ccb->csio.scsi_status = SCSI_STATUS_OK;
1073                 break;
1074         case SIIS_ERR_INVALID:
1075                 ccb->ccb_h.status |= CAM_REQ_INVALID;
1076                 break;
1077         case SIIS_ERR_INNOCENT:
1078                 ccb->ccb_h.status |= CAM_REQUEUE_REQ;
1079                 break;
1080         case SIIS_ERR_TFE:
1081         case SIIS_ERR_NCQ:
1082                 if (ccb->ccb_h.func_code == XPT_SCSI_IO) {
1083                         ccb->ccb_h.status |= CAM_SCSI_STATUS_ERROR;
1084                         ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND;
1085                 } else {
1086                         ccb->ccb_h.status |= CAM_ATA_STATUS_ERROR;
1087                 }
1088                 break;
1089         case SIIS_ERR_SATA:
1090                 ccb->ccb_h.status |= CAM_UNCOR_PARITY;
1091                 break;
1092         case SIIS_ERR_TIMEOUT:
1093                 ccb->ccb_h.status |= CAM_CMD_TIMEOUT;
1094                 break;
1095         default:
1096                 ccb->ccb_h.status |= CAM_REQ_CMP_ERR;
1097         }
1098         /* Free slot. */
1099         ch->rslots &= ~(1 << slot->slot);
1100         ch->aslots &= ~(1 << slot->slot);
1101         slot->state = SIIS_SLOT_EMPTY;
1102         slot->ccb = NULL;
1103         /* Update channel stats. */
1104         ch->numrslots--;
1105         if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1106             (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA)) {
1107                 ch->numtslots[ccb->ccb_h.target_id]--;
1108         }
1109         /* If it was NCQ command error, put result on hold. */
1110         if (et == SIIS_ERR_NCQ) {
1111                 ch->hold[slot->slot] = ccb;
1112                 ch->numhslots++;
1113         } else if (ch->readlog) /* If it was our READ LOG command - process it. */
1114                 siis_process_read_log(dev, ccb);
1115         else
1116                 xpt_done(ccb);
1117         /* Unfreeze frozen command. */
1118         if (ch->frozen && ch->numrslots == 0) {
1119                 union ccb *fccb = ch->frozen;
1120                 ch->frozen = NULL;
1121                 siis_begin_transaction(dev, fccb);
1122                 xpt_release_simq(ch->sim, TRUE);
1123         }
1124         /* If we have no other active commands, ... */
1125         if (ch->rslots == 0) {
1126                 /* if we have slots in error, we can reinit port. */
1127                 if (ch->eslots != 0)
1128                         siis_portinit(dev);
1129                 /* if there commands on hold, we can do READ LOG. */
1130                 if (!ch->readlog && ch->numhslots)
1131                         siis_issue_read_log(dev);
1132         }
1133 }
1134
1135 static void
1136 siis_issue_read_log(device_t dev)
1137 {
1138         struct siis_channel *ch = device_get_softc(dev);
1139         union ccb *ccb;
1140         struct ccb_ataio *ataio;
1141         int i;
1142
1143         /* Find some holden command. */
1144         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
1145                 if (ch->hold[i])
1146                         break;
1147         }
1148         if (i == SIIS_MAX_SLOTS)
1149                 return;
1150         ch->readlog = 1;
1151         ccb = xpt_alloc_ccb_nowait();
1152         if (ccb == NULL) {
1153                 device_printf(dev, "Unable allocate READ LOG command");
1154                 return; /* XXX */
1155         }
1156         ccb->ccb_h = ch->hold[i]->ccb_h;        /* Reuse old header. */
1157         ccb->ccb_h.func_code = XPT_ATA_IO;
1158         ccb->ccb_h.flags = CAM_DIR_IN;
1159         ccb->ccb_h.timeout = 1000;      /* 1s should be enough. */
1160         ataio = &ccb->ataio;
1161         ataio->data_ptr = malloc(512, M_SIIS, M_NOWAIT);
1162         if (ataio->data_ptr == NULL) {
1163                 device_printf(dev, "Unable allocate memory for READ LOG command");
1164                 return; /* XXX */
1165         }
1166         ataio->dxfer_len = 512;
1167         bzero(&ataio->cmd, sizeof(ataio->cmd));
1168         ataio->cmd.flags = CAM_ATAIO_48BIT;
1169         ataio->cmd.command = 0x2F;      /* READ LOG EXT */
1170         ataio->cmd.sector_count = 1;
1171         ataio->cmd.sector_count_exp = 0;
1172         ataio->cmd.lba_low = 0x10;
1173         ataio->cmd.lba_mid = 0;
1174         ataio->cmd.lba_mid_exp = 0;
1175         siis_begin_transaction(dev, ccb);
1176 }
1177
1178 static void
1179 siis_process_read_log(device_t dev, union ccb *ccb)
1180 {
1181         struct siis_channel *ch = device_get_softc(dev);
1182         uint8_t *data;
1183         struct ata_res *res;
1184         int i;
1185
1186         ch->readlog = 0;
1187         data = ccb->ataio.data_ptr;
1188         if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP &&
1189             (data[0] & 0x80) == 0) {
1190                 for (i = 0; i < SIIS_MAX_SLOTS; i++) {
1191                         if (!ch->hold[i])
1192                                 continue;
1193                         if (ch->hold[i]->ccb_h.target_id != ccb->ccb_h.target_id)
1194                                 continue;
1195                         if ((data[0] & 0x1F) == i) {
1196                                 res = &ch->hold[i]->ataio.res;
1197                                 res->status = data[2];
1198                                 res->error = data[3];
1199                                 res->lba_low = data[4];
1200                                 res->lba_mid = data[5];
1201                                 res->lba_high = data[6];
1202                                 res->device = data[7];
1203                                 res->lba_low_exp = data[8];
1204                                 res->lba_mid_exp = data[9];
1205                                 res->lba_high_exp = data[10];
1206                                 res->sector_count = data[12];
1207                                 res->sector_count_exp = data[13];
1208                         } else {
1209                                 ch->hold[i]->ccb_h.status &= ~CAM_STATUS_MASK;
1210                                 ch->hold[i]->ccb_h.status |= CAM_REQUEUE_REQ;
1211                         }
1212                         xpt_done(ch->hold[i]);
1213                         ch->hold[i] = NULL;
1214                         ch->numhslots--;
1215                 }
1216         } else {
1217                 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP)
1218                         device_printf(dev, "Error while READ LOG EXT\n");
1219                 else if ((data[0] & 0x80) == 0) {
1220                         device_printf(dev, "Non-queued command error in READ LOG EXT\n");
1221                 }
1222                 for (i = 0; i < SIIS_MAX_SLOTS; i++) {
1223                         if (!ch->hold[i])
1224                                 continue;
1225                         if (ch->hold[i]->ccb_h.target_id != ccb->ccb_h.target_id)
1226                                 continue;
1227                         xpt_done(ch->hold[i]);
1228                         ch->hold[i] = NULL;
1229                         ch->numhslots--;
1230                 }
1231         }
1232         free(ccb->ataio.data_ptr, M_SIIS);
1233         xpt_free_ccb(ccb);
1234 }
1235
1236 static void
1237 siis_portinit(device_t dev)
1238 {
1239         struct siis_channel *ch = device_get_softc(dev);
1240         int i;
1241
1242         ch->eslots = 0;
1243         ch->recovery = 0;
1244         ATA_OUTL(ch->r_mem, SIIS_P_CTLCLR, SIIS_P_CTL_RESUME);
1245         for (i = 0; i < 16; i++) {
1246                 ATA_OUTL(ch->r_mem, SIIS_P_PMPSTS(i), 0),
1247                 ATA_OUTL(ch->r_mem, SIIS_P_PMPQACT(i), 0);
1248         }
1249         ATA_OUTL(ch->r_mem, SIIS_P_CTLSET, SIIS_P_CTL_PORT_INIT);
1250         siis_wait_ready(dev, 1000);
1251 }
1252
1253 #if 0
1254 static void
1255 siis_devreset(device_t dev)
1256 {
1257         struct siis_channel *ch = device_get_softc(dev);
1258
1259         ATA_OUTL(ch->r_mem, SIIS_P_CTLSET, SIIS_P_CTL_DEV_RESET);
1260         siis_wait_ready(dev, 1000);
1261 }
1262 #endif
1263
1264 static int
1265 siis_wait_ready(device_t dev, int t)
1266 {
1267         struct siis_channel *ch = device_get_softc(dev);
1268         int timeout = 0;
1269         uint32_t val;
1270
1271         while (((val = ATA_INL(ch->r_mem, SIIS_P_STS)) &
1272             SIIS_P_CTL_READY) == 0) {
1273                 DELAY(1000);
1274                 if (timeout++ > t) {
1275                         device_printf(dev, "port is not ready (timeout %dms) "
1276                             "status = %08x\n", t, val);
1277                         return (EBUSY);
1278                 }
1279         }
1280         if (bootverbose)
1281                 device_printf(dev, "ready wait time=%dms\n", timeout);
1282         return (0);
1283 }
1284
1285 static void
1286 siis_reset(device_t dev)
1287 {
1288         struct siis_channel *ch = device_get_softc(dev);
1289         int i;
1290
1291         if (bootverbose)
1292                 device_printf(dev, "SIIS reset...\n");
1293         xpt_freeze_simq(ch->sim, ch->numrslots);
1294         /* Requeue freezed command. */
1295         if (ch->frozen) {
1296                 union ccb *fccb = ch->frozen;
1297                 ch->frozen = NULL;
1298                 fccb->ccb_h.status &= ~CAM_STATUS_MASK;
1299                 fccb->ccb_h.status |= CAM_REQUEUE_REQ | CAM_RELEASE_SIMQ;
1300                 if (!(fccb->ccb_h.status & CAM_DEV_QFRZN)) {
1301                         xpt_freeze_devq(fccb->ccb_h.path, 1);
1302                         fccb->ccb_h.status |= CAM_DEV_QFRZN;
1303                 }
1304                 xpt_done(fccb);
1305         }
1306         /* Disable port interrupts */
1307         ATA_OUTL(ch->r_mem, SIIS_P_IECLR, 0x0000FFFF);
1308         /* Kill the engine and requeue all running commands. */
1309         siis_portinit(dev);
1310         for (i = 0; i < SIIS_MAX_SLOTS; i++) {
1311                 /* Do we have a running request on slot? */
1312                 if (ch->slot[i].state < SIIS_SLOT_RUNNING)
1313                         continue;
1314                 /* XXX; Commands in loading state. */
1315                 siis_end_transaction(&ch->slot[i], SIIS_ERR_INNOCENT);
1316         }
1317         /* Reset and reconnect PHY, */
1318         if (!siis_sata_phy_reset(dev)) {
1319                 ch->devices = 0;
1320                 /* Enable port interrupts */
1321                 ATA_OUTL(ch->r_mem, SIIS_P_IESET, SIIS_P_IX_ENABLED);
1322                 if (bootverbose)
1323                         device_printf(dev,
1324                             "SIIS reset done: phy reset found no device\n");
1325                 /* Tell the XPT about the event */
1326                 xpt_async(AC_BUS_RESET, ch->path, NULL);
1327                 return;
1328         }
1329         /* Wait for clearing busy status. */
1330         if (siis_wait_ready(dev, 10000)) {
1331                 device_printf(dev, "device ready timeout\n");
1332         }
1333         ch->devices = 1;
1334         /* Enable port interrupts */
1335         ATA_OUTL(ch->r_mem, SIIS_P_IS, 0xFFFFFFFF);
1336         ATA_OUTL(ch->r_mem, SIIS_P_IESET, SIIS_P_IX_ENABLED);
1337         if (bootverbose)
1338                 device_printf(dev, "SIIS reset done: devices=%08x\n", ch->devices);
1339         /* Tell the XPT about the event */
1340         xpt_async(AC_BUS_RESET, ch->path, NULL);
1341 }
1342
1343 static int
1344 siis_setup_fis(struct siis_cmd *ctp, union ccb *ccb, int tag)
1345 {
1346         u_int8_t *fis = &ctp->fis[0];
1347
1348         bzero(fis, 24);
1349         fis[0] = 0x27;                  /* host to device */
1350         fis[1] = (ccb->ccb_h.target_id & 0x0f);
1351         if (ccb->ccb_h.func_code == XPT_SCSI_IO) {
1352                 fis[1] |= 0x80;
1353                 fis[2] = ATA_PACKET_CMD;
1354                 if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE)
1355                         fis[3] = ATA_F_DMA;
1356                 else {
1357                         fis[5] = ccb->csio.dxfer_len;
1358                         fis[6] = ccb->csio.dxfer_len >> 8;
1359                 }
1360                 fis[7] = ATA_D_LBA;
1361                 fis[15] = ATA_A_4BIT;
1362                 bzero(ctp->u.atapi.ccb, 16);
1363                 bcopy((ccb->ccb_h.flags & CAM_CDB_POINTER) ?
1364                     ccb->csio.cdb_io.cdb_ptr : ccb->csio.cdb_io.cdb_bytes,
1365                     ctp->u.atapi.ccb, ccb->csio.cdb_len);
1366         } else if ((ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL) == 0) {
1367                 fis[1] |= 0x80;
1368                 fis[2] = ccb->ataio.cmd.command;
1369                 fis[3] = ccb->ataio.cmd.features;
1370                 fis[4] = ccb->ataio.cmd.lba_low;
1371                 fis[5] = ccb->ataio.cmd.lba_mid;
1372                 fis[6] = ccb->ataio.cmd.lba_high;
1373                 fis[7] = ccb->ataio.cmd.device;
1374                 fis[8] = ccb->ataio.cmd.lba_low_exp;
1375                 fis[9] = ccb->ataio.cmd.lba_mid_exp;
1376                 fis[10] = ccb->ataio.cmd.lba_high_exp;
1377                 fis[11] = ccb->ataio.cmd.features_exp;
1378                 if (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA) {
1379                         fis[12] = tag << 3;
1380                         fis[13] = 0;
1381                 } else {
1382                         fis[12] = ccb->ataio.cmd.sector_count;
1383                         fis[13] = ccb->ataio.cmd.sector_count_exp;
1384                 }
1385                 fis[15] = ATA_A_4BIT;
1386         } else {
1387                 /* Soft reset. */
1388         }
1389         return (20);
1390 }
1391
1392 static int
1393 siis_sata_connect(struct siis_channel *ch)
1394 {
1395         u_int32_t status;
1396         int timeout;
1397
1398         /* Wait up to 100ms for "connect well" */
1399         for (timeout = 0; timeout < 100 ; timeout++) {
1400                 status = ATA_INL(ch->r_mem, SIIS_P_SSTS);
1401                 if (((status & ATA_SS_DET_MASK) == ATA_SS_DET_PHY_ONLINE) &&
1402                     ((status & ATA_SS_SPD_MASK) != ATA_SS_SPD_NO_SPEED) &&
1403                     ((status & ATA_SS_IPM_MASK) == ATA_SS_IPM_ACTIVE))
1404                         break;
1405                 DELAY(1000);
1406         }
1407         if (timeout >= 100) {
1408                 if (bootverbose) {
1409                         device_printf(ch->dev, "SATA connect timeout status=%08x\n",
1410                             status);
1411                 }
1412                 return (0);
1413         }
1414         if (bootverbose) {
1415                 device_printf(ch->dev, "SATA connect time=%dms status=%08x\n",
1416                     timeout, status);
1417         }
1418         /* Clear SATA error register */
1419         ATA_OUTL(ch->r_mem, SIIS_P_SERR, 0xffffffff);
1420         return (1);
1421 }
1422
1423 static int
1424 siis_sata_phy_reset(device_t dev)
1425 {
1426         struct siis_channel *ch = device_get_softc(dev);
1427         uint32_t val;
1428
1429         if (bootverbose)
1430                 device_printf(dev, "hardware reset ...\n");
1431         ATA_OUTL(ch->r_mem, SIIS_P_SCTL, ATA_SC_IPM_DIS_PARTIAL |
1432             ATA_SC_IPM_DIS_SLUMBER | ATA_SC_DET_RESET);
1433         DELAY(50000);
1434         if (ch->sata_rev == 1)
1435                 val = ATA_SC_SPD_SPEED_GEN1;
1436         else if (ch->sata_rev == 2)
1437                 val = ATA_SC_SPD_SPEED_GEN2;
1438         else if (ch->sata_rev == 3)
1439                 val = ATA_SC_SPD_SPEED_GEN3;
1440         else
1441                 val = 0;
1442         ATA_OUTL(ch->r_mem, SIIS_P_SCTL,
1443             ATA_SC_DET_IDLE | val | ((ch->pm_level > 0) ? 0 :
1444             (ATA_SC_IPM_DIS_PARTIAL | ATA_SC_IPM_DIS_SLUMBER)));
1445         DELAY(50000);
1446         return (siis_sata_connect(ch));
1447 }
1448
1449 static void
1450 siisaction(struct cam_sim *sim, union ccb *ccb)
1451 {
1452         device_t dev;
1453         struct siis_channel *ch;
1454
1455         CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_TRACE, ("siisaction func_code=%x\n",
1456             ccb->ccb_h.func_code));
1457
1458         ch = (struct siis_channel *)cam_sim_softc(sim);
1459         dev = ch->dev;
1460         mtx_assert(&ch->mtx, MA_OWNED);
1461         switch (ccb->ccb_h.func_code) {
1462         /* Common cases first */
1463         case XPT_ATA_IO:        /* Execute the requested I/O operation */
1464         case XPT_SCSI_IO:
1465                 if (ch->devices == 0) {
1466                         ccb->ccb_h.status = CAM_SEL_TIMEOUT;
1467                         xpt_done(ccb);
1468                         break;
1469                 }
1470                 /* Check for command collision. */
1471                 if (siis_check_collision(dev, ccb)) {
1472                         /* Freeze command. */
1473                         ch->frozen = ccb;
1474                         /* We have only one frozen slot, so freeze simq also. */
1475                         xpt_freeze_simq(ch->sim, 1);
1476                         return;
1477                 }
1478                 siis_begin_transaction(dev, ccb);
1479                 break;
1480         case XPT_EN_LUN:                /* Enable LUN as a target */
1481         case XPT_TARGET_IO:             /* Execute target I/O request */
1482         case XPT_ACCEPT_TARGET_IO:      /* Accept Host Target Mode CDB */
1483         case XPT_CONT_TARGET_IO:        /* Continue Host Target I/O Connection*/
1484         case XPT_ABORT:                 /* Abort the specified CCB */
1485                 /* XXX Implement */
1486                 ccb->ccb_h.status = CAM_REQ_INVALID;
1487                 xpt_done(ccb);
1488                 break;
1489         case XPT_SET_TRAN_SETTINGS:
1490         {
1491                 struct  ccb_trans_settings *cts = &ccb->cts;
1492
1493                 if (cts->xport_specific.sata.valid & CTS_SATA_VALID_PM) {
1494                         if (cts->xport_specific.sata.pm_present)
1495                                 ATA_OUTL(ch->r_mem, SIIS_P_CTLSET, SIIS_P_CTL_PME);
1496                         else
1497                                 ATA_OUTL(ch->r_mem, SIIS_P_CTLCLR, SIIS_P_CTL_PME);
1498                 }
1499                 ccb->ccb_h.status = CAM_REQ_CMP;
1500                 xpt_done(ccb);
1501                 break;
1502         }
1503         case XPT_GET_TRAN_SETTINGS:
1504         /* Get default/user set transfer settings for the target */
1505         {
1506                 struct  ccb_trans_settings *cts = &ccb->cts;
1507                 uint32_t status;
1508
1509                 cts->protocol = PROTO_ATA;
1510                 cts->protocol_version = PROTO_VERSION_UNSPECIFIED;
1511                 cts->transport = XPORT_SATA;
1512                 cts->transport_version = XPORT_VERSION_UNSPECIFIED;
1513                 cts->proto_specific.valid = 0;
1514                 cts->xport_specific.sata.valid = 0;
1515                 if (cts->type == CTS_TYPE_CURRENT_SETTINGS)
1516                         status = ATA_INL(ch->r_mem, SIIS_P_SSTS) & ATA_SS_SPD_MASK;
1517                 else
1518                         status = ATA_INL(ch->r_mem, SIIS_P_SCTL) & ATA_SC_SPD_MASK;
1519                 if (status & ATA_SS_SPD_GEN3) {
1520                         cts->xport_specific.sata.bitrate = 600000;
1521                         cts->xport_specific.sata.valid |= CTS_SATA_VALID_SPEED;
1522                 } else if (status & ATA_SS_SPD_GEN2) {
1523                         cts->xport_specific.sata.bitrate = 300000;
1524                         cts->xport_specific.sata.valid |= CTS_SATA_VALID_SPEED;
1525                 } else if (status & ATA_SS_SPD_GEN1) {
1526                         cts->xport_specific.sata.bitrate = 150000;
1527                         cts->xport_specific.sata.valid |= CTS_SATA_VALID_SPEED;
1528                 }
1529                 cts->xport_specific.sata.pm_present =
1530                         (ATA_INL(ch->r_mem, SIIS_P_STS) & SIIS_P_CTL_PME) ?
1531                             1 : 0;
1532                 cts->xport_specific.sata.valid |= CTS_SATA_VALID_PM;
1533                 ccb->ccb_h.status = CAM_REQ_CMP;
1534                 xpt_done(ccb);
1535                 break;
1536         }
1537 #if 0
1538         case XPT_CALC_GEOMETRY:
1539         {
1540                 struct    ccb_calc_geometry *ccg;
1541                 uint32_t size_mb;
1542                 uint32_t secs_per_cylinder;
1543
1544                 ccg = &ccb->ccg;
1545                 size_mb = ccg->volume_size
1546                         / ((1024L * 1024L) / ccg->block_size);
1547                 if (size_mb >= 1024 && (aha->extended_trans != 0)) {
1548                         if (size_mb >= 2048) {
1549                                 ccg->heads = 255;
1550                                 ccg->secs_per_track = 63;
1551                         } else {
1552                                 ccg->heads = 128;
1553                                 ccg->secs_per_track = 32;
1554                         }
1555                 } else {
1556                         ccg->heads = 64;
1557                         ccg->secs_per_track = 32;
1558                 }
1559                 secs_per_cylinder = ccg->heads * ccg->secs_per_track;
1560                 ccg->cylinders = ccg->volume_size / secs_per_cylinder;
1561                 ccb->ccb_h.status = CAM_REQ_CMP;
1562                 xpt_done(ccb);
1563                 break;
1564         }
1565 #endif
1566         case XPT_RESET_BUS:             /* Reset the specified SCSI bus */
1567         case XPT_RESET_DEV:     /* Bus Device Reset the specified SCSI device */
1568                 siis_reset(dev);
1569                 ccb->ccb_h.status = CAM_REQ_CMP;
1570                 xpt_done(ccb);
1571                 break;
1572         case XPT_TERM_IO:               /* Terminate the I/O process */
1573                 /* XXX Implement */
1574                 ccb->ccb_h.status = CAM_REQ_INVALID;
1575                 xpt_done(ccb);
1576                 break;
1577         case XPT_PATH_INQ:              /* Path routing inquiry */
1578         {
1579                 struct ccb_pathinq *cpi = &ccb->cpi;
1580
1581                 cpi->version_num = 1; /* XXX??? */
1582                 cpi->hba_inquiry = PI_SDTR_ABLE | PI_TAG_ABLE;
1583                 cpi->hba_inquiry |= PI_SATAPM;
1584                 cpi->target_sprt = 0;
1585                 cpi->hba_misc = PIM_SEQSCAN;
1586                 cpi->hba_eng_cnt = 0;
1587                 cpi->max_target = 15;
1588                 cpi->max_lun = 0;
1589                 cpi->initiator_id = 0;
1590                 cpi->bus_id = cam_sim_bus(sim);
1591                 cpi->base_transfer_speed = 150000;
1592                 strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
1593                 strncpy(cpi->hba_vid, "SIIS", HBA_IDLEN);
1594                 strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
1595                 cpi->unit_number = cam_sim_unit(sim);
1596                 cpi->transport = XPORT_SATA;
1597                 cpi->transport_version = XPORT_VERSION_UNSPECIFIED;
1598                 cpi->protocol = PROTO_ATA;
1599                 cpi->protocol_version = PROTO_VERSION_UNSPECIFIED;
1600                 cpi->ccb_h.status = CAM_REQ_CMP;
1601                 cpi->maxio = MAXPHYS;
1602                 xpt_done(ccb);
1603                 break;
1604         }
1605         default:
1606                 ccb->ccb_h.status = CAM_REQ_INVALID;
1607                 xpt_done(ccb);
1608                 break;
1609         }
1610 }
1611
1612 static void
1613 siispoll(struct cam_sim *sim)
1614 {
1615         struct siis_channel *ch = (struct siis_channel *)cam_sim_softc(sim);
1616
1617         siis_ch_intr(ch->dev);
1618 }