blob: f79dce613e54ac2621997fc46ba7c713b6c348ac [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',
Mauro Carvalho Chehab9bb9a392017-05-16 09:16:37 -030027 * as Documentation/driver-api/libata.rst
Anton Vorontsov365cfa12010-03-28 00:22:14 -040028 *
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>
Anton Vorontsov365cfa12010-03-28 00:22:14 -040038#include <linux/blkdev.h>
39#include <linux/delay.h>
40#include <linux/interrupt.h>
41#include <linux/dma-mapping.h>
42#include <linux/device.h>
43#include <scsi/scsi_host.h>
44#include <scsi/scsi_cmnd.h>
45#include <linux/libata.h>
Dan Williamsd684a902015-11-11 16:27:33 -080046#include <linux/pci.h>
Anton Vorontsov365cfa12010-03-28 00:22:14 -040047#include "ahci.h"
Shane Huang65fe1f02012-09-07 22:40:01 +080048#include "libata.h"
Anton Vorontsov365cfa12010-03-28 00:22:14 -040049
50static int ahci_skip_host_reset;
51int ahci_ignore_sss;
52EXPORT_SYMBOL_GPL(ahci_ignore_sss);
53
54module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
55MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
56
57module_param_named(ignore_sss, ahci_ignore_sss, int, 0444);
58MODULE_PARM_DESC(ignore_sss, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
59
Tejun Heo6b7ae952010-09-01 17:50:06 +020060static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
61 unsigned hints);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040062static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
63static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
64 size_t size);
65static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
66 ssize_t size);
67
68
69
70static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
71static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040072static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
73static int ahci_port_start(struct ata_port *ap);
74static void ahci_port_stop(struct ata_port *ap);
75static void ahci_qc_prep(struct ata_queued_cmd *qc);
76static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc);
77static void ahci_freeze(struct ata_port *ap);
78static void ahci_thaw(struct ata_port *ap);
Shane Huang65fe1f02012-09-07 22:40:01 +080079static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040080static void ahci_enable_fbs(struct ata_port *ap);
81static void ahci_disable_fbs(struct ata_port *ap);
82static void ahci_pmp_attach(struct ata_port *ap);
83static void ahci_pmp_detach(struct ata_port *ap);
84static int ahci_softreset(struct ata_link *link, unsigned int *class,
85 unsigned long deadline);
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +080086static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
87 unsigned long deadline);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040088static int ahci_hardreset(struct ata_link *link, unsigned int *class,
89 unsigned long deadline);
90static void ahci_postreset(struct ata_link *link, unsigned int *class);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040091static void ahci_post_internal_cmd(struct ata_queued_cmd *qc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040092static void ahci_dev_config(struct ata_device *dev);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040093#ifdef CONFIG_PM
94static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg);
95#endif
96static ssize_t ahci_activity_show(struct ata_device *dev, char *buf);
97static ssize_t ahci_activity_store(struct ata_device *dev,
98 enum sw_activity val);
99static void ahci_init_sw_activity(struct ata_link *link);
100
101static ssize_t ahci_show_host_caps(struct device *dev,
102 struct device_attribute *attr, char *buf);
103static ssize_t ahci_show_host_cap2(struct device *dev,
104 struct device_attribute *attr, char *buf);
105static ssize_t ahci_show_host_version(struct device *dev,
106 struct device_attribute *attr, char *buf);
107static ssize_t ahci_show_port_cmd(struct device *dev,
108 struct device_attribute *attr, char *buf);
Harry Zhangc0623162010-04-23 17:28:38 +0800109static ssize_t ahci_read_em_buffer(struct device *dev,
110 struct device_attribute *attr, char *buf);
111static ssize_t ahci_store_em_buffer(struct device *dev,
112 struct device_attribute *attr,
113 const char *buf, size_t size);
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100114static ssize_t ahci_show_em_supported(struct device *dev,
115 struct device_attribute *attr, char *buf);
Suman Tripathif070d672016-02-06 11:25:22 +0530116static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400117
118static DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
119static DEVICE_ATTR(ahci_host_cap2, S_IRUGO, ahci_show_host_cap2, NULL);
120static DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
121static DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
Harry Zhangc0623162010-04-23 17:28:38 +0800122static DEVICE_ATTR(em_buffer, S_IWUSR | S_IRUGO,
123 ahci_read_em_buffer, ahci_store_em_buffer);
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100124static DEVICE_ATTR(em_message_supported, S_IRUGO, ahci_show_em_supported, NULL);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400125
Tejun Heofad16e72010-09-21 09:25:48 +0200126struct device_attribute *ahci_shost_attrs[] = {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400127 &dev_attr_link_power_management_policy,
128 &dev_attr_em_message_type,
129 &dev_attr_em_message,
130 &dev_attr_ahci_host_caps,
131 &dev_attr_ahci_host_cap2,
132 &dev_attr_ahci_host_version,
133 &dev_attr_ahci_port_cmd,
Harry Zhangc0623162010-04-23 17:28:38 +0800134 &dev_attr_em_buffer,
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100135 &dev_attr_em_message_supported,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400136 NULL
137};
Tejun Heofad16e72010-09-21 09:25:48 +0200138EXPORT_SYMBOL_GPL(ahci_shost_attrs);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400139
Tejun Heofad16e72010-09-21 09:25:48 +0200140struct device_attribute *ahci_sdev_attrs[] = {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400141 &dev_attr_sw_activity,
142 &dev_attr_unload_heads,
Adam Manzanares84f95242016-10-17 11:27:30 -0700143 &dev_attr_ncq_prio_enable,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400144 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
Doug Bergeref0da1b2017-06-21 16:20:12 -0700507 if (!(cap & HOST_CAP_ALPM) && (hpriv->flags & AHCI_HFLAG_YES_ALPM)) {
508 dev_info(dev, "controller can do ALPM, turning on CAP_ALPM\n");
509 cap |= HOST_CAP_ALPM;
510 }
511
Antoine Ténart725c7b52014-07-30 20:13:56 +0200512 if (hpriv->force_port_map && port_map != hpriv->force_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700513 dev_info(dev, "forcing port_map 0x%x -> 0x%x\n",
Antoine Ténart725c7b52014-07-30 20:13:56 +0200514 port_map, hpriv->force_port_map);
515 port_map = hpriv->force_port_map;
Srinivas Kandagatla2fd0f462016-04-01 08:52:56 +0100516 hpriv->saved_port_map = port_map;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400517 }
518
Antoine Ténart725c7b52014-07-30 20:13:56 +0200519 if (hpriv->mask_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700520 dev_warn(dev, "masking port_map 0x%x -> 0x%x\n",
521 port_map,
Antoine Ténart725c7b52014-07-30 20:13:56 +0200522 port_map & hpriv->mask_port_map);
523 port_map &= hpriv->mask_port_map;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400524 }
525
526 /* cross check port_map and cap.n_ports */
527 if (port_map) {
528 int map_ports = 0;
529
530 for (i = 0; i < AHCI_MAX_PORTS; i++)
531 if (port_map & (1 << i))
532 map_ports++;
533
534 /* If PI has more ports than n_ports, whine, clear
535 * port_map and let it be generated from n_ports.
536 */
537 if (map_ports > ahci_nr_ports(cap)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700538 dev_warn(dev,
539 "implemented port map (0x%x) contains more ports than nr_ports (%u), using nr_ports\n",
540 port_map, ahci_nr_ports(cap));
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400541 port_map = 0;
542 }
543 }
544
Tejun Heo566d1822016-01-15 15:13:05 -0500545 /* fabricate port_map from cap.nr_ports for < AHCI 1.3 */
546 if (!port_map && vers < 0x10300) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400547 port_map = (1 << ahci_nr_ports(cap)) - 1;
Joe Perchesa44fec12011-04-15 15:51:58 -0700548 dev_warn(dev, "forcing PORTS_IMPL to 0x%x\n", port_map);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400549
550 /* write the fixed up value to the PI register */
551 hpriv->saved_port_map = port_map;
552 }
553
554 /* record values to use during operation */
555 hpriv->cap = cap;
556 hpriv->cap2 = cap2;
Mika Westerberg8ea909c2016-02-18 10:54:14 +0200557 hpriv->version = readl(mmio + HOST_VERSION);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400558 hpriv->port_map = port_map;
Hans de Goede039ece32014-02-22 16:53:30 +0100559
560 if (!hpriv->start_engine)
561 hpriv->start_engine = ahci_start_engine;
Suman Tripathif070d672016-02-06 11:25:22 +0530562
Evan Wangfa89f532018-04-13 12:32:30 +0800563 if (!hpriv->stop_engine)
564 hpriv->stop_engine = ahci_stop_engine;
565
Suman Tripathif070d672016-02-06 11:25:22 +0530566 if (!hpriv->irq_handler)
Suman Tripathid867b952016-02-06 11:25:23 +0530567 hpriv->irq_handler = ahci_single_level_irq_intr;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400568}
569EXPORT_SYMBOL_GPL(ahci_save_initial_config);
570
571/**
572 * ahci_restore_initial_config - Restore initial config
573 * @host: target ATA host
574 *
575 * Restore initial config stored by ahci_save_initial_config().
576 *
577 * LOCKING:
578 * None.
579 */
580static void ahci_restore_initial_config(struct ata_host *host)
581{
582 struct ahci_host_priv *hpriv = host->private_data;
583 void __iomem *mmio = hpriv->mmio;
584
585 writel(hpriv->saved_cap, mmio + HOST_CAP);
586 if (hpriv->saved_cap2)
587 writel(hpriv->saved_cap2, mmio + HOST_CAP2);
588 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
589 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
590}
591
592static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
593{
594 static const int offset[] = {
595 [SCR_STATUS] = PORT_SCR_STAT,
596 [SCR_CONTROL] = PORT_SCR_CTL,
597 [SCR_ERROR] = PORT_SCR_ERR,
598 [SCR_ACTIVE] = PORT_SCR_ACT,
599 [SCR_NOTIFICATION] = PORT_SCR_NTF,
600 };
601 struct ahci_host_priv *hpriv = ap->host->private_data;
602
603 if (sc_reg < ARRAY_SIZE(offset) &&
604 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
605 return offset[sc_reg];
606 return 0;
607}
608
609static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
610{
611 void __iomem *port_mmio = ahci_port_base(link->ap);
612 int offset = ahci_scr_offset(link->ap, sc_reg);
613
614 if (offset) {
615 *val = readl(port_mmio + offset);
616 return 0;
617 }
618 return -EINVAL;
619}
620
621static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
622{
623 void __iomem *port_mmio = ahci_port_base(link->ap);
624 int offset = ahci_scr_offset(link->ap, sc_reg);
625
626 if (offset) {
627 writel(val, port_mmio + offset);
628 return 0;
629 }
630 return -EINVAL;
631}
632
633void ahci_start_engine(struct ata_port *ap)
634{
635 void __iomem *port_mmio = ahci_port_base(ap);
636 u32 tmp;
637
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400638 /* start DMA */
639 tmp = readl(port_mmio + PORT_CMD);
640 tmp |= PORT_CMD_START;
641 writel(tmp, port_mmio + PORT_CMD);
642 readl(port_mmio + PORT_CMD); /* flush */
643}
644EXPORT_SYMBOL_GPL(ahci_start_engine);
645
646int ahci_stop_engine(struct ata_port *ap)
647{
648 void __iomem *port_mmio = ahci_port_base(ap);
Danesh Petigarafb329632016-01-11 13:22:26 -0800649 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400650 u32 tmp;
651
Danesh Petigarafb329632016-01-11 13:22:26 -0800652 /*
653 * On some controllers, stopping a port's DMA engine while the port
654 * is in ALPM state (partial or slumber) results in failures on
655 * subsequent DMA engine starts. For those controllers, put the
656 * port back in active state before stopping its DMA engine.
657 */
658 if ((hpriv->flags & AHCI_HFLAG_WAKE_BEFORE_STOP) &&
659 (ap->link.lpm_policy > ATA_LPM_MAX_POWER) &&
660 ahci_set_lpm(&ap->link, ATA_LPM_MAX_POWER, ATA_LPM_WAKE_ONLY)) {
661 dev_err(ap->host->dev, "Failed to wake up port before engine stop\n");
662 return -EIO;
663 }
664
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400665 tmp = readl(port_mmio + PORT_CMD);
666
667 /* check if the HBA is idle */
668 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
669 return 0;
670
Stefan Roese3b61e512018-01-30 11:02:55 +0100671 /*
672 * Don't try to issue commands but return with ENODEV if the
673 * AHCI controller not available anymore (e.g. due to PCIe hot
674 * unplugging). Otherwise a 500ms delay for each port is added.
675 */
676 if (tmp == 0xffffffff) {
677 dev_err(ap->host->dev, "AHCI controller unavailable!\n");
678 return -ENODEV;
679 }
680
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400681 /* setting HBA to idle */
682 tmp &= ~PORT_CMD_START;
683 writel(tmp, port_mmio + PORT_CMD);
684
685 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo97750ce2010-09-06 17:56:29 +0200686 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400687 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
688 if (tmp & PORT_CMD_LIST_ON)
689 return -EIO;
690
691 return 0;
692}
693EXPORT_SYMBOL_GPL(ahci_stop_engine);
694
Suman Tripathi39e0ee92014-07-07 22:33:04 +0530695void ahci_start_fis_rx(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400696{
697 void __iomem *port_mmio = ahci_port_base(ap);
698 struct ahci_host_priv *hpriv = ap->host->private_data;
699 struct ahci_port_priv *pp = ap->private_data;
700 u32 tmp;
701
702 /* set FIS registers */
703 if (hpriv->cap & HOST_CAP_64)
704 writel((pp->cmd_slot_dma >> 16) >> 16,
705 port_mmio + PORT_LST_ADDR_HI);
706 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
707
708 if (hpriv->cap & HOST_CAP_64)
709 writel((pp->rx_fis_dma >> 16) >> 16,
710 port_mmio + PORT_FIS_ADDR_HI);
711 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
712
713 /* enable FIS reception */
714 tmp = readl(port_mmio + PORT_CMD);
715 tmp |= PORT_CMD_FIS_RX;
716 writel(tmp, port_mmio + PORT_CMD);
717
718 /* flush */
719 readl(port_mmio + PORT_CMD);
720}
Suman Tripathi39e0ee92014-07-07 22:33:04 +0530721EXPORT_SYMBOL_GPL(ahci_start_fis_rx);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400722
723static int ahci_stop_fis_rx(struct ata_port *ap)
724{
725 void __iomem *port_mmio = ahci_port_base(ap);
726 u32 tmp;
727
728 /* disable FIS reception */
729 tmp = readl(port_mmio + PORT_CMD);
730 tmp &= ~PORT_CMD_FIS_RX;
731 writel(tmp, port_mmio + PORT_CMD);
732
733 /* wait for completion, spec says 500ms, give it 1000 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200734 tmp = ata_wait_register(ap, port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400735 PORT_CMD_FIS_ON, 10, 1000);
736 if (tmp & PORT_CMD_FIS_ON)
737 return -EBUSY;
738
739 return 0;
740}
741
742static void ahci_power_up(struct ata_port *ap)
743{
744 struct ahci_host_priv *hpriv = ap->host->private_data;
745 void __iomem *port_mmio = ahci_port_base(ap);
746 u32 cmd;
747
748 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
749
750 /* spin up device */
751 if (hpriv->cap & HOST_CAP_SSS) {
752 cmd |= PORT_CMD_SPIN_UP;
753 writel(cmd, port_mmio + PORT_CMD);
754 }
755
756 /* wake up link */
757 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
758}
759
Tejun Heo6b7ae952010-09-01 17:50:06 +0200760static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
761 unsigned int hints)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400762{
Tejun Heo6b7ae952010-09-01 17:50:06 +0200763 struct ata_port *ap = link->ap;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400764 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400765 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400766 void __iomem *port_mmio = ahci_port_base(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400767
Tejun Heo6b7ae952010-09-01 17:50:06 +0200768 if (policy != ATA_LPM_MAX_POWER) {
Danesh Petigarafb329632016-01-11 13:22:26 -0800769 /* wakeup flag only applies to the max power policy */
770 hints &= ~ATA_LPM_WAKE_ONLY;
771
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400772 /*
Tejun Heo6b7ae952010-09-01 17:50:06 +0200773 * Disable interrupts on Phy Ready. This keeps us from
774 * getting woken up due to spurious phy ready
775 * interrupts.
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400776 */
Tejun Heo6b7ae952010-09-01 17:50:06 +0200777 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
778 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
779
780 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400781 }
782
Tejun Heo6b7ae952010-09-01 17:50:06 +0200783 if (hpriv->cap & HOST_CAP_ALPM) {
784 u32 cmd = readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400785
Tejun Heo6b7ae952010-09-01 17:50:06 +0200786 if (policy == ATA_LPM_MAX_POWER || !(hints & ATA_LPM_HIPM)) {
Danesh Petigarafb329632016-01-11 13:22:26 -0800787 if (!(hints & ATA_LPM_WAKE_ONLY))
788 cmd &= ~(PORT_CMD_ASP | PORT_CMD_ALPE);
Tejun Heo6b7ae952010-09-01 17:50:06 +0200789 cmd |= PORT_CMD_ICC_ACTIVE;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400790
Tejun Heo6b7ae952010-09-01 17:50:06 +0200791 writel(cmd, port_mmio + PORT_CMD);
792 readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400793
Tejun Heo6b7ae952010-09-01 17:50:06 +0200794 /* wait 10ms to be sure we've come out of LPM state */
Tejun Heo97750ce2010-09-06 17:56:29 +0200795 ata_msleep(ap, 10);
Danesh Petigarafb329632016-01-11 13:22:26 -0800796
797 if (hints & ATA_LPM_WAKE_ONLY)
798 return 0;
Tejun Heo6b7ae952010-09-01 17:50:06 +0200799 } else {
800 cmd |= PORT_CMD_ALPE;
801 if (policy == ATA_LPM_MIN_POWER)
802 cmd |= PORT_CMD_ASP;
Srinivas Pandruvadaa5ec5a7b2018-07-27 13:47:02 -0700803 else if (policy == ATA_LPM_MIN_POWER_WITH_PARTIAL)
804 cmd &= ~PORT_CMD_ASP;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400805
Tejun Heo6b7ae952010-09-01 17:50:06 +0200806 /* write out new cmd value */
807 writel(cmd, port_mmio + PORT_CMD);
808 }
809 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400810
Shane Huang65fe1f02012-09-07 22:40:01 +0800811 /* set aggressive device sleep */
812 if ((hpriv->cap2 & HOST_CAP2_SDS) &&
813 (hpriv->cap2 & HOST_CAP2_SADM) &&
814 (link->device->flags & ATA_DFLAG_DEVSLP)) {
Srinivas Pandruvadaa5ec5a7b2018-07-27 13:47:02 -0700815 if (policy == ATA_LPM_MIN_POWER ||
816 policy == ATA_LPM_MIN_POWER_WITH_PARTIAL)
Shane Huang65fe1f02012-09-07 22:40:01 +0800817 ahci_set_aggressive_devslp(ap, true);
818 else
819 ahci_set_aggressive_devslp(ap, false);
820 }
821
Tejun Heo6b7ae952010-09-01 17:50:06 +0200822 if (policy == ATA_LPM_MAX_POWER) {
823 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400824
Tejun Heo6b7ae952010-09-01 17:50:06 +0200825 /* turn PHYRDY IRQ back on */
826 pp->intr_mask |= PORT_IRQ_PHYRDY;
827 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
828 }
829
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400830 return 0;
831}
832
833#ifdef CONFIG_PM
834static void ahci_power_down(struct ata_port *ap)
835{
836 struct ahci_host_priv *hpriv = ap->host->private_data;
837 void __iomem *port_mmio = ahci_port_base(ap);
838 u32 cmd, scontrol;
839
840 if (!(hpriv->cap & HOST_CAP_SSS))
841 return;
842
843 /* put device into listen mode, first set PxSCTL.DET to 0 */
844 scontrol = readl(port_mmio + PORT_SCR_CTL);
845 scontrol &= ~0xf;
846 writel(scontrol, port_mmio + PORT_SCR_CTL);
847
848 /* then set PxCMD.SUD to 0 */
849 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
850 cmd &= ~PORT_CMD_SPIN_UP;
851 writel(cmd, port_mmio + PORT_CMD);
852}
853#endif
854
855static void ahci_start_port(struct ata_port *ap)
856{
Brian Norris66583c92012-02-21 10:38:42 -0800857 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400858 struct ahci_port_priv *pp = ap->private_data;
859 struct ata_link *link;
860 struct ahci_em_priv *emp;
861 ssize_t rc;
862 int i;
863
864 /* enable FIS reception */
865 ahci_start_fis_rx(ap);
866
Brian Norris66583c92012-02-21 10:38:42 -0800867 /* enable DMA */
868 if (!(hpriv->flags & AHCI_HFLAG_DELAY_ENGINE))
Hans de Goede039ece32014-02-22 16:53:30 +0100869 hpriv->start_engine(ap);
Brian Norris66583c92012-02-21 10:38:42 -0800870
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400871 /* turn on LEDs */
872 if (ap->flags & ATA_FLAG_EM) {
873 ata_for_each_link(link, ap, EDGE) {
874 emp = &pp->em_priv[link->pmp];
875
876 /* EM Transmit bit maybe busy during init */
877 for (i = 0; i < EM_MAX_RETRY; i++) {
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500878 rc = ap->ops->transmit_led_message(ap,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400879 emp->led_state,
880 4);
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200881 /*
882 * If busy, give a breather but do not
883 * release EH ownership by using msleep()
884 * instead of ata_msleep(). EM Transmit
885 * bit is busy for the whole host and
886 * releasing ownership will cause other
887 * ports to fail the same way.
888 */
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400889 if (rc == -EBUSY)
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200890 msleep(1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400891 else
892 break;
893 }
894 }
895 }
896
897 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
898 ata_for_each_link(link, ap, EDGE)
899 ahci_init_sw_activity(link);
900
901}
902
903static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
904{
905 int rc;
Evan Wangfa89f532018-04-13 12:32:30 +0800906 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400907
908 /* disable DMA */
Evan Wangfa89f532018-04-13 12:32:30 +0800909 rc = hpriv->stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400910 if (rc) {
911 *emsg = "failed to stop engine";
912 return rc;
913 }
914
915 /* disable FIS reception */
916 rc = ahci_stop_fis_rx(ap);
917 if (rc) {
918 *emsg = "failed stop FIS RX";
919 return rc;
920 }
921
922 return 0;
923}
924
925int ahci_reset_controller(struct ata_host *host)
926{
927 struct ahci_host_priv *hpriv = host->private_data;
928 void __iomem *mmio = hpriv->mmio;
929 u32 tmp;
930
931 /* we must be in AHCI mode, before using anything
932 * AHCI-specific, such as HOST_RESET.
933 */
934 ahci_enable_ahci(mmio);
935
936 /* global controller reset */
937 if (!ahci_skip_host_reset) {
938 tmp = readl(mmio + HOST_CTL);
939 if ((tmp & HOST_RESET) == 0) {
940 writel(tmp | HOST_RESET, mmio + HOST_CTL);
941 readl(mmio + HOST_CTL); /* flush */
942 }
943
944 /*
945 * to perform host reset, OS should set HOST_RESET
946 * and poll until this bit is read to be "0".
947 * reset must complete within 1 second, or
948 * the hardware should be considered fried.
949 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200950 tmp = ata_wait_register(NULL, mmio + HOST_CTL, HOST_RESET,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400951 HOST_RESET, 10, 1000);
952
953 if (tmp & HOST_RESET) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700954 dev_err(host->dev, "controller reset failed (0x%x)\n",
955 tmp);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400956 return -EIO;
957 }
958
959 /* turn on AHCI mode */
960 ahci_enable_ahci(mmio);
961
962 /* Some registers might be cleared on reset. Restore
963 * initial values.
964 */
Doug Berger7fab72f2017-06-21 16:20:13 -0700965 if (!(hpriv->flags & AHCI_HFLAG_NO_WRITE_TO_RO))
966 ahci_restore_initial_config(host);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400967 } else
Joe Perchesa44fec12011-04-15 15:51:58 -0700968 dev_info(host->dev, "skipping global host reset\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400969
970 return 0;
971}
972EXPORT_SYMBOL_GPL(ahci_reset_controller);
973
974static void ahci_sw_activity(struct ata_link *link)
975{
976 struct ata_port *ap = link->ap;
977 struct ahci_port_priv *pp = ap->private_data;
978 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
979
980 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
981 return;
982
983 emp->activity++;
984 if (!timer_pending(&emp->timer))
985 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
986}
987
Kees Cook18435942017-10-16 14:56:58 -0700988static void ahci_sw_activity_blink(struct timer_list *t)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400989{
Kees Cook18435942017-10-16 14:56:58 -0700990 struct ahci_em_priv *emp = from_timer(emp, t, timer);
991 struct ata_link *link = emp->link;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400992 struct ata_port *ap = link->ap;
Kees Cook18435942017-10-16 14:56:58 -0700993
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400994 unsigned long led_message = emp->led_state;
995 u32 activity_led_state;
996 unsigned long flags;
997
998 led_message &= EM_MSG_LED_VALUE;
999 led_message |= ap->port_no | (link->pmp << 8);
1000
1001 /* check to see if we've had activity. If so,
1002 * toggle state of LED and reset timer. If not,
1003 * turn LED to desired idle state.
1004 */
1005 spin_lock_irqsave(ap->lock, flags);
1006 if (emp->saved_activity != emp->activity) {
1007 emp->saved_activity = emp->activity;
1008 /* get the current LED state */
1009 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
1010
1011 if (activity_led_state)
1012 activity_led_state = 0;
1013 else
1014 activity_led_state = 1;
1015
1016 /* clear old state */
1017 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
1018
1019 /* toggle state */
1020 led_message |= (activity_led_state << 16);
1021 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
1022 } else {
1023 /* switch to idle */
1024 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
1025 if (emp->blink_policy == BLINK_OFF)
1026 led_message |= (1 << 16);
1027 }
1028 spin_unlock_irqrestore(ap->lock, flags);
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001029 ap->ops->transmit_led_message(ap, led_message, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001030}
1031
1032static void ahci_init_sw_activity(struct ata_link *link)
1033{
1034 struct ata_port *ap = link->ap;
1035 struct ahci_port_priv *pp = ap->private_data;
1036 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1037
1038 /* init activity stats, setup timer */
1039 emp->saved_activity = emp->activity = 0;
Kees Cook18435942017-10-16 14:56:58 -07001040 emp->link = link;
1041 timer_setup(&emp->timer, ahci_sw_activity_blink, 0);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001042
1043 /* check our blink policy and set flag for link if it's enabled */
1044 if (emp->blink_policy)
1045 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1046}
1047
1048int ahci_reset_em(struct ata_host *host)
1049{
1050 struct ahci_host_priv *hpriv = host->private_data;
1051 void __iomem *mmio = hpriv->mmio;
1052 u32 em_ctl;
1053
1054 em_ctl = readl(mmio + HOST_EM_CTL);
1055 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
1056 return -EINVAL;
1057
1058 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
1059 return 0;
1060}
1061EXPORT_SYMBOL_GPL(ahci_reset_em);
1062
1063static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
1064 ssize_t size)
1065{
1066 struct ahci_host_priv *hpriv = ap->host->private_data;
1067 struct ahci_port_priv *pp = ap->private_data;
1068 void __iomem *mmio = hpriv->mmio;
1069 u32 em_ctl;
1070 u32 message[] = {0, 0};
1071 unsigned long flags;
1072 int pmp;
1073 struct ahci_em_priv *emp;
1074
1075 /* get the slot number from the message */
1076 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
1077 if (pmp < EM_MAX_SLOTS)
1078 emp = &pp->em_priv[pmp];
1079 else
1080 return -EINVAL;
1081
Mika Westerbergbb03c642016-02-18 10:54:16 +02001082 ahci_rpm_get_port(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001083 spin_lock_irqsave(ap->lock, flags);
1084
1085 /*
1086 * if we are still busy transmitting a previous message,
1087 * do not allow
1088 */
1089 em_ctl = readl(mmio + HOST_EM_CTL);
1090 if (em_ctl & EM_CTL_TM) {
1091 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +02001092 ahci_rpm_put_port(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001093 return -EBUSY;
1094 }
1095
Harry Zhang008dbd62010-04-23 17:27:19 +08001096 if (hpriv->em_msg_type & EM_MSG_TYPE_LED) {
1097 /*
1098 * create message header - this is all zero except for
1099 * the message size, which is 4 bytes.
1100 */
1101 message[0] |= (4 << 8);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001102
Harry Zhang008dbd62010-04-23 17:27:19 +08001103 /* ignore 0:4 of byte zero, fill in port info yourself */
1104 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001105
Harry Zhang008dbd62010-04-23 17:27:19 +08001106 /* write message to EM_LOC */
1107 writel(message[0], mmio + hpriv->em_loc);
1108 writel(message[1], mmio + hpriv->em_loc+4);
1109
1110 /*
1111 * tell hardware to transmit the message
1112 */
1113 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1114 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001115
1116 /* save off new led state for port/slot */
1117 emp->led_state = state;
1118
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001119 spin_unlock_irqrestore(ap->lock, flags);
Mika Westerbergbb03c642016-02-18 10:54:16 +02001120 ahci_rpm_put_port(ap);
1121
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001122 return size;
1123}
1124
1125static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1126{
1127 struct ahci_port_priv *pp = ap->private_data;
1128 struct ata_link *link;
1129 struct ahci_em_priv *emp;
1130 int rc = 0;
1131
1132 ata_for_each_link(link, ap, EDGE) {
1133 emp = &pp->em_priv[link->pmp];
1134 rc += sprintf(buf, "%lx\n", emp->led_state);
1135 }
1136 return rc;
1137}
1138
1139static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1140 size_t size)
1141{
Daeseok Younb2a52b62014-02-20 08:28:45 +09001142 unsigned int state;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001143 int pmp;
1144 struct ahci_port_priv *pp = ap->private_data;
1145 struct ahci_em_priv *emp;
1146
Daeseok Younb2a52b62014-02-20 08:28:45 +09001147 if (kstrtouint(buf, 0, &state) < 0)
1148 return -EINVAL;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001149
1150 /* get the slot number from the message */
1151 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
1152 if (pmp < EM_MAX_SLOTS)
1153 emp = &pp->em_priv[pmp];
1154 else
1155 return -EINVAL;
1156
1157 /* mask off the activity bits if we are in sw_activity
1158 * mode, user should turn off sw_activity before setting
1159 * activity led through em_message
1160 */
1161 if (emp->blink_policy)
1162 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
1163
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001164 return ap->ops->transmit_led_message(ap, state, size);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001165}
1166
1167static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1168{
1169 struct ata_link *link = dev->link;
1170 struct ata_port *ap = link->ap;
1171 struct ahci_port_priv *pp = ap->private_data;
1172 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1173 u32 port_led_state = emp->led_state;
1174
1175 /* save the desired Activity LED behavior */
1176 if (val == OFF) {
1177 /* clear LFLAG */
1178 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1179
1180 /* set the LED to OFF */
1181 port_led_state &= EM_MSG_LED_VALUE_OFF;
1182 port_led_state |= (ap->port_no | (link->pmp << 8));
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001183 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001184 } else {
1185 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1186 if (val == BLINK_OFF) {
1187 /* set LED to ON for idle */
1188 port_led_state &= EM_MSG_LED_VALUE_OFF;
1189 port_led_state |= (ap->port_no | (link->pmp << 8));
1190 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001191 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001192 }
1193 }
1194 emp->blink_policy = val;
1195 return 0;
1196}
1197
1198static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1199{
1200 struct ata_link *link = dev->link;
1201 struct ata_port *ap = link->ap;
1202 struct ahci_port_priv *pp = ap->private_data;
1203 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1204
1205 /* display the saved value of activity behavior for this
1206 * disk.
1207 */
1208 return sprintf(buf, "%d\n", emp->blink_policy);
1209}
1210
1211static void ahci_port_init(struct device *dev, struct ata_port *ap,
1212 int port_no, void __iomem *mmio,
1213 void __iomem *port_mmio)
1214{
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001215 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001216 const char *emsg = NULL;
1217 int rc;
1218 u32 tmp;
1219
1220 /* make sure port is not active */
1221 rc = ahci_deinit_port(ap, &emsg);
1222 if (rc)
1223 dev_warn(dev, "%s (%d)\n", emsg, rc);
1224
1225 /* clear SError */
1226 tmp = readl(port_mmio + PORT_SCR_ERR);
1227 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1228 writel(tmp, port_mmio + PORT_SCR_ERR);
1229
1230 /* clear port IRQ */
1231 tmp = readl(port_mmio + PORT_IRQ_STAT);
1232 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1233 if (tmp)
1234 writel(tmp, port_mmio + PORT_IRQ_STAT);
1235
1236 writel(1 << port_no, mmio + HOST_IRQ_STAT);
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001237
1238 /* mark esata ports */
1239 tmp = readl(port_mmio + PORT_CMD);
Manuel Laussdc8b4af2016-02-27 16:10:05 +01001240 if ((tmp & PORT_CMD_ESP) && (hpriv->cap & HOST_CAP_SXS))
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001241 ap->pflags |= ATA_PFLAG_EXTERNAL;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001242}
1243
1244void ahci_init_controller(struct ata_host *host)
1245{
1246 struct ahci_host_priv *hpriv = host->private_data;
1247 void __iomem *mmio = hpriv->mmio;
1248 int i;
1249 void __iomem *port_mmio;
1250 u32 tmp;
1251
1252 for (i = 0; i < host->n_ports; i++) {
1253 struct ata_port *ap = host->ports[i];
1254
1255 port_mmio = ahci_port_base(ap);
1256 if (ata_port_is_dummy(ap))
1257 continue;
1258
1259 ahci_port_init(host->dev, ap, i, mmio, port_mmio);
1260 }
1261
1262 tmp = readl(mmio + HOST_CTL);
1263 VPRINTK("HOST_CTL 0x%x\n", tmp);
1264 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1265 tmp = readl(mmio + HOST_CTL);
1266 VPRINTK("HOST_CTL 0x%x\n", tmp);
1267}
1268EXPORT_SYMBOL_GPL(ahci_init_controller);
1269
1270static void ahci_dev_config(struct ata_device *dev)
1271{
1272 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1273
1274 if (hpriv->flags & AHCI_HFLAG_SECT255) {
1275 dev->max_sectors = 255;
Joe Perchesa9a79df2011-04-15 15:51:59 -07001276 ata_dev_info(dev,
1277 "SB600 AHCI: limiting to 255 sectors per cmd\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001278 }
1279}
1280
Rob Herringbbb4ab42012-08-17 09:51:50 -05001281unsigned int ahci_dev_classify(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001282{
1283 void __iomem *port_mmio = ahci_port_base(ap);
1284 struct ata_taskfile tf;
1285 u32 tmp;
1286
1287 tmp = readl(port_mmio + PORT_SIG);
1288 tf.lbah = (tmp >> 24) & 0xff;
1289 tf.lbam = (tmp >> 16) & 0xff;
1290 tf.lbal = (tmp >> 8) & 0xff;
1291 tf.nsect = (tmp) & 0xff;
1292
1293 return ata_dev_classify(&tf);
1294}
Rob Herringbbb4ab42012-08-17 09:51:50 -05001295EXPORT_SYMBOL_GPL(ahci_dev_classify);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001296
David Milburn02cdfcf2010-11-12 15:38:21 -06001297void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1298 u32 opts)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001299{
1300 dma_addr_t cmd_tbl_dma;
1301
1302 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1303
1304 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1305 pp->cmd_slot[tag].status = 0;
1306 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1307 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
1308}
David Milburn02cdfcf2010-11-12 15:38:21 -06001309EXPORT_SYMBOL_GPL(ahci_fill_cmd_slot);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001310
1311int ahci_kick_engine(struct ata_port *ap)
1312{
1313 void __iomem *port_mmio = ahci_port_base(ap);
1314 struct ahci_host_priv *hpriv = ap->host->private_data;
1315 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1316 u32 tmp;
1317 int busy, rc;
1318
1319 /* stop engine */
Evan Wangfa89f532018-04-13 12:32:30 +08001320 rc = hpriv->stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001321 if (rc)
1322 goto out_restart;
1323
1324 /* need to do CLO?
1325 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1326 */
1327 busy = status & (ATA_BUSY | ATA_DRQ);
1328 if (!busy && !sata_pmp_attached(ap)) {
1329 rc = 0;
1330 goto out_restart;
1331 }
1332
1333 if (!(hpriv->cap & HOST_CAP_CLO)) {
1334 rc = -EOPNOTSUPP;
1335 goto out_restart;
1336 }
1337
1338 /* perform CLO */
1339 tmp = readl(port_mmio + PORT_CMD);
1340 tmp |= PORT_CMD_CLO;
1341 writel(tmp, port_mmio + PORT_CMD);
1342
1343 rc = 0;
Tejun Heo97750ce2010-09-06 17:56:29 +02001344 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001345 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1346 if (tmp & PORT_CMD_CLO)
1347 rc = -EIO;
1348
1349 /* restart engine */
1350 out_restart:
Hans de Goede039ece32014-02-22 16:53:30 +01001351 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001352 return rc;
1353}
1354EXPORT_SYMBOL_GPL(ahci_kick_engine);
1355
1356static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1357 struct ata_taskfile *tf, int is_cmd, u16 flags,
1358 unsigned long timeout_msec)
1359{
1360 const u32 cmd_fis_len = 5; /* five dwords */
1361 struct ahci_port_priv *pp = ap->private_data;
1362 void __iomem *port_mmio = ahci_port_base(ap);
1363 u8 *fis = pp->cmd_tbl;
1364 u32 tmp;
1365
1366 /* prep the command */
1367 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1368 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1369
Xiangliang Yu023113d2015-11-26 20:27:02 +08001370 /* set port value for softreset of Port Multiplier */
1371 if (pp->fbs_enabled && pp->fbs_last_dev != pmp) {
1372 tmp = readl(port_mmio + PORT_FBS);
1373 tmp &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
1374 tmp |= pmp << PORT_FBS_DEV_OFFSET;
1375 writel(tmp, port_mmio + PORT_FBS);
1376 pp->fbs_last_dev = pmp;
1377 }
1378
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001379 /* issue & wait */
1380 writel(1, port_mmio + PORT_CMD_ISSUE);
1381
1382 if (timeout_msec) {
Tejun Heo97750ce2010-09-06 17:56:29 +02001383 tmp = ata_wait_register(ap, port_mmio + PORT_CMD_ISSUE,
1384 0x1, 0x1, 1, timeout_msec);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001385 if (tmp & 0x1) {
1386 ahci_kick_engine(ap);
1387 return -EBUSY;
1388 }
1389 } else
1390 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1391
1392 return 0;
1393}
1394
1395int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1396 int pmp, unsigned long deadline,
1397 int (*check_ready)(struct ata_link *link))
1398{
1399 struct ata_port *ap = link->ap;
1400 struct ahci_host_priv *hpriv = ap->host->private_data;
xiangliang yu89dafa22013-10-27 08:03:04 -04001401 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001402 const char *reason = NULL;
1403 unsigned long now, msecs;
1404 struct ata_taskfile tf;
xiangliang yu89dafa22013-10-27 08:03:04 -04001405 bool fbs_disabled = false;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001406 int rc;
1407
1408 DPRINTK("ENTER\n");
1409
1410 /* prepare for SRST (AHCI-1.1 10.4.1) */
1411 rc = ahci_kick_engine(ap);
1412 if (rc && rc != -EOPNOTSUPP)
Joe Perchesa9a79df2011-04-15 15:51:59 -07001413 ata_link_warn(link, "failed to reset engine (errno=%d)\n", rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001414
xiangliang yu89dafa22013-10-27 08:03:04 -04001415 /*
1416 * According to AHCI-1.2 9.3.9: if FBS is enable, software shall
1417 * clear PxFBS.EN to '0' prior to issuing software reset to devices
1418 * that is attached to port multiplier.
1419 */
1420 if (!ata_is_host_link(link) && pp->fbs_enabled) {
1421 ahci_disable_fbs(ap);
1422 fbs_disabled = true;
1423 }
1424
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001425 ata_tf_init(link->device, &tf);
1426
Minwoo Im08fc4752017-06-11 23:53:00 +09001427 /* issue the first H2D Register FIS */
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001428 msecs = 0;
1429 now = jiffies;
Tejun Heof1f5a802010-08-27 11:09:15 +02001430 if (time_after(deadline, now))
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001431 msecs = jiffies_to_msecs(deadline - now);
1432
1433 tf.ctl |= ATA_SRST;
1434 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
1435 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
1436 rc = -EIO;
1437 reason = "1st FIS failed";
1438 goto fail;
1439 }
1440
1441 /* spec says at least 5us, but be generous and sleep for 1ms */
Tejun Heo97750ce2010-09-06 17:56:29 +02001442 ata_msleep(ap, 1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001443
Minwoo Im08fc4752017-06-11 23:53:00 +09001444 /* issue the second H2D Register FIS */
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001445 tf.ctl &= ~ATA_SRST;
1446 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
1447
1448 /* wait for link to become ready */
1449 rc = ata_wait_after_reset(link, deadline, check_ready);
1450 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1451 /*
1452 * Workaround for cases where link online status can't
1453 * be trusted. Treat device readiness timeout as link
1454 * offline.
1455 */
Joe Perchesa9a79df2011-04-15 15:51:59 -07001456 ata_link_info(link, "device not ready, treating as offline\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001457 *class = ATA_DEV_NONE;
1458 } else if (rc) {
1459 /* link occupied, -ENODEV too is an error */
1460 reason = "device not ready";
1461 goto fail;
1462 } else
1463 *class = ahci_dev_classify(ap);
1464
xiangliang yu89dafa22013-10-27 08:03:04 -04001465 /* re-enable FBS if disabled before */
1466 if (fbs_disabled)
1467 ahci_enable_fbs(ap);
1468
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001469 DPRINTK("EXIT, class=%u\n", *class);
1470 return 0;
1471
1472 fail:
Joe Perchesa9a79df2011-04-15 15:51:59 -07001473 ata_link_err(link, "softreset failed (%s)\n", reason);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001474 return rc;
1475}
1476
1477int ahci_check_ready(struct ata_link *link)
1478{
1479 void __iomem *port_mmio = ahci_port_base(link->ap);
1480 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1481
1482 return ata_check_ready(status);
1483}
1484EXPORT_SYMBOL_GPL(ahci_check_ready);
1485
1486static int ahci_softreset(struct ata_link *link, unsigned int *class,
1487 unsigned long deadline)
1488{
1489 int pmp = sata_srst_pmp(link);
1490
1491 DPRINTK("ENTER\n");
1492
1493 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1494}
1495EXPORT_SYMBOL_GPL(ahci_do_softreset);
1496
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001497static int ahci_bad_pmp_check_ready(struct ata_link *link)
1498{
1499 void __iomem *port_mmio = ahci_port_base(link->ap);
1500 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1501 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1502
1503 /*
1504 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1505 * which can save timeout delay.
1506 */
1507 if (irq_status & PORT_IRQ_BAD_PMP)
1508 return -EIO;
1509
1510 return ata_check_ready(status);
1511}
1512
Daeseok Youn35186d02014-02-20 08:34:27 +09001513static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
1514 unsigned long deadline)
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001515{
1516 struct ata_port *ap = link->ap;
1517 void __iomem *port_mmio = ahci_port_base(ap);
1518 int pmp = sata_srst_pmp(link);
1519 int rc;
1520 u32 irq_sts;
1521
1522 DPRINTK("ENTER\n");
1523
1524 rc = ahci_do_softreset(link, class, pmp, deadline,
1525 ahci_bad_pmp_check_ready);
1526
1527 /*
1528 * Soft reset fails with IPMS set when PMP is enabled but
1529 * SATA HDD/ODD is connected to SATA port, do soft reset
1530 * again to port 0.
1531 */
1532 if (rc == -EIO) {
1533 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1534 if (irq_sts & PORT_IRQ_BAD_PMP) {
Wei Yongjun39f80ac2012-12-03 23:39:31 -05001535 ata_link_warn(link,
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001536 "applying PMP SRST workaround "
1537 "and retrying\n");
1538 rc = ahci_do_softreset(link, class, 0, deadline,
1539 ahci_check_ready);
1540 }
1541 }
1542
1543 return rc;
1544}
1545
Bartosz Golaszewskid4365012017-01-30 11:02:06 +01001546int ahci_do_hardreset(struct ata_link *link, unsigned int *class,
1547 unsigned long deadline, bool *online)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001548{
1549 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
1550 struct ata_port *ap = link->ap;
1551 struct ahci_port_priv *pp = ap->private_data;
Hans de Goede039ece32014-02-22 16:53:30 +01001552 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001553 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1554 struct ata_taskfile tf;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001555 int rc;
1556
1557 DPRINTK("ENTER\n");
1558
Evan Wangfa89f532018-04-13 12:32:30 +08001559 hpriv->stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001560
1561 /* clear D2H reception area to properly wait for D2H FIS */
1562 ata_tf_init(link->device, &tf);
Sergei Shtylyov9bbb1b02013-06-23 01:39:39 +04001563 tf.command = ATA_BUSY;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001564 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1565
Bartosz Golaszewskid4365012017-01-30 11:02:06 +01001566 rc = sata_link_hardreset(link, timing, deadline, online,
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001567 ahci_check_ready);
1568
Hans de Goede039ece32014-02-22 16:53:30 +01001569 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001570
Bartosz Golaszewskid4365012017-01-30 11:02:06 +01001571 if (*online)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001572 *class = ahci_dev_classify(ap);
1573
1574 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1575 return rc;
1576}
Bartosz Golaszewskid4365012017-01-30 11:02:06 +01001577EXPORT_SYMBOL_GPL(ahci_do_hardreset);
1578
1579static int ahci_hardreset(struct ata_link *link, unsigned int *class,
1580 unsigned long deadline)
1581{
1582 bool online;
1583
1584 return ahci_do_hardreset(link, class, deadline, &online);
1585}
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001586
1587static void ahci_postreset(struct ata_link *link, unsigned int *class)
1588{
1589 struct ata_port *ap = link->ap;
1590 void __iomem *port_mmio = ahci_port_base(ap);
1591 u32 new_tmp, tmp;
1592
1593 ata_std_postreset(link, class);
1594
1595 /* Make sure port's ATAPI bit is set appropriately */
1596 new_tmp = tmp = readl(port_mmio + PORT_CMD);
1597 if (*class == ATA_DEV_ATAPI)
1598 new_tmp |= PORT_CMD_ATAPI;
1599 else
1600 new_tmp &= ~PORT_CMD_ATAPI;
1601 if (new_tmp != tmp) {
1602 writel(new_tmp, port_mmio + PORT_CMD);
1603 readl(port_mmio + PORT_CMD); /* flush */
1604 }
1605}
1606
1607static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
1608{
1609 struct scatterlist *sg;
1610 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1611 unsigned int si;
1612
1613 VPRINTK("ENTER\n");
1614
1615 /*
1616 * Next, the S/G list.
1617 */
1618 for_each_sg(qc->sg, sg, qc->n_elem, si) {
1619 dma_addr_t addr = sg_dma_address(sg);
1620 u32 sg_len = sg_dma_len(sg);
1621
1622 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1623 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1624 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
1625 }
1626
1627 return si;
1628}
1629
1630static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
1631{
1632 struct ata_port *ap = qc->ap;
1633 struct ahci_port_priv *pp = ap->private_data;
1634
1635 if (!sata_pmp_attached(ap) || pp->fbs_enabled)
1636 return ata_std_qc_defer(qc);
1637 else
1638 return sata_pmp_qc_defer_cmd_switch(qc);
1639}
1640
1641static void ahci_qc_prep(struct ata_queued_cmd *qc)
1642{
1643 struct ata_port *ap = qc->ap;
1644 struct ahci_port_priv *pp = ap->private_data;
1645 int is_atapi = ata_is_atapi(qc->tf.protocol);
1646 void *cmd_tbl;
1647 u32 opts;
1648 const u32 cmd_fis_len = 5; /* five dwords */
1649 unsigned int n_elem;
1650
1651 /*
1652 * Fill in command table information. First, the header,
1653 * a SATA Register - Host to Device command FIS.
1654 */
Jens Axboe4e5b6262018-05-11 12:51:04 -06001655 cmd_tbl = pp->cmd_tbl + qc->hw_tag * AHCI_CMD_TBL_SZ;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001656
1657 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
1658 if (is_atapi) {
1659 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1660 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
1661 }
1662
1663 n_elem = 0;
1664 if (qc->flags & ATA_QCFLAG_DMAMAP)
1665 n_elem = ahci_fill_sg(qc, cmd_tbl);
1666
1667 /*
1668 * Fill in command slot information.
1669 */
1670 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
1671 if (qc->tf.flags & ATA_TFLAG_WRITE)
1672 opts |= AHCI_CMD_WRITE;
1673 if (is_atapi)
1674 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
1675
Jens Axboe4e5b6262018-05-11 12:51:04 -06001676 ahci_fill_cmd_slot(pp, qc->hw_tag, opts);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001677}
1678
1679static void ahci_fbs_dec_intr(struct ata_port *ap)
1680{
1681 struct ahci_port_priv *pp = ap->private_data;
1682 void __iomem *port_mmio = ahci_port_base(ap);
1683 u32 fbs = readl(port_mmio + PORT_FBS);
1684 int retries = 3;
1685
1686 DPRINTK("ENTER\n");
1687 BUG_ON(!pp->fbs_enabled);
1688
1689 /* time to wait for DEC is not specified by AHCI spec,
1690 * add a retry loop for safety.
1691 */
1692 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
1693 fbs = readl(port_mmio + PORT_FBS);
1694 while ((fbs & PORT_FBS_DEC) && retries--) {
1695 udelay(1);
1696 fbs = readl(port_mmio + PORT_FBS);
1697 }
1698
1699 if (fbs & PORT_FBS_DEC)
Joe Perchesa44fec12011-04-15 15:51:58 -07001700 dev_err(ap->host->dev, "failed to clear device error\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001701}
1702
1703static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
1704{
1705 struct ahci_host_priv *hpriv = ap->host->private_data;
1706 struct ahci_port_priv *pp = ap->private_data;
1707 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1708 struct ata_link *link = NULL;
1709 struct ata_queued_cmd *active_qc;
1710 struct ata_eh_info *active_ehi;
1711 bool fbs_need_dec = false;
1712 u32 serror;
1713
1714 /* determine active link with error */
1715 if (pp->fbs_enabled) {
1716 void __iomem *port_mmio = ahci_port_base(ap);
1717 u32 fbs = readl(port_mmio + PORT_FBS);
1718 int pmp = fbs >> PORT_FBS_DWE_OFFSET;
1719
Shane Huang912b9ac2013-06-08 16:00:16 +08001720 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links)) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001721 link = &ap->pmp_link[pmp];
1722 fbs_need_dec = true;
1723 }
1724
1725 } else
1726 ata_for_each_link(link, ap, EDGE)
1727 if (ata_link_active(link))
1728 break;
1729
1730 if (!link)
1731 link = &ap->link;
1732
1733 active_qc = ata_qc_from_tag(ap, link->active_tag);
1734 active_ehi = &link->eh_info;
1735
1736 /* record irq stat */
1737 ata_ehi_clear_desc(host_ehi);
1738 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
1739
1740 /* AHCI needs SError cleared; otherwise, it might lock up */
1741 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
1742 ahci_scr_write(&ap->link, SCR_ERROR, serror);
1743 host_ehi->serror |= serror;
1744
1745 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
1746 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
1747 irq_stat &= ~PORT_IRQ_IF_ERR;
1748
1749 if (irq_stat & PORT_IRQ_TF_ERR) {
1750 /* If qc is active, charge it; otherwise, the active
1751 * link. There's no active qc on NCQ errors. It will
1752 * be determined by EH by reading log page 10h.
1753 */
1754 if (active_qc)
1755 active_qc->err_mask |= AC_ERR_DEV;
1756 else
1757 active_ehi->err_mask |= AC_ERR_DEV;
1758
1759 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
1760 host_ehi->serror &= ~SERR_INTERNAL;
1761 }
1762
1763 if (irq_stat & PORT_IRQ_UNK_FIS) {
Joe Perchesd5185d62014-03-26 09:34:49 -07001764 u32 *unk = pp->rx_fis + RX_FIS_UNK;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001765
1766 active_ehi->err_mask |= AC_ERR_HSM;
1767 active_ehi->action |= ATA_EH_RESET;
1768 ata_ehi_push_desc(active_ehi,
1769 "unknown FIS %08x %08x %08x %08x" ,
1770 unk[0], unk[1], unk[2], unk[3]);
1771 }
1772
1773 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
1774 active_ehi->err_mask |= AC_ERR_HSM;
1775 active_ehi->action |= ATA_EH_RESET;
1776 ata_ehi_push_desc(active_ehi, "incorrect PMP");
1777 }
1778
1779 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1780 host_ehi->err_mask |= AC_ERR_HOST_BUS;
1781 host_ehi->action |= ATA_EH_RESET;
1782 ata_ehi_push_desc(host_ehi, "host bus error");
1783 }
1784
1785 if (irq_stat & PORT_IRQ_IF_ERR) {
1786 if (fbs_need_dec)
1787 active_ehi->err_mask |= AC_ERR_DEV;
1788 else {
1789 host_ehi->err_mask |= AC_ERR_ATA_BUS;
1790 host_ehi->action |= ATA_EH_RESET;
1791 }
1792
1793 ata_ehi_push_desc(host_ehi, "interface fatal error");
1794 }
1795
1796 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1797 ata_ehi_hotplugged(host_ehi);
1798 ata_ehi_push_desc(host_ehi, "%s",
1799 irq_stat & PORT_IRQ_CONNECT ?
1800 "connection status changed" : "PHY RDY changed");
1801 }
1802
1803 /* okay, let's hand over to EH */
1804
1805 if (irq_stat & PORT_IRQ_FREEZE)
1806 ata_port_freeze(ap);
1807 else if (fbs_need_dec) {
1808 ata_link_abort(link);
1809 ahci_fbs_dec_intr(ap);
1810 } else
1811 ata_port_abort(ap);
1812}
1813
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001814static void ahci_handle_port_interrupt(struct ata_port *ap,
1815 void __iomem *port_mmio, u32 status)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001816{
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001817 struct ata_eh_info *ehi = &ap->link.eh_info;
1818 struct ahci_port_priv *pp = ap->private_data;
1819 struct ahci_host_priv *hpriv = ap->host->private_data;
1820 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001821 u32 qc_active = 0;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001822 int rc;
1823
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001824 /* ignore BAD_PMP while resetting */
1825 if (unlikely(resetting))
1826 status &= ~PORT_IRQ_BAD_PMP;
1827
Gabriele Mazzotta8393b812015-04-25 19:52:36 +02001828 if (sata_lpm_ignore_phy_events(&ap->link)) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001829 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo6b7ae952010-09-01 17:50:06 +02001830 ahci_scr_write(&ap->link, SCR_ERROR, SERR_PHYRDY_CHG);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001831 }
1832
1833 if (unlikely(status & PORT_IRQ_ERROR)) {
1834 ahci_error_intr(ap, status);
1835 return;
1836 }
1837
1838 if (status & PORT_IRQ_SDB_FIS) {
1839 /* If SNotification is available, leave notification
1840 * handling to sata_async_notification(). If not,
1841 * emulate it by snooping SDB FIS RX area.
1842 *
1843 * Snooping FIS RX area is probably cheaper than
1844 * poking SNotification but some constrollers which
1845 * implement SNotification, ICH9 for example, don't
1846 * store AN SDB FIS into receive area.
1847 */
1848 if (hpriv->cap & HOST_CAP_SNTF)
1849 sata_async_notification(ap);
1850 else {
1851 /* If the 'N' bit in word 0 of the FIS is set,
1852 * we just received asynchronous notification.
1853 * Tell libata about it.
1854 *
1855 * Lack of SNotification should not appear in
1856 * ahci 1.2, so the workaround is unnecessary
1857 * when FBS is enabled.
1858 */
1859 if (pp->fbs_enabled)
1860 WARN_ON_ONCE(1);
1861 else {
1862 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
1863 u32 f0 = le32_to_cpu(f[0]);
1864 if (f0 & (1 << 15))
1865 sata_async_notification(ap);
1866 }
1867 }
1868 }
1869
1870 /* pp->active_link is not reliable once FBS is enabled, both
1871 * PORT_SCR_ACT and PORT_CMD_ISSUE should be checked because
1872 * NCQ and non-NCQ commands may be in flight at the same time.
1873 */
1874 if (pp->fbs_enabled) {
1875 if (ap->qc_active) {
1876 qc_active = readl(port_mmio + PORT_SCR_ACT);
1877 qc_active |= readl(port_mmio + PORT_CMD_ISSUE);
1878 }
1879 } else {
1880 /* pp->active_link is valid iff any command is in flight */
1881 if (ap->qc_active && pp->active_link->sactive)
1882 qc_active = readl(port_mmio + PORT_SCR_ACT);
1883 else
1884 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
1885 }
1886
1887
1888 rc = ata_qc_complete_multiple(ap, qc_active);
1889
1890 /* while resetting, invalid completions are expected */
1891 if (unlikely(rc < 0 && !resetting)) {
1892 ehi->err_mask |= AC_ERR_HSM;
1893 ehi->action |= ATA_EH_RESET;
1894 ata_port_freeze(ap);
1895 }
1896}
1897
Tejun Heo7865f832014-10-27 09:50:36 -04001898static void ahci_port_intr(struct ata_port *ap)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001899{
1900 void __iomem *port_mmio = ahci_port_base(ap);
1901 u32 status;
1902
1903 status = readl(port_mmio + PORT_IRQ_STAT);
1904 writel(status, port_mmio + PORT_IRQ_STAT);
1905
Tejun Heo7865f832014-10-27 09:50:36 -04001906 ahci_handle_port_interrupt(ap, port_mmio, status);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001907}
1908
Dan Williamsa6b7fb72015-11-11 16:27:38 -08001909static irqreturn_t ahci_multi_irqs_intr_hard(int irq, void *dev_instance)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001910{
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001911 struct ata_port *ap = dev_instance;
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001912 void __iomem *port_mmio = ahci_port_base(ap);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001913 u32 status;
1914
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001915 VPRINTK("ENTER\n");
1916
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001917 status = readl(port_mmio + PORT_IRQ_STAT);
1918 writel(status, port_mmio + PORT_IRQ_STAT);
1919
Dan Williamsa6b7fb72015-11-11 16:27:38 -08001920 spin_lock(ap->lock);
1921 ahci_handle_port_interrupt(ap, port_mmio, status);
1922 spin_unlock(ap->lock);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001923
1924 VPRINTK("EXIT\n");
1925
Dan Williamsa6b7fb72015-11-11 16:27:38 -08001926 return IRQ_HANDLED;
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001927}
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001928
Suman Tripathif070d672016-02-06 11:25:22 +05301929u32 ahci_handle_port_intr(struct ata_host *host, u32 irq_masked)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001930{
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001931 unsigned int i, handled = 0;
Tejun Heo03e83cb2014-10-27 12:00:01 -04001932
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001933 for (i = 0; i < host->n_ports; i++) {
1934 struct ata_port *ap;
1935
1936 if (!(irq_masked & (1 << i)))
1937 continue;
1938
1939 ap = host->ports[i];
1940 if (ap) {
Tejun Heo7865f832014-10-27 09:50:36 -04001941 ahci_port_intr(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001942 VPRINTK("port %u\n", i);
1943 } else {
1944 VPRINTK("port %u (no irq)\n", i);
1945 if (ata_ratelimit())
Joe Perchesa44fec12011-04-15 15:51:58 -07001946 dev_warn(host->dev,
1947 "interrupt on disabled port %u\n", i);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001948 }
1949
1950 handled = 1;
1951 }
1952
Suman Tripathia129db82015-05-06 00:51:10 +05301953 return handled;
1954}
Suman Tripathif070d672016-02-06 11:25:22 +05301955EXPORT_SYMBOL_GPL(ahci_handle_port_intr);
Suman Tripathia129db82015-05-06 00:51:10 +05301956
1957static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance)
1958{
1959 struct ata_host *host = dev_instance;
1960 struct ahci_host_priv *hpriv;
1961 unsigned int rc = 0;
1962 void __iomem *mmio;
1963 u32 irq_stat, irq_masked;
1964
1965 VPRINTK("ENTER\n");
1966
1967 hpriv = host->private_data;
1968 mmio = hpriv->mmio;
1969
1970 /* sigh. 0xffffffff is a valid return from h/w */
1971 irq_stat = readl(mmio + HOST_IRQ_STAT);
1972 if (!irq_stat)
1973 return IRQ_NONE;
1974
1975 irq_masked = irq_stat & hpriv->port_map;
1976
1977 spin_lock(&host->lock);
1978
1979 rc = ahci_handle_port_intr(host, irq_masked);
1980
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001981 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
1982 * it should be cleared after all the port events are cleared;
1983 * otherwise, it will raise a spurious interrupt after each
1984 * valid one. Please read section 10.6.2 of ahci 1.1 for more
1985 * information.
1986 *
1987 * Also, use the unmasked value to clear interrupt as spurious
1988 * pending event on a dummy port might cause screaming IRQ.
1989 */
1990 writel(irq_stat, mmio + HOST_IRQ_STAT);
1991
Tejun Heo03e83cb2014-10-27 12:00:01 -04001992 spin_unlock(&host->lock);
1993
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001994 VPRINTK("EXIT\n");
1995
Suman Tripathia129db82015-05-06 00:51:10 +05301996 return IRQ_RETVAL(rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001997}
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001998
Suman Tripathi39e0ee92014-07-07 22:33:04 +05301999unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002000{
2001 struct ata_port *ap = qc->ap;
2002 void __iomem *port_mmio = ahci_port_base(ap);
2003 struct ahci_port_priv *pp = ap->private_data;
2004
2005 /* Keep track of the currently active link. It will be used
2006 * in completion path to determine whether NCQ phase is in
2007 * progress.
2008 */
2009 pp->active_link = qc->dev->link;
2010
Hannes Reinecke179b3102016-07-14 09:05:43 +09002011 if (ata_is_ncq(qc->tf.protocol))
Jens Axboe4e5b6262018-05-11 12:51:04 -06002012 writel(1 << qc->hw_tag, port_mmio + PORT_SCR_ACT);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002013
2014 if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
2015 u32 fbs = readl(port_mmio + PORT_FBS);
2016 fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
2017 fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
2018 writel(fbs, port_mmio + PORT_FBS);
2019 pp->fbs_last_dev = qc->dev->link->pmp;
2020 }
2021
Jens Axboe4e5b6262018-05-11 12:51:04 -06002022 writel(1 << qc->hw_tag, port_mmio + PORT_CMD_ISSUE);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002023
2024 ahci_sw_activity(qc->dev->link);
2025
2026 return 0;
2027}
Suman Tripathi39e0ee92014-07-07 22:33:04 +05302028EXPORT_SYMBOL_GPL(ahci_qc_issue);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002029
2030static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
2031{
2032 struct ahci_port_priv *pp = qc->ap->private_data;
Tejun Heo6ad60192010-10-15 11:00:08 +02002033 u8 *rx_fis = pp->rx_fis;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002034
2035 if (pp->fbs_enabled)
Tejun Heo6ad60192010-10-15 11:00:08 +02002036 rx_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002037
Tejun Heo6ad60192010-10-15 11:00:08 +02002038 /*
2039 * After a successful execution of an ATA PIO data-in command,
2040 * the device doesn't send D2H Reg FIS to update the TF and
2041 * the host should take TF and E_Status from the preceding PIO
2042 * Setup FIS.
2043 */
2044 if (qc->tf.protocol == ATA_PROT_PIO && qc->dma_dir == DMA_FROM_DEVICE &&
2045 !(qc->flags & ATA_QCFLAG_FAILED)) {
2046 ata_tf_from_fis(rx_fis + RX_FIS_PIO_SETUP, &qc->result_tf);
2047 qc->result_tf.command = (rx_fis + RX_FIS_PIO_SETUP)[15];
2048 } else
2049 ata_tf_from_fis(rx_fis + RX_FIS_D2H_REG, &qc->result_tf);
2050
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002051 return true;
2052}
2053
2054static void ahci_freeze(struct ata_port *ap)
2055{
2056 void __iomem *port_mmio = ahci_port_base(ap);
2057
2058 /* turn IRQ off */
2059 writel(0, port_mmio + PORT_IRQ_MASK);
2060}
2061
2062static void ahci_thaw(struct ata_port *ap)
2063{
2064 struct ahci_host_priv *hpriv = ap->host->private_data;
2065 void __iomem *mmio = hpriv->mmio;
2066 void __iomem *port_mmio = ahci_port_base(ap);
2067 u32 tmp;
2068 struct ahci_port_priv *pp = ap->private_data;
2069
2070 /* clear IRQ */
2071 tmp = readl(port_mmio + PORT_IRQ_STAT);
2072 writel(tmp, port_mmio + PORT_IRQ_STAT);
2073 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
2074
2075 /* turn IRQ back on */
2076 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
2077}
2078
Richard Zhu8b789d82013-10-15 10:44:54 +08002079void ahci_error_handler(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002080{
Hans de Goede039ece32014-02-22 16:53:30 +01002081 struct ahci_host_priv *hpriv = ap->host->private_data;
2082
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002083 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
2084 /* restart engine */
Evan Wangfa89f532018-04-13 12:32:30 +08002085 hpriv->stop_engine(ap);
Hans de Goede039ece32014-02-22 16:53:30 +01002086 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002087 }
2088
2089 sata_pmp_error_handler(ap);
Tejun Heo0ee71952010-06-07 15:15:08 +02002090
2091 if (!ata_dev_enabled(ap->link.device))
Evan Wangfa89f532018-04-13 12:32:30 +08002092 hpriv->stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002093}
Richard Zhu8b789d82013-10-15 10:44:54 +08002094EXPORT_SYMBOL_GPL(ahci_error_handler);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002095
2096static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2097{
2098 struct ata_port *ap = qc->ap;
2099
2100 /* make DMA engine forget about the failed command */
2101 if (qc->flags & ATA_QCFLAG_FAILED)
2102 ahci_kick_engine(ap);
2103}
2104
Shane Huang65fe1f02012-09-07 22:40:01 +08002105static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep)
2106{
Hans de Goede039ece32014-02-22 16:53:30 +01002107 struct ahci_host_priv *hpriv = ap->host->private_data;
Shane Huang65fe1f02012-09-07 22:40:01 +08002108 void __iomem *port_mmio = ahci_port_base(ap);
2109 struct ata_device *dev = ap->link.device;
2110 u32 devslp, dm, dito, mdat, deto;
2111 int rc;
2112 unsigned int err_mask;
2113
2114 devslp = readl(port_mmio + PORT_DEVSLP);
2115 if (!(devslp & PORT_DEVSLP_DSP)) {
Gabriele Mazzotta95bbbe92015-01-08 19:41:34 +01002116 dev_info(ap->host->dev, "port does not support device sleep\n");
Shane Huang65fe1f02012-09-07 22:40:01 +08002117 return;
2118 }
2119
2120 /* disable device sleep */
2121 if (!sleep) {
2122 if (devslp & PORT_DEVSLP_ADSE) {
2123 writel(devslp & ~PORT_DEVSLP_ADSE,
2124 port_mmio + PORT_DEVSLP);
2125 err_mask = ata_dev_set_feature(dev,
2126 SETFEATURES_SATA_DISABLE,
2127 SATA_DEVSLP);
2128 if (err_mask && err_mask != AC_ERR_DEV)
2129 ata_dev_warn(dev, "failed to disable DEVSLP\n");
2130 }
2131 return;
2132 }
2133
2134 /* device sleep was already enabled */
2135 if (devslp & PORT_DEVSLP_ADSE)
2136 return;
2137
2138 /* set DITO, MDAT, DETO and enable DevSlp, need to stop engine first */
Evan Wangfa89f532018-04-13 12:32:30 +08002139 rc = hpriv->stop_engine(ap);
Shane Huang65fe1f02012-09-07 22:40:01 +08002140 if (rc)
2141 return;
2142
2143 dm = (devslp & PORT_DEVSLP_DM_MASK) >> PORT_DEVSLP_DM_OFFSET;
2144 dito = devslp_idle_timeout / (dm + 1);
2145 if (dito > 0x3ff)
2146 dito = 0x3ff;
2147
2148 /* Use the nominal value 10 ms if the read MDAT is zero,
2149 * the nominal value of DETO is 20 ms.
2150 */
Shane Huang803739d2012-12-17 23:18:59 +08002151 if (dev->devslp_timing[ATA_LOG_DEVSLP_VALID] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002152 ATA_LOG_DEVSLP_VALID_MASK) {
Shane Huang803739d2012-12-17 23:18:59 +08002153 mdat = dev->devslp_timing[ATA_LOG_DEVSLP_MDAT] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002154 ATA_LOG_DEVSLP_MDAT_MASK;
2155 if (!mdat)
2156 mdat = 10;
Shane Huang803739d2012-12-17 23:18:59 +08002157 deto = dev->devslp_timing[ATA_LOG_DEVSLP_DETO];
Shane Huang65fe1f02012-09-07 22:40:01 +08002158 if (!deto)
2159 deto = 20;
2160 } else {
2161 mdat = 10;
2162 deto = 20;
2163 }
2164
2165 devslp |= ((dito << PORT_DEVSLP_DITO_OFFSET) |
2166 (mdat << PORT_DEVSLP_MDAT_OFFSET) |
2167 (deto << PORT_DEVSLP_DETO_OFFSET) |
2168 PORT_DEVSLP_ADSE);
2169 writel(devslp, port_mmio + PORT_DEVSLP);
2170
Hans de Goede039ece32014-02-22 16:53:30 +01002171 hpriv->start_engine(ap);
Shane Huang65fe1f02012-09-07 22:40:01 +08002172
2173 /* enable device sleep feature for the drive */
2174 err_mask = ata_dev_set_feature(dev,
2175 SETFEATURES_SATA_ENABLE,
2176 SATA_DEVSLP);
2177 if (err_mask && err_mask != AC_ERR_DEV)
2178 ata_dev_warn(dev, "failed to enable DEVSLP\n");
2179}
2180
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002181static void ahci_enable_fbs(struct ata_port *ap)
2182{
Hans de Goede039ece32014-02-22 16:53:30 +01002183 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002184 struct ahci_port_priv *pp = ap->private_data;
2185 void __iomem *port_mmio = ahci_port_base(ap);
2186 u32 fbs;
2187 int rc;
2188
2189 if (!pp->fbs_supported)
2190 return;
2191
2192 fbs = readl(port_mmio + PORT_FBS);
2193 if (fbs & PORT_FBS_EN) {
2194 pp->fbs_enabled = true;
2195 pp->fbs_last_dev = -1; /* initialization */
2196 return;
2197 }
2198
Evan Wangfa89f532018-04-13 12:32:30 +08002199 rc = hpriv->stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002200 if (rc)
2201 return;
2202
2203 writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2204 fbs = readl(port_mmio + PORT_FBS);
2205 if (fbs & PORT_FBS_EN) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002206 dev_info(ap->host->dev, "FBS is enabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002207 pp->fbs_enabled = true;
2208 pp->fbs_last_dev = -1; /* initialization */
2209 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002210 dev_err(ap->host->dev, "Failed to enable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002211
Hans de Goede039ece32014-02-22 16:53:30 +01002212 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002213}
2214
2215static void ahci_disable_fbs(struct ata_port *ap)
2216{
Hans de Goede039ece32014-02-22 16:53:30 +01002217 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002218 struct ahci_port_priv *pp = ap->private_data;
2219 void __iomem *port_mmio = ahci_port_base(ap);
2220 u32 fbs;
2221 int rc;
2222
2223 if (!pp->fbs_supported)
2224 return;
2225
2226 fbs = readl(port_mmio + PORT_FBS);
2227 if ((fbs & PORT_FBS_EN) == 0) {
2228 pp->fbs_enabled = false;
2229 return;
2230 }
2231
Evan Wangfa89f532018-04-13 12:32:30 +08002232 rc = hpriv->stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002233 if (rc)
2234 return;
2235
2236 writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2237 fbs = readl(port_mmio + PORT_FBS);
2238 if (fbs & PORT_FBS_EN)
Joe Perchesa44fec12011-04-15 15:51:58 -07002239 dev_err(ap->host->dev, "Failed to disable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002240 else {
Joe Perchesa44fec12011-04-15 15:51:58 -07002241 dev_info(ap->host->dev, "FBS is disabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002242 pp->fbs_enabled = false;
2243 }
2244
Hans de Goede039ece32014-02-22 16:53:30 +01002245 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002246}
2247
2248static void ahci_pmp_attach(struct ata_port *ap)
2249{
2250 void __iomem *port_mmio = ahci_port_base(ap);
2251 struct ahci_port_priv *pp = ap->private_data;
2252 u32 cmd;
2253
2254 cmd = readl(port_mmio + PORT_CMD);
2255 cmd |= PORT_CMD_PMP;
2256 writel(cmd, port_mmio + PORT_CMD);
2257
2258 ahci_enable_fbs(ap);
2259
2260 pp->intr_mask |= PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002261
2262 /*
2263 * We must not change the port interrupt mask register if the
2264 * port is marked frozen, the value in pp->intr_mask will be
2265 * restored later when the port is thawed.
2266 *
2267 * Note that during initialization, the port is marked as
2268 * frozen since the irq handler is not yet registered.
2269 */
2270 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2271 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002272}
2273
2274static void ahci_pmp_detach(struct ata_port *ap)
2275{
2276 void __iomem *port_mmio = ahci_port_base(ap);
2277 struct ahci_port_priv *pp = ap->private_data;
2278 u32 cmd;
2279
2280 ahci_disable_fbs(ap);
2281
2282 cmd = readl(port_mmio + PORT_CMD);
2283 cmd &= ~PORT_CMD_PMP;
2284 writel(cmd, port_mmio + PORT_CMD);
2285
2286 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002287
2288 /* see comment above in ahci_pmp_attach() */
2289 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2290 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002291}
2292
David Milburn02cdfcf2010-11-12 15:38:21 -06002293int ahci_port_resume(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002294{
Mika Westerbergbb03c642016-02-18 10:54:16 +02002295 ahci_rpm_get_port(ap);
2296
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002297 ahci_power_up(ap);
2298 ahci_start_port(ap);
2299
2300 if (sata_pmp_attached(ap))
2301 ahci_pmp_attach(ap);
2302 else
2303 ahci_pmp_detach(ap);
2304
2305 return 0;
2306}
David Milburn02cdfcf2010-11-12 15:38:21 -06002307EXPORT_SYMBOL_GPL(ahci_port_resume);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002308
2309#ifdef CONFIG_PM
2310static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2311{
2312 const char *emsg = NULL;
2313 int rc;
2314
2315 rc = ahci_deinit_port(ap, &emsg);
2316 if (rc == 0)
2317 ahci_power_down(ap);
2318 else {
Joe Perchesa9a79df2011-04-15 15:51:59 -07002319 ata_port_err(ap, "%s (%d)\n", emsg, rc);
Tejun Heo7faa33d2011-07-22 11:41:26 +02002320 ata_port_freeze(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002321 }
2322
Mika Westerbergbb03c642016-02-18 10:54:16 +02002323 ahci_rpm_put_port(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002324 return rc;
2325}
2326#endif
2327
2328static int ahci_port_start(struct ata_port *ap)
2329{
2330 struct ahci_host_priv *hpriv = ap->host->private_data;
2331 struct device *dev = ap->host->dev;
2332 struct ahci_port_priv *pp;
2333 void *mem;
2334 dma_addr_t mem_dma;
2335 size_t dma_sz, rx_fis_sz;
2336
2337 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
2338 if (!pp)
2339 return -ENOMEM;
2340
Alexander Gordeevb29900e2013-05-22 08:53:48 +09002341 if (ap->host->n_ports > 1) {
2342 pp->irq_desc = devm_kzalloc(dev, 8, GFP_KERNEL);
2343 if (!pp->irq_desc) {
2344 devm_kfree(dev, pp);
2345 return -ENOMEM;
2346 }
2347 snprintf(pp->irq_desc, 8,
2348 "%s%d", dev_driver_string(dev), ap->port_no);
2349 }
2350
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002351 /* check FBS capability */
2352 if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2353 void __iomem *port_mmio = ahci_port_base(ap);
2354 u32 cmd = readl(port_mmio + PORT_CMD);
2355 if (cmd & PORT_CMD_FBSCP)
2356 pp->fbs_supported = true;
Tejun Heo5f173102010-07-24 16:53:48 +02002357 else if (hpriv->flags & AHCI_HFLAG_YES_FBS) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002358 dev_info(dev, "port %d can do FBS, forcing FBSCP\n",
2359 ap->port_no);
Tejun Heo5f173102010-07-24 16:53:48 +02002360 pp->fbs_supported = true;
2361 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002362 dev_warn(dev, "port %d is not capable of FBS\n",
2363 ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002364 }
2365
2366 if (pp->fbs_supported) {
2367 dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2368 rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2369 } else {
2370 dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2371 rx_fis_sz = AHCI_RX_FIS_SZ;
2372 }
2373
2374 mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
2375 if (!mem)
2376 return -ENOMEM;
2377 memset(mem, 0, dma_sz);
2378
2379 /*
2380 * First item in chunk of DMA memory: 32-slot command table,
2381 * 32 bytes each in size
2382 */
2383 pp->cmd_slot = mem;
2384 pp->cmd_slot_dma = mem_dma;
2385
2386 mem += AHCI_CMD_SLOT_SZ;
2387 mem_dma += AHCI_CMD_SLOT_SZ;
2388
2389 /*
2390 * Second item: Received-FIS area
2391 */
2392 pp->rx_fis = mem;
2393 pp->rx_fis_dma = mem_dma;
2394
2395 mem += rx_fis_sz;
2396 mem_dma += rx_fis_sz;
2397
2398 /*
2399 * Third item: data area for storing a single command
2400 * and its scatter-gather table
2401 */
2402 pp->cmd_tbl = mem;
2403 pp->cmd_tbl_dma = mem_dma;
2404
2405 /*
2406 * Save off initial list of interrupts to be enabled.
2407 * This could be changed later
2408 */
2409 pp->intr_mask = DEF_PORT_IRQ;
2410
Tejun Heo7865f832014-10-27 09:50:36 -04002411 /*
2412 * Switch to per-port locking in case each port has its own MSI vector.
2413 */
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002414 if (hpriv->flags & AHCI_HFLAG_MULTI_MSI) {
Tejun Heo7865f832014-10-27 09:50:36 -04002415 spin_lock_init(&pp->lock);
2416 ap->lock = &pp->lock;
2417 }
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01002418
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002419 ap->private_data = pp;
2420
2421 /* engage engines, captain */
2422 return ahci_port_resume(ap);
2423}
2424
2425static void ahci_port_stop(struct ata_port *ap)
2426{
2427 const char *emsg = NULL;
Pang Raymond05169002016-07-20 12:13:46 +00002428 struct ahci_host_priv *hpriv = ap->host->private_data;
2429 void __iomem *host_mmio = hpriv->mmio;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002430 int rc;
2431
2432 /* de-initialize port */
2433 rc = ahci_deinit_port(ap, &emsg);
2434 if (rc)
Joe Perchesa9a79df2011-04-15 15:51:59 -07002435 ata_port_warn(ap, "%s (%d)\n", emsg, rc);
Pang Raymond05169002016-07-20 12:13:46 +00002436
2437 /*
2438 * Clear GHC.IS to prevent stuck INTx after disabling MSI and
2439 * re-enabling INTx.
2440 */
2441 writel(1 << ap->port_no, host_mmio + HOST_IRQ_STAT);
Samuel Morris332c42a2018-05-29 10:06:11 +00002442
2443 ahci_rpm_put_port(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002444}
2445
2446void ahci_print_info(struct ata_host *host, const char *scc_s)
2447{
2448 struct ahci_host_priv *hpriv = host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002449 u32 vers, cap, cap2, impl, speed;
2450 const char *speed_s;
2451
Mika Westerberg8ea909c2016-02-18 10:54:14 +02002452 vers = hpriv->version;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002453 cap = hpriv->cap;
2454 cap2 = hpriv->cap2;
2455 impl = hpriv->port_map;
2456
2457 speed = (cap >> 20) & 0xf;
2458 if (speed == 1)
2459 speed_s = "1.5";
2460 else if (speed == 2)
2461 speed_s = "3";
2462 else if (speed == 3)
2463 speed_s = "6";
2464 else
2465 speed_s = "?";
2466
2467 dev_info(host->dev,
2468 "AHCI %02x%02x.%02x%02x "
2469 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
2470 ,
2471
2472 (vers >> 24) & 0xff,
2473 (vers >> 16) & 0xff,
2474 (vers >> 8) & 0xff,
2475 vers & 0xff,
2476
2477 ((cap >> 8) & 0x1f) + 1,
2478 (cap & 0x1f) + 1,
2479 speed_s,
2480 impl,
2481 scc_s);
2482
2483 dev_info(host->dev,
2484 "flags: "
2485 "%s%s%s%s%s%s%s"
2486 "%s%s%s%s%s%s%s"
Shane Huang65fe1f02012-09-07 22:40:01 +08002487 "%s%s%s%s%s%s%s"
2488 "%s%s\n"
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002489 ,
2490
2491 cap & HOST_CAP_64 ? "64bit " : "",
2492 cap & HOST_CAP_NCQ ? "ncq " : "",
2493 cap & HOST_CAP_SNTF ? "sntf " : "",
2494 cap & HOST_CAP_MPS ? "ilck " : "",
2495 cap & HOST_CAP_SSS ? "stag " : "",
2496 cap & HOST_CAP_ALPM ? "pm " : "",
2497 cap & HOST_CAP_LED ? "led " : "",
2498 cap & HOST_CAP_CLO ? "clo " : "",
2499 cap & HOST_CAP_ONLY ? "only " : "",
2500 cap & HOST_CAP_PMP ? "pmp " : "",
2501 cap & HOST_CAP_FBS ? "fbs " : "",
2502 cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2503 cap & HOST_CAP_SSC ? "slum " : "",
2504 cap & HOST_CAP_PART ? "part " : "",
2505 cap & HOST_CAP_CCC ? "ccc " : "",
2506 cap & HOST_CAP_EMS ? "ems " : "",
2507 cap & HOST_CAP_SXS ? "sxs " : "",
Shane Huang65fe1f02012-09-07 22:40:01 +08002508 cap2 & HOST_CAP2_DESO ? "deso " : "",
2509 cap2 & HOST_CAP2_SADM ? "sadm " : "",
2510 cap2 & HOST_CAP2_SDS ? "sds " : "",
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002511 cap2 & HOST_CAP2_APST ? "apst " : "",
2512 cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2513 cap2 & HOST_CAP2_BOH ? "boh " : ""
2514 );
2515}
2516EXPORT_SYMBOL_GPL(ahci_print_info);
2517
2518void ahci_set_em_messages(struct ahci_host_priv *hpriv,
2519 struct ata_port_info *pi)
2520{
2521 u8 messages;
2522 void __iomem *mmio = hpriv->mmio;
2523 u32 em_loc = readl(mmio + HOST_EM_LOC);
2524 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2525
2526 if (!ahci_em_messages || !(hpriv->cap & HOST_CAP_EMS))
2527 return;
2528
2529 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
2530
Harry Zhang008dbd62010-04-23 17:27:19 +08002531 if (messages) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002532 /* store em_loc */
2533 hpriv->em_loc = ((em_loc >> 16) * 4);
Harry Zhangc0623162010-04-23 17:28:38 +08002534 hpriv->em_buf_sz = ((em_loc & 0xff) * 4);
Harry Zhang008dbd62010-04-23 17:27:19 +08002535 hpriv->em_msg_type = messages;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002536 pi->flags |= ATA_FLAG_EM;
2537 if (!(em_ctl & EM_CTL_ALHD))
2538 pi->flags |= ATA_FLAG_SW_ACTIVITY;
2539 }
2540}
2541EXPORT_SYMBOL_GPL(ahci_set_em_messages);
2542
Dan Williamsd684a902015-11-11 16:27:33 -08002543static int ahci_host_activate_multi_irqs(struct ata_host *host,
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002544 struct scsi_host_template *sht)
Alexander Gordeev1c628542014-09-29 18:25:58 +02002545{
Dan Williamsd684a902015-11-11 16:27:33 -08002546 struct ahci_host_priv *hpriv = host->private_data;
Alexander Gordeev1c628542014-09-29 18:25:58 +02002547 int i, rc;
2548
2549 rc = ata_host_start(host);
2550 if (rc)
2551 return rc;
Robert Richter21bfd1a2015-05-31 13:55:18 +02002552 /*
2553 * Requests IRQs according to AHCI-1.1 when multiple MSIs were
2554 * allocated. That is one MSI per port, starting from @irq.
2555 */
Alexander Gordeev1c628542014-09-29 18:25:58 +02002556 for (i = 0; i < host->n_ports; i++) {
2557 struct ahci_port_priv *pp = host->ports[i]->private_data;
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002558 int irq = hpriv->get_irq_vector(host, i);
Alexander Gordeev1c628542014-09-29 18:25:58 +02002559
2560 /* Do not receive interrupts sent by dummy ports */
2561 if (!pp) {
Christoph Hellwig9b4b3f62016-08-11 07:26:01 -07002562 disable_irq(irq);
Alexander Gordeev1c628542014-09-29 18:25:58 +02002563 continue;
2564 }
2565
Dan Williamsa6b7fb72015-11-11 16:27:38 -08002566 rc = devm_request_irq(host->dev, irq, ahci_multi_irqs_intr_hard,
2567 0, pp->irq_desc, host->ports[i]);
2568
Alexander Gordeev1c628542014-09-29 18:25:58 +02002569 if (rc)
Dan Williams0a142b22015-10-30 17:09:35 -04002570 return rc;
Dan Williamsd684a902015-11-11 16:27:33 -08002571 ata_port_desc(host->ports[i], "irq %d", irq);
Dan Williams0a142b22015-10-30 17:09:35 -04002572 }
Dan Williamsd684a902015-11-11 16:27:33 -08002573
Dan Williams0a142b22015-10-30 17:09:35 -04002574 return ata_host_register(host, sht);
Alexander Gordeev1c628542014-09-29 18:25:58 +02002575}
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002576
2577/**
2578 * ahci_host_activate - start AHCI host, request IRQs and register it
2579 * @host: target ATA host
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002580 * @sht: scsi_host_template to use when registering the host
2581 *
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002582 * LOCKING:
2583 * Inherited from calling layer (may sleep).
2584 *
2585 * RETURNS:
2586 * 0 on success, -errno otherwise.
2587 */
Robert Richter21bfd1a2015-05-31 13:55:18 +02002588int ahci_host_activate(struct ata_host *host, struct scsi_host_template *sht)
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002589{
2590 struct ahci_host_priv *hpriv = host->private_data;
Robert Richter21bfd1a2015-05-31 13:55:18 +02002591 int irq = hpriv->irq;
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002592 int rc;
2593
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002594 if (hpriv->flags & AHCI_HFLAG_MULTI_MSI) {
Suman Tripathif070d672016-02-06 11:25:22 +05302595 if (hpriv->irq_handler)
Sander Eikelenboomd991c872016-03-20 22:27:06 +01002596 dev_warn(host->dev,
2597 "both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented\n");
Christoph Hellwig0b9e29882016-09-05 17:21:45 +02002598 if (!hpriv->get_irq_vector) {
2599 dev_err(host->dev,
2600 "AHCI_HFLAG_MULTI_MSI requires ->get_irq_vector!\n");
2601 return -EIO;
2602 }
Suman Tripathif070d672016-02-06 11:25:22 +05302603
Dan Williamsd684a902015-11-11 16:27:33 -08002604 rc = ahci_host_activate_multi_irqs(host, sht);
Suman Tripathif070d672016-02-06 11:25:22 +05302605 } else {
2606 rc = ata_host_activate(host, irq, hpriv->irq_handler,
Suman Tripathi5903b162015-05-06 00:51:11 +05302607 IRQF_SHARED, sht);
Suman Tripathif070d672016-02-06 11:25:22 +05302608 }
2609
2610
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002611 return rc;
2612}
Alexander Gordeev1c628542014-09-29 18:25:58 +02002613EXPORT_SYMBOL_GPL(ahci_host_activate);
2614
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002615MODULE_AUTHOR("Jeff Garzik");
2616MODULE_DESCRIPTION("Common AHCI SATA low-level routines");
2617MODULE_LICENSE("GPL");