blob: 0a5645fb02f8153896964ae15473583c46c3c72e [file] [log] [blame]
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001/*
2 * libahci.c - Common AHCI SATA low-level routines
3 *
Tejun Heo8c3d3d42013-05-14 11:09:50 -07004 * Maintained by: Tejun Heo <tj@kernel.org>
Anton Vorontsov365cfa12010-03-28 00:22:14 -04005 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2004-2005 Red Hat, Inc.
9 *
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * AHCI hardware documentation:
30 * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
31 * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
32 *
33 */
34
35#include <linux/kernel.h>
Tejun Heofbaf6662010-03-30 02:52:43 +090036#include <linux/gfp.h>
Anton Vorontsov365cfa12010-03-28 00:22:14 -040037#include <linux/module.h>
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);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400116
117static DEVICE_ATTR(ahci_host_caps, S_IRUGO, ahci_show_host_caps, NULL);
118static DEVICE_ATTR(ahci_host_cap2, S_IRUGO, ahci_show_host_cap2, NULL);
119static DEVICE_ATTR(ahci_host_version, S_IRUGO, ahci_show_host_version, NULL);
120static DEVICE_ATTR(ahci_port_cmd, S_IRUGO, ahci_show_port_cmd, NULL);
Harry Zhangc0623162010-04-23 17:28:38 +0800121static DEVICE_ATTR(em_buffer, S_IWUSR | S_IRUGO,
122 ahci_read_em_buffer, ahci_store_em_buffer);
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100123static DEVICE_ATTR(em_message_supported, S_IRUGO, ahci_show_em_supported, NULL);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400124
Tejun Heofad16e72010-09-21 09:25:48 +0200125struct device_attribute *ahci_shost_attrs[] = {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400126 &dev_attr_link_power_management_policy,
127 &dev_attr_em_message_type,
128 &dev_attr_em_message,
129 &dev_attr_ahci_host_caps,
130 &dev_attr_ahci_host_cap2,
131 &dev_attr_ahci_host_version,
132 &dev_attr_ahci_port_cmd,
Harry Zhangc0623162010-04-23 17:28:38 +0800133 &dev_attr_em_buffer,
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100134 &dev_attr_em_message_supported,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400135 NULL
136};
Tejun Heofad16e72010-09-21 09:25:48 +0200137EXPORT_SYMBOL_GPL(ahci_shost_attrs);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400138
Tejun Heofad16e72010-09-21 09:25:48 +0200139struct device_attribute *ahci_sdev_attrs[] = {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400140 &dev_attr_sw_activity,
141 &dev_attr_unload_heads,
142 NULL
143};
Tejun Heofad16e72010-09-21 09:25:48 +0200144EXPORT_SYMBOL_GPL(ahci_sdev_attrs);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400145
146struct ata_port_operations ahci_ops = {
147 .inherits = &sata_pmp_port_ops,
148
149 .qc_defer = ahci_pmp_qc_defer,
150 .qc_prep = ahci_qc_prep,
151 .qc_issue = ahci_qc_issue,
152 .qc_fill_rtf = ahci_qc_fill_rtf,
153
154 .freeze = ahci_freeze,
155 .thaw = ahci_thaw,
156 .softreset = ahci_softreset,
157 .hardreset = ahci_hardreset,
158 .postreset = ahci_postreset,
159 .pmp_softreset = ahci_softreset,
160 .error_handler = ahci_error_handler,
161 .post_internal_cmd = ahci_post_internal_cmd,
162 .dev_config = ahci_dev_config,
163
164 .scr_read = ahci_scr_read,
165 .scr_write = ahci_scr_write,
166 .pmp_attach = ahci_pmp_attach,
167 .pmp_detach = ahci_pmp_detach,
168
Tejun Heo6b7ae952010-09-01 17:50:06 +0200169 .set_lpm = ahci_set_lpm,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400170 .em_show = ahci_led_show,
171 .em_store = ahci_led_store,
172 .sw_activity_show = ahci_activity_show,
173 .sw_activity_store = ahci_activity_store,
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500174 .transmit_led_message = ahci_transmit_led_message,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400175#ifdef CONFIG_PM
176 .port_suspend = ahci_port_suspend,
177 .port_resume = ahci_port_resume,
178#endif
179 .port_start = ahci_port_start,
180 .port_stop = ahci_port_stop,
181};
182EXPORT_SYMBOL_GPL(ahci_ops);
183
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +0800184struct ata_port_operations ahci_pmp_retry_srst_ops = {
185 .inherits = &ahci_ops,
186 .softreset = ahci_pmp_retry_softreset,
187};
188EXPORT_SYMBOL_GPL(ahci_pmp_retry_srst_ops);
189
Chuansheng Liued08d402013-09-18 20:21:49 +0800190static bool ahci_em_messages __read_mostly = true;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400191EXPORT_SYMBOL_GPL(ahci_em_messages);
Chuansheng Liued08d402013-09-18 20:21:49 +0800192module_param(ahci_em_messages, bool, 0444);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400193/* add other LED protocol types when they become supported */
194MODULE_PARM_DESC(ahci_em_messages,
Harry Zhang008dbd62010-04-23 17:27:19 +0800195 "AHCI Enclosure Management Message control (0 = off, 1 = on)");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400196
Chuansheng Liued08d402013-09-18 20:21:49 +0800197/* device sleep idle timeout in ms */
198static int devslp_idle_timeout __read_mostly = 1000;
Shane Huang65fe1f02012-09-07 22:40:01 +0800199module_param(devslp_idle_timeout, int, 0644);
200MODULE_PARM_DESC(devslp_idle_timeout, "device sleep idle timeout");
201
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400202static void ahci_enable_ahci(void __iomem *mmio)
203{
204 int i;
205 u32 tmp;
206
207 /* turn on AHCI_EN */
208 tmp = readl(mmio + HOST_CTL);
209 if (tmp & HOST_AHCI_EN)
210 return;
211
212 /* Some controllers need AHCI_EN to be written multiple times.
213 * Try a few times before giving up.
214 */
215 for (i = 0; i < 5; i++) {
216 tmp |= HOST_AHCI_EN;
217 writel(tmp, mmio + HOST_CTL);
218 tmp = readl(mmio + HOST_CTL); /* flush && sanity check */
219 if (tmp & HOST_AHCI_EN)
220 return;
221 msleep(10);
222 }
223
224 WARN_ON(1);
225}
226
227static ssize_t ahci_show_host_caps(struct device *dev,
228 struct device_attribute *attr, char *buf)
229{
230 struct Scsi_Host *shost = class_to_shost(dev);
231 struct ata_port *ap = ata_shost_to_port(shost);
232 struct ahci_host_priv *hpriv = ap->host->private_data;
233
234 return sprintf(buf, "%x\n", hpriv->cap);
235}
236
237static ssize_t ahci_show_host_cap2(struct device *dev,
238 struct device_attribute *attr, char *buf)
239{
240 struct Scsi_Host *shost = class_to_shost(dev);
241 struct ata_port *ap = ata_shost_to_port(shost);
242 struct ahci_host_priv *hpriv = ap->host->private_data;
243
244 return sprintf(buf, "%x\n", hpriv->cap2);
245}
246
247static ssize_t ahci_show_host_version(struct device *dev,
248 struct device_attribute *attr, char *buf)
249{
250 struct Scsi_Host *shost = class_to_shost(dev);
251 struct ata_port *ap = ata_shost_to_port(shost);
252 struct ahci_host_priv *hpriv = ap->host->private_data;
253 void __iomem *mmio = hpriv->mmio;
254
255 return sprintf(buf, "%x\n", readl(mmio + HOST_VERSION));
256}
257
258static ssize_t ahci_show_port_cmd(struct device *dev,
259 struct device_attribute *attr, char *buf)
260{
261 struct Scsi_Host *shost = class_to_shost(dev);
262 struct ata_port *ap = ata_shost_to_port(shost);
263 void __iomem *port_mmio = ahci_port_base(ap);
264
265 return sprintf(buf, "%x\n", readl(port_mmio + PORT_CMD));
266}
267
Harry Zhangc0623162010-04-23 17:28:38 +0800268static ssize_t ahci_read_em_buffer(struct device *dev,
269 struct device_attribute *attr, char *buf)
270{
271 struct Scsi_Host *shost = class_to_shost(dev);
272 struct ata_port *ap = ata_shost_to_port(shost);
273 struct ahci_host_priv *hpriv = ap->host->private_data;
274 void __iomem *mmio = hpriv->mmio;
275 void __iomem *em_mmio = mmio + hpriv->em_loc;
276 u32 em_ctl, msg;
277 unsigned long flags;
278 size_t count;
279 int i;
280
281 spin_lock_irqsave(ap->lock, flags);
282
283 em_ctl = readl(mmio + HOST_EM_CTL);
284 if (!(ap->flags & ATA_FLAG_EM) || em_ctl & EM_CTL_XMT ||
285 !(hpriv->em_msg_type & EM_MSG_TYPE_SGPIO)) {
286 spin_unlock_irqrestore(ap->lock, flags);
287 return -EINVAL;
288 }
289
290 if (!(em_ctl & EM_CTL_MR)) {
291 spin_unlock_irqrestore(ap->lock, flags);
292 return -EAGAIN;
293 }
294
295 if (!(em_ctl & EM_CTL_SMB))
296 em_mmio += hpriv->em_buf_sz;
297
298 count = hpriv->em_buf_sz;
299
300 /* the count should not be larger than PAGE_SIZE */
301 if (count > PAGE_SIZE) {
302 if (printk_ratelimit())
Joe Perchesa9a79df2011-04-15 15:51:59 -0700303 ata_port_warn(ap,
304 "EM read buffer size too large: "
305 "buffer size %u, page size %lu\n",
306 hpriv->em_buf_sz, PAGE_SIZE);
Harry Zhangc0623162010-04-23 17:28:38 +0800307 count = PAGE_SIZE;
308 }
309
310 for (i = 0; i < count; i += 4) {
311 msg = readl(em_mmio + i);
312 buf[i] = msg & 0xff;
313 buf[i + 1] = (msg >> 8) & 0xff;
314 buf[i + 2] = (msg >> 16) & 0xff;
315 buf[i + 3] = (msg >> 24) & 0xff;
316 }
317
318 spin_unlock_irqrestore(ap->lock, flags);
319
320 return i;
321}
322
323static ssize_t ahci_store_em_buffer(struct device *dev,
324 struct device_attribute *attr,
325 const char *buf, size_t size)
326{
327 struct Scsi_Host *shost = class_to_shost(dev);
328 struct ata_port *ap = ata_shost_to_port(shost);
329 struct ahci_host_priv *hpriv = ap->host->private_data;
330 void __iomem *mmio = hpriv->mmio;
331 void __iomem *em_mmio = mmio + hpriv->em_loc;
Harry Zhangf9ce8892010-06-24 11:34:23 +0800332 const unsigned char *msg_buf = buf;
Harry Zhangc0623162010-04-23 17:28:38 +0800333 u32 em_ctl, msg;
334 unsigned long flags;
335 int i;
336
337 /* check size validity */
338 if (!(ap->flags & ATA_FLAG_EM) ||
339 !(hpriv->em_msg_type & EM_MSG_TYPE_SGPIO) ||
340 size % 4 || size > hpriv->em_buf_sz)
341 return -EINVAL;
342
343 spin_lock_irqsave(ap->lock, flags);
344
345 em_ctl = readl(mmio + HOST_EM_CTL);
346 if (em_ctl & EM_CTL_TM) {
347 spin_unlock_irqrestore(ap->lock, flags);
348 return -EBUSY;
349 }
350
351 for (i = 0; i < size; i += 4) {
Harry Zhangf9ce8892010-06-24 11:34:23 +0800352 msg = msg_buf[i] | msg_buf[i + 1] << 8 |
353 msg_buf[i + 2] << 16 | msg_buf[i + 3] << 24;
Harry Zhangc0623162010-04-23 17:28:38 +0800354 writel(msg, em_mmio + i);
355 }
356
357 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
358
359 spin_unlock_irqrestore(ap->lock, flags);
360
361 return size;
362}
363
Hannes Reinecke6e5fe5b12011-03-04 09:54:52 +0100364static ssize_t ahci_show_em_supported(struct device *dev,
365 struct device_attribute *attr, char *buf)
366{
367 struct Scsi_Host *shost = class_to_shost(dev);
368 struct ata_port *ap = ata_shost_to_port(shost);
369 struct ahci_host_priv *hpriv = ap->host->private_data;
370 void __iomem *mmio = hpriv->mmio;
371 u32 em_ctl;
372
373 em_ctl = readl(mmio + HOST_EM_CTL);
374
375 return sprintf(buf, "%s%s%s%s\n",
376 em_ctl & EM_CTL_LED ? "led " : "",
377 em_ctl & EM_CTL_SAFTE ? "saf-te " : "",
378 em_ctl & EM_CTL_SES ? "ses-2 " : "",
379 em_ctl & EM_CTL_SGPIO ? "sgpio " : "");
380}
381
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400382/**
383 * ahci_save_initial_config - Save and fixup initial config values
384 * @dev: target AHCI device
385 * @hpriv: host private area to store config values
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400386 *
387 * Some registers containing configuration info might be setup by
388 * BIOS and might be cleared on reset. This function saves the
389 * initial values of those registers into @hpriv such that they
390 * can be restored after controller reset.
391 *
392 * If inconsistent, config values are fixed up by this function.
393 *
Hans de Goede039ece32014-02-22 16:53:30 +0100394 * If it is not set already this function sets hpriv->start_engine to
395 * ahci_start_engine.
396 *
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400397 * LOCKING:
398 * None.
399 */
Antoine Ténart725c7b52014-07-30 20:13:56 +0200400void ahci_save_initial_config(struct device *dev, struct ahci_host_priv *hpriv)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400401{
402 void __iomem *mmio = hpriv->mmio;
403 u32 cap, cap2, vers, port_map;
404 int i;
405
406 /* make sure AHCI mode is enabled before accessing CAP */
407 ahci_enable_ahci(mmio);
408
409 /* Values prefixed with saved_ are written back to host after
410 * reset. Values without are used for driver operation.
411 */
412 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
413 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
414
415 /* CAP2 register is only defined for AHCI 1.2 and later */
416 vers = readl(mmio + HOST_VERSION);
417 if ((vers >> 16) > 1 ||
418 ((vers >> 16) == 1 && (vers & 0xFFFF) >= 0x200))
419 hpriv->saved_cap2 = cap2 = readl(mmio + HOST_CAP2);
420 else
421 hpriv->saved_cap2 = cap2 = 0;
422
423 /* some chips have errata preventing 64bit use */
424 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700425 dev_info(dev, "controller can't do 64bit DMA, forcing 32bit\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400426 cap &= ~HOST_CAP_64;
427 }
428
429 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700430 dev_info(dev, "controller can't do NCQ, turning off CAP_NCQ\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400431 cap &= ~HOST_CAP_NCQ;
432 }
433
434 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700435 dev_info(dev, "controller can do NCQ, turning on CAP_NCQ\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400436 cap |= HOST_CAP_NCQ;
437 }
438
439 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700440 dev_info(dev, "controller can't do PMP, turning off CAP_PMP\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400441 cap &= ~HOST_CAP_PMP;
442 }
443
444 if ((cap & HOST_CAP_SNTF) && (hpriv->flags & AHCI_HFLAG_NO_SNTF)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700445 dev_info(dev,
446 "controller can't do SNTF, turning off CAP_SNTF\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400447 cap &= ~HOST_CAP_SNTF;
448 }
449
Jacob Pan0cf4a7d2014-04-15 22:27:11 -0700450 if ((cap2 & HOST_CAP2_SDS) && (hpriv->flags & AHCI_HFLAG_NO_DEVSLP)) {
451 dev_info(dev,
452 "controller can't do DEVSLP, turning off\n");
453 cap2 &= ~HOST_CAP2_SDS;
454 cap2 &= ~HOST_CAP2_SADM;
455 }
456
Tejun Heo5f173102010-07-24 16:53:48 +0200457 if (!(cap & HOST_CAP_FBS) && (hpriv->flags & AHCI_HFLAG_YES_FBS)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700458 dev_info(dev, "controller can do FBS, turning on CAP_FBS\n");
Tejun Heo5f173102010-07-24 16:53:48 +0200459 cap |= HOST_CAP_FBS;
460 }
461
Kefeng Wang888d91a2014-05-14 14:13:40 +0800462 if ((cap & HOST_CAP_FBS) && (hpriv->flags & AHCI_HFLAG_NO_FBS)) {
463 dev_info(dev, "controller can't do FBS, turning off CAP_FBS\n");
464 cap &= ~HOST_CAP_FBS;
465 }
466
Antoine Ténart725c7b52014-07-30 20:13:56 +0200467 if (hpriv->force_port_map && port_map != hpriv->force_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700468 dev_info(dev, "forcing port_map 0x%x -> 0x%x\n",
Antoine Ténart725c7b52014-07-30 20:13:56 +0200469 port_map, hpriv->force_port_map);
470 port_map = hpriv->force_port_map;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400471 }
472
Antoine Ténart725c7b52014-07-30 20:13:56 +0200473 if (hpriv->mask_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700474 dev_warn(dev, "masking port_map 0x%x -> 0x%x\n",
475 port_map,
Antoine Ténart725c7b52014-07-30 20:13:56 +0200476 port_map & hpriv->mask_port_map);
477 port_map &= hpriv->mask_port_map;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400478 }
479
480 /* cross check port_map and cap.n_ports */
481 if (port_map) {
482 int map_ports = 0;
483
484 for (i = 0; i < AHCI_MAX_PORTS; i++)
485 if (port_map & (1 << i))
486 map_ports++;
487
488 /* If PI has more ports than n_ports, whine, clear
489 * port_map and let it be generated from n_ports.
490 */
491 if (map_ports > ahci_nr_ports(cap)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700492 dev_warn(dev,
493 "implemented port map (0x%x) contains more ports than nr_ports (%u), using nr_ports\n",
494 port_map, ahci_nr_ports(cap));
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400495 port_map = 0;
496 }
497 }
498
499 /* fabricate port_map from cap.nr_ports */
500 if (!port_map) {
501 port_map = (1 << ahci_nr_ports(cap)) - 1;
Joe Perchesa44fec12011-04-15 15:51:58 -0700502 dev_warn(dev, "forcing PORTS_IMPL to 0x%x\n", port_map);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400503
504 /* write the fixed up value to the PI register */
505 hpriv->saved_port_map = port_map;
506 }
507
508 /* record values to use during operation */
509 hpriv->cap = cap;
510 hpriv->cap2 = cap2;
511 hpriv->port_map = port_map;
Hans de Goede039ece32014-02-22 16:53:30 +0100512
513 if (!hpriv->start_engine)
514 hpriv->start_engine = ahci_start_engine;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400515}
516EXPORT_SYMBOL_GPL(ahci_save_initial_config);
517
518/**
519 * ahci_restore_initial_config - Restore initial config
520 * @host: target ATA host
521 *
522 * Restore initial config stored by ahci_save_initial_config().
523 *
524 * LOCKING:
525 * None.
526 */
527static void ahci_restore_initial_config(struct ata_host *host)
528{
529 struct ahci_host_priv *hpriv = host->private_data;
530 void __iomem *mmio = hpriv->mmio;
531
532 writel(hpriv->saved_cap, mmio + HOST_CAP);
533 if (hpriv->saved_cap2)
534 writel(hpriv->saved_cap2, mmio + HOST_CAP2);
535 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
536 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
537}
538
539static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
540{
541 static const int offset[] = {
542 [SCR_STATUS] = PORT_SCR_STAT,
543 [SCR_CONTROL] = PORT_SCR_CTL,
544 [SCR_ERROR] = PORT_SCR_ERR,
545 [SCR_ACTIVE] = PORT_SCR_ACT,
546 [SCR_NOTIFICATION] = PORT_SCR_NTF,
547 };
548 struct ahci_host_priv *hpriv = ap->host->private_data;
549
550 if (sc_reg < ARRAY_SIZE(offset) &&
551 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
552 return offset[sc_reg];
553 return 0;
554}
555
556static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
557{
558 void __iomem *port_mmio = ahci_port_base(link->ap);
559 int offset = ahci_scr_offset(link->ap, sc_reg);
560
561 if (offset) {
562 *val = readl(port_mmio + offset);
563 return 0;
564 }
565 return -EINVAL;
566}
567
568static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
569{
570 void __iomem *port_mmio = ahci_port_base(link->ap);
571 int offset = ahci_scr_offset(link->ap, sc_reg);
572
573 if (offset) {
574 writel(val, port_mmio + offset);
575 return 0;
576 }
577 return -EINVAL;
578}
579
580void ahci_start_engine(struct ata_port *ap)
581{
582 void __iomem *port_mmio = ahci_port_base(ap);
583 u32 tmp;
584
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400585 /* start DMA */
586 tmp = readl(port_mmio + PORT_CMD);
587 tmp |= PORT_CMD_START;
588 writel(tmp, port_mmio + PORT_CMD);
589 readl(port_mmio + PORT_CMD); /* flush */
590}
591EXPORT_SYMBOL_GPL(ahci_start_engine);
592
593int ahci_stop_engine(struct ata_port *ap)
594{
595 void __iomem *port_mmio = ahci_port_base(ap);
596 u32 tmp;
597
598 tmp = readl(port_mmio + PORT_CMD);
599
600 /* check if the HBA is idle */
601 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
602 return 0;
603
604 /* setting HBA to idle */
605 tmp &= ~PORT_CMD_START;
606 writel(tmp, port_mmio + PORT_CMD);
607
608 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo97750ce2010-09-06 17:56:29 +0200609 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400610 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
611 if (tmp & PORT_CMD_LIST_ON)
612 return -EIO;
613
614 return 0;
615}
616EXPORT_SYMBOL_GPL(ahci_stop_engine);
617
Suman Tripathi39e0ee92014-07-07 22:33:04 +0530618void ahci_start_fis_rx(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400619{
620 void __iomem *port_mmio = ahci_port_base(ap);
621 struct ahci_host_priv *hpriv = ap->host->private_data;
622 struct ahci_port_priv *pp = ap->private_data;
623 u32 tmp;
624
625 /* set FIS registers */
626 if (hpriv->cap & HOST_CAP_64)
627 writel((pp->cmd_slot_dma >> 16) >> 16,
628 port_mmio + PORT_LST_ADDR_HI);
629 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
630
631 if (hpriv->cap & HOST_CAP_64)
632 writel((pp->rx_fis_dma >> 16) >> 16,
633 port_mmio + PORT_FIS_ADDR_HI);
634 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
635
636 /* enable FIS reception */
637 tmp = readl(port_mmio + PORT_CMD);
638 tmp |= PORT_CMD_FIS_RX;
639 writel(tmp, port_mmio + PORT_CMD);
640
641 /* flush */
642 readl(port_mmio + PORT_CMD);
643}
Suman Tripathi39e0ee92014-07-07 22:33:04 +0530644EXPORT_SYMBOL_GPL(ahci_start_fis_rx);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400645
646static int ahci_stop_fis_rx(struct ata_port *ap)
647{
648 void __iomem *port_mmio = ahci_port_base(ap);
649 u32 tmp;
650
651 /* disable FIS reception */
652 tmp = readl(port_mmio + PORT_CMD);
653 tmp &= ~PORT_CMD_FIS_RX;
654 writel(tmp, port_mmio + PORT_CMD);
655
656 /* wait for completion, spec says 500ms, give it 1000 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200657 tmp = ata_wait_register(ap, port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400658 PORT_CMD_FIS_ON, 10, 1000);
659 if (tmp & PORT_CMD_FIS_ON)
660 return -EBUSY;
661
662 return 0;
663}
664
665static void ahci_power_up(struct ata_port *ap)
666{
667 struct ahci_host_priv *hpriv = ap->host->private_data;
668 void __iomem *port_mmio = ahci_port_base(ap);
669 u32 cmd;
670
671 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
672
673 /* spin up device */
674 if (hpriv->cap & HOST_CAP_SSS) {
675 cmd |= PORT_CMD_SPIN_UP;
676 writel(cmd, port_mmio + PORT_CMD);
677 }
678
679 /* wake up link */
680 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
681}
682
Tejun Heo6b7ae952010-09-01 17:50:06 +0200683static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
684 unsigned int hints)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400685{
Tejun Heo6b7ae952010-09-01 17:50:06 +0200686 struct ata_port *ap = link->ap;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400687 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400688 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400689 void __iomem *port_mmio = ahci_port_base(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400690
Tejun Heo6b7ae952010-09-01 17:50:06 +0200691 if (policy != ATA_LPM_MAX_POWER) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400692 /*
Tejun Heo6b7ae952010-09-01 17:50:06 +0200693 * Disable interrupts on Phy Ready. This keeps us from
694 * getting woken up due to spurious phy ready
695 * interrupts.
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400696 */
Tejun Heo6b7ae952010-09-01 17:50:06 +0200697 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
698 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
699
700 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400701 }
702
Tejun Heo6b7ae952010-09-01 17:50:06 +0200703 if (hpriv->cap & HOST_CAP_ALPM) {
704 u32 cmd = readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400705
Tejun Heo6b7ae952010-09-01 17:50:06 +0200706 if (policy == ATA_LPM_MAX_POWER || !(hints & ATA_LPM_HIPM)) {
707 cmd &= ~(PORT_CMD_ASP | PORT_CMD_ALPE);
708 cmd |= PORT_CMD_ICC_ACTIVE;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400709
Tejun Heo6b7ae952010-09-01 17:50:06 +0200710 writel(cmd, port_mmio + PORT_CMD);
711 readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400712
Tejun Heo6b7ae952010-09-01 17:50:06 +0200713 /* wait 10ms to be sure we've come out of LPM state */
Tejun Heo97750ce2010-09-06 17:56:29 +0200714 ata_msleep(ap, 10);
Tejun Heo6b7ae952010-09-01 17:50:06 +0200715 } else {
716 cmd |= PORT_CMD_ALPE;
717 if (policy == ATA_LPM_MIN_POWER)
718 cmd |= PORT_CMD_ASP;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400719
Tejun Heo6b7ae952010-09-01 17:50:06 +0200720 /* write out new cmd value */
721 writel(cmd, port_mmio + PORT_CMD);
722 }
723 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400724
Shane Huang65fe1f02012-09-07 22:40:01 +0800725 /* set aggressive device sleep */
726 if ((hpriv->cap2 & HOST_CAP2_SDS) &&
727 (hpriv->cap2 & HOST_CAP2_SADM) &&
728 (link->device->flags & ATA_DFLAG_DEVSLP)) {
729 if (policy == ATA_LPM_MIN_POWER)
730 ahci_set_aggressive_devslp(ap, true);
731 else
732 ahci_set_aggressive_devslp(ap, false);
733 }
734
Tejun Heo6b7ae952010-09-01 17:50:06 +0200735 if (policy == ATA_LPM_MAX_POWER) {
736 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400737
Tejun Heo6b7ae952010-09-01 17:50:06 +0200738 /* turn PHYRDY IRQ back on */
739 pp->intr_mask |= PORT_IRQ_PHYRDY;
740 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
741 }
742
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400743 return 0;
744}
745
746#ifdef CONFIG_PM
747static void ahci_power_down(struct ata_port *ap)
748{
749 struct ahci_host_priv *hpriv = ap->host->private_data;
750 void __iomem *port_mmio = ahci_port_base(ap);
751 u32 cmd, scontrol;
752
753 if (!(hpriv->cap & HOST_CAP_SSS))
754 return;
755
756 /* put device into listen mode, first set PxSCTL.DET to 0 */
757 scontrol = readl(port_mmio + PORT_SCR_CTL);
758 scontrol &= ~0xf;
759 writel(scontrol, port_mmio + PORT_SCR_CTL);
760
761 /* then set PxCMD.SUD to 0 */
762 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
763 cmd &= ~PORT_CMD_SPIN_UP;
764 writel(cmd, port_mmio + PORT_CMD);
765}
766#endif
767
768static void ahci_start_port(struct ata_port *ap)
769{
Brian Norris66583c92012-02-21 10:38:42 -0800770 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400771 struct ahci_port_priv *pp = ap->private_data;
772 struct ata_link *link;
773 struct ahci_em_priv *emp;
774 ssize_t rc;
775 int i;
776
777 /* enable FIS reception */
778 ahci_start_fis_rx(ap);
779
Brian Norris66583c92012-02-21 10:38:42 -0800780 /* enable DMA */
781 if (!(hpriv->flags & AHCI_HFLAG_DELAY_ENGINE))
Hans de Goede039ece32014-02-22 16:53:30 +0100782 hpriv->start_engine(ap);
Brian Norris66583c92012-02-21 10:38:42 -0800783
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400784 /* turn on LEDs */
785 if (ap->flags & ATA_FLAG_EM) {
786 ata_for_each_link(link, ap, EDGE) {
787 emp = &pp->em_priv[link->pmp];
788
789 /* EM Transmit bit maybe busy during init */
790 for (i = 0; i < EM_MAX_RETRY; i++) {
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500791 rc = ap->ops->transmit_led_message(ap,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400792 emp->led_state,
793 4);
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200794 /*
795 * If busy, give a breather but do not
796 * release EH ownership by using msleep()
797 * instead of ata_msleep(). EM Transmit
798 * bit is busy for the whole host and
799 * releasing ownership will cause other
800 * ports to fail the same way.
801 */
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400802 if (rc == -EBUSY)
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200803 msleep(1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400804 else
805 break;
806 }
807 }
808 }
809
810 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
811 ata_for_each_link(link, ap, EDGE)
812 ahci_init_sw_activity(link);
813
814}
815
816static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
817{
818 int rc;
819
820 /* disable DMA */
821 rc = ahci_stop_engine(ap);
822 if (rc) {
823 *emsg = "failed to stop engine";
824 return rc;
825 }
826
827 /* disable FIS reception */
828 rc = ahci_stop_fis_rx(ap);
829 if (rc) {
830 *emsg = "failed stop FIS RX";
831 return rc;
832 }
833
834 return 0;
835}
836
837int ahci_reset_controller(struct ata_host *host)
838{
839 struct ahci_host_priv *hpriv = host->private_data;
840 void __iomem *mmio = hpriv->mmio;
841 u32 tmp;
842
843 /* we must be in AHCI mode, before using anything
844 * AHCI-specific, such as HOST_RESET.
845 */
846 ahci_enable_ahci(mmio);
847
848 /* global controller reset */
849 if (!ahci_skip_host_reset) {
850 tmp = readl(mmio + HOST_CTL);
851 if ((tmp & HOST_RESET) == 0) {
852 writel(tmp | HOST_RESET, mmio + HOST_CTL);
853 readl(mmio + HOST_CTL); /* flush */
854 }
855
856 /*
857 * to perform host reset, OS should set HOST_RESET
858 * and poll until this bit is read to be "0".
859 * reset must complete within 1 second, or
860 * the hardware should be considered fried.
861 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200862 tmp = ata_wait_register(NULL, mmio + HOST_CTL, HOST_RESET,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400863 HOST_RESET, 10, 1000);
864
865 if (tmp & HOST_RESET) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700866 dev_err(host->dev, "controller reset failed (0x%x)\n",
867 tmp);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400868 return -EIO;
869 }
870
871 /* turn on AHCI mode */
872 ahci_enable_ahci(mmio);
873
874 /* Some registers might be cleared on reset. Restore
875 * initial values.
876 */
877 ahci_restore_initial_config(host);
878 } else
Joe Perchesa44fec12011-04-15 15:51:58 -0700879 dev_info(host->dev, "skipping global host reset\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400880
881 return 0;
882}
883EXPORT_SYMBOL_GPL(ahci_reset_controller);
884
885static void ahci_sw_activity(struct ata_link *link)
886{
887 struct ata_port *ap = link->ap;
888 struct ahci_port_priv *pp = ap->private_data;
889 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
890
891 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
892 return;
893
894 emp->activity++;
895 if (!timer_pending(&emp->timer))
896 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
897}
898
899static void ahci_sw_activity_blink(unsigned long arg)
900{
901 struct ata_link *link = (struct ata_link *)arg;
902 struct ata_port *ap = link->ap;
903 struct ahci_port_priv *pp = ap->private_data;
904 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
905 unsigned long led_message = emp->led_state;
906 u32 activity_led_state;
907 unsigned long flags;
908
909 led_message &= EM_MSG_LED_VALUE;
910 led_message |= ap->port_no | (link->pmp << 8);
911
912 /* check to see if we've had activity. If so,
913 * toggle state of LED and reset timer. If not,
914 * turn LED to desired idle state.
915 */
916 spin_lock_irqsave(ap->lock, flags);
917 if (emp->saved_activity != emp->activity) {
918 emp->saved_activity = emp->activity;
919 /* get the current LED state */
920 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
921
922 if (activity_led_state)
923 activity_led_state = 0;
924 else
925 activity_led_state = 1;
926
927 /* clear old state */
928 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
929
930 /* toggle state */
931 led_message |= (activity_led_state << 16);
932 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
933 } else {
934 /* switch to idle */
935 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
936 if (emp->blink_policy == BLINK_OFF)
937 led_message |= (1 << 16);
938 }
939 spin_unlock_irqrestore(ap->lock, flags);
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500940 ap->ops->transmit_led_message(ap, led_message, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400941}
942
943static void ahci_init_sw_activity(struct ata_link *link)
944{
945 struct ata_port *ap = link->ap;
946 struct ahci_port_priv *pp = ap->private_data;
947 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
948
949 /* init activity stats, setup timer */
950 emp->saved_activity = emp->activity = 0;
951 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
952
953 /* check our blink policy and set flag for link if it's enabled */
954 if (emp->blink_policy)
955 link->flags |= ATA_LFLAG_SW_ACTIVITY;
956}
957
958int ahci_reset_em(struct ata_host *host)
959{
960 struct ahci_host_priv *hpriv = host->private_data;
961 void __iomem *mmio = hpriv->mmio;
962 u32 em_ctl;
963
964 em_ctl = readl(mmio + HOST_EM_CTL);
965 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
966 return -EINVAL;
967
968 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
969 return 0;
970}
971EXPORT_SYMBOL_GPL(ahci_reset_em);
972
973static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
974 ssize_t size)
975{
976 struct ahci_host_priv *hpriv = ap->host->private_data;
977 struct ahci_port_priv *pp = ap->private_data;
978 void __iomem *mmio = hpriv->mmio;
979 u32 em_ctl;
980 u32 message[] = {0, 0};
981 unsigned long flags;
982 int pmp;
983 struct ahci_em_priv *emp;
984
985 /* get the slot number from the message */
986 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
987 if (pmp < EM_MAX_SLOTS)
988 emp = &pp->em_priv[pmp];
989 else
990 return -EINVAL;
991
992 spin_lock_irqsave(ap->lock, flags);
993
994 /*
995 * if we are still busy transmitting a previous message,
996 * do not allow
997 */
998 em_ctl = readl(mmio + HOST_EM_CTL);
999 if (em_ctl & EM_CTL_TM) {
1000 spin_unlock_irqrestore(ap->lock, flags);
1001 return -EBUSY;
1002 }
1003
Harry Zhang008dbd62010-04-23 17:27:19 +08001004 if (hpriv->em_msg_type & EM_MSG_TYPE_LED) {
1005 /*
1006 * create message header - this is all zero except for
1007 * the message size, which is 4 bytes.
1008 */
1009 message[0] |= (4 << 8);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001010
Harry Zhang008dbd62010-04-23 17:27:19 +08001011 /* ignore 0:4 of byte zero, fill in port info yourself */
1012 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001013
Harry Zhang008dbd62010-04-23 17:27:19 +08001014 /* write message to EM_LOC */
1015 writel(message[0], mmio + hpriv->em_loc);
1016 writel(message[1], mmio + hpriv->em_loc+4);
1017
1018 /*
1019 * tell hardware to transmit the message
1020 */
1021 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1022 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001023
1024 /* save off new led state for port/slot */
1025 emp->led_state = state;
1026
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001027 spin_unlock_irqrestore(ap->lock, flags);
1028 return size;
1029}
1030
1031static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1032{
1033 struct ahci_port_priv *pp = ap->private_data;
1034 struct ata_link *link;
1035 struct ahci_em_priv *emp;
1036 int rc = 0;
1037
1038 ata_for_each_link(link, ap, EDGE) {
1039 emp = &pp->em_priv[link->pmp];
1040 rc += sprintf(buf, "%lx\n", emp->led_state);
1041 }
1042 return rc;
1043}
1044
1045static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1046 size_t size)
1047{
Daeseok Younb2a52b62014-02-20 08:28:45 +09001048 unsigned int state;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001049 int pmp;
1050 struct ahci_port_priv *pp = ap->private_data;
1051 struct ahci_em_priv *emp;
1052
Daeseok Younb2a52b62014-02-20 08:28:45 +09001053 if (kstrtouint(buf, 0, &state) < 0)
1054 return -EINVAL;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001055
1056 /* get the slot number from the message */
1057 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
1058 if (pmp < EM_MAX_SLOTS)
1059 emp = &pp->em_priv[pmp];
1060 else
1061 return -EINVAL;
1062
1063 /* mask off the activity bits if we are in sw_activity
1064 * mode, user should turn off sw_activity before setting
1065 * activity led through em_message
1066 */
1067 if (emp->blink_policy)
1068 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
1069
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001070 return ap->ops->transmit_led_message(ap, state, size);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001071}
1072
1073static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1074{
1075 struct ata_link *link = dev->link;
1076 struct ata_port *ap = link->ap;
1077 struct ahci_port_priv *pp = ap->private_data;
1078 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1079 u32 port_led_state = emp->led_state;
1080
1081 /* save the desired Activity LED behavior */
1082 if (val == OFF) {
1083 /* clear LFLAG */
1084 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1085
1086 /* set the LED to OFF */
1087 port_led_state &= EM_MSG_LED_VALUE_OFF;
1088 port_led_state |= (ap->port_no | (link->pmp << 8));
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001089 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001090 } else {
1091 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1092 if (val == BLINK_OFF) {
1093 /* set LED to ON for idle */
1094 port_led_state &= EM_MSG_LED_VALUE_OFF;
1095 port_led_state |= (ap->port_no | (link->pmp << 8));
1096 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001097 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001098 }
1099 }
1100 emp->blink_policy = val;
1101 return 0;
1102}
1103
1104static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1105{
1106 struct ata_link *link = dev->link;
1107 struct ata_port *ap = link->ap;
1108 struct ahci_port_priv *pp = ap->private_data;
1109 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1110
1111 /* display the saved value of activity behavior for this
1112 * disk.
1113 */
1114 return sprintf(buf, "%d\n", emp->blink_policy);
1115}
1116
1117static void ahci_port_init(struct device *dev, struct ata_port *ap,
1118 int port_no, void __iomem *mmio,
1119 void __iomem *port_mmio)
1120{
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001121 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001122 const char *emsg = NULL;
1123 int rc;
1124 u32 tmp;
1125
1126 /* make sure port is not active */
1127 rc = ahci_deinit_port(ap, &emsg);
1128 if (rc)
1129 dev_warn(dev, "%s (%d)\n", emsg, rc);
1130
1131 /* clear SError */
1132 tmp = readl(port_mmio + PORT_SCR_ERR);
1133 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1134 writel(tmp, port_mmio + PORT_SCR_ERR);
1135
1136 /* clear port IRQ */
1137 tmp = readl(port_mmio + PORT_IRQ_STAT);
1138 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1139 if (tmp)
1140 writel(tmp, port_mmio + PORT_IRQ_STAT);
1141
1142 writel(1 << port_no, mmio + HOST_IRQ_STAT);
Manuel Lauss8a3e33c2015-09-30 21:10:25 +02001143
1144 /* mark esata ports */
1145 tmp = readl(port_mmio + PORT_CMD);
1146 if ((tmp & PORT_CMD_HPCP) ||
1147 ((tmp & PORT_CMD_ESP) && (hpriv->cap & HOST_CAP_SXS)))
1148 ap->pflags |= ATA_PFLAG_EXTERNAL;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001149}
1150
1151void ahci_init_controller(struct ata_host *host)
1152{
1153 struct ahci_host_priv *hpriv = host->private_data;
1154 void __iomem *mmio = hpriv->mmio;
1155 int i;
1156 void __iomem *port_mmio;
1157 u32 tmp;
1158
1159 for (i = 0; i < host->n_ports; i++) {
1160 struct ata_port *ap = host->ports[i];
1161
1162 port_mmio = ahci_port_base(ap);
1163 if (ata_port_is_dummy(ap))
1164 continue;
1165
1166 ahci_port_init(host->dev, ap, i, mmio, port_mmio);
1167 }
1168
1169 tmp = readl(mmio + HOST_CTL);
1170 VPRINTK("HOST_CTL 0x%x\n", tmp);
1171 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1172 tmp = readl(mmio + HOST_CTL);
1173 VPRINTK("HOST_CTL 0x%x\n", tmp);
1174}
1175EXPORT_SYMBOL_GPL(ahci_init_controller);
1176
1177static void ahci_dev_config(struct ata_device *dev)
1178{
1179 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1180
1181 if (hpriv->flags & AHCI_HFLAG_SECT255) {
1182 dev->max_sectors = 255;
Joe Perchesa9a79df2011-04-15 15:51:59 -07001183 ata_dev_info(dev,
1184 "SB600 AHCI: limiting to 255 sectors per cmd\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001185 }
1186}
1187
Rob Herringbbb4ab42012-08-17 09:51:50 -05001188unsigned int ahci_dev_classify(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001189{
1190 void __iomem *port_mmio = ahci_port_base(ap);
1191 struct ata_taskfile tf;
1192 u32 tmp;
1193
1194 tmp = readl(port_mmio + PORT_SIG);
1195 tf.lbah = (tmp >> 24) & 0xff;
1196 tf.lbam = (tmp >> 16) & 0xff;
1197 tf.lbal = (tmp >> 8) & 0xff;
1198 tf.nsect = (tmp) & 0xff;
1199
1200 return ata_dev_classify(&tf);
1201}
Rob Herringbbb4ab42012-08-17 09:51:50 -05001202EXPORT_SYMBOL_GPL(ahci_dev_classify);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001203
David Milburn02cdfcf2010-11-12 15:38:21 -06001204void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1205 u32 opts)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001206{
1207 dma_addr_t cmd_tbl_dma;
1208
1209 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1210
1211 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1212 pp->cmd_slot[tag].status = 0;
1213 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1214 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
1215}
David Milburn02cdfcf2010-11-12 15:38:21 -06001216EXPORT_SYMBOL_GPL(ahci_fill_cmd_slot);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001217
1218int ahci_kick_engine(struct ata_port *ap)
1219{
1220 void __iomem *port_mmio = ahci_port_base(ap);
1221 struct ahci_host_priv *hpriv = ap->host->private_data;
1222 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1223 u32 tmp;
1224 int busy, rc;
1225
1226 /* stop engine */
1227 rc = ahci_stop_engine(ap);
1228 if (rc)
1229 goto out_restart;
1230
1231 /* need to do CLO?
1232 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1233 */
1234 busy = status & (ATA_BUSY | ATA_DRQ);
1235 if (!busy && !sata_pmp_attached(ap)) {
1236 rc = 0;
1237 goto out_restart;
1238 }
1239
1240 if (!(hpriv->cap & HOST_CAP_CLO)) {
1241 rc = -EOPNOTSUPP;
1242 goto out_restart;
1243 }
1244
1245 /* perform CLO */
1246 tmp = readl(port_mmio + PORT_CMD);
1247 tmp |= PORT_CMD_CLO;
1248 writel(tmp, port_mmio + PORT_CMD);
1249
1250 rc = 0;
Tejun Heo97750ce2010-09-06 17:56:29 +02001251 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001252 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1253 if (tmp & PORT_CMD_CLO)
1254 rc = -EIO;
1255
1256 /* restart engine */
1257 out_restart:
Hans de Goede039ece32014-02-22 16:53:30 +01001258 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001259 return rc;
1260}
1261EXPORT_SYMBOL_GPL(ahci_kick_engine);
1262
1263static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1264 struct ata_taskfile *tf, int is_cmd, u16 flags,
1265 unsigned long timeout_msec)
1266{
1267 const u32 cmd_fis_len = 5; /* five dwords */
1268 struct ahci_port_priv *pp = ap->private_data;
1269 void __iomem *port_mmio = ahci_port_base(ap);
1270 u8 *fis = pp->cmd_tbl;
1271 u32 tmp;
1272
1273 /* prep the command */
1274 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1275 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1276
1277 /* issue & wait */
1278 writel(1, port_mmio + PORT_CMD_ISSUE);
1279
1280 if (timeout_msec) {
Tejun Heo97750ce2010-09-06 17:56:29 +02001281 tmp = ata_wait_register(ap, port_mmio + PORT_CMD_ISSUE,
1282 0x1, 0x1, 1, timeout_msec);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001283 if (tmp & 0x1) {
1284 ahci_kick_engine(ap);
1285 return -EBUSY;
1286 }
1287 } else
1288 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1289
1290 return 0;
1291}
1292
1293int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1294 int pmp, unsigned long deadline,
1295 int (*check_ready)(struct ata_link *link))
1296{
1297 struct ata_port *ap = link->ap;
1298 struct ahci_host_priv *hpriv = ap->host->private_data;
xiangliang yu89dafa22013-10-27 08:03:04 -04001299 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001300 const char *reason = NULL;
1301 unsigned long now, msecs;
1302 struct ata_taskfile tf;
xiangliang yu89dafa22013-10-27 08:03:04 -04001303 bool fbs_disabled = false;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001304 int rc;
1305
1306 DPRINTK("ENTER\n");
1307
1308 /* prepare for SRST (AHCI-1.1 10.4.1) */
1309 rc = ahci_kick_engine(ap);
1310 if (rc && rc != -EOPNOTSUPP)
Joe Perchesa9a79df2011-04-15 15:51:59 -07001311 ata_link_warn(link, "failed to reset engine (errno=%d)\n", rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001312
xiangliang yu89dafa22013-10-27 08:03:04 -04001313 /*
1314 * According to AHCI-1.2 9.3.9: if FBS is enable, software shall
1315 * clear PxFBS.EN to '0' prior to issuing software reset to devices
1316 * that is attached to port multiplier.
1317 */
1318 if (!ata_is_host_link(link) && pp->fbs_enabled) {
1319 ahci_disable_fbs(ap);
1320 fbs_disabled = true;
1321 }
1322
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001323 ata_tf_init(link->device, &tf);
1324
1325 /* issue the first D2H Register FIS */
1326 msecs = 0;
1327 now = jiffies;
Tejun Heof1f5a802010-08-27 11:09:15 +02001328 if (time_after(deadline, now))
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001329 msecs = jiffies_to_msecs(deadline - now);
1330
1331 tf.ctl |= ATA_SRST;
1332 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
1333 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
1334 rc = -EIO;
1335 reason = "1st FIS failed";
1336 goto fail;
1337 }
1338
1339 /* spec says at least 5us, but be generous and sleep for 1ms */
Tejun Heo97750ce2010-09-06 17:56:29 +02001340 ata_msleep(ap, 1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001341
1342 /* issue the second D2H Register FIS */
1343 tf.ctl &= ~ATA_SRST;
1344 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
1345
1346 /* wait for link to become ready */
1347 rc = ata_wait_after_reset(link, deadline, check_ready);
1348 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1349 /*
1350 * Workaround for cases where link online status can't
1351 * be trusted. Treat device readiness timeout as link
1352 * offline.
1353 */
Joe Perchesa9a79df2011-04-15 15:51:59 -07001354 ata_link_info(link, "device not ready, treating as offline\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001355 *class = ATA_DEV_NONE;
1356 } else if (rc) {
1357 /* link occupied, -ENODEV too is an error */
1358 reason = "device not ready";
1359 goto fail;
1360 } else
1361 *class = ahci_dev_classify(ap);
1362
xiangliang yu89dafa22013-10-27 08:03:04 -04001363 /* re-enable FBS if disabled before */
1364 if (fbs_disabled)
1365 ahci_enable_fbs(ap);
1366
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001367 DPRINTK("EXIT, class=%u\n", *class);
1368 return 0;
1369
1370 fail:
Joe Perchesa9a79df2011-04-15 15:51:59 -07001371 ata_link_err(link, "softreset failed (%s)\n", reason);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001372 return rc;
1373}
1374
1375int ahci_check_ready(struct ata_link *link)
1376{
1377 void __iomem *port_mmio = ahci_port_base(link->ap);
1378 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1379
1380 return ata_check_ready(status);
1381}
1382EXPORT_SYMBOL_GPL(ahci_check_ready);
1383
1384static int ahci_softreset(struct ata_link *link, unsigned int *class,
1385 unsigned long deadline)
1386{
1387 int pmp = sata_srst_pmp(link);
1388
1389 DPRINTK("ENTER\n");
1390
1391 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1392}
1393EXPORT_SYMBOL_GPL(ahci_do_softreset);
1394
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001395static int ahci_bad_pmp_check_ready(struct ata_link *link)
1396{
1397 void __iomem *port_mmio = ahci_port_base(link->ap);
1398 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1399 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1400
1401 /*
1402 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1403 * which can save timeout delay.
1404 */
1405 if (irq_status & PORT_IRQ_BAD_PMP)
1406 return -EIO;
1407
1408 return ata_check_ready(status);
1409}
1410
Daeseok Youn35186d02014-02-20 08:34:27 +09001411static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
1412 unsigned long deadline)
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001413{
1414 struct ata_port *ap = link->ap;
1415 void __iomem *port_mmio = ahci_port_base(ap);
1416 int pmp = sata_srst_pmp(link);
1417 int rc;
1418 u32 irq_sts;
1419
1420 DPRINTK("ENTER\n");
1421
1422 rc = ahci_do_softreset(link, class, pmp, deadline,
1423 ahci_bad_pmp_check_ready);
1424
1425 /*
1426 * Soft reset fails with IPMS set when PMP is enabled but
1427 * SATA HDD/ODD is connected to SATA port, do soft reset
1428 * again to port 0.
1429 */
1430 if (rc == -EIO) {
1431 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1432 if (irq_sts & PORT_IRQ_BAD_PMP) {
Wei Yongjun39f80ac2012-12-03 23:39:31 -05001433 ata_link_warn(link,
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001434 "applying PMP SRST workaround "
1435 "and retrying\n");
1436 rc = ahci_do_softreset(link, class, 0, deadline,
1437 ahci_check_ready);
1438 }
1439 }
1440
1441 return rc;
1442}
1443
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001444static int ahci_hardreset(struct ata_link *link, unsigned int *class,
1445 unsigned long deadline)
1446{
1447 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
1448 struct ata_port *ap = link->ap;
1449 struct ahci_port_priv *pp = ap->private_data;
Hans de Goede039ece32014-02-22 16:53:30 +01001450 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001451 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1452 struct ata_taskfile tf;
1453 bool online;
1454 int rc;
1455
1456 DPRINTK("ENTER\n");
1457
1458 ahci_stop_engine(ap);
1459
1460 /* clear D2H reception area to properly wait for D2H FIS */
1461 ata_tf_init(link->device, &tf);
Sergei Shtylyov9bbb1b02013-06-23 01:39:39 +04001462 tf.command = ATA_BUSY;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001463 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1464
1465 rc = sata_link_hardreset(link, timing, deadline, &online,
1466 ahci_check_ready);
1467
Hans de Goede039ece32014-02-22 16:53:30 +01001468 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001469
1470 if (online)
1471 *class = ahci_dev_classify(ap);
1472
1473 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1474 return rc;
1475}
1476
1477static void ahci_postreset(struct ata_link *link, unsigned int *class)
1478{
1479 struct ata_port *ap = link->ap;
1480 void __iomem *port_mmio = ahci_port_base(ap);
1481 u32 new_tmp, tmp;
1482
1483 ata_std_postreset(link, class);
1484
1485 /* Make sure port's ATAPI bit is set appropriately */
1486 new_tmp = tmp = readl(port_mmio + PORT_CMD);
1487 if (*class == ATA_DEV_ATAPI)
1488 new_tmp |= PORT_CMD_ATAPI;
1489 else
1490 new_tmp &= ~PORT_CMD_ATAPI;
1491 if (new_tmp != tmp) {
1492 writel(new_tmp, port_mmio + PORT_CMD);
1493 readl(port_mmio + PORT_CMD); /* flush */
1494 }
1495}
1496
1497static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
1498{
1499 struct scatterlist *sg;
1500 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1501 unsigned int si;
1502
1503 VPRINTK("ENTER\n");
1504
1505 /*
1506 * Next, the S/G list.
1507 */
1508 for_each_sg(qc->sg, sg, qc->n_elem, si) {
1509 dma_addr_t addr = sg_dma_address(sg);
1510 u32 sg_len = sg_dma_len(sg);
1511
1512 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1513 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1514 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
1515 }
1516
1517 return si;
1518}
1519
1520static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
1521{
1522 struct ata_port *ap = qc->ap;
1523 struct ahci_port_priv *pp = ap->private_data;
1524
1525 if (!sata_pmp_attached(ap) || pp->fbs_enabled)
1526 return ata_std_qc_defer(qc);
1527 else
1528 return sata_pmp_qc_defer_cmd_switch(qc);
1529}
1530
1531static void ahci_qc_prep(struct ata_queued_cmd *qc)
1532{
1533 struct ata_port *ap = qc->ap;
1534 struct ahci_port_priv *pp = ap->private_data;
1535 int is_atapi = ata_is_atapi(qc->tf.protocol);
1536 void *cmd_tbl;
1537 u32 opts;
1538 const u32 cmd_fis_len = 5; /* five dwords */
1539 unsigned int n_elem;
1540
1541 /*
1542 * Fill in command table information. First, the header,
1543 * a SATA Register - Host to Device command FIS.
1544 */
1545 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1546
1547 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
1548 if (is_atapi) {
1549 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1550 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
1551 }
1552
1553 n_elem = 0;
1554 if (qc->flags & ATA_QCFLAG_DMAMAP)
1555 n_elem = ahci_fill_sg(qc, cmd_tbl);
1556
1557 /*
1558 * Fill in command slot information.
1559 */
1560 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
1561 if (qc->tf.flags & ATA_TFLAG_WRITE)
1562 opts |= AHCI_CMD_WRITE;
1563 if (is_atapi)
1564 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
1565
1566 ahci_fill_cmd_slot(pp, qc->tag, opts);
1567}
1568
1569static void ahci_fbs_dec_intr(struct ata_port *ap)
1570{
1571 struct ahci_port_priv *pp = ap->private_data;
1572 void __iomem *port_mmio = ahci_port_base(ap);
1573 u32 fbs = readl(port_mmio + PORT_FBS);
1574 int retries = 3;
1575
1576 DPRINTK("ENTER\n");
1577 BUG_ON(!pp->fbs_enabled);
1578
1579 /* time to wait for DEC is not specified by AHCI spec,
1580 * add a retry loop for safety.
1581 */
1582 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
1583 fbs = readl(port_mmio + PORT_FBS);
1584 while ((fbs & PORT_FBS_DEC) && retries--) {
1585 udelay(1);
1586 fbs = readl(port_mmio + PORT_FBS);
1587 }
1588
1589 if (fbs & PORT_FBS_DEC)
Joe Perchesa44fec12011-04-15 15:51:58 -07001590 dev_err(ap->host->dev, "failed to clear device error\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001591}
1592
1593static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
1594{
1595 struct ahci_host_priv *hpriv = ap->host->private_data;
1596 struct ahci_port_priv *pp = ap->private_data;
1597 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1598 struct ata_link *link = NULL;
1599 struct ata_queued_cmd *active_qc;
1600 struct ata_eh_info *active_ehi;
1601 bool fbs_need_dec = false;
1602 u32 serror;
1603
1604 /* determine active link with error */
1605 if (pp->fbs_enabled) {
1606 void __iomem *port_mmio = ahci_port_base(ap);
1607 u32 fbs = readl(port_mmio + PORT_FBS);
1608 int pmp = fbs >> PORT_FBS_DWE_OFFSET;
1609
Shane Huang912b9ac2013-06-08 16:00:16 +08001610 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links)) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001611 link = &ap->pmp_link[pmp];
1612 fbs_need_dec = true;
1613 }
1614
1615 } else
1616 ata_for_each_link(link, ap, EDGE)
1617 if (ata_link_active(link))
1618 break;
1619
1620 if (!link)
1621 link = &ap->link;
1622
1623 active_qc = ata_qc_from_tag(ap, link->active_tag);
1624 active_ehi = &link->eh_info;
1625
1626 /* record irq stat */
1627 ata_ehi_clear_desc(host_ehi);
1628 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
1629
1630 /* AHCI needs SError cleared; otherwise, it might lock up */
1631 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
1632 ahci_scr_write(&ap->link, SCR_ERROR, serror);
1633 host_ehi->serror |= serror;
1634
1635 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
1636 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
1637 irq_stat &= ~PORT_IRQ_IF_ERR;
1638
1639 if (irq_stat & PORT_IRQ_TF_ERR) {
1640 /* If qc is active, charge it; otherwise, the active
1641 * link. There's no active qc on NCQ errors. It will
1642 * be determined by EH by reading log page 10h.
1643 */
1644 if (active_qc)
1645 active_qc->err_mask |= AC_ERR_DEV;
1646 else
1647 active_ehi->err_mask |= AC_ERR_DEV;
1648
1649 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
1650 host_ehi->serror &= ~SERR_INTERNAL;
1651 }
1652
1653 if (irq_stat & PORT_IRQ_UNK_FIS) {
Joe Perchesd5185d62014-03-26 09:34:49 -07001654 u32 *unk = pp->rx_fis + RX_FIS_UNK;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001655
1656 active_ehi->err_mask |= AC_ERR_HSM;
1657 active_ehi->action |= ATA_EH_RESET;
1658 ata_ehi_push_desc(active_ehi,
1659 "unknown FIS %08x %08x %08x %08x" ,
1660 unk[0], unk[1], unk[2], unk[3]);
1661 }
1662
1663 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
1664 active_ehi->err_mask |= AC_ERR_HSM;
1665 active_ehi->action |= ATA_EH_RESET;
1666 ata_ehi_push_desc(active_ehi, "incorrect PMP");
1667 }
1668
1669 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1670 host_ehi->err_mask |= AC_ERR_HOST_BUS;
1671 host_ehi->action |= ATA_EH_RESET;
1672 ata_ehi_push_desc(host_ehi, "host bus error");
1673 }
1674
1675 if (irq_stat & PORT_IRQ_IF_ERR) {
1676 if (fbs_need_dec)
1677 active_ehi->err_mask |= AC_ERR_DEV;
1678 else {
1679 host_ehi->err_mask |= AC_ERR_ATA_BUS;
1680 host_ehi->action |= ATA_EH_RESET;
1681 }
1682
1683 ata_ehi_push_desc(host_ehi, "interface fatal error");
1684 }
1685
1686 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1687 ata_ehi_hotplugged(host_ehi);
1688 ata_ehi_push_desc(host_ehi, "%s",
1689 irq_stat & PORT_IRQ_CONNECT ?
1690 "connection status changed" : "PHY RDY changed");
1691 }
1692
1693 /* okay, let's hand over to EH */
1694
1695 if (irq_stat & PORT_IRQ_FREEZE)
1696 ata_port_freeze(ap);
1697 else if (fbs_need_dec) {
1698 ata_link_abort(link);
1699 ahci_fbs_dec_intr(ap);
1700 } else
1701 ata_port_abort(ap);
1702}
1703
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001704static void ahci_handle_port_interrupt(struct ata_port *ap,
1705 void __iomem *port_mmio, u32 status)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001706{
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001707 struct ata_eh_info *ehi = &ap->link.eh_info;
1708 struct ahci_port_priv *pp = ap->private_data;
1709 struct ahci_host_priv *hpriv = ap->host->private_data;
1710 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001711 u32 qc_active = 0;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001712 int rc;
1713
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001714 /* ignore BAD_PMP while resetting */
1715 if (unlikely(resetting))
1716 status &= ~PORT_IRQ_BAD_PMP;
1717
Gabriele Mazzotta8393b812015-04-25 19:52:36 +02001718 if (sata_lpm_ignore_phy_events(&ap->link)) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001719 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo6b7ae952010-09-01 17:50:06 +02001720 ahci_scr_write(&ap->link, SCR_ERROR, SERR_PHYRDY_CHG);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001721 }
1722
1723 if (unlikely(status & PORT_IRQ_ERROR)) {
1724 ahci_error_intr(ap, status);
1725 return;
1726 }
1727
1728 if (status & PORT_IRQ_SDB_FIS) {
1729 /* If SNotification is available, leave notification
1730 * handling to sata_async_notification(). If not,
1731 * emulate it by snooping SDB FIS RX area.
1732 *
1733 * Snooping FIS RX area is probably cheaper than
1734 * poking SNotification but some constrollers which
1735 * implement SNotification, ICH9 for example, don't
1736 * store AN SDB FIS into receive area.
1737 */
1738 if (hpriv->cap & HOST_CAP_SNTF)
1739 sata_async_notification(ap);
1740 else {
1741 /* If the 'N' bit in word 0 of the FIS is set,
1742 * we just received asynchronous notification.
1743 * Tell libata about it.
1744 *
1745 * Lack of SNotification should not appear in
1746 * ahci 1.2, so the workaround is unnecessary
1747 * when FBS is enabled.
1748 */
1749 if (pp->fbs_enabled)
1750 WARN_ON_ONCE(1);
1751 else {
1752 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
1753 u32 f0 = le32_to_cpu(f[0]);
1754 if (f0 & (1 << 15))
1755 sata_async_notification(ap);
1756 }
1757 }
1758 }
1759
1760 /* pp->active_link is not reliable once FBS is enabled, both
1761 * PORT_SCR_ACT and PORT_CMD_ISSUE should be checked because
1762 * NCQ and non-NCQ commands may be in flight at the same time.
1763 */
1764 if (pp->fbs_enabled) {
1765 if (ap->qc_active) {
1766 qc_active = readl(port_mmio + PORT_SCR_ACT);
1767 qc_active |= readl(port_mmio + PORT_CMD_ISSUE);
1768 }
1769 } else {
1770 /* pp->active_link is valid iff any command is in flight */
1771 if (ap->qc_active && pp->active_link->sactive)
1772 qc_active = readl(port_mmio + PORT_SCR_ACT);
1773 else
1774 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
1775 }
1776
1777
1778 rc = ata_qc_complete_multiple(ap, qc_active);
1779
1780 /* while resetting, invalid completions are expected */
1781 if (unlikely(rc < 0 && !resetting)) {
1782 ehi->err_mask |= AC_ERR_HSM;
1783 ehi->action |= ATA_EH_RESET;
1784 ata_port_freeze(ap);
1785 }
1786}
1787
Tejun Heo7865f832014-10-27 09:50:36 -04001788static void ahci_port_intr(struct ata_port *ap)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001789{
1790 void __iomem *port_mmio = ahci_port_base(ap);
1791 u32 status;
1792
1793 status = readl(port_mmio + PORT_IRQ_STAT);
1794 writel(status, port_mmio + PORT_IRQ_STAT);
1795
Tejun Heo7865f832014-10-27 09:50:36 -04001796 ahci_handle_port_interrupt(ap, port_mmio, status);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001797}
1798
Alexander Gordeev5ee1cfd2014-09-29 18:26:00 +02001799static irqreturn_t ahci_port_thread_fn(int irq, void *dev_instance)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001800{
1801 struct ata_port *ap = dev_instance;
1802 struct ahci_port_priv *pp = ap->private_data;
1803 void __iomem *port_mmio = ahci_port_base(ap);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001804 u32 status;
1805
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001806 status = atomic_xchg(&pp->intr_status, 0);
1807 if (!status)
1808 return IRQ_NONE;
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001809
1810 spin_lock_bh(ap->lock);
1811 ahci_handle_port_interrupt(ap, port_mmio, status);
1812 spin_unlock_bh(ap->lock);
1813
1814 return IRQ_HANDLED;
1815}
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001816
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001817static irqreturn_t ahci_multi_irqs_intr(int irq, void *dev_instance)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001818{
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001819 struct ata_port *ap = dev_instance;
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001820 void __iomem *port_mmio = ahci_port_base(ap);
1821 struct ahci_port_priv *pp = ap->private_data;
1822 u32 status;
1823
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001824 VPRINTK("ENTER\n");
1825
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001826 status = readl(port_mmio + PORT_IRQ_STAT);
1827 writel(status, port_mmio + PORT_IRQ_STAT);
1828
Alexander Gordeev227dfb42014-09-29 18:26:01 +02001829 atomic_or(status, &pp->intr_status);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001830
1831 VPRINTK("EXIT\n");
1832
1833 return IRQ_WAKE_THREAD;
1834}
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001835
Suman Tripathia129db82015-05-06 00:51:10 +05301836static u32 ahci_handle_port_intr(struct ata_host *host, u32 irq_masked)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001837{
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001838 unsigned int i, handled = 0;
Tejun Heo03e83cb2014-10-27 12:00:01 -04001839
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001840 for (i = 0; i < host->n_ports; i++) {
1841 struct ata_port *ap;
1842
1843 if (!(irq_masked & (1 << i)))
1844 continue;
1845
1846 ap = host->ports[i];
1847 if (ap) {
Tejun Heo7865f832014-10-27 09:50:36 -04001848 ahci_port_intr(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001849 VPRINTK("port %u\n", i);
1850 } else {
1851 VPRINTK("port %u (no irq)\n", i);
1852 if (ata_ratelimit())
Joe Perchesa44fec12011-04-15 15:51:58 -07001853 dev_warn(host->dev,
1854 "interrupt on disabled port %u\n", i);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001855 }
1856
1857 handled = 1;
1858 }
1859
Suman Tripathia129db82015-05-06 00:51:10 +05301860 return handled;
1861}
1862
Suman Tripathi5903b162015-05-06 00:51:11 +05301863static irqreturn_t ahci_single_edge_irq_intr(int irq, void *dev_instance)
1864{
1865 struct ata_host *host = dev_instance;
1866 struct ahci_host_priv *hpriv;
1867 unsigned int rc = 0;
1868 void __iomem *mmio;
1869 u32 irq_stat, irq_masked;
1870
1871 VPRINTK("ENTER\n");
1872
1873 hpriv = host->private_data;
1874 mmio = hpriv->mmio;
1875
1876 /* sigh. 0xffffffff is a valid return from h/w */
1877 irq_stat = readl(mmio + HOST_IRQ_STAT);
1878 if (!irq_stat)
1879 return IRQ_NONE;
1880
1881 irq_masked = irq_stat & hpriv->port_map;
1882
1883 spin_lock(&host->lock);
1884
1885 /*
1886 * HOST_IRQ_STAT behaves as edge triggered latch meaning that
1887 * it should be cleared before all the port events are cleared.
1888 */
1889 writel(irq_stat, mmio + HOST_IRQ_STAT);
1890
1891 rc = ahci_handle_port_intr(host, irq_masked);
1892
1893 spin_unlock(&host->lock);
1894
1895 VPRINTK("EXIT\n");
1896
1897 return IRQ_RETVAL(rc);
1898}
1899
Suman Tripathia129db82015-05-06 00:51:10 +05301900static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance)
1901{
1902 struct ata_host *host = dev_instance;
1903 struct ahci_host_priv *hpriv;
1904 unsigned int rc = 0;
1905 void __iomem *mmio;
1906 u32 irq_stat, irq_masked;
1907
1908 VPRINTK("ENTER\n");
1909
1910 hpriv = host->private_data;
1911 mmio = hpriv->mmio;
1912
1913 /* sigh. 0xffffffff is a valid return from h/w */
1914 irq_stat = readl(mmio + HOST_IRQ_STAT);
1915 if (!irq_stat)
1916 return IRQ_NONE;
1917
1918 irq_masked = irq_stat & hpriv->port_map;
1919
1920 spin_lock(&host->lock);
1921
1922 rc = ahci_handle_port_intr(host, irq_masked);
1923
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001924 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
1925 * it should be cleared after all the port events are cleared;
1926 * otherwise, it will raise a spurious interrupt after each
1927 * valid one. Please read section 10.6.2 of ahci 1.1 for more
1928 * information.
1929 *
1930 * Also, use the unmasked value to clear interrupt as spurious
1931 * pending event on a dummy port might cause screaming IRQ.
1932 */
1933 writel(irq_stat, mmio + HOST_IRQ_STAT);
1934
Tejun Heo03e83cb2014-10-27 12:00:01 -04001935 spin_unlock(&host->lock);
1936
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001937 VPRINTK("EXIT\n");
1938
Suman Tripathia129db82015-05-06 00:51:10 +05301939 return IRQ_RETVAL(rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001940}
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001941
Suman Tripathi39e0ee92014-07-07 22:33:04 +05301942unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001943{
1944 struct ata_port *ap = qc->ap;
1945 void __iomem *port_mmio = ahci_port_base(ap);
1946 struct ahci_port_priv *pp = ap->private_data;
1947
1948 /* Keep track of the currently active link. It will be used
1949 * in completion path to determine whether NCQ phase is in
1950 * progress.
1951 */
1952 pp->active_link = qc->dev->link;
1953
1954 if (qc->tf.protocol == ATA_PROT_NCQ)
1955 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
1956
1957 if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
1958 u32 fbs = readl(port_mmio + PORT_FBS);
1959 fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
1960 fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
1961 writel(fbs, port_mmio + PORT_FBS);
1962 pp->fbs_last_dev = qc->dev->link->pmp;
1963 }
1964
1965 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
1966
1967 ahci_sw_activity(qc->dev->link);
1968
1969 return 0;
1970}
Suman Tripathi39e0ee92014-07-07 22:33:04 +05301971EXPORT_SYMBOL_GPL(ahci_qc_issue);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001972
1973static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
1974{
1975 struct ahci_port_priv *pp = qc->ap->private_data;
Tejun Heo6ad60192010-10-15 11:00:08 +02001976 u8 *rx_fis = pp->rx_fis;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001977
1978 if (pp->fbs_enabled)
Tejun Heo6ad60192010-10-15 11:00:08 +02001979 rx_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001980
Tejun Heo6ad60192010-10-15 11:00:08 +02001981 /*
1982 * After a successful execution of an ATA PIO data-in command,
1983 * the device doesn't send D2H Reg FIS to update the TF and
1984 * the host should take TF and E_Status from the preceding PIO
1985 * Setup FIS.
1986 */
1987 if (qc->tf.protocol == ATA_PROT_PIO && qc->dma_dir == DMA_FROM_DEVICE &&
1988 !(qc->flags & ATA_QCFLAG_FAILED)) {
1989 ata_tf_from_fis(rx_fis + RX_FIS_PIO_SETUP, &qc->result_tf);
1990 qc->result_tf.command = (rx_fis + RX_FIS_PIO_SETUP)[15];
1991 } else
1992 ata_tf_from_fis(rx_fis + RX_FIS_D2H_REG, &qc->result_tf);
1993
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001994 return true;
1995}
1996
1997static void ahci_freeze(struct ata_port *ap)
1998{
1999 void __iomem *port_mmio = ahci_port_base(ap);
2000
2001 /* turn IRQ off */
2002 writel(0, port_mmio + PORT_IRQ_MASK);
2003}
2004
2005static void ahci_thaw(struct ata_port *ap)
2006{
2007 struct ahci_host_priv *hpriv = ap->host->private_data;
2008 void __iomem *mmio = hpriv->mmio;
2009 void __iomem *port_mmio = ahci_port_base(ap);
2010 u32 tmp;
2011 struct ahci_port_priv *pp = ap->private_data;
2012
2013 /* clear IRQ */
2014 tmp = readl(port_mmio + PORT_IRQ_STAT);
2015 writel(tmp, port_mmio + PORT_IRQ_STAT);
2016 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
2017
2018 /* turn IRQ back on */
2019 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
2020}
2021
Richard Zhu8b789d82013-10-15 10:44:54 +08002022void ahci_error_handler(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002023{
Hans de Goede039ece32014-02-22 16:53:30 +01002024 struct ahci_host_priv *hpriv = ap->host->private_data;
2025
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002026 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
2027 /* restart engine */
2028 ahci_stop_engine(ap);
Hans de Goede039ece32014-02-22 16:53:30 +01002029 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002030 }
2031
2032 sata_pmp_error_handler(ap);
Tejun Heo0ee71952010-06-07 15:15:08 +02002033
2034 if (!ata_dev_enabled(ap->link.device))
2035 ahci_stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002036}
Richard Zhu8b789d82013-10-15 10:44:54 +08002037EXPORT_SYMBOL_GPL(ahci_error_handler);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002038
2039static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2040{
2041 struct ata_port *ap = qc->ap;
2042
2043 /* make DMA engine forget about the failed command */
2044 if (qc->flags & ATA_QCFLAG_FAILED)
2045 ahci_kick_engine(ap);
2046}
2047
Shane Huang65fe1f02012-09-07 22:40:01 +08002048static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep)
2049{
Hans de Goede039ece32014-02-22 16:53:30 +01002050 struct ahci_host_priv *hpriv = ap->host->private_data;
Shane Huang65fe1f02012-09-07 22:40:01 +08002051 void __iomem *port_mmio = ahci_port_base(ap);
2052 struct ata_device *dev = ap->link.device;
2053 u32 devslp, dm, dito, mdat, deto;
2054 int rc;
2055 unsigned int err_mask;
2056
2057 devslp = readl(port_mmio + PORT_DEVSLP);
2058 if (!(devslp & PORT_DEVSLP_DSP)) {
Gabriele Mazzotta95bbbe92015-01-08 19:41:34 +01002059 dev_info(ap->host->dev, "port does not support device sleep\n");
Shane Huang65fe1f02012-09-07 22:40:01 +08002060 return;
2061 }
2062
2063 /* disable device sleep */
2064 if (!sleep) {
2065 if (devslp & PORT_DEVSLP_ADSE) {
2066 writel(devslp & ~PORT_DEVSLP_ADSE,
2067 port_mmio + PORT_DEVSLP);
2068 err_mask = ata_dev_set_feature(dev,
2069 SETFEATURES_SATA_DISABLE,
2070 SATA_DEVSLP);
2071 if (err_mask && err_mask != AC_ERR_DEV)
2072 ata_dev_warn(dev, "failed to disable DEVSLP\n");
2073 }
2074 return;
2075 }
2076
2077 /* device sleep was already enabled */
2078 if (devslp & PORT_DEVSLP_ADSE)
2079 return;
2080
2081 /* set DITO, MDAT, DETO and enable DevSlp, need to stop engine first */
2082 rc = ahci_stop_engine(ap);
2083 if (rc)
2084 return;
2085
2086 dm = (devslp & PORT_DEVSLP_DM_MASK) >> PORT_DEVSLP_DM_OFFSET;
2087 dito = devslp_idle_timeout / (dm + 1);
2088 if (dito > 0x3ff)
2089 dito = 0x3ff;
2090
2091 /* Use the nominal value 10 ms if the read MDAT is zero,
2092 * the nominal value of DETO is 20 ms.
2093 */
Shane Huang803739d2012-12-17 23:18:59 +08002094 if (dev->devslp_timing[ATA_LOG_DEVSLP_VALID] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002095 ATA_LOG_DEVSLP_VALID_MASK) {
Shane Huang803739d2012-12-17 23:18:59 +08002096 mdat = dev->devslp_timing[ATA_LOG_DEVSLP_MDAT] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002097 ATA_LOG_DEVSLP_MDAT_MASK;
2098 if (!mdat)
2099 mdat = 10;
Shane Huang803739d2012-12-17 23:18:59 +08002100 deto = dev->devslp_timing[ATA_LOG_DEVSLP_DETO];
Shane Huang65fe1f02012-09-07 22:40:01 +08002101 if (!deto)
2102 deto = 20;
2103 } else {
2104 mdat = 10;
2105 deto = 20;
2106 }
2107
2108 devslp |= ((dito << PORT_DEVSLP_DITO_OFFSET) |
2109 (mdat << PORT_DEVSLP_MDAT_OFFSET) |
2110 (deto << PORT_DEVSLP_DETO_OFFSET) |
2111 PORT_DEVSLP_ADSE);
2112 writel(devslp, port_mmio + PORT_DEVSLP);
2113
Hans de Goede039ece32014-02-22 16:53:30 +01002114 hpriv->start_engine(ap);
Shane Huang65fe1f02012-09-07 22:40:01 +08002115
2116 /* enable device sleep feature for the drive */
2117 err_mask = ata_dev_set_feature(dev,
2118 SETFEATURES_SATA_ENABLE,
2119 SATA_DEVSLP);
2120 if (err_mask && err_mask != AC_ERR_DEV)
2121 ata_dev_warn(dev, "failed to enable DEVSLP\n");
2122}
2123
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002124static void ahci_enable_fbs(struct ata_port *ap)
2125{
Hans de Goede039ece32014-02-22 16:53:30 +01002126 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002127 struct ahci_port_priv *pp = ap->private_data;
2128 void __iomem *port_mmio = ahci_port_base(ap);
2129 u32 fbs;
2130 int rc;
2131
2132 if (!pp->fbs_supported)
2133 return;
2134
2135 fbs = readl(port_mmio + PORT_FBS);
2136 if (fbs & PORT_FBS_EN) {
2137 pp->fbs_enabled = true;
2138 pp->fbs_last_dev = -1; /* initialization */
2139 return;
2140 }
2141
2142 rc = ahci_stop_engine(ap);
2143 if (rc)
2144 return;
2145
2146 writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2147 fbs = readl(port_mmio + PORT_FBS);
2148 if (fbs & PORT_FBS_EN) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002149 dev_info(ap->host->dev, "FBS is enabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002150 pp->fbs_enabled = true;
2151 pp->fbs_last_dev = -1; /* initialization */
2152 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002153 dev_err(ap->host->dev, "Failed to enable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002154
Hans de Goede039ece32014-02-22 16:53:30 +01002155 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002156}
2157
2158static void ahci_disable_fbs(struct ata_port *ap)
2159{
Hans de Goede039ece32014-02-22 16:53:30 +01002160 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002161 struct ahci_port_priv *pp = ap->private_data;
2162 void __iomem *port_mmio = ahci_port_base(ap);
2163 u32 fbs;
2164 int rc;
2165
2166 if (!pp->fbs_supported)
2167 return;
2168
2169 fbs = readl(port_mmio + PORT_FBS);
2170 if ((fbs & PORT_FBS_EN) == 0) {
2171 pp->fbs_enabled = false;
2172 return;
2173 }
2174
2175 rc = ahci_stop_engine(ap);
2176 if (rc)
2177 return;
2178
2179 writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2180 fbs = readl(port_mmio + PORT_FBS);
2181 if (fbs & PORT_FBS_EN)
Joe Perchesa44fec12011-04-15 15:51:58 -07002182 dev_err(ap->host->dev, "Failed to disable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002183 else {
Joe Perchesa44fec12011-04-15 15:51:58 -07002184 dev_info(ap->host->dev, "FBS is disabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002185 pp->fbs_enabled = false;
2186 }
2187
Hans de Goede039ece32014-02-22 16:53:30 +01002188 hpriv->start_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002189}
2190
2191static void ahci_pmp_attach(struct ata_port *ap)
2192{
2193 void __iomem *port_mmio = ahci_port_base(ap);
2194 struct ahci_port_priv *pp = ap->private_data;
2195 u32 cmd;
2196
2197 cmd = readl(port_mmio + PORT_CMD);
2198 cmd |= PORT_CMD_PMP;
2199 writel(cmd, port_mmio + PORT_CMD);
2200
2201 ahci_enable_fbs(ap);
2202
2203 pp->intr_mask |= PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002204
2205 /*
2206 * We must not change the port interrupt mask register if the
2207 * port is marked frozen, the value in pp->intr_mask will be
2208 * restored later when the port is thawed.
2209 *
2210 * Note that during initialization, the port is marked as
2211 * frozen since the irq handler is not yet registered.
2212 */
2213 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2214 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002215}
2216
2217static void ahci_pmp_detach(struct ata_port *ap)
2218{
2219 void __iomem *port_mmio = ahci_port_base(ap);
2220 struct ahci_port_priv *pp = ap->private_data;
2221 u32 cmd;
2222
2223 ahci_disable_fbs(ap);
2224
2225 cmd = readl(port_mmio + PORT_CMD);
2226 cmd &= ~PORT_CMD_PMP;
2227 writel(cmd, port_mmio + PORT_CMD);
2228
2229 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002230
2231 /* see comment above in ahci_pmp_attach() */
2232 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2233 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002234}
2235
David Milburn02cdfcf2010-11-12 15:38:21 -06002236int ahci_port_resume(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002237{
2238 ahci_power_up(ap);
2239 ahci_start_port(ap);
2240
2241 if (sata_pmp_attached(ap))
2242 ahci_pmp_attach(ap);
2243 else
2244 ahci_pmp_detach(ap);
2245
2246 return 0;
2247}
David Milburn02cdfcf2010-11-12 15:38:21 -06002248EXPORT_SYMBOL_GPL(ahci_port_resume);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002249
2250#ifdef CONFIG_PM
2251static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2252{
2253 const char *emsg = NULL;
2254 int rc;
2255
2256 rc = ahci_deinit_port(ap, &emsg);
2257 if (rc == 0)
2258 ahci_power_down(ap);
2259 else {
Joe Perchesa9a79df2011-04-15 15:51:59 -07002260 ata_port_err(ap, "%s (%d)\n", emsg, rc);
Tejun Heo7faa33d2011-07-22 11:41:26 +02002261 ata_port_freeze(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002262 }
2263
2264 return rc;
2265}
2266#endif
2267
2268static int ahci_port_start(struct ata_port *ap)
2269{
2270 struct ahci_host_priv *hpriv = ap->host->private_data;
2271 struct device *dev = ap->host->dev;
2272 struct ahci_port_priv *pp;
2273 void *mem;
2274 dma_addr_t mem_dma;
2275 size_t dma_sz, rx_fis_sz;
2276
2277 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
2278 if (!pp)
2279 return -ENOMEM;
2280
Alexander Gordeevb29900e2013-05-22 08:53:48 +09002281 if (ap->host->n_ports > 1) {
2282 pp->irq_desc = devm_kzalloc(dev, 8, GFP_KERNEL);
2283 if (!pp->irq_desc) {
2284 devm_kfree(dev, pp);
2285 return -ENOMEM;
2286 }
2287 snprintf(pp->irq_desc, 8,
2288 "%s%d", dev_driver_string(dev), ap->port_no);
2289 }
2290
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002291 /* check FBS capability */
2292 if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2293 void __iomem *port_mmio = ahci_port_base(ap);
2294 u32 cmd = readl(port_mmio + PORT_CMD);
2295 if (cmd & PORT_CMD_FBSCP)
2296 pp->fbs_supported = true;
Tejun Heo5f173102010-07-24 16:53:48 +02002297 else if (hpriv->flags & AHCI_HFLAG_YES_FBS) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002298 dev_info(dev, "port %d can do FBS, forcing FBSCP\n",
2299 ap->port_no);
Tejun Heo5f173102010-07-24 16:53:48 +02002300 pp->fbs_supported = true;
2301 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002302 dev_warn(dev, "port %d is not capable of FBS\n",
2303 ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002304 }
2305
2306 if (pp->fbs_supported) {
2307 dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2308 rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2309 } else {
2310 dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2311 rx_fis_sz = AHCI_RX_FIS_SZ;
2312 }
2313
2314 mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
2315 if (!mem)
2316 return -ENOMEM;
2317 memset(mem, 0, dma_sz);
2318
2319 /*
2320 * First item in chunk of DMA memory: 32-slot command table,
2321 * 32 bytes each in size
2322 */
2323 pp->cmd_slot = mem;
2324 pp->cmd_slot_dma = mem_dma;
2325
2326 mem += AHCI_CMD_SLOT_SZ;
2327 mem_dma += AHCI_CMD_SLOT_SZ;
2328
2329 /*
2330 * Second item: Received-FIS area
2331 */
2332 pp->rx_fis = mem;
2333 pp->rx_fis_dma = mem_dma;
2334
2335 mem += rx_fis_sz;
2336 mem_dma += rx_fis_sz;
2337
2338 /*
2339 * Third item: data area for storing a single command
2340 * and its scatter-gather table
2341 */
2342 pp->cmd_tbl = mem;
2343 pp->cmd_tbl_dma = mem_dma;
2344
2345 /*
2346 * Save off initial list of interrupts to be enabled.
2347 * This could be changed later
2348 */
2349 pp->intr_mask = DEF_PORT_IRQ;
2350
Tejun Heo7865f832014-10-27 09:50:36 -04002351 /*
2352 * Switch to per-port locking in case each port has its own MSI vector.
2353 */
Robert Richter21bfd1a2015-05-31 13:55:18 +02002354 if (hpriv->flags & AHCI_HFLAG_MULTI_MSI) {
Tejun Heo7865f832014-10-27 09:50:36 -04002355 spin_lock_init(&pp->lock);
2356 ap->lock = &pp->lock;
2357 }
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01002358
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002359 ap->private_data = pp;
2360
2361 /* engage engines, captain */
2362 return ahci_port_resume(ap);
2363}
2364
2365static void ahci_port_stop(struct ata_port *ap)
2366{
2367 const char *emsg = NULL;
2368 int rc;
2369
2370 /* de-initialize port */
2371 rc = ahci_deinit_port(ap, &emsg);
2372 if (rc)
Joe Perchesa9a79df2011-04-15 15:51:59 -07002373 ata_port_warn(ap, "%s (%d)\n", emsg, rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002374}
2375
2376void ahci_print_info(struct ata_host *host, const char *scc_s)
2377{
2378 struct ahci_host_priv *hpriv = host->private_data;
2379 void __iomem *mmio = hpriv->mmio;
2380 u32 vers, cap, cap2, impl, speed;
2381 const char *speed_s;
2382
2383 vers = readl(mmio + HOST_VERSION);
2384 cap = hpriv->cap;
2385 cap2 = hpriv->cap2;
2386 impl = hpriv->port_map;
2387
2388 speed = (cap >> 20) & 0xf;
2389 if (speed == 1)
2390 speed_s = "1.5";
2391 else if (speed == 2)
2392 speed_s = "3";
2393 else if (speed == 3)
2394 speed_s = "6";
2395 else
2396 speed_s = "?";
2397
2398 dev_info(host->dev,
2399 "AHCI %02x%02x.%02x%02x "
2400 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
2401 ,
2402
2403 (vers >> 24) & 0xff,
2404 (vers >> 16) & 0xff,
2405 (vers >> 8) & 0xff,
2406 vers & 0xff,
2407
2408 ((cap >> 8) & 0x1f) + 1,
2409 (cap & 0x1f) + 1,
2410 speed_s,
2411 impl,
2412 scc_s);
2413
2414 dev_info(host->dev,
2415 "flags: "
2416 "%s%s%s%s%s%s%s"
2417 "%s%s%s%s%s%s%s"
Shane Huang65fe1f02012-09-07 22:40:01 +08002418 "%s%s%s%s%s%s%s"
2419 "%s%s\n"
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002420 ,
2421
2422 cap & HOST_CAP_64 ? "64bit " : "",
2423 cap & HOST_CAP_NCQ ? "ncq " : "",
2424 cap & HOST_CAP_SNTF ? "sntf " : "",
2425 cap & HOST_CAP_MPS ? "ilck " : "",
2426 cap & HOST_CAP_SSS ? "stag " : "",
2427 cap & HOST_CAP_ALPM ? "pm " : "",
2428 cap & HOST_CAP_LED ? "led " : "",
2429 cap & HOST_CAP_CLO ? "clo " : "",
2430 cap & HOST_CAP_ONLY ? "only " : "",
2431 cap & HOST_CAP_PMP ? "pmp " : "",
2432 cap & HOST_CAP_FBS ? "fbs " : "",
2433 cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2434 cap & HOST_CAP_SSC ? "slum " : "",
2435 cap & HOST_CAP_PART ? "part " : "",
2436 cap & HOST_CAP_CCC ? "ccc " : "",
2437 cap & HOST_CAP_EMS ? "ems " : "",
2438 cap & HOST_CAP_SXS ? "sxs " : "",
Shane Huang65fe1f02012-09-07 22:40:01 +08002439 cap2 & HOST_CAP2_DESO ? "deso " : "",
2440 cap2 & HOST_CAP2_SADM ? "sadm " : "",
2441 cap2 & HOST_CAP2_SDS ? "sds " : "",
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002442 cap2 & HOST_CAP2_APST ? "apst " : "",
2443 cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2444 cap2 & HOST_CAP2_BOH ? "boh " : ""
2445 );
2446}
2447EXPORT_SYMBOL_GPL(ahci_print_info);
2448
2449void ahci_set_em_messages(struct ahci_host_priv *hpriv,
2450 struct ata_port_info *pi)
2451{
2452 u8 messages;
2453 void __iomem *mmio = hpriv->mmio;
2454 u32 em_loc = readl(mmio + HOST_EM_LOC);
2455 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2456
2457 if (!ahci_em_messages || !(hpriv->cap & HOST_CAP_EMS))
2458 return;
2459
2460 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
2461
Harry Zhang008dbd62010-04-23 17:27:19 +08002462 if (messages) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002463 /* store em_loc */
2464 hpriv->em_loc = ((em_loc >> 16) * 4);
Harry Zhangc0623162010-04-23 17:28:38 +08002465 hpriv->em_buf_sz = ((em_loc & 0xff) * 4);
Harry Zhang008dbd62010-04-23 17:27:19 +08002466 hpriv->em_msg_type = messages;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002467 pi->flags |= ATA_FLAG_EM;
2468 if (!(em_ctl & EM_CTL_ALHD))
2469 pi->flags |= ATA_FLAG_SW_ACTIVITY;
2470 }
2471}
2472EXPORT_SYMBOL_GPL(ahci_set_em_messages);
2473
Dan Williamsd684a902015-11-11 16:27:33 -08002474static int ahci_host_activate_multi_irqs(struct ata_host *host,
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002475 struct scsi_host_template *sht)
Alexander Gordeev1c628542014-09-29 18:25:58 +02002476{
Dan Williamsd684a902015-11-11 16:27:33 -08002477 struct ahci_host_priv *hpriv = host->private_data;
Alexander Gordeev1c628542014-09-29 18:25:58 +02002478 int i, rc;
2479
2480 rc = ata_host_start(host);
2481 if (rc)
2482 return rc;
Robert Richter21bfd1a2015-05-31 13:55:18 +02002483 /*
2484 * Requests IRQs according to AHCI-1.1 when multiple MSIs were
2485 * allocated. That is one MSI per port, starting from @irq.
2486 */
Alexander Gordeev1c628542014-09-29 18:25:58 +02002487 for (i = 0; i < host->n_ports; i++) {
2488 struct ahci_port_priv *pp = host->ports[i]->private_data;
Dan Williamsd684a902015-11-11 16:27:33 -08002489 int irq;
2490
2491 if (hpriv->flags & AHCI_HFLAG_MULTI_MSIX)
2492 irq = hpriv->msix[i].vector;
2493 else
2494 irq = hpriv->irq + i;
Alexander Gordeev1c628542014-09-29 18:25:58 +02002495
2496 /* Do not receive interrupts sent by dummy ports */
2497 if (!pp) {
2498 disable_irq(irq + i);
2499 continue;
2500 }
2501
Dan Williamsd684a902015-11-11 16:27:33 -08002502 rc = devm_request_threaded_irq(host->dev, irq,
Alexander Gordeev5ee1cfd2014-09-29 18:26:00 +02002503 ahci_multi_irqs_intr,
Dan Williams899a63c2015-10-30 17:09:30 -04002504 ahci_port_thread_fn, 0,
Alexander Gordeev1c628542014-09-29 18:25:58 +02002505 pp->irq_desc, host->ports[i]);
2506 if (rc)
Dan Williams0a142b22015-10-30 17:09:35 -04002507 return rc;
Dan Williamsd684a902015-11-11 16:27:33 -08002508 ata_port_desc(host->ports[i], "irq %d", irq);
Dan Williams0a142b22015-10-30 17:09:35 -04002509 }
Dan Williamsd684a902015-11-11 16:27:33 -08002510
Dan Williams0a142b22015-10-30 17:09:35 -04002511 return ata_host_register(host, sht);
Alexander Gordeev1c628542014-09-29 18:25:58 +02002512}
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002513
2514/**
2515 * ahci_host_activate - start AHCI host, request IRQs and register it
2516 * @host: target ATA host
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002517 * @sht: scsi_host_template to use when registering the host
2518 *
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002519 * LOCKING:
2520 * Inherited from calling layer (may sleep).
2521 *
2522 * RETURNS:
2523 * 0 on success, -errno otherwise.
2524 */
Robert Richter21bfd1a2015-05-31 13:55:18 +02002525int ahci_host_activate(struct ata_host *host, struct scsi_host_template *sht)
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002526{
2527 struct ahci_host_priv *hpriv = host->private_data;
Robert Richter21bfd1a2015-05-31 13:55:18 +02002528 int irq = hpriv->irq;
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002529 int rc;
2530
Dan Williamsd684a902015-11-11 16:27:33 -08002531 if (hpriv->flags & (AHCI_HFLAG_MULTI_MSI | AHCI_HFLAG_MULTI_MSIX))
2532 rc = ahci_host_activate_multi_irqs(host, sht);
Suman Tripathi5903b162015-05-06 00:51:11 +05302533 else if (hpriv->flags & AHCI_HFLAG_EDGE_IRQ)
2534 rc = ata_host_activate(host, irq, ahci_single_edge_irq_intr,
2535 IRQF_SHARED, sht);
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002536 else
Suman Tripathia129db82015-05-06 00:51:10 +05302537 rc = ata_host_activate(host, irq, ahci_single_level_irq_intr,
Tejun Heo7865f832014-10-27 09:50:36 -04002538 IRQF_SHARED, sht);
Alexander Gordeevd1028e22014-09-29 18:25:59 +02002539 return rc;
2540}
Alexander Gordeev1c628542014-09-29 18:25:58 +02002541EXPORT_SYMBOL_GPL(ahci_host_activate);
2542
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002543MODULE_AUTHOR("Jeff Garzik");
2544MODULE_DESCRIPTION("Common AHCI SATA low-level routines");
2545MODULE_LICENSE("GPL");