blob: 0cff1167c83cf3569c33e1f2e1c82eaff83e4603 [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>
46#include "ahci.h"
Shane Huang65fe1f02012-09-07 22:40:01 +080047#include "libata.h"
Anton Vorontsov365cfa12010-03-28 00:22:14 -040048
49static int ahci_skip_host_reset;
50int ahci_ignore_sss;
51EXPORT_SYMBOL_GPL(ahci_ignore_sss);
52
53module_param_named(skip_host_reset, ahci_skip_host_reset, int, 0444);
54MODULE_PARM_DESC(skip_host_reset, "skip global host reset (0=don't skip, 1=skip)");
55
56module_param_named(ignore_sss, ahci_ignore_sss, int, 0444);
57MODULE_PARM_DESC(ignore_sss, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
58
Tejun Heo6b7ae952010-09-01 17:50:06 +020059static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
60 unsigned hints);
Anton Vorontsov365cfa12010-03-28 00:22:14 -040061static ssize_t ahci_led_show(struct ata_port *ap, char *buf);
62static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
63 size_t size);
64static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
65 ssize_t size);
66
67
68
69static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
70static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
71static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
72static 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
386 * @force_port_map: force port map to a specified value
387 * @mask_port_map: mask out particular bits from port map
388 *
389 * Some registers containing configuration info might be setup by
390 * BIOS and might be cleared on reset. This function saves the
391 * initial values of those registers into @hpriv such that they
392 * can be restored after controller reset.
393 *
394 * If inconsistent, config values are fixed up by this function.
395 *
396 * LOCKING:
397 * None.
398 */
399void ahci_save_initial_config(struct device *dev,
400 struct ahci_host_priv *hpriv,
401 unsigned int force_port_map,
402 unsigned int mask_port_map)
403{
404 void __iomem *mmio = hpriv->mmio;
405 u32 cap, cap2, vers, port_map;
406 int i;
407
408 /* make sure AHCI mode is enabled before accessing CAP */
409 ahci_enable_ahci(mmio);
410
411 /* Values prefixed with saved_ are written back to host after
412 * reset. Values without are used for driver operation.
413 */
414 hpriv->saved_cap = cap = readl(mmio + HOST_CAP);
415 hpriv->saved_port_map = port_map = readl(mmio + HOST_PORTS_IMPL);
416
417 /* CAP2 register is only defined for AHCI 1.2 and later */
418 vers = readl(mmio + HOST_VERSION);
419 if ((vers >> 16) > 1 ||
420 ((vers >> 16) == 1 && (vers & 0xFFFF) >= 0x200))
421 hpriv->saved_cap2 = cap2 = readl(mmio + HOST_CAP2);
422 else
423 hpriv->saved_cap2 = cap2 = 0;
424
425 /* some chips have errata preventing 64bit use */
426 if ((cap & HOST_CAP_64) && (hpriv->flags & AHCI_HFLAG_32BIT_ONLY)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700427 dev_info(dev, "controller can't do 64bit DMA, forcing 32bit\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400428 cap &= ~HOST_CAP_64;
429 }
430
431 if ((cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_NO_NCQ)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700432 dev_info(dev, "controller can't do NCQ, turning off CAP_NCQ\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400433 cap &= ~HOST_CAP_NCQ;
434 }
435
436 if (!(cap & HOST_CAP_NCQ) && (hpriv->flags & AHCI_HFLAG_YES_NCQ)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700437 dev_info(dev, "controller can do NCQ, turning on CAP_NCQ\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400438 cap |= HOST_CAP_NCQ;
439 }
440
441 if ((cap & HOST_CAP_PMP) && (hpriv->flags & AHCI_HFLAG_NO_PMP)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700442 dev_info(dev, "controller can't do PMP, turning off CAP_PMP\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400443 cap &= ~HOST_CAP_PMP;
444 }
445
446 if ((cap & HOST_CAP_SNTF) && (hpriv->flags & AHCI_HFLAG_NO_SNTF)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700447 dev_info(dev,
448 "controller can't do SNTF, turning off CAP_SNTF\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400449 cap &= ~HOST_CAP_SNTF;
450 }
451
Tejun Heo5f173102010-07-24 16:53:48 +0200452 if (!(cap & HOST_CAP_FBS) && (hpriv->flags & AHCI_HFLAG_YES_FBS)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700453 dev_info(dev, "controller can do FBS, turning on CAP_FBS\n");
Tejun Heo5f173102010-07-24 16:53:48 +0200454 cap |= HOST_CAP_FBS;
455 }
456
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400457 if (force_port_map && port_map != force_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700458 dev_info(dev, "forcing port_map 0x%x -> 0x%x\n",
459 port_map, force_port_map);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400460 port_map = force_port_map;
461 }
462
463 if (mask_port_map) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700464 dev_warn(dev, "masking port_map 0x%x -> 0x%x\n",
465 port_map,
466 port_map & mask_port_map);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400467 port_map &= mask_port_map;
468 }
469
470 /* cross check port_map and cap.n_ports */
471 if (port_map) {
472 int map_ports = 0;
473
474 for (i = 0; i < AHCI_MAX_PORTS; i++)
475 if (port_map & (1 << i))
476 map_ports++;
477
478 /* If PI has more ports than n_ports, whine, clear
479 * port_map and let it be generated from n_ports.
480 */
481 if (map_ports > ahci_nr_ports(cap)) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700482 dev_warn(dev,
483 "implemented port map (0x%x) contains more ports than nr_ports (%u), using nr_ports\n",
484 port_map, ahci_nr_ports(cap));
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400485 port_map = 0;
486 }
487 }
488
489 /* fabricate port_map from cap.nr_ports */
490 if (!port_map) {
491 port_map = (1 << ahci_nr_ports(cap)) - 1;
Joe Perchesa44fec12011-04-15 15:51:58 -0700492 dev_warn(dev, "forcing PORTS_IMPL to 0x%x\n", port_map);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400493
494 /* write the fixed up value to the PI register */
495 hpriv->saved_port_map = port_map;
496 }
497
498 /* record values to use during operation */
499 hpriv->cap = cap;
500 hpriv->cap2 = cap2;
501 hpriv->port_map = port_map;
502}
503EXPORT_SYMBOL_GPL(ahci_save_initial_config);
504
505/**
506 * ahci_restore_initial_config - Restore initial config
507 * @host: target ATA host
508 *
509 * Restore initial config stored by ahci_save_initial_config().
510 *
511 * LOCKING:
512 * None.
513 */
514static void ahci_restore_initial_config(struct ata_host *host)
515{
516 struct ahci_host_priv *hpriv = host->private_data;
517 void __iomem *mmio = hpriv->mmio;
518
519 writel(hpriv->saved_cap, mmio + HOST_CAP);
520 if (hpriv->saved_cap2)
521 writel(hpriv->saved_cap2, mmio + HOST_CAP2);
522 writel(hpriv->saved_port_map, mmio + HOST_PORTS_IMPL);
523 (void) readl(mmio + HOST_PORTS_IMPL); /* flush */
524}
525
526static unsigned ahci_scr_offset(struct ata_port *ap, unsigned int sc_reg)
527{
528 static const int offset[] = {
529 [SCR_STATUS] = PORT_SCR_STAT,
530 [SCR_CONTROL] = PORT_SCR_CTL,
531 [SCR_ERROR] = PORT_SCR_ERR,
532 [SCR_ACTIVE] = PORT_SCR_ACT,
533 [SCR_NOTIFICATION] = PORT_SCR_NTF,
534 };
535 struct ahci_host_priv *hpriv = ap->host->private_data;
536
537 if (sc_reg < ARRAY_SIZE(offset) &&
538 (sc_reg != SCR_NOTIFICATION || (hpriv->cap & HOST_CAP_SNTF)))
539 return offset[sc_reg];
540 return 0;
541}
542
543static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
544{
545 void __iomem *port_mmio = ahci_port_base(link->ap);
546 int offset = ahci_scr_offset(link->ap, sc_reg);
547
548 if (offset) {
549 *val = readl(port_mmio + offset);
550 return 0;
551 }
552 return -EINVAL;
553}
554
555static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
556{
557 void __iomem *port_mmio = ahci_port_base(link->ap);
558 int offset = ahci_scr_offset(link->ap, sc_reg);
559
560 if (offset) {
561 writel(val, port_mmio + offset);
562 return 0;
563 }
564 return -EINVAL;
565}
566
567void ahci_start_engine(struct ata_port *ap)
568{
569 void __iomem *port_mmio = ahci_port_base(ap);
570 u32 tmp;
571
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400572 /* start DMA */
573 tmp = readl(port_mmio + PORT_CMD);
574 tmp |= PORT_CMD_START;
575 writel(tmp, port_mmio + PORT_CMD);
576 readl(port_mmio + PORT_CMD); /* flush */
577}
578EXPORT_SYMBOL_GPL(ahci_start_engine);
579
580int ahci_stop_engine(struct ata_port *ap)
581{
582 void __iomem *port_mmio = ahci_port_base(ap);
583 u32 tmp;
584
585 tmp = readl(port_mmio + PORT_CMD);
586
587 /* check if the HBA is idle */
588 if ((tmp & (PORT_CMD_START | PORT_CMD_LIST_ON)) == 0)
589 return 0;
590
591 /* setting HBA to idle */
592 tmp &= ~PORT_CMD_START;
593 writel(tmp, port_mmio + PORT_CMD);
594
595 /* wait for engine to stop. This could be as long as 500 msec */
Tejun Heo97750ce2010-09-06 17:56:29 +0200596 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400597 PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
598 if (tmp & PORT_CMD_LIST_ON)
599 return -EIO;
600
601 return 0;
602}
603EXPORT_SYMBOL_GPL(ahci_stop_engine);
604
605static void ahci_start_fis_rx(struct ata_port *ap)
606{
607 void __iomem *port_mmio = ahci_port_base(ap);
608 struct ahci_host_priv *hpriv = ap->host->private_data;
609 struct ahci_port_priv *pp = ap->private_data;
610 u32 tmp;
611
612 /* set FIS registers */
613 if (hpriv->cap & HOST_CAP_64)
614 writel((pp->cmd_slot_dma >> 16) >> 16,
615 port_mmio + PORT_LST_ADDR_HI);
616 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
617
618 if (hpriv->cap & HOST_CAP_64)
619 writel((pp->rx_fis_dma >> 16) >> 16,
620 port_mmio + PORT_FIS_ADDR_HI);
621 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
622
623 /* enable FIS reception */
624 tmp = readl(port_mmio + PORT_CMD);
625 tmp |= PORT_CMD_FIS_RX;
626 writel(tmp, port_mmio + PORT_CMD);
627
628 /* flush */
629 readl(port_mmio + PORT_CMD);
630}
631
632static int ahci_stop_fis_rx(struct ata_port *ap)
633{
634 void __iomem *port_mmio = ahci_port_base(ap);
635 u32 tmp;
636
637 /* disable FIS reception */
638 tmp = readl(port_mmio + PORT_CMD);
639 tmp &= ~PORT_CMD_FIS_RX;
640 writel(tmp, port_mmio + PORT_CMD);
641
642 /* wait for completion, spec says 500ms, give it 1000 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200643 tmp = ata_wait_register(ap, port_mmio + PORT_CMD, PORT_CMD_FIS_ON,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400644 PORT_CMD_FIS_ON, 10, 1000);
645 if (tmp & PORT_CMD_FIS_ON)
646 return -EBUSY;
647
648 return 0;
649}
650
651static void ahci_power_up(struct ata_port *ap)
652{
653 struct ahci_host_priv *hpriv = ap->host->private_data;
654 void __iomem *port_mmio = ahci_port_base(ap);
655 u32 cmd;
656
657 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
658
659 /* spin up device */
660 if (hpriv->cap & HOST_CAP_SSS) {
661 cmd |= PORT_CMD_SPIN_UP;
662 writel(cmd, port_mmio + PORT_CMD);
663 }
664
665 /* wake up link */
666 writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
667}
668
Tejun Heo6b7ae952010-09-01 17:50:06 +0200669static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
670 unsigned int hints)
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400671{
Tejun Heo6b7ae952010-09-01 17:50:06 +0200672 struct ata_port *ap = link->ap;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400673 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400674 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400675 void __iomem *port_mmio = ahci_port_base(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400676
Tejun Heo6b7ae952010-09-01 17:50:06 +0200677 if (policy != ATA_LPM_MAX_POWER) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400678 /*
Tejun Heo6b7ae952010-09-01 17:50:06 +0200679 * Disable interrupts on Phy Ready. This keeps us from
680 * getting woken up due to spurious phy ready
681 * interrupts.
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400682 */
Tejun Heo6b7ae952010-09-01 17:50:06 +0200683 pp->intr_mask &= ~PORT_IRQ_PHYRDY;
684 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
685
686 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400687 }
688
Tejun Heo6b7ae952010-09-01 17:50:06 +0200689 if (hpriv->cap & HOST_CAP_ALPM) {
690 u32 cmd = readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400691
Tejun Heo6b7ae952010-09-01 17:50:06 +0200692 if (policy == ATA_LPM_MAX_POWER || !(hints & ATA_LPM_HIPM)) {
693 cmd &= ~(PORT_CMD_ASP | PORT_CMD_ALPE);
694 cmd |= PORT_CMD_ICC_ACTIVE;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400695
Tejun Heo6b7ae952010-09-01 17:50:06 +0200696 writel(cmd, port_mmio + PORT_CMD);
697 readl(port_mmio + PORT_CMD);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400698
Tejun Heo6b7ae952010-09-01 17:50:06 +0200699 /* wait 10ms to be sure we've come out of LPM state */
Tejun Heo97750ce2010-09-06 17:56:29 +0200700 ata_msleep(ap, 10);
Tejun Heo6b7ae952010-09-01 17:50:06 +0200701 } else {
702 cmd |= PORT_CMD_ALPE;
703 if (policy == ATA_LPM_MIN_POWER)
704 cmd |= PORT_CMD_ASP;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400705
Tejun Heo6b7ae952010-09-01 17:50:06 +0200706 /* write out new cmd value */
707 writel(cmd, port_mmio + PORT_CMD);
708 }
709 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400710
Shane Huang65fe1f02012-09-07 22:40:01 +0800711 /* set aggressive device sleep */
712 if ((hpriv->cap2 & HOST_CAP2_SDS) &&
713 (hpriv->cap2 & HOST_CAP2_SADM) &&
714 (link->device->flags & ATA_DFLAG_DEVSLP)) {
715 if (policy == ATA_LPM_MIN_POWER)
716 ahci_set_aggressive_devslp(ap, true);
717 else
718 ahci_set_aggressive_devslp(ap, false);
719 }
720
Tejun Heo6b7ae952010-09-01 17:50:06 +0200721 if (policy == ATA_LPM_MAX_POWER) {
722 sata_link_scr_lpm(link, policy, false);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400723
Tejun Heo6b7ae952010-09-01 17:50:06 +0200724 /* turn PHYRDY IRQ back on */
725 pp->intr_mask |= PORT_IRQ_PHYRDY;
726 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
727 }
728
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400729 return 0;
730}
731
732#ifdef CONFIG_PM
733static void ahci_power_down(struct ata_port *ap)
734{
735 struct ahci_host_priv *hpriv = ap->host->private_data;
736 void __iomem *port_mmio = ahci_port_base(ap);
737 u32 cmd, scontrol;
738
739 if (!(hpriv->cap & HOST_CAP_SSS))
740 return;
741
742 /* put device into listen mode, first set PxSCTL.DET to 0 */
743 scontrol = readl(port_mmio + PORT_SCR_CTL);
744 scontrol &= ~0xf;
745 writel(scontrol, port_mmio + PORT_SCR_CTL);
746
747 /* then set PxCMD.SUD to 0 */
748 cmd = readl(port_mmio + PORT_CMD) & ~PORT_CMD_ICC_MASK;
749 cmd &= ~PORT_CMD_SPIN_UP;
750 writel(cmd, port_mmio + PORT_CMD);
751}
752#endif
753
754static void ahci_start_port(struct ata_port *ap)
755{
Brian Norris66583c92012-02-21 10:38:42 -0800756 struct ahci_host_priv *hpriv = ap->host->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400757 struct ahci_port_priv *pp = ap->private_data;
758 struct ata_link *link;
759 struct ahci_em_priv *emp;
760 ssize_t rc;
761 int i;
762
763 /* enable FIS reception */
764 ahci_start_fis_rx(ap);
765
Brian Norris66583c92012-02-21 10:38:42 -0800766 /* enable DMA */
767 if (!(hpriv->flags & AHCI_HFLAG_DELAY_ENGINE))
768 ahci_start_engine(ap);
769
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400770 /* turn on LEDs */
771 if (ap->flags & ATA_FLAG_EM) {
772 ata_for_each_link(link, ap, EDGE) {
773 emp = &pp->em_priv[link->pmp];
774
775 /* EM Transmit bit maybe busy during init */
776 for (i = 0; i < EM_MAX_RETRY; i++) {
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500777 rc = ap->ops->transmit_led_message(ap,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400778 emp->led_state,
779 4);
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200780 /*
781 * If busy, give a breather but do not
782 * release EH ownership by using msleep()
783 * instead of ata_msleep(). EM Transmit
784 * bit is busy for the whole host and
785 * releasing ownership will cause other
786 * ports to fail the same way.
787 */
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400788 if (rc == -EBUSY)
Lukasz Doraufa070ee2013-10-14 18:18:53 +0200789 msleep(1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400790 else
791 break;
792 }
793 }
794 }
795
796 if (ap->flags & ATA_FLAG_SW_ACTIVITY)
797 ata_for_each_link(link, ap, EDGE)
798 ahci_init_sw_activity(link);
799
800}
801
802static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
803{
804 int rc;
805
806 /* disable DMA */
807 rc = ahci_stop_engine(ap);
808 if (rc) {
809 *emsg = "failed to stop engine";
810 return rc;
811 }
812
813 /* disable FIS reception */
814 rc = ahci_stop_fis_rx(ap);
815 if (rc) {
816 *emsg = "failed stop FIS RX";
817 return rc;
818 }
819
820 return 0;
821}
822
823int ahci_reset_controller(struct ata_host *host)
824{
825 struct ahci_host_priv *hpriv = host->private_data;
826 void __iomem *mmio = hpriv->mmio;
827 u32 tmp;
828
829 /* we must be in AHCI mode, before using anything
830 * AHCI-specific, such as HOST_RESET.
831 */
832 ahci_enable_ahci(mmio);
833
834 /* global controller reset */
835 if (!ahci_skip_host_reset) {
836 tmp = readl(mmio + HOST_CTL);
837 if ((tmp & HOST_RESET) == 0) {
838 writel(tmp | HOST_RESET, mmio + HOST_CTL);
839 readl(mmio + HOST_CTL); /* flush */
840 }
841
842 /*
843 * to perform host reset, OS should set HOST_RESET
844 * and poll until this bit is read to be "0".
845 * reset must complete within 1 second, or
846 * the hardware should be considered fried.
847 */
Tejun Heo97750ce2010-09-06 17:56:29 +0200848 tmp = ata_wait_register(NULL, mmio + HOST_CTL, HOST_RESET,
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400849 HOST_RESET, 10, 1000);
850
851 if (tmp & HOST_RESET) {
Joe Perchesa44fec12011-04-15 15:51:58 -0700852 dev_err(host->dev, "controller reset failed (0x%x)\n",
853 tmp);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400854 return -EIO;
855 }
856
857 /* turn on AHCI mode */
858 ahci_enable_ahci(mmio);
859
860 /* Some registers might be cleared on reset. Restore
861 * initial values.
862 */
863 ahci_restore_initial_config(host);
864 } else
Joe Perchesa44fec12011-04-15 15:51:58 -0700865 dev_info(host->dev, "skipping global host reset\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400866
867 return 0;
868}
869EXPORT_SYMBOL_GPL(ahci_reset_controller);
870
871static void ahci_sw_activity(struct ata_link *link)
872{
873 struct ata_port *ap = link->ap;
874 struct ahci_port_priv *pp = ap->private_data;
875 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
876
877 if (!(link->flags & ATA_LFLAG_SW_ACTIVITY))
878 return;
879
880 emp->activity++;
881 if (!timer_pending(&emp->timer))
882 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(10));
883}
884
885static void ahci_sw_activity_blink(unsigned long arg)
886{
887 struct ata_link *link = (struct ata_link *)arg;
888 struct ata_port *ap = link->ap;
889 struct ahci_port_priv *pp = ap->private_data;
890 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
891 unsigned long led_message = emp->led_state;
892 u32 activity_led_state;
893 unsigned long flags;
894
895 led_message &= EM_MSG_LED_VALUE;
896 led_message |= ap->port_no | (link->pmp << 8);
897
898 /* check to see if we've had activity. If so,
899 * toggle state of LED and reset timer. If not,
900 * turn LED to desired idle state.
901 */
902 spin_lock_irqsave(ap->lock, flags);
903 if (emp->saved_activity != emp->activity) {
904 emp->saved_activity = emp->activity;
905 /* get the current LED state */
906 activity_led_state = led_message & EM_MSG_LED_VALUE_ON;
907
908 if (activity_led_state)
909 activity_led_state = 0;
910 else
911 activity_led_state = 1;
912
913 /* clear old state */
914 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
915
916 /* toggle state */
917 led_message |= (activity_led_state << 16);
918 mod_timer(&emp->timer, jiffies + msecs_to_jiffies(100));
919 } else {
920 /* switch to idle */
921 led_message &= ~EM_MSG_LED_VALUE_ACTIVITY;
922 if (emp->blink_policy == BLINK_OFF)
923 led_message |= (1 << 16);
924 }
925 spin_unlock_irqrestore(ap->lock, flags);
Mark Langsdorf439d7a32013-05-30 15:17:30 -0500926 ap->ops->transmit_led_message(ap, led_message, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400927}
928
929static void ahci_init_sw_activity(struct ata_link *link)
930{
931 struct ata_port *ap = link->ap;
932 struct ahci_port_priv *pp = ap->private_data;
933 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
934
935 /* init activity stats, setup timer */
936 emp->saved_activity = emp->activity = 0;
937 setup_timer(&emp->timer, ahci_sw_activity_blink, (unsigned long)link);
938
939 /* check our blink policy and set flag for link if it's enabled */
940 if (emp->blink_policy)
941 link->flags |= ATA_LFLAG_SW_ACTIVITY;
942}
943
944int ahci_reset_em(struct ata_host *host)
945{
946 struct ahci_host_priv *hpriv = host->private_data;
947 void __iomem *mmio = hpriv->mmio;
948 u32 em_ctl;
949
950 em_ctl = readl(mmio + HOST_EM_CTL);
951 if ((em_ctl & EM_CTL_TM) || (em_ctl & EM_CTL_RST))
952 return -EINVAL;
953
954 writel(em_ctl | EM_CTL_RST, mmio + HOST_EM_CTL);
955 return 0;
956}
957EXPORT_SYMBOL_GPL(ahci_reset_em);
958
959static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
960 ssize_t size)
961{
962 struct ahci_host_priv *hpriv = ap->host->private_data;
963 struct ahci_port_priv *pp = ap->private_data;
964 void __iomem *mmio = hpriv->mmio;
965 u32 em_ctl;
966 u32 message[] = {0, 0};
967 unsigned long flags;
968 int pmp;
969 struct ahci_em_priv *emp;
970
971 /* get the slot number from the message */
972 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
973 if (pmp < EM_MAX_SLOTS)
974 emp = &pp->em_priv[pmp];
975 else
976 return -EINVAL;
977
978 spin_lock_irqsave(ap->lock, flags);
979
980 /*
981 * if we are still busy transmitting a previous message,
982 * do not allow
983 */
984 em_ctl = readl(mmio + HOST_EM_CTL);
985 if (em_ctl & EM_CTL_TM) {
986 spin_unlock_irqrestore(ap->lock, flags);
987 return -EBUSY;
988 }
989
Harry Zhang008dbd62010-04-23 17:27:19 +0800990 if (hpriv->em_msg_type & EM_MSG_TYPE_LED) {
991 /*
992 * create message header - this is all zero except for
993 * the message size, which is 4 bytes.
994 */
995 message[0] |= (4 << 8);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400996
Harry Zhang008dbd62010-04-23 17:27:19 +0800997 /* ignore 0:4 of byte zero, fill in port info yourself */
998 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -0400999
Harry Zhang008dbd62010-04-23 17:27:19 +08001000 /* write message to EM_LOC */
1001 writel(message[0], mmio + hpriv->em_loc);
1002 writel(message[1], mmio + hpriv->em_loc+4);
1003
1004 /*
1005 * tell hardware to transmit the message
1006 */
1007 writel(em_ctl | EM_CTL_TM, mmio + HOST_EM_CTL);
1008 }
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001009
1010 /* save off new led state for port/slot */
1011 emp->led_state = state;
1012
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001013 spin_unlock_irqrestore(ap->lock, flags);
1014 return size;
1015}
1016
1017static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
1018{
1019 struct ahci_port_priv *pp = ap->private_data;
1020 struct ata_link *link;
1021 struct ahci_em_priv *emp;
1022 int rc = 0;
1023
1024 ata_for_each_link(link, ap, EDGE) {
1025 emp = &pp->em_priv[link->pmp];
1026 rc += sprintf(buf, "%lx\n", emp->led_state);
1027 }
1028 return rc;
1029}
1030
1031static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
1032 size_t size)
1033{
1034 int state;
1035 int pmp;
1036 struct ahci_port_priv *pp = ap->private_data;
1037 struct ahci_em_priv *emp;
1038
1039 state = simple_strtoul(buf, NULL, 0);
1040
1041 /* get the slot number from the message */
1042 pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
1043 if (pmp < EM_MAX_SLOTS)
1044 emp = &pp->em_priv[pmp];
1045 else
1046 return -EINVAL;
1047
1048 /* mask off the activity bits if we are in sw_activity
1049 * mode, user should turn off sw_activity before setting
1050 * activity led through em_message
1051 */
1052 if (emp->blink_policy)
1053 state &= ~EM_MSG_LED_VALUE_ACTIVITY;
1054
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001055 return ap->ops->transmit_led_message(ap, state, size);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001056}
1057
1058static ssize_t ahci_activity_store(struct ata_device *dev, enum sw_activity val)
1059{
1060 struct ata_link *link = dev->link;
1061 struct ata_port *ap = link->ap;
1062 struct ahci_port_priv *pp = ap->private_data;
1063 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1064 u32 port_led_state = emp->led_state;
1065
1066 /* save the desired Activity LED behavior */
1067 if (val == OFF) {
1068 /* clear LFLAG */
1069 link->flags &= ~(ATA_LFLAG_SW_ACTIVITY);
1070
1071 /* set the LED to OFF */
1072 port_led_state &= EM_MSG_LED_VALUE_OFF;
1073 port_led_state |= (ap->port_no | (link->pmp << 8));
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001074 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001075 } else {
1076 link->flags |= ATA_LFLAG_SW_ACTIVITY;
1077 if (val == BLINK_OFF) {
1078 /* set LED to ON for idle */
1079 port_led_state &= EM_MSG_LED_VALUE_OFF;
1080 port_led_state |= (ap->port_no | (link->pmp << 8));
1081 port_led_state |= EM_MSG_LED_VALUE_ON; /* check this */
Mark Langsdorf439d7a32013-05-30 15:17:30 -05001082 ap->ops->transmit_led_message(ap, port_led_state, 4);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001083 }
1084 }
1085 emp->blink_policy = val;
1086 return 0;
1087}
1088
1089static ssize_t ahci_activity_show(struct ata_device *dev, char *buf)
1090{
1091 struct ata_link *link = dev->link;
1092 struct ata_port *ap = link->ap;
1093 struct ahci_port_priv *pp = ap->private_data;
1094 struct ahci_em_priv *emp = &pp->em_priv[link->pmp];
1095
1096 /* display the saved value of activity behavior for this
1097 * disk.
1098 */
1099 return sprintf(buf, "%d\n", emp->blink_policy);
1100}
1101
1102static void ahci_port_init(struct device *dev, struct ata_port *ap,
1103 int port_no, void __iomem *mmio,
1104 void __iomem *port_mmio)
1105{
1106 const char *emsg = NULL;
1107 int rc;
1108 u32 tmp;
1109
1110 /* make sure port is not active */
1111 rc = ahci_deinit_port(ap, &emsg);
1112 if (rc)
1113 dev_warn(dev, "%s (%d)\n", emsg, rc);
1114
1115 /* clear SError */
1116 tmp = readl(port_mmio + PORT_SCR_ERR);
1117 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
1118 writel(tmp, port_mmio + PORT_SCR_ERR);
1119
1120 /* clear port IRQ */
1121 tmp = readl(port_mmio + PORT_IRQ_STAT);
1122 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
1123 if (tmp)
1124 writel(tmp, port_mmio + PORT_IRQ_STAT);
1125
1126 writel(1 << port_no, mmio + HOST_IRQ_STAT);
1127}
1128
1129void ahci_init_controller(struct ata_host *host)
1130{
1131 struct ahci_host_priv *hpriv = host->private_data;
1132 void __iomem *mmio = hpriv->mmio;
1133 int i;
1134 void __iomem *port_mmio;
1135 u32 tmp;
1136
1137 for (i = 0; i < host->n_ports; i++) {
1138 struct ata_port *ap = host->ports[i];
1139
1140 port_mmio = ahci_port_base(ap);
1141 if (ata_port_is_dummy(ap))
1142 continue;
1143
1144 ahci_port_init(host->dev, ap, i, mmio, port_mmio);
1145 }
1146
1147 tmp = readl(mmio + HOST_CTL);
1148 VPRINTK("HOST_CTL 0x%x\n", tmp);
1149 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
1150 tmp = readl(mmio + HOST_CTL);
1151 VPRINTK("HOST_CTL 0x%x\n", tmp);
1152}
1153EXPORT_SYMBOL_GPL(ahci_init_controller);
1154
1155static void ahci_dev_config(struct ata_device *dev)
1156{
1157 struct ahci_host_priv *hpriv = dev->link->ap->host->private_data;
1158
1159 if (hpriv->flags & AHCI_HFLAG_SECT255) {
1160 dev->max_sectors = 255;
Joe Perchesa9a79df2011-04-15 15:51:59 -07001161 ata_dev_info(dev,
1162 "SB600 AHCI: limiting to 255 sectors per cmd\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001163 }
1164}
1165
Rob Herringbbb4ab42012-08-17 09:51:50 -05001166unsigned int ahci_dev_classify(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001167{
1168 void __iomem *port_mmio = ahci_port_base(ap);
1169 struct ata_taskfile tf;
1170 u32 tmp;
1171
1172 tmp = readl(port_mmio + PORT_SIG);
1173 tf.lbah = (tmp >> 24) & 0xff;
1174 tf.lbam = (tmp >> 16) & 0xff;
1175 tf.lbal = (tmp >> 8) & 0xff;
1176 tf.nsect = (tmp) & 0xff;
1177
1178 return ata_dev_classify(&tf);
1179}
Rob Herringbbb4ab42012-08-17 09:51:50 -05001180EXPORT_SYMBOL_GPL(ahci_dev_classify);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001181
David Milburn02cdfcf2010-11-12 15:38:21 -06001182void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag,
1183 u32 opts)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001184{
1185 dma_addr_t cmd_tbl_dma;
1186
1187 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
1188
1189 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
1190 pp->cmd_slot[tag].status = 0;
1191 pp->cmd_slot[tag].tbl_addr = cpu_to_le32(cmd_tbl_dma & 0xffffffff);
1192 pp->cmd_slot[tag].tbl_addr_hi = cpu_to_le32((cmd_tbl_dma >> 16) >> 16);
1193}
David Milburn02cdfcf2010-11-12 15:38:21 -06001194EXPORT_SYMBOL_GPL(ahci_fill_cmd_slot);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001195
1196int ahci_kick_engine(struct ata_port *ap)
1197{
1198 void __iomem *port_mmio = ahci_port_base(ap);
1199 struct ahci_host_priv *hpriv = ap->host->private_data;
1200 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1201 u32 tmp;
1202 int busy, rc;
1203
1204 /* stop engine */
1205 rc = ahci_stop_engine(ap);
1206 if (rc)
1207 goto out_restart;
1208
1209 /* need to do CLO?
1210 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1211 */
1212 busy = status & (ATA_BUSY | ATA_DRQ);
1213 if (!busy && !sata_pmp_attached(ap)) {
1214 rc = 0;
1215 goto out_restart;
1216 }
1217
1218 if (!(hpriv->cap & HOST_CAP_CLO)) {
1219 rc = -EOPNOTSUPP;
1220 goto out_restart;
1221 }
1222
1223 /* perform CLO */
1224 tmp = readl(port_mmio + PORT_CMD);
1225 tmp |= PORT_CMD_CLO;
1226 writel(tmp, port_mmio + PORT_CMD);
1227
1228 rc = 0;
Tejun Heo97750ce2010-09-06 17:56:29 +02001229 tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001230 PORT_CMD_CLO, PORT_CMD_CLO, 1, 500);
1231 if (tmp & PORT_CMD_CLO)
1232 rc = -EIO;
1233
1234 /* restart engine */
1235 out_restart:
1236 ahci_start_engine(ap);
1237 return rc;
1238}
1239EXPORT_SYMBOL_GPL(ahci_kick_engine);
1240
1241static int ahci_exec_polled_cmd(struct ata_port *ap, int pmp,
1242 struct ata_taskfile *tf, int is_cmd, u16 flags,
1243 unsigned long timeout_msec)
1244{
1245 const u32 cmd_fis_len = 5; /* five dwords */
1246 struct ahci_port_priv *pp = ap->private_data;
1247 void __iomem *port_mmio = ahci_port_base(ap);
1248 u8 *fis = pp->cmd_tbl;
1249 u32 tmp;
1250
1251 /* prep the command */
1252 ata_tf_to_fis(tf, pmp, is_cmd, fis);
1253 ahci_fill_cmd_slot(pp, 0, cmd_fis_len | flags | (pmp << 12));
1254
1255 /* issue & wait */
1256 writel(1, port_mmio + PORT_CMD_ISSUE);
1257
1258 if (timeout_msec) {
Tejun Heo97750ce2010-09-06 17:56:29 +02001259 tmp = ata_wait_register(ap, port_mmio + PORT_CMD_ISSUE,
1260 0x1, 0x1, 1, timeout_msec);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001261 if (tmp & 0x1) {
1262 ahci_kick_engine(ap);
1263 return -EBUSY;
1264 }
1265 } else
1266 readl(port_mmio + PORT_CMD_ISSUE); /* flush */
1267
1268 return 0;
1269}
1270
1271int ahci_do_softreset(struct ata_link *link, unsigned int *class,
1272 int pmp, unsigned long deadline,
1273 int (*check_ready)(struct ata_link *link))
1274{
1275 struct ata_port *ap = link->ap;
1276 struct ahci_host_priv *hpriv = ap->host->private_data;
xiangliang yu89dafa22013-10-27 08:03:04 -04001277 struct ahci_port_priv *pp = ap->private_data;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001278 const char *reason = NULL;
1279 unsigned long now, msecs;
1280 struct ata_taskfile tf;
xiangliang yu89dafa22013-10-27 08:03:04 -04001281 bool fbs_disabled = false;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001282 int rc;
1283
1284 DPRINTK("ENTER\n");
1285
1286 /* prepare for SRST (AHCI-1.1 10.4.1) */
1287 rc = ahci_kick_engine(ap);
1288 if (rc && rc != -EOPNOTSUPP)
Joe Perchesa9a79df2011-04-15 15:51:59 -07001289 ata_link_warn(link, "failed to reset engine (errno=%d)\n", rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001290
xiangliang yu89dafa22013-10-27 08:03:04 -04001291 /*
1292 * According to AHCI-1.2 9.3.9: if FBS is enable, software shall
1293 * clear PxFBS.EN to '0' prior to issuing software reset to devices
1294 * that is attached to port multiplier.
1295 */
1296 if (!ata_is_host_link(link) && pp->fbs_enabled) {
1297 ahci_disable_fbs(ap);
1298 fbs_disabled = true;
1299 }
1300
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001301 ata_tf_init(link->device, &tf);
1302
1303 /* issue the first D2H Register FIS */
1304 msecs = 0;
1305 now = jiffies;
Tejun Heof1f5a802010-08-27 11:09:15 +02001306 if (time_after(deadline, now))
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001307 msecs = jiffies_to_msecs(deadline - now);
1308
1309 tf.ctl |= ATA_SRST;
1310 if (ahci_exec_polled_cmd(ap, pmp, &tf, 0,
1311 AHCI_CMD_RESET | AHCI_CMD_CLR_BUSY, msecs)) {
1312 rc = -EIO;
1313 reason = "1st FIS failed";
1314 goto fail;
1315 }
1316
1317 /* spec says at least 5us, but be generous and sleep for 1ms */
Tejun Heo97750ce2010-09-06 17:56:29 +02001318 ata_msleep(ap, 1);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001319
1320 /* issue the second D2H Register FIS */
1321 tf.ctl &= ~ATA_SRST;
1322 ahci_exec_polled_cmd(ap, pmp, &tf, 0, 0, 0);
1323
1324 /* wait for link to become ready */
1325 rc = ata_wait_after_reset(link, deadline, check_ready);
1326 if (rc == -EBUSY && hpriv->flags & AHCI_HFLAG_SRST_TOUT_IS_OFFLINE) {
1327 /*
1328 * Workaround for cases where link online status can't
1329 * be trusted. Treat device readiness timeout as link
1330 * offline.
1331 */
Joe Perchesa9a79df2011-04-15 15:51:59 -07001332 ata_link_info(link, "device not ready, treating as offline\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001333 *class = ATA_DEV_NONE;
1334 } else if (rc) {
1335 /* link occupied, -ENODEV too is an error */
1336 reason = "device not ready";
1337 goto fail;
1338 } else
1339 *class = ahci_dev_classify(ap);
1340
xiangliang yu89dafa22013-10-27 08:03:04 -04001341 /* re-enable FBS if disabled before */
1342 if (fbs_disabled)
1343 ahci_enable_fbs(ap);
1344
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001345 DPRINTK("EXIT, class=%u\n", *class);
1346 return 0;
1347
1348 fail:
Joe Perchesa9a79df2011-04-15 15:51:59 -07001349 ata_link_err(link, "softreset failed (%s)\n", reason);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001350 return rc;
1351}
1352
1353int ahci_check_ready(struct ata_link *link)
1354{
1355 void __iomem *port_mmio = ahci_port_base(link->ap);
1356 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1357
1358 return ata_check_ready(status);
1359}
1360EXPORT_SYMBOL_GPL(ahci_check_ready);
1361
1362static int ahci_softreset(struct ata_link *link, unsigned int *class,
1363 unsigned long deadline)
1364{
1365 int pmp = sata_srst_pmp(link);
1366
1367 DPRINTK("ENTER\n");
1368
1369 return ahci_do_softreset(link, class, pmp, deadline, ahci_check_ready);
1370}
1371EXPORT_SYMBOL_GPL(ahci_do_softreset);
1372
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001373static int ahci_bad_pmp_check_ready(struct ata_link *link)
1374{
1375 void __iomem *port_mmio = ahci_port_base(link->ap);
1376 u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
1377 u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
1378
1379 /*
1380 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1381 * which can save timeout delay.
1382 */
1383 if (irq_status & PORT_IRQ_BAD_PMP)
1384 return -EIO;
1385
1386 return ata_check_ready(status);
1387}
1388
Daeseok Youn35186d02014-02-20 08:34:27 +09001389static int ahci_pmp_retry_softreset(struct ata_link *link, unsigned int *class,
1390 unsigned long deadline)
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001391{
1392 struct ata_port *ap = link->ap;
1393 void __iomem *port_mmio = ahci_port_base(ap);
1394 int pmp = sata_srst_pmp(link);
1395 int rc;
1396 u32 irq_sts;
1397
1398 DPRINTK("ENTER\n");
1399
1400 rc = ahci_do_softreset(link, class, pmp, deadline,
1401 ahci_bad_pmp_check_ready);
1402
1403 /*
1404 * Soft reset fails with IPMS set when PMP is enabled but
1405 * SATA HDD/ODD is connected to SATA port, do soft reset
1406 * again to port 0.
1407 */
1408 if (rc == -EIO) {
1409 irq_sts = readl(port_mmio + PORT_IRQ_STAT);
1410 if (irq_sts & PORT_IRQ_BAD_PMP) {
Wei Yongjun39f80ac2012-12-03 23:39:31 -05001411 ata_link_warn(link,
Yuan-Hsin Chen345347c2011-06-21 17:17:38 +08001412 "applying PMP SRST workaround "
1413 "and retrying\n");
1414 rc = ahci_do_softreset(link, class, 0, deadline,
1415 ahci_check_ready);
1416 }
1417 }
1418
1419 return rc;
1420}
1421
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001422static int ahci_hardreset(struct ata_link *link, unsigned int *class,
1423 unsigned long deadline)
1424{
1425 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
1426 struct ata_port *ap = link->ap;
1427 struct ahci_port_priv *pp = ap->private_data;
1428 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
1429 struct ata_taskfile tf;
1430 bool online;
1431 int rc;
1432
1433 DPRINTK("ENTER\n");
1434
1435 ahci_stop_engine(ap);
1436
1437 /* clear D2H reception area to properly wait for D2H FIS */
1438 ata_tf_init(link->device, &tf);
Sergei Shtylyov9bbb1b02013-06-23 01:39:39 +04001439 tf.command = ATA_BUSY;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001440 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
1441
1442 rc = sata_link_hardreset(link, timing, deadline, &online,
1443 ahci_check_ready);
1444
1445 ahci_start_engine(ap);
1446
1447 if (online)
1448 *class = ahci_dev_classify(ap);
1449
1450 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
1451 return rc;
1452}
1453
1454static void ahci_postreset(struct ata_link *link, unsigned int *class)
1455{
1456 struct ata_port *ap = link->ap;
1457 void __iomem *port_mmio = ahci_port_base(ap);
1458 u32 new_tmp, tmp;
1459
1460 ata_std_postreset(link, class);
1461
1462 /* Make sure port's ATAPI bit is set appropriately */
1463 new_tmp = tmp = readl(port_mmio + PORT_CMD);
1464 if (*class == ATA_DEV_ATAPI)
1465 new_tmp |= PORT_CMD_ATAPI;
1466 else
1467 new_tmp &= ~PORT_CMD_ATAPI;
1468 if (new_tmp != tmp) {
1469 writel(new_tmp, port_mmio + PORT_CMD);
1470 readl(port_mmio + PORT_CMD); /* flush */
1471 }
1472}
1473
1474static unsigned int ahci_fill_sg(struct ata_queued_cmd *qc, void *cmd_tbl)
1475{
1476 struct scatterlist *sg;
1477 struct ahci_sg *ahci_sg = cmd_tbl + AHCI_CMD_TBL_HDR_SZ;
1478 unsigned int si;
1479
1480 VPRINTK("ENTER\n");
1481
1482 /*
1483 * Next, the S/G list.
1484 */
1485 for_each_sg(qc->sg, sg, qc->n_elem, si) {
1486 dma_addr_t addr = sg_dma_address(sg);
1487 u32 sg_len = sg_dma_len(sg);
1488
1489 ahci_sg[si].addr = cpu_to_le32(addr & 0xffffffff);
1490 ahci_sg[si].addr_hi = cpu_to_le32((addr >> 16) >> 16);
1491 ahci_sg[si].flags_size = cpu_to_le32(sg_len - 1);
1492 }
1493
1494 return si;
1495}
1496
1497static int ahci_pmp_qc_defer(struct ata_queued_cmd *qc)
1498{
1499 struct ata_port *ap = qc->ap;
1500 struct ahci_port_priv *pp = ap->private_data;
1501
1502 if (!sata_pmp_attached(ap) || pp->fbs_enabled)
1503 return ata_std_qc_defer(qc);
1504 else
1505 return sata_pmp_qc_defer_cmd_switch(qc);
1506}
1507
1508static void ahci_qc_prep(struct ata_queued_cmd *qc)
1509{
1510 struct ata_port *ap = qc->ap;
1511 struct ahci_port_priv *pp = ap->private_data;
1512 int is_atapi = ata_is_atapi(qc->tf.protocol);
1513 void *cmd_tbl;
1514 u32 opts;
1515 const u32 cmd_fis_len = 5; /* five dwords */
1516 unsigned int n_elem;
1517
1518 /*
1519 * Fill in command table information. First, the header,
1520 * a SATA Register - Host to Device command FIS.
1521 */
1522 cmd_tbl = pp->cmd_tbl + qc->tag * AHCI_CMD_TBL_SZ;
1523
1524 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, cmd_tbl);
1525 if (is_atapi) {
1526 memset(cmd_tbl + AHCI_CMD_TBL_CDB, 0, 32);
1527 memcpy(cmd_tbl + AHCI_CMD_TBL_CDB, qc->cdb, qc->dev->cdb_len);
1528 }
1529
1530 n_elem = 0;
1531 if (qc->flags & ATA_QCFLAG_DMAMAP)
1532 n_elem = ahci_fill_sg(qc, cmd_tbl);
1533
1534 /*
1535 * Fill in command slot information.
1536 */
1537 opts = cmd_fis_len | n_elem << 16 | (qc->dev->link->pmp << 12);
1538 if (qc->tf.flags & ATA_TFLAG_WRITE)
1539 opts |= AHCI_CMD_WRITE;
1540 if (is_atapi)
1541 opts |= AHCI_CMD_ATAPI | AHCI_CMD_PREFETCH;
1542
1543 ahci_fill_cmd_slot(pp, qc->tag, opts);
1544}
1545
1546static void ahci_fbs_dec_intr(struct ata_port *ap)
1547{
1548 struct ahci_port_priv *pp = ap->private_data;
1549 void __iomem *port_mmio = ahci_port_base(ap);
1550 u32 fbs = readl(port_mmio + PORT_FBS);
1551 int retries = 3;
1552
1553 DPRINTK("ENTER\n");
1554 BUG_ON(!pp->fbs_enabled);
1555
1556 /* time to wait for DEC is not specified by AHCI spec,
1557 * add a retry loop for safety.
1558 */
1559 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS);
1560 fbs = readl(port_mmio + PORT_FBS);
1561 while ((fbs & PORT_FBS_DEC) && retries--) {
1562 udelay(1);
1563 fbs = readl(port_mmio + PORT_FBS);
1564 }
1565
1566 if (fbs & PORT_FBS_DEC)
Joe Perchesa44fec12011-04-15 15:51:58 -07001567 dev_err(ap->host->dev, "failed to clear device error\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001568}
1569
1570static void ahci_error_intr(struct ata_port *ap, u32 irq_stat)
1571{
1572 struct ahci_host_priv *hpriv = ap->host->private_data;
1573 struct ahci_port_priv *pp = ap->private_data;
1574 struct ata_eh_info *host_ehi = &ap->link.eh_info;
1575 struct ata_link *link = NULL;
1576 struct ata_queued_cmd *active_qc;
1577 struct ata_eh_info *active_ehi;
1578 bool fbs_need_dec = false;
1579 u32 serror;
1580
1581 /* determine active link with error */
1582 if (pp->fbs_enabled) {
1583 void __iomem *port_mmio = ahci_port_base(ap);
1584 u32 fbs = readl(port_mmio + PORT_FBS);
1585 int pmp = fbs >> PORT_FBS_DWE_OFFSET;
1586
Shane Huang912b9ac2013-06-08 16:00:16 +08001587 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links)) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001588 link = &ap->pmp_link[pmp];
1589 fbs_need_dec = true;
1590 }
1591
1592 } else
1593 ata_for_each_link(link, ap, EDGE)
1594 if (ata_link_active(link))
1595 break;
1596
1597 if (!link)
1598 link = &ap->link;
1599
1600 active_qc = ata_qc_from_tag(ap, link->active_tag);
1601 active_ehi = &link->eh_info;
1602
1603 /* record irq stat */
1604 ata_ehi_clear_desc(host_ehi);
1605 ata_ehi_push_desc(host_ehi, "irq_stat 0x%08x", irq_stat);
1606
1607 /* AHCI needs SError cleared; otherwise, it might lock up */
1608 ahci_scr_read(&ap->link, SCR_ERROR, &serror);
1609 ahci_scr_write(&ap->link, SCR_ERROR, serror);
1610 host_ehi->serror |= serror;
1611
1612 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
1613 if (hpriv->flags & AHCI_HFLAG_IGN_IRQ_IF_ERR)
1614 irq_stat &= ~PORT_IRQ_IF_ERR;
1615
1616 if (irq_stat & PORT_IRQ_TF_ERR) {
1617 /* If qc is active, charge it; otherwise, the active
1618 * link. There's no active qc on NCQ errors. It will
1619 * be determined by EH by reading log page 10h.
1620 */
1621 if (active_qc)
1622 active_qc->err_mask |= AC_ERR_DEV;
1623 else
1624 active_ehi->err_mask |= AC_ERR_DEV;
1625
1626 if (hpriv->flags & AHCI_HFLAG_IGN_SERR_INTERNAL)
1627 host_ehi->serror &= ~SERR_INTERNAL;
1628 }
1629
1630 if (irq_stat & PORT_IRQ_UNK_FIS) {
1631 u32 *unk = (u32 *)(pp->rx_fis + RX_FIS_UNK);
1632
1633 active_ehi->err_mask |= AC_ERR_HSM;
1634 active_ehi->action |= ATA_EH_RESET;
1635 ata_ehi_push_desc(active_ehi,
1636 "unknown FIS %08x %08x %08x %08x" ,
1637 unk[0], unk[1], unk[2], unk[3]);
1638 }
1639
1640 if (sata_pmp_attached(ap) && (irq_stat & PORT_IRQ_BAD_PMP)) {
1641 active_ehi->err_mask |= AC_ERR_HSM;
1642 active_ehi->action |= ATA_EH_RESET;
1643 ata_ehi_push_desc(active_ehi, "incorrect PMP");
1644 }
1645
1646 if (irq_stat & (PORT_IRQ_HBUS_ERR | PORT_IRQ_HBUS_DATA_ERR)) {
1647 host_ehi->err_mask |= AC_ERR_HOST_BUS;
1648 host_ehi->action |= ATA_EH_RESET;
1649 ata_ehi_push_desc(host_ehi, "host bus error");
1650 }
1651
1652 if (irq_stat & PORT_IRQ_IF_ERR) {
1653 if (fbs_need_dec)
1654 active_ehi->err_mask |= AC_ERR_DEV;
1655 else {
1656 host_ehi->err_mask |= AC_ERR_ATA_BUS;
1657 host_ehi->action |= ATA_EH_RESET;
1658 }
1659
1660 ata_ehi_push_desc(host_ehi, "interface fatal error");
1661 }
1662
1663 if (irq_stat & (PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)) {
1664 ata_ehi_hotplugged(host_ehi);
1665 ata_ehi_push_desc(host_ehi, "%s",
1666 irq_stat & PORT_IRQ_CONNECT ?
1667 "connection status changed" : "PHY RDY changed");
1668 }
1669
1670 /* okay, let's hand over to EH */
1671
1672 if (irq_stat & PORT_IRQ_FREEZE)
1673 ata_port_freeze(ap);
1674 else if (fbs_need_dec) {
1675 ata_link_abort(link);
1676 ahci_fbs_dec_intr(ap);
1677 } else
1678 ata_port_abort(ap);
1679}
1680
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001681static void ahci_handle_port_interrupt(struct ata_port *ap,
1682 void __iomem *port_mmio, u32 status)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001683{
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001684 struct ata_eh_info *ehi = &ap->link.eh_info;
1685 struct ahci_port_priv *pp = ap->private_data;
1686 struct ahci_host_priv *hpriv = ap->host->private_data;
1687 int resetting = !!(ap->pflags & ATA_PFLAG_RESETTING);
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001688 u32 qc_active = 0;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001689 int rc;
1690
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001691 /* ignore BAD_PMP while resetting */
1692 if (unlikely(resetting))
1693 status &= ~PORT_IRQ_BAD_PMP;
1694
Tejun Heo6b7ae952010-09-01 17:50:06 +02001695 /* if LPM is enabled, PHYRDY doesn't mean anything */
1696 if (ap->link.lpm_policy > ATA_LPM_MAX_POWER) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001697 status &= ~PORT_IRQ_PHYRDY;
Tejun Heo6b7ae952010-09-01 17:50:06 +02001698 ahci_scr_write(&ap->link, SCR_ERROR, SERR_PHYRDY_CHG);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001699 }
1700
1701 if (unlikely(status & PORT_IRQ_ERROR)) {
1702 ahci_error_intr(ap, status);
1703 return;
1704 }
1705
1706 if (status & PORT_IRQ_SDB_FIS) {
1707 /* If SNotification is available, leave notification
1708 * handling to sata_async_notification(). If not,
1709 * emulate it by snooping SDB FIS RX area.
1710 *
1711 * Snooping FIS RX area is probably cheaper than
1712 * poking SNotification but some constrollers which
1713 * implement SNotification, ICH9 for example, don't
1714 * store AN SDB FIS into receive area.
1715 */
1716 if (hpriv->cap & HOST_CAP_SNTF)
1717 sata_async_notification(ap);
1718 else {
1719 /* If the 'N' bit in word 0 of the FIS is set,
1720 * we just received asynchronous notification.
1721 * Tell libata about it.
1722 *
1723 * Lack of SNotification should not appear in
1724 * ahci 1.2, so the workaround is unnecessary
1725 * when FBS is enabled.
1726 */
1727 if (pp->fbs_enabled)
1728 WARN_ON_ONCE(1);
1729 else {
1730 const __le32 *f = pp->rx_fis + RX_FIS_SDB;
1731 u32 f0 = le32_to_cpu(f[0]);
1732 if (f0 & (1 << 15))
1733 sata_async_notification(ap);
1734 }
1735 }
1736 }
1737
1738 /* pp->active_link is not reliable once FBS is enabled, both
1739 * PORT_SCR_ACT and PORT_CMD_ISSUE should be checked because
1740 * NCQ and non-NCQ commands may be in flight at the same time.
1741 */
1742 if (pp->fbs_enabled) {
1743 if (ap->qc_active) {
1744 qc_active = readl(port_mmio + PORT_SCR_ACT);
1745 qc_active |= readl(port_mmio + PORT_CMD_ISSUE);
1746 }
1747 } else {
1748 /* pp->active_link is valid iff any command is in flight */
1749 if (ap->qc_active && pp->active_link->sactive)
1750 qc_active = readl(port_mmio + PORT_SCR_ACT);
1751 else
1752 qc_active = readl(port_mmio + PORT_CMD_ISSUE);
1753 }
1754
1755
1756 rc = ata_qc_complete_multiple(ap, qc_active);
1757
1758 /* while resetting, invalid completions are expected */
1759 if (unlikely(rc < 0 && !resetting)) {
1760 ehi->err_mask |= AC_ERR_HSM;
1761 ehi->action |= ATA_EH_RESET;
1762 ata_port_freeze(ap);
1763 }
1764}
1765
Rashika Kheria73993392013-12-14 19:40:21 +05301766static void ahci_port_intr(struct ata_port *ap)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001767{
1768 void __iomem *port_mmio = ahci_port_base(ap);
1769 u32 status;
1770
1771 status = readl(port_mmio + PORT_IRQ_STAT);
1772 writel(status, port_mmio + PORT_IRQ_STAT);
1773
1774 ahci_handle_port_interrupt(ap, port_mmio, status);
1775}
1776
1777irqreturn_t ahci_thread_fn(int irq, void *dev_instance)
1778{
1779 struct ata_port *ap = dev_instance;
1780 struct ahci_port_priv *pp = ap->private_data;
1781 void __iomem *port_mmio = ahci_port_base(ap);
1782 unsigned long flags;
1783 u32 status;
1784
1785 spin_lock_irqsave(&ap->host->lock, flags);
1786 status = pp->intr_status;
1787 if (status)
1788 pp->intr_status = 0;
1789 spin_unlock_irqrestore(&ap->host->lock, flags);
1790
1791 spin_lock_bh(ap->lock);
1792 ahci_handle_port_interrupt(ap, port_mmio, status);
1793 spin_unlock_bh(ap->lock);
1794
1795 return IRQ_HANDLED;
1796}
1797EXPORT_SYMBOL_GPL(ahci_thread_fn);
1798
Rashika Kheria73993392013-12-14 19:40:21 +05301799static void ahci_hw_port_interrupt(struct ata_port *ap)
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01001800{
1801 void __iomem *port_mmio = ahci_port_base(ap);
1802 struct ahci_port_priv *pp = ap->private_data;
1803 u32 status;
1804
1805 status = readl(port_mmio + PORT_IRQ_STAT);
1806 writel(status, port_mmio + PORT_IRQ_STAT);
1807
1808 pp->intr_status |= status;
1809}
1810
1811irqreturn_t ahci_hw_interrupt(int irq, void *dev_instance)
1812{
1813 struct ata_port *ap_this = dev_instance;
1814 struct ahci_port_priv *pp = ap_this->private_data;
1815 struct ata_host *host = ap_this->host;
1816 struct ahci_host_priv *hpriv = host->private_data;
1817 void __iomem *mmio = hpriv->mmio;
1818 unsigned int i;
1819 u32 irq_stat, irq_masked;
1820
1821 VPRINTK("ENTER\n");
1822
1823 spin_lock(&host->lock);
1824
1825 irq_stat = readl(mmio + HOST_IRQ_STAT);
1826
1827 if (!irq_stat) {
1828 u32 status = pp->intr_status;
1829
1830 spin_unlock(&host->lock);
1831
1832 VPRINTK("EXIT\n");
1833
1834 return status ? IRQ_WAKE_THREAD : IRQ_NONE;
1835 }
1836
1837 irq_masked = irq_stat & hpriv->port_map;
1838
1839 for (i = 0; i < host->n_ports; i++) {
1840 struct ata_port *ap;
1841
1842 if (!(irq_masked & (1 << i)))
1843 continue;
1844
1845 ap = host->ports[i];
1846 if (ap) {
1847 ahci_hw_port_interrupt(ap);
1848 VPRINTK("port %u\n", i);
1849 } else {
1850 VPRINTK("port %u (no irq)\n", i);
1851 if (ata_ratelimit())
1852 dev_warn(host->dev,
1853 "interrupt on disabled port %u\n", i);
1854 }
1855 }
1856
1857 writel(irq_stat, mmio + HOST_IRQ_STAT);
1858
1859 spin_unlock(&host->lock);
1860
1861 VPRINTK("EXIT\n");
1862
1863 return IRQ_WAKE_THREAD;
1864}
1865EXPORT_SYMBOL_GPL(ahci_hw_interrupt);
1866
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001867irqreturn_t ahci_interrupt(int irq, void *dev_instance)
1868{
1869 struct ata_host *host = dev_instance;
1870 struct ahci_host_priv *hpriv;
1871 unsigned int i, handled = 0;
1872 void __iomem *mmio;
1873 u32 irq_stat, irq_masked;
1874
1875 VPRINTK("ENTER\n");
1876
1877 hpriv = host->private_data;
1878 mmio = hpriv->mmio;
1879
1880 /* sigh. 0xffffffff is a valid return from h/w */
1881 irq_stat = readl(mmio + HOST_IRQ_STAT);
1882 if (!irq_stat)
1883 return IRQ_NONE;
1884
1885 irq_masked = irq_stat & hpriv->port_map;
1886
1887 spin_lock(&host->lock);
1888
1889 for (i = 0; i < host->n_ports; i++) {
1890 struct ata_port *ap;
1891
1892 if (!(irq_masked & (1 << i)))
1893 continue;
1894
1895 ap = host->ports[i];
1896 if (ap) {
1897 ahci_port_intr(ap);
1898 VPRINTK("port %u\n", i);
1899 } else {
1900 VPRINTK("port %u (no irq)\n", i);
1901 if (ata_ratelimit())
Joe Perchesa44fec12011-04-15 15:51:58 -07001902 dev_warn(host->dev,
1903 "interrupt on disabled port %u\n", i);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001904 }
1905
1906 handled = 1;
1907 }
1908
1909 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
1910 * it should be cleared after all the port events are cleared;
1911 * otherwise, it will raise a spurious interrupt after each
1912 * valid one. Please read section 10.6.2 of ahci 1.1 for more
1913 * information.
1914 *
1915 * Also, use the unmasked value to clear interrupt as spurious
1916 * pending event on a dummy port might cause screaming IRQ.
1917 */
1918 writel(irq_stat, mmio + HOST_IRQ_STAT);
1919
1920 spin_unlock(&host->lock);
1921
1922 VPRINTK("EXIT\n");
1923
1924 return IRQ_RETVAL(handled);
1925}
1926EXPORT_SYMBOL_GPL(ahci_interrupt);
1927
1928static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
1929{
1930 struct ata_port *ap = qc->ap;
1931 void __iomem *port_mmio = ahci_port_base(ap);
1932 struct ahci_port_priv *pp = ap->private_data;
1933
1934 /* Keep track of the currently active link. It will be used
1935 * in completion path to determine whether NCQ phase is in
1936 * progress.
1937 */
1938 pp->active_link = qc->dev->link;
1939
1940 if (qc->tf.protocol == ATA_PROT_NCQ)
1941 writel(1 << qc->tag, port_mmio + PORT_SCR_ACT);
1942
1943 if (pp->fbs_enabled && pp->fbs_last_dev != qc->dev->link->pmp) {
1944 u32 fbs = readl(port_mmio + PORT_FBS);
1945 fbs &= ~(PORT_FBS_DEV_MASK | PORT_FBS_DEC);
1946 fbs |= qc->dev->link->pmp << PORT_FBS_DEV_OFFSET;
1947 writel(fbs, port_mmio + PORT_FBS);
1948 pp->fbs_last_dev = qc->dev->link->pmp;
1949 }
1950
1951 writel(1 << qc->tag, port_mmio + PORT_CMD_ISSUE);
1952
1953 ahci_sw_activity(qc->dev->link);
1954
1955 return 0;
1956}
1957
1958static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
1959{
1960 struct ahci_port_priv *pp = qc->ap->private_data;
Tejun Heo6ad60192010-10-15 11:00:08 +02001961 u8 *rx_fis = pp->rx_fis;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001962
1963 if (pp->fbs_enabled)
Tejun Heo6ad60192010-10-15 11:00:08 +02001964 rx_fis += qc->dev->link->pmp * AHCI_RX_FIS_SZ;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001965
Tejun Heo6ad60192010-10-15 11:00:08 +02001966 /*
1967 * After a successful execution of an ATA PIO data-in command,
1968 * the device doesn't send D2H Reg FIS to update the TF and
1969 * the host should take TF and E_Status from the preceding PIO
1970 * Setup FIS.
1971 */
1972 if (qc->tf.protocol == ATA_PROT_PIO && qc->dma_dir == DMA_FROM_DEVICE &&
1973 !(qc->flags & ATA_QCFLAG_FAILED)) {
1974 ata_tf_from_fis(rx_fis + RX_FIS_PIO_SETUP, &qc->result_tf);
1975 qc->result_tf.command = (rx_fis + RX_FIS_PIO_SETUP)[15];
1976 } else
1977 ata_tf_from_fis(rx_fis + RX_FIS_D2H_REG, &qc->result_tf);
1978
Anton Vorontsov365cfa12010-03-28 00:22:14 -04001979 return true;
1980}
1981
1982static void ahci_freeze(struct ata_port *ap)
1983{
1984 void __iomem *port_mmio = ahci_port_base(ap);
1985
1986 /* turn IRQ off */
1987 writel(0, port_mmio + PORT_IRQ_MASK);
1988}
1989
1990static void ahci_thaw(struct ata_port *ap)
1991{
1992 struct ahci_host_priv *hpriv = ap->host->private_data;
1993 void __iomem *mmio = hpriv->mmio;
1994 void __iomem *port_mmio = ahci_port_base(ap);
1995 u32 tmp;
1996 struct ahci_port_priv *pp = ap->private_data;
1997
1998 /* clear IRQ */
1999 tmp = readl(port_mmio + PORT_IRQ_STAT);
2000 writel(tmp, port_mmio + PORT_IRQ_STAT);
2001 writel(1 << ap->port_no, mmio + HOST_IRQ_STAT);
2002
2003 /* turn IRQ back on */
2004 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
2005}
2006
Richard Zhu8b789d82013-10-15 10:44:54 +08002007void ahci_error_handler(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002008{
2009 if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
2010 /* restart engine */
2011 ahci_stop_engine(ap);
2012 ahci_start_engine(ap);
2013 }
2014
2015 sata_pmp_error_handler(ap);
Tejun Heo0ee71952010-06-07 15:15:08 +02002016
2017 if (!ata_dev_enabled(ap->link.device))
2018 ahci_stop_engine(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002019}
Richard Zhu8b789d82013-10-15 10:44:54 +08002020EXPORT_SYMBOL_GPL(ahci_error_handler);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002021
2022static void ahci_post_internal_cmd(struct ata_queued_cmd *qc)
2023{
2024 struct ata_port *ap = qc->ap;
2025
2026 /* make DMA engine forget about the failed command */
2027 if (qc->flags & ATA_QCFLAG_FAILED)
2028 ahci_kick_engine(ap);
2029}
2030
Shane Huang65fe1f02012-09-07 22:40:01 +08002031static void ahci_set_aggressive_devslp(struct ata_port *ap, bool sleep)
2032{
2033 void __iomem *port_mmio = ahci_port_base(ap);
2034 struct ata_device *dev = ap->link.device;
2035 u32 devslp, dm, dito, mdat, deto;
2036 int rc;
2037 unsigned int err_mask;
2038
2039 devslp = readl(port_mmio + PORT_DEVSLP);
2040 if (!(devslp & PORT_DEVSLP_DSP)) {
2041 dev_err(ap->host->dev, "port does not support device sleep\n");
2042 return;
2043 }
2044
2045 /* disable device sleep */
2046 if (!sleep) {
2047 if (devslp & PORT_DEVSLP_ADSE) {
2048 writel(devslp & ~PORT_DEVSLP_ADSE,
2049 port_mmio + PORT_DEVSLP);
2050 err_mask = ata_dev_set_feature(dev,
2051 SETFEATURES_SATA_DISABLE,
2052 SATA_DEVSLP);
2053 if (err_mask && err_mask != AC_ERR_DEV)
2054 ata_dev_warn(dev, "failed to disable DEVSLP\n");
2055 }
2056 return;
2057 }
2058
2059 /* device sleep was already enabled */
2060 if (devslp & PORT_DEVSLP_ADSE)
2061 return;
2062
2063 /* set DITO, MDAT, DETO and enable DevSlp, need to stop engine first */
2064 rc = ahci_stop_engine(ap);
2065 if (rc)
2066 return;
2067
2068 dm = (devslp & PORT_DEVSLP_DM_MASK) >> PORT_DEVSLP_DM_OFFSET;
2069 dito = devslp_idle_timeout / (dm + 1);
2070 if (dito > 0x3ff)
2071 dito = 0x3ff;
2072
2073 /* Use the nominal value 10 ms if the read MDAT is zero,
2074 * the nominal value of DETO is 20 ms.
2075 */
Shane Huang803739d2012-12-17 23:18:59 +08002076 if (dev->devslp_timing[ATA_LOG_DEVSLP_VALID] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002077 ATA_LOG_DEVSLP_VALID_MASK) {
Shane Huang803739d2012-12-17 23:18:59 +08002078 mdat = dev->devslp_timing[ATA_LOG_DEVSLP_MDAT] &
Shane Huang65fe1f02012-09-07 22:40:01 +08002079 ATA_LOG_DEVSLP_MDAT_MASK;
2080 if (!mdat)
2081 mdat = 10;
Shane Huang803739d2012-12-17 23:18:59 +08002082 deto = dev->devslp_timing[ATA_LOG_DEVSLP_DETO];
Shane Huang65fe1f02012-09-07 22:40:01 +08002083 if (!deto)
2084 deto = 20;
2085 } else {
2086 mdat = 10;
2087 deto = 20;
2088 }
2089
2090 devslp |= ((dito << PORT_DEVSLP_DITO_OFFSET) |
2091 (mdat << PORT_DEVSLP_MDAT_OFFSET) |
2092 (deto << PORT_DEVSLP_DETO_OFFSET) |
2093 PORT_DEVSLP_ADSE);
2094 writel(devslp, port_mmio + PORT_DEVSLP);
2095
2096 ahci_start_engine(ap);
2097
2098 /* enable device sleep feature for the drive */
2099 err_mask = ata_dev_set_feature(dev,
2100 SETFEATURES_SATA_ENABLE,
2101 SATA_DEVSLP);
2102 if (err_mask && err_mask != AC_ERR_DEV)
2103 ata_dev_warn(dev, "failed to enable DEVSLP\n");
2104}
2105
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002106static void ahci_enable_fbs(struct ata_port *ap)
2107{
2108 struct ahci_port_priv *pp = ap->private_data;
2109 void __iomem *port_mmio = ahci_port_base(ap);
2110 u32 fbs;
2111 int rc;
2112
2113 if (!pp->fbs_supported)
2114 return;
2115
2116 fbs = readl(port_mmio + PORT_FBS);
2117 if (fbs & PORT_FBS_EN) {
2118 pp->fbs_enabled = true;
2119 pp->fbs_last_dev = -1; /* initialization */
2120 return;
2121 }
2122
2123 rc = ahci_stop_engine(ap);
2124 if (rc)
2125 return;
2126
2127 writel(fbs | PORT_FBS_EN, port_mmio + PORT_FBS);
2128 fbs = readl(port_mmio + PORT_FBS);
2129 if (fbs & PORT_FBS_EN) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002130 dev_info(ap->host->dev, "FBS is enabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002131 pp->fbs_enabled = true;
2132 pp->fbs_last_dev = -1; /* initialization */
2133 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002134 dev_err(ap->host->dev, "Failed to enable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002135
2136 ahci_start_engine(ap);
2137}
2138
2139static void ahci_disable_fbs(struct ata_port *ap)
2140{
2141 struct ahci_port_priv *pp = ap->private_data;
2142 void __iomem *port_mmio = ahci_port_base(ap);
2143 u32 fbs;
2144 int rc;
2145
2146 if (!pp->fbs_supported)
2147 return;
2148
2149 fbs = readl(port_mmio + PORT_FBS);
2150 if ((fbs & PORT_FBS_EN) == 0) {
2151 pp->fbs_enabled = false;
2152 return;
2153 }
2154
2155 rc = ahci_stop_engine(ap);
2156 if (rc)
2157 return;
2158
2159 writel(fbs & ~PORT_FBS_EN, port_mmio + PORT_FBS);
2160 fbs = readl(port_mmio + PORT_FBS);
2161 if (fbs & PORT_FBS_EN)
Joe Perchesa44fec12011-04-15 15:51:58 -07002162 dev_err(ap->host->dev, "Failed to disable FBS\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002163 else {
Joe Perchesa44fec12011-04-15 15:51:58 -07002164 dev_info(ap->host->dev, "FBS is disabled\n");
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002165 pp->fbs_enabled = false;
2166 }
2167
2168 ahci_start_engine(ap);
2169}
2170
2171static void ahci_pmp_attach(struct ata_port *ap)
2172{
2173 void __iomem *port_mmio = ahci_port_base(ap);
2174 struct ahci_port_priv *pp = ap->private_data;
2175 u32 cmd;
2176
2177 cmd = readl(port_mmio + PORT_CMD);
2178 cmd |= PORT_CMD_PMP;
2179 writel(cmd, port_mmio + PORT_CMD);
2180
2181 ahci_enable_fbs(ap);
2182
2183 pp->intr_mask |= PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002184
2185 /*
2186 * We must not change the port interrupt mask register if the
2187 * port is marked frozen, the value in pp->intr_mask will be
2188 * restored later when the port is thawed.
2189 *
2190 * Note that during initialization, the port is marked as
2191 * frozen since the irq handler is not yet registered.
2192 */
2193 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2194 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002195}
2196
2197static void ahci_pmp_detach(struct ata_port *ap)
2198{
2199 void __iomem *port_mmio = ahci_port_base(ap);
2200 struct ahci_port_priv *pp = ap->private_data;
2201 u32 cmd;
2202
2203 ahci_disable_fbs(ap);
2204
2205 cmd = readl(port_mmio + PORT_CMD);
2206 cmd &= ~PORT_CMD_PMP;
2207 writel(cmd, port_mmio + PORT_CMD);
2208
2209 pp->intr_mask &= ~PORT_IRQ_BAD_PMP;
Maxime Bizon7b3a24c2011-03-16 14:58:32 +01002210
2211 /* see comment above in ahci_pmp_attach() */
2212 if (!(ap->pflags & ATA_PFLAG_FROZEN))
2213 writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002214}
2215
David Milburn02cdfcf2010-11-12 15:38:21 -06002216int ahci_port_resume(struct ata_port *ap)
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002217{
2218 ahci_power_up(ap);
2219 ahci_start_port(ap);
2220
2221 if (sata_pmp_attached(ap))
2222 ahci_pmp_attach(ap);
2223 else
2224 ahci_pmp_detach(ap);
2225
2226 return 0;
2227}
David Milburn02cdfcf2010-11-12 15:38:21 -06002228EXPORT_SYMBOL_GPL(ahci_port_resume);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002229
2230#ifdef CONFIG_PM
2231static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg)
2232{
2233 const char *emsg = NULL;
2234 int rc;
2235
2236 rc = ahci_deinit_port(ap, &emsg);
2237 if (rc == 0)
2238 ahci_power_down(ap);
2239 else {
Joe Perchesa9a79df2011-04-15 15:51:59 -07002240 ata_port_err(ap, "%s (%d)\n", emsg, rc);
Tejun Heo7faa33d2011-07-22 11:41:26 +02002241 ata_port_freeze(ap);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002242 }
2243
2244 return rc;
2245}
2246#endif
2247
2248static int ahci_port_start(struct ata_port *ap)
2249{
2250 struct ahci_host_priv *hpriv = ap->host->private_data;
2251 struct device *dev = ap->host->dev;
2252 struct ahci_port_priv *pp;
2253 void *mem;
2254 dma_addr_t mem_dma;
2255 size_t dma_sz, rx_fis_sz;
2256
2257 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
2258 if (!pp)
2259 return -ENOMEM;
2260
Alexander Gordeevb29900e2013-05-22 08:53:48 +09002261 if (ap->host->n_ports > 1) {
2262 pp->irq_desc = devm_kzalloc(dev, 8, GFP_KERNEL);
2263 if (!pp->irq_desc) {
2264 devm_kfree(dev, pp);
2265 return -ENOMEM;
2266 }
2267 snprintf(pp->irq_desc, 8,
2268 "%s%d", dev_driver_string(dev), ap->port_no);
2269 }
2270
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002271 /* check FBS capability */
2272 if ((hpriv->cap & HOST_CAP_FBS) && sata_pmp_supported(ap)) {
2273 void __iomem *port_mmio = ahci_port_base(ap);
2274 u32 cmd = readl(port_mmio + PORT_CMD);
2275 if (cmd & PORT_CMD_FBSCP)
2276 pp->fbs_supported = true;
Tejun Heo5f173102010-07-24 16:53:48 +02002277 else if (hpriv->flags & AHCI_HFLAG_YES_FBS) {
Joe Perchesa44fec12011-04-15 15:51:58 -07002278 dev_info(dev, "port %d can do FBS, forcing FBSCP\n",
2279 ap->port_no);
Tejun Heo5f173102010-07-24 16:53:48 +02002280 pp->fbs_supported = true;
2281 } else
Joe Perchesa44fec12011-04-15 15:51:58 -07002282 dev_warn(dev, "port %d is not capable of FBS\n",
2283 ap->port_no);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002284 }
2285
2286 if (pp->fbs_supported) {
2287 dma_sz = AHCI_PORT_PRIV_FBS_DMA_SZ;
2288 rx_fis_sz = AHCI_RX_FIS_SZ * 16;
2289 } else {
2290 dma_sz = AHCI_PORT_PRIV_DMA_SZ;
2291 rx_fis_sz = AHCI_RX_FIS_SZ;
2292 }
2293
2294 mem = dmam_alloc_coherent(dev, dma_sz, &mem_dma, GFP_KERNEL);
2295 if (!mem)
2296 return -ENOMEM;
2297 memset(mem, 0, dma_sz);
2298
2299 /*
2300 * First item in chunk of DMA memory: 32-slot command table,
2301 * 32 bytes each in size
2302 */
2303 pp->cmd_slot = mem;
2304 pp->cmd_slot_dma = mem_dma;
2305
2306 mem += AHCI_CMD_SLOT_SZ;
2307 mem_dma += AHCI_CMD_SLOT_SZ;
2308
2309 /*
2310 * Second item: Received-FIS area
2311 */
2312 pp->rx_fis = mem;
2313 pp->rx_fis_dma = mem_dma;
2314
2315 mem += rx_fis_sz;
2316 mem_dma += rx_fis_sz;
2317
2318 /*
2319 * Third item: data area for storing a single command
2320 * and its scatter-gather table
2321 */
2322 pp->cmd_tbl = mem;
2323 pp->cmd_tbl_dma = mem_dma;
2324
2325 /*
2326 * Save off initial list of interrupts to be enabled.
2327 * This could be changed later
2328 */
2329 pp->intr_mask = DEF_PORT_IRQ;
2330
Alexander Gordeev5ca72c42012-11-19 16:02:48 +01002331 /*
2332 * Switch to per-port locking in case each port has its own MSI vector.
2333 */
2334 if ((hpriv->flags & AHCI_HFLAG_MULTI_MSI)) {
2335 spin_lock_init(&pp->lock);
2336 ap->lock = &pp->lock;
2337 }
2338
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002339 ap->private_data = pp;
2340
2341 /* engage engines, captain */
2342 return ahci_port_resume(ap);
2343}
2344
2345static void ahci_port_stop(struct ata_port *ap)
2346{
2347 const char *emsg = NULL;
2348 int rc;
2349
2350 /* de-initialize port */
2351 rc = ahci_deinit_port(ap, &emsg);
2352 if (rc)
Joe Perchesa9a79df2011-04-15 15:51:59 -07002353 ata_port_warn(ap, "%s (%d)\n", emsg, rc);
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002354}
2355
2356void ahci_print_info(struct ata_host *host, const char *scc_s)
2357{
2358 struct ahci_host_priv *hpriv = host->private_data;
2359 void __iomem *mmio = hpriv->mmio;
2360 u32 vers, cap, cap2, impl, speed;
2361 const char *speed_s;
2362
2363 vers = readl(mmio + HOST_VERSION);
2364 cap = hpriv->cap;
2365 cap2 = hpriv->cap2;
2366 impl = hpriv->port_map;
2367
2368 speed = (cap >> 20) & 0xf;
2369 if (speed == 1)
2370 speed_s = "1.5";
2371 else if (speed == 2)
2372 speed_s = "3";
2373 else if (speed == 3)
2374 speed_s = "6";
2375 else
2376 speed_s = "?";
2377
2378 dev_info(host->dev,
2379 "AHCI %02x%02x.%02x%02x "
2380 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
2381 ,
2382
2383 (vers >> 24) & 0xff,
2384 (vers >> 16) & 0xff,
2385 (vers >> 8) & 0xff,
2386 vers & 0xff,
2387
2388 ((cap >> 8) & 0x1f) + 1,
2389 (cap & 0x1f) + 1,
2390 speed_s,
2391 impl,
2392 scc_s);
2393
2394 dev_info(host->dev,
2395 "flags: "
2396 "%s%s%s%s%s%s%s"
2397 "%s%s%s%s%s%s%s"
Shane Huang65fe1f02012-09-07 22:40:01 +08002398 "%s%s%s%s%s%s%s"
2399 "%s%s\n"
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002400 ,
2401
2402 cap & HOST_CAP_64 ? "64bit " : "",
2403 cap & HOST_CAP_NCQ ? "ncq " : "",
2404 cap & HOST_CAP_SNTF ? "sntf " : "",
2405 cap & HOST_CAP_MPS ? "ilck " : "",
2406 cap & HOST_CAP_SSS ? "stag " : "",
2407 cap & HOST_CAP_ALPM ? "pm " : "",
2408 cap & HOST_CAP_LED ? "led " : "",
2409 cap & HOST_CAP_CLO ? "clo " : "",
2410 cap & HOST_CAP_ONLY ? "only " : "",
2411 cap & HOST_CAP_PMP ? "pmp " : "",
2412 cap & HOST_CAP_FBS ? "fbs " : "",
2413 cap & HOST_CAP_PIO_MULTI ? "pio " : "",
2414 cap & HOST_CAP_SSC ? "slum " : "",
2415 cap & HOST_CAP_PART ? "part " : "",
2416 cap & HOST_CAP_CCC ? "ccc " : "",
2417 cap & HOST_CAP_EMS ? "ems " : "",
2418 cap & HOST_CAP_SXS ? "sxs " : "",
Shane Huang65fe1f02012-09-07 22:40:01 +08002419 cap2 & HOST_CAP2_DESO ? "deso " : "",
2420 cap2 & HOST_CAP2_SADM ? "sadm " : "",
2421 cap2 & HOST_CAP2_SDS ? "sds " : "",
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002422 cap2 & HOST_CAP2_APST ? "apst " : "",
2423 cap2 & HOST_CAP2_NVMHCI ? "nvmp " : "",
2424 cap2 & HOST_CAP2_BOH ? "boh " : ""
2425 );
2426}
2427EXPORT_SYMBOL_GPL(ahci_print_info);
2428
2429void ahci_set_em_messages(struct ahci_host_priv *hpriv,
2430 struct ata_port_info *pi)
2431{
2432 u8 messages;
2433 void __iomem *mmio = hpriv->mmio;
2434 u32 em_loc = readl(mmio + HOST_EM_LOC);
2435 u32 em_ctl = readl(mmio + HOST_EM_CTL);
2436
2437 if (!ahci_em_messages || !(hpriv->cap & HOST_CAP_EMS))
2438 return;
2439
2440 messages = (em_ctl & EM_CTRL_MSG_TYPE) >> 16;
2441
Harry Zhang008dbd62010-04-23 17:27:19 +08002442 if (messages) {
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002443 /* store em_loc */
2444 hpriv->em_loc = ((em_loc >> 16) * 4);
Harry Zhangc0623162010-04-23 17:28:38 +08002445 hpriv->em_buf_sz = ((em_loc & 0xff) * 4);
Harry Zhang008dbd62010-04-23 17:27:19 +08002446 hpriv->em_msg_type = messages;
Anton Vorontsov365cfa12010-03-28 00:22:14 -04002447 pi->flags |= ATA_FLAG_EM;
2448 if (!(em_ctl & EM_CTL_ALHD))
2449 pi->flags |= ATA_FLAG_SW_ACTIVITY;
2450 }
2451}
2452EXPORT_SYMBOL_GPL(ahci_set_em_messages);
2453
2454MODULE_AUTHOR("Jeff Garzik");
2455MODULE_DESCRIPTION("Common AHCI SATA low-level routines");
2456MODULE_LICENSE("GPL");