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