• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *  libahci.c - Common AHCI SATA low-level routines
4  *
5  *  Maintained by:  Tejun Heo <tj@kernel.org>
6  *    		    Please ALWAYS copy linux-ide@vger.kernel.org
7  *		    on emails.
8  *
9  *  Copyright 2004-2005 Red Hat, Inc.
10  *
11  * libata documentation is available via 'make {ps|pdf}docs',
12  * as Documentation/driver-api/libata.rst
13  *
14  * AHCI hardware documentation:
15  * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
16  * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
17  */
18 
19 #include <linux/kernel.h>
20 #include <linux/gfp.h>
21 #include <linux/module.h>
22 #include <linux/nospec.h>
23 #include <linux/blkdev.h>
24 #include <linux/delay.h>
25 #include <linux/interrupt.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/device.h>
28 #include <scsi/scsi_host.h>
29 #include <scsi/scsi_cmnd.h>
30 #include <linux/libata.h>
31 #include <linux/pci.h>
32 #include "ahci.h"
33 #include "libata.h"
34 
35 static int ahci_skip_host_reset;
36 int ahci_ignore_sss;
37 EXPORT_SYMBOL_GPL(ahci_ignore_sss);
38 
39 module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
40 MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
41 
42 module_param_named(ignore_sss, ahci_ignore_sss, int, 0444);
43 MODULE_PARM_DESC(ignore_sss, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
44 
45 static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
46 			unsigned hints);
47 static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
48 static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
49 			      size_t size);
50 static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
51 					ssize_t size);
52 
53 
54 
55 static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
56 static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
57 static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
58 static int ahci_port_start(struct ata_port *ap);
59 static void ahci_port_stop(struct ata_port *ap);
60 static enum ata_completion_errors ahci_qc_prep(struct ata_queued_cmd *qc);
61 static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc);
62 static void ahci_freeze(struct ata_port *ap);
63 static void ahci_thaw(struct ata_port *ap);
64 static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep);
65 static void ahci_enable_fbs(struct ata_port *ap);
66 static void ahci_disable_fbs(struct ata_port *ap);
67 static void ahci_pmp_attach(struct ata_port *ap);
68 static void ahci_pmp_detach(struct ata_port *ap);
69 static int ahci_softreset(struct ata_link *link, unsigned int *class,
70 			  unsigned long deadline);
71 static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
72 			  unsigned long deadline);
73 static int ahci_hardreset(struct ata_link *link, unsigned int *class,
74 			  unsigned long deadline);
75 static void ahci_postreset(struct ata_link *link, unsigned int *class);
76 static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
77 static void ahci_dev_config(struct ata_device *dev);
78 #ifdef CONFIG_PM
79 static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
80 #endif
81 static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
82 static ssize_t ahci_activity_store(struct ata_device *dev,
83 				   enum sw_activity val);
84 static void ahci_init_sw_activity(struct ata_link *link);
85 
86 static ssize_t ahci_show_host_caps(struct device *dev,
87 				   struct device_attribute *attr, char *buf);
88 static ssize_t ahci_show_host_cap2(struct device *dev,
89 				   struct device_attribute *attr, char *buf);
90 static ssize_t ahci_show_host_version(struct device *dev,
91 				      struct device_attribute *attr, char *buf);
92 static ssize_t ahci_show_port_cmd(struct device *dev,
93 				  struct device_attribute *attr, char *buf);
94 static ssize_t ahci_read_em_buffer(struct device *dev,
95 				   struct device_attribute *attr, char *buf);
96 static ssize_t ahci_store_em_buffer(struct device *dev,
97 				    struct device_attribute *attr,
98 				    const char *buf, size_t size);
99 static ssize_t ahci_show_em_supported(struct device *dev,
100 				      struct device_attribute *attr, char *buf);
101 static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance);
102 
103 static DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
104 static DEVICE_ATTR(ahci_host_cap2, S_IRUGO, ahci_show_host_cap2, NULL);
105 static DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
106 static DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
107 static DEVICE_ATTR(em_buffer, S_IWUSR | S_IRUGO,
108 		   ahci_read_em_buffer, ahci_store_em_buffer);
109 static DEVICE_ATTR(em_message_supported, S_IRUGO, ahci_show_em_supported, NULL);
110 
111 struct device_attribute *ahci_shost_attrs[] = {
112 	&dev_attr_link_power_management_policy,
113 	&dev_attr_em_message_type,
114 	&dev_attr_em_message,
115 	&dev_attr_ahci_host_caps,
116 	&dev_attr_ahci_host_cap2,
117 	&dev_attr_ahci_host_version,
118 	&dev_attr_ahci_port_cmd,
119 	&dev_attr_em_buffer,
120 	&dev_attr_em_message_supported,
121 	NULL
122 };
123 EXPORT_SYMBOL_GPL(ahci_shost_attrs);
124 
125 struct device_attribute *ahci_sdev_attrs[] = {
126 	&dev_attr_sw_activity,
127 	&dev_attr_unload_heads,
128 	&dev_attr_ncq_prio_supported,
129 	&dev_attr_ncq_prio_enable,
130 	NULL
131 };
132 EXPORT_SYMBOL_GPL(ahci_sdev_attrs);
133 
134 struct ata_port_operations ahci_ops = {
135 	.inherits		= &sata_pmp_port_ops,
136 
137 	.qc_defer		= ahci_pmp_qc_defer,
138 	.qc_prep		= ahci_qc_prep,
139 	.qc_issue		= ahci_qc_issue,
140 	.qc_fill_rtf		= ahci_qc_fill_rtf,
141 
142 	.freeze			= ahci_freeze,
143 	.thaw			= ahci_thaw,
144 	.softreset		= ahci_softreset,
145 	.hardreset		= ahci_hardreset,
146 	.postreset		= ahci_postreset,
147 	.pmp_softreset		= ahci_softreset,
148 	.error_handler		= ahci_error_handler,
149 	.post_internal_cmd	= ahci_post_internal_cmd,
150 	.dev_config		= ahci_dev_config,
151 
152 	.scr_read		= ahci_scr_read,
153 	.scr_write		= ahci_scr_write,
154 	.pmp_attach		= ahci_pmp_attach,
155 	.pmp_detach		= ahci_pmp_detach,
156 
157 	.set_lpm		= ahci_set_lpm,
158 	.em_show		= ahci_led_show,
159 	.em_store		= ahci_led_store,
160 	.sw_activity_show	= ahci_activity_show,
161 	.sw_activity_store	= ahci_activity_store,
162 	.transmit_led_message	= ahci_transmit_led_message,
163 #ifdef CONFIG_PM
164 	.port_suspend		= ahci_port_suspend,
165 	.port_resume		= ahci_port_resume,
166 #endif
167 	.port_start		= ahci_port_start,
168 	.port_stop		= ahci_port_stop,
169 };
170 EXPORT_SYMBOL_GPL(ahci_ops);
171 
172 struct ata_port_operations ahci_pmp_retry_srst_ops = {
173 	.inherits		= &ahci_ops,
174 	.softreset		= ahci_pmp_retry_softreset,
175 };
176 EXPORT_SYMBOL_GPL(ahci_pmp_retry_srst_ops);
177 
178 static bool ahci_em_messages __read_mostly = true;
179 module_param(ahci_em_messages, bool, 0444);
180 /* add other LED protocol types when they become supported */
181 MODULE_PARM_DESC(ahci_em_messages,
182 	"AHCI Enclosure Management Message control (0 = off, 1 = on)");
183 
184 /* device sleep idle timeout in ms */
185 static int devslp_idle_timeout __read_mostly = 1000;
186 module_param(devslp_idle_timeout, int, 0644);
187 MODULE_PARM_DESC(devslp_idle_timeout, "device sleep idle timeout");
188 
ahci_enable_ahci(void __iomem * mmio)189 static void ahci_enable_ahci(void __iomem *mmio)
190 {
191 	int i;
192 	u32 tmp;
193 
194 	/* turn on AHCI_EN */
195 	tmp = readl(mmio + HOST_CTL);
196 	if (tmp & HOST_AHCI_EN)
197 		return;
198 
199 	/* Some controllers need AHCI_EN to be written multiple times.
200 	 * Try a few times before giving up.
201 	 */
202 	for (i = 0; i < 5; i++) {
203 		tmp |= HOST_AHCI_EN;
204 		writel(tmp, mmio + HOST_CTL);
205 		tmp = readl(mmio + HOST_CTL);	/* flush && sanity check */
206 		if (tmp & HOST_AHCI_EN)
207 			return;
208 		msleep(10);
209 	}
210 
211 	WARN_ON(1);
212 }
213 
214 /**
215  *	ahci_rpm_get_port - Make sure the port is powered on
216  *	@ap: Port to power on
217  *
218  *	Whenever there is need to access the AHCI host registers outside of
219  *	normal execution paths, call this function to make sure the host is
220  *	actually powered on.
221  */
ahci_rpm_get_port(struct ata_port * ap)222 static int ahci_rpm_get_port(struct ata_port *ap)
223 {
224 	return pm_runtime_get_sync(ap->dev);
225 }
226 
227 /**
228  *	ahci_rpm_put_port - Undoes ahci_rpm_get_port()
229  *	@ap: Port to power down
230  *
231  *	Undoes ahci_rpm_get_port() and possibly powers down the AHCI host
232  *	if it has no more active users.
233  */
ahci_rpm_put_port(struct ata_port * ap)234 static void ahci_rpm_put_port(struct ata_port *ap)
235 {
236 	pm_runtime_put(ap->dev);
237 }
238 
ahci_show_host_caps(struct device * dev,struct device_attribute * attr,char * buf)239 static ssize_t ahci_show_host_caps(struct device *dev,
240 				   struct device_attribute *attr, char *buf)
241 {
242 	struct Scsi_Host *shost = class_to_shost(dev);
243 	struct ata_port *ap = ata_shost_to_port(shost);
244 	struct ahci_host_priv *hpriv = ap->host->private_data;
245 
246 	return sprintf(buf, "%x\n", hpriv->cap);
247 }
248 
ahci_show_host_cap2(struct device * dev,struct device_attribute * attr,char * buf)249 static ssize_t ahci_show_host_cap2(struct device *dev,
250 				   struct device_attribute *attr, char *buf)
251 {
252 	struct Scsi_Host *shost = class_to_shost(dev);
253 	struct ata_port *ap = ata_shost_to_port(shost);
254 	struct ahci_host_priv *hpriv = ap->host->private_data;
255 
256 	return sprintf(buf, "%x\n", hpriv->cap2);
257 }
258 
ahci_show_host_version(struct device * dev,struct device_attribute * attr,char * buf)259 static ssize_t ahci_show_host_version(struct device *dev,
260 				   struct device_attribute *attr, char *buf)
261 {
262 	struct Scsi_Host *shost = class_to_shost(dev);
263 	struct ata_port *ap = ata_shost_to_port(shost);
264 	struct ahci_host_priv *hpriv = ap->host->private_data;
265 
266 	return sprintf(buf, "%x\n", hpriv->version);
267 }
268 
ahci_show_port_cmd(struct device * dev,struct device_attribute * attr,char * buf)269 static ssize_t ahci_show_port_cmd(struct device *dev,
270 				  struct device_attribute *attr, char *buf)
271 {
272 	struct Scsi_Host *shost = class_to_shost(dev);
273 	struct ata_port *ap = ata_shost_to_port(shost);
274 	void __iomem *port_mmio = ahci_port_base(ap);
275 	ssize_t ret;
276 
277 	ahci_rpm_get_port(ap);
278 	ret = sprintf(buf, "%x\n", readl(port_mmio + PORT_CMD));
279 	ahci_rpm_put_port(ap);
280 
281 	return ret;
282 }
283 
ahci_read_em_buffer(struct device * dev,struct device_attribute * attr,char * buf)284 static ssize_t ahci_read_em_buffer(struct device *dev,
285 				   struct device_attribute *attr, char *buf)
286 {
287 	struct Scsi_Host *shost = class_to_shost(dev);
288 	struct ata_port *ap = ata_shost_to_port(shost);
289 	struct ahci_host_priv *hpriv = ap->host->private_data;
290 	void __iomem *mmio = hpriv->mmio;
291 	void __iomem *em_mmio = mmio + hpriv->em_loc;
292 	u32 em_ctl, msg;
293 	unsigned long flags;
294 	size_t count;
295 	int i;
296 
297 	ahci_rpm_get_port(ap);
298 	spin_lock_irqsave(ap->lock, flags);
299 
300 	em_ctl = readl(mmio + HOST_EM_CTL);
301 	if (!(ap->flags & ATA_FLAG_EM) || em_ctl & EM_CTL_XMT ||
302 	    !(hpriv->em_msg_type & EM_MSG_TYPE_SGPIO)) {
303 		spin_unlock_irqrestore(ap->lock, flags);
304 		ahci_rpm_put_port(ap);
305 		return -EINVAL;
306 	}
307 
308 	if (!(em_ctl & EM_CTL_MR)) {
309 		spin_unlock_irqrestore(ap->lock, flags);
310 		ahci_rpm_put_port(ap);
311 		return -EAGAIN;
312 	}
313 
314 	if (!(em_ctl & EM_CTL_SMB))
315 		em_mmio += hpriv->em_buf_sz;
316 
317 	count = hpriv->em_buf_sz;
318 
319 	/* the count should not be larger than PAGE_SIZE */
320 	if (count > PAGE_SIZE) {
321 		if (printk_ratelimit())
322 			ata_port_warn(ap,
323 				      "EM read buffer size too large: "
324 				      "buffer size %u, page size %lu\n",
325 				      hpriv->em_buf_sz, PAGE_SIZE);
326 		count = PAGE_SIZE;
327 	}
328 
329 	for (i = 0; i < count; i += 4) {
330 		msg = readl(em_mmio + i);
331 		buf[i] = msg & 0xff;
332 		buf[i + 1] = (msg >> 8) & 0xff;
333 		buf[i + 2] = (msg >> 16) & 0xff;
334 		buf[i + 3] = (msg >> 24) & 0xff;
335 	}
336 
337 	spin_unlock_irqrestore(ap->lock, flags);
338 	ahci_rpm_put_port(ap);
339 
340 	return i;
341 }
342 
ahci_store_em_buffer(struct device * dev,struct device_attribute * attr,const char * buf,size_t size)343 static ssize_t ahci_store_em_buffer(struct device *dev,
344 				    struct device_attribute *attr,
345 				    const char *buf, size_t size)
346 {
347 	struct Scsi_Host *shost = class_to_shost(dev);
348 	struct ata_port *ap = ata_shost_to_port(shost);
349 	struct ahci_host_priv *hpriv = ap->host->private_data;
350 	void __iomem *mmio = hpriv->mmio;
351 	void __iomem *em_mmio = mmio + hpriv->em_loc;
352 	const unsigned char *msg_buf = buf;
353 	u32 em_ctl, msg;
354 	unsigned long flags;
355 	int i;
356 
357 	/* check size validity */
358 	if (!(ap->flags & ATA_FLAG_EM) ||
359 	    !(hpriv->em_msg_type & EM_MSG_TYPE_SGPIO) ||
360 	    size % 4 || size > hpriv->em_buf_sz)
361 		return -EINVAL;
362 
363 	ahci_rpm_get_port(ap);
364 	spin_lock_irqsave(ap->lock, flags);
365 
366 	em_ctl = readl(mmio + HOST_EM_CTL);
367 	if (em_ctl & EM_CTL_TM) {
368 		spin_unlock_irqrestore(ap->lock, flags);
369 		ahci_rpm_put_port(ap);
370 		return -EBUSY;
371 	}
372 
373 	for (i = 0; i < size; i += 4) {
374 		msg = msg_buf[i] | msg_buf[i + 1] << 8 |
375 		      msg_buf[i + 2] << 16 | msg_buf[i + 3] << 24;
376 		writel(msg, em_mmio + i);
377 	}
378 
379 	writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
380 
381 	spin_unlock_irqrestore(ap->lock, flags);
382 	ahci_rpm_put_port(ap);
383 
384 	return size;
385 }
386 
ahci_show_em_supported(struct device * dev,struct device_attribute * attr,char * buf)387 static ssize_t ahci_show_em_supported(struct device *dev,
388 				      struct device_attribute *attr, char *buf)
389 {
390 	struct Scsi_Host *shost = class_to_shost(dev);
391 	struct ata_port *ap = ata_shost_to_port(shost);
392 	struct ahci_host_priv *hpriv = ap->host->private_data;
393 	void __iomem *mmio = hpriv->mmio;
394 	u32 em_ctl;
395 
396 	ahci_rpm_get_port(ap);
397 	em_ctl = readl(mmio + HOST_EM_CTL);
398 	ahci_rpm_put_port(ap);
399 
400 	return sprintf(buf, "%s%s%s%s\n",
401 		       em_ctl & EM_CTL_LED ? "led " : "",
402 		       em_ctl & EM_CTL_SAFTE ? "saf-te " : "",
403 		       em_ctl & EM_CTL_SES ? "ses-2 " : "",
404 		       em_ctl & EM_CTL_SGPIO ? "sgpio " : "");
405 }
406 
407 /**
408  *	ahci_save_initial_config - Save and fixup initial config values
409  *	@dev: target AHCI device
410  *	@hpriv: host private area to store config values
411  *
412  *	Some registers containing configuration info might be setup by
413  *	BIOS and might be cleared on reset.  This function saves the
414  *	initial values of those registers into @hpriv such that they
415  *	can be restored after controller reset.
416  *
417  *	If inconsistent, config values are fixed up by this function.
418  *
419  *	If it is not set already this function sets hpriv->start_engine to
420  *	ahci_start_engine.
421  *
422  *	LOCKING:
423  *	None.
424  */
ahci_save_initial_config(struct device * dev,struct ahci_host_priv * hpriv)425 void ahci_save_initial_config(struct device *dev, struct ahci_host_priv *hpriv)
426 {
427 	void __iomem *mmio = hpriv->mmio;
428 	u32 cap, cap2, vers, port_map;
429 	int i;
430 
431 	/* make sure AHCI mode is enabled before accessing CAP */
432 	ahci_enable_ahci(mmio);
433 
434 	/* Values prefixed with saved_ are written back to host after
435 	 * reset.  Values without are used for driver operation.
436 	 */
437 	hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
438 	hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
439 
440 	/* CAP2 register is only defined for AHCI 1.2 and later */
441 	vers = readl(mmio + HOST_VERSION);
442 	if ((vers >> 16) > 1 ||
443 	   ((vers >> 16) == 1 && (vers & 0xFFFF) >= 0x200))
444 		hpriv->saved_cap2 = cap2 = readl(mmio + HOST_CAP2);
445 	else
446 		hpriv->saved_cap2 = cap2 = 0;
447 
448 	/* some chips have errata preventing 64bit use */
449 	if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
450 		dev_info(dev, "controller can't do 64bit DMA, forcing 32bit\n");
451 		cap &= ~HOST_CAP_64;
452 	}
453 
454 	if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
455 		dev_info(dev, "controller can't do NCQ, turning off CAP_NCQ\n");
456 		cap &= ~HOST_CAP_NCQ;
457 	}
458 
459 	if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
460 		dev_info(dev, "controller can do NCQ, turning on CAP_NCQ\n");
461 		cap |= HOST_CAP_NCQ;
462 	}
463 
464 	if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
465 		dev_info(dev, "controller can't do PMP, turning off CAP_PMP\n");
466 		cap &= ~HOST_CAP_PMP;
467 	}
468 
469 	if ((cap & HOST_CAP_SNTF) && (hpriv->flags & AHCI_HFLAG_NO_SNTF)) {
470 		dev_info(dev,
471 			 "controller can't do SNTF, turning off CAP_SNTF\n");
472 		cap &= ~HOST_CAP_SNTF;
473 	}
474 
475 	if ((cap2 & HOST_CAP2_SDS) && (hpriv->flags & AHCI_HFLAG_NO_DEVSLP)) {
476 		dev_info(dev,
477 			 "controller can't do DEVSLP, turning off\n");
478 		cap2 &= ~HOST_CAP2_SDS;
479 		cap2 &= ~HOST_CAP2_SADM;
480 	}
481 
482 	if (!(cap & HOST_CAP_FBS) && (hpriv->flags & AHCI_HFLAG_YES_FBS)) {
483 		dev_info(dev, "controller can do FBS, turning on CAP_FBS\n");
484 		cap |= HOST_CAP_FBS;
485 	}
486 
487 	if ((cap & HOST_CAP_FBS) && (hpriv->flags & AHCI_HFLAG_NO_FBS)) {
488 		dev_info(dev, "controller can't do FBS, turning off CAP_FBS\n");
489 		cap &= ~HOST_CAP_FBS;
490 	}
491 
492 	if (!(cap & HOST_CAP_ALPM) && (hpriv->flags & AHCI_HFLAG_YES_ALPM)) {
493 		dev_info(dev, "controller can do ALPM, turning on CAP_ALPM\n");
494 		cap |= HOST_CAP_ALPM;
495 	}
496 
497 	if ((cap & HOST_CAP_SXS) && (hpriv->flags & AHCI_HFLAG_NO_SXS)) {
498 		dev_info(dev, "controller does not support SXS, disabling CAP_SXS\n");
499 		cap &= ~HOST_CAP_SXS;
500 	}
501 
502 	if (hpriv->force_port_map && port_map != hpriv->force_port_map) {
503 		dev_info(dev, "forcing port_map 0x%x -> 0x%x\n",
504 			 port_map, hpriv->force_port_map);
505 		port_map = hpriv->force_port_map;
506 		hpriv->saved_port_map = port_map;
507 	}
508 
509 	if (hpriv->mask_port_map) {
510 		dev_warn(dev, "masking port_map 0x%x -> 0x%x\n",
511 			port_map,
512 			port_map & hpriv->mask_port_map);
513 		port_map &= hpriv->mask_port_map;
514 	}
515 
516 	/* cross check port_map and cap.n_ports */
517 	if (port_map) {
518 		int map_ports = 0;
519 
520 		for (i = 0; i < AHCI_MAX_PORTS; i++)
521 			if (port_map & (1 << i))
522 				map_ports++;
523 
524 		/* If PI has more ports than n_ports, whine, clear
525 		 * port_map and let it be generated from n_ports.
526 		 */
527 		if (map_ports > ahci_nr_ports(cap)) {
528 			dev_warn(dev,
529 				 "implemented port map (0x%x) contains more ports than nr_ports (%u), using nr_ports\n",
530 				 port_map, ahci_nr_ports(cap));
531 			port_map = 0;
532 		}
533 	}
534 
535 	/* fabricate port_map from cap.nr_ports for < AHCI 1.3 */
536 	if (!port_map && vers < 0x10300) {
537 		port_map = (1 << ahci_nr_ports(cap)) - 1;
538 		dev_warn(dev, "forcing PORTS_IMPL to 0x%x\n", port_map);
539 
540 		/* write the fixed up value to the PI register */
541 		hpriv->saved_port_map = port_map;
542 	}
543 
544 	/* record values to use during operation */
545 	hpriv->cap = cap;
546 	hpriv->cap2 = cap2;
547 	hpriv->version = readl(mmio + HOST_VERSION);
548 	hpriv->port_map = port_map;
549 
550 	if (!hpriv->start_engine)
551 		hpriv->start_engine = ahci_start_engine;
552 
553 	if (!hpriv->stop_engine)
554 		hpriv->stop_engine = ahci_stop_engine;
555 
556 	if (!hpriv->irq_handler)
557 		hpriv->irq_handler = ahci_single_level_irq_intr;
558 }
559 EXPORT_SYMBOL_GPL(ahci_save_initial_config);
560 
561 /**
562  *	ahci_restore_initial_config - Restore initial config
563  *	@host: target ATA host
564  *
565  *	Restore initial config stored by ahci_save_initial_config().
566  *
567  *	LOCKING:
568  *	None.
569  */
ahci_restore_initial_config(struct ata_host * host)570 static void ahci_restore_initial_config(struct ata_host *host)
571 {
572 	struct ahci_host_priv *hpriv = host->private_data;
573 	void __iomem *mmio = hpriv->mmio;
574 
575 	writel(hpriv->saved_cap, mmio + HOST_CAP);
576 	if (hpriv->saved_cap2)
577 		writel(hpriv->saved_cap2, mmio + HOST_CAP2);
578 	writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
579 	(void) readl(mmio + HOST_PORTS_IMPL);	/* flush */
580 }
581 
ahci_scr_offset(struct ata_port * ap,unsigned int sc_reg)582 static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
583 {
584 	static const int offset[] = {
585 		[SCR_STATUS]		= PORT_SCR_STAT,
586 		[SCR_CONTROL]		= PORT_SCR_CTL,
587 		[SCR_ERROR]		= PORT_SCR_ERR,
588 		[SCR_ACTIVE]		= PORT_SCR_ACT,
589 		[SCR_NOTIFICATION]	= PORT_SCR_NTF,
590 	};
591 	struct ahci_host_priv *hpriv = ap->host->private_data;
592 
593 	if (sc_reg < ARRAY_SIZE(offset) &&
594 	    (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
595 		return offset[sc_reg];
596 	return 0;
597 }
598 
ahci_scr_read(struct ata_link * link,unsigned int sc_reg,u32 * val)599 static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
600 {
601 	void __iomem *port_mmio = ahci_port_base(link->ap);
602 	int offset = ahci_scr_offset(link->ap, sc_reg);
603 
604 	if (offset) {
605 		*val = readl(port_mmio + offset);
606 		return 0;
607 	}
608 	return -EINVAL;
609 }
610 
ahci_scr_write(struct ata_link * link,unsigned int sc_reg,u32 val)611 static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
612 {
613 	void __iomem *port_mmio = ahci_port_base(link->ap);
614 	int offset = ahci_scr_offset(link->ap, sc_reg);
615 
616 	if (offset) {
617 		writel(val, port_mmio + offset);
618 		return 0;
619 	}
620 	return -EINVAL;
621 }
622 
ahci_start_engine(struct ata_port * ap)623 void ahci_start_engine(struct ata_port *ap)
624 {
625 	void __iomem *port_mmio = ahci_port_base(ap);
626 	u32 tmp;
627 
628 	/* start DMA */
629 	tmp = readl(port_mmio + PORT_CMD);
630 	tmp |= PORT_CMD_START;
631 	writel(tmp, port_mmio + PORT_CMD);
632 	readl(port_mmio + PORT_CMD); /* flush */
633 }
634 EXPORT_SYMBOL_GPL(ahci_start_engine);
635 
ahci_stop_engine(struct ata_port * ap)636 int ahci_stop_engine(struct ata_port *ap)
637 {
638 	void __iomem *port_mmio = ahci_port_base(ap);
639 	struct ahci_host_priv *hpriv = ap->host->private_data;
640 	u32 tmp;
641 
642 	/*
643 	 * On some controllers, stopping a port's DMA engine while the port
644 	 * is in ALPM state (partial or slumber) results in failures on
645 	 * subsequent DMA engine starts.  For those controllers, put the
646 	 * port back in active state before stopping its DMA engine.
647 	 */
648 	if ((hpriv->flags & AHCI_HFLAG_WAKE_BEFORE_STOP) &&
649 	    (ap->link.lpm_policy > ATA_LPM_MAX_POWER) &&
650 	    ahci_set_lpm(&ap->link, ATA_LPM_MAX_POWER, ATA_LPM_WAKE_ONLY)) {
651 		dev_err(ap->host->dev, "Failed to wake up port before engine stop\n");
652 		return -EIO;
653 	}
654 
655 	tmp = readl(port_mmio + PORT_CMD);
656 
657 	/* check if the HBA is idle */
658 	if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
659 		return 0;
660 
661 	/*
662 	 * Don't try to issue commands but return with ENODEV if the
663 	 * AHCI controller not available anymore (e.g. due to PCIe hot
664 	 * unplugging). Otherwise a 500ms delay for each port is added.
665 	 */
666 	if (tmp == 0xffffffff) {
667 		dev_err(ap->host->dev, "AHCI controller unavailable!\n");
668 		return -ENODEV;
669 	}
670 
671 	/* setting HBA to idle */
672 	tmp &= ~PORT_CMD_START;
673 	writel(tmp, port_mmio + PORT_CMD);
674 
675 	/* wait for engine to stop. This could be as long as 500 msec */
676 	tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
677 				PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
678 	if (tmp & PORT_CMD_LIST_ON)
679 		return -EIO;
680 
681 	return 0;
682 }
683 EXPORT_SYMBOL_GPL(ahci_stop_engine);
684 
ahci_start_fis_rx(struct ata_port * ap)685 void ahci_start_fis_rx(struct ata_port *ap)
686 {
687 	void __iomem *port_mmio = ahci_port_base(ap);
688 	struct ahci_host_priv *hpriv = ap->host->private_data;
689 	struct ahci_port_priv *pp = ap->private_data;
690 	u32 tmp;
691 
692 	/* set FIS registers */
693 	if (hpriv->cap & HOST_CAP_64)
694 		writel((pp->cmd_slot_dma >> 16) >> 16,
695 		       port_mmio + PORT_LST_ADDR_HI);
696 	writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
697 
698 	if (hpriv->cap & HOST_CAP_64)
699 		writel((pp->rx_fis_dma >> 16) >> 16,
700 		       port_mmio + PORT_FIS_ADDR_HI);
701 	writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
702 
703 	/* enable FIS reception */
704 	tmp = readl(port_mmio + PORT_CMD);
705 	tmp |= PORT_CMD_FIS_RX;
706 	writel(tmp, port_mmio + PORT_CMD);
707 
708 	/* flush */
709 	readl(port_mmio + PORT_CMD);
710 }
711 EXPORT_SYMBOL_GPL(ahci_start_fis_rx);
712 
ahci_stop_fis_rx(struct ata_port * ap)713 static int ahci_stop_fis_rx(struct ata_port *ap)
714 {
715 	void __iomem *port_mmio = ahci_port_base(ap);
716 	u32 tmp;
717 
718 	/* disable FIS reception */
719 	tmp = readl(port_mmio + PORT_CMD);
720 	tmp &= ~PORT_CMD_FIS_RX;
721 	writel(tmp, port_mmio + PORT_CMD);
722 
723 	/* wait for completion, spec says 500ms, give it 1000 */
724 	tmp = ata_wait_register(ap, port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
725 				PORT_CMD_FIS_ON, 10, 1000);
726 	if (tmp & PORT_CMD_FIS_ON)
727 		return -EBUSY;
728 
729 	return 0;
730 }
731 
ahci_power_up(struct ata_port * ap)732 static void ahci_power_up(struct ata_port *ap)
733 {
734 	struct ahci_host_priv *hpriv = ap->host->private_data;
735 	void __iomem *port_mmio = ahci_port_base(ap);
736 	u32 cmd;
737 
738 	cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
739 
740 	/* spin up device */
741 	if (hpriv->cap & HOST_CAP_SSS) {
742 		cmd |= PORT_CMD_SPIN_UP;
743 		writel(cmd, port_mmio + PORT_CMD);
744 	}
745 
746 	/* wake up link */
747 	writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
748 }
749 
ahci_set_lpm(struct ata_link * link,enum ata_lpm_policy policy,unsigned int hints)750 static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
751 			unsigned int hints)
752 {
753 	struct ata_port *ap = link->ap;
754 	struct ahci_host_priv *hpriv = ap->host->private_data;
755 	struct ahci_port_priv *pp = ap->private_data;
756 	void __iomem *port_mmio = ahci_port_base(ap);
757 
758 	if (policy != ATA_LPM_MAX_POWER) {
759 		/* wakeup flag only applies to the max power policy */
760 		hints &= ~ATA_LPM_WAKE_ONLY;
761 
762 		/*
763 		 * Disable interrupts on Phy Ready. This keeps us from
764 		 * getting woken up due to spurious phy ready
765 		 * interrupts.
766 		 */
767 		pp->intr_mask &= ~PORT_IRQ_PHYRDY;
768 		writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
769 
770 		sata_link_scr_lpm(link, policy, false);
771 	}
772 
773 	if (hpriv->cap & HOST_CAP_ALPM) {
774 		u32 cmd = readl(port_mmio + PORT_CMD);
775 
776 		if (policy == ATA_LPM_MAX_POWER || !(hints & ATA_LPM_HIPM)) {
777 			if (!(hints & ATA_LPM_WAKE_ONLY))
778 				cmd &= ~(PORT_CMD_ASP | PORT_CMD_ALPE);
779 			cmd |= PORT_CMD_ICC_ACTIVE;
780 
781 			writel(cmd, port_mmio + PORT_CMD);
782 			readl(port_mmio + PORT_CMD);
783 
784 			/* wait 10ms to be sure we've come out of LPM state */
785 			ata_msleep(ap, 10);
786 
787 			if (hints & ATA_LPM_WAKE_ONLY)
788 				return 0;
789 		} else {
790 			cmd |= PORT_CMD_ALPE;
791 			if (policy == ATA_LPM_MIN_POWER)
792 				cmd |= PORT_CMD_ASP;
793 			else if (policy == ATA_LPM_MIN_POWER_WITH_PARTIAL)
794 				cmd &= ~PORT_CMD_ASP;
795 
796 			/* write out new cmd value */
797 			writel(cmd, port_mmio + PORT_CMD);
798 		}
799 	}
800 
801 	/* set aggressive device sleep */
802 	if ((hpriv->cap2 & HOST_CAP2_SDS) &&
803 	    (hpriv->cap2 & HOST_CAP2_SADM) &&
804 	    (link->device->flags & ATA_DFLAG_DEVSLP)) {
805 		if (policy == ATA_LPM_MIN_POWER ||
806 		    policy == ATA_LPM_MIN_POWER_WITH_PARTIAL)
807 			ahci_set_aggressive_devslp(ap, true);
808 		else
809 			ahci_set_aggressive_devslp(ap, false);
810 	}
811 
812 	if (policy == ATA_LPM_MAX_POWER) {
813 		sata_link_scr_lpm(link, policy, false);
814 
815 		/* turn PHYRDY IRQ back on */
816 		pp->intr_mask |= PORT_IRQ_PHYRDY;
817 		writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
818 	}
819 
820 	return 0;
821 }
822 
823 #ifdef CONFIG_PM
ahci_power_down(struct ata_port * ap)824 static void ahci_power_down(struct ata_port *ap)
825 {
826 	struct ahci_host_priv *hpriv = ap->host->private_data;
827 	void __iomem *port_mmio = ahci_port_base(ap);
828 	u32 cmd, scontrol;
829 
830 	if (!(hpriv->cap & HOST_CAP_SSS))
831 		return;
832 
833 	/* put device into listen mode, first set PxSCTL.DET to 0 */
834 	scontrol = readl(port_mmio + PORT_SCR_CTL);
835 	scontrol &= ~0xf;
836 	writel(scontrol, port_mmio + PORT_SCR_CTL);
837 
838 	/* then set PxCMD.SUD to 0 */
839 	cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
840 	cmd &= ~PORT_CMD_SPIN_UP;
841 	writel(cmd, port_mmio + PORT_CMD);
842 }
843 #endif
844 
ahci_start_port(struct ata_port * ap)845 static void ahci_start_port(struct ata_port *ap)
846 {
847 	struct ahci_host_priv *hpriv = ap->host->private_data;
848 	struct ahci_port_priv *pp = ap->private_data;
849 	struct ata_link *link;
850 	struct ahci_em_priv *emp;
851 	ssize_t rc;
852 	int i;
853 
854 	/* enable FIS reception */
855 	ahci_start_fis_rx(ap);
856 
857 	/* enable DMA */
858 	if (!(hpriv->flags & AHCI_HFLAG_DELAY_ENGINE))
859 		hpriv->start_engine(ap);
860 
861 	/* turn on LEDs */
862 	if (ap->flags & ATA_FLAG_EM) {
863 		ata_for_each_link(link, ap, EDGE) {
864 			emp = &pp->em_priv[link->pmp];
865 
866 			/* EM Transmit bit maybe busy during init */
867 			for (i = 0; i < EM_MAX_RETRY; i++) {
868 				rc = ap->ops->transmit_led_message(ap,
869 							       emp->led_state,
870 							       4);
871 				/*
872 				 * If busy, give a breather but do not
873 				 * release EH ownership by using msleep()
874 				 * instead of ata_msleep().  EM Transmit
875 				 * bit is busy for the whole host and
876 				 * releasing ownership will cause other
877 				 * ports to fail the same way.
878 				 */
879 				if (rc == -EBUSY)
880 					msleep(1);
881 				else
882 					break;
883 			}
884 		}
885 	}
886 
887 	if (ap->flags & ATA_FLAG_SW_ACTIVITY)
888 		ata_for_each_link(link, ap, EDGE)
889 			ahci_init_sw_activity(link);
890 
891 }
892 
ahci_deinit_port(struct ata_port * ap,const char ** emsg)893 static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
894 {
895 	int rc;
896 	struct ahci_host_priv *hpriv = ap->host->private_data;
897 
898 	/* disable DMA */
899 	rc = hpriv->stop_engine(ap);
900 	if (rc) {
901 		*emsg = "failed to stop engine";
902 		return rc;
903 	}
904 
905 	/* disable FIS reception */
906 	rc = ahci_stop_fis_rx(ap);
907 	if (rc) {
908 		*emsg = "failed stop FIS RX";
909 		return rc;
910 	}
911 
912 	return 0;
913 }
914 
ahci_reset_controller(struct ata_host * host)915 int ahci_reset_controller(struct ata_host *host)
916 {
917 	struct ahci_host_priv *hpriv = host->private_data;
918 	void __iomem *mmio = hpriv->mmio;
919 	u32 tmp;
920 
921 	/* we must be in AHCI mode, before using anything
922 	 * AHCI-specific, such as HOST_RESET.
923 	 */
924 	ahci_enable_ahci(mmio);
925 
926 	/* global controller reset */
927 	if (!ahci_skip_host_reset) {
928 		tmp = readl(mmio + HOST_CTL);
929 		if ((tmp & HOST_RESET) == 0) {
930 			writel(tmp | HOST_RESET, mmio + HOST_CTL);
931 			readl(mmio + HOST_CTL); /* flush */
932 		}
933 
934 		/*
935 		 * to perform host reset, OS should set HOST_RESET
936 		 * and poll until this bit is read to be "0".
937 		 * reset must complete within 1 second, or
938 		 * the hardware should be considered fried.
939 		 */
940 		tmp = ata_wait_register(NULL, mmio + HOST_CTL, HOST_RESET,
941 					HOST_RESET, 10, 1000);
942 
943 		if (tmp & HOST_RESET) {
944 			dev_err(host->dev, "controller reset failed (0x%x)\n",
945 				tmp);
946 			return -EIO;
947 		}
948 
949 		/* turn on AHCI mode */
950 		ahci_enable_ahci(mmio);
951 
952 		/* Some registers might be cleared on reset.  Restore
953 		 * initial values.
954 		 */
955 		if (!(hpriv->flags & AHCI_HFLAG_NO_WRITE_TO_RO))
956 			ahci_restore_initial_config(host);
957 	} else
958 		dev_info(host->dev, "skipping global host reset\n");
959 
960 	return 0;
961 }
962 EXPORT_SYMBOL_GPL(ahci_reset_controller);
963 
ahci_sw_activity(struct ata_link * link)964 static void ahci_sw_activity(struct ata_link *link)
965 {
966 	struct ata_port *ap = link->ap;
967 	struct ahci_port_priv *pp = ap->private_data;
968 	struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
969 
970 	if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
971 		return;
972 
973 	emp->activity++;
974 	if (!timer_pending(&emp->timer))
975 		mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
976 }
977 
ahci_sw_activity_blink(struct timer_list * t)978 static void ahci_sw_activity_blink(struct timer_list *t)
979 {
980 	struct ahci_em_priv *emp = from_timer(emp, t, timer);
981 	struct ata_link *link = emp->link;
982 	struct ata_port *ap = link->ap;
983 
984 	unsigned long led_message = emp->led_state;
985 	u32 activity_led_state;
986 	unsigned long flags;
987 
988 	led_message &= EM_MSG_LED_VALUE;
989 	led_message |= ap->port_no | (link->pmp << 8);
990 
991 	/* check to see if we've had activity.  If so,
992 	 * toggle state of LED and reset timer.  If not,
993 	 * turn LED to desired idle state.
994 	 */
995 	spin_lock_irqsave(ap->lock, flags);
996 	if (emp->saved_activity != emp->activity) {
997 		emp->saved_activity = emp->activity;
998 		/* get the current LED state */
999 		activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
1000 
1001 		if (activity_led_state)
1002 			activity_led_state = 0;
1003 		else
1004 			activity_led_state = 1;
1005 
1006 		/* clear old state */
1007 		led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
1008 
1009 		/* toggle state */
1010 		led_message |= (activity_led_state << 16);
1011 		mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1012 	} else {
1013 		/* switch to idle */
1014 		led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
1015 		if (emp->blink_policy == BLINK_OFF)
1016 			led_message |= (1 << 16);
1017 	}
1018 	spin_unlock_irqrestore(ap->lock, flags);
1019 	ap->ops->transmit_led_message(ap, led_message, 4);
1020 }
1021 
ahci_init_sw_activity(struct ata_link * link)1022 static void ahci_init_sw_activity(struct ata_link *link)
1023 {
1024 	struct ata_port *ap = link->ap;
1025 	struct ahci_port_priv *pp = ap->private_data;
1026 	struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1027 
1028 	/* init activity stats, setup timer */
1029 	emp->saved_activity = emp->activity = 0;
1030 	emp->link = link;
1031 	timer_setup(&emp->timer, ahci_sw_activity_blink, 0);
1032 
1033 	/* check our blink policy and set flag for link if it's enabled */
1034 	if (emp->blink_policy)
1035 		link->flags |= ATA_LFLAG_SW_ACTIVITY;
1036 }
1037 
ahci_reset_em(struct ata_host * host)1038 int ahci_reset_em(struct ata_host *host)
1039 {
1040 	struct ahci_host_priv *hpriv = host->private_data;
1041 	void __iomem *mmio = hpriv->mmio;
1042 	u32 em_ctl;
1043 
1044 	em_ctl = readl(mmio + HOST_EM_CTL);
1045 	if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1046 		return -EINVAL;
1047 
1048 	writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1049 	return 0;
1050 }
1051 EXPORT_SYMBOL_GPL(ahci_reset_em);
1052 
ahci_transmit_led_message(struct ata_port * ap,u32 state,ssize_t size)1053 static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1054 					ssize_t size)
1055 {
1056 	struct ahci_host_priv *hpriv = ap->host->private_data;
1057 	struct ahci_port_priv *pp = ap->private_data;
1058 	void __iomem *mmio = hpriv->mmio;
1059 	u32 em_ctl;
1060 	u32 message[] = {0, 0};
1061 	unsigned long flags;
1062 	int pmp;
1063 	struct ahci_em_priv *emp;
1064 
1065 	/* get the slot number from the message */
1066 	pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
1067 	if (pmp < EM_MAX_SLOTS)
1068 		emp = &pp->em_priv[pmp];
1069 	else
1070 		return -EINVAL;
1071 
1072 	ahci_rpm_get_port(ap);
1073 	spin_lock_irqsave(ap->lock, flags);
1074 
1075 	/*
1076 	 * if we are still busy transmitting a previous message,
1077 	 * do not allow
1078 	 */
1079 	em_ctl = readl(mmio + HOST_EM_CTL);
1080 	if (em_ctl & EM_CTL_TM) {
1081 		spin_unlock_irqrestore(ap->lock, flags);
1082 		ahci_rpm_put_port(ap);
1083 		return -EBUSY;
1084 	}
1085 
1086 	if (hpriv->em_msg_type & EM_MSG_TYPE_LED) {
1087 		/*
1088 		 * create message header - this is all zero except for
1089 		 * the message size, which is 4 bytes.
1090 		 */
1091 		message[0] |= (4 << 8);
1092 
1093 		/* ignore 0:4 of byte zero, fill in port info yourself */
1094 		message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
1095 
1096 		/* write message to EM_LOC */
1097 		writel(message[0], mmio + hpriv->em_loc);
1098 		writel(message[1], mmio + hpriv->em_loc+4);
1099 
1100 		/*
1101 		 * tell hardware to transmit the message
1102 		 */
1103 		writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1104 	}
1105 
1106 	/* save off new led state for port/slot */
1107 	emp->led_state = state;
1108 
1109 	spin_unlock_irqrestore(ap->lock, flags);
1110 	ahci_rpm_put_port(ap);
1111 
1112 	return size;
1113 }
1114 
ahci_led_show(struct ata_port * ap,char * buf)1115 static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1116 {
1117 	struct ahci_port_priv *pp = ap->private_data;
1118 	struct ata_link *link;
1119 	struct ahci_em_priv *emp;
1120 	int rc = 0;
1121 
1122 	ata_for_each_link(link, ap, EDGE) {
1123 		emp = &pp->em_priv[link->pmp];
1124 		rc += sprintf(buf, "%lx\n", emp->led_state);
1125 	}
1126 	return rc;
1127 }
1128 
ahci_led_store(struct ata_port * ap,const char * buf,size_t size)1129 static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1130 				size_t size)
1131 {
1132 	unsigned int state;
1133 	int pmp;
1134 	struct ahci_port_priv *pp = ap->private_data;
1135 	struct ahci_em_priv *emp;
1136 
1137 	if (kstrtouint(buf, 0, &state) < 0)
1138 		return -EINVAL;
1139 
1140 	/* get the slot number from the message */
1141 	pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
1142 	if (pmp < EM_MAX_SLOTS) {
1143 		pmp = array_index_nospec(pmp, EM_MAX_SLOTS);
1144 		emp = &pp->em_priv[pmp];
1145 	} else {
1146 		return -EINVAL;
1147 	}
1148 
1149 	/* mask off the activity bits if we are in sw_activity
1150 	 * mode, user should turn off sw_activity before setting
1151 	 * activity led through em_message
1152 	 */
1153 	if (emp->blink_policy)
1154 		state &= ~EM_MSG_LED_VALUE_ACTIVITY;
1155 
1156 	return ap->ops->transmit_led_message(ap, state, size);
1157 }
1158 
ahci_activity_store(struct ata_device * dev,enum sw_activity val)1159 static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1160 {
1161 	struct ata_link *link = dev->link;
1162 	struct ata_port *ap = link->ap;
1163 	struct ahci_port_priv *pp = ap->private_data;
1164 	struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1165 	u32 port_led_state = emp->led_state;
1166 
1167 	/* save the desired Activity LED behavior */
1168 	if (val == OFF) {
1169 		/* clear LFLAG */
1170 		link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1171 
1172 		/* set the LED to OFF */
1173 		port_led_state &= EM_MSG_LED_VALUE_OFF;
1174 		port_led_state |= (ap->port_no | (link->pmp << 8));
1175 		ap->ops->transmit_led_message(ap, port_led_state, 4);
1176 	} else {
1177 		link->flags |= ATA_LFLAG_SW_ACTIVITY;
1178 		if (val == BLINK_OFF) {
1179 			/* set LED to ON for idle */
1180 			port_led_state &= EM_MSG_LED_VALUE_OFF;
1181 			port_led_state |= (ap->port_no | (link->pmp << 8));
1182 			port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
1183 			ap->ops->transmit_led_message(ap, port_led_state, 4);
1184 		}
1185 	}
1186 	emp->blink_policy = val;
1187 	return 0;
1188 }
1189 
ahci_activity_show(struct ata_device * dev,char * buf)1190 static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1191 {
1192 	struct ata_link *link = dev->link;
1193 	struct ata_port *ap = link->ap;
1194 	struct ahci_port_priv *pp = ap->private_data;
1195 	struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1196 
1197 	/* display the saved value of activity behavior for this
1198 	 * disk.
1199 	 */
1200 	return sprintf(buf, "%d\n", emp->blink_policy);
1201 }
1202 
ahci_port_clear_pending_irq(struct ata_port * ap)1203 static void ahci_port_clear_pending_irq(struct ata_port *ap)
1204 {
1205 	struct ahci_host_priv *hpriv = ap->host->private_data;
1206 	void __iomem *port_mmio = ahci_port_base(ap);
1207 	u32 tmp;
1208 
1209 	/* clear SError */
1210 	tmp = readl(port_mmio + PORT_SCR_ERR);
1211 	dev_dbg(ap->host->dev, "PORT_SCR_ERR 0x%x\n", tmp);
1212 	writel(tmp, port_mmio + PORT_SCR_ERR);
1213 
1214 	/* clear port IRQ */
1215 	tmp = readl(port_mmio + PORT_IRQ_STAT);
1216 	dev_dbg(ap->host->dev, "PORT_IRQ_STAT 0x%x\n", tmp);
1217 	if (tmp)
1218 		writel(tmp, port_mmio + PORT_IRQ_STAT);
1219 
1220 	writel(1 << ap->port_no, hpriv->mmio + HOST_IRQ_STAT);
1221 }
1222 
ahci_port_init(struct device * dev,struct ata_port * ap,int port_no,void __iomem * mmio,void __iomem * port_mmio)1223 static void ahci_port_init(struct device *dev, struct ata_port *ap,
1224 			   int port_no, void __iomem *mmio,
1225 			   void __iomem *port_mmio)
1226 {
1227 	struct ahci_host_priv *hpriv = ap->host->private_data;
1228 	const char *emsg = NULL;
1229 	int rc;
1230 	u32 tmp;
1231 
1232 	/* make sure port is not active */
1233 	rc = ahci_deinit_port(ap, &emsg);
1234 	if (rc)
1235 		dev_warn(dev, "%s (%d)\n", emsg, rc);
1236 
1237 	ahci_port_clear_pending_irq(ap);
1238 
1239 	/* mark esata ports */
1240 	tmp = readl(port_mmio + PORT_CMD);
1241 	if ((tmp & PORT_CMD_ESP) && (hpriv->cap & HOST_CAP_SXS))
1242 		ap->pflags |= ATA_PFLAG_EXTERNAL;
1243 }
1244 
ahci_init_controller(struct ata_host * host)1245 void ahci_init_controller(struct ata_host *host)
1246 {
1247 	struct ahci_host_priv *hpriv = host->private_data;
1248 	void __iomem *mmio = hpriv->mmio;
1249 	int i;
1250 	void __iomem *port_mmio;
1251 	u32 tmp;
1252 
1253 	for (i = 0; i < host->n_ports; i++) {
1254 		struct ata_port *ap = host->ports[i];
1255 
1256 		port_mmio = ahci_port_base(ap);
1257 		if (ata_port_is_dummy(ap))
1258 			continue;
1259 
1260 		ahci_port_init(host->dev, ap, i, mmio, port_mmio);
1261 	}
1262 
1263 	tmp = readl(mmio + HOST_CTL);
1264 	dev_dbg(host->dev, "HOST_CTL 0x%x\n", tmp);
1265 	writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1266 	tmp = readl(mmio + HOST_CTL);
1267 	dev_dbg(host->dev, "HOST_CTL 0x%x\n", tmp);
1268 }
1269 EXPORT_SYMBOL_GPL(ahci_init_controller);
1270 
ahci_dev_config(struct ata_device * dev)1271 static void ahci_dev_config(struct ata_device *dev)
1272 {
1273 	struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1274 
1275 	if (hpriv->flags & AHCI_HFLAG_SECT255) {
1276 		dev->max_sectors = 255;
1277 		ata_dev_info(dev,
1278 			     "SB600 AHCI: limiting to 255 sectors per cmd\n");
1279 	}
1280 }
1281 
ahci_dev_classify(struct ata_port * ap)1282 unsigned int ahci_dev_classify(struct ata_port *ap)
1283 {
1284 	void __iomem *port_mmio = ahci_port_base(ap);
1285 	struct ata_taskfile tf;
1286 	u32 tmp;
1287 
1288 	tmp = readl(port_mmio + PORT_SIG);
1289 	tf.lbah		= (tmp >> 24)	& 0xff;
1290 	tf.lbam		= (tmp >> 16)	& 0xff;
1291 	tf.lbal		= (tmp >> 8)	& 0xff;
1292 	tf.nsect	= (tmp)		& 0xff;
1293 
1294 	return ata_dev_classify(&tf);
1295 }
1296 EXPORT_SYMBOL_GPL(ahci_dev_classify);
1297 
ahci_fill_cmd_slot(struct ahci_port_priv * pp,unsigned int tag,u32 opts)1298 void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1299 			u32 opts)
1300 {
1301 	dma_addr_t cmd_tbl_dma;
1302 
1303 	cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1304 
1305 	pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1306 	pp->cmd_slot[tag].status = 0;
1307 	pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1308 	pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
1309 }
1310 EXPORT_SYMBOL_GPL(ahci_fill_cmd_slot);
1311 
ahci_kick_engine(struct ata_port * ap)1312 int ahci_kick_engine(struct ata_port *ap)
1313 {
1314 	void __iomem *port_mmio = ahci_port_base(ap);
1315 	struct ahci_host_priv *hpriv = ap->host->private_data;
1316 	u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1317 	u32 tmp;
1318 	int busy, rc;
1319 
1320 	/* stop engine */
1321 	rc = hpriv->stop_engine(ap);
1322 	if (rc)
1323 		goto out_restart;
1324 
1325 	/* need to do CLO?
1326 	 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1327 	 */
1328 	busy = status & (ATA_BUSY | ATA_DRQ);
1329 	if (!busy && !sata_pmp_attached(ap)) {
1330 		rc = 0;
1331 		goto out_restart;
1332 	}
1333 
1334 	if (!(hpriv->cap & HOST_CAP_CLO)) {
1335 		rc = -EOPNOTSUPP;
1336 		goto out_restart;
1337 	}
1338 
1339 	/* perform CLO */
1340 	tmp = readl(port_mmio + PORT_CMD);
1341 	tmp |= PORT_CMD_CLO;
1342 	writel(tmp, port_mmio + PORT_CMD);
1343 
1344 	rc = 0;
1345 	tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
1346 				PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1347 	if (tmp & PORT_CMD_CLO)
1348 		rc = -EIO;
1349 
1350 	/* restart engine */
1351  out_restart:
1352 	hpriv->start_engine(ap);
1353 	return rc;
1354 }
1355 EXPORT_SYMBOL_GPL(ahci_kick_engine);
1356 
ahci_exec_polled_cmd(struct ata_port * ap,int pmp,struct ata_taskfile * tf,int is_cmd,u16 flags,unsigned long timeout_msec)1357 static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1358 				struct ata_taskfile *tf, int is_cmd, u16 flags,
1359 				unsigned long timeout_msec)
1360 {
1361 	const u32 cmd_fis_len = 5; /* five dwords */
1362 	struct ahci_port_priv *pp = ap->private_data;
1363 	void __iomem *port_mmio = ahci_port_base(ap);
1364 	u8 *fis = pp->cmd_tbl;
1365 	u32 tmp;
1366 
1367 	/* prep the command */
1368 	ata_tf_to_fis(tf, pmp, is_cmd, fis);
1369 	ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1370 
1371 	/* set port value for softreset of Port Multiplier */
1372 	if (pp->fbs_enabled && pp->fbs_last_dev != pmp) {
1373 		tmp = readl(port_mmio + PORT_FBS);
1374 		tmp &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
1375 		tmp |= pmp << PORT_FBS_DEV_OFFSET;
1376 		writel(tmp, port_mmio + PORT_FBS);
1377 		pp->fbs_last_dev = pmp;
1378 	}
1379 
1380 	/* issue & wait */
1381 	writel(1, port_mmio + PORT_CMD_ISSUE);
1382 
1383 	if (timeout_msec) {
1384 		tmp = ata_wait_register(ap, port_mmio + PORT_CMD_ISSUE,
1385 					0x1, 0x1, 1, timeout_msec);
1386 		if (tmp & 0x1) {
1387 			ahci_kick_engine(ap);
1388 			return -EBUSY;
1389 		}
1390 	} else
1391 		readl(port_mmio + PORT_CMD_ISSUE);	/* flush */
1392 
1393 	return 0;
1394 }
1395 
ahci_do_softreset(struct ata_link * link,unsigned int * class,int pmp,unsigned long deadline,int (* check_ready)(struct ata_link * link))1396 int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1397 		      int pmp, unsigned long deadline,
1398 		      int (*check_ready)(struct ata_link *link))
1399 {
1400 	struct ata_port *ap = link->ap;
1401 	struct ahci_host_priv *hpriv = ap->host->private_data;
1402 	struct ahci_port_priv *pp = ap->private_data;
1403 	const char *reason = NULL;
1404 	unsigned long now, msecs;
1405 	struct ata_taskfile tf;
1406 	bool fbs_disabled = false;
1407 	int rc;
1408 
1409 	DPRINTK("ENTER\n");
1410 
1411 	/* prepare for SRST (AHCI-1.1 10.4.1) */
1412 	rc = ahci_kick_engine(ap);
1413 	if (rc && rc != -EOPNOTSUPP)
1414 		ata_link_warn(link, "failed to reset engine (errno=%d)\n", rc);
1415 
1416 	/*
1417 	 * According to AHCI-1.2 9.3.9: if FBS is enable, software shall
1418 	 * clear PxFBS.EN to '0' prior to issuing software reset to devices
1419 	 * that is attached to port multiplier.
1420 	 */
1421 	if (!ata_is_host_link(link) && pp->fbs_enabled) {
1422 		ahci_disable_fbs(ap);
1423 		fbs_disabled = true;
1424 	}
1425 
1426 	ata_tf_init(link->device, &tf);
1427 
1428 	/* issue the first H2D Register FIS */
1429 	msecs = 0;
1430 	now = jiffies;
1431 	if (time_after(deadline, now))
1432 		msecs = jiffies_to_msecs(deadline - now);
1433 
1434 	tf.ctl |= ATA_SRST;
1435 	if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
1436 				 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
1437 		rc = -EIO;
1438 		reason = "1st FIS failed";
1439 		goto fail;
1440 	}
1441 
1442 	/* spec says at least 5us, but be generous and sleep for 1ms */
1443 	ata_msleep(ap, 1);
1444 
1445 	/* issue the second H2D Register FIS */
1446 	tf.ctl &= ~ATA_SRST;
1447 	ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
1448 
1449 	/* wait for link to become ready */
1450 	rc = ata_wait_after_reset(link, deadline, check_ready);
1451 	if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1452 		/*
1453 		 * Workaround for cases where link online status can't
1454 		 * be trusted.  Treat device readiness timeout as link
1455 		 * offline.
1456 		 */
1457 		ata_link_info(link, "device not ready, treating as offline\n");
1458 		*class = ATA_DEV_NONE;
1459 	} else if (rc) {
1460 		/* link occupied, -ENODEV too is an error */
1461 		reason = "device not ready";
1462 		goto fail;
1463 	} else
1464 		*class = ahci_dev_classify(ap);
1465 
1466 	/* re-enable FBS if disabled before */
1467 	if (fbs_disabled)
1468 		ahci_enable_fbs(ap);
1469 
1470 	DPRINTK("EXIT, class=%u\n", *class);
1471 	return 0;
1472 
1473  fail:
1474 	ata_link_err(link, "softreset failed (%s)\n", reason);
1475 	return rc;
1476 }
1477 
ahci_check_ready(struct ata_link * link)1478 int ahci_check_ready(struct ata_link *link)
1479 {
1480 	void __iomem *port_mmio = ahci_port_base(link->ap);
1481 	u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1482 
1483 	return ata_check_ready(status);
1484 }
1485 EXPORT_SYMBOL_GPL(ahci_check_ready);
1486 
ahci_softreset(struct ata_link * link,unsigned int * class,unsigned long deadline)1487 static int ahci_softreset(struct ata_link *link, unsigned int *class,
1488 			  unsigned long deadline)
1489 {
1490 	int pmp = sata_srst_pmp(link);
1491 
1492 	DPRINTK("ENTER\n");
1493 
1494 	return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1495 }
1496 EXPORT_SYMBOL_GPL(ahci_do_softreset);
1497 
ahci_bad_pmp_check_ready(struct ata_link * link)1498 static int ahci_bad_pmp_check_ready(struct ata_link *link)
1499 {
1500 	void __iomem *port_mmio = ahci_port_base(link->ap);
1501 	u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1502 	u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1503 
1504 	/*
1505 	 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1506 	 * which can save timeout delay.
1507 	 */
1508 	if (irq_status & PORT_IRQ_BAD_PMP)
1509 		return -EIO;
1510 
1511 	return ata_check_ready(status);
1512 }
1513 
ahci_pmp_retry_softreset(struct ata_link * link,unsigned int * class,unsigned long deadline)1514 static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
1515 				    unsigned long deadline)
1516 {
1517 	struct ata_port *ap = link->ap;
1518 	void __iomem *port_mmio = ahci_port_base(ap);
1519 	int pmp = sata_srst_pmp(link);
1520 	int rc;
1521 	u32 irq_sts;
1522 
1523 	DPRINTK("ENTER\n");
1524 
1525 	rc = ahci_do_softreset(link, class, pmp, deadline,
1526 			       ahci_bad_pmp_check_ready);
1527 
1528 	/*
1529 	 * Soft reset fails with IPMS set when PMP is enabled but
1530 	 * SATA HDD/ODD is connected to SATA port, do soft reset
1531 	 * again to port 0.
1532 	 */
1533 	if (rc == -EIO) {
1534 		irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1535 		if (irq_sts & PORT_IRQ_BAD_PMP) {
1536 			ata_link_warn(link,
1537 					"applying PMP SRST workaround "
1538 					"and retrying\n");
1539 			rc = ahci_do_softreset(link, class, 0, deadline,
1540 					       ahci_check_ready);
1541 		}
1542 	}
1543 
1544 	return rc;
1545 }
1546 
ahci_do_hardreset(struct ata_link * link,unsigned int * class,unsigned long deadline,bool * online)1547 int ahci_do_hardreset(struct ata_link *link, unsigned int *class,
1548 		      unsigned long deadline, bool *online)
1549 {
1550 	const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
1551 	struct ata_port *ap = link->ap;
1552 	struct ahci_port_priv *pp = ap->private_data;
1553 	struct ahci_host_priv *hpriv = ap->host->private_data;
1554 	u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1555 	struct ata_taskfile tf;
1556 	int rc;
1557 
1558 	DPRINTK("ENTER\n");
1559 
1560 	hpriv->stop_engine(ap);
1561 
1562 	/* clear D2H reception area to properly wait for D2H FIS */
1563 	ata_tf_init(link->device, &tf);
1564 	tf.status = ATA_BUSY;
1565 	ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1566 
1567 	ahci_port_clear_pending_irq(ap);
1568 
1569 	rc = sata_link_hardreset(link, timing, deadline, online,
1570 				 ahci_check_ready);
1571 
1572 	hpriv->start_engine(ap);
1573 
1574 	if (*online)
1575 		*class = ahci_dev_classify(ap);
1576 
1577 	DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1578 	return rc;
1579 }
1580 EXPORT_SYMBOL_GPL(ahci_do_hardreset);
1581 
ahci_hardreset(struct ata_link * link,unsigned int * class,unsigned long deadline)1582 static int ahci_hardreset(struct ata_link *link, unsigned int *class,
1583 			  unsigned long deadline)
1584 {
1585 	bool online;
1586 
1587 	return ahci_do_hardreset(link, class, deadline, &online);
1588 }
1589 
ahci_postreset(struct ata_link * link,unsigned int * class)1590 static void ahci_postreset(struct ata_link *link, unsigned int *class)
1591 {
1592 	struct ata_port *ap = link->ap;
1593 	void __iomem *port_mmio = ahci_port_base(ap);
1594 	u32 new_tmp, tmp;
1595 
1596 	ata_std_postreset(link, class);
1597 
1598 	/* Make sure port's ATAPI bit is set appropriately */
1599 	new_tmp = tmp = readl(port_mmio + PORT_CMD);
1600 	if (*class == ATA_DEV_ATAPI)
1601 		new_tmp |= PORT_CMD_ATAPI;
1602 	else
1603 		new_tmp &= ~PORT_CMD_ATAPI;
1604 	if (new_tmp != tmp) {
1605 		writel(new_tmp, port_mmio + PORT_CMD);
1606 		readl(port_mmio + PORT_CMD); /* flush */
1607 	}
1608 }
1609 
ahci_fill_sg(struct ata_queued_cmd * qc,void * cmd_tbl)1610 static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
1611 {
1612 	struct scatterlist *sg;
1613 	struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1614 	unsigned int si;
1615 
1616 	VPRINTK("ENTER\n");
1617 
1618 	/*
1619 	 * Next, the S/G list.
1620 	 */
1621 	for_each_sg(qc->sg, sg, qc->n_elem, si) {
1622 		dma_addr_t addr = sg_dma_address(sg);
1623 		u32 sg_len = sg_dma_len(sg);
1624 
1625 		ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1626 		ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1627 		ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
1628 	}
1629 
1630 	return si;
1631 }
1632 
ahci_pmp_qc_defer(struct ata_queued_cmd * qc)1633 static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
1634 {
1635 	struct ata_port *ap = qc->ap;
1636 	struct ahci_port_priv *pp = ap->private_data;
1637 
1638 	if (!sata_pmp_attached(ap) || pp->fbs_enabled)
1639 		return ata_std_qc_defer(qc);
1640 	else
1641 		return sata_pmp_qc_defer_cmd_switch(qc);
1642 }
1643 
ahci_qc_prep(struct ata_queued_cmd * qc)1644 static enum ata_completion_errors ahci_qc_prep(struct ata_queued_cmd *qc)
1645 {
1646 	struct ata_port *ap = qc->ap;
1647 	struct ahci_port_priv *pp = ap->private_data;
1648 	int is_atapi = ata_is_atapi(qc->tf.protocol);
1649 	void *cmd_tbl;
1650 	u32 opts;
1651 	const u32 cmd_fis_len = 5; /* five dwords */
1652 	unsigned int n_elem;
1653 
1654 	/*
1655 	 * Fill in command table information.  First, the header,
1656 	 * a SATA Register - Host to Device command FIS.
1657 	 */
1658 	cmd_tbl = pp->cmd_tbl + qc->hw_tag * AHCI_CMD_TBL_SZ;
1659 
1660 	ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
1661 	if (is_atapi) {
1662 		memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1663 		memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
1664 	}
1665 
1666 	n_elem = 0;
1667 	if (qc->flags & ATA_QCFLAG_DMAMAP)
1668 		n_elem = ahci_fill_sg(qc, cmd_tbl);
1669 
1670 	/*
1671 	 * Fill in command slot information.
1672 	 */
1673 	opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
1674 	if (qc->tf.flags & ATA_TFLAG_WRITE)
1675 		opts |= AHCI_CMD_WRITE;
1676 	if (is_atapi)
1677 		opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
1678 
1679 	ahci_fill_cmd_slot(pp, qc->hw_tag, opts);
1680 
1681 	return AC_ERR_OK;
1682 }
1683 
ahci_fbs_dec_intr(struct ata_port * ap)1684 static void ahci_fbs_dec_intr(struct ata_port *ap)
1685 {
1686 	struct ahci_port_priv *pp = ap->private_data;
1687 	void __iomem *port_mmio = ahci_port_base(ap);
1688 	u32 fbs = readl(port_mmio + PORT_FBS);
1689 	int retries = 3;
1690 
1691 	DPRINTK("ENTER\n");
1692 	BUG_ON(!pp->fbs_enabled);
1693 
1694 	/* time to wait for DEC is not specified by AHCI spec,
1695 	 * add a retry loop for safety.
1696 	 */
1697 	writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
1698 	fbs = readl(port_mmio + PORT_FBS);
1699 	while ((fbs & PORT_FBS_DEC) && retries--) {
1700 		udelay(1);
1701 		fbs = readl(port_mmio + PORT_FBS);
1702 	}
1703 
1704 	if (fbs & PORT_FBS_DEC)
1705 		dev_err(ap->host->dev, "failed to clear device error\n");
1706 }
1707 
ahci_error_intr(struct ata_port * ap,u32 irq_stat)1708 static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
1709 {
1710 	struct ahci_host_priv *hpriv = ap->host->private_data;
1711 	struct ahci_port_priv *pp = ap->private_data;
1712 	struct ata_eh_info *host_ehi = &ap->link.eh_info;
1713 	struct ata_link *link = NULL;
1714 	struct ata_queued_cmd *active_qc;
1715 	struct ata_eh_info *active_ehi;
1716 	bool fbs_need_dec = false;
1717 	u32 serror;
1718 
1719 	/* determine active link with error */
1720 	if (pp->fbs_enabled) {
1721 		void __iomem *port_mmio = ahci_port_base(ap);
1722 		u32 fbs = readl(port_mmio + PORT_FBS);
1723 		int pmp = fbs >> PORT_FBS_DWE_OFFSET;
1724 
1725 		if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links)) {
1726 			link = &ap->pmp_link[pmp];
1727 			fbs_need_dec = true;
1728 		}
1729 
1730 	} else
1731 		ata_for_each_link(link, ap, EDGE)
1732 			if (ata_link_active(link))
1733 				break;
1734 
1735 	if (!link)
1736 		link = &ap->link;
1737 
1738 	active_qc = ata_qc_from_tag(ap, link->active_tag);
1739 	active_ehi = &link->eh_info;
1740 
1741 	/* record irq stat */
1742 	ata_ehi_clear_desc(host_ehi);
1743 	ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
1744 
1745 	/* AHCI needs SError cleared; otherwise, it might lock up */
1746 	ahci_scr_read(&ap->link, SCR_ERROR, &serror);
1747 	ahci_scr_write(&ap->link, SCR_ERROR, serror);
1748 	host_ehi->serror |= serror;
1749 
1750 	/* some controllers set IRQ_IF_ERR on device errors, ignore it */
1751 	if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
1752 		irq_stat &= ~PORT_IRQ_IF_ERR;
1753 
1754 	if (irq_stat & PORT_IRQ_TF_ERR) {
1755 		/* If qc is active, charge it; otherwise, the active
1756 		 * link.  There's no active qc on NCQ errors.  It will
1757 		 * be determined by EH by reading log page 10h.
1758 		 */
1759 		if (active_qc)
1760 			active_qc->err_mask |= AC_ERR_DEV;
1761 		else
1762 			active_ehi->err_mask |= AC_ERR_DEV;
1763 
1764 		if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
1765 			host_ehi->serror &= ~SERR_INTERNAL;
1766 	}
1767 
1768 	if (irq_stat & PORT_IRQ_UNK_FIS) {
1769 		u32 *unk = pp->rx_fis + RX_FIS_UNK;
1770 
1771 		active_ehi->err_mask |= AC_ERR_HSM;
1772 		active_ehi->action |= ATA_EH_RESET;
1773 		ata_ehi_push_desc(active_ehi,
1774 				  "unknown FIS %08x %08x %08x %08x" ,
1775 				  unk[0], unk[1], unk[2], unk[3]);
1776 	}
1777 
1778 	if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
1779 		active_ehi->err_mask |= AC_ERR_HSM;
1780 		active_ehi->action |= ATA_EH_RESET;
1781 		ata_ehi_push_desc(active_ehi, "incorrect PMP");
1782 	}
1783 
1784 	if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1785 		host_ehi->err_mask |= AC_ERR_HOST_BUS;
1786 		host_ehi->action |= ATA_EH_RESET;
1787 		ata_ehi_push_desc(host_ehi, "host bus error");
1788 	}
1789 
1790 	if (irq_stat & PORT_IRQ_IF_ERR) {
1791 		if (fbs_need_dec)
1792 			active_ehi->err_mask |= AC_ERR_DEV;
1793 		else {
1794 			host_ehi->err_mask |= AC_ERR_ATA_BUS;
1795 			host_ehi->action |= ATA_EH_RESET;
1796 		}
1797 
1798 		ata_ehi_push_desc(host_ehi, "interface fatal error");
1799 	}
1800 
1801 	if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1802 		ata_ehi_hotplugged(host_ehi);
1803 		ata_ehi_push_desc(host_ehi, "%s",
1804 			irq_stat & PORT_IRQ_CONNECT ?
1805 			"connection status changed" : "PHY RDY changed");
1806 	}
1807 
1808 	/* okay, let's hand over to EH */
1809 
1810 	if (irq_stat & PORT_IRQ_FREEZE)
1811 		ata_port_freeze(ap);
1812 	else if (fbs_need_dec) {
1813 		ata_link_abort(link);
1814 		ahci_fbs_dec_intr(ap);
1815 	} else
1816 		ata_port_abort(ap);
1817 }
1818 
ahci_handle_port_interrupt(struct ata_port * ap,void __iomem * port_mmio,u32 status)1819 static void ahci_handle_port_interrupt(struct ata_port *ap,
1820 				       void __iomem *port_mmio, u32 status)
1821 {
1822 	struct ata_eh_info *ehi = &ap->link.eh_info;
1823 	struct ahci_port_priv *pp = ap->private_data;
1824 	struct ahci_host_priv *hpriv = ap->host->private_data;
1825 	int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
1826 	u32 qc_active = 0;
1827 	int rc;
1828 
1829 	/* ignore BAD_PMP while resetting */
1830 	if (unlikely(resetting))
1831 		status &= ~PORT_IRQ_BAD_PMP;
1832 
1833 	if (sata_lpm_ignore_phy_events(&ap->link)) {
1834 		status &= ~PORT_IRQ_PHYRDY;
1835 		ahci_scr_write(&ap->link, SCR_ERROR, SERR_PHYRDY_CHG);
1836 	}
1837 
1838 	if (unlikely(status & PORT_IRQ_ERROR)) {
1839 		ahci_error_intr(ap, status);
1840 		return;
1841 	}
1842 
1843 	if (status & PORT_IRQ_SDB_FIS) {
1844 		/* If SNotification is available, leave notification
1845 		 * handling to sata_async_notification().  If not,
1846 		 * emulate it by snooping SDB FIS RX area.
1847 		 *
1848 		 * Snooping FIS RX area is probably cheaper than
1849 		 * poking SNotification but some constrollers which
1850 		 * implement SNotification, ICH9 for example, don't
1851 		 * store AN SDB FIS into receive area.
1852 		 */
1853 		if (hpriv->cap & HOST_CAP_SNTF)
1854 			sata_async_notification(ap);
1855 		else {
1856 			/* If the 'N' bit in word 0 of the FIS is set,
1857 			 * we just received asynchronous notification.
1858 			 * Tell libata about it.
1859 			 *
1860 			 * Lack of SNotification should not appear in
1861 			 * ahci 1.2, so the workaround is unnecessary
1862 			 * when FBS is enabled.
1863 			 */
1864 			if (pp->fbs_enabled)
1865 				WARN_ON_ONCE(1);
1866 			else {
1867 				const __le32 *f = pp->rx_fis + RX_FIS_SDB;
1868 				u32 f0 = le32_to_cpu(f[0]);
1869 				if (f0 & (1 << 15))
1870 					sata_async_notification(ap);
1871 			}
1872 		}
1873 	}
1874 
1875 	/* pp->active_link is not reliable once FBS is enabled, both
1876 	 * PORT_SCR_ACT and PORT_CMD_ISSUE should be checked because
1877 	 * NCQ and non-NCQ commands may be in flight at the same time.
1878 	 */
1879 	if (pp->fbs_enabled) {
1880 		if (ap->qc_active) {
1881 			qc_active = readl(port_mmio + PORT_SCR_ACT);
1882 			qc_active |= readl(port_mmio + PORT_CMD_ISSUE);
1883 		}
1884 	} else {
1885 		/* pp->active_link is valid iff any command is in flight */
1886 		if (ap->qc_active && pp->active_link->sactive)
1887 			qc_active = readl(port_mmio + PORT_SCR_ACT);
1888 		else
1889 			qc_active = readl(port_mmio + PORT_CMD_ISSUE);
1890 	}
1891 
1892 
1893 	rc = ata_qc_complete_multiple(ap, qc_active);
1894 
1895 	/* while resetting, invalid completions are expected */
1896 	if (unlikely(rc < 0 && !resetting)) {
1897 		ehi->err_mask |= AC_ERR_HSM;
1898 		ehi->action |= ATA_EH_RESET;
1899 		ata_port_freeze(ap);
1900 	}
1901 }
1902 
ahci_port_intr(struct ata_port * ap)1903 static void ahci_port_intr(struct ata_port *ap)
1904 {
1905 	void __iomem *port_mmio = ahci_port_base(ap);
1906 	u32 status;
1907 
1908 	status = readl(port_mmio + PORT_IRQ_STAT);
1909 	writel(status, port_mmio + PORT_IRQ_STAT);
1910 
1911 	ahci_handle_port_interrupt(ap, port_mmio, status);
1912 }
1913 
ahci_multi_irqs_intr_hard(int irq,void * dev_instance)1914 static irqreturn_t ahci_multi_irqs_intr_hard(int irq, void *dev_instance)
1915 {
1916 	struct ata_port *ap = dev_instance;
1917 	void __iomem *port_mmio = ahci_port_base(ap);
1918 	u32 status;
1919 
1920 	status = readl(port_mmio + PORT_IRQ_STAT);
1921 	writel(status, port_mmio + PORT_IRQ_STAT);
1922 
1923 	spin_lock(ap->lock);
1924 	ahci_handle_port_interrupt(ap, port_mmio, status);
1925 	spin_unlock(ap->lock);
1926 
1927 	return IRQ_HANDLED;
1928 }
1929 
ahci_handle_port_intr(struct ata_host * host,u32 irq_masked)1930 u32 ahci_handle_port_intr(struct ata_host *host, u32 irq_masked)
1931 {
1932 	unsigned int i, handled = 0;
1933 
1934 	for (i = 0; i < host->n_ports; i++) {
1935 		struct ata_port *ap;
1936 
1937 		if (!(irq_masked & (1 << i)))
1938 			continue;
1939 
1940 		ap = host->ports[i];
1941 		if (ap) {
1942 			ahci_port_intr(ap);
1943 		} else {
1944 			if (ata_ratelimit())
1945 				dev_warn(host->dev,
1946 					 "interrupt on disabled port %u\n", i);
1947 		}
1948 
1949 		handled = 1;
1950 	}
1951 
1952 	return handled;
1953 }
1954 EXPORT_SYMBOL_GPL(ahci_handle_port_intr);
1955 
ahci_single_level_irq_intr(int irq,void * dev_instance)1956 static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance)
1957 {
1958 	struct ata_host *host = dev_instance;
1959 	struct ahci_host_priv *hpriv;
1960 	unsigned int rc = 0;
1961 	void __iomem *mmio;
1962 	u32 irq_stat, irq_masked;
1963 
1964 	hpriv = host->private_data;
1965 	mmio = hpriv->mmio;
1966 
1967 	/* sigh.  0xffffffff is a valid return from h/w */
1968 	irq_stat = readl(mmio + HOST_IRQ_STAT);
1969 	if (!irq_stat)
1970 		return IRQ_NONE;
1971 
1972 	irq_masked = irq_stat & hpriv->port_map;
1973 
1974 	spin_lock(&host->lock);
1975 
1976 	rc = ahci_handle_port_intr(host, irq_masked);
1977 
1978 	/* HOST_IRQ_STAT behaves as level triggered latch meaning that
1979 	 * it should be cleared after all the port events are cleared;
1980 	 * otherwise, it will raise a spurious interrupt after each
1981 	 * valid one.  Please read section 10.6.2 of ahci 1.1 for more
1982 	 * information.
1983 	 *
1984 	 * Also, use the unmasked value to clear interrupt as spurious
1985 	 * pending event on a dummy port might cause screaming IRQ.
1986 	 */
1987 	writel(irq_stat, mmio + HOST_IRQ_STAT);
1988 
1989 	spin_unlock(&host->lock);
1990 
1991 	return IRQ_RETVAL(rc);
1992 }
1993 
ahci_qc_issue(struct ata_queued_cmd * qc)1994 unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
1995 {
1996 	struct ata_port *ap = qc->ap;
1997 	void __iomem *port_mmio = ahci_port_base(ap);
1998 	struct ahci_port_priv *pp = ap->private_data;
1999 
2000 	/* Keep track of the currently active link.  It will be used
2001 	 * in completion path to determine whether NCQ phase is in
2002 	 * progress.
2003 	 */
2004 	pp->active_link = qc->dev->link;
2005 
2006 	if (ata_is_ncq(qc->tf.protocol))
2007 		writel(1 << qc->hw_tag, port_mmio + PORT_SCR_ACT);
2008 
2009 	if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
2010 		u32 fbs = readl(port_mmio + PORT_FBS);
2011 		fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
2012 		fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
2013 		writel(fbs, port_mmio + PORT_FBS);
2014 		pp->fbs_last_dev = qc->dev->link->pmp;
2015 	}
2016 
2017 	writel(1 << qc->hw_tag, port_mmio + PORT_CMD_ISSUE);
2018 
2019 	ahci_sw_activity(qc->dev->link);
2020 
2021 	return 0;
2022 }
2023 EXPORT_SYMBOL_GPL(ahci_qc_issue);
2024 
ahci_qc_fill_rtf(struct ata_queued_cmd * qc)2025 static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2026 {
2027 	struct ahci_port_priv *pp = qc->ap->private_data;
2028 	u8 *rx_fis = pp->rx_fis;
2029 
2030 	if (pp->fbs_enabled)
2031 		rx_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
2032 
2033 	/*
2034 	 * After a successful execution of an ATA PIO data-in command,
2035 	 * the device doesn't send D2H Reg FIS to update the TF and
2036 	 * the host should take TF and E_Status from the preceding PIO
2037 	 * Setup FIS.
2038 	 */
2039 	if (qc->tf.protocol == ATA_PROT_PIO && qc->dma_dir == DMA_FROM_DEVICE &&
2040 	    !(qc->flags & ATA_QCFLAG_FAILED)) {
2041 		ata_tf_from_fis(rx_fis + RX_FIS_PIO_SETUP, &qc->result_tf);
2042 		qc->result_tf.status = (rx_fis + RX_FIS_PIO_SETUP)[15];
2043 	} else
2044 		ata_tf_from_fis(rx_fis + RX_FIS_D2H_REG, &qc->result_tf);
2045 
2046 	return true;
2047 }
2048 
ahci_freeze(struct ata_port * ap)2049 static void ahci_freeze(struct ata_port *ap)
2050 {
2051 	void __iomem *port_mmio = ahci_port_base(ap);
2052 
2053 	/* turn IRQ off */
2054 	writel(0, port_mmio + PORT_IRQ_MASK);
2055 }
2056 
ahci_thaw(struct ata_port * ap)2057 static void ahci_thaw(struct ata_port *ap)
2058 {
2059 	struct ahci_host_priv *hpriv = ap->host->private_data;
2060 	void __iomem *mmio = hpriv->mmio;
2061 	void __iomem *port_mmio = ahci_port_base(ap);
2062 	u32 tmp;
2063 	struct ahci_port_priv *pp = ap->private_data;
2064 
2065 	/* clear IRQ */
2066 	tmp = readl(port_mmio + PORT_IRQ_STAT);
2067 	writel(tmp, port_mmio + PORT_IRQ_STAT);
2068 	writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
2069 
2070 	/* turn IRQ back on */
2071 	writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
2072 }
2073 
ahci_error_handler(struct ata_port * ap)2074 void ahci_error_handler(struct ata_port *ap)
2075 {
2076 	struct ahci_host_priv *hpriv = ap->host->private_data;
2077 
2078 	if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
2079 		/* restart engine */
2080 		hpriv->stop_engine(ap);
2081 		hpriv->start_engine(ap);
2082 	}
2083 
2084 	sata_pmp_error_handler(ap);
2085 
2086 	if (!ata_dev_enabled(ap->link.device))
2087 		hpriv->stop_engine(ap);
2088 }
2089 EXPORT_SYMBOL_GPL(ahci_error_handler);
2090 
ahci_post_internal_cmd(struct ata_queued_cmd * qc)2091 static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2092 {
2093 	struct ata_port *ap = qc->ap;
2094 
2095 	/* make DMA engine forget about the failed command */
2096 	if (qc->flags & ATA_QCFLAG_FAILED)
2097 		ahci_kick_engine(ap);
2098 }
2099 
ahci_set_aggressive_devslp(struct ata_port * ap,bool sleep)2100 static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep)
2101 {
2102 	struct ahci_host_priv *hpriv = ap->host->private_data;
2103 	void __iomem *port_mmio = ahci_port_base(ap);
2104 	struct ata_device *dev = ap->link.device;
2105 	u32 devslp, dm, dito, mdat, deto, dito_conf;
2106 	int rc;
2107 	unsigned int err_mask;
2108 
2109 	devslp = readl(port_mmio + PORT_DEVSLP);
2110 	if (!(devslp & PORT_DEVSLP_DSP)) {
2111 		dev_info(ap->host->dev, "port does not support device sleep\n");
2112 		return;
2113 	}
2114 
2115 	/* disable device sleep */
2116 	if (!sleep) {
2117 		if (devslp & PORT_DEVSLP_ADSE) {
2118 			writel(devslp & ~PORT_DEVSLP_ADSE,
2119 			       port_mmio + PORT_DEVSLP);
2120 			err_mask = ata_dev_set_feature(dev,
2121 						       SETFEATURES_SATA_DISABLE,
2122 						       SATA_DEVSLP);
2123 			if (err_mask && err_mask != AC_ERR_DEV)
2124 				ata_dev_warn(dev, "failed to disable DEVSLP\n");
2125 		}
2126 		return;
2127 	}
2128 
2129 	dm = (devslp & PORT_DEVSLP_DM_MASK) >> PORT_DEVSLP_DM_OFFSET;
2130 	dito = devslp_idle_timeout / (dm + 1);
2131 	if (dito > 0x3ff)
2132 		dito = 0x3ff;
2133 
2134 	dito_conf = (devslp >> PORT_DEVSLP_DITO_OFFSET) & 0x3FF;
2135 
2136 	/* device sleep was already enabled and same dito */
2137 	if ((devslp & PORT_DEVSLP_ADSE) && (dito_conf == dito))
2138 		return;
2139 
2140 	/* set DITO, MDAT, DETO and enable DevSlp, need to stop engine first */
2141 	rc = hpriv->stop_engine(ap);
2142 	if (rc)
2143 		return;
2144 
2145 	/* Use the nominal value 10 ms if the read MDAT is zero,
2146 	 * the nominal value of DETO is 20 ms.
2147 	 */
2148 	if (dev->devslp_timing[ATA_LOG_DEVSLP_VALID] &
2149 	    ATA_LOG_DEVSLP_VALID_MASK) {
2150 		mdat = dev->devslp_timing[ATA_LOG_DEVSLP_MDAT] &
2151 		       ATA_LOG_DEVSLP_MDAT_MASK;
2152 		if (!mdat)
2153 			mdat = 10;
2154 		deto = dev->devslp_timing[ATA_LOG_DEVSLP_DETO];
2155 		if (!deto)
2156 			deto = 20;
2157 	} else {
2158 		mdat = 10;
2159 		deto = 20;
2160 	}
2161 
2162 	/* Make dito, mdat, deto bits to 0s */
2163 	devslp &= ~GENMASK_ULL(24, 2);
2164 	devslp |= ((dito << PORT_DEVSLP_DITO_OFFSET) |
2165 		   (mdat << PORT_DEVSLP_MDAT_OFFSET) |
2166 		   (deto << PORT_DEVSLP_DETO_OFFSET) |
2167 		   PORT_DEVSLP_ADSE);
2168 	writel(devslp, port_mmio + PORT_DEVSLP);
2169 
2170 	hpriv->start_engine(ap);
2171 
2172 	/* enable device sleep feature for the drive */
2173 	err_mask = ata_dev_set_feature(dev,
2174 				       SETFEATURES_SATA_ENABLE,
2175 				       SATA_DEVSLP);
2176 	if (err_mask && err_mask != AC_ERR_DEV)
2177 		ata_dev_warn(dev, "failed to enable DEVSLP\n");
2178 }
2179 
ahci_enable_fbs(struct ata_port * ap)2180 static void ahci_enable_fbs(struct ata_port *ap)
2181 {
2182 	struct ahci_host_priv *hpriv = ap->host->private_data;
2183 	struct ahci_port_priv *pp = ap->private_data;
2184 	void __iomem *port_mmio = ahci_port_base(ap);
2185 	u32 fbs;
2186 	int rc;
2187 
2188 	if (!pp->fbs_supported)
2189 		return;
2190 
2191 	fbs = readl(port_mmio + PORT_FBS);
2192 	if (fbs & PORT_FBS_EN) {
2193 		pp->fbs_enabled = true;
2194 		pp->fbs_last_dev = -1; /* initialization */
2195 		return;
2196 	}
2197 
2198 	rc = hpriv->stop_engine(ap);
2199 	if (rc)
2200 		return;
2201 
2202 	writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2203 	fbs = readl(port_mmio + PORT_FBS);
2204 	if (fbs & PORT_FBS_EN) {
2205 		dev_info(ap->host->dev, "FBS is enabled\n");
2206 		pp->fbs_enabled = true;
2207 		pp->fbs_last_dev = -1; /* initialization */
2208 	} else
2209 		dev_err(ap->host->dev, "Failed to enable FBS\n");
2210 
2211 	hpriv->start_engine(ap);
2212 }
2213 
ahci_disable_fbs(struct ata_port * ap)2214 static void ahci_disable_fbs(struct ata_port *ap)
2215 {
2216 	struct ahci_host_priv *hpriv = ap->host->private_data;
2217 	struct ahci_port_priv *pp = ap->private_data;
2218 	void __iomem *port_mmio = ahci_port_base(ap);
2219 	u32 fbs;
2220 	int rc;
2221 
2222 	if (!pp->fbs_supported)
2223 		return;
2224 
2225 	fbs = readl(port_mmio + PORT_FBS);
2226 	if ((fbs & PORT_FBS_EN) == 0) {
2227 		pp->fbs_enabled = false;
2228 		return;
2229 	}
2230 
2231 	rc = hpriv->stop_engine(ap);
2232 	if (rc)
2233 		return;
2234 
2235 	writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2236 	fbs = readl(port_mmio + PORT_FBS);
2237 	if (fbs & PORT_FBS_EN)
2238 		dev_err(ap->host->dev, "Failed to disable FBS\n");
2239 	else {
2240 		dev_info(ap->host->dev, "FBS is disabled\n");
2241 		pp->fbs_enabled = false;
2242 	}
2243 
2244 	hpriv->start_engine(ap);
2245 }
2246 
ahci_pmp_attach(struct ata_port * ap)2247 static void ahci_pmp_attach(struct ata_port *ap)
2248 {
2249 	void __iomem *port_mmio = ahci_port_base(ap);
2250 	struct ahci_port_priv *pp = ap->private_data;
2251 	u32 cmd;
2252 
2253 	cmd = readl(port_mmio + PORT_CMD);
2254 	cmd |= PORT_CMD_PMP;
2255 	writel(cmd, port_mmio + PORT_CMD);
2256 
2257 	ahci_enable_fbs(ap);
2258 
2259 	pp->intr_mask |= PORT_IRQ_BAD_PMP;
2260 
2261 	/*
2262 	 * We must not change the port interrupt mask register if the
2263 	 * port is marked frozen, the value in pp->intr_mask will be
2264 	 * restored later when the port is thawed.
2265 	 *
2266 	 * Note that during initialization, the port is marked as
2267 	 * frozen since the irq handler is not yet registered.
2268 	 */
2269 	if (!(ap->pflags & ATA_PFLAG_FROZEN))
2270 		writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
2271 }
2272 
ahci_pmp_detach(struct ata_port * ap)2273 static void ahci_pmp_detach(struct ata_port *ap)
2274 {
2275 	void __iomem *port_mmio = ahci_port_base(ap);
2276 	struct ahci_port_priv *pp = ap->private_data;
2277 	u32 cmd;
2278 
2279 	ahci_disable_fbs(ap);
2280 
2281 	cmd = readl(port_mmio + PORT_CMD);
2282 	cmd &= ~PORT_CMD_PMP;
2283 	writel(cmd, port_mmio + PORT_CMD);
2284 
2285 	pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
2286 
2287 	/* see comment above in ahci_pmp_attach() */
2288 	if (!(ap->pflags & ATA_PFLAG_FROZEN))
2289 		writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
2290 }
2291 
ahci_port_resume(struct ata_port * ap)2292 int ahci_port_resume(struct ata_port *ap)
2293 {
2294 	ahci_rpm_get_port(ap);
2295 
2296 	ahci_power_up(ap);
2297 	ahci_start_port(ap);
2298 
2299 	if (sata_pmp_attached(ap))
2300 		ahci_pmp_attach(ap);
2301 	else
2302 		ahci_pmp_detach(ap);
2303 
2304 	return 0;
2305 }
2306 EXPORT_SYMBOL_GPL(ahci_port_resume);
2307 
2308 #ifdef CONFIG_PM
ahci_handle_s2idle(struct ata_port * ap)2309 static void ahci_handle_s2idle(struct ata_port *ap)
2310 {
2311 	void __iomem *port_mmio = ahci_port_base(ap);
2312 	u32 devslp;
2313 
2314 	if (pm_suspend_via_firmware())
2315 		return;
2316 	devslp = readl(port_mmio + PORT_DEVSLP);
2317 	if ((devslp & PORT_DEVSLP_ADSE))
2318 		ata_msleep(ap, devslp_idle_timeout);
2319 }
2320 
ahci_port_suspend(struct ata_port * ap,pm_message_t mesg)2321 static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2322 {
2323 	const char *emsg = NULL;
2324 	int rc;
2325 
2326 	rc = ahci_deinit_port(ap, &emsg);
2327 	if (rc == 0)
2328 		ahci_power_down(ap);
2329 	else {
2330 		ata_port_err(ap, "%s (%d)\n", emsg, rc);
2331 		ata_port_freeze(ap);
2332 	}
2333 
2334 	if (acpi_storage_d3(ap->host->dev))
2335 		ahci_handle_s2idle(ap);
2336 
2337 	ahci_rpm_put_port(ap);
2338 	return rc;
2339 }
2340 #endif
2341 
ahci_port_start(struct ata_port * ap)2342 static int ahci_port_start(struct ata_port *ap)
2343 {
2344 	struct ahci_host_priv *hpriv = ap->host->private_data;
2345 	struct device *dev = ap->host->dev;
2346 	struct ahci_port_priv *pp;
2347 	void *mem;
2348 	dma_addr_t mem_dma;
2349 	size_t dma_sz, rx_fis_sz;
2350 
2351 	pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
2352 	if (!pp)
2353 		return -ENOMEM;
2354 
2355 	if (ap->host->n_ports > 1) {
2356 		pp->irq_desc = devm_kzalloc(dev, 8, GFP_KERNEL);
2357 		if (!pp->irq_desc) {
2358 			devm_kfree(dev, pp);
2359 			return -ENOMEM;
2360 		}
2361 		snprintf(pp->irq_desc, 8,
2362 			 "%s%d", dev_driver_string(dev), ap->port_no);
2363 	}
2364 
2365 	/* check FBS capability */
2366 	if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2367 		void __iomem *port_mmio = ahci_port_base(ap);
2368 		u32 cmd = readl(port_mmio + PORT_CMD);
2369 		if (cmd & PORT_CMD_FBSCP)
2370 			pp->fbs_supported = true;
2371 		else if (hpriv->flags & AHCI_HFLAG_YES_FBS) {
2372 			dev_info(dev, "port %d can do FBS, forcing FBSCP\n",
2373 				 ap->port_no);
2374 			pp->fbs_supported = true;
2375 		} else
2376 			dev_warn(dev, "port %d is not capable of FBS\n",
2377 				 ap->port_no);
2378 	}
2379 
2380 	if (pp->fbs_supported) {
2381 		dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2382 		rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2383 	} else {
2384 		dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2385 		rx_fis_sz = AHCI_RX_FIS_SZ;
2386 	}
2387 
2388 	mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
2389 	if (!mem)
2390 		return -ENOMEM;
2391 
2392 	/*
2393 	 * First item in chunk of DMA memory: 32-slot command table,
2394 	 * 32 bytes each in size
2395 	 */
2396 	pp->cmd_slot = mem;
2397 	pp->cmd_slot_dma = mem_dma;
2398 
2399 	mem += AHCI_CMD_SLOT_SZ;
2400 	mem_dma += AHCI_CMD_SLOT_SZ;
2401 
2402 	/*
2403 	 * Second item: Received-FIS area
2404 	 */
2405 	pp->rx_fis = mem;
2406 	pp->rx_fis_dma = mem_dma;
2407 
2408 	mem += rx_fis_sz;
2409 	mem_dma += rx_fis_sz;
2410 
2411 	/*
2412 	 * Third item: data area for storing a single command
2413 	 * and its scatter-gather table
2414 	 */
2415 	pp->cmd_tbl = mem;
2416 	pp->cmd_tbl_dma = mem_dma;
2417 
2418 	/*
2419 	 * Save off initial list of interrupts to be enabled.
2420 	 * This could be changed later
2421 	 */
2422 	pp->intr_mask = DEF_PORT_IRQ;
2423 
2424 	/*
2425 	 * Switch to per-port locking in case each port has its own MSI vector.
2426 	 */
2427 	if (hpriv->flags & AHCI_HFLAG_MULTI_MSI) {
2428 		spin_lock_init(&pp->lock);
2429 		ap->lock = &pp->lock;
2430 	}
2431 
2432 	ap->private_data = pp;
2433 
2434 	/* engage engines, captain */
2435 	return ahci_port_resume(ap);
2436 }
2437 
ahci_port_stop(struct ata_port * ap)2438 static void ahci_port_stop(struct ata_port *ap)
2439 {
2440 	const char *emsg = NULL;
2441 	struct ahci_host_priv *hpriv = ap->host->private_data;
2442 	void __iomem *host_mmio = hpriv->mmio;
2443 	int rc;
2444 
2445 	/* de-initialize port */
2446 	rc = ahci_deinit_port(ap, &emsg);
2447 	if (rc)
2448 		ata_port_warn(ap, "%s (%d)\n", emsg, rc);
2449 
2450 	/*
2451 	 * Clear GHC.IS to prevent stuck INTx after disabling MSI and
2452 	 * re-enabling INTx.
2453 	 */
2454 	writel(1 << ap->port_no, host_mmio + HOST_IRQ_STAT);
2455 
2456 	ahci_rpm_put_port(ap);
2457 }
2458 
ahci_print_info(struct ata_host * host,const char * scc_s)2459 void ahci_print_info(struct ata_host *host, const char *scc_s)
2460 {
2461 	struct ahci_host_priv *hpriv = host->private_data;
2462 	u32 vers, cap, cap2, impl, speed;
2463 	const char *speed_s;
2464 
2465 	vers = hpriv->version;
2466 	cap = hpriv->cap;
2467 	cap2 = hpriv->cap2;
2468 	impl = hpriv->port_map;
2469 
2470 	speed = (cap >> 20) & 0xf;
2471 	if (speed == 1)
2472 		speed_s = "1.5";
2473 	else if (speed == 2)
2474 		speed_s = "3";
2475 	else if (speed == 3)
2476 		speed_s = "6";
2477 	else
2478 		speed_s = "?";
2479 
2480 	dev_info(host->dev,
2481 		"AHCI %02x%02x.%02x%02x "
2482 		"%u slots %u ports %s Gbps 0x%x impl %s mode\n"
2483 		,
2484 
2485 		(vers >> 24) & 0xff,
2486 		(vers >> 16) & 0xff,
2487 		(vers >> 8) & 0xff,
2488 		vers & 0xff,
2489 
2490 		((cap >> 8) & 0x1f) + 1,
2491 		(cap & 0x1f) + 1,
2492 		speed_s,
2493 		impl,
2494 		scc_s);
2495 
2496 	dev_info(host->dev,
2497 		"flags: "
2498 		"%s%s%s%s%s%s%s"
2499 		"%s%s%s%s%s%s%s"
2500 		"%s%s%s%s%s%s%s"
2501 		"%s%s\n"
2502 		,
2503 
2504 		cap & HOST_CAP_64 ? "64bit " : "",
2505 		cap & HOST_CAP_NCQ ? "ncq " : "",
2506 		cap & HOST_CAP_SNTF ? "sntf " : "",
2507 		cap & HOST_CAP_MPS ? "ilck " : "",
2508 		cap & HOST_CAP_SSS ? "stag " : "",
2509 		cap & HOST_CAP_ALPM ? "pm " : "",
2510 		cap & HOST_CAP_LED ? "led " : "",
2511 		cap & HOST_CAP_CLO ? "clo " : "",
2512 		cap & HOST_CAP_ONLY ? "only " : "",
2513 		cap & HOST_CAP_PMP ? "pmp " : "",
2514 		cap & HOST_CAP_FBS ? "fbs " : "",
2515 		cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2516 		cap & HOST_CAP_SSC ? "slum " : "",
2517 		cap & HOST_CAP_PART ? "part " : "",
2518 		cap & HOST_CAP_CCC ? "ccc " : "",
2519 		cap & HOST_CAP_EMS ? "ems " : "",
2520 		cap & HOST_CAP_SXS ? "sxs " : "",
2521 		cap2 & HOST_CAP2_DESO ? "deso " : "",
2522 		cap2 & HOST_CAP2_SADM ? "sadm " : "",
2523 		cap2 & HOST_CAP2_SDS ? "sds " : "",
2524 		cap2 & HOST_CAP2_APST ? "apst " : "",
2525 		cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2526 		cap2 & HOST_CAP2_BOH ? "boh " : ""
2527 		);
2528 }
2529 EXPORT_SYMBOL_GPL(ahci_print_info);
2530 
ahci_set_em_messages(struct ahci_host_priv * hpriv,struct ata_port_info * pi)2531 void ahci_set_em_messages(struct ahci_host_priv *hpriv,
2532 			  struct ata_port_info *pi)
2533 {
2534 	u8 messages;
2535 	void __iomem *mmio = hpriv->mmio;
2536 	u32 em_loc = readl(mmio + HOST_EM_LOC);
2537 	u32 em_ctl = readl(mmio + HOST_EM_CTL);
2538 
2539 	if (!ahci_em_messages || !(hpriv->cap & HOST_CAP_EMS))
2540 		return;
2541 
2542 	messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
2543 
2544 	if (messages) {
2545 		/* store em_loc */
2546 		hpriv->em_loc = ((em_loc >> 16) * 4);
2547 		hpriv->em_buf_sz = ((em_loc & 0xff) * 4);
2548 		hpriv->em_msg_type = messages;
2549 		pi->flags |= ATA_FLAG_EM;
2550 		if (!(em_ctl & EM_CTL_ALHD))
2551 			pi->flags |= ATA_FLAG_SW_ACTIVITY;
2552 	}
2553 }
2554 EXPORT_SYMBOL_GPL(ahci_set_em_messages);
2555 
ahci_host_activate_multi_irqs(struct ata_host * host,struct scsi_host_template * sht)2556 static int ahci_host_activate_multi_irqs(struct ata_host *host,
2557 					 struct scsi_host_template *sht)
2558 {
2559 	struct ahci_host_priv *hpriv = host->private_data;
2560 	int i, rc;
2561 
2562 	rc = ata_host_start(host);
2563 	if (rc)
2564 		return rc;
2565 	/*
2566 	 * Requests IRQs according to AHCI-1.1 when multiple MSIs were
2567 	 * allocated. That is one MSI per port, starting from @irq.
2568 	 */
2569 	for (i = 0; i < host->n_ports; i++) {
2570 		struct ahci_port_priv *pp = host->ports[i]->private_data;
2571 		int irq = hpriv->get_irq_vector(host, i);
2572 
2573 		/* Do not receive interrupts sent by dummy ports */
2574 		if (!pp) {
2575 			disable_irq(irq);
2576 			continue;
2577 		}
2578 
2579 		rc = devm_request_irq(host->dev, irq, ahci_multi_irqs_intr_hard,
2580 				0, pp->irq_desc, host->ports[i]);
2581 
2582 		if (rc)
2583 			return rc;
2584 		ata_port_desc(host->ports[i], "irq %d", irq);
2585 	}
2586 
2587 	return ata_host_register(host, sht);
2588 }
2589 
2590 /**
2591  *	ahci_host_activate - start AHCI host, request IRQs and register it
2592  *	@host: target ATA host
2593  *	@sht: scsi_host_template to use when registering the host
2594  *
2595  *	LOCKING:
2596  *	Inherited from calling layer (may sleep).
2597  *
2598  *	RETURNS:
2599  *	0 on success, -errno otherwise.
2600  */
ahci_host_activate(struct ata_host * host,struct scsi_host_template * sht)2601 int ahci_host_activate(struct ata_host *host, struct scsi_host_template *sht)
2602 {
2603 	struct ahci_host_priv *hpriv = host->private_data;
2604 	int irq = hpriv->irq;
2605 	int rc;
2606 
2607 	if (hpriv->flags & AHCI_HFLAG_MULTI_MSI) {
2608 		if (hpriv->irq_handler &&
2609 		    hpriv->irq_handler != ahci_single_level_irq_intr)
2610 			dev_warn(host->dev,
2611 			         "both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented\n");
2612 		if (!hpriv->get_irq_vector) {
2613 			dev_err(host->dev,
2614 				"AHCI_HFLAG_MULTI_MSI requires ->get_irq_vector!\n");
2615 			return -EIO;
2616 		}
2617 
2618 		rc = ahci_host_activate_multi_irqs(host, sht);
2619 	} else {
2620 		rc = ata_host_activate(host, irq, hpriv->irq_handler,
2621 				       IRQF_SHARED, sht);
2622 	}
2623 
2624 
2625 	return rc;
2626 }
2627 EXPORT_SYMBOL_GPL(ahci_host_activate);
2628 
2629 MODULE_AUTHOR("Jeff Garzik");
2630 MODULE_DESCRIPTION("Common AHCI SATA low-level routines");
2631 MODULE_LICENSE("GPL");
2632