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