blob: f233ce60a67814ca3928291908eecd026fc39b1c [file] [log] [blame]
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001/*
2 * libahci.c - Common AHCI SATA low-level routines
3 *
Tejun Heo8c3d3d42013-05-14 11:09:50 -07004 * Maintained by: Tejun Heo <tj@kernel.org>
Anton Vorontsov365cfa12010-03-28 00:22:14 -04005 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2004-2005 Red Hat, Inc.
9 *
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * AHCI hardware documentation:
30 * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
31 * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
32 *
33 */
34
35#include <linux/kernel.h>
Tejun Heofbaf6662010-03-30 02:52:43 +090036#include <linux/gfp.h>
Anton Vorontsov365cfa12010-03-28 00:22:14 -040037#include <linux/module.h>
John Garry5600d612018-06-08 18:26:33 +080038#include <linux/nospec.h>
Anton Vorontsov365cfa12010-03-28 00:22:14 -040039#include <linux/blkdev.h>
40#include <linux/delay.h>
41#include <linux/interrupt.h>
42#include <linux/dma-mapping.h>
43#include <linux/device.h>
44#include <scsi/scsi_host.h>
45#include <scsi/scsi_cmnd.h>
46#include <linux/libata.h>
Dan Williamsd684a902015-11-11 16:27:33 -080047#include <linux/pci.h>
Anton Vorontsov365cfa12010-03-28 00:22:14 -040048#include "ahci.h"
Shane Huang65fe1f02012-09-07 22:40:01 +080049#include "libata.h"
Anton Vorontsov365cfa12010-03-28 00:22:14 -040050
51static int ahci_skip_host_reset;
52int ahci_ignore_sss;
53EXPORT_SYMBOL_GPL(ahci_ignore_sss);
54
55module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
56MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
57
58module_param_named(ignore_sss, ahci_ignore_sss, int, 0444);
59MODULE_PARM_DESC(ignore_sss, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
60
Tejun Heo6b7ae952010-09-01 17:50:06 +020061static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
62 unsigned hints);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040063static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
64static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
65 size_t size);
66static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
67 ssize_t size);
68
69
70
71static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
72static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040073static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
74static int ahci_port_start(struct ata_port *ap);
75static void ahci_port_stop(struct ata_port *ap);
76static void ahci_qc_prep(struct ata_queued_cmd *qc);
77static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc);
78static void ahci_freeze(struct ata_port *ap);
79static void ahci_thaw(struct ata_port *ap);
Shane Huang65fe1f02012-09-07 22:40:01 +080080static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040081static void ahci_enable_fbs(struct ata_port *ap);
82static void ahci_disable_fbs(struct ata_port *ap);
83static void ahci_pmp_attach(struct ata_port *ap);
84static void ahci_pmp_detach(struct ata_port *ap);
85static int ahci_softreset(struct ata_link *link, unsigned int *class,
86 unsigned long deadline);
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +080087static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
88 unsigned long deadline);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040089static int ahci_hardreset(struct ata_link *link, unsigned int *class,
90 unsigned long deadline);
91static void ahci_postreset(struct ata_link *link, unsigned int *class);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040092static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040093static void ahci_dev_config(struct ata_device *dev);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040094#ifdef CONFIG_PM
95static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
96#endif
97static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
98static ssize_t ahci_activity_store(struct ata_device *dev,
99 enum sw_activity val);
100static void ahci_init_sw_activity(struct ata_link *link);
101
102static ssize_t ahci_show_host_caps(struct device *dev,
103 struct device_attribute *attr, char *buf);
104static ssize_t ahci_show_host_cap2(struct device *dev,
105 struct device_attribute *attr, char *buf);
106static ssize_t ahci_show_host_version(struct device *dev,
107 struct device_attribute *attr, char *buf);
108static ssize_t ahci_show_port_cmd(struct device *dev,
109 struct device_attribute *attr, char *buf);
Harry Zhangc0623162010-04-23 17:28:38 +0800110static ssize_t ahci_read_em_buffer(struct device *dev,
111 struct device_attribute *attr, char *buf);
112static ssize_t ahci_store_em_buffer(struct device *dev,
113 struct device_attribute *attr,
114 const char *buf, size_t size);
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100115static ssize_t ahci_show_em_supported(struct device *dev,
116 struct device_attribute *attr, char *buf);
Suman Tripathif070d672016-02-06 11:25:22 +0530117static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400118
119static DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
120static DEVICE_ATTR(ahci_host_cap2, S_IRUGO, ahci_show_host_cap2, NULL);
121static DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
122static DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
Harry Zhangc0623162010-04-23 17:28:38 +0800123static DEVICE_ATTR(em_buffer, S_IWUSR | S_IRUGO,
124 ahci_read_em_buffer, ahci_store_em_buffer);
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100125static DEVICE_ATTR(em_message_supported, S_IRUGO, ahci_show_em_supported, NULL);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400126
Tejun Heofad16e72010-09-21 09:25:48 +0200127struct device_attribute *ahci_shost_attrs[] = {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400128 &dev_attr_link_power_management_policy,
129 &dev_attr_em_message_type,
130 &dev_attr_em_message,
131 &dev_attr_ahci_host_caps,
132 &dev_attr_ahci_host_cap2,
133 &dev_attr_ahci_host_version,
134 &dev_attr_ahci_port_cmd,
Harry Zhangc0623162010-04-23 17:28:38 +0800135 &dev_attr_em_buffer,
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100136 &dev_attr_em_message_supported,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400137 NULL
138};
Tejun Heofad16e72010-09-21 09:25:48 +0200139EXPORT_SYMBOL_GPL(ahci_shost_attrs);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400140
Tejun Heofad16e72010-09-21 09:25:48 +0200141struct device_attribute *ahci_sdev_attrs[] = {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400142 &dev_attr_sw_activity,
143 &dev_attr_unload_heads,
144 NULL
145};
Tejun Heofad16e72010-09-21 09:25:48 +0200146EXPORT_SYMBOL_GPL(ahci_sdev_attrs);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400147
148struct ata_port_operations ahci_ops = {
149 .inherits = &sata_pmp_port_ops,
150
151 .qc_defer = ahci_pmp_qc_defer,
152 .qc_prep = ahci_qc_prep,
153 .qc_issue = ahci_qc_issue,
154 .qc_fill_rtf = ahci_qc_fill_rtf,
155
156 .freeze = ahci_freeze,
157 .thaw = ahci_thaw,
158 .softreset = ahci_softreset,
159 .hardreset = ahci_hardreset,
160 .postreset = ahci_postreset,
161 .pmp_softreset = ahci_softreset,
162 .error_handler = ahci_error_handler,
163 .post_internal_cmd = ahci_post_internal_cmd,
164 .dev_config = ahci_dev_config,
165
166 .scr_read = ahci_scr_read,
167 .scr_write = ahci_scr_write,
168 .pmp_attach = ahci_pmp_attach,
169 .pmp_detach = ahci_pmp_detach,
170
Tejun Heo6b7ae952010-09-01 17:50:06 +0200171 .set_lpm = ahci_set_lpm,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400172 .em_show = ahci_led_show,
173 .em_store = ahci_led_store,
174 .sw_activity_show = ahci_activity_show,
175 .sw_activity_store = ahci_activity_store,
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500176 .transmit_led_message = ahci_transmit_led_message,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400177#ifdef CONFIG_PM
178 .port_suspend = ahci_port_suspend,
179 .port_resume = ahci_port_resume,
180#endif
181 .port_start = ahci_port_start,
182 .port_stop = ahci_port_stop,
183};
184EXPORT_SYMBOL_GPL(ahci_ops);
185
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +0800186struct ata_port_operations ahci_pmp_retry_srst_ops = {
187 .inherits = &ahci_ops,
188 .softreset = ahci_pmp_retry_softreset,
189};
190EXPORT_SYMBOL_GPL(ahci_pmp_retry_srst_ops);
191
Chuansheng Liued08d402013-09-18 20:21:49 +0800192static bool ahci_em_messages __read_mostly = true;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400193EXPORT_SYMBOL_GPL(ahci_em_messages);
Chuansheng Liued08d402013-09-18 20:21:49 +0800194module_param(ahci_em_messages, bool, 0444);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400195/* add other LED protocol types when they become supported */
196MODULE_PARM_DESC(ahci_em_messages,
Harry Zhang008dbd62010-04-23 17:27:19 +0800197 "AHCI Enclosure Management Message control (0 = off, 1 = on)");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400198
Chuansheng Liued08d402013-09-18 20:21:49 +0800199/* device sleep idle timeout in ms */
200static int devslp_idle_timeout __read_mostly = 1000;
Shane Huang65fe1f02012-09-07 22:40:01 +0800201module_param(devslp_idle_timeout, int, 0644);
202MODULE_PARM_DESC(devslp_idle_timeout, "device sleep idle timeout");
203
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400204static void ahci_enable_ahci(void __iomem *mmio)
205{
206 int i;
207 u32 tmp;
208
209 /* turn on AHCI_EN */
210 tmp = readl(mmio + HOST_CTL);
211 if (tmp & HOST_AHCI_EN)
212 return;
213
214 /* Some controllers need AHCI_EN to be written multiple times.
215 * Try a few times before giving up.
216 */
217 for (i = 0; i < 5; i++) {
218 tmp |= HOST_AHCI_EN;
219 writel(tmp, mmio + HOST_CTL);
220 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
221 if (tmp & HOST_AHCI_EN)
222 return;
223 msleep(10);
224 }
225
226 WARN_ON(1);
227}
228
Mika Westerbergbb03c642016-02-18 10:54:16 +0200229/**
230 * ahci_rpm_get_port - Make sure the port is powered on
231 * @ap: Port to power on
232 *
233 * Whenever there is need to access the AHCI host registers outside of
234 * normal execution paths, call this function to make sure the host is
235 * actually powered on.
236 */
237static int ahci_rpm_get_port(struct ata_port *ap)
238{
239 return pm_runtime_get_sync(ap->dev);
240}
241
242/**
243 * ahci_rpm_put_port - Undoes ahci_rpm_get_port()
244 * @ap: Port to power down
245 *
246 * Undoes ahci_rpm_get_port() and possibly powers down the AHCI host
247 * if it has no more active users.
248 */
249static void ahci_rpm_put_port(struct ata_port *ap)
250{
251 pm_runtime_put(ap->dev);
252}
253
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400254static ssize_t ahci_show_host_caps(struct device *dev,
255 struct device_attribute *attr, char *buf)
256{
257 struct Scsi_Host *shost = class_to_shost(dev);
258 struct ata_port *ap = ata_shost_to_port(shost);
259 struct ahci_host_priv *hpriv = ap->host->private_data;
260
261 return sprintf(buf, "%x\n", hpriv->cap);
262}
263
264static ssize_t ahci_show_host_cap2(struct device *dev,
265 struct device_attribute *attr, char *buf)
266{
267 struct Scsi_Host *shost = class_to_shost(dev);
268 struct ata_port *ap = ata_shost_to_port(shost);
269 struct ahci_host_priv *hpriv = ap->host->private_data;
270
271 return sprintf(buf, "%x\n", hpriv->cap2);
272}
273
274static ssize_t ahci_show_host_version(struct device *dev,
275 struct device_attribute *attr, char *buf)
276{
277 struct Scsi_Host *shost = class_to_shost(dev);
278 struct ata_port *ap = ata_shost_to_port(shost);
279 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400280
Mika Westerberg8ea909c2016-02-18 10:54:14 +0200281 return sprintf(buf, "%x\n", hpriv->version);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400282}
283
284static ssize_t ahci_show_port_cmd(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 void __iomem *port_mmio = ahci_port_base(ap);
Mika Westerbergbb03c642016-02-18 10:54:16 +0200290 ssize_t ret;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400291
Mika Westerbergbb03c642016-02-18 10:54:16 +0200292 ahci_rpm_get_port(ap);
293 ret = sprintf(buf, "%x\n", readl(port_mmio + PORT_CMD));
294 ahci_rpm_put_port(ap);
295
296 return ret;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400297}
298
Harry Zhangc0623162010-04-23 17:28:38 +0800299static ssize_t ahci_read_em_buffer(struct device *dev,
300 struct device_attribute *attr, char *buf)
301{
302 struct Scsi_Host *shost = class_to_shost(dev);
303 struct ata_port *ap = ata_shost_to_port(shost);
304 struct ahci_host_priv *hpriv = ap->host->private_data;
305 void __iomem *mmio = hpriv->mmio;
306 void __iomem *em_mmio = mmio + hpriv->em_loc;
307 u32 em_ctl, msg;
308 unsigned long flags;
309 size_t count;
310 int i;
311
Mika Westerbergbb03c642016-02-18 10:54:16 +0200312 ahci_rpm_get_port(ap);
Harry Zhangc0623162010-04-23 17:28:38 +0800313 spin_lock_irqsave(ap->lock, flags);
314
315 em_ctl = readl(mmio + HOST_EM_CTL);
316 if (!(ap->flags & ATA_FLAG_EM) || em_ctl & EM_CTL_XMT ||
317 !(hpriv->em_msg_type & EM_MSG_TYPE_SGPIO)) {
318 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +0200319 ahci_rpm_put_port(ap);
Harry Zhangc0623162010-04-23 17:28:38 +0800320 return -EINVAL;
321 }
322
323 if (!(em_ctl & EM_CTL_MR)) {
324 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +0200325 ahci_rpm_put_port(ap);
Harry Zhangc0623162010-04-23 17:28:38 +0800326 return -EAGAIN;
327 }
328
329 if (!(em_ctl & EM_CTL_SMB))
330 em_mmio += hpriv->em_buf_sz;
331
332 count = hpriv->em_buf_sz;
333
334 /* the count should not be larger than PAGE_SIZE */
335 if (count > PAGE_SIZE) {
336 if (printk_ratelimit())
Joe Perchesa9a79df2011-04-15 15:51:59 -0700337 ata_port_warn(ap,
338 "EM read buffer size too large: "
339 "buffer size %u, page size %lu\n",
340 hpriv->em_buf_sz, PAGE_SIZE);
Harry Zhangc0623162010-04-23 17:28:38 +0800341 count = PAGE_SIZE;
342 }
343
344 for (i = 0; i < count; i += 4) {
345 msg = readl(em_mmio + i);
346 buf[i] = msg & 0xff;
347 buf[i + 1] = (msg >> 8) & 0xff;
348 buf[i + 2] = (msg >> 16) & 0xff;
349 buf[i + 3] = (msg >> 24) & 0xff;
350 }
351
352 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +0200353 ahci_rpm_put_port(ap);
Harry Zhangc0623162010-04-23 17:28:38 +0800354
355 return i;
356}
357
358static ssize_t ahci_store_em_buffer(struct device *dev,
359 struct device_attribute *attr,
360 const char *buf, size_t size)
361{
362 struct Scsi_Host *shost = class_to_shost(dev);
363 struct ata_port *ap = ata_shost_to_port(shost);
364 struct ahci_host_priv *hpriv = ap->host->private_data;
365 void __iomem *mmio = hpriv->mmio;
366 void __iomem *em_mmio = mmio + hpriv->em_loc;
Harry Zhangf9ce8892010-06-24 11:34:23 +0800367 const unsigned char *msg_buf = buf;
Harry Zhangc0623162010-04-23 17:28:38 +0800368 u32 em_ctl, msg;
369 unsigned long flags;
370 int i;
371
372 /* check size validity */
373 if (!(ap->flags & ATA_FLAG_EM) ||
374 !(hpriv->em_msg_type & EM_MSG_TYPE_SGPIO) ||
375 size % 4 || size > hpriv->em_buf_sz)
376 return -EINVAL;
377
Mika Westerbergbb03c642016-02-18 10:54:16 +0200378 ahci_rpm_get_port(ap);
Harry Zhangc0623162010-04-23 17:28:38 +0800379 spin_lock_irqsave(ap->lock, flags);
380
381 em_ctl = readl(mmio + HOST_EM_CTL);
382 if (em_ctl & EM_CTL_TM) {
383 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +0200384 ahci_rpm_put_port(ap);
Harry Zhangc0623162010-04-23 17:28:38 +0800385 return -EBUSY;
386 }
387
388 for (i = 0; i < size; i += 4) {
Harry Zhangf9ce8892010-06-24 11:34:23 +0800389 msg = msg_buf[i] | msg_buf[i + 1] << 8 |
390 msg_buf[i + 2] << 16 | msg_buf[i + 3] << 24;
Harry Zhangc0623162010-04-23 17:28:38 +0800391 writel(msg, em_mmio + i);
392 }
393
394 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
395
396 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +0200397 ahci_rpm_put_port(ap);
Harry Zhangc0623162010-04-23 17:28:38 +0800398
399 return size;
400}
401
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100402static ssize_t ahci_show_em_supported(struct device *dev,
403 struct device_attribute *attr, char *buf)
404{
405 struct Scsi_Host *shost = class_to_shost(dev);
406 struct ata_port *ap = ata_shost_to_port(shost);
407 struct ahci_host_priv *hpriv = ap->host->private_data;
408 void __iomem *mmio = hpriv->mmio;
409 u32 em_ctl;
410
Mika Westerbergbb03c642016-02-18 10:54:16 +0200411 ahci_rpm_get_port(ap);
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100412 em_ctl = readl(mmio + HOST_EM_CTL);
Mika Westerbergbb03c642016-02-18 10:54:16 +0200413 ahci_rpm_put_port(ap);
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100414
415 return sprintf(buf, "%s%s%s%s\n",
416 em_ctl & EM_CTL_LED ? "led " : "",
417 em_ctl & EM_CTL_SAFTE ? "saf-te " : "",
418 em_ctl & EM_CTL_SES ? "ses-2 " : "",
419 em_ctl & EM_CTL_SGPIO ? "sgpio " : "");
420}
421
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400422/**
423 * ahci_save_initial_config - Save and fixup initial config values
424 * @dev: target AHCI device
425 * @hpriv: host private area to store config values
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400426 *
427 * Some registers containing configuration info might be setup by
428 * BIOS and might be cleared on reset. This function saves the
429 * initial values of those registers into @hpriv such that they
430 * can be restored after controller reset.
431 *
432 * If inconsistent, config values are fixed up by this function.
433 *
Hans de Goede039ece32014-02-22 16:53:30 +0100434 * If it is not set already this function sets hpriv->start_engine to
435 * ahci_start_engine.
436 *
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400437 * LOCKING:
438 * None.
439 */
Antoine Ténart725c7b52014-07-30 20:13:56 +0200440void ahci_save_initial_config(struct device *dev, struct ahci_host_priv *hpriv)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400441{
442 void __iomem *mmio = hpriv->mmio;
443 u32 cap, cap2, vers, port_map;
444 int i;
445
446 /* make sure AHCI mode is enabled before accessing CAP */
447 ahci_enable_ahci(mmio);
448
449 /* Values prefixed with saved_ are written back to host after
450 * reset. Values without are used for driver operation.
451 */
452 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
453 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
454
455 /* CAP2 register is only defined for AHCI 1.2 and later */
456 vers = readl(mmio + HOST_VERSION);
457 if ((vers >> 16) > 1 ||
458 ((vers >> 16) == 1 && (vers & 0xFFFF) >= 0x200))
459 hpriv->saved_cap2 = cap2 = readl(mmio + HOST_CAP2);
460 else
461 hpriv->saved_cap2 = cap2 = 0;
462
463 /* some chips have errata preventing 64bit use */
464 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700465 dev_info(dev, "controller can't do 64bit DMA, forcing 32bit\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400466 cap &= ~HOST_CAP_64;
467 }
468
469 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700470 dev_info(dev, "controller can't do NCQ, turning off CAP_NCQ\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400471 cap &= ~HOST_CAP_NCQ;
472 }
473
474 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700475 dev_info(dev, "controller can do NCQ, turning on CAP_NCQ\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400476 cap |= HOST_CAP_NCQ;
477 }
478
479 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700480 dev_info(dev, "controller can't do PMP, turning off CAP_PMP\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400481 cap &= ~HOST_CAP_PMP;
482 }
483
484 if ((cap & HOST_CAP_SNTF) && (hpriv->flags & AHCI_HFLAG_NO_SNTF)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700485 dev_info(dev,
486 "controller can't do SNTF, turning off CAP_SNTF\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400487 cap &= ~HOST_CAP_SNTF;
488 }
489
Jacob Pan0cf4a7d2014-04-15 22:27:11 -0700490 if ((cap2 & HOST_CAP2_SDS) && (hpriv->flags & AHCI_HFLAG_NO_DEVSLP)) {
491 dev_info(dev,
492 "controller can't do DEVSLP, turning off\n");
493 cap2 &= ~HOST_CAP2_SDS;
494 cap2 &= ~HOST_CAP2_SADM;
495 }
496
Tejun Heo5f173102010-07-24 16:53:48 +0200497 if (!(cap & HOST_CAP_FBS) && (hpriv->flags & AHCI_HFLAG_YES_FBS)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700498 dev_info(dev, "controller can do FBS, turning on CAP_FBS\n");
Tejun Heo5f173102010-07-24 16:53:48 +0200499 cap |= HOST_CAP_FBS;
500 }
501
Kefeng Wang888d91a2014-05-14 14:13:40 +0800502 if ((cap & HOST_CAP_FBS) && (hpriv->flags & AHCI_HFLAG_NO_FBS)) {
503 dev_info(dev, "controller can't do FBS, turning off CAP_FBS\n");
504 cap &= ~HOST_CAP_FBS;
505 }
506
Antoine Ténart725c7b52014-07-30 20:13:56 +0200507 if (hpriv->force_port_map && port_map != hpriv->force_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700508 dev_info(dev, "forcing port_map 0x%x -> 0x%x\n",
Antoine Ténart725c7b52014-07-30 20:13:56 +0200509 port_map, hpriv->force_port_map);
510 port_map = hpriv->force_port_map;
Srinivas Kandagatla2fd0f462016-04-01 08:52:56 +0100511 hpriv->saved_port_map = port_map;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400512 }
513
Antoine Ténart725c7b52014-07-30 20:13:56 +0200514 if (hpriv->mask_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700515 dev_warn(dev, "masking port_map 0x%x -> 0x%x\n",
516 port_map,
Antoine Ténart725c7b52014-07-30 20:13:56 +0200517 port_map & hpriv->mask_port_map);
518 port_map &= hpriv->mask_port_map;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400519 }
520
521 /* cross check port_map and cap.n_ports */
522 if (port_map) {
523 int map_ports = 0;
524
525 for (i = 0; i < AHCI_MAX_PORTS; i++)
526 if (port_map & (1 << i))
527 map_ports++;
528
529 /* If PI has more ports than n_ports, whine, clear
530 * port_map and let it be generated from n_ports.
531 */
532 if (map_ports > ahci_nr_ports(cap)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700533 dev_warn(dev,
534 "implemented port map (0x%x) contains more ports than nr_ports (%u), using nr_ports\n",
535 port_map, ahci_nr_ports(cap));
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400536 port_map = 0;
537 }
538 }
539
Tejun Heo566d1822016-01-15 15:13:05 -0500540 /* fabricate port_map from cap.nr_ports for < AHCI 1.3 */
541 if (!port_map && vers < 0x10300) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400542 port_map = (1 << ahci_nr_ports(cap)) - 1;
Joe Perchesa44fec12011-04-15 15:51:58 -0700543 dev_warn(dev, "forcing PORTS_IMPL to 0x%x\n", port_map);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400544
545 /* write the fixed up value to the PI register */
546 hpriv->saved_port_map = port_map;
547 }
548
549 /* record values to use during operation */
550 hpriv->cap = cap;
551 hpriv->cap2 = cap2;
Mika Westerberg8ea909c2016-02-18 10:54:14 +0200552 hpriv->version = readl(mmio + HOST_VERSION);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400553 hpriv->port_map = port_map;
Hans de Goede039ece32014-02-22 16:53:30 +0100554
555 if (!hpriv->start_engine)
556 hpriv->start_engine = ahci_start_engine;
Suman Tripathif070d672016-02-06 11:25:22 +0530557
558 if (!hpriv->irq_handler)
Suman Tripathid867b952016-02-06 11:25:23 +0530559 hpriv->irq_handler = ahci_single_level_irq_intr;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400560}
561EXPORT_SYMBOL_GPL(ahci_save_initial_config);
562
563/**
564 * ahci_restore_initial_config - Restore initial config
565 * @host: target ATA host
566 *
567 * Restore initial config stored by ahci_save_initial_config().
568 *
569 * LOCKING:
570 * None.
571 */
572static void ahci_restore_initial_config(struct ata_host *host)
573{
574 struct ahci_host_priv *hpriv = host->private_data;
575 void __iomem *mmio = hpriv->mmio;
576
577 writel(hpriv->saved_cap, mmio + HOST_CAP);
578 if (hpriv->saved_cap2)
579 writel(hpriv->saved_cap2, mmio + HOST_CAP2);
580 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
581 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
582}
583
584static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
585{
586 static const int offset[] = {
587 [SCR_STATUS] = PORT_SCR_STAT,
588 [SCR_CONTROL] = PORT_SCR_CTL,
589 [SCR_ERROR] = PORT_SCR_ERR,
590 [SCR_ACTIVE] = PORT_SCR_ACT,
591 [SCR_NOTIFICATION] = PORT_SCR_NTF,
592 };
593 struct ahci_host_priv *hpriv = ap->host->private_data;
594
595 if (sc_reg < ARRAY_SIZE(offset) &&
596 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
597 return offset[sc_reg];
598 return 0;
599}
600
601static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
602{
603 void __iomem *port_mmio = ahci_port_base(link->ap);
604 int offset = ahci_scr_offset(link->ap, sc_reg);
605
606 if (offset) {
607 *val = readl(port_mmio + offset);
608 return 0;
609 }
610 return -EINVAL;
611}
612
613static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
614{
615 void __iomem *port_mmio = ahci_port_base(link->ap);
616 int offset = ahci_scr_offset(link->ap, sc_reg);
617
618 if (offset) {
619 writel(val, port_mmio + offset);
620 return 0;
621 }
622 return -EINVAL;
623}
624
625void ahci_start_engine(struct ata_port *ap)
626{
627 void __iomem *port_mmio = ahci_port_base(ap);
628 u32 tmp;
629
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400630 /* start DMA */
631 tmp = readl(port_mmio + PORT_CMD);
632 tmp |= PORT_CMD_START;
633 writel(tmp, port_mmio + PORT_CMD);
634 readl(port_mmio + PORT_CMD); /* flush */
635}
636EXPORT_SYMBOL_GPL(ahci_start_engine);
637
638int ahci_stop_engine(struct ata_port *ap)
639{
640 void __iomem *port_mmio = ahci_port_base(ap);
Danesh Petigarafb329632016-01-11 13:22:26 -0800641 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400642 u32 tmp;
643
Danesh Petigarafb329632016-01-11 13:22:26 -0800644 /*
645 * On some controllers, stopping a port's DMA engine while the port
646 * is in ALPM state (partial or slumber) results in failures on
647 * subsequent DMA engine starts. For those controllers, put the
648 * port back in active state before stopping its DMA engine.
649 */
650 if ((hpriv->flags & AHCI_HFLAG_WAKE_BEFORE_STOP) &&
651 (ap->link.lpm_policy > ATA_LPM_MAX_POWER) &&
652 ahci_set_lpm(&ap->link, ATA_LPM_MAX_POWER, ATA_LPM_WAKE_ONLY)) {
653 dev_err(ap->host->dev, "Failed to wake up port before engine stop\n");
654 return -EIO;
655 }
656
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400657 tmp = readl(port_mmio + PORT_CMD);
658
659 /* check if the HBA is idle */
660 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
661 return 0;
662
663 /* setting HBA to idle */
664 tmp &= ~PORT_CMD_START;
665 writel(tmp, port_mmio + PORT_CMD);
666
667 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo97750ce2010-09-06 17:56:29 +0200668 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400669 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
670 if (tmp & PORT_CMD_LIST_ON)
671 return -EIO;
672
673 return 0;
674}
675EXPORT_SYMBOL_GPL(ahci_stop_engine);
676
Suman Tripathi39e0ee92014-07-07 22:33:04 +0530677void ahci_start_fis_rx(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400678{
679 void __iomem *port_mmio = ahci_port_base(ap);
680 struct ahci_host_priv *hpriv = ap->host->private_data;
681 struct ahci_port_priv *pp = ap->private_data;
682 u32 tmp;
683
684 /* set FIS registers */
685 if (hpriv->cap & HOST_CAP_64)
686 writel((pp->cmd_slot_dma >> 16) >> 16,
687 port_mmio + PORT_LST_ADDR_HI);
688 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
689
690 if (hpriv->cap & HOST_CAP_64)
691 writel((pp->rx_fis_dma >> 16) >> 16,
692 port_mmio + PORT_FIS_ADDR_HI);
693 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
694
695 /* enable FIS reception */
696 tmp = readl(port_mmio + PORT_CMD);
697 tmp |= PORT_CMD_FIS_RX;
698 writel(tmp, port_mmio + PORT_CMD);
699
700 /* flush */
701 readl(port_mmio + PORT_CMD);
702}
Suman Tripathi39e0ee92014-07-07 22:33:04 +0530703EXPORT_SYMBOL_GPL(ahci_start_fis_rx);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400704
705static int ahci_stop_fis_rx(struct ata_port *ap)
706{
707 void __iomem *port_mmio = ahci_port_base(ap);
708 u32 tmp;
709
710 /* disable FIS reception */
711 tmp = readl(port_mmio + PORT_CMD);
712 tmp &= ~PORT_CMD_FIS_RX;
713 writel(tmp, port_mmio + PORT_CMD);
714
715 /* wait for completion, spec says 500ms, give it 1000 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200716 tmp = ata_wait_register(ap, port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400717 PORT_CMD_FIS_ON, 10, 1000);
718 if (tmp & PORT_CMD_FIS_ON)
719 return -EBUSY;
720
721 return 0;
722}
723
724static void ahci_power_up(struct ata_port *ap)
725{
726 struct ahci_host_priv *hpriv = ap->host->private_data;
727 void __iomem *port_mmio = ahci_port_base(ap);
728 u32 cmd;
729
730 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
731
732 /* spin up device */
733 if (hpriv->cap & HOST_CAP_SSS) {
734 cmd |= PORT_CMD_SPIN_UP;
735 writel(cmd, port_mmio + PORT_CMD);
736 }
737
738 /* wake up link */
739 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
740}
741
Tejun Heo6b7ae952010-09-01 17:50:06 +0200742static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
743 unsigned int hints)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400744{
Tejun Heo6b7ae952010-09-01 17:50:06 +0200745 struct ata_port *ap = link->ap;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400746 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400747 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400748 void __iomem *port_mmio = ahci_port_base(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400749
Tejun Heo6b7ae952010-09-01 17:50:06 +0200750 if (policy != ATA_LPM_MAX_POWER) {
Danesh Petigarafb329632016-01-11 13:22:26 -0800751 /* wakeup flag only applies to the max power policy */
752 hints &= ~ATA_LPM_WAKE_ONLY;
753
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400754 /*
Tejun Heo6b7ae952010-09-01 17:50:06 +0200755 * Disable interrupts on Phy Ready. This keeps us from
756 * getting woken up due to spurious phy ready
757 * interrupts.
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400758 */
Tejun Heo6b7ae952010-09-01 17:50:06 +0200759 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
760 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
761
762 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400763 }
764
Tejun Heo6b7ae952010-09-01 17:50:06 +0200765 if (hpriv->cap & HOST_CAP_ALPM) {
766 u32 cmd = readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400767
Tejun Heo6b7ae952010-09-01 17:50:06 +0200768 if (policy == ATA_LPM_MAX_POWER || !(hints & ATA_LPM_HIPM)) {
Danesh Petigarafb329632016-01-11 13:22:26 -0800769 if (!(hints & ATA_LPM_WAKE_ONLY))
770 cmd &= ~(PORT_CMD_ASP | PORT_CMD_ALPE);
Tejun Heo6b7ae952010-09-01 17:50:06 +0200771 cmd |= PORT_CMD_ICC_ACTIVE;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400772
Tejun Heo6b7ae952010-09-01 17:50:06 +0200773 writel(cmd, port_mmio + PORT_CMD);
774 readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400775
Tejun Heo6b7ae952010-09-01 17:50:06 +0200776 /* wait 10ms to be sure we've come out of LPM state */
Tejun Heo97750ce2010-09-06 17:56:29 +0200777 ata_msleep(ap, 10);
Danesh Petigarafb329632016-01-11 13:22:26 -0800778
779 if (hints & ATA_LPM_WAKE_ONLY)
780 return 0;
Tejun Heo6b7ae952010-09-01 17:50:06 +0200781 } else {
782 cmd |= PORT_CMD_ALPE;
783 if (policy == ATA_LPM_MIN_POWER)
784 cmd |= PORT_CMD_ASP;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400785
Tejun Heo6b7ae952010-09-01 17:50:06 +0200786 /* write out new cmd value */
787 writel(cmd, port_mmio + PORT_CMD);
788 }
789 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400790
Shane Huang65fe1f02012-09-07 22:40:01 +0800791 /* set aggressive device sleep */
792 if ((hpriv->cap2 & HOST_CAP2_SDS) &&
793 (hpriv->cap2 & HOST_CAP2_SADM) &&
794 (link->device->flags & ATA_DFLAG_DEVSLP)) {
795 if (policy == ATA_LPM_MIN_POWER)
796 ahci_set_aggressive_devslp(ap, true);
797 else
798 ahci_set_aggressive_devslp(ap, false);
799 }
800
Tejun Heo6b7ae952010-09-01 17:50:06 +0200801 if (policy == ATA_LPM_MAX_POWER) {
802 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400803
Tejun Heo6b7ae952010-09-01 17:50:06 +0200804 /* turn PHYRDY IRQ back on */
805 pp->intr_mask |= PORT_IRQ_PHYRDY;
806 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
807 }
808
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400809 return 0;
810}
811
812#ifdef CONFIG_PM
813static void ahci_power_down(struct ata_port *ap)
814{
815 struct ahci_host_priv *hpriv = ap->host->private_data;
816 void __iomem *port_mmio = ahci_port_base(ap);
817 u32 cmd, scontrol;
818
819 if (!(hpriv->cap & HOST_CAP_SSS))
820 return;
821
822 /* put device into listen mode, first set PxSCTL.DET to 0 */
823 scontrol = readl(port_mmio + PORT_SCR_CTL);
824 scontrol &= ~0xf;
825 writel(scontrol, port_mmio + PORT_SCR_CTL);
826
827 /* then set PxCMD.SUD to 0 */
828 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
829 cmd &= ~PORT_CMD_SPIN_UP;
830 writel(cmd, port_mmio + PORT_CMD);
831}
832#endif
833
834static void ahci_start_port(struct ata_port *ap)
835{
Brian Norris66583c92012-02-21 10:38:42 -0800836 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400837 struct ahci_port_priv *pp = ap->private_data;
838 struct ata_link *link;
839 struct ahci_em_priv *emp;
840 ssize_t rc;
841 int i;
842
843 /* enable FIS reception */
844 ahci_start_fis_rx(ap);
845
Brian Norris66583c92012-02-21 10:38:42 -0800846 /* enable DMA */
847 if (!(hpriv->flags & AHCI_HFLAG_DELAY_ENGINE))
Hans de Goede039ece32014-02-22 16:53:30 +0100848 hpriv->start_engine(ap);
Brian Norris66583c92012-02-21 10:38:42 -0800849
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400850 /* turn on LEDs */
851 if (ap->flags & ATA_FLAG_EM) {
852 ata_for_each_link(link, ap, EDGE) {
853 emp = &pp->em_priv[link->pmp];
854
855 /* EM Transmit bit maybe busy during init */
856 for (i = 0; i < EM_MAX_RETRY; i++) {
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500857 rc = ap->ops->transmit_led_message(ap,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400858 emp->led_state,
859 4);
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200860 /*
861 * If busy, give a breather but do not
862 * release EH ownership by using msleep()
863 * instead of ata_msleep(). EM Transmit
864 * bit is busy for the whole host and
865 * releasing ownership will cause other
866 * ports to fail the same way.
867 */
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400868 if (rc == -EBUSY)
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200869 msleep(1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400870 else
871 break;
872 }
873 }
874 }
875
876 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
877 ata_for_each_link(link, ap, EDGE)
878 ahci_init_sw_activity(link);
879
880}
881
882static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
883{
884 int rc;
885
886 /* disable DMA */
887 rc = ahci_stop_engine(ap);
888 if (rc) {
889 *emsg = "failed to stop engine";
890 return rc;
891 }
892
893 /* disable FIS reception */
894 rc = ahci_stop_fis_rx(ap);
895 if (rc) {
896 *emsg = "failed stop FIS RX";
897 return rc;
898 }
899
900 return 0;
901}
902
903int ahci_reset_controller(struct ata_host *host)
904{
905 struct ahci_host_priv *hpriv = host->private_data;
906 void __iomem *mmio = hpriv->mmio;
907 u32 tmp;
908
909 /* we must be in AHCI mode, before using anything
910 * AHCI-specific, such as HOST_RESET.
911 */
912 ahci_enable_ahci(mmio);
913
914 /* global controller reset */
915 if (!ahci_skip_host_reset) {
916 tmp = readl(mmio + HOST_CTL);
917 if ((tmp & HOST_RESET) == 0) {
918 writel(tmp | HOST_RESET, mmio + HOST_CTL);
919 readl(mmio + HOST_CTL); /* flush */
920 }
921
922 /*
923 * to perform host reset, OS should set HOST_RESET
924 * and poll until this bit is read to be "0".
925 * reset must complete within 1 second, or
926 * the hardware should be considered fried.
927 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200928 tmp = ata_wait_register(NULL, mmio + HOST_CTL, HOST_RESET,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400929 HOST_RESET, 10, 1000);
930
931 if (tmp & HOST_RESET) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700932 dev_err(host->dev, "controller reset failed (0x%x)\n",
933 tmp);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400934 return -EIO;
935 }
936
937 /* turn on AHCI mode */
938 ahci_enable_ahci(mmio);
939
940 /* Some registers might be cleared on reset. Restore
941 * initial values.
942 */
943 ahci_restore_initial_config(host);
944 } else
Joe Perchesa44fec12011-04-15 15:51:58 -0700945 dev_info(host->dev, "skipping global host reset\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400946
947 return 0;
948}
949EXPORT_SYMBOL_GPL(ahci_reset_controller);
950
951static void ahci_sw_activity(struct ata_link *link)
952{
953 struct ata_port *ap = link->ap;
954 struct ahci_port_priv *pp = ap->private_data;
955 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
956
957 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
958 return;
959
960 emp->activity++;
961 if (!timer_pending(&emp->timer))
962 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
963}
964
965static void ahci_sw_activity_blink(unsigned long arg)
966{
967 struct ata_link *link = (struct ata_link *)arg;
968 struct ata_port *ap = link->ap;
969 struct ahci_port_priv *pp = ap->private_data;
970 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
971 unsigned long led_message = emp->led_state;
972 u32 activity_led_state;
973 unsigned long flags;
974
975 led_message &= EM_MSG_LED_VALUE;
976 led_message |= ap->port_no | (link->pmp << 8);
977
978 /* check to see if we've had activity. If so,
979 * toggle state of LED and reset timer. If not,
980 * turn LED to desired idle state.
981 */
982 spin_lock_irqsave(ap->lock, flags);
983 if (emp->saved_activity != emp->activity) {
984 emp->saved_activity = emp->activity;
985 /* get the current LED state */
986 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
987
988 if (activity_led_state)
989 activity_led_state = 0;
990 else
991 activity_led_state = 1;
992
993 /* clear old state */
994 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
995
996 /* toggle state */
997 led_message |= (activity_led_state << 16);
998 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
999 } else {
1000 /* switch to idle */
1001 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
1002 if (emp->blink_policy == BLINK_OFF)
1003 led_message |= (1 << 16);
1004 }
1005 spin_unlock_irqrestore(ap->lock, flags);
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001006 ap->ops->transmit_led_message(ap, led_message, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001007}
1008
1009static void ahci_init_sw_activity(struct ata_link *link)
1010{
1011 struct ata_port *ap = link->ap;
1012 struct ahci_port_priv *pp = ap->private_data;
1013 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1014
1015 /* init activity stats, setup timer */
1016 emp->saved_activity = emp->activity = 0;
1017 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
1018
1019 /* check our blink policy and set flag for link if it's enabled */
1020 if (emp->blink_policy)
1021 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1022}
1023
1024int ahci_reset_em(struct ata_host *host)
1025{
1026 struct ahci_host_priv *hpriv = host->private_data;
1027 void __iomem *mmio = hpriv->mmio;
1028 u32 em_ctl;
1029
1030 em_ctl = readl(mmio + HOST_EM_CTL);
1031 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1032 return -EINVAL;
1033
1034 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1035 return 0;
1036}
1037EXPORT_SYMBOL_GPL(ahci_reset_em);
1038
1039static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1040 ssize_t size)
1041{
1042 struct ahci_host_priv *hpriv = ap->host->private_data;
1043 struct ahci_port_priv *pp = ap->private_data;
1044 void __iomem *mmio = hpriv->mmio;
1045 u32 em_ctl;
1046 u32 message[] = {0, 0};
1047 unsigned long flags;
1048 int pmp;
1049 struct ahci_em_priv *emp;
1050
1051 /* get the slot number from the message */
1052 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
1053 if (pmp < EM_MAX_SLOTS)
1054 emp = &pp->em_priv[pmp];
1055 else
1056 return -EINVAL;
1057
Mika Westerbergbb03c642016-02-18 10:54:16 +02001058 ahci_rpm_get_port(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001059 spin_lock_irqsave(ap->lock, flags);
1060
1061 /*
1062 * if we are still busy transmitting a previous message,
1063 * do not allow
1064 */
1065 em_ctl = readl(mmio + HOST_EM_CTL);
1066 if (em_ctl & EM_CTL_TM) {
1067 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +02001068 ahci_rpm_put_port(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001069 return -EBUSY;
1070 }
1071
Harry Zhang008dbd62010-04-23 17:27:19 +08001072 if (hpriv->em_msg_type & EM_MSG_TYPE_LED) {
1073 /*
1074 * create message header - this is all zero except for
1075 * the message size, which is 4 bytes.
1076 */
1077 message[0] |= (4 << 8);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001078
Harry Zhang008dbd62010-04-23 17:27:19 +08001079 /* ignore 0:4 of byte zero, fill in port info yourself */
1080 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001081
Harry Zhang008dbd62010-04-23 17:27:19 +08001082 /* write message to EM_LOC */
1083 writel(message[0], mmio + hpriv->em_loc);
1084 writel(message[1], mmio + hpriv->em_loc+4);
1085
1086 /*
1087 * tell hardware to transmit the message
1088 */
1089 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1090 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001091
1092 /* save off new led state for port/slot */
1093 emp->led_state = state;
1094
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001095 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +02001096 ahci_rpm_put_port(ap);
1097
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001098 return size;
1099}
1100
1101static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1102{
1103 struct ahci_port_priv *pp = ap->private_data;
1104 struct ata_link *link;
1105 struct ahci_em_priv *emp;
1106 int rc = 0;
1107
1108 ata_for_each_link(link, ap, EDGE) {
1109 emp = &pp->em_priv[link->pmp];
1110 rc += sprintf(buf, "%lx\n", emp->led_state);
1111 }
1112 return rc;
1113}
1114
1115static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1116 size_t size)
1117{
Daeseok Younb2a52b62014-02-20 08:28:45 +09001118 unsigned int state;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001119 int pmp;
1120 struct ahci_port_priv *pp = ap->private_data;
1121 struct ahci_em_priv *emp;
1122
Daeseok Younb2a52b62014-02-20 08:28:45 +09001123 if (kstrtouint(buf, 0, &state) < 0)
1124 return -EINVAL;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001125
1126 /* get the slot number from the message */
1127 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
John Garry5600d612018-06-08 18:26:33 +08001128 if (pmp < EM_MAX_SLOTS) {
1129 pmp = array_index_nospec(pmp, EM_MAX_SLOTS);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001130 emp = &pp->em_priv[pmp];
John Garry5600d612018-06-08 18:26:33 +08001131 } else {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001132 return -EINVAL;
John Garry5600d612018-06-08 18:26:33 +08001133 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001134
1135 /* mask off the activity bits if we are in sw_activity
1136 * mode, user should turn off sw_activity before setting
1137 * activity led through em_message
1138 */
1139 if (emp->blink_policy)
1140 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
1141
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001142 return ap->ops->transmit_led_message(ap, state, size);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001143}
1144
1145static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1146{
1147 struct ata_link *link = dev->link;
1148 struct ata_port *ap = link->ap;
1149 struct ahci_port_priv *pp = ap->private_data;
1150 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1151 u32 port_led_state = emp->led_state;
1152
1153 /* save the desired Activity LED behavior */
1154 if (val == OFF) {
1155 /* clear LFLAG */
1156 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1157
1158 /* set the LED to OFF */
1159 port_led_state &= EM_MSG_LED_VALUE_OFF;
1160 port_led_state |= (ap->port_no | (link->pmp << 8));
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001161 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001162 } else {
1163 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1164 if (val == BLINK_OFF) {
1165 /* set LED to ON for idle */
1166 port_led_state &= EM_MSG_LED_VALUE_OFF;
1167 port_led_state |= (ap->port_no | (link->pmp << 8));
1168 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001169 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001170 }
1171 }
1172 emp->blink_policy = val;
1173 return 0;
1174}
1175
1176static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1177{
1178 struct ata_link *link = dev->link;
1179 struct ata_port *ap = link->ap;
1180 struct ahci_port_priv *pp = ap->private_data;
1181 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1182
1183 /* display the saved value of activity behavior for this
1184 * disk.
1185 */
1186 return sprintf(buf, "%d\n", emp->blink_policy);
1187}
1188
1189static void ahci_port_init(struct device *dev, struct ata_port *ap,
1190 int port_no, void __iomem *mmio,
1191 void __iomem *port_mmio)
1192{
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001193 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001194 const char *emsg = NULL;
1195 int rc;
1196 u32 tmp;
1197
1198 /* make sure port is not active */
1199 rc = ahci_deinit_port(ap, &emsg);
1200 if (rc)
1201 dev_warn(dev, "%s (%d)\n", emsg, rc);
1202
1203 /* clear SError */
1204 tmp = readl(port_mmio + PORT_SCR_ERR);
1205 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1206 writel(tmp, port_mmio + PORT_SCR_ERR);
1207
1208 /* clear port IRQ */
1209 tmp = readl(port_mmio + PORT_IRQ_STAT);
1210 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1211 if (tmp)
1212 writel(tmp, port_mmio + PORT_IRQ_STAT);
1213
1214 writel(1 << port_no, mmio + HOST_IRQ_STAT);
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001215
1216 /* mark esata ports */
1217 tmp = readl(port_mmio + PORT_CMD);
Manuel Laussdc8b4af2016-02-27 16:10:05 +01001218 if ((tmp & PORT_CMD_ESP) && (hpriv->cap & HOST_CAP_SXS))
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001219 ap->pflags |= ATA_PFLAG_EXTERNAL;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001220}
1221
1222void ahci_init_controller(struct ata_host *host)
1223{
1224 struct ahci_host_priv *hpriv = host->private_data;
1225 void __iomem *mmio = hpriv->mmio;
1226 int i;
1227 void __iomem *port_mmio;
1228 u32 tmp;
1229
1230 for (i = 0; i < host->n_ports; i++) {
1231 struct ata_port *ap = host->ports[i];
1232
1233 port_mmio = ahci_port_base(ap);
1234 if (ata_port_is_dummy(ap))
1235 continue;
1236
1237 ahci_port_init(host->dev, ap, i, mmio, port_mmio);
1238 }
1239
1240 tmp = readl(mmio + HOST_CTL);
1241 VPRINTK("HOST_CTL 0x%x\n", tmp);
1242 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1243 tmp = readl(mmio + HOST_CTL);
1244 VPRINTK("HOST_CTL 0x%x\n", tmp);
1245}
1246EXPORT_SYMBOL_GPL(ahci_init_controller);
1247
1248static void ahci_dev_config(struct ata_device *dev)
1249{
1250 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1251
1252 if (hpriv->flags & AHCI_HFLAG_SECT255) {
1253 dev->max_sectors = 255;
Joe Perchesa9a79df2011-04-15 15:51:59 -07001254 ata_dev_info(dev,
1255 "SB600 AHCI: limiting to 255 sectors per cmd\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001256 }
1257}
1258
Rob Herringbbb4ab42012-08-17 09:51:50 -05001259unsigned int ahci_dev_classify(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001260{
1261 void __iomem *port_mmio = ahci_port_base(ap);
1262 struct ata_taskfile tf;
1263 u32 tmp;
1264
1265 tmp = readl(port_mmio + PORT_SIG);
1266 tf.lbah = (tmp >> 24) & 0xff;
1267 tf.lbam = (tmp >> 16) & 0xff;
1268 tf.lbal = (tmp >> 8) & 0xff;
1269 tf.nsect = (tmp) & 0xff;
1270
1271 return ata_dev_classify(&tf);
1272}
Rob Herringbbb4ab42012-08-17 09:51:50 -05001273EXPORT_SYMBOL_GPL(ahci_dev_classify);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001274
David Milburn02cdfcf2010-11-12 15:38:21 -06001275void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1276 u32 opts)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001277{
1278 dma_addr_t cmd_tbl_dma;
1279
1280 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1281
1282 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1283 pp->cmd_slot[tag].status = 0;
1284 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1285 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
1286}
David Milburn02cdfcf2010-11-12 15:38:21 -06001287EXPORT_SYMBOL_GPL(ahci_fill_cmd_slot);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001288
1289int ahci_kick_engine(struct ata_port *ap)
1290{
1291 void __iomem *port_mmio = ahci_port_base(ap);
1292 struct ahci_host_priv *hpriv = ap->host->private_data;
1293 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1294 u32 tmp;
1295 int busy, rc;
1296
1297 /* stop engine */
1298 rc = ahci_stop_engine(ap);
1299 if (rc)
1300 goto out_restart;
1301
1302 /* need to do CLO?
1303 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1304 */
1305 busy = status & (ATA_BUSY | ATA_DRQ);
1306 if (!busy && !sata_pmp_attached(ap)) {
1307 rc = 0;
1308 goto out_restart;
1309 }
1310
1311 if (!(hpriv->cap & HOST_CAP_CLO)) {
1312 rc = -EOPNOTSUPP;
1313 goto out_restart;
1314 }
1315
1316 /* perform CLO */
1317 tmp = readl(port_mmio + PORT_CMD);
1318 tmp |= PORT_CMD_CLO;
1319 writel(tmp, port_mmio + PORT_CMD);
1320
1321 rc = 0;
Tejun Heo97750ce2010-09-06 17:56:29 +02001322 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001323 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1324 if (tmp & PORT_CMD_CLO)
1325 rc = -EIO;
1326
1327 /* restart engine */
1328 out_restart:
Hans de Goede039ece32014-02-22 16:53:30 +01001329 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001330 return rc;
1331}
1332EXPORT_SYMBOL_GPL(ahci_kick_engine);
1333
1334static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1335 struct ata_taskfile *tf, int is_cmd, u16 flags,
1336 unsigned long timeout_msec)
1337{
1338 const u32 cmd_fis_len = 5; /* five dwords */
1339 struct ahci_port_priv *pp = ap->private_data;
1340 void __iomem *port_mmio = ahci_port_base(ap);
1341 u8 *fis = pp->cmd_tbl;
1342 u32 tmp;
1343
1344 /* prep the command */
1345 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1346 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1347
Xiangliang Yu023113d2015-11-26 20:27:02 +08001348 /* set port value for softreset of Port Multiplier */
1349 if (pp->fbs_enabled && pp->fbs_last_dev != pmp) {
1350 tmp = readl(port_mmio + PORT_FBS);
1351 tmp &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
1352 tmp |= pmp << PORT_FBS_DEV_OFFSET;
1353 writel(tmp, port_mmio + PORT_FBS);
1354 pp->fbs_last_dev = pmp;
1355 }
1356
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001357 /* issue & wait */
1358 writel(1, port_mmio + PORT_CMD_ISSUE);
1359
1360 if (timeout_msec) {
Tejun Heo97750ce2010-09-06 17:56:29 +02001361 tmp = ata_wait_register(ap, port_mmio + PORT_CMD_ISSUE,
1362 0x1, 0x1, 1, timeout_msec);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001363 if (tmp & 0x1) {
1364 ahci_kick_engine(ap);
1365 return -EBUSY;
1366 }
1367 } else
1368 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1369
1370 return 0;
1371}
1372
1373int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1374 int pmp, unsigned long deadline,
1375 int (*check_ready)(struct ata_link *link))
1376{
1377 struct ata_port *ap = link->ap;
1378 struct ahci_host_priv *hpriv = ap->host->private_data;
xiangliang yu89dafa22013-10-27 08:03:04 -04001379 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001380 const char *reason = NULL;
1381 unsigned long now, msecs;
1382 struct ata_taskfile tf;
xiangliang yu89dafa22013-10-27 08:03:04 -04001383 bool fbs_disabled = false;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001384 int rc;
1385
1386 DPRINTK("ENTER\n");
1387
1388 /* prepare for SRST (AHCI-1.1 10.4.1) */
1389 rc = ahci_kick_engine(ap);
1390 if (rc && rc != -EOPNOTSUPP)
Joe Perchesa9a79df2011-04-15 15:51:59 -07001391 ata_link_warn(link, "failed to reset engine (errno=%d)\n", rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001392
xiangliang yu89dafa22013-10-27 08:03:04 -04001393 /*
1394 * According to AHCI-1.2 9.3.9: if FBS is enable, software shall
1395 * clear PxFBS.EN to '0' prior to issuing software reset to devices
1396 * that is attached to port multiplier.
1397 */
1398 if (!ata_is_host_link(link) && pp->fbs_enabled) {
1399 ahci_disable_fbs(ap);
1400 fbs_disabled = true;
1401 }
1402
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001403 ata_tf_init(link->device, &tf);
1404
1405 /* issue the first D2H Register FIS */
1406 msecs = 0;
1407 now = jiffies;
Tejun Heof1f5a802010-08-27 11:09:15 +02001408 if (time_after(deadline, now))
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001409 msecs = jiffies_to_msecs(deadline - now);
1410
1411 tf.ctl |= ATA_SRST;
1412 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
1413 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
1414 rc = -EIO;
1415 reason = "1st FIS failed";
1416 goto fail;
1417 }
1418
1419 /* spec says at least 5us, but be generous and sleep for 1ms */
Tejun Heo97750ce2010-09-06 17:56:29 +02001420 ata_msleep(ap, 1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001421
1422 /* issue the second D2H Register FIS */
1423 tf.ctl &= ~ATA_SRST;
1424 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
1425
1426 /* wait for link to become ready */
1427 rc = ata_wait_after_reset(link, deadline, check_ready);
1428 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1429 /*
1430 * Workaround for cases where link online status can't
1431 * be trusted. Treat device readiness timeout as link
1432 * offline.
1433 */
Joe Perchesa9a79df2011-04-15 15:51:59 -07001434 ata_link_info(link, "device not ready, treating as offline\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001435 *class = ATA_DEV_NONE;
1436 } else if (rc) {
1437 /* link occupied, -ENODEV too is an error */
1438 reason = "device not ready";
1439 goto fail;
1440 } else
1441 *class = ahci_dev_classify(ap);
1442
xiangliang yu89dafa22013-10-27 08:03:04 -04001443 /* re-enable FBS if disabled before */
1444 if (fbs_disabled)
1445 ahci_enable_fbs(ap);
1446
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001447 DPRINTK("EXIT, class=%u\n", *class);
1448 return 0;
1449
1450 fail:
Joe Perchesa9a79df2011-04-15 15:51:59 -07001451 ata_link_err(link, "softreset failed (%s)\n", reason);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001452 return rc;
1453}
1454
1455int ahci_check_ready(struct ata_link *link)
1456{
1457 void __iomem *port_mmio = ahci_port_base(link->ap);
1458 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1459
1460 return ata_check_ready(status);
1461}
1462EXPORT_SYMBOL_GPL(ahci_check_ready);
1463
1464static int ahci_softreset(struct ata_link *link, unsigned int *class,
1465 unsigned long deadline)
1466{
1467 int pmp = sata_srst_pmp(link);
1468
1469 DPRINTK("ENTER\n");
1470
1471 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1472}
1473EXPORT_SYMBOL_GPL(ahci_do_softreset);
1474
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001475static int ahci_bad_pmp_check_ready(struct ata_link *link)
1476{
1477 void __iomem *port_mmio = ahci_port_base(link->ap);
1478 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1479 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1480
1481 /*
1482 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1483 * which can save timeout delay.
1484 */
1485 if (irq_status & PORT_IRQ_BAD_PMP)
1486 return -EIO;
1487
1488 return ata_check_ready(status);
1489}
1490
Daeseok Youn35186d02014-02-20 08:34:27 +09001491static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
1492 unsigned long deadline)
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001493{
1494 struct ata_port *ap = link->ap;
1495 void __iomem *port_mmio = ahci_port_base(ap);
1496 int pmp = sata_srst_pmp(link);
1497 int rc;
1498 u32 irq_sts;
1499
1500 DPRINTK("ENTER\n");
1501
1502 rc = ahci_do_softreset(link, class, pmp, deadline,
1503 ahci_bad_pmp_check_ready);
1504
1505 /*
1506 * Soft reset fails with IPMS set when PMP is enabled but
1507 * SATA HDD/ODD is connected to SATA port, do soft reset
1508 * again to port 0.
1509 */
1510 if (rc == -EIO) {
1511 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1512 if (irq_sts & PORT_IRQ_BAD_PMP) {
Wei Yongjun39f80ac2012-12-03 23:39:31 -05001513 ata_link_warn(link,
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001514 "applying PMP SRST workaround "
1515 "and retrying\n");
1516 rc = ahci_do_softreset(link, class, 0, deadline,
1517 ahci_check_ready);
1518 }
1519 }
1520
1521 return rc;
1522}
1523
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001524static int ahci_hardreset(struct ata_link *link, unsigned int *class,
1525 unsigned long deadline)
1526{
1527 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
1528 struct ata_port *ap = link->ap;
1529 struct ahci_port_priv *pp = ap->private_data;
Hans de Goede039ece32014-02-22 16:53:30 +01001530 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001531 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1532 struct ata_taskfile tf;
1533 bool online;
1534 int rc;
1535
1536 DPRINTK("ENTER\n");
1537
1538 ahci_stop_engine(ap);
1539
1540 /* clear D2H reception area to properly wait for D2H FIS */
1541 ata_tf_init(link->device, &tf);
Sergei Shtylyov9bbb1b02013-06-23 01:39:39 +04001542 tf.command = ATA_BUSY;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001543 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1544
1545 rc = sata_link_hardreset(link, timing, deadline, &online,
1546 ahci_check_ready);
1547
Hans de Goede039ece32014-02-22 16:53:30 +01001548 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001549
1550 if (online)
1551 *class = ahci_dev_classify(ap);
1552
1553 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1554 return rc;
1555}
1556
1557static void ahci_postreset(struct ata_link *link, unsigned int *class)
1558{
1559 struct ata_port *ap = link->ap;
1560 void __iomem *port_mmio = ahci_port_base(ap);
1561 u32 new_tmp, tmp;
1562
1563 ata_std_postreset(link, class);
1564
1565 /* Make sure port's ATAPI bit is set appropriately */
1566 new_tmp = tmp = readl(port_mmio + PORT_CMD);
1567 if (*class == ATA_DEV_ATAPI)
1568 new_tmp |= PORT_CMD_ATAPI;
1569 else
1570 new_tmp &= ~PORT_CMD_ATAPI;
1571 if (new_tmp != tmp) {
1572 writel(new_tmp, port_mmio + PORT_CMD);
1573 readl(port_mmio + PORT_CMD); /* flush */
1574 }
1575}
1576
1577static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
1578{
1579 struct scatterlist *sg;
1580 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1581 unsigned int si;
1582
1583 VPRINTK("ENTER\n");
1584
1585 /*
1586 * Next, the S/G list.
1587 */
1588 for_each_sg(qc->sg, sg, qc->n_elem, si) {
1589 dma_addr_t addr = sg_dma_address(sg);
1590 u32 sg_len = sg_dma_len(sg);
1591
1592 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1593 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1594 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
1595 }
1596
1597 return si;
1598}
1599
1600static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
1601{
1602 struct ata_port *ap = qc->ap;
1603 struct ahci_port_priv *pp = ap->private_data;
1604
1605 if (!sata_pmp_attached(ap) || pp->fbs_enabled)
1606 return ata_std_qc_defer(qc);
1607 else
1608 return sata_pmp_qc_defer_cmd_switch(qc);
1609}
1610
1611static void ahci_qc_prep(struct ata_queued_cmd *qc)
1612{
1613 struct ata_port *ap = qc->ap;
1614 struct ahci_port_priv *pp = ap->private_data;
1615 int is_atapi = ata_is_atapi(qc->tf.protocol);
1616 void *cmd_tbl;
1617 u32 opts;
1618 const u32 cmd_fis_len = 5; /* five dwords */
1619 unsigned int n_elem;
1620
1621 /*
1622 * Fill in command table information. First, the header,
1623 * a SATA Register - Host to Device command FIS.
1624 */
1625 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1626
1627 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
1628 if (is_atapi) {
1629 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1630 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
1631 }
1632
1633 n_elem = 0;
1634 if (qc->flags & ATA_QCFLAG_DMAMAP)
1635 n_elem = ahci_fill_sg(qc, cmd_tbl);
1636
1637 /*
1638 * Fill in command slot information.
1639 */
1640 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
1641 if (qc->tf.flags & ATA_TFLAG_WRITE)
1642 opts |= AHCI_CMD_WRITE;
1643 if (is_atapi)
1644 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
1645
1646 ahci_fill_cmd_slot(pp, qc->tag, opts);
1647}
1648
1649static void ahci_fbs_dec_intr(struct ata_port *ap)
1650{
1651 struct ahci_port_priv *pp = ap->private_data;
1652 void __iomem *port_mmio = ahci_port_base(ap);
1653 u32 fbs = readl(port_mmio + PORT_FBS);
1654 int retries = 3;
1655
1656 DPRINTK("ENTER\n");
1657 BUG_ON(!pp->fbs_enabled);
1658
1659 /* time to wait for DEC is not specified by AHCI spec,
1660 * add a retry loop for safety.
1661 */
1662 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
1663 fbs = readl(port_mmio + PORT_FBS);
1664 while ((fbs & PORT_FBS_DEC) && retries--) {
1665 udelay(1);
1666 fbs = readl(port_mmio + PORT_FBS);
1667 }
1668
1669 if (fbs & PORT_FBS_DEC)
Joe Perchesa44fec12011-04-15 15:51:58 -07001670 dev_err(ap->host->dev, "failed to clear device error\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001671}
1672
1673static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
1674{
1675 struct ahci_host_priv *hpriv = ap->host->private_data;
1676 struct ahci_port_priv *pp = ap->private_data;
1677 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1678 struct ata_link *link = NULL;
1679 struct ata_queued_cmd *active_qc;
1680 struct ata_eh_info *active_ehi;
1681 bool fbs_need_dec = false;
1682 u32 serror;
1683
1684 /* determine active link with error */
1685 if (pp->fbs_enabled) {
1686 void __iomem *port_mmio = ahci_port_base(ap);
1687 u32 fbs = readl(port_mmio + PORT_FBS);
1688 int pmp = fbs >> PORT_FBS_DWE_OFFSET;
1689
Shane Huang912b9ac2013-06-08 16:00:16 +08001690 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links)) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001691 link = &ap->pmp_link[pmp];
1692 fbs_need_dec = true;
1693 }
1694
1695 } else
1696 ata_for_each_link(link, ap, EDGE)
1697 if (ata_link_active(link))
1698 break;
1699
1700 if (!link)
1701 link = &ap->link;
1702
1703 active_qc = ata_qc_from_tag(ap, link->active_tag);
1704 active_ehi = &link->eh_info;
1705
1706 /* record irq stat */
1707 ata_ehi_clear_desc(host_ehi);
1708 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
1709
1710 /* AHCI needs SError cleared; otherwise, it might lock up */
1711 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
1712 ahci_scr_write(&ap->link, SCR_ERROR, serror);
1713 host_ehi->serror |= serror;
1714
1715 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
1716 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
1717 irq_stat &= ~PORT_IRQ_IF_ERR;
1718
1719 if (irq_stat & PORT_IRQ_TF_ERR) {
1720 /* If qc is active, charge it; otherwise, the active
1721 * link. There's no active qc on NCQ errors. It will
1722 * be determined by EH by reading log page 10h.
1723 */
1724 if (active_qc)
1725 active_qc->err_mask |= AC_ERR_DEV;
1726 else
1727 active_ehi->err_mask |= AC_ERR_DEV;
1728
1729 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
1730 host_ehi->serror &= ~SERR_INTERNAL;
1731 }
1732
1733 if (irq_stat & PORT_IRQ_UNK_FIS) {
Joe Perchesd5185d62014-03-26 09:34:49 -07001734 u32 *unk = pp->rx_fis + RX_FIS_UNK;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001735
1736 active_ehi->err_mask |= AC_ERR_HSM;
1737 active_ehi->action |= ATA_EH_RESET;
1738 ata_ehi_push_desc(active_ehi,
1739 "unknown FIS %08x %08x %08x %08x" ,
1740 unk[0], unk[1], unk[2], unk[3]);
1741 }
1742
1743 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
1744 active_ehi->err_mask |= AC_ERR_HSM;
1745 active_ehi->action |= ATA_EH_RESET;
1746 ata_ehi_push_desc(active_ehi, "incorrect PMP");
1747 }
1748
1749 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1750 host_ehi->err_mask |= AC_ERR_HOST_BUS;
1751 host_ehi->action |= ATA_EH_RESET;
1752 ata_ehi_push_desc(host_ehi, "host bus error");
1753 }
1754
1755 if (irq_stat & PORT_IRQ_IF_ERR) {
1756 if (fbs_need_dec)
1757 active_ehi->err_mask |= AC_ERR_DEV;
1758 else {
1759 host_ehi->err_mask |= AC_ERR_ATA_BUS;
1760 host_ehi->action |= ATA_EH_RESET;
1761 }
1762
1763 ata_ehi_push_desc(host_ehi, "interface fatal error");
1764 }
1765
1766 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1767 ata_ehi_hotplugged(host_ehi);
1768 ata_ehi_push_desc(host_ehi, "%s",
1769 irq_stat & PORT_IRQ_CONNECT ?
1770 "connection status changed" : "PHY RDY changed");
1771 }
1772
1773 /* okay, let's hand over to EH */
1774
1775 if (irq_stat & PORT_IRQ_FREEZE)
1776 ata_port_freeze(ap);
1777 else if (fbs_need_dec) {
1778 ata_link_abort(link);
1779 ahci_fbs_dec_intr(ap);
1780 } else
1781 ata_port_abort(ap);
1782}
1783
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001784static void ahci_handle_port_interrupt(struct ata_port *ap,
1785 void __iomem *port_mmio, u32 status)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001786{
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001787 struct ata_eh_info *ehi = &ap->link.eh_info;
1788 struct ahci_port_priv *pp = ap->private_data;
1789 struct ahci_host_priv *hpriv = ap->host->private_data;
1790 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001791 u32 qc_active = 0;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001792 int rc;
1793
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001794 /* ignore BAD_PMP while resetting */
1795 if (unlikely(resetting))
1796 status &= ~PORT_IRQ_BAD_PMP;
1797
Gabriele Mazzotta8393b812015-04-25 19:52:36 +02001798 if (sata_lpm_ignore_phy_events(&ap->link)) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001799 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo6b7ae952010-09-01 17:50:06 +02001800 ahci_scr_write(&ap->link, SCR_ERROR, SERR_PHYRDY_CHG);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001801 }
1802
1803 if (unlikely(status & PORT_IRQ_ERROR)) {
1804 ahci_error_intr(ap, status);
1805 return;
1806 }
1807
1808 if (status & PORT_IRQ_SDB_FIS) {
1809 /* If SNotification is available, leave notification
1810 * handling to sata_async_notification(). If not,
1811 * emulate it by snooping SDB FIS RX area.
1812 *
1813 * Snooping FIS RX area is probably cheaper than
1814 * poking SNotification but some constrollers which
1815 * implement SNotification, ICH9 for example, don't
1816 * store AN SDB FIS into receive area.
1817 */
1818 if (hpriv->cap & HOST_CAP_SNTF)
1819 sata_async_notification(ap);
1820 else {
1821 /* If the 'N' bit in word 0 of the FIS is set,
1822 * we just received asynchronous notification.
1823 * Tell libata about it.
1824 *
1825 * Lack of SNotification should not appear in
1826 * ahci 1.2, so the workaround is unnecessary
1827 * when FBS is enabled.
1828 */
1829 if (pp->fbs_enabled)
1830 WARN_ON_ONCE(1);
1831 else {
1832 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
1833 u32 f0 = le32_to_cpu(f[0]);
1834 if (f0 & (1 << 15))
1835 sata_async_notification(ap);
1836 }
1837 }
1838 }
1839
1840 /* pp->active_link is not reliable once FBS is enabled, both
1841 * PORT_SCR_ACT and PORT_CMD_ISSUE should be checked because
1842 * NCQ and non-NCQ commands may be in flight at the same time.
1843 */
1844 if (pp->fbs_enabled) {
1845 if (ap->qc_active) {
1846 qc_active = readl(port_mmio + PORT_SCR_ACT);
1847 qc_active |= readl(port_mmio + PORT_CMD_ISSUE);
1848 }
1849 } else {
1850 /* pp->active_link is valid iff any command is in flight */
1851 if (ap->qc_active && pp->active_link->sactive)
1852 qc_active = readl(port_mmio + PORT_SCR_ACT);
1853 else
1854 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
1855 }
1856
1857
1858 rc = ata_qc_complete_multiple(ap, qc_active);
1859
1860 /* while resetting, invalid completions are expected */
1861 if (unlikely(rc < 0 && !resetting)) {
1862 ehi->err_mask |= AC_ERR_HSM;
1863 ehi->action |= ATA_EH_RESET;
1864 ata_port_freeze(ap);
1865 }
1866}
1867
Tejun Heo7865f832014-10-27 09:50:36 -04001868static void ahci_port_intr(struct ata_port *ap)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001869{
1870 void __iomem *port_mmio = ahci_port_base(ap);
1871 u32 status;
1872
1873 status = readl(port_mmio + PORT_IRQ_STAT);
1874 writel(status, port_mmio + PORT_IRQ_STAT);
1875
Tejun Heo7865f832014-10-27 09:50:36 -04001876 ahci_handle_port_interrupt(ap, port_mmio, status);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001877}
1878
Dan Williamsa6b7fb72015-11-11 16:27:38 -08001879static irqreturn_t ahci_multi_irqs_intr_hard(int irq, void *dev_instance)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001880{
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001881 struct ata_port *ap = dev_instance;
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001882 void __iomem *port_mmio = ahci_port_base(ap);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001883 u32 status;
1884
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001885 VPRINTK("ENTER\n");
1886
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001887 status = readl(port_mmio + PORT_IRQ_STAT);
1888 writel(status, port_mmio + PORT_IRQ_STAT);
1889
Dan Williamsa6b7fb72015-11-11 16:27:38 -08001890 spin_lock(ap->lock);
1891 ahci_handle_port_interrupt(ap, port_mmio, status);
1892 spin_unlock(ap->lock);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001893
1894 VPRINTK("EXIT\n");
1895
Dan Williamsa6b7fb72015-11-11 16:27:38 -08001896 return IRQ_HANDLED;
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001897}
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001898
Suman Tripathif070d672016-02-06 11:25:22 +05301899u32 ahci_handle_port_intr(struct ata_host *host, u32 irq_masked)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001900{
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001901 unsigned int i, handled = 0;
Tejun Heo03e83cb2014-10-27 12:00:01 -04001902
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001903 for (i = 0; i < host->n_ports; i++) {
1904 struct ata_port *ap;
1905
1906 if (!(irq_masked & (1 << i)))
1907 continue;
1908
1909 ap = host->ports[i];
1910 if (ap) {
Tejun Heo7865f832014-10-27 09:50:36 -04001911 ahci_port_intr(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001912 VPRINTK("port %u\n", i);
1913 } else {
1914 VPRINTK("port %u (no irq)\n", i);
1915 if (ata_ratelimit())
Joe Perchesa44fec12011-04-15 15:51:58 -07001916 dev_warn(host->dev,
1917 "interrupt on disabled port %u\n", i);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001918 }
1919
1920 handled = 1;
1921 }
1922
Suman Tripathia129db82015-05-06 00:51:10 +05301923 return handled;
1924}
Suman Tripathif070d672016-02-06 11:25:22 +05301925EXPORT_SYMBOL_GPL(ahci_handle_port_intr);
Suman Tripathia129db82015-05-06 00:51:10 +05301926
1927static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance)
1928{
1929 struct ata_host *host = dev_instance;
1930 struct ahci_host_priv *hpriv;
1931 unsigned int rc = 0;
1932 void __iomem *mmio;
1933 u32 irq_stat, irq_masked;
1934
1935 VPRINTK("ENTER\n");
1936
1937 hpriv = host->private_data;
1938 mmio = hpriv->mmio;
1939
1940 /* sigh. 0xffffffff is a valid return from h/w */
1941 irq_stat = readl(mmio + HOST_IRQ_STAT);
1942 if (!irq_stat)
1943 return IRQ_NONE;
1944
1945 irq_masked = irq_stat & hpriv->port_map;
1946
1947 spin_lock(&host->lock);
1948
1949 rc = ahci_handle_port_intr(host, irq_masked);
1950
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001951 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
1952 * it should be cleared after all the port events are cleared;
1953 * otherwise, it will raise a spurious interrupt after each
1954 * valid one. Please read section 10.6.2 of ahci 1.1 for more
1955 * information.
1956 *
1957 * Also, use the unmasked value to clear interrupt as spurious
1958 * pending event on a dummy port might cause screaming IRQ.
1959 */
1960 writel(irq_stat, mmio + HOST_IRQ_STAT);
1961
Tejun Heo03e83cb2014-10-27 12:00:01 -04001962 spin_unlock(&host->lock);
1963
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001964 VPRINTK("EXIT\n");
1965
Suman Tripathia129db82015-05-06 00:51:10 +05301966 return IRQ_RETVAL(rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001967}
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001968
Suman Tripathi39e0ee92014-07-07 22:33:04 +05301969unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001970{
1971 struct ata_port *ap = qc->ap;
1972 void __iomem *port_mmio = ahci_port_base(ap);
1973 struct ahci_port_priv *pp = ap->private_data;
1974
1975 /* Keep track of the currently active link. It will be used
1976 * in completion path to determine whether NCQ phase is in
1977 * progress.
1978 */
1979 pp->active_link = qc->dev->link;
1980
Hannes Reinecke179b3102016-07-14 09:05:43 +09001981 if (ata_is_ncq(qc->tf.protocol))
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001982 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
1983
1984 if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
1985 u32 fbs = readl(port_mmio + PORT_FBS);
1986 fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
1987 fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
1988 writel(fbs, port_mmio + PORT_FBS);
1989 pp->fbs_last_dev = qc->dev->link->pmp;
1990 }
1991
1992 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
1993
1994 ahci_sw_activity(qc->dev->link);
1995
1996 return 0;
1997}
Suman Tripathi39e0ee92014-07-07 22:33:04 +05301998EXPORT_SYMBOL_GPL(ahci_qc_issue);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001999
2000static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2001{
2002 struct ahci_port_priv *pp = qc->ap->private_data;
Tejun Heo6ad60192010-10-15 11:00:08 +02002003 u8 *rx_fis = pp->rx_fis;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002004
2005 if (pp->fbs_enabled)
Tejun Heo6ad60192010-10-15 11:00:08 +02002006 rx_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002007
Tejun Heo6ad60192010-10-15 11:00:08 +02002008 /*
2009 * After a successful execution of an ATA PIO data-in command,
2010 * the device doesn't send D2H Reg FIS to update the TF and
2011 * the host should take TF and E_Status from the preceding PIO
2012 * Setup FIS.
2013 */
2014 if (qc->tf.protocol == ATA_PROT_PIO && qc->dma_dir == DMA_FROM_DEVICE &&
2015 !(qc->flags & ATA_QCFLAG_FAILED)) {
2016 ata_tf_from_fis(rx_fis + RX_FIS_PIO_SETUP, &qc->result_tf);
2017 qc->result_tf.command = (rx_fis + RX_FIS_PIO_SETUP)[15];
2018 } else
2019 ata_tf_from_fis(rx_fis + RX_FIS_D2H_REG, &qc->result_tf);
2020
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002021 return true;
2022}
2023
2024static void ahci_freeze(struct ata_port *ap)
2025{
2026 void __iomem *port_mmio = ahci_port_base(ap);
2027
2028 /* turn IRQ off */
2029 writel(0, port_mmio + PORT_IRQ_MASK);
2030}
2031
2032static void ahci_thaw(struct ata_port *ap)
2033{
2034 struct ahci_host_priv *hpriv = ap->host->private_data;
2035 void __iomem *mmio = hpriv->mmio;
2036 void __iomem *port_mmio = ahci_port_base(ap);
2037 u32 tmp;
2038 struct ahci_port_priv *pp = ap->private_data;
2039
2040 /* clear IRQ */
2041 tmp = readl(port_mmio + PORT_IRQ_STAT);
2042 writel(tmp, port_mmio + PORT_IRQ_STAT);
2043 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
2044
2045 /* turn IRQ back on */
2046 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
2047}
2048
Richard Zhu8b789d82013-10-15 10:44:54 +08002049void ahci_error_handler(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002050{
Hans de Goede039ece32014-02-22 16:53:30 +01002051 struct ahci_host_priv *hpriv = ap->host->private_data;
2052
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002053 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
2054 /* restart engine */
2055 ahci_stop_engine(ap);
Hans de Goede039ece32014-02-22 16:53:30 +01002056 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002057 }
2058
2059 sata_pmp_error_handler(ap);
Tejun Heo0ee71952010-06-07 15:15:08 +02002060
2061 if (!ata_dev_enabled(ap->link.device))
2062 ahci_stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002063}
Richard Zhu8b789d82013-10-15 10:44:54 +08002064EXPORT_SYMBOL_GPL(ahci_error_handler);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002065
2066static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2067{
2068 struct ata_port *ap = qc->ap;
2069
2070 /* make DMA engine forget about the failed command */
2071 if (qc->flags & ATA_QCFLAG_FAILED)
2072 ahci_kick_engine(ap);
2073}
2074
Shane Huang65fe1f02012-09-07 22:40:01 +08002075static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep)
2076{
Hans de Goede039ece32014-02-22 16:53:30 +01002077 struct ahci_host_priv *hpriv = ap->host->private_data;
Shane Huang65fe1f02012-09-07 22:40:01 +08002078 void __iomem *port_mmio = ahci_port_base(ap);
2079 struct ata_device *dev = ap->link.device;
2080 u32 devslp, dm, dito, mdat, deto;
2081 int rc;
2082 unsigned int err_mask;
2083
2084 devslp = readl(port_mmio + PORT_DEVSLP);
2085 if (!(devslp & PORT_DEVSLP_DSP)) {
Gabriele Mazzotta95bbbe92015-01-08 19:41:34 +01002086 dev_info(ap->host->dev, "port does not support device sleep\n");
Shane Huang65fe1f02012-09-07 22:40:01 +08002087 return;
2088 }
2089
2090 /* disable device sleep */
2091 if (!sleep) {
2092 if (devslp & PORT_DEVSLP_ADSE) {
2093 writel(devslp & ~PORT_DEVSLP_ADSE,
2094 port_mmio + PORT_DEVSLP);
2095 err_mask = ata_dev_set_feature(dev,
2096 SETFEATURES_SATA_DISABLE,
2097 SATA_DEVSLP);
2098 if (err_mask && err_mask != AC_ERR_DEV)
2099 ata_dev_warn(dev, "failed to disable DEVSLP\n");
2100 }
2101 return;
2102 }
2103
2104 /* device sleep was already enabled */
2105 if (devslp & PORT_DEVSLP_ADSE)
2106 return;
2107
2108 /* set DITO, MDAT, DETO and enable DevSlp, need to stop engine first */
2109 rc = ahci_stop_engine(ap);
2110 if (rc)
2111 return;
2112
2113 dm = (devslp & PORT_DEVSLP_DM_MASK) >> PORT_DEVSLP_DM_OFFSET;
2114 dito = devslp_idle_timeout / (dm + 1);
2115 if (dito > 0x3ff)
2116 dito = 0x3ff;
2117
2118 /* Use the nominal value 10 ms if the read MDAT is zero,
2119 * the nominal value of DETO is 20 ms.
2120 */
Shane Huang803739d2012-12-17 23:18:59 +08002121 if (dev->devslp_timing[ATA_LOG_DEVSLP_VALID] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002122 ATA_LOG_DEVSLP_VALID_MASK) {
Shane Huang803739d2012-12-17 23:18:59 +08002123 mdat = dev->devslp_timing[ATA_LOG_DEVSLP_MDAT] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002124 ATA_LOG_DEVSLP_MDAT_MASK;
2125 if (!mdat)
2126 mdat = 10;
Shane Huang803739d2012-12-17 23:18:59 +08002127 deto = dev->devslp_timing[ATA_LOG_DEVSLP_DETO];
Shane Huang65fe1f02012-09-07 22:40:01 +08002128 if (!deto)
2129 deto = 20;
2130 } else {
2131 mdat = 10;
2132 deto = 20;
2133 }
2134
Srinivas Pandruvadac9b2ba42018-07-02 12:01:53 -07002135 /* Make dito, mdat, deto bits to 0s */
2136 devslp &= ~GENMASK_ULL(24, 2);
Shane Huang65fe1f02012-09-07 22:40:01 +08002137 devslp |= ((dito << PORT_DEVSLP_DITO_OFFSET) |
2138 (mdat << PORT_DEVSLP_MDAT_OFFSET) |
2139 (deto << PORT_DEVSLP_DETO_OFFSET) |
2140 PORT_DEVSLP_ADSE);
2141 writel(devslp, port_mmio + PORT_DEVSLP);
2142
Hans de Goede039ece32014-02-22 16:53:30 +01002143 hpriv->start_engine(ap);
Shane Huang65fe1f02012-09-07 22:40:01 +08002144
2145 /* enable device sleep feature for the drive */
2146 err_mask = ata_dev_set_feature(dev,
2147 SETFEATURES_SATA_ENABLE,
2148 SATA_DEVSLP);
2149 if (err_mask && err_mask != AC_ERR_DEV)
2150 ata_dev_warn(dev, "failed to enable DEVSLP\n");
2151}
2152
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002153static void ahci_enable_fbs(struct ata_port *ap)
2154{
Hans de Goede039ece32014-02-22 16:53:30 +01002155 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002156 struct ahci_port_priv *pp = ap->private_data;
2157 void __iomem *port_mmio = ahci_port_base(ap);
2158 u32 fbs;
2159 int rc;
2160
2161 if (!pp->fbs_supported)
2162 return;
2163
2164 fbs = readl(port_mmio + PORT_FBS);
2165 if (fbs & PORT_FBS_EN) {
2166 pp->fbs_enabled = true;
2167 pp->fbs_last_dev = -1; /* initialization */
2168 return;
2169 }
2170
2171 rc = ahci_stop_engine(ap);
2172 if (rc)
2173 return;
2174
2175 writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2176 fbs = readl(port_mmio + PORT_FBS);
2177 if (fbs & PORT_FBS_EN) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002178 dev_info(ap->host->dev, "FBS is enabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002179 pp->fbs_enabled = true;
2180 pp->fbs_last_dev = -1; /* initialization */
2181 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002182 dev_err(ap->host->dev, "Failed to enable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002183
Hans de Goede039ece32014-02-22 16:53:30 +01002184 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002185}
2186
2187static void ahci_disable_fbs(struct ata_port *ap)
2188{
Hans de Goede039ece32014-02-22 16:53:30 +01002189 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002190 struct ahci_port_priv *pp = ap->private_data;
2191 void __iomem *port_mmio = ahci_port_base(ap);
2192 u32 fbs;
2193 int rc;
2194
2195 if (!pp->fbs_supported)
2196 return;
2197
2198 fbs = readl(port_mmio + PORT_FBS);
2199 if ((fbs & PORT_FBS_EN) == 0) {
2200 pp->fbs_enabled = false;
2201 return;
2202 }
2203
2204 rc = ahci_stop_engine(ap);
2205 if (rc)
2206 return;
2207
2208 writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2209 fbs = readl(port_mmio + PORT_FBS);
2210 if (fbs & PORT_FBS_EN)
Joe Perchesa44fec12011-04-15 15:51:58 -07002211 dev_err(ap->host->dev, "Failed to disable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002212 else {
Joe Perchesa44fec12011-04-15 15:51:58 -07002213 dev_info(ap->host->dev, "FBS is disabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002214 pp->fbs_enabled = false;
2215 }
2216
Hans de Goede039ece32014-02-22 16:53:30 +01002217 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002218}
2219
2220static void ahci_pmp_attach(struct ata_port *ap)
2221{
2222 void __iomem *port_mmio = ahci_port_base(ap);
2223 struct ahci_port_priv *pp = ap->private_data;
2224 u32 cmd;
2225
2226 cmd = readl(port_mmio + PORT_CMD);
2227 cmd |= PORT_CMD_PMP;
2228 writel(cmd, port_mmio + PORT_CMD);
2229
2230 ahci_enable_fbs(ap);
2231
2232 pp->intr_mask |= PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002233
2234 /*
2235 * We must not change the port interrupt mask register if the
2236 * port is marked frozen, the value in pp->intr_mask will be
2237 * restored later when the port is thawed.
2238 *
2239 * Note that during initialization, the port is marked as
2240 * frozen since the irq handler is not yet registered.
2241 */
2242 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2243 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002244}
2245
2246static void ahci_pmp_detach(struct ata_port *ap)
2247{
2248 void __iomem *port_mmio = ahci_port_base(ap);
2249 struct ahci_port_priv *pp = ap->private_data;
2250 u32 cmd;
2251
2252 ahci_disable_fbs(ap);
2253
2254 cmd = readl(port_mmio + PORT_CMD);
2255 cmd &= ~PORT_CMD_PMP;
2256 writel(cmd, port_mmio + PORT_CMD);
2257
2258 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002259
2260 /* see comment above in ahci_pmp_attach() */
2261 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2262 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002263}
2264
David Milburn02cdfcf2010-11-12 15:38:21 -06002265int ahci_port_resume(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002266{
Mika Westerbergbb03c642016-02-18 10:54:16 +02002267 ahci_rpm_get_port(ap);
2268
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002269 ahci_power_up(ap);
2270 ahci_start_port(ap);
2271
2272 if (sata_pmp_attached(ap))
2273 ahci_pmp_attach(ap);
2274 else
2275 ahci_pmp_detach(ap);
2276
2277 return 0;
2278}
David Milburn02cdfcf2010-11-12 15:38:21 -06002279EXPORT_SYMBOL_GPL(ahci_port_resume);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002280
2281#ifdef CONFIG_PM
2282static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2283{
2284 const char *emsg = NULL;
2285 int rc;
2286
2287 rc = ahci_deinit_port(ap, &emsg);
2288 if (rc == 0)
2289 ahci_power_down(ap);
2290 else {
Joe Perchesa9a79df2011-04-15 15:51:59 -07002291 ata_port_err(ap, "%s (%d)\n", emsg, rc);
Tejun Heo7faa33d2011-07-22 11:41:26 +02002292 ata_port_freeze(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002293 }
2294
Mika Westerbergbb03c642016-02-18 10:54:16 +02002295 ahci_rpm_put_port(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002296 return rc;
2297}
2298#endif
2299
2300static int ahci_port_start(struct ata_port *ap)
2301{
2302 struct ahci_host_priv *hpriv = ap->host->private_data;
2303 struct device *dev = ap->host->dev;
2304 struct ahci_port_priv *pp;
2305 void *mem;
2306 dma_addr_t mem_dma;
2307 size_t dma_sz, rx_fis_sz;
2308
2309 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
2310 if (!pp)
2311 return -ENOMEM;
2312
Alexander Gordeevb29900e2013-05-22 08:53:48 +09002313 if (ap->host->n_ports > 1) {
2314 pp->irq_desc = devm_kzalloc(dev, 8, GFP_KERNEL);
2315 if (!pp->irq_desc) {
2316 devm_kfree(dev, pp);
2317 return -ENOMEM;
2318 }
2319 snprintf(pp->irq_desc, 8,
2320 "%s%d", dev_driver_string(dev), ap->port_no);
2321 }
2322
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002323 /* check FBS capability */
2324 if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2325 void __iomem *port_mmio = ahci_port_base(ap);
2326 u32 cmd = readl(port_mmio + PORT_CMD);
2327 if (cmd & PORT_CMD_FBSCP)
2328 pp->fbs_supported = true;
Tejun Heo5f173102010-07-24 16:53:48 +02002329 else if (hpriv->flags & AHCI_HFLAG_YES_FBS) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002330 dev_info(dev, "port %d can do FBS, forcing FBSCP\n",
2331 ap->port_no);
Tejun Heo5f173102010-07-24 16:53:48 +02002332 pp->fbs_supported = true;
2333 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002334 dev_warn(dev, "port %d is not capable of FBS\n",
2335 ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002336 }
2337
2338 if (pp->fbs_supported) {
2339 dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2340 rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2341 } else {
2342 dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2343 rx_fis_sz = AHCI_RX_FIS_SZ;
2344 }
2345
2346 mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
2347 if (!mem)
2348 return -ENOMEM;
2349 memset(mem, 0, dma_sz);
2350
2351 /*
2352 * First item in chunk of DMA memory: 32-slot command table,
2353 * 32 bytes each in size
2354 */
2355 pp->cmd_slot = mem;
2356 pp->cmd_slot_dma = mem_dma;
2357
2358 mem += AHCI_CMD_SLOT_SZ;
2359 mem_dma += AHCI_CMD_SLOT_SZ;
2360
2361 /*
2362 * Second item: Received-FIS area
2363 */
2364 pp->rx_fis = mem;
2365 pp->rx_fis_dma = mem_dma;
2366
2367 mem += rx_fis_sz;
2368 mem_dma += rx_fis_sz;
2369
2370 /*
2371 * Third item: data area for storing a single command
2372 * and its scatter-gather table
2373 */
2374 pp->cmd_tbl = mem;
2375 pp->cmd_tbl_dma = mem_dma;
2376
2377 /*
2378 * Save off initial list of interrupts to be enabled.
2379 * This could be changed later
2380 */
2381 pp->intr_mask = DEF_PORT_IRQ;
2382
Tejun Heo7865f832014-10-27 09:50:36 -04002383 /*
2384 * Switch to per-port locking in case each port has its own MSI vector.
2385 */
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002386 if (hpriv->flags & AHCI_HFLAG_MULTI_MSI) {
Tejun Heo7865f832014-10-27 09:50:36 -04002387 spin_lock_init(&pp->lock);
2388 ap->lock = &pp->lock;
2389 }
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01002390
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002391 ap->private_data = pp;
2392
2393 /* engage engines, captain */
2394 return ahci_port_resume(ap);
2395}
2396
2397static void ahci_port_stop(struct ata_port *ap)
2398{
2399 const char *emsg = NULL;
Pang Raymond05169002016-07-20 12:13:46 +00002400 struct ahci_host_priv *hpriv = ap->host->private_data;
2401 void __iomem *host_mmio = hpriv->mmio;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002402 int rc;
2403
2404 /* de-initialize port */
2405 rc = ahci_deinit_port(ap, &emsg);
2406 if (rc)
Joe Perchesa9a79df2011-04-15 15:51:59 -07002407 ata_port_warn(ap, "%s (%d)\n", emsg, rc);
Pang Raymond05169002016-07-20 12:13:46 +00002408
2409 /*
2410 * Clear GHC.IS to prevent stuck INTx after disabling MSI and
2411 * re-enabling INTx.
2412 */
2413 writel(1 << ap->port_no, host_mmio + HOST_IRQ_STAT);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002414}
2415
2416void ahci_print_info(struct ata_host *host, const char *scc_s)
2417{
2418 struct ahci_host_priv *hpriv = host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002419 u32 vers, cap, cap2, impl, speed;
2420 const char *speed_s;
2421
Mika Westerberg8ea909c2016-02-18 10:54:14 +02002422 vers = hpriv->version;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002423 cap = hpriv->cap;
2424 cap2 = hpriv->cap2;
2425 impl = hpriv->port_map;
2426
2427 speed = (cap >> 20) & 0xf;
2428 if (speed == 1)
2429 speed_s = "1.5";
2430 else if (speed == 2)
2431 speed_s = "3";
2432 else if (speed == 3)
2433 speed_s = "6";
2434 else
2435 speed_s = "?";
2436
2437 dev_info(host->dev,
2438 "AHCI %02x%02x.%02x%02x "
2439 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
2440 ,
2441
2442 (vers >> 24) & 0xff,
2443 (vers >> 16) & 0xff,
2444 (vers >> 8) & 0xff,
2445 vers & 0xff,
2446
2447 ((cap >> 8) & 0x1f) + 1,
2448 (cap & 0x1f) + 1,
2449 speed_s,
2450 impl,
2451 scc_s);
2452
2453 dev_info(host->dev,
2454 "flags: "
2455 "%s%s%s%s%s%s%s"
2456 "%s%s%s%s%s%s%s"
Shane Huang65fe1f02012-09-07 22:40:01 +08002457 "%s%s%s%s%s%s%s"
2458 "%s%s\n"
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002459 ,
2460
2461 cap & HOST_CAP_64 ? "64bit " : "",
2462 cap & HOST_CAP_NCQ ? "ncq " : "",
2463 cap & HOST_CAP_SNTF ? "sntf " : "",
2464 cap & HOST_CAP_MPS ? "ilck " : "",
2465 cap & HOST_CAP_SSS ? "stag " : "",
2466 cap & HOST_CAP_ALPM ? "pm " : "",
2467 cap & HOST_CAP_LED ? "led " : "",
2468 cap & HOST_CAP_CLO ? "clo " : "",
2469 cap & HOST_CAP_ONLY ? "only " : "",
2470 cap & HOST_CAP_PMP ? "pmp " : "",
2471 cap & HOST_CAP_FBS ? "fbs " : "",
2472 cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2473 cap & HOST_CAP_SSC ? "slum " : "",
2474 cap & HOST_CAP_PART ? "part " : "",
2475 cap & HOST_CAP_CCC ? "ccc " : "",
2476 cap & HOST_CAP_EMS ? "ems " : "",
2477 cap & HOST_CAP_SXS ? "sxs " : "",
Shane Huang65fe1f02012-09-07 22:40:01 +08002478 cap2 & HOST_CAP2_DESO ? "deso " : "",
2479 cap2 & HOST_CAP2_SADM ? "sadm " : "",
2480 cap2 & HOST_CAP2_SDS ? "sds " : "",
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002481 cap2 & HOST_CAP2_APST ? "apst " : "",
2482 cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2483 cap2 & HOST_CAP2_BOH ? "boh " : ""
2484 );
2485}
2486EXPORT_SYMBOL_GPL(ahci_print_info);
2487
2488void ahci_set_em_messages(struct ahci_host_priv *hpriv,
2489 struct ata_port_info *pi)
2490{
2491 u8 messages;
2492 void __iomem *mmio = hpriv->mmio;
2493 u32 em_loc = readl(mmio + HOST_EM_LOC);
2494 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2495
2496 if (!ahci_em_messages || !(hpriv->cap & HOST_CAP_EMS))
2497 return;
2498
2499 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
2500
Harry Zhang008dbd62010-04-23 17:27:19 +08002501 if (messages) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002502 /* store em_loc */
2503 hpriv->em_loc = ((em_loc >> 16) * 4);
Harry Zhangc0623162010-04-23 17:28:38 +08002504 hpriv->em_buf_sz = ((em_loc & 0xff) * 4);
Harry Zhang008dbd62010-04-23 17:27:19 +08002505 hpriv->em_msg_type = messages;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002506 pi->flags |= ATA_FLAG_EM;
2507 if (!(em_ctl & EM_CTL_ALHD))
2508 pi->flags |= ATA_FLAG_SW_ACTIVITY;
2509 }
2510}
2511EXPORT_SYMBOL_GPL(ahci_set_em_messages);
2512
Dan Williamsd684a902015-11-11 16:27:33 -08002513static int ahci_host_activate_multi_irqs(struct ata_host *host,
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002514 struct scsi_host_template *sht)
Alexander Gordeev1c628542014-09-29 18:25:58 +02002515{
Dan Williamsd684a902015-11-11 16:27:33 -08002516 struct ahci_host_priv *hpriv = host->private_data;
Alexander Gordeev1c628542014-09-29 18:25:58 +02002517 int i, rc;
2518
2519 rc = ata_host_start(host);
2520 if (rc)
2521 return rc;
Robert Richter21bfd1a2015-05-31 13:55:18 +02002522 /*
2523 * Requests IRQs according to AHCI-1.1 when multiple MSIs were
2524 * allocated. That is one MSI per port, starting from @irq.
2525 */
Alexander Gordeev1c628542014-09-29 18:25:58 +02002526 for (i = 0; i < host->n_ports; i++) {
2527 struct ahci_port_priv *pp = host->ports[i]->private_data;
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002528 int irq = hpriv->get_irq_vector(host, i);
Alexander Gordeev1c628542014-09-29 18:25:58 +02002529
2530 /* Do not receive interrupts sent by dummy ports */
2531 if (!pp) {
Christoph Hellwig9b4b3f62016-08-11 07:26:01 -07002532 disable_irq(irq);
Alexander Gordeev1c628542014-09-29 18:25:58 +02002533 continue;
2534 }
2535
Dan Williamsa6b7fb72015-11-11 16:27:38 -08002536 rc = devm_request_irq(host->dev, irq, ahci_multi_irqs_intr_hard,
2537 0, pp->irq_desc, host->ports[i]);
2538
Alexander Gordeev1c628542014-09-29 18:25:58 +02002539 if (rc)
Dan Williams0a142b22015-10-30 17:09:35 -04002540 return rc;
Dan Williamsd684a902015-11-11 16:27:33 -08002541 ata_port_desc(host->ports[i], "irq %d", irq);
Dan Williams0a142b22015-10-30 17:09:35 -04002542 }
Dan Williamsd684a902015-11-11 16:27:33 -08002543
Dan Williams0a142b22015-10-30 17:09:35 -04002544 return ata_host_register(host, sht);
Alexander Gordeev1c628542014-09-29 18:25:58 +02002545}
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002546
2547/**
2548 * ahci_host_activate - start AHCI host, request IRQs and register it
2549 * @host: target ATA host
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002550 * @sht: scsi_host_template to use when registering the host
2551 *
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002552 * LOCKING:
2553 * Inherited from calling layer (may sleep).
2554 *
2555 * RETURNS:
2556 * 0 on success, -errno otherwise.
2557 */
Robert Richter21bfd1a2015-05-31 13:55:18 +02002558int ahci_host_activate(struct ata_host *host, struct scsi_host_template *sht)
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002559{
2560 struct ahci_host_priv *hpriv = host->private_data;
Robert Richter21bfd1a2015-05-31 13:55:18 +02002561 int irq = hpriv->irq;
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002562 int rc;
2563
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002564 if (hpriv->flags & AHCI_HFLAG_MULTI_MSI) {
Suman Tripathif070d672016-02-06 11:25:22 +05302565 if (hpriv->irq_handler)
Sander Eikelenboomd991c872016-03-20 22:27:06 +01002566 dev_warn(host->dev,
2567 "both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented\n");
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002568 if (!hpriv->get_irq_vector) {
2569 dev_err(host->dev,
2570 "AHCI_HFLAG_MULTI_MSI requires ->get_irq_vector!\n");
2571 return -EIO;
2572 }
Suman Tripathif070d672016-02-06 11:25:22 +05302573
Dan Williamsd684a902015-11-11 16:27:33 -08002574 rc = ahci_host_activate_multi_irqs(host, sht);
Suman Tripathif070d672016-02-06 11:25:22 +05302575 } else {
2576 rc = ata_host_activate(host, irq, hpriv->irq_handler,
Suman Tripathi5903b162015-05-06 00:51:11 +05302577 IRQF_SHARED, sht);
Suman Tripathif070d672016-02-06 11:25:22 +05302578 }
2579
2580
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002581 return rc;
2582}
Alexander Gordeev1c628542014-09-29 18:25:58 +02002583EXPORT_SYMBOL_GPL(ahci_host_activate);
2584
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002585MODULE_AUTHOR("Jeff Garzik");
2586MODULE_DESCRIPTION("Common AHCI SATA low-level routines");
2587MODULE_LICENSE("GPL");