ahci_generic.c revision 214325
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: head/sys/dev/ahci/ahci.c 214325 2010-10-25 07:41:21Z mav $");
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 "ahci.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_debug.h>
56
57/* local prototypes */
58static int ahci_setup_interrupt(device_t dev);
59static void ahci_intr(void *data);
60static void ahci_intr_one(void *data);
61static int ahci_suspend(device_t dev);
62static int ahci_resume(device_t dev);
63static int ahci_ch_init(device_t dev);
64static int ahci_ch_deinit(device_t dev);
65static int ahci_ch_suspend(device_t dev);
66static int ahci_ch_resume(device_t dev);
67static void ahci_ch_pm(void *arg);
68static void ahci_ch_intr_locked(void *data);
69static void ahci_ch_intr(void *data);
70static int ahci_ctlr_reset(device_t dev);
71static int ahci_ctlr_setup(device_t dev);
72static void ahci_begin_transaction(device_t dev, union ccb *ccb);
73static void ahci_dmasetprd(void *arg, bus_dma_segment_t *segs, int nsegs, int error);
74static void ahci_execute_transaction(struct ahci_slot *slot);
75static void ahci_timeout(struct ahci_slot *slot);
76static void ahci_end_transaction(struct ahci_slot *slot, enum ahci_err_type et);
77static int ahci_setup_fis(device_t dev, struct ahci_cmd_tab *ctp, union ccb *ccb, int tag);
78static void ahci_dmainit(device_t dev);
79static void ahci_dmasetupc_cb(void *xsc, bus_dma_segment_t *segs, int nsegs, int error);
80static void ahci_dmafini(device_t dev);
81static void ahci_slotsalloc(device_t dev);
82static void ahci_slotsfree(device_t dev);
83static void ahci_reset(device_t dev);
84static void ahci_start(device_t dev, int fbs);
85static void ahci_stop(device_t dev);
86static void ahci_clo(device_t dev);
87static void ahci_start_fr(device_t dev);
88static void ahci_stop_fr(device_t dev);
89
90static int ahci_sata_connect(struct ahci_channel *ch);
91static int ahci_sata_phy_reset(device_t dev);
92static int ahci_wait_ready(device_t dev, int t);
93
94static void ahci_issue_read_log(device_t dev);
95static void ahci_process_read_log(device_t dev, union ccb *ccb);
96
97static void ahciaction(struct cam_sim *sim, union ccb *ccb);
98static void ahcipoll(struct cam_sim *sim);
99
100MALLOC_DEFINE(M_AHCI, "AHCI driver", "AHCI driver data buffers");
101
102static struct {
103	uint32_t	id;
104	uint8_t		rev;
105	const char	*name;
106	int		quirks;
107#define AHCI_Q_NOFORCE	1
108#define AHCI_Q_NOPMP	2
109#define AHCI_Q_NONCQ	4
110#define AHCI_Q_1CH	8
111#define AHCI_Q_2CH	16
112#define AHCI_Q_4CH	32
113#define AHCI_Q_EDGEIS	64
114#define AHCI_Q_SATA2	128
115#define AHCI_Q_NOBSYRES	256
116#define AHCI_Q_NOAA	512
117} ahci_ids[] = {
118	{0x43801002, 0x00, "ATI IXP600",	0},
119	{0x43901002, 0x00, "ATI IXP700",	0},
120	{0x43911002, 0x00, "ATI IXP700",	0},
121	{0x43921002, 0x00, "ATI IXP700",	0},
122	{0x43931002, 0x00, "ATI IXP700",	0},
123	{0x43941002, 0x00, "ATI IXP800",	0},
124	{0x43951002, 0x00, "ATI IXP800",	0},
125	{0x26528086, 0x00, "Intel ICH6",	AHCI_Q_NOFORCE},
126	{0x26538086, 0x00, "Intel ICH6M",	AHCI_Q_NOFORCE},
127	{0x26818086, 0x00, "Intel ESB2",	0},
128	{0x26828086, 0x00, "Intel ESB2",	0},
129	{0x26838086, 0x00, "Intel ESB2",	0},
130	{0x27c18086, 0x00, "Intel ICH7",	0},
131	{0x27c38086, 0x00, "Intel ICH7",	0},
132	{0x27c58086, 0x00, "Intel ICH7M",	0},
133	{0x27c68086, 0x00, "Intel ICH7M",	0},
134	{0x28218086, 0x00, "Intel ICH8",	0},
135	{0x28228086, 0x00, "Intel ICH8",	0},
136	{0x28248086, 0x00, "Intel ICH8",	0},
137	{0x28298086, 0x00, "Intel ICH8M",	0},
138	{0x282a8086, 0x00, "Intel ICH8M",	0},
139	{0x29228086, 0x00, "Intel ICH9",	0},
140	{0x29238086, 0x00, "Intel ICH9",	0},
141	{0x29248086, 0x00, "Intel ICH9",	0},
142	{0x29258086, 0x00, "Intel ICH9",	0},
143	{0x29278086, 0x00, "Intel ICH9",	0},
144	{0x29298086, 0x00, "Intel ICH9M",	0},
145	{0x292a8086, 0x00, "Intel ICH9M",	0},
146	{0x292b8086, 0x00, "Intel ICH9M",	0},
147	{0x292c8086, 0x00, "Intel ICH9M",	0},
148	{0x292f8086, 0x00, "Intel ICH9M",	0},
149	{0x294d8086, 0x00, "Intel ICH9",	0},
150	{0x294e8086, 0x00, "Intel ICH9M",	0},
151	{0x3a058086, 0x00, "Intel ICH10",	0},
152	{0x3a228086, 0x00, "Intel ICH10",	0},
153	{0x3a258086, 0x00, "Intel ICH10",	0},
154	{0x3b228086, 0x00, "Intel 5 Series/3400 Series",	0},
155	{0x3b238086, 0x00, "Intel 5 Series/3400 Series",	0},
156	{0x3b258086, 0x00, "Intel 5 Series/3400 Series",	0},
157	{0x3b298086, 0x00, "Intel 5 Series/3400 Series",	0},
158	{0x3b2c8086, 0x00, "Intel 5 Series/3400 Series",	0},
159	{0x3b2f8086, 0x00, "Intel 5 Series/3400 Series",	0},
160	{0x1c028086, 0x00, "Intel Cougar Point",	0},
161	{0x1c038086, 0x00, "Intel Cougar Point",	0},
162	{0x1c048086, 0x00, "Intel Cougar Point",	0},
163	{0x1c058086, 0x00, "Intel Cougar Point",	0},
164	{0x2361197b, 0x00, "JMicron JMB361",	AHCI_Q_NOFORCE},
165	{0x2363197b, 0x00, "JMicron JMB363",	AHCI_Q_NOFORCE},
166	{0x2365197b, 0x00, "JMicron JMB365",	AHCI_Q_NOFORCE},
167	{0x2366197b, 0x00, "JMicron JMB366",	AHCI_Q_NOFORCE},
168	{0x2368197b, 0x00, "JMicron JMB368",	AHCI_Q_NOFORCE},
169	{0x611111ab, 0x00, "Marvell 88SX6111",	AHCI_Q_NOFORCE|AHCI_Q_1CH|AHCI_Q_EDGEIS},
170	{0x612111ab, 0x00, "Marvell 88SX6121",	AHCI_Q_NOFORCE|AHCI_Q_2CH|AHCI_Q_EDGEIS},
171	{0x614111ab, 0x00, "Marvell 88SX6141",	AHCI_Q_NOFORCE|AHCI_Q_4CH|AHCI_Q_EDGEIS},
172	{0x614511ab, 0x00, "Marvell 88SX6145",	AHCI_Q_NOFORCE|AHCI_Q_4CH|AHCI_Q_EDGEIS},
173	{0x91231b4b, 0x11, "Marvell 88SE912x",	AHCI_Q_NOBSYRES},
174	{0x91231b4b, 0x00, "Marvell 88SE912x",	AHCI_Q_EDGEIS|AHCI_Q_SATA2|AHCI_Q_NOBSYRES},
175	{0x044c10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
176	{0x044d10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
177	{0x044e10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
178	{0x044f10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
179	{0x045c10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
180	{0x045d10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
181	{0x045e10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
182	{0x045f10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
183	{0x055010de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
184	{0x055110de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
185	{0x055210de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
186	{0x055310de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
187	{0x055410de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
188	{0x055510de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
189	{0x055610de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
190	{0x055710de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
191	{0x055810de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
192	{0x055910de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
193	{0x055A10de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
194	{0x055B10de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
195	{0x058410de, 0x00, "NVIDIA MCP67",	AHCI_Q_NOAA},
196	{0x07f010de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
197	{0x07f110de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
198	{0x07f210de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
199	{0x07f310de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
200	{0x07f410de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
201	{0x07f510de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
202	{0x07f610de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
203	{0x07f710de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
204	{0x07f810de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
205	{0x07f910de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
206	{0x07fa10de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
207	{0x07fb10de, 0x00, "NVIDIA MCP73",	AHCI_Q_NOAA},
208	{0x0ad010de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
209	{0x0ad110de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
210	{0x0ad210de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
211	{0x0ad310de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
212	{0x0ad410de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
213	{0x0ad510de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
214	{0x0ad610de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
215	{0x0ad710de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
216	{0x0ad810de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
217	{0x0ad910de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
218	{0x0ada10de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
219	{0x0adb10de, 0x00, "NVIDIA MCP77",	AHCI_Q_NOAA},
220	{0x0ab410de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
221	{0x0ab510de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
222	{0x0ab610de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
223	{0x0ab710de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
224	{0x0ab810de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
225	{0x0ab910de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
226	{0x0aba10de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
227	{0x0abb10de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
228	{0x0abc10de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
229	{0x0abd10de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
230	{0x0abe10de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
231	{0x0abf10de, 0x00, "NVIDIA MCP79",	AHCI_Q_NOAA},
232	{0x0d8410de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
233	{0x0d8510de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
234	{0x0d8610de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
235	{0x0d8710de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
236	{0x0d8810de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
237	{0x0d8910de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
238	{0x0d8a10de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
239	{0x0d8b10de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
240	{0x0d8c10de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
241	{0x0d8d10de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
242	{0x0d8e10de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
243	{0x0d8f10de, 0x00, "NVIDIA MCP89",	AHCI_Q_NOAA},
244	{0x33491106, 0x00, "VIA VT8251",	AHCI_Q_NOPMP|AHCI_Q_NONCQ},
245	{0x62871106, 0x00, "VIA VT8251",	AHCI_Q_NOPMP|AHCI_Q_NONCQ},
246	{0x11841039, 0x00, "SiS 966",		0},
247	{0x11851039, 0x00, "SiS 968",		0},
248	{0x01861039, 0x00, "SiS 968",		0},
249	{0x00000000, 0x00, NULL,		0}
250};
251
252static int
253ahci_probe(device_t dev)
254{
255	char buf[64];
256	int i, valid = 0;
257	uint32_t devid = pci_get_devid(dev);
258	uint8_t revid = pci_get_revid(dev);
259
260	/* Is this a possible AHCI candidate? */
261	if (pci_get_class(dev) == PCIC_STORAGE &&
262	    pci_get_subclass(dev) == PCIS_STORAGE_SATA &&
263	    pci_get_progif(dev) == PCIP_STORAGE_SATA_AHCI_1_0)
264		valid = 1;
265	/* Is this a known AHCI chip? */
266	for (i = 0; ahci_ids[i].id != 0; i++) {
267		if (ahci_ids[i].id == devid &&
268		    ahci_ids[i].rev <= revid &&
269		    (valid || !(ahci_ids[i].quirks & AHCI_Q_NOFORCE))) {
270			/* Do not attach JMicrons with single PCI function. */
271			if (pci_get_vendor(dev) == 0x197b &&
272			    (pci_read_config(dev, 0xdf, 1) & 0x40) == 0)
273				return (ENXIO);
274			snprintf(buf, sizeof(buf), "%s AHCI SATA controller",
275			    ahci_ids[i].name);
276			device_set_desc_copy(dev, buf);
277			return (BUS_PROBE_VENDOR);
278		}
279	}
280	if (!valid)
281		return (ENXIO);
282	device_set_desc_copy(dev, "AHCI SATA controller");
283	return (BUS_PROBE_VENDOR);
284}
285
286static int
287ahci_ata_probe(device_t dev)
288{
289	char buf[64];
290	int i;
291	uint32_t devid = pci_get_devid(dev);
292	uint8_t revid = pci_get_revid(dev);
293
294	if ((intptr_t)device_get_ivars(dev) >= 0)
295		return (ENXIO);
296	/* Is this a known AHCI chip? */
297	for (i = 0; ahci_ids[i].id != 0; i++) {
298		if (ahci_ids[i].id == devid &&
299		    ahci_ids[i].rev <= revid) {
300			snprintf(buf, sizeof(buf), "%s AHCI SATA controller",
301			    ahci_ids[i].name);
302			device_set_desc_copy(dev, buf);
303			return (BUS_PROBE_VENDOR);
304		}
305	}
306	device_set_desc_copy(dev, "AHCI SATA controller");
307	return (BUS_PROBE_VENDOR);
308}
309
310static int
311ahci_attach(device_t dev)
312{
313	struct ahci_controller *ctlr = device_get_softc(dev);
314	device_t child;
315	int	error, unit, speed, i;
316	uint32_t devid = pci_get_devid(dev);
317	uint8_t revid = pci_get_revid(dev);
318	u_int32_t version;
319
320	ctlr->dev = dev;
321	i = 0;
322	while (ahci_ids[i].id != 0 &&
323	    (ahci_ids[i].id != devid ||
324	     ahci_ids[i].rev > revid))
325		i++;
326	ctlr->quirks = ahci_ids[i].quirks;
327	resource_int_value(device_get_name(dev),
328	    device_get_unit(dev), "ccc", &ctlr->ccc);
329	/* if we have a memory BAR(5) we are likely on an AHCI part */
330	ctlr->r_rid = PCIR_BAR(5);
331	if (!(ctlr->r_mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
332	    &ctlr->r_rid, RF_ACTIVE)))
333		return ENXIO;
334	/* Setup our own memory management for channels. */
335	ctlr->sc_iomem.rm_start = rman_get_start(ctlr->r_mem);
336	ctlr->sc_iomem.rm_end = rman_get_end(ctlr->r_mem);
337	ctlr->sc_iomem.rm_type = RMAN_ARRAY;
338	ctlr->sc_iomem.rm_descr = "I/O memory addresses";
339	if ((error = rman_init(&ctlr->sc_iomem)) != 0) {
340		bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
341		return (error);
342	}
343	if ((error = rman_manage_region(&ctlr->sc_iomem,
344	    rman_get_start(ctlr->r_mem), rman_get_end(ctlr->r_mem))) != 0) {
345		bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
346		rman_fini(&ctlr->sc_iomem);
347		return (error);
348	}
349	pci_enable_busmaster(dev);
350	/* Reset controller */
351	if ((error = ahci_ctlr_reset(dev)) != 0) {
352		bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
353		rman_fini(&ctlr->sc_iomem);
354		return (error);
355	};
356	/* Get the HW capabilities */
357	version = ATA_INL(ctlr->r_mem, AHCI_VS);
358	ctlr->caps = ATA_INL(ctlr->r_mem, AHCI_CAP);
359	if (version >= 0x00010020)
360		ctlr->caps2 = ATA_INL(ctlr->r_mem, AHCI_CAP2);
361	if (ctlr->caps & AHCI_CAP_EMS)
362		ctlr->capsem = ATA_INL(ctlr->r_mem, AHCI_EM_CTL);
363	ctlr->ichannels = ATA_INL(ctlr->r_mem, AHCI_PI);
364	if (ctlr->quirks & AHCI_Q_1CH) {
365		ctlr->caps &= ~AHCI_CAP_NPMASK;
366		ctlr->ichannels &= 0x01;
367	}
368	if (ctlr->quirks & AHCI_Q_2CH) {
369		ctlr->caps &= ~AHCI_CAP_NPMASK;
370		ctlr->caps |= 1;
371		ctlr->ichannels &= 0x03;
372	}
373	if (ctlr->quirks & AHCI_Q_4CH) {
374		ctlr->caps &= ~AHCI_CAP_NPMASK;
375		ctlr->caps |= 3;
376		ctlr->ichannels &= 0x0f;
377	}
378	ctlr->channels = MAX(flsl(ctlr->ichannels),
379	    (ctlr->caps & AHCI_CAP_NPMASK) + 1);
380	if (ctlr->quirks & AHCI_Q_NOPMP)
381		ctlr->caps &= ~AHCI_CAP_SPM;
382	if (ctlr->quirks & AHCI_Q_NONCQ)
383		ctlr->caps &= ~AHCI_CAP_SNCQ;
384	if ((ctlr->caps & AHCI_CAP_CCCS) == 0)
385		ctlr->ccc = 0;
386	ahci_ctlr_setup(dev);
387	/* Setup interrupts. */
388	if (ahci_setup_interrupt(dev)) {
389		bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
390		rman_fini(&ctlr->sc_iomem);
391		return ENXIO;
392	}
393	/* Announce HW capabilities. */
394	speed = (ctlr->caps & AHCI_CAP_ISS) >> AHCI_CAP_ISS_SHIFT;
395	device_printf(dev,
396		    "AHCI v%x.%02x with %d %sGbps ports, Port Multiplier %s%s\n",
397		    ((version >> 20) & 0xf0) + ((version >> 16) & 0x0f),
398		    ((version >> 4) & 0xf0) + (version & 0x0f),
399		    (ctlr->caps & AHCI_CAP_NPMASK) + 1,
400		    ((speed == 1) ? "1.5":((speed == 2) ? "3":
401		    ((speed == 3) ? "6":"?"))),
402		    (ctlr->caps & AHCI_CAP_SPM) ?
403		    "supported" : "not supported",
404		    (ctlr->caps & AHCI_CAP_FBSS) ?
405		    " with FBS" : "");
406	if (bootverbose) {
407		device_printf(dev, "Caps:%s%s%s%s%s%s%s%s %sGbps",
408		    (ctlr->caps & AHCI_CAP_64BIT) ? " 64bit":"",
409		    (ctlr->caps & AHCI_CAP_SNCQ) ? " NCQ":"",
410		    (ctlr->caps & AHCI_CAP_SSNTF) ? " SNTF":"",
411		    (ctlr->caps & AHCI_CAP_SMPS) ? " MPS":"",
412		    (ctlr->caps & AHCI_CAP_SSS) ? " SS":"",
413		    (ctlr->caps & AHCI_CAP_SALP) ? " ALP":"",
414		    (ctlr->caps & AHCI_CAP_SAL) ? " AL":"",
415		    (ctlr->caps & AHCI_CAP_SCLO) ? " CLO":"",
416		    ((speed == 1) ? "1.5":((speed == 2) ? "3":
417		    ((speed == 3) ? "6":"?"))));
418		printf("%s%s%s%s%s%s %dcmd%s%s%s %dports\n",
419		    (ctlr->caps & AHCI_CAP_SAM) ? " AM":"",
420		    (ctlr->caps & AHCI_CAP_SPM) ? " PM":"",
421		    (ctlr->caps & AHCI_CAP_FBSS) ? " FBS":"",
422		    (ctlr->caps & AHCI_CAP_PMD) ? " PMD":"",
423		    (ctlr->caps & AHCI_CAP_SSC) ? " SSC":"",
424		    (ctlr->caps & AHCI_CAP_PSC) ? " PSC":"",
425		    ((ctlr->caps & AHCI_CAP_NCS) >> AHCI_CAP_NCS_SHIFT) + 1,
426		    (ctlr->caps & AHCI_CAP_CCCS) ? " CCC":"",
427		    (ctlr->caps & AHCI_CAP_EMS) ? " EM":"",
428		    (ctlr->caps & AHCI_CAP_SXS) ? " eSATA":"",
429		    (ctlr->caps & AHCI_CAP_NPMASK) + 1);
430	}
431	if (bootverbose && version >= 0x00010020) {
432		device_printf(dev, "Caps2:%s%s%s\n",
433		    (ctlr->caps2 & AHCI_CAP2_APST) ? " APST":"",
434		    (ctlr->caps2 & AHCI_CAP2_NVMP) ? " NVMP":"",
435		    (ctlr->caps2 & AHCI_CAP2_BOH) ? " BOH":"");
436	}
437	if (bootverbose && (ctlr->caps & AHCI_CAP_EMS)) {
438		device_printf(dev, "EM Caps:%s%s%s%s%s%s%s%s\n",
439		    (ctlr->capsem & AHCI_EM_PM) ? " PM":"",
440		    (ctlr->capsem & AHCI_EM_ALHD) ? " ALHD":"",
441		    (ctlr->capsem & AHCI_EM_XMT) ? " XMT":"",
442		    (ctlr->capsem & AHCI_EM_SMB) ? " SMB":"",
443		    (ctlr->capsem & AHCI_EM_SGPIO) ? " SGPIO":"",
444		    (ctlr->capsem & AHCI_EM_SES2) ? " SES-2":"",
445		    (ctlr->capsem & AHCI_EM_SAFTE) ? " SAF-TE":"",
446		    (ctlr->capsem & AHCI_EM_LED) ? " LED":"");
447	}
448	/* Attach all channels on this controller */
449	for (unit = 0; unit < ctlr->channels; unit++) {
450		if ((ctlr->ichannels & (1 << unit)) == 0)
451			continue;
452		child = device_add_child(dev, "ahcich", -1);
453		if (child == NULL)
454			device_printf(dev, "failed to add channel device\n");
455		else
456			device_set_ivars(child, (void *)(intptr_t)unit);
457	}
458	bus_generic_attach(dev);
459	return 0;
460}
461
462static int
463ahci_detach(device_t dev)
464{
465	struct ahci_controller *ctlr = device_get_softc(dev);
466	device_t *children;
467	int nchildren, i;
468
469	/* Detach & delete all children */
470	if (!device_get_children(dev, &children, &nchildren)) {
471		for (i = 0; i < nchildren; i++)
472			device_delete_child(dev, children[i]);
473		free(children, M_TEMP);
474	}
475	/* Free interrupts. */
476	for (i = 0; i < ctlr->numirqs; i++) {
477		if (ctlr->irqs[i].r_irq) {
478			bus_teardown_intr(dev, ctlr->irqs[i].r_irq,
479			    ctlr->irqs[i].handle);
480			bus_release_resource(dev, SYS_RES_IRQ,
481			    ctlr->irqs[i].r_irq_rid, ctlr->irqs[i].r_irq);
482		}
483	}
484	pci_release_msi(dev);
485	/* Free memory. */
486	rman_fini(&ctlr->sc_iomem);
487	if (ctlr->r_mem)
488		bus_release_resource(dev, SYS_RES_MEMORY, ctlr->r_rid, ctlr->r_mem);
489	return (0);
490}
491
492static int
493ahci_ctlr_reset(device_t dev)
494{
495	struct ahci_controller *ctlr = device_get_softc(dev);
496	int timeout;
497
498	if (pci_read_config(dev, 0x00, 4) == 0x28298086 &&
499	    (pci_read_config(dev, 0x92, 1) & 0xfe) == 0x04)
500		pci_write_config(dev, 0x92, 0x01, 1);
501	/* Enable AHCI mode */
502	ATA_OUTL(ctlr->r_mem, AHCI_GHC, AHCI_GHC_AE);
503	/* Reset AHCI controller */
504	ATA_OUTL(ctlr->r_mem, AHCI_GHC, AHCI_GHC_AE|AHCI_GHC_HR);
505	for (timeout = 1000; timeout > 0; timeout--) {
506		DELAY(1000);
507		if ((ATA_INL(ctlr->r_mem, AHCI_GHC) & AHCI_GHC_HR) == 0)
508			break;
509	}
510	if (timeout == 0) {
511		device_printf(dev, "AHCI controller reset failure\n");
512		return ENXIO;
513	}
514	/* Reenable AHCI mode */
515	ATA_OUTL(ctlr->r_mem, AHCI_GHC, AHCI_GHC_AE);
516	return (0);
517}
518
519static int
520ahci_ctlr_setup(device_t dev)
521{
522	struct ahci_controller *ctlr = device_get_softc(dev);
523	/* Clear interrupts */
524	ATA_OUTL(ctlr->r_mem, AHCI_IS, ATA_INL(ctlr->r_mem, AHCI_IS));
525	/* Configure CCC */
526	if (ctlr->ccc) {
527		ATA_OUTL(ctlr->r_mem, AHCI_CCCP, ATA_INL(ctlr->r_mem, AHCI_PI));
528		ATA_OUTL(ctlr->r_mem, AHCI_CCCC,
529		    (ctlr->ccc << AHCI_CCCC_TV_SHIFT) |
530		    (4 << AHCI_CCCC_CC_SHIFT) |
531		    AHCI_CCCC_EN);
532		ctlr->cccv = (ATA_INL(ctlr->r_mem, AHCI_CCCC) &
533		    AHCI_CCCC_INT_MASK) >> AHCI_CCCC_INT_SHIFT;
534		if (bootverbose) {
535			device_printf(dev,
536			    "CCC with %dms/4cmd enabled on vector %d\n",
537			    ctlr->ccc, ctlr->cccv);
538		}
539	}
540	/* Enable AHCI interrupts */
541	ATA_OUTL(ctlr->r_mem, AHCI_GHC,
542	    ATA_INL(ctlr->r_mem, AHCI_GHC) | AHCI_GHC_IE);
543	return (0);
544}
545
546static int
547ahci_suspend(device_t dev)
548{
549	struct ahci_controller *ctlr = device_get_softc(dev);
550
551	bus_generic_suspend(dev);
552	/* Disable interupts, so the state change(s) doesn't trigger */
553	ATA_OUTL(ctlr->r_mem, AHCI_GHC,
554	     ATA_INL(ctlr->r_mem, AHCI_GHC) & (~AHCI_GHC_IE));
555	return 0;
556}
557
558static int
559ahci_resume(device_t dev)
560{
561	int res;
562
563	if ((res = ahci_ctlr_reset(dev)) != 0)
564		return (res);
565	ahci_ctlr_setup(dev);
566	return (bus_generic_resume(dev));
567}
568
569static int
570ahci_setup_interrupt(device_t dev)
571{
572	struct ahci_controller *ctlr = device_get_softc(dev);
573	int i, msi = 1;
574
575	/* Process hints. */
576	resource_int_value(device_get_name(dev),
577	    device_get_unit(dev), "msi", &msi);
578	if (msi < 0)
579		msi = 0;
580	else if (msi == 1)
581		msi = min(1, pci_msi_count(dev));
582	else if (msi > 1)
583		msi = pci_msi_count(dev);
584	/* Allocate MSI if needed/present. */
585	if (msi && pci_alloc_msi(dev, &msi) == 0) {
586		ctlr->numirqs = msi;
587	} else {
588		msi = 0;
589		ctlr->numirqs = 1;
590	}
591	/* Check for single MSI vector fallback. */
592	if (ctlr->numirqs > 1 &&
593	    (ATA_INL(ctlr->r_mem, AHCI_GHC) & AHCI_GHC_MRSM) != 0) {
594		device_printf(dev, "Falling back to one MSI\n");
595		ctlr->numirqs = 1;
596	}
597	/* Allocate all IRQs. */
598	for (i = 0; i < ctlr->numirqs; i++) {
599		ctlr->irqs[i].ctlr = ctlr;
600		ctlr->irqs[i].r_irq_rid = i + (msi ? 1 : 0);
601		if (ctlr->numirqs == 1 || i >= ctlr->channels ||
602		    (ctlr->ccc && i == ctlr->cccv))
603			ctlr->irqs[i].mode = AHCI_IRQ_MODE_ALL;
604		else if (i == ctlr->numirqs - 1)
605			ctlr->irqs[i].mode = AHCI_IRQ_MODE_AFTER;
606		else
607			ctlr->irqs[i].mode = AHCI_IRQ_MODE_ONE;
608		if (!(ctlr->irqs[i].r_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ,
609		    &ctlr->irqs[i].r_irq_rid, RF_SHAREABLE | RF_ACTIVE))) {
610			device_printf(dev, "unable to map interrupt\n");
611			return ENXIO;
612		}
613		if ((bus_setup_intr(dev, ctlr->irqs[i].r_irq, ATA_INTR_FLAGS, NULL,
614		    (ctlr->irqs[i].mode == AHCI_IRQ_MODE_ONE) ? ahci_intr_one : ahci_intr,
615		    &ctlr->irqs[i], &ctlr->irqs[i].handle))) {
616			/* SOS XXX release r_irq */
617			device_printf(dev, "unable to setup interrupt\n");
618			return ENXIO;
619		}
620		if (ctlr->numirqs > 1) {
621			bus_describe_intr(dev, ctlr->irqs[i].r_irq,
622			    ctlr->irqs[i].handle,
623			    ctlr->irqs[i].mode == AHCI_IRQ_MODE_ONE ?
624			    "ch%d" : "%d", i);
625		}
626	}
627	return (0);
628}
629
630/*
631 * Common case interrupt handler.
632 */
633static void
634ahci_intr(void *data)
635{
636	struct ahci_controller_irq *irq = data;
637	struct ahci_controller *ctlr = irq->ctlr;
638	u_int32_t is, ise = 0;
639	void *arg;
640	int unit;
641
642	if (irq->mode == AHCI_IRQ_MODE_ALL) {
643		unit = 0;
644		if (ctlr->ccc)
645			is = ctlr->ichannels;
646		else
647			is = ATA_INL(ctlr->r_mem, AHCI_IS);
648	} else {	/* AHCI_IRQ_MODE_AFTER */
649		unit = irq->r_irq_rid - 1;
650		is = ATA_INL(ctlr->r_mem, AHCI_IS);
651	}
652	/* CCC interrupt is edge triggered. */
653	if (ctlr->ccc)
654		ise = 1 << ctlr->cccv;
655	/* Some controllers have edge triggered IS. */
656	if (ctlr->quirks & AHCI_Q_EDGEIS)
657		ise |= is;
658	if (ise != 0)
659		ATA_OUTL(ctlr->r_mem, AHCI_IS, ise);
660	for (; unit < ctlr->channels; unit++) {
661		if ((is & (1 << unit)) != 0 &&
662		    (arg = ctlr->interrupt[unit].argument)) {
663				ctlr->interrupt[unit].function(arg);
664		}
665	}
666	/* AHCI declares level triggered IS. */
667	if (!(ctlr->quirks & AHCI_Q_EDGEIS))
668		ATA_OUTL(ctlr->r_mem, AHCI_IS, is);
669}
670
671/*
672 * Simplified interrupt handler for multivector MSI mode.
673 */
674static void
675ahci_intr_one(void *data)
676{
677	struct ahci_controller_irq *irq = data;
678	struct ahci_controller *ctlr = irq->ctlr;
679	void *arg;
680	int unit;
681
682	unit = irq->r_irq_rid - 1;
683	/* Some controllers have edge triggered IS. */
684	if (ctlr->quirks & AHCI_Q_EDGEIS)
685		ATA_OUTL(ctlr->r_mem, AHCI_IS, 1 << unit);
686	if ((arg = ctlr->interrupt[unit].argument))
687	    ctlr->interrupt[unit].function(arg);
688	/* AHCI declares level triggered IS. */
689	if (!(ctlr->quirks & AHCI_Q_EDGEIS))
690		ATA_OUTL(ctlr->r_mem, AHCI_IS, 1 << unit);
691}
692
693static struct resource *
694ahci_alloc_resource(device_t dev, device_t child, int type, int *rid,
695		       u_long start, u_long end, u_long count, u_int flags)
696{
697	struct ahci_controller *ctlr = device_get_softc(dev);
698	int unit = ((struct ahci_channel *)device_get_softc(child))->unit;
699	struct resource *res = NULL;
700	int offset = AHCI_OFFSET + (unit << 7);
701	long st;
702
703	switch (type) {
704	case SYS_RES_MEMORY:
705		st = rman_get_start(ctlr->r_mem);
706		res = rman_reserve_resource(&ctlr->sc_iomem, st + offset,
707		    st + offset + 127, 128, RF_ACTIVE, child);
708		if (res) {
709			bus_space_handle_t bsh;
710			bus_space_tag_t bst;
711			bsh = rman_get_bushandle(ctlr->r_mem);
712			bst = rman_get_bustag(ctlr->r_mem);
713			bus_space_subregion(bst, bsh, offset, 128, &bsh);
714			rman_set_bushandle(res, bsh);
715			rman_set_bustag(res, bst);
716		}
717		break;
718	case SYS_RES_IRQ:
719		if (*rid == ATA_IRQ_RID)
720			res = ctlr->irqs[0].r_irq;
721		break;
722	}
723	return (res);
724}
725
726static int
727ahci_release_resource(device_t dev, device_t child, int type, int rid,
728			 struct resource *r)
729{
730
731	switch (type) {
732	case SYS_RES_MEMORY:
733		rman_release_resource(r);
734		return (0);
735	case SYS_RES_IRQ:
736		if (rid != ATA_IRQ_RID)
737			return ENOENT;
738		return (0);
739	}
740	return (EINVAL);
741}
742
743static int
744ahci_setup_intr(device_t dev, device_t child, struct resource *irq,
745		   int flags, driver_filter_t *filter, driver_intr_t *function,
746		   void *argument, void **cookiep)
747{
748	struct ahci_controller *ctlr = device_get_softc(dev);
749	int unit = (intptr_t)device_get_ivars(child);
750
751	if (filter != NULL) {
752		printf("ahci.c: we cannot use a filter here\n");
753		return (EINVAL);
754	}
755	ctlr->interrupt[unit].function = function;
756	ctlr->interrupt[unit].argument = argument;
757	return (0);
758}
759
760static int
761ahci_teardown_intr(device_t dev, device_t child, struct resource *irq,
762		      void *cookie)
763{
764	struct ahci_controller *ctlr = device_get_softc(dev);
765	int unit = (intptr_t)device_get_ivars(child);
766
767	ctlr->interrupt[unit].function = NULL;
768	ctlr->interrupt[unit].argument = NULL;
769	return (0);
770}
771
772static int
773ahci_print_child(device_t dev, device_t child)
774{
775	int retval;
776
777	retval = bus_print_child_header(dev, child);
778	retval += printf(" at channel %d",
779	    (int)(intptr_t)device_get_ivars(child));
780	retval += bus_print_child_footer(dev, child);
781
782	return (retval);
783}
784
785static int
786ahci_child_location_str(device_t dev, device_t child, char *buf,
787    size_t buflen)
788{
789
790	snprintf(buf, buflen, "channel=%d",
791	    (int)(intptr_t)device_get_ivars(child));
792	return (0);
793}
794
795devclass_t ahci_devclass;
796static device_method_t ahci_methods[] = {
797	DEVMETHOD(device_probe,     ahci_probe),
798	DEVMETHOD(device_attach,    ahci_attach),
799	DEVMETHOD(device_detach,    ahci_detach),
800	DEVMETHOD(device_suspend,   ahci_suspend),
801	DEVMETHOD(device_resume,    ahci_resume),
802	DEVMETHOD(bus_print_child,  ahci_print_child),
803	DEVMETHOD(bus_alloc_resource,       ahci_alloc_resource),
804	DEVMETHOD(bus_release_resource,     ahci_release_resource),
805	DEVMETHOD(bus_setup_intr,   ahci_setup_intr),
806	DEVMETHOD(bus_teardown_intr,ahci_teardown_intr),
807	DEVMETHOD(bus_child_location_str, ahci_child_location_str),
808	{ 0, 0 }
809};
810static driver_t ahci_driver = {
811        "ahci",
812        ahci_methods,
813        sizeof(struct ahci_controller)
814};
815DRIVER_MODULE(ahci, pci, ahci_driver, ahci_devclass, 0, 0);
816static device_method_t ahci_ata_methods[] = {
817	DEVMETHOD(device_probe,     ahci_ata_probe),
818	DEVMETHOD(device_attach,    ahci_attach),
819	DEVMETHOD(device_detach,    ahci_detach),
820	DEVMETHOD(device_suspend,   ahci_suspend),
821	DEVMETHOD(device_resume,    ahci_resume),
822	DEVMETHOD(bus_print_child,  ahci_print_child),
823	DEVMETHOD(bus_alloc_resource,       ahci_alloc_resource),
824	DEVMETHOD(bus_release_resource,     ahci_release_resource),
825	DEVMETHOD(bus_setup_intr,   ahci_setup_intr),
826	DEVMETHOD(bus_teardown_intr,ahci_teardown_intr),
827	DEVMETHOD(bus_child_location_str, ahci_child_location_str),
828	{ 0, 0 }
829};
830static driver_t ahci_ata_driver = {
831        "ahci",
832        ahci_ata_methods,
833        sizeof(struct ahci_controller)
834};
835DRIVER_MODULE(ahci, atapci, ahci_ata_driver, ahci_devclass, 0, 0);
836MODULE_VERSION(ahci, 1);
837MODULE_DEPEND(ahci, cam, 1, 1, 1);
838
839static int
840ahci_ch_probe(device_t dev)
841{
842
843	device_set_desc_copy(dev, "AHCI channel");
844	return (0);
845}
846
847static int
848ahci_ch_attach(device_t dev)
849{
850	struct ahci_controller *ctlr = device_get_softc(device_get_parent(dev));
851	struct ahci_channel *ch = device_get_softc(dev);
852	struct cam_devq *devq;
853	int rid, error, i, sata_rev = 0;
854	u_int32_t version;
855
856	ch->dev = dev;
857	ch->unit = (intptr_t)device_get_ivars(dev);
858	ch->caps = ctlr->caps;
859	ch->caps2 = ctlr->caps2;
860	ch->quirks = ctlr->quirks;
861	ch->numslots = ((ch->caps & AHCI_CAP_NCS) >> AHCI_CAP_NCS_SHIFT) + 1,
862	mtx_init(&ch->mtx, "AHCI channel lock", NULL, MTX_DEF);
863	resource_int_value(device_get_name(dev),
864	    device_get_unit(dev), "pm_level", &ch->pm_level);
865	if (ch->pm_level > 3)
866		callout_init_mtx(&ch->pm_timer, &ch->mtx, 0);
867	/* Limit speed for my onboard JMicron external port.
868	 * It is not eSATA really. */
869	if (pci_get_devid(ctlr->dev) == 0x2363197b &&
870	    pci_get_subvendor(ctlr->dev) == 0x1043 &&
871	    pci_get_subdevice(ctlr->dev) == 0x81e4 &&
872	    ch->unit == 0)
873		sata_rev = 1;
874	if (ch->quirks & AHCI_Q_SATA2)
875		sata_rev = 2;
876	resource_int_value(device_get_name(dev),
877	    device_get_unit(dev), "sata_rev", &sata_rev);
878	for (i = 0; i < 16; i++) {
879		ch->user[i].revision = sata_rev;
880		ch->user[i].mode = 0;
881		ch->user[i].bytecount = 8192;
882		ch->user[i].tags = ch->numslots;
883		ch->user[i].caps = 0;
884		ch->curr[i] = ch->user[i];
885		if (ch->pm_level) {
886			ch->user[i].caps = CTS_SATA_CAPS_H_PMREQ |
887			    CTS_SATA_CAPS_H_APST |
888			    CTS_SATA_CAPS_D_PMREQ | CTS_SATA_CAPS_D_APST;
889		}
890		ch->user[i].caps |= CTS_SATA_CAPS_H_DMAAA;
891	}
892	rid = ch->unit;
893	if (!(ch->r_mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
894	    &rid, RF_ACTIVE)))
895		return (ENXIO);
896	ahci_dmainit(dev);
897	ahci_slotsalloc(dev);
898	ahci_ch_init(dev);
899	mtx_lock(&ch->mtx);
900	rid = ATA_IRQ_RID;
901	if (!(ch->r_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ,
902	    &rid, RF_SHAREABLE | RF_ACTIVE))) {
903		device_printf(dev, "Unable to map interrupt\n");
904		error = ENXIO;
905		goto err0;
906	}
907	if ((bus_setup_intr(dev, ch->r_irq, ATA_INTR_FLAGS, NULL,
908	    ahci_ch_intr_locked, dev, &ch->ih))) {
909		device_printf(dev, "Unable to setup interrupt\n");
910		error = ENXIO;
911		goto err1;
912	}
913	ch->chcaps = ATA_INL(ch->r_mem, AHCI_P_CMD);
914	version = ATA_INL(ctlr->r_mem, AHCI_VS);
915	if (version < 0x00010020 && (ctlr->caps & AHCI_CAP_FBSS))
916		ch->chcaps |= AHCI_P_CMD_FBSCP;
917	if (bootverbose) {
918		device_printf(dev, "Caps:%s%s%s%s%s\n",
919		    (ch->chcaps & AHCI_P_CMD_HPCP) ? " HPCP":"",
920		    (ch->chcaps & AHCI_P_CMD_MPSP) ? " MPSP":"",
921		    (ch->chcaps & AHCI_P_CMD_CPD) ? " CPD":"",
922		    (ch->chcaps & AHCI_P_CMD_ESP) ? " ESP":"",
923		    (ch->chcaps & AHCI_P_CMD_FBSCP) ? " FBSCP":"");
924	}
925	/* Create the device queue for our SIM. */
926	devq = cam_simq_alloc(ch->numslots);
927	if (devq == NULL) {
928		device_printf(dev, "Unable to allocate simq\n");
929		error = ENOMEM;
930		goto err1;
931	}
932	/* Construct SIM entry */
933	ch->sim = cam_sim_alloc(ahciaction, ahcipoll, "ahcich", ch,
934	    device_get_unit(dev), &ch->mtx,
935	    min(2, ch->numslots),
936	    (ch->caps & AHCI_CAP_SNCQ) ? ch->numslots : 0,
937	    devq);
938	if (ch->sim == NULL) {
939		cam_simq_free(devq);
940		device_printf(dev, "unable to allocate sim\n");
941		error = ENOMEM;
942		goto err1;
943	}
944	if (xpt_bus_register(ch->sim, dev, 0) != CAM_SUCCESS) {
945		device_printf(dev, "unable to register xpt bus\n");
946		error = ENXIO;
947		goto err2;
948	}
949	if (xpt_create_path(&ch->path, /*periph*/NULL, cam_sim_path(ch->sim),
950	    CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
951		device_printf(dev, "unable to create path\n");
952		error = ENXIO;
953		goto err3;
954	}
955	if (ch->pm_level > 3) {
956		callout_reset(&ch->pm_timer,
957		    (ch->pm_level == 4) ? hz / 1000 : hz / 8,
958		    ahci_ch_pm, dev);
959	}
960	mtx_unlock(&ch->mtx);
961	return (0);
962
963err3:
964	xpt_bus_deregister(cam_sim_path(ch->sim));
965err2:
966	cam_sim_free(ch->sim, /*free_devq*/TRUE);
967err1:
968	bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ch->r_irq);
969err0:
970	bus_release_resource(dev, SYS_RES_MEMORY, ch->unit, ch->r_mem);
971	mtx_unlock(&ch->mtx);
972	mtx_destroy(&ch->mtx);
973	return (error);
974}
975
976static int
977ahci_ch_detach(device_t dev)
978{
979	struct ahci_channel *ch = device_get_softc(dev);
980
981	mtx_lock(&ch->mtx);
982	xpt_async(AC_LOST_DEVICE, ch->path, NULL);
983	xpt_free_path(ch->path);
984	xpt_bus_deregister(cam_sim_path(ch->sim));
985	cam_sim_free(ch->sim, /*free_devq*/TRUE);
986	mtx_unlock(&ch->mtx);
987
988	if (ch->pm_level > 3)
989		callout_drain(&ch->pm_timer);
990	bus_teardown_intr(dev, ch->r_irq, ch->ih);
991	bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ch->r_irq);
992
993	ahci_ch_deinit(dev);
994	ahci_slotsfree(dev);
995	ahci_dmafini(dev);
996
997	bus_release_resource(dev, SYS_RES_MEMORY, ch->unit, ch->r_mem);
998	mtx_destroy(&ch->mtx);
999	return (0);
1000}
1001
1002static int
1003ahci_ch_init(device_t dev)
1004{
1005	struct ahci_channel *ch = device_get_softc(dev);
1006	uint64_t work;
1007
1008	/* Disable port interrupts */
1009	ATA_OUTL(ch->r_mem, AHCI_P_IE, 0);
1010	/* Setup work areas */
1011	work = ch->dma.work_bus + AHCI_CL_OFFSET;
1012	ATA_OUTL(ch->r_mem, AHCI_P_CLB, work & 0xffffffff);
1013	ATA_OUTL(ch->r_mem, AHCI_P_CLBU, work >> 32);
1014	work = ch->dma.rfis_bus;
1015	ATA_OUTL(ch->r_mem, AHCI_P_FB, work & 0xffffffff);
1016	ATA_OUTL(ch->r_mem, AHCI_P_FBU, work >> 32);
1017	/* Activate the channel and power/spin up device */
1018	ATA_OUTL(ch->r_mem, AHCI_P_CMD,
1019	     (AHCI_P_CMD_ACTIVE | AHCI_P_CMD_POD | AHCI_P_CMD_SUD |
1020	     ((ch->pm_level == 2 || ch->pm_level == 3) ? AHCI_P_CMD_ALPE : 0) |
1021	     ((ch->pm_level > 2) ? AHCI_P_CMD_ASP : 0 )));
1022	ahci_start_fr(dev);
1023	ahci_start(dev, 1);
1024	return (0);
1025}
1026
1027static int
1028ahci_ch_deinit(device_t dev)
1029{
1030	struct ahci_channel *ch = device_get_softc(dev);
1031
1032	/* Disable port interrupts. */
1033	ATA_OUTL(ch->r_mem, AHCI_P_IE, 0);
1034	/* Reset command register. */
1035	ahci_stop(dev);
1036	ahci_stop_fr(dev);
1037	ATA_OUTL(ch->r_mem, AHCI_P_CMD, 0);
1038	/* Allow everything, including partial and slumber modes. */
1039	ATA_OUTL(ch->r_mem, AHCI_P_SCTL, 0);
1040	/* Request slumber mode transition and give some time to get there. */
1041	ATA_OUTL(ch->r_mem, AHCI_P_CMD, AHCI_P_CMD_SLUMBER);
1042	DELAY(100);
1043	/* Disable PHY. */
1044	ATA_OUTL(ch->r_mem, AHCI_P_SCTL, ATA_SC_DET_DISABLE);
1045	return (0);
1046}
1047
1048static int
1049ahci_ch_suspend(device_t dev)
1050{
1051	struct ahci_channel *ch = device_get_softc(dev);
1052
1053	mtx_lock(&ch->mtx);
1054	xpt_freeze_simq(ch->sim, 1);
1055	while (ch->oslots)
1056		msleep(ch, &ch->mtx, PRIBIO, "ahcisusp", hz/100);
1057	ahci_ch_deinit(dev);
1058	mtx_unlock(&ch->mtx);
1059	return (0);
1060}
1061
1062static int
1063ahci_ch_resume(device_t dev)
1064{
1065	struct ahci_channel *ch = device_get_softc(dev);
1066
1067	mtx_lock(&ch->mtx);
1068	ahci_ch_init(dev);
1069	ahci_reset(dev);
1070	xpt_release_simq(ch->sim, TRUE);
1071	mtx_unlock(&ch->mtx);
1072	return (0);
1073}
1074
1075devclass_t ahcich_devclass;
1076static device_method_t ahcich_methods[] = {
1077	DEVMETHOD(device_probe,     ahci_ch_probe),
1078	DEVMETHOD(device_attach,    ahci_ch_attach),
1079	DEVMETHOD(device_detach,    ahci_ch_detach),
1080	DEVMETHOD(device_suspend,   ahci_ch_suspend),
1081	DEVMETHOD(device_resume,    ahci_ch_resume),
1082	{ 0, 0 }
1083};
1084static driver_t ahcich_driver = {
1085        "ahcich",
1086        ahcich_methods,
1087        sizeof(struct ahci_channel)
1088};
1089DRIVER_MODULE(ahcich, ahci, ahcich_driver, ahcich_devclass, 0, 0);
1090
1091struct ahci_dc_cb_args {
1092	bus_addr_t maddr;
1093	int error;
1094};
1095
1096static void
1097ahci_dmainit(device_t dev)
1098{
1099	struct ahci_channel *ch = device_get_softc(dev);
1100	struct ahci_dc_cb_args dcba;
1101	size_t rfsize;
1102
1103	if (ch->caps & AHCI_CAP_64BIT)
1104		ch->dma.max_address = BUS_SPACE_MAXADDR;
1105	else
1106		ch->dma.max_address = BUS_SPACE_MAXADDR_32BIT;
1107	/* Command area. */
1108	if (bus_dma_tag_create(bus_get_dma_tag(dev), 1024, 0,
1109	    ch->dma.max_address, BUS_SPACE_MAXADDR,
1110	    NULL, NULL, AHCI_WORK_SIZE, 1, AHCI_WORK_SIZE,
1111	    0, NULL, NULL, &ch->dma.work_tag))
1112		goto error;
1113	if (bus_dmamem_alloc(ch->dma.work_tag, (void **)&ch->dma.work, 0,
1114	    &ch->dma.work_map))
1115		goto error;
1116	if (bus_dmamap_load(ch->dma.work_tag, ch->dma.work_map, ch->dma.work,
1117	    AHCI_WORK_SIZE, ahci_dmasetupc_cb, &dcba, 0) || dcba.error) {
1118		bus_dmamem_free(ch->dma.work_tag, ch->dma.work, ch->dma.work_map);
1119		goto error;
1120	}
1121	ch->dma.work_bus = dcba.maddr;
1122	/* FIS receive area. */
1123	if (ch->chcaps & AHCI_P_CMD_FBSCP)
1124	    rfsize = 4096;
1125	else
1126	    rfsize = 256;
1127	if (bus_dma_tag_create(bus_get_dma_tag(dev), rfsize, 0,
1128	    ch->dma.max_address, BUS_SPACE_MAXADDR,
1129	    NULL, NULL, rfsize, 1, rfsize,
1130	    0, NULL, NULL, &ch->dma.rfis_tag))
1131		goto error;
1132	if (bus_dmamem_alloc(ch->dma.rfis_tag, (void **)&ch->dma.rfis, 0,
1133	    &ch->dma.rfis_map))
1134		goto error;
1135	if (bus_dmamap_load(ch->dma.rfis_tag, ch->dma.rfis_map, ch->dma.rfis,
1136	    rfsize, ahci_dmasetupc_cb, &dcba, 0) || dcba.error) {
1137		bus_dmamem_free(ch->dma.rfis_tag, ch->dma.rfis, ch->dma.rfis_map);
1138		goto error;
1139	}
1140	ch->dma.rfis_bus = dcba.maddr;
1141	/* Data area. */
1142	if (bus_dma_tag_create(bus_get_dma_tag(dev), 2, 0,
1143	    ch->dma.max_address, BUS_SPACE_MAXADDR,
1144	    NULL, NULL,
1145	    AHCI_SG_ENTRIES * PAGE_SIZE * ch->numslots,
1146	    AHCI_SG_ENTRIES, AHCI_PRD_MAX,
1147	    0, busdma_lock_mutex, &ch->mtx, &ch->dma.data_tag)) {
1148		goto error;
1149	}
1150	return;
1151
1152error:
1153	device_printf(dev, "WARNING - DMA initialization failed\n");
1154	ahci_dmafini(dev);
1155}
1156
1157static void
1158ahci_dmasetupc_cb(void *xsc, bus_dma_segment_t *segs, int nsegs, int error)
1159{
1160	struct ahci_dc_cb_args *dcba = (struct ahci_dc_cb_args *)xsc;
1161
1162	if (!(dcba->error = error))
1163		dcba->maddr = segs[0].ds_addr;
1164}
1165
1166static void
1167ahci_dmafini(device_t dev)
1168{
1169	struct ahci_channel *ch = device_get_softc(dev);
1170
1171	if (ch->dma.data_tag) {
1172		bus_dma_tag_destroy(ch->dma.data_tag);
1173		ch->dma.data_tag = NULL;
1174	}
1175	if (ch->dma.rfis_bus) {
1176		bus_dmamap_unload(ch->dma.rfis_tag, ch->dma.rfis_map);
1177		bus_dmamem_free(ch->dma.rfis_tag, ch->dma.rfis, ch->dma.rfis_map);
1178		ch->dma.rfis_bus = 0;
1179		ch->dma.rfis_map = NULL;
1180		ch->dma.rfis = NULL;
1181	}
1182	if (ch->dma.work_bus) {
1183		bus_dmamap_unload(ch->dma.work_tag, ch->dma.work_map);
1184		bus_dmamem_free(ch->dma.work_tag, ch->dma.work, ch->dma.work_map);
1185		ch->dma.work_bus = 0;
1186		ch->dma.work_map = NULL;
1187		ch->dma.work = NULL;
1188	}
1189	if (ch->dma.work_tag) {
1190		bus_dma_tag_destroy(ch->dma.work_tag);
1191		ch->dma.work_tag = NULL;
1192	}
1193}
1194
1195static void
1196ahci_slotsalloc(device_t dev)
1197{
1198	struct ahci_channel *ch = device_get_softc(dev);
1199	int i;
1200
1201	/* Alloc and setup command/dma slots */
1202	bzero(ch->slot, sizeof(ch->slot));
1203	for (i = 0; i < ch->numslots; i++) {
1204		struct ahci_slot *slot = &ch->slot[i];
1205
1206		slot->dev = dev;
1207		slot->slot = i;
1208		slot->state = AHCI_SLOT_EMPTY;
1209		slot->ccb = NULL;
1210		callout_init_mtx(&slot->timeout, &ch->mtx, 0);
1211
1212		if (bus_dmamap_create(ch->dma.data_tag, 0, &slot->dma.data_map))
1213			device_printf(ch->dev, "FAILURE - create data_map\n");
1214	}
1215}
1216
1217static void
1218ahci_slotsfree(device_t dev)
1219{
1220	struct ahci_channel *ch = device_get_softc(dev);
1221	int i;
1222
1223	/* Free all dma slots */
1224	for (i = 0; i < ch->numslots; i++) {
1225		struct ahci_slot *slot = &ch->slot[i];
1226
1227		callout_drain(&slot->timeout);
1228		if (slot->dma.data_map) {
1229			bus_dmamap_destroy(ch->dma.data_tag, slot->dma.data_map);
1230			slot->dma.data_map = NULL;
1231		}
1232	}
1233}
1234
1235static void
1236ahci_phy_check_events(device_t dev, u_int32_t serr)
1237{
1238	struct ahci_channel *ch = device_get_softc(dev);
1239
1240	if ((serr & ATA_SE_PHY_CHANGED) && (ch->pm_level == 0)) {
1241		u_int32_t status = ATA_INL(ch->r_mem, AHCI_P_SSTS);
1242		union ccb *ccb;
1243
1244		if (bootverbose) {
1245			if (((status & ATA_SS_DET_MASK) == ATA_SS_DET_PHY_ONLINE) &&
1246			    ((status & ATA_SS_SPD_MASK) != ATA_SS_SPD_NO_SPEED) &&
1247			    ((status & ATA_SS_IPM_MASK) == ATA_SS_IPM_ACTIVE)) {
1248				device_printf(dev, "CONNECT requested\n");
1249			} else
1250				device_printf(dev, "DISCONNECT requested\n");
1251		}
1252		ahci_reset(dev);
1253		if ((ccb = xpt_alloc_ccb_nowait()) == NULL)
1254			return;
1255		if (xpt_create_path(&ccb->ccb_h.path, NULL,
1256		    cam_sim_path(ch->sim),
1257		    CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
1258			xpt_free_ccb(ccb);
1259			return;
1260		}
1261		xpt_rescan(ccb);
1262	}
1263}
1264
1265static void
1266ahci_notify_events(device_t dev, u_int32_t status)
1267{
1268	struct ahci_channel *ch = device_get_softc(dev);
1269	struct cam_path *dpath;
1270	int i;
1271
1272	if (ch->caps & AHCI_CAP_SSNTF)
1273		ATA_OUTL(ch->r_mem, AHCI_P_SNTF, status);
1274	if (bootverbose)
1275		device_printf(dev, "SNTF 0x%04x\n", status);
1276	for (i = 0; i < 16; i++) {
1277		if ((status & (1 << i)) == 0)
1278			continue;
1279		if (xpt_create_path(&dpath, NULL,
1280		    xpt_path_path_id(ch->path), i, 0) == CAM_REQ_CMP) {
1281			xpt_async(AC_SCSI_AEN, dpath, NULL);
1282			xpt_free_path(dpath);
1283		}
1284	}
1285}
1286
1287static void
1288ahci_ch_intr_locked(void *data)
1289{
1290	device_t dev = (device_t)data;
1291	struct ahci_channel *ch = device_get_softc(dev);
1292
1293	mtx_lock(&ch->mtx);
1294	ahci_ch_intr(data);
1295	mtx_unlock(&ch->mtx);
1296}
1297
1298static void
1299ahci_ch_pm(void *arg)
1300{
1301	device_t dev = (device_t)arg;
1302	struct ahci_channel *ch = device_get_softc(dev);
1303	uint32_t work;
1304
1305	if (ch->numrslots != 0)
1306		return;
1307	work = ATA_INL(ch->r_mem, AHCI_P_CMD);
1308	if (ch->pm_level == 4)
1309		work |= AHCI_P_CMD_PARTIAL;
1310	else
1311		work |= AHCI_P_CMD_SLUMBER;
1312	ATA_OUTL(ch->r_mem, AHCI_P_CMD, work);
1313}
1314
1315static void
1316ahci_ch_intr(void *data)
1317{
1318	device_t dev = (device_t)data;
1319	struct ahci_channel *ch = device_get_softc(dev);
1320	uint32_t istatus, sstatus, cstatus, serr = 0, sntf = 0, ok, err;
1321	enum ahci_err_type et;
1322	int i, ccs, port;
1323
1324	/* Read and clear interrupt statuses. */
1325	istatus = ATA_INL(ch->r_mem, AHCI_P_IS);
1326	if (istatus == 0)
1327		return;
1328	ATA_OUTL(ch->r_mem, AHCI_P_IS, istatus);
1329	/* Read command statuses. */
1330	sstatus = ATA_INL(ch->r_mem, AHCI_P_SACT);
1331	cstatus = ATA_INL(ch->r_mem, AHCI_P_CI);
1332	if (istatus & AHCI_P_IX_SDB) {
1333		if (ch->caps & AHCI_CAP_SSNTF)
1334			sntf = ATA_INL(ch->r_mem, AHCI_P_SNTF);
1335		else if (ch->fbs_enabled) {
1336			u_int8_t *fis = ch->dma.rfis + 0x58;
1337
1338			for (i = 0; i < 16; i++) {
1339				if (fis[1] & 0x80) {
1340					fis[1] &= 0x7f;
1341	    				sntf |= 1 << i;
1342	    			}
1343	    			fis += 256;
1344	    		}
1345		} else {
1346			u_int8_t *fis = ch->dma.rfis + 0x58;
1347
1348			if (fis[1] & 0x80)
1349				sntf = (1 << (fis[1] & 0x0f));
1350		}
1351	}
1352	/* Process PHY events */
1353	if (istatus & (AHCI_P_IX_PC | AHCI_P_IX_PRC | AHCI_P_IX_OF |
1354	    AHCI_P_IX_IF | AHCI_P_IX_HBD | AHCI_P_IX_HBF | AHCI_P_IX_TFE)) {
1355		serr = ATA_INL(ch->r_mem, AHCI_P_SERR);
1356		if (serr) {
1357			ATA_OUTL(ch->r_mem, AHCI_P_SERR, serr);
1358			ahci_phy_check_events(dev, serr);
1359		}
1360	}
1361	/* Process command errors */
1362	if (istatus & (AHCI_P_IX_OF | AHCI_P_IX_IF |
1363	    AHCI_P_IX_HBD | AHCI_P_IX_HBF | AHCI_P_IX_TFE)) {
1364		ccs = (ATA_INL(ch->r_mem, AHCI_P_CMD) & AHCI_P_CMD_CCS_MASK)
1365		    >> AHCI_P_CMD_CCS_SHIFT;
1366//device_printf(dev, "%s ERROR is %08x cs %08x ss %08x rs %08x tfd %02x serr %08x fbs %08x ccs %d\n",
1367//    __func__, istatus, cstatus, sstatus, ch->rslots, ATA_INL(ch->r_mem, AHCI_P_TFD),
1368//    serr, ATA_INL(ch->r_mem, AHCI_P_FBS), ccs);
1369		port = -1;
1370		if (ch->fbs_enabled) {
1371			uint32_t fbs = ATA_INL(ch->r_mem, AHCI_P_FBS);
1372			if (fbs & AHCI_P_FBS_SDE) {
1373				port = (fbs & AHCI_P_FBS_DWE)
1374				    >> AHCI_P_FBS_DWE_SHIFT;
1375			} else {
1376				for (i = 0; i < 16; i++) {
1377					if (ch->numrslotspd[i] == 0)
1378						continue;
1379					if (port == -1)
1380						port = i;
1381					else if (port != i) {
1382						port = -2;
1383						break;
1384					}
1385				}
1386			}
1387		}
1388		err = ch->rslots & (cstatus | sstatus);
1389	} else {
1390		ccs = 0;
1391		err = 0;
1392		port = -1;
1393	}
1394	/* Complete all successfull commands. */
1395	ok = ch->rslots & ~(cstatus | sstatus);
1396	for (i = 0; i < ch->numslots; i++) {
1397		if ((ok >> i) & 1)
1398			ahci_end_transaction(&ch->slot[i], AHCI_ERR_NONE);
1399	}
1400	/* On error, complete the rest of commands with error statuses. */
1401	if (err) {
1402		if (ch->frozen) {
1403			union ccb *fccb = ch->frozen;
1404			ch->frozen = NULL;
1405			fccb->ccb_h.status = CAM_REQUEUE_REQ | CAM_RELEASE_SIMQ;
1406			if (!(fccb->ccb_h.status & CAM_DEV_QFRZN)) {
1407				xpt_freeze_devq(fccb->ccb_h.path, 1);
1408				fccb->ccb_h.status |= CAM_DEV_QFRZN;
1409			}
1410			xpt_done(fccb);
1411		}
1412		for (i = 0; i < ch->numslots; i++) {
1413			/* XXX: reqests in loading state. */
1414			if (((err >> i) & 1) == 0)
1415				continue;
1416			if (port >= 0 &&
1417			    ch->slot[i].ccb->ccb_h.target_id != port)
1418				continue;
1419			if (istatus & AHCI_P_IX_TFE) {
1420			    if (port != -2) {
1421				/* Task File Error */
1422				if (ch->numtslotspd[
1423				    ch->slot[i].ccb->ccb_h.target_id] == 0) {
1424					/* Untagged operation. */
1425					if (i == ccs)
1426						et = AHCI_ERR_TFE;
1427					else
1428						et = AHCI_ERR_INNOCENT;
1429				} else {
1430					/* Tagged operation. */
1431					et = AHCI_ERR_NCQ;
1432				}
1433			    } else {
1434				et = AHCI_ERR_TFE;
1435				ch->fatalerr = 1;
1436			    }
1437			} else if (istatus & AHCI_P_IX_IF) {
1438				if (ch->numtslots == 0 && i != ccs && port != -2)
1439					et = AHCI_ERR_INNOCENT;
1440				else
1441					et = AHCI_ERR_SATA;
1442			} else
1443				et = AHCI_ERR_INVALID;
1444			ahci_end_transaction(&ch->slot[i], et);
1445		}
1446		/*
1447		 * We can't reinit port if there are some other
1448		 * commands active, use resume to complete them.
1449		 */
1450		if (ch->rslots != 0)
1451			ATA_OUTL(ch->r_mem, AHCI_P_FBS, AHCI_P_FBS_EN | AHCI_P_FBS_DEC);
1452	}
1453	/* Process NOTIFY events */
1454	if (sntf)
1455		ahci_notify_events(dev, sntf);
1456}
1457
1458/* Must be called with channel locked. */
1459static int
1460ahci_check_collision(device_t dev, union ccb *ccb)
1461{
1462	struct ahci_channel *ch = device_get_softc(dev);
1463	int t = ccb->ccb_h.target_id;
1464
1465	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1466	    (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA)) {
1467		/* Tagged command while we have no supported tag free. */
1468		if (((~ch->oslots) & (0xffffffff >> (32 -
1469		    ch->curr[t].tags))) == 0)
1470			return (1);
1471		/* If we have FBS */
1472		if (ch->fbs_enabled) {
1473			/* Tagged command while untagged are active. */
1474			if (ch->numrslotspd[t] != 0 && ch->numtslotspd[t] == 0)
1475				return (1);
1476		} else {
1477			/* Tagged command while untagged are active. */
1478			if (ch->numrslots != 0 && ch->numtslots == 0)
1479				return (1);
1480			/* Tagged command while tagged to other target is active. */
1481			if (ch->numtslots != 0 &&
1482			    ch->taggedtarget != ccb->ccb_h.target_id)
1483				return (1);
1484		}
1485	} else {
1486		/* If we have FBS */
1487		if (ch->fbs_enabled) {
1488			/* Untagged command while tagged are active. */
1489			if (ch->numrslotspd[t] != 0 && ch->numtslotspd[t] != 0)
1490				return (1);
1491		} else {
1492			/* Untagged command while tagged are active. */
1493			if (ch->numrslots != 0 && ch->numtslots != 0)
1494				return (1);
1495		}
1496	}
1497	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1498	    (ccb->ataio.cmd.flags & (CAM_ATAIO_CONTROL | CAM_ATAIO_NEEDRESULT))) {
1499		/* Atomic command while anything active. */
1500		if (ch->numrslots != 0)
1501			return (1);
1502	}
1503       /* We have some atomic command running. */
1504       if (ch->aslots != 0)
1505               return (1);
1506	return (0);
1507}
1508
1509/* Must be called with channel locked. */
1510static void
1511ahci_begin_transaction(device_t dev, union ccb *ccb)
1512{
1513	struct ahci_channel *ch = device_get_softc(dev);
1514	struct ahci_slot *slot;
1515	int tag, tags;
1516
1517	/* Choose empty slot. */
1518	tags = ch->numslots;
1519	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1520	    (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA))
1521		tags = ch->curr[ccb->ccb_h.target_id].tags;
1522	tag = ch->lastslot;
1523	while (1) {
1524		if (tag >= tags)
1525			tag = 0;
1526		if (ch->slot[tag].state == AHCI_SLOT_EMPTY)
1527			break;
1528		tag++;
1529	};
1530	ch->lastslot = tag;
1531	/* Occupy chosen slot. */
1532	slot = &ch->slot[tag];
1533	slot->ccb = ccb;
1534	/* Stop PM timer. */
1535	if (ch->numrslots == 0 && ch->pm_level > 3)
1536		callout_stop(&ch->pm_timer);
1537	/* Update channel stats. */
1538	ch->oslots |= (1 << slot->slot);
1539	ch->numrslots++;
1540	ch->numrslotspd[ccb->ccb_h.target_id]++;
1541	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1542	    (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA)) {
1543		ch->numtslots++;
1544		ch->numtslotspd[ccb->ccb_h.target_id]++;
1545		ch->taggedtarget = ccb->ccb_h.target_id;
1546	}
1547	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1548	    (ccb->ataio.cmd.flags & (CAM_ATAIO_CONTROL | CAM_ATAIO_NEEDRESULT)))
1549		ch->aslots |= (1 << slot->slot);
1550	slot->dma.nsegs = 0;
1551	/* If request moves data, setup and load SG list */
1552	if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) {
1553		void *buf;
1554		bus_size_t size;
1555
1556		slot->state = AHCI_SLOT_LOADING;
1557		if (ccb->ccb_h.func_code == XPT_ATA_IO) {
1558			buf = ccb->ataio.data_ptr;
1559			size = ccb->ataio.dxfer_len;
1560		} else {
1561			buf = ccb->csio.data_ptr;
1562			size = ccb->csio.dxfer_len;
1563		}
1564		bus_dmamap_load(ch->dma.data_tag, slot->dma.data_map,
1565		    buf, size, ahci_dmasetprd, slot, 0);
1566	} else
1567		ahci_execute_transaction(slot);
1568}
1569
1570/* Locked by busdma engine. */
1571static void
1572ahci_dmasetprd(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
1573{
1574	struct ahci_slot *slot = arg;
1575	struct ahci_channel *ch = device_get_softc(slot->dev);
1576	struct ahci_cmd_tab *ctp;
1577	struct ahci_dma_prd *prd;
1578	int i;
1579
1580	if (error) {
1581		device_printf(slot->dev, "DMA load error\n");
1582		ahci_end_transaction(slot, AHCI_ERR_INVALID);
1583		return;
1584	}
1585	KASSERT(nsegs <= AHCI_SG_ENTRIES, ("too many DMA segment entries\n"));
1586	/* Get a piece of the workspace for this request */
1587	ctp = (struct ahci_cmd_tab *)
1588		(ch->dma.work + AHCI_CT_OFFSET + (AHCI_CT_SIZE * slot->slot));
1589	/* Fill S/G table */
1590	prd = &ctp->prd_tab[0];
1591	for (i = 0; i < nsegs; i++) {
1592		prd[i].dba = htole64(segs[i].ds_addr);
1593		prd[i].dbc = htole32((segs[i].ds_len - 1) & AHCI_PRD_MASK);
1594	}
1595	slot->dma.nsegs = nsegs;
1596	bus_dmamap_sync(ch->dma.data_tag, slot->dma.data_map,
1597	    ((slot->ccb->ccb_h.flags & CAM_DIR_IN) ?
1598	    BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE));
1599	ahci_execute_transaction(slot);
1600}
1601
1602/* Must be called with channel locked. */
1603static void
1604ahci_execute_transaction(struct ahci_slot *slot)
1605{
1606	device_t dev = slot->dev;
1607	struct ahci_channel *ch = device_get_softc(dev);
1608	struct ahci_cmd_tab *ctp;
1609	struct ahci_cmd_list *clp;
1610	union ccb *ccb = slot->ccb;
1611	int port = ccb->ccb_h.target_id & 0x0f;
1612	int fis_size, i;
1613	uint8_t *fis = ch->dma.rfis + 0x40;
1614	uint8_t val;
1615
1616	/* Get a piece of the workspace for this request */
1617	ctp = (struct ahci_cmd_tab *)
1618		(ch->dma.work + AHCI_CT_OFFSET + (AHCI_CT_SIZE * slot->slot));
1619	/* Setup the FIS for this request */
1620	if (!(fis_size = ahci_setup_fis(dev, ctp, ccb, slot->slot))) {
1621		device_printf(ch->dev, "Setting up SATA FIS failed\n");
1622		ahci_end_transaction(slot, AHCI_ERR_INVALID);
1623		return;
1624	}
1625	/* Setup the command list entry */
1626	clp = (struct ahci_cmd_list *)
1627	    (ch->dma.work + AHCI_CL_OFFSET + (AHCI_CL_SIZE * slot->slot));
1628	clp->prd_length = slot->dma.nsegs;
1629	clp->cmd_flags = (ccb->ccb_h.flags & CAM_DIR_OUT ? AHCI_CMD_WRITE : 0) |
1630		     (ccb->ccb_h.func_code == XPT_SCSI_IO ?
1631		      (AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH) : 0) |
1632		     (fis_size / sizeof(u_int32_t)) |
1633		     (port << 12);
1634	/* Special handling for Soft Reset command. */
1635	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1636	    (ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL)) {
1637		if (ccb->ataio.cmd.control & ATA_A_RESET) {
1638			/* Kick controller into sane state */
1639			ahci_stop(dev);
1640			ahci_clo(dev);
1641			ahci_start(dev, 0);
1642			clp->cmd_flags |= AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY;
1643		} else {
1644			/* Prepare FIS receive area for check. */
1645			for (i = 0; i < 20; i++)
1646				fis[i] = 0xff;
1647		}
1648	}
1649	clp->bytecount = 0;
1650	clp->cmd_table_phys = htole64(ch->dma.work_bus + AHCI_CT_OFFSET +
1651				  (AHCI_CT_SIZE * slot->slot));
1652	bus_dmamap_sync(ch->dma.work_tag, ch->dma.work_map,
1653	    BUS_DMASYNC_PREWRITE);
1654	bus_dmamap_sync(ch->dma.rfis_tag, ch->dma.rfis_map,
1655	    BUS_DMASYNC_PREREAD);
1656	/* Set ACTIVE bit for NCQ commands. */
1657	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1658	    (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA)) {
1659		ATA_OUTL(ch->r_mem, AHCI_P_SACT, 1 << slot->slot);
1660	}
1661	/* If FBS is enabled, set PMP port. */
1662	if (ch->fbs_enabled) {
1663		ATA_OUTL(ch->r_mem, AHCI_P_FBS, AHCI_P_FBS_EN |
1664		    (port << AHCI_P_FBS_DEV_SHIFT));
1665	}
1666	/* Issue command to the controller. */
1667	slot->state = AHCI_SLOT_RUNNING;
1668	ch->rslots |= (1 << slot->slot);
1669	ATA_OUTL(ch->r_mem, AHCI_P_CI, (1 << slot->slot));
1670	/* Device reset commands doesn't interrupt. Poll them. */
1671	if (ccb->ccb_h.func_code == XPT_ATA_IO &&
1672	    (ccb->ataio.cmd.command == ATA_DEVICE_RESET ||
1673	    (ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL))) {
1674		int count, timeout = ccb->ccb_h.timeout;
1675		enum ahci_err_type et = AHCI_ERR_NONE;
1676
1677		for (count = 0; count < timeout; count++) {
1678			DELAY(1000);
1679			if (!(ATA_INL(ch->r_mem, AHCI_P_CI) & (1 << slot->slot)))
1680				break;
1681			if (ATA_INL(ch->r_mem, AHCI_P_TFD) & ATA_S_ERROR) {
1682				device_printf(ch->dev,
1683				    "Poll error on slot %d, TFD: %04x\n",
1684				    slot->slot, ATA_INL(ch->r_mem, AHCI_P_TFD));
1685				et = AHCI_ERR_TFE;
1686				break;
1687			}
1688			/* Workaround for ATI SB600/SB700 chipsets. */
1689			if (ccb->ccb_h.target_id == 15 &&
1690			    pci_get_vendor(device_get_parent(dev)) == 0x1002 &&
1691			    (ATA_INL(ch->r_mem, AHCI_P_IS) & AHCI_P_IX_IPM)) {
1692				et = AHCI_ERR_TIMEOUT;
1693				break;
1694			}
1695		}
1696		if (timeout && (count >= timeout)) {
1697			device_printf(ch->dev,
1698			    "Poll timeout on slot %d\n", slot->slot);
1699			device_printf(dev, "is %08x cs %08x ss %08x "
1700			    "rs %08x tfd %02x serr %08x\n",
1701			    ATA_INL(ch->r_mem, AHCI_P_IS),
1702			    ATA_INL(ch->r_mem, AHCI_P_CI),
1703			    ATA_INL(ch->r_mem, AHCI_P_SACT), ch->rslots,
1704			    ATA_INL(ch->r_mem, AHCI_P_TFD),
1705			    ATA_INL(ch->r_mem, AHCI_P_SERR));
1706			et = AHCI_ERR_TIMEOUT;
1707		}
1708		/* Marvell controllers do not wait for readyness. */
1709		if ((ch->quirks & AHCI_Q_NOBSYRES) &&
1710		    (ccb->ccb_h.func_code == XPT_ATA_IO) &&
1711		    (ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL) &&
1712		    (ccb->ataio.cmd.control & ATA_A_RESET) == 0) {
1713			while ((val = fis[2]) & (ATA_S_BUSY | ATA_S_DRQ)) {
1714				DELAY(1000);
1715				if (count++ >= timeout) {
1716					device_printf(dev, "device is not "
1717					    "ready after soft-reset: "
1718					    "tfd = %08x\n", val);
1719	    				et = AHCI_ERR_TIMEOUT;
1720	    				break;
1721				}
1722			}
1723		}
1724		ahci_end_transaction(slot, et);
1725		/* Kick controller into sane state and enable FBS. */
1726		if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1727		    (ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL) &&
1728		    (ccb->ataio.cmd.control & ATA_A_RESET) == 0) {
1729			ahci_stop(ch->dev);
1730			ahci_start(ch->dev, 1);
1731		}
1732		return;
1733	}
1734	/* Start command execution timeout */
1735	callout_reset(&slot->timeout, (int)ccb->ccb_h.timeout * hz / 2000,
1736	    (timeout_t*)ahci_timeout, slot);
1737	return;
1738}
1739
1740/* Must be called with channel locked. */
1741static void
1742ahci_process_timeout(device_t dev)
1743{
1744	struct ahci_channel *ch = device_get_softc(dev);
1745	int i;
1746
1747	mtx_assert(&ch->mtx, MA_OWNED);
1748	/* Handle the rest of commands. */
1749	for (i = 0; i < ch->numslots; i++) {
1750		/* Do we have a running request on slot? */
1751		if (ch->slot[i].state < AHCI_SLOT_RUNNING)
1752			continue;
1753		ahci_end_transaction(&ch->slot[i], AHCI_ERR_TIMEOUT);
1754	}
1755}
1756
1757/* Must be called with channel locked. */
1758static void
1759ahci_rearm_timeout(device_t dev)
1760{
1761	struct ahci_channel *ch = device_get_softc(dev);
1762	int i;
1763
1764	mtx_assert(&ch->mtx, MA_OWNED);
1765	for (i = 0; i < ch->numslots; i++) {
1766		struct ahci_slot *slot = &ch->slot[i];
1767
1768		/* Do we have a running request on slot? */
1769		if (slot->state < AHCI_SLOT_RUNNING)
1770			continue;
1771		if ((ch->toslots & (1 << i)) == 0)
1772			continue;
1773		callout_reset(&slot->timeout,
1774		    (int)slot->ccb->ccb_h.timeout * hz / 2000,
1775		    (timeout_t*)ahci_timeout, slot);
1776	}
1777}
1778
1779/* Locked by callout mechanism. */
1780static void
1781ahci_timeout(struct ahci_slot *slot)
1782{
1783	device_t dev = slot->dev;
1784	struct ahci_channel *ch = device_get_softc(dev);
1785	uint32_t sstatus;
1786	int ccs;
1787	int i;
1788
1789	/* Check for stale timeout. */
1790	if (slot->state < AHCI_SLOT_RUNNING)
1791		return;
1792
1793	/* Check if slot was not being executed last time we checked. */
1794	if (slot->state < AHCI_SLOT_EXECUTING) {
1795		/* Check if slot started executing. */
1796		sstatus = ATA_INL(ch->r_mem, AHCI_P_SACT);
1797		ccs = (ATA_INL(ch->r_mem, AHCI_P_CMD) & AHCI_P_CMD_CCS_MASK)
1798		    >> AHCI_P_CMD_CCS_SHIFT;
1799		if ((sstatus & (1 << slot->slot)) != 0 || ccs == slot->slot ||
1800		    ch->fbs_enabled)
1801			slot->state = AHCI_SLOT_EXECUTING;
1802
1803		callout_reset(&slot->timeout,
1804		    (int)slot->ccb->ccb_h.timeout * hz / 2000,
1805		    (timeout_t*)ahci_timeout, slot);
1806		return;
1807	}
1808
1809	device_printf(dev, "Timeout on slot %d\n", slot->slot);
1810	device_printf(dev, "is %08x cs %08x ss %08x rs %08x tfd %02x serr %08x\n",
1811	    ATA_INL(ch->r_mem, AHCI_P_IS), ATA_INL(ch->r_mem, AHCI_P_CI),
1812	    ATA_INL(ch->r_mem, AHCI_P_SACT), ch->rslots,
1813	    ATA_INL(ch->r_mem, AHCI_P_TFD), ATA_INL(ch->r_mem, AHCI_P_SERR));
1814
1815	/* Handle frozen command. */
1816	if (ch->frozen) {
1817		union ccb *fccb = ch->frozen;
1818		ch->frozen = NULL;
1819		fccb->ccb_h.status = CAM_REQUEUE_REQ | CAM_RELEASE_SIMQ;
1820		if (!(fccb->ccb_h.status & CAM_DEV_QFRZN)) {
1821			xpt_freeze_devq(fccb->ccb_h.path, 1);
1822			fccb->ccb_h.status |= CAM_DEV_QFRZN;
1823		}
1824		xpt_done(fccb);
1825	}
1826	if (!ch->fbs_enabled) {
1827		/* Without FBS we know real timeout source. */
1828		ch->fatalerr = 1;
1829		/* Handle command with timeout. */
1830		ahci_end_transaction(&ch->slot[slot->slot], AHCI_ERR_TIMEOUT);
1831		/* Handle the rest of commands. */
1832		for (i = 0; i < ch->numslots; i++) {
1833			/* Do we have a running request on slot? */
1834			if (ch->slot[i].state < AHCI_SLOT_RUNNING)
1835				continue;
1836			ahci_end_transaction(&ch->slot[i], AHCI_ERR_INNOCENT);
1837		}
1838	} else {
1839		/* With FBS we wait for other commands timeout and pray. */
1840		if (ch->toslots == 0)
1841			xpt_freeze_simq(ch->sim, 1);
1842		ch->toslots |= (1 << slot->slot);
1843		if ((ch->rslots & ~ch->toslots) == 0)
1844			ahci_process_timeout(dev);
1845		else
1846			device_printf(dev, " ... waiting for slots %08x\n",
1847			    ch->rslots & ~ch->toslots);
1848	}
1849}
1850
1851/* Must be called with channel locked. */
1852static void
1853ahci_end_transaction(struct ahci_slot *slot, enum ahci_err_type et)
1854{
1855	device_t dev = slot->dev;
1856	struct ahci_channel *ch = device_get_softc(dev);
1857	union ccb *ccb = slot->ccb;
1858	int lastto;
1859
1860	bus_dmamap_sync(ch->dma.work_tag, ch->dma.work_map,
1861	    BUS_DMASYNC_POSTWRITE);
1862	/* Read result registers to the result struct
1863	 * May be incorrect if several commands finished same time,
1864	 * so read only when sure or have to.
1865	 */
1866	if (ccb->ccb_h.func_code == XPT_ATA_IO) {
1867		struct ata_res *res = &ccb->ataio.res;
1868
1869		if ((et == AHCI_ERR_TFE) ||
1870		    (ccb->ataio.cmd.flags & CAM_ATAIO_NEEDRESULT)) {
1871			u_int8_t *fis = ch->dma.rfis + 0x40;
1872
1873			bus_dmamap_sync(ch->dma.rfis_tag, ch->dma.rfis_map,
1874			    BUS_DMASYNC_POSTREAD);
1875			if (ch->fbs_enabled) {
1876				fis += ccb->ccb_h.target_id * 256;
1877				res->status = fis[2];
1878				res->error = fis[3];
1879			} else {
1880				uint16_t tfd = ATA_INL(ch->r_mem, AHCI_P_TFD);
1881
1882				res->status = tfd;
1883				res->error = tfd >> 8;
1884			}
1885			res->lba_low = fis[4];
1886			res->lba_mid = fis[5];
1887			res->lba_high = fis[6];
1888			res->device = fis[7];
1889			res->lba_low_exp = fis[8];
1890			res->lba_mid_exp = fis[9];
1891			res->lba_high_exp = fis[10];
1892			res->sector_count = fis[12];
1893			res->sector_count_exp = fis[13];
1894		} else
1895			bzero(res, sizeof(*res));
1896	}
1897	if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) {
1898		bus_dmamap_sync(ch->dma.data_tag, slot->dma.data_map,
1899		    (ccb->ccb_h.flags & CAM_DIR_IN) ?
1900		    BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
1901		bus_dmamap_unload(ch->dma.data_tag, slot->dma.data_map);
1902	}
1903	if (et != AHCI_ERR_NONE)
1904		ch->eslots |= (1 << slot->slot);
1905	/* In case of error, freeze device for proper recovery. */
1906	if ((et != AHCI_ERR_NONE) && (!ch->readlog) &&
1907	    !(ccb->ccb_h.status & CAM_DEV_QFRZN)) {
1908		xpt_freeze_devq(ccb->ccb_h.path, 1);
1909		ccb->ccb_h.status |= CAM_DEV_QFRZN;
1910	}
1911	/* Set proper result status. */
1912	ccb->ccb_h.status &= ~CAM_STATUS_MASK;
1913	switch (et) {
1914	case AHCI_ERR_NONE:
1915		ccb->ccb_h.status |= CAM_REQ_CMP;
1916		if (ccb->ccb_h.func_code == XPT_SCSI_IO)
1917			ccb->csio.scsi_status = SCSI_STATUS_OK;
1918		break;
1919	case AHCI_ERR_INVALID:
1920		ch->fatalerr = 1;
1921		ccb->ccb_h.status |= CAM_REQ_INVALID;
1922		break;
1923	case AHCI_ERR_INNOCENT:
1924		ccb->ccb_h.status |= CAM_REQUEUE_REQ;
1925		break;
1926	case AHCI_ERR_TFE:
1927	case AHCI_ERR_NCQ:
1928		if (ccb->ccb_h.func_code == XPT_SCSI_IO) {
1929			ccb->ccb_h.status |= CAM_SCSI_STATUS_ERROR;
1930			ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND;
1931		} else {
1932			ccb->ccb_h.status |= CAM_ATA_STATUS_ERROR;
1933		}
1934		break;
1935	case AHCI_ERR_SATA:
1936		ch->fatalerr = 1;
1937		if (!ch->readlog) {
1938			xpt_freeze_simq(ch->sim, 1);
1939			ccb->ccb_h.status &= ~CAM_STATUS_MASK;
1940			ccb->ccb_h.status |= CAM_RELEASE_SIMQ;
1941		}
1942		ccb->ccb_h.status |= CAM_UNCOR_PARITY;
1943		break;
1944	case AHCI_ERR_TIMEOUT:
1945		if (!ch->readlog) {
1946			xpt_freeze_simq(ch->sim, 1);
1947			ccb->ccb_h.status &= ~CAM_STATUS_MASK;
1948			ccb->ccb_h.status |= CAM_RELEASE_SIMQ;
1949		}
1950		ccb->ccb_h.status |= CAM_CMD_TIMEOUT;
1951		break;
1952	default:
1953		ch->fatalerr = 1;
1954		ccb->ccb_h.status |= CAM_REQ_CMP_ERR;
1955	}
1956	/* Free slot. */
1957	ch->oslots &= ~(1 << slot->slot);
1958	ch->rslots &= ~(1 << slot->slot);
1959	ch->aslots &= ~(1 << slot->slot);
1960	slot->state = AHCI_SLOT_EMPTY;
1961	slot->ccb = NULL;
1962	/* Update channel stats. */
1963	ch->numrslots--;
1964	ch->numrslotspd[ccb->ccb_h.target_id]--;
1965	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1966	    (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA)) {
1967		ch->numtslots--;
1968		ch->numtslotspd[ccb->ccb_h.target_id]--;
1969	}
1970	/* Cancel timeout state if request completed normally. */
1971	if (et != AHCI_ERR_TIMEOUT) {
1972		lastto = (ch->toslots == (1 << slot->slot));
1973		ch->toslots &= ~(1 << slot->slot);
1974		if (lastto)
1975			xpt_release_simq(ch->sim, TRUE);
1976	}
1977	/* If it was first request of reset sequence and there is no error,
1978	 * proceed to second request. */
1979	if ((ccb->ccb_h.func_code == XPT_ATA_IO) &&
1980	    (ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL) &&
1981	    (ccb->ataio.cmd.control & ATA_A_RESET) &&
1982	    et == AHCI_ERR_NONE) {
1983		ccb->ataio.cmd.control &= ~ATA_A_RESET;
1984		ahci_begin_transaction(dev, ccb);
1985		return;
1986	}
1987	/* If it was our READ LOG command - process it. */
1988	if (ch->readlog) {
1989		ahci_process_read_log(dev, ccb);
1990	/* If it was NCQ command error, put result on hold. */
1991	} else if (et == AHCI_ERR_NCQ) {
1992		ch->hold[slot->slot] = ccb;
1993		ch->numhslots++;
1994	} else
1995		xpt_done(ccb);
1996	/* Unfreeze frozen command. */
1997	if (ch->frozen && !ahci_check_collision(dev, ch->frozen)) {
1998		union ccb *fccb = ch->frozen;
1999		ch->frozen = NULL;
2000		ahci_begin_transaction(dev, fccb);
2001		xpt_release_simq(ch->sim, TRUE);
2002	}
2003	/* If we have no other active commands, ... */
2004	if (ch->rslots == 0) {
2005		/* if there was fatal error - reset port. */
2006		if (ch->toslots != 0 || ch->fatalerr) {
2007			ahci_reset(dev);
2008		} else {
2009			/* if we have slots in error, we can reinit port. */
2010			if (ch->eslots != 0) {
2011				ahci_stop(dev);
2012				ahci_start(dev, 1);
2013			}
2014			/* if there commands on hold, we can do READ LOG. */
2015			if (!ch->readlog && ch->numhslots)
2016				ahci_issue_read_log(dev);
2017		}
2018	/* If all the rest of commands are in timeout - give them chance. */
2019	} else if ((ch->rslots & ~ch->toslots) == 0 &&
2020	    et != AHCI_ERR_TIMEOUT)
2021		ahci_rearm_timeout(dev);
2022	/* Start PM timer. */
2023	if (ch->numrslots == 0 && ch->pm_level > 3 &&
2024	    (ch->curr[ch->pm_present ? 15 : 0].caps & CTS_SATA_CAPS_D_PMREQ)) {
2025		callout_schedule(&ch->pm_timer,
2026		    (ch->pm_level == 4) ? hz / 1000 : hz / 8);
2027	}
2028}
2029
2030static void
2031ahci_issue_read_log(device_t dev)
2032{
2033	struct ahci_channel *ch = device_get_softc(dev);
2034	union ccb *ccb;
2035	struct ccb_ataio *ataio;
2036	int i;
2037
2038	ch->readlog = 1;
2039	/* Find some holden command. */
2040	for (i = 0; i < ch->numslots; i++) {
2041		if (ch->hold[i])
2042			break;
2043	}
2044	ccb = xpt_alloc_ccb_nowait();
2045	if (ccb == NULL) {
2046		device_printf(dev, "Unable allocate READ LOG command");
2047		return; /* XXX */
2048	}
2049	ccb->ccb_h = ch->hold[i]->ccb_h;	/* Reuse old header. */
2050	ccb->ccb_h.func_code = XPT_ATA_IO;
2051	ccb->ccb_h.flags = CAM_DIR_IN;
2052	ccb->ccb_h.timeout = 1000;	/* 1s should be enough. */
2053	ataio = &ccb->ataio;
2054	ataio->data_ptr = malloc(512, M_AHCI, M_NOWAIT);
2055	if (ataio->data_ptr == NULL) {
2056		xpt_free_ccb(ccb);
2057		device_printf(dev, "Unable allocate memory for READ LOG command");
2058		return; /* XXX */
2059	}
2060	ataio->dxfer_len = 512;
2061	bzero(&ataio->cmd, sizeof(ataio->cmd));
2062	ataio->cmd.flags = CAM_ATAIO_48BIT;
2063	ataio->cmd.command = 0x2F;	/* READ LOG EXT */
2064	ataio->cmd.sector_count = 1;
2065	ataio->cmd.sector_count_exp = 0;
2066	ataio->cmd.lba_low = 0x10;
2067	ataio->cmd.lba_mid = 0;
2068	ataio->cmd.lba_mid_exp = 0;
2069	/* Freeze SIM while doing READ LOG EXT. */
2070	xpt_freeze_simq(ch->sim, 1);
2071	ahci_begin_transaction(dev, ccb);
2072}
2073
2074static void
2075ahci_process_read_log(device_t dev, union ccb *ccb)
2076{
2077	struct ahci_channel *ch = device_get_softc(dev);
2078	uint8_t *data;
2079	struct ata_res *res;
2080	int i;
2081
2082	ch->readlog = 0;
2083
2084	data = ccb->ataio.data_ptr;
2085	if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP &&
2086	    (data[0] & 0x80) == 0) {
2087		for (i = 0; i < ch->numslots; i++) {
2088			if (!ch->hold[i])
2089				continue;
2090			if ((data[0] & 0x1F) == i) {
2091				res = &ch->hold[i]->ataio.res;
2092				res->status = data[2];
2093				res->error = data[3];
2094				res->lba_low = data[4];
2095				res->lba_mid = data[5];
2096				res->lba_high = data[6];
2097				res->device = data[7];
2098				res->lba_low_exp = data[8];
2099				res->lba_mid_exp = data[9];
2100				res->lba_high_exp = data[10];
2101				res->sector_count = data[12];
2102				res->sector_count_exp = data[13];
2103			} else {
2104				ch->hold[i]->ccb_h.status &= ~CAM_STATUS_MASK;
2105				ch->hold[i]->ccb_h.status |= CAM_REQUEUE_REQ;
2106			}
2107			xpt_done(ch->hold[i]);
2108			ch->hold[i] = NULL;
2109			ch->numhslots--;
2110		}
2111	} else {
2112		if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP)
2113			device_printf(dev, "Error while READ LOG EXT\n");
2114		else if ((data[0] & 0x80) == 0) {
2115			device_printf(dev, "Non-queued command error in READ LOG EXT\n");
2116		}
2117		for (i = 0; i < ch->numslots; i++) {
2118			if (!ch->hold[i])
2119				continue;
2120			xpt_done(ch->hold[i]);
2121			ch->hold[i] = NULL;
2122			ch->numhslots--;
2123		}
2124	}
2125	free(ccb->ataio.data_ptr, M_AHCI);
2126	xpt_free_ccb(ccb);
2127	xpt_release_simq(ch->sim, TRUE);
2128}
2129
2130static void
2131ahci_start(device_t dev, int fbs)
2132{
2133	struct ahci_channel *ch = device_get_softc(dev);
2134	u_int32_t cmd;
2135
2136	/* Clear SATA error register */
2137	ATA_OUTL(ch->r_mem, AHCI_P_SERR, 0xFFFFFFFF);
2138	/* Clear any interrupts pending on this channel */
2139	ATA_OUTL(ch->r_mem, AHCI_P_IS, 0xFFFFFFFF);
2140	/* Configure FIS-based switching if supported. */
2141	if (ch->chcaps & AHCI_P_CMD_FBSCP) {
2142		ch->fbs_enabled = (fbs && ch->pm_present) ? 1 : 0;
2143		ATA_OUTL(ch->r_mem, AHCI_P_FBS,
2144		    ch->fbs_enabled ? AHCI_P_FBS_EN : 0);
2145	}
2146	/* Start operations on this channel */
2147	cmd = ATA_INL(ch->r_mem, AHCI_P_CMD);
2148	cmd &= ~AHCI_P_CMD_PMA;
2149	ATA_OUTL(ch->r_mem, AHCI_P_CMD, cmd | AHCI_P_CMD_ST |
2150	    (ch->pm_present ? AHCI_P_CMD_PMA : 0));
2151}
2152
2153static void
2154ahci_stop(device_t dev)
2155{
2156	struct ahci_channel *ch = device_get_softc(dev);
2157	u_int32_t cmd;
2158	int timeout;
2159
2160	/* Kill all activity on this channel */
2161	cmd = ATA_INL(ch->r_mem, AHCI_P_CMD);
2162	ATA_OUTL(ch->r_mem, AHCI_P_CMD, cmd & ~AHCI_P_CMD_ST);
2163	/* Wait for activity stop. */
2164	timeout = 0;
2165	do {
2166		DELAY(1000);
2167		if (timeout++ > 1000) {
2168			device_printf(dev, "stopping AHCI engine failed\n");
2169			break;
2170		}
2171	} while (ATA_INL(ch->r_mem, AHCI_P_CMD) & AHCI_P_CMD_CR);
2172	ch->eslots = 0;
2173}
2174
2175static void
2176ahci_clo(device_t dev)
2177{
2178	struct ahci_channel *ch = device_get_softc(dev);
2179	u_int32_t cmd;
2180	int timeout;
2181
2182	/* Issue Command List Override if supported */
2183	if (ch->caps & AHCI_CAP_SCLO) {
2184		cmd = ATA_INL(ch->r_mem, AHCI_P_CMD);
2185		cmd |= AHCI_P_CMD_CLO;
2186		ATA_OUTL(ch->r_mem, AHCI_P_CMD, cmd);
2187		timeout = 0;
2188		do {
2189			DELAY(1000);
2190			if (timeout++ > 1000) {
2191			    device_printf(dev, "executing CLO failed\n");
2192			    break;
2193			}
2194		} while (ATA_INL(ch->r_mem, AHCI_P_CMD) & AHCI_P_CMD_CLO);
2195	}
2196}
2197
2198static void
2199ahci_stop_fr(device_t dev)
2200{
2201	struct ahci_channel *ch = device_get_softc(dev);
2202	u_int32_t cmd;
2203	int timeout;
2204
2205	/* Kill all FIS reception on this channel */
2206	cmd = ATA_INL(ch->r_mem, AHCI_P_CMD);
2207	ATA_OUTL(ch->r_mem, AHCI_P_CMD, cmd & ~AHCI_P_CMD_FRE);
2208	/* Wait for FIS reception stop. */
2209	timeout = 0;
2210	do {
2211		DELAY(1000);
2212		if (timeout++ > 1000) {
2213			device_printf(dev, "stopping AHCI FR engine failed\n");
2214			break;
2215		}
2216	} while (ATA_INL(ch->r_mem, AHCI_P_CMD) & AHCI_P_CMD_FR);
2217}
2218
2219static void
2220ahci_start_fr(device_t dev)
2221{
2222	struct ahci_channel *ch = device_get_softc(dev);
2223	u_int32_t cmd;
2224
2225	/* Start FIS reception on this channel */
2226	cmd = ATA_INL(ch->r_mem, AHCI_P_CMD);
2227	ATA_OUTL(ch->r_mem, AHCI_P_CMD, cmd | AHCI_P_CMD_FRE);
2228}
2229
2230static int
2231ahci_wait_ready(device_t dev, int t)
2232{
2233	struct ahci_channel *ch = device_get_softc(dev);
2234	int timeout = 0;
2235	uint32_t val;
2236
2237	while ((val = ATA_INL(ch->r_mem, AHCI_P_TFD)) &
2238	    (ATA_S_BUSY | ATA_S_DRQ)) {
2239		DELAY(1000);
2240		if (timeout++ > t) {
2241			device_printf(dev, "device is not ready (timeout %dms) "
2242			    "tfd = %08x\n", t, val);
2243			return (EBUSY);
2244		}
2245	}
2246	if (bootverbose)
2247		device_printf(dev, "ready wait time=%dms\n", timeout);
2248	return (0);
2249}
2250
2251static void
2252ahci_reset(device_t dev)
2253{
2254	struct ahci_channel *ch = device_get_softc(dev);
2255	struct ahci_controller *ctlr = device_get_softc(device_get_parent(dev));
2256	int i;
2257
2258	xpt_freeze_simq(ch->sim, 1);
2259	if (bootverbose)
2260		device_printf(dev, "AHCI reset...\n");
2261	/* Requeue freezed command. */
2262	if (ch->frozen) {
2263		union ccb *fccb = ch->frozen;
2264		ch->frozen = NULL;
2265		fccb->ccb_h.status = CAM_REQUEUE_REQ | CAM_RELEASE_SIMQ;
2266		if (!(fccb->ccb_h.status & CAM_DEV_QFRZN)) {
2267			xpt_freeze_devq(fccb->ccb_h.path, 1);
2268			fccb->ccb_h.status |= CAM_DEV_QFRZN;
2269		}
2270		xpt_done(fccb);
2271	}
2272	/* Kill the engine and requeue all running commands. */
2273	ahci_stop(dev);
2274	for (i = 0; i < ch->numslots; i++) {
2275		/* Do we have a running request on slot? */
2276		if (ch->slot[i].state < AHCI_SLOT_RUNNING)
2277			continue;
2278		/* XXX; Commands in loading state. */
2279		ahci_end_transaction(&ch->slot[i], AHCI_ERR_INNOCENT);
2280	}
2281	for (i = 0; i < ch->numslots; i++) {
2282		if (!ch->hold[i])
2283			continue;
2284		xpt_done(ch->hold[i]);
2285		ch->hold[i] = NULL;
2286		ch->numhslots--;
2287	}
2288	if (ch->toslots != 0)
2289		xpt_release_simq(ch->sim, TRUE);
2290	ch->eslots = 0;
2291	ch->toslots = 0;
2292	ch->fatalerr = 0;
2293	/* Tell the XPT about the event */
2294	xpt_async(AC_BUS_RESET, ch->path, NULL);
2295	/* Disable port interrupts */
2296	ATA_OUTL(ch->r_mem, AHCI_P_IE, 0);
2297	/* Reset and reconnect PHY, */
2298	if (!ahci_sata_phy_reset(dev)) {
2299		if (bootverbose)
2300			device_printf(dev,
2301			    "AHCI reset done: phy reset found no device\n");
2302		ch->devices = 0;
2303		/* Enable wanted port interrupts */
2304		ATA_OUTL(ch->r_mem, AHCI_P_IE,
2305		    (AHCI_P_IX_CPD | AHCI_P_IX_PRC | AHCI_P_IX_PC));
2306		xpt_release_simq(ch->sim, TRUE);
2307		return;
2308	}
2309	/* Wait for clearing busy status. */
2310	if (ahci_wait_ready(dev, 15000))
2311		ahci_clo(dev);
2312	ahci_start(dev, 1);
2313	ch->devices = 1;
2314	/* Enable wanted port interrupts */
2315	ATA_OUTL(ch->r_mem, AHCI_P_IE,
2316	     (AHCI_P_IX_CPD | AHCI_P_IX_TFE | AHCI_P_IX_HBF |
2317	      AHCI_P_IX_HBD | AHCI_P_IX_IF | AHCI_P_IX_OF |
2318	      ((ch->pm_level == 0) ? AHCI_P_IX_PRC | AHCI_P_IX_PC : 0) |
2319	      AHCI_P_IX_DP | AHCI_P_IX_UF | (ctlr->ccc ? 0 : AHCI_P_IX_SDB) |
2320	      AHCI_P_IX_DS | AHCI_P_IX_PS | (ctlr->ccc ? 0 : AHCI_P_IX_DHR)));
2321	if (bootverbose)
2322		device_printf(dev, "AHCI reset done: device found\n");
2323	xpt_release_simq(ch->sim, TRUE);
2324}
2325
2326static int
2327ahci_setup_fis(device_t dev, struct ahci_cmd_tab *ctp, union ccb *ccb, int tag)
2328{
2329	struct ahci_channel *ch = device_get_softc(dev);
2330	u_int8_t *fis = &ctp->cfis[0];
2331
2332	bzero(ctp->cfis, 64);
2333	fis[0] = 0x27;  		/* host to device */
2334	fis[1] = (ccb->ccb_h.target_id & 0x0f);
2335	if (ccb->ccb_h.func_code == XPT_SCSI_IO) {
2336		fis[1] |= 0x80;
2337		fis[2] = ATA_PACKET_CMD;
2338		if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE &&
2339		    ch->curr[ccb->ccb_h.target_id].mode >= ATA_DMA)
2340			fis[3] = ATA_F_DMA;
2341		else {
2342			fis[5] = ccb->csio.dxfer_len;
2343		        fis[6] = ccb->csio.dxfer_len >> 8;
2344		}
2345		fis[7] = ATA_D_LBA;
2346		fis[15] = ATA_A_4BIT;
2347		bzero(ctp->acmd, 32);
2348		bcopy((ccb->ccb_h.flags & CAM_CDB_POINTER) ?
2349		    ccb->csio.cdb_io.cdb_ptr : ccb->csio.cdb_io.cdb_bytes,
2350		    ctp->acmd, ccb->csio.cdb_len);
2351	} else if ((ccb->ataio.cmd.flags & CAM_ATAIO_CONTROL) == 0) {
2352		fis[1] |= 0x80;
2353		fis[2] = ccb->ataio.cmd.command;
2354		fis[3] = ccb->ataio.cmd.features;
2355		fis[4] = ccb->ataio.cmd.lba_low;
2356		fis[5] = ccb->ataio.cmd.lba_mid;
2357		fis[6] = ccb->ataio.cmd.lba_high;
2358		fis[7] = ccb->ataio.cmd.device;
2359		fis[8] = ccb->ataio.cmd.lba_low_exp;
2360		fis[9] = ccb->ataio.cmd.lba_mid_exp;
2361		fis[10] = ccb->ataio.cmd.lba_high_exp;
2362		fis[11] = ccb->ataio.cmd.features_exp;
2363		if (ccb->ataio.cmd.flags & CAM_ATAIO_FPDMA) {
2364			fis[12] = tag << 3;
2365			fis[13] = 0;
2366		} else {
2367			fis[12] = ccb->ataio.cmd.sector_count;
2368			fis[13] = ccb->ataio.cmd.sector_count_exp;
2369		}
2370		fis[15] = ATA_A_4BIT;
2371	} else {
2372		fis[15] = ccb->ataio.cmd.control;
2373	}
2374	return (20);
2375}
2376
2377static int
2378ahci_sata_connect(struct ahci_channel *ch)
2379{
2380	u_int32_t status;
2381	int timeout;
2382
2383	/* Wait up to 100ms for "connect well" */
2384	for (timeout = 0; timeout < 100 ; timeout++) {
2385		status = ATA_INL(ch->r_mem, AHCI_P_SSTS);
2386		if (((status & ATA_SS_DET_MASK) == ATA_SS_DET_PHY_ONLINE) &&
2387		    ((status & ATA_SS_SPD_MASK) != ATA_SS_SPD_NO_SPEED) &&
2388		    ((status & ATA_SS_IPM_MASK) == ATA_SS_IPM_ACTIVE))
2389			break;
2390		if ((status & ATA_SS_DET_MASK) == ATA_SS_DET_PHY_OFFLINE) {
2391			if (bootverbose) {
2392				device_printf(ch->dev, "SATA offline status=%08x\n",
2393				    status);
2394			}
2395			return (0);
2396		}
2397		DELAY(1000);
2398	}
2399	if (timeout >= 100) {
2400		if (bootverbose) {
2401			device_printf(ch->dev, "SATA connect timeout status=%08x\n",
2402			    status);
2403		}
2404		return (0);
2405	}
2406	if (bootverbose) {
2407		device_printf(ch->dev, "SATA connect time=%dms status=%08x\n",
2408		    timeout, status);
2409	}
2410	/* Clear SATA error register */
2411	ATA_OUTL(ch->r_mem, AHCI_P_SERR, 0xffffffff);
2412	return (1);
2413}
2414
2415static int
2416ahci_sata_phy_reset(device_t dev)
2417{
2418	struct ahci_channel *ch = device_get_softc(dev);
2419	int sata_rev;
2420	uint32_t val;
2421
2422	sata_rev = ch->user[ch->pm_present ? 15 : 0].revision;
2423	if (sata_rev == 1)
2424		val = ATA_SC_SPD_SPEED_GEN1;
2425	else if (sata_rev == 2)
2426		val = ATA_SC_SPD_SPEED_GEN2;
2427	else if (sata_rev == 3)
2428		val = ATA_SC_SPD_SPEED_GEN3;
2429	else
2430		val = 0;
2431	ATA_OUTL(ch->r_mem, AHCI_P_SCTL,
2432	    ATA_SC_DET_RESET | val |
2433	    ATA_SC_IPM_DIS_PARTIAL | ATA_SC_IPM_DIS_SLUMBER);
2434	DELAY(5000);
2435	ATA_OUTL(ch->r_mem, AHCI_P_SCTL,
2436	    ATA_SC_DET_IDLE | val | ((ch->pm_level > 0) ? 0 :
2437	    (ATA_SC_IPM_DIS_PARTIAL | ATA_SC_IPM_DIS_SLUMBER)));
2438	DELAY(5000);
2439	if (!ahci_sata_connect(ch)) {
2440		if (ch->pm_level > 0)
2441			ATA_OUTL(ch->r_mem, AHCI_P_SCTL, ATA_SC_DET_DISABLE);
2442		return (0);
2443	}
2444	return (1);
2445}
2446
2447static int
2448ahci_check_ids(device_t dev, union ccb *ccb)
2449{
2450	struct ahci_channel *ch = device_get_softc(dev);
2451
2452	if (ccb->ccb_h.target_id > ((ch->caps & AHCI_CAP_SPM) ? 15 : 0)) {
2453		ccb->ccb_h.status = CAM_TID_INVALID;
2454		xpt_done(ccb);
2455		return (-1);
2456	}
2457	if (ccb->ccb_h.target_lun != 0) {
2458		ccb->ccb_h.status = CAM_LUN_INVALID;
2459		xpt_done(ccb);
2460		return (-1);
2461	}
2462	return (0);
2463}
2464
2465static void
2466ahciaction(struct cam_sim *sim, union ccb *ccb)
2467{
2468	device_t dev, parent;
2469	struct ahci_channel *ch;
2470
2471	CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_TRACE, ("ahciaction func_code=%x\n",
2472	    ccb->ccb_h.func_code));
2473
2474	ch = (struct ahci_channel *)cam_sim_softc(sim);
2475	dev = ch->dev;
2476	switch (ccb->ccb_h.func_code) {
2477	/* Common cases first */
2478	case XPT_ATA_IO:	/* Execute the requested I/O operation */
2479	case XPT_SCSI_IO:
2480		if (ahci_check_ids(dev, ccb))
2481			return;
2482		if (ch->devices == 0 ||
2483		    (ch->pm_present == 0 &&
2484		     ccb->ccb_h.target_id > 0 && ccb->ccb_h.target_id < 15)) {
2485			ccb->ccb_h.status = CAM_SEL_TIMEOUT;
2486			break;
2487		}
2488		/* Check for command collision. */
2489		if (ahci_check_collision(dev, ccb)) {
2490			/* Freeze command. */
2491			ch->frozen = ccb;
2492			/* We have only one frozen slot, so freeze simq also. */
2493			xpt_freeze_simq(ch->sim, 1);
2494			return;
2495		}
2496		ahci_begin_transaction(dev, ccb);
2497		return;
2498	case XPT_EN_LUN:		/* Enable LUN as a target */
2499	case XPT_TARGET_IO:		/* Execute target I/O request */
2500	case XPT_ACCEPT_TARGET_IO:	/* Accept Host Target Mode CDB */
2501	case XPT_CONT_TARGET_IO:	/* Continue Host Target I/O Connection*/
2502	case XPT_ABORT:			/* Abort the specified CCB */
2503		/* XXX Implement */
2504		ccb->ccb_h.status = CAM_REQ_INVALID;
2505		break;
2506	case XPT_SET_TRAN_SETTINGS:
2507	{
2508		struct	ccb_trans_settings *cts = &ccb->cts;
2509		struct	ahci_device *d;
2510
2511		if (ahci_check_ids(dev, ccb))
2512			return;
2513		if (cts->type == CTS_TYPE_CURRENT_SETTINGS)
2514			d = &ch->curr[ccb->ccb_h.target_id];
2515		else
2516			d = &ch->user[ccb->ccb_h.target_id];
2517		if (cts->xport_specific.sata.valid & CTS_SATA_VALID_REVISION)
2518			d->revision = cts->xport_specific.sata.revision;
2519		if (cts->xport_specific.sata.valid & CTS_SATA_VALID_MODE)
2520			d->mode = cts->xport_specific.sata.mode;
2521		if (cts->xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT)
2522			d->bytecount = min(8192, cts->xport_specific.sata.bytecount);
2523		if (cts->xport_specific.sata.valid & CTS_SATA_VALID_TAGS)
2524			d->tags = min(ch->numslots, cts->xport_specific.sata.tags);
2525		if (cts->xport_specific.sata.valid & CTS_SATA_VALID_PM)
2526			ch->pm_present = cts->xport_specific.sata.pm_present;
2527		if (cts->xport_specific.sata.valid & CTS_SATA_VALID_ATAPI)
2528			d->atapi = cts->xport_specific.sata.atapi;
2529		if (cts->xport_specific.sata.valid & CTS_SATA_VALID_CAPS)
2530			d->caps = cts->xport_specific.sata.caps;
2531		ccb->ccb_h.status = CAM_REQ_CMP;
2532		break;
2533	}
2534	case XPT_GET_TRAN_SETTINGS:
2535	/* Get default/user set transfer settings for the target */
2536	{
2537		struct	ccb_trans_settings *cts = &ccb->cts;
2538		struct  ahci_device *d;
2539		uint32_t status;
2540
2541		if (ahci_check_ids(dev, ccb))
2542			return;
2543		if (cts->type == CTS_TYPE_CURRENT_SETTINGS)
2544			d = &ch->curr[ccb->ccb_h.target_id];
2545		else
2546			d = &ch->user[ccb->ccb_h.target_id];
2547		cts->protocol = PROTO_ATA;
2548		cts->protocol_version = PROTO_VERSION_UNSPECIFIED;
2549		cts->transport = XPORT_SATA;
2550		cts->transport_version = XPORT_VERSION_UNSPECIFIED;
2551		cts->proto_specific.valid = 0;
2552		cts->xport_specific.sata.valid = 0;
2553		if (cts->type == CTS_TYPE_CURRENT_SETTINGS &&
2554		    (ccb->ccb_h.target_id == 15 ||
2555		    (ccb->ccb_h.target_id == 0 && !ch->pm_present))) {
2556			status = ATA_INL(ch->r_mem, AHCI_P_SSTS) & ATA_SS_SPD_MASK;
2557			if (status & 0x0f0) {
2558				cts->xport_specific.sata.revision =
2559				    (status & 0x0f0) >> 4;
2560				cts->xport_specific.sata.valid |=
2561				    CTS_SATA_VALID_REVISION;
2562			}
2563			cts->xport_specific.sata.caps = d->caps & CTS_SATA_CAPS_D;
2564			if (ch->pm_level) {
2565				if (ch->caps & (AHCI_CAP_PSC | AHCI_CAP_SSC))
2566					cts->xport_specific.sata.caps |= CTS_SATA_CAPS_H_PMREQ;
2567				if (ch->caps2 & AHCI_CAP2_APST)
2568					cts->xport_specific.sata.caps |= CTS_SATA_CAPS_H_APST;
2569			}
2570			if ((ch->caps & AHCI_CAP_SNCQ) &&
2571			    (ch->quirks & AHCI_Q_NOAA) == 0)
2572				cts->xport_specific.sata.caps |= CTS_SATA_CAPS_H_DMAAA;
2573			cts->xport_specific.sata.caps &=
2574			    ch->user[ccb->ccb_h.target_id].caps;
2575			cts->xport_specific.sata.valid |= CTS_SATA_VALID_CAPS;
2576		} else {
2577			cts->xport_specific.sata.revision = d->revision;
2578			cts->xport_specific.sata.valid |= CTS_SATA_VALID_REVISION;
2579			cts->xport_specific.sata.caps = d->caps;
2580			cts->xport_specific.sata.valid |= CTS_SATA_VALID_CAPS;
2581		}
2582		cts->xport_specific.sata.mode = d->mode;
2583		cts->xport_specific.sata.valid |= CTS_SATA_VALID_MODE;
2584		cts->xport_specific.sata.bytecount = d->bytecount;
2585		cts->xport_specific.sata.valid |= CTS_SATA_VALID_BYTECOUNT;
2586		cts->xport_specific.sata.pm_present = ch->pm_present;
2587		cts->xport_specific.sata.valid |= CTS_SATA_VALID_PM;
2588		cts->xport_specific.sata.tags = d->tags;
2589		cts->xport_specific.sata.valid |= CTS_SATA_VALID_TAGS;
2590		cts->xport_specific.sata.atapi = d->atapi;
2591		cts->xport_specific.sata.valid |= CTS_SATA_VALID_ATAPI;
2592		ccb->ccb_h.status = CAM_REQ_CMP;
2593		break;
2594	}
2595	case XPT_RESET_BUS:		/* Reset the specified SCSI bus */
2596	case XPT_RESET_DEV:	/* Bus Device Reset the specified SCSI device */
2597		ahci_reset(dev);
2598		ccb->ccb_h.status = CAM_REQ_CMP;
2599		break;
2600	case XPT_TERM_IO:		/* Terminate the I/O process */
2601		/* XXX Implement */
2602		ccb->ccb_h.status = CAM_REQ_INVALID;
2603		break;
2604	case XPT_PATH_INQ:		/* Path routing inquiry */
2605	{
2606		struct ccb_pathinq *cpi = &ccb->cpi;
2607
2608		parent = device_get_parent(dev);
2609		cpi->version_num = 1; /* XXX??? */
2610		cpi->hba_inquiry = PI_SDTR_ABLE;
2611		if (ch->caps & AHCI_CAP_SNCQ)
2612			cpi->hba_inquiry |= PI_TAG_ABLE;
2613		if (ch->caps & AHCI_CAP_SPM)
2614			cpi->hba_inquiry |= PI_SATAPM;
2615		cpi->target_sprt = 0;
2616		cpi->hba_misc = PIM_SEQSCAN;
2617		cpi->hba_eng_cnt = 0;
2618		if (ch->caps & AHCI_CAP_SPM)
2619			cpi->max_target = 15;
2620		else
2621			cpi->max_target = 0;
2622		cpi->max_lun = 0;
2623		cpi->initiator_id = 0;
2624		cpi->bus_id = cam_sim_bus(sim);
2625		cpi->base_transfer_speed = 150000;
2626		strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
2627		strncpy(cpi->hba_vid, "AHCI", HBA_IDLEN);
2628		strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
2629		cpi->unit_number = cam_sim_unit(sim);
2630		cpi->transport = XPORT_SATA;
2631		cpi->transport_version = XPORT_VERSION_UNSPECIFIED;
2632		cpi->protocol = PROTO_ATA;
2633		cpi->protocol_version = PROTO_VERSION_UNSPECIFIED;
2634		cpi->maxio = MAXPHYS;
2635		/* ATI SB600 can't handle 256 sectors with FPDMA (NCQ). */
2636		if (pci_get_devid(parent) == 0x43801002)
2637			cpi->maxio = min(cpi->maxio, 128 * 512);
2638		cpi->hba_vendor = pci_get_vendor(parent);
2639		cpi->hba_device = pci_get_device(parent);
2640		cpi->hba_subvendor = pci_get_subvendor(parent);
2641		cpi->hba_subdevice = pci_get_subdevice(parent);
2642		cpi->ccb_h.status = CAM_REQ_CMP;
2643		break;
2644	}
2645	default:
2646		ccb->ccb_h.status = CAM_REQ_INVALID;
2647		break;
2648	}
2649	xpt_done(ccb);
2650}
2651
2652static void
2653ahcipoll(struct cam_sim *sim)
2654{
2655	struct ahci_channel *ch = (struct ahci_channel *)cam_sim_softc(sim);
2656
2657	ahci_ch_intr(ch->dev);
2658}
2659