Merge branch 'stable-3.2' into pandora-3.2
[pandora-kernel.git] / drivers / ata / libata-pmp.c
1 /*
2  * libata-pmp.c - libata port multiplier support
3  *
4  * Copyright (c) 2007  SUSE Linux Products GmbH
5  * Copyright (c) 2007  Tejun Heo <teheo@suse.de>
6  *
7  * This file is released under the GPLv2.
8  */
9
10 #include <linux/kernel.h>
11 #include <linux/export.h>
12 #include <linux/libata.h>
13 #include <linux/slab.h>
14 #include "libata.h"
15 #include "libata-transport.h"
16
17 const struct ata_port_operations sata_pmp_port_ops = {
18         .inherits               = &sata_port_ops,
19         .pmp_prereset           = ata_std_prereset,
20         .pmp_hardreset          = sata_std_hardreset,
21         .pmp_postreset          = ata_std_postreset,
22         .error_handler          = sata_pmp_error_handler,
23 };
24
25 /**
26  *      sata_pmp_read - read PMP register
27  *      @link: link to read PMP register for
28  *      @reg: register to read
29  *      @r_val: resulting value
30  *
31  *      Read PMP register.
32  *
33  *      LOCKING:
34  *      Kernel thread context (may sleep).
35  *
36  *      RETURNS:
37  *      0 on success, AC_ERR_* mask on failure.
38  */
39 static unsigned int sata_pmp_read(struct ata_link *link, int reg, u32 *r_val)
40 {
41         struct ata_port *ap = link->ap;
42         struct ata_device *pmp_dev = ap->link.device;
43         struct ata_taskfile tf;
44         unsigned int err_mask;
45
46         ata_tf_init(pmp_dev, &tf);
47         tf.command = ATA_CMD_PMP_READ;
48         tf.protocol = ATA_PROT_NODATA;
49         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48;
50         tf.feature = reg;
51         tf.device = link->pmp;
52
53         err_mask = ata_exec_internal(pmp_dev, &tf, NULL, DMA_NONE, NULL, 0,
54                                      SATA_PMP_RW_TIMEOUT);
55         if (err_mask)
56                 return err_mask;
57
58         *r_val = tf.nsect | tf.lbal << 8 | tf.lbam << 16 | tf.lbah << 24;
59         return 0;
60 }
61
62 /**
63  *      sata_pmp_write - write PMP register
64  *      @link: link to write PMP register for
65  *      @reg: register to write
66  *      @r_val: value to write
67  *
68  *      Write PMP register.
69  *
70  *      LOCKING:
71  *      Kernel thread context (may sleep).
72  *
73  *      RETURNS:
74  *      0 on success, AC_ERR_* mask on failure.
75  */
76 static unsigned int sata_pmp_write(struct ata_link *link, int reg, u32 val)
77 {
78         struct ata_port *ap = link->ap;
79         struct ata_device *pmp_dev = ap->link.device;
80         struct ata_taskfile tf;
81
82         ata_tf_init(pmp_dev, &tf);
83         tf.command = ATA_CMD_PMP_WRITE;
84         tf.protocol = ATA_PROT_NODATA;
85         tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48;
86         tf.feature = reg;
87         tf.device = link->pmp;
88         tf.nsect = val & 0xff;
89         tf.lbal = (val >> 8) & 0xff;
90         tf.lbam = (val >> 16) & 0xff;
91         tf.lbah = (val >> 24) & 0xff;
92
93         return ata_exec_internal(pmp_dev, &tf, NULL, DMA_NONE, NULL, 0,
94                                  SATA_PMP_RW_TIMEOUT);
95 }
96
97 /**
98  *      sata_pmp_qc_defer_cmd_switch - qc_defer for command switching PMP
99  *      @qc: ATA command in question
100  *
101  *      A host which has command switching PMP support cannot issue
102  *      commands to multiple links simultaneously.
103  *
104  *      LOCKING:
105  *      spin_lock_irqsave(host lock)
106  *
107  *      RETURNS:
108  *      ATA_DEFER_* if deferring is needed, 0 otherwise.
109  */
110 int sata_pmp_qc_defer_cmd_switch(struct ata_queued_cmd *qc)
111 {
112         struct ata_link *link = qc->dev->link;
113         struct ata_port *ap = link->ap;
114
115         if (ap->excl_link == NULL || ap->excl_link == link) {
116                 if (ap->nr_active_links == 0 || ata_link_active(link)) {
117                         qc->flags |= ATA_QCFLAG_CLEAR_EXCL;
118                         return ata_std_qc_defer(qc);
119                 }
120
121                 ap->excl_link = link;
122         }
123
124         return ATA_DEFER_PORT;
125 }
126
127 /**
128  *      sata_pmp_scr_read - read PSCR
129  *      @link: ATA link to read PSCR for
130  *      @reg: PSCR to read
131  *      @r_val: resulting value
132  *
133  *      Read PSCR @reg into @r_val for @link, to be called from
134  *      ata_scr_read().
135  *
136  *      LOCKING:
137  *      Kernel thread context (may sleep).
138  *
139  *      RETURNS:
140  *      0 on success, -errno on failure.
141  */
142 int sata_pmp_scr_read(struct ata_link *link, int reg, u32 *r_val)
143 {
144         unsigned int err_mask;
145
146         if (reg > SATA_PMP_PSCR_CONTROL)
147                 return -EINVAL;
148
149         err_mask = sata_pmp_read(link, reg, r_val);
150         if (err_mask) {
151                 ata_link_warn(link, "failed to read SCR %d (Emask=0x%x)\n",
152                               reg, err_mask);
153                 return -EIO;
154         }
155         return 0;
156 }
157
158 /**
159  *      sata_pmp_scr_write - write PSCR
160  *      @link: ATA link to write PSCR for
161  *      @reg: PSCR to write
162  *      @val: value to be written
163  *
164  *      Write @val to PSCR @reg for @link, to be called from
165  *      ata_scr_write() and ata_scr_write_flush().
166  *
167  *      LOCKING:
168  *      Kernel thread context (may sleep).
169  *
170  *      RETURNS:
171  *      0 on success, -errno on failure.
172  */
173 int sata_pmp_scr_write(struct ata_link *link, int reg, u32 val)
174 {
175         unsigned int err_mask;
176
177         if (reg > SATA_PMP_PSCR_CONTROL)
178                 return -EINVAL;
179
180         err_mask = sata_pmp_write(link, reg, val);
181         if (err_mask) {
182                 ata_link_warn(link, "failed to write SCR %d (Emask=0x%x)\n",
183                               reg, err_mask);
184                 return -EIO;
185         }
186         return 0;
187 }
188
189 /**
190  *      sata_pmp_set_lpm - configure LPM for a PMP link
191  *      @link: PMP link to configure LPM for
192  *      @policy: target LPM policy
193  *      @hints: LPM hints
194  *
195  *      Configure LPM for @link.  This function will contain any PMP
196  *      specific workarounds if necessary.
197  *
198  *      LOCKING:
199  *      EH context.
200  *
201  *      RETURNS:
202  *      0 on success, -errno on failure.
203  */
204 int sata_pmp_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
205                      unsigned hints)
206 {
207         return sata_link_scr_lpm(link, policy, true);
208 }
209
210 /**
211  *      sata_pmp_read_gscr - read GSCR block of SATA PMP
212  *      @dev: PMP device
213  *      @gscr: buffer to read GSCR block into
214  *
215  *      Read selected PMP GSCRs from the PMP at @dev.  This will serve
216  *      as configuration and identification info for the PMP.
217  *
218  *      LOCKING:
219  *      Kernel thread context (may sleep).
220  *
221  *      RETURNS:
222  *      0 on success, -errno on failure.
223  */
224 static int sata_pmp_read_gscr(struct ata_device *dev, u32 *gscr)
225 {
226         static const int gscr_to_read[] = { 0, 1, 2, 32, 33, 64, 96 };
227         int i;
228
229         for (i = 0; i < ARRAY_SIZE(gscr_to_read); i++) {
230                 int reg = gscr_to_read[i];
231                 unsigned int err_mask;
232
233                 err_mask = sata_pmp_read(dev->link, reg, &gscr[reg]);
234                 if (err_mask) {
235                         ata_dev_err(dev, "failed to read PMP GSCR[%d] (Emask=0x%x)\n",
236                                     reg, err_mask);
237                         return -EIO;
238                 }
239         }
240
241         return 0;
242 }
243
244 static const char *sata_pmp_spec_rev_str(const u32 *gscr)
245 {
246         u32 rev = gscr[SATA_PMP_GSCR_REV];
247
248         if (rev & (1 << 3))
249                 return "1.2";
250         if (rev & (1 << 2))
251                 return "1.1";
252         if (rev & (1 << 1))
253                 return "1.0";
254         return "<unknown>";
255 }
256
257 #define PMP_GSCR_SII_POL 129
258
259 static int sata_pmp_configure(struct ata_device *dev, int print_info)
260 {
261         struct ata_port *ap = dev->link->ap;
262         u32 *gscr = dev->gscr;
263         u16 vendor = sata_pmp_gscr_vendor(gscr);
264         u16 devid = sata_pmp_gscr_devid(gscr);
265         unsigned int err_mask = 0;
266         const char *reason;
267         int nr_ports, rc;
268
269         nr_ports = sata_pmp_gscr_ports(gscr);
270
271         if (nr_ports <= 0 || nr_ports > SATA_PMP_MAX_PORTS) {
272                 rc = -EINVAL;
273                 reason = "invalid nr_ports";
274                 goto fail;
275         }
276
277         if ((ap->flags & ATA_FLAG_AN) &&
278             (gscr[SATA_PMP_GSCR_FEAT] & SATA_PMP_FEAT_NOTIFY))
279                 dev->flags |= ATA_DFLAG_AN;
280
281         /* monitor SERR_PHYRDY_CHG on fan-out ports */
282         err_mask = sata_pmp_write(dev->link, SATA_PMP_GSCR_ERROR_EN,
283                                   SERR_PHYRDY_CHG);
284         if (err_mask) {
285                 rc = -EIO;
286                 reason = "failed to write GSCR_ERROR_EN";
287                 goto fail;
288         }
289
290         /* Disable sending Early R_OK.
291          * With "cached read" HDD testing and multiple ports busy on a SATA
292          * host controller, 3x26 PMP will very rarely drop a deferred
293          * R_OK that was intended for the host. Symptom will be all
294          * 5 drives under test will timeout, get reset, and recover.
295          */
296         if (vendor == 0x1095 && (devid == 0x3726 || devid == 0x3826)) {
297                 u32 reg;
298
299                 err_mask = sata_pmp_read(&ap->link, PMP_GSCR_SII_POL, &reg);
300                 if (err_mask) {
301                         rc = -EIO;
302                         reason = "failed to read Sil3x26 Private Register";
303                         goto fail;
304                 }
305                 reg &= ~0x1;
306                 err_mask = sata_pmp_write(&ap->link, PMP_GSCR_SII_POL, reg);
307                 if (err_mask) {
308                         rc = -EIO;
309                         reason = "failed to write Sil3x26 Private Register";
310                         goto fail;
311                 }
312         }
313
314         if (print_info) {
315                 ata_dev_info(dev, "Port Multiplier %s, "
316                              "0x%04x:0x%04x r%d, %d ports, feat 0x%x/0x%x\n",
317                              sata_pmp_spec_rev_str(gscr), vendor, devid,
318                              sata_pmp_gscr_rev(gscr),
319                              nr_ports, gscr[SATA_PMP_GSCR_FEAT_EN],
320                              gscr[SATA_PMP_GSCR_FEAT]);
321
322                 if (!(dev->flags & ATA_DFLAG_AN))
323                         ata_dev_info(dev,
324                                 "Asynchronous notification not supported, "
325                                 "hotplug won't work on fan-out ports. Use warm-plug instead.\n");
326         }
327
328         return 0;
329
330  fail:
331         ata_dev_err(dev,
332                     "failed to configure Port Multiplier (%s, Emask=0x%x)\n",
333                     reason, err_mask);
334         return rc;
335 }
336
337 static int sata_pmp_init_links (struct ata_port *ap, int nr_ports)
338 {
339         struct ata_link *pmp_link = ap->pmp_link;
340         int i, err;
341
342         if (!pmp_link) {
343                 pmp_link = kzalloc(sizeof(pmp_link[0]) * SATA_PMP_MAX_PORTS,
344                                    GFP_NOIO);
345                 if (!pmp_link)
346                         return -ENOMEM;
347
348                 for (i = 0; i < SATA_PMP_MAX_PORTS; i++)
349                         ata_link_init(ap, &pmp_link[i], i);
350
351                 ap->pmp_link = pmp_link;
352
353                 for (i = 0; i < SATA_PMP_MAX_PORTS; i++) {
354                         err = ata_tlink_add(&pmp_link[i]);
355                         if (err) {
356                                 goto err_tlink;
357                         }
358                 }
359         }
360
361         for (i = 0; i < nr_ports; i++) {
362                 struct ata_link *link = &pmp_link[i];
363                 struct ata_eh_context *ehc = &link->eh_context;
364
365                 link->flags = 0;
366                 ehc->i.probe_mask |= ATA_ALL_DEVICES;
367                 ehc->i.action |= ATA_EH_RESET;
368         }
369
370         return 0;
371   err_tlink:
372         while (--i >= 0)
373                 ata_tlink_delete(&pmp_link[i]);
374         kfree(pmp_link);
375         ap->pmp_link = NULL;
376         return err;
377 }
378
379 static void sata_pmp_quirks(struct ata_port *ap)
380 {
381         u32 *gscr = ap->link.device->gscr;
382         u16 vendor = sata_pmp_gscr_vendor(gscr);
383         u16 devid = sata_pmp_gscr_devid(gscr);
384         struct ata_link *link;
385
386         if (vendor == 0x1095 && (devid == 0x3726 || devid == 0x3826)) {
387                 /* sil3x26 quirks */
388                 ata_for_each_link(link, ap, EDGE) {
389                         /* link reports offline after LPM */
390                         link->flags |= ATA_LFLAG_NO_LPM;
391
392                         /*
393                          * Class code report is unreliable and SRST times
394                          * out under certain configurations.
395                          */
396                         if (link->pmp < 5)
397                                 link->flags |= ATA_LFLAG_NO_SRST |
398                                                ATA_LFLAG_ASSUME_ATA;
399
400                         /* port 5 is for SEMB device and it doesn't like SRST */
401                         if (link->pmp == 5)
402                                 link->flags |= ATA_LFLAG_NO_SRST |
403                                                ATA_LFLAG_ASSUME_SEMB;
404                 }
405         } else if (vendor == 0x1095 && devid == 0x4723) {
406                 /*
407                  * sil4723 quirks
408                  *
409                  * Link reports offline after LPM.  Class code report is
410                  * unreliable.  SIMG PMPs never got SRST reliable and the
411                  * config device at port 2 locks up on SRST.
412                  */
413                 ata_for_each_link(link, ap, EDGE)
414                         link->flags |= ATA_LFLAG_NO_LPM |
415                                        ATA_LFLAG_NO_SRST |
416                                        ATA_LFLAG_ASSUME_ATA;
417         } else if (vendor == 0x1095 && devid == 0x4726) {
418                 /* sil4726 quirks */
419                 ata_for_each_link(link, ap, EDGE) {
420                         /* link reports offline after LPM */
421                         link->flags |= ATA_LFLAG_NO_LPM;
422
423                         /* Class code report is unreliable and SRST
424                          * times out under certain configurations.
425                          * Config device can be at port 0 or 5 and
426                          * locks up on SRST.
427                          */
428                         if (link->pmp <= 5)
429                                 link->flags |= ATA_LFLAG_NO_SRST |
430                                                ATA_LFLAG_ASSUME_ATA;
431
432                         /* Port 6 is for SEMB device which doesn't
433                          * like SRST either.
434                          */
435                         if (link->pmp == 6)
436                                 link->flags |= ATA_LFLAG_NO_SRST |
437                                                ATA_LFLAG_ASSUME_SEMB;
438                 }
439         } else if (vendor == 0x1095 && (devid == 0x5723 || devid == 0x5733 ||
440                                         devid == 0x5734 || devid == 0x5744)) {
441                 /* sil5723/5744 quirks */
442
443                 /* sil5723/5744 has either two or three downstream
444                  * ports depending on operation mode.  The last port
445                  * is empty if any actual IO device is available or
446                  * occupied by a pseudo configuration device
447                  * otherwise.  Don't try hard to recover it.
448                  */
449                 ap->pmp_link[ap->nr_pmp_links - 1].flags |= ATA_LFLAG_NO_RETRY;
450         } else if (vendor == 0x197b && devid == 0x2352) {
451                 /* chip found in Thermaltake BlackX Duet, jmicron JMB350? */
452                 ata_for_each_link(link, ap, EDGE) {
453                         /* SRST breaks detection and disks get misclassified
454                          * LPM disabled to avoid potential problems
455                          */
456                         link->flags |= ATA_LFLAG_NO_LPM |
457                                        ATA_LFLAG_NO_SRST |
458                                        ATA_LFLAG_ASSUME_ATA;
459                 }
460         }
461 }
462
463 /**
464  *      sata_pmp_attach - attach a SATA PMP device
465  *      @dev: SATA PMP device to attach
466  *
467  *      Configure and attach SATA PMP device @dev.  This function is
468  *      also responsible for allocating and initializing PMP links.
469  *
470  *      LOCKING:
471  *      Kernel thread context (may sleep).
472  *
473  *      RETURNS:
474  *      0 on success, -errno on failure.
475  */
476 int sata_pmp_attach(struct ata_device *dev)
477 {
478         struct ata_link *link = dev->link;
479         struct ata_port *ap = link->ap;
480         unsigned long flags;
481         struct ata_link *tlink;
482         int rc;
483
484         /* is it hanging off the right place? */
485         if (!sata_pmp_supported(ap)) {
486                 ata_dev_err(dev, "host does not support Port Multiplier\n");
487                 return -EINVAL;
488         }
489
490         if (!ata_is_host_link(link)) {
491                 ata_dev_err(dev, "Port Multipliers cannot be nested\n");
492                 return -EINVAL;
493         }
494
495         if (dev->devno) {
496                 ata_dev_err(dev, "Port Multiplier must be the first device\n");
497                 return -EINVAL;
498         }
499
500         WARN_ON(link->pmp != 0);
501         link->pmp = SATA_PMP_CTRL_PORT;
502
503         /* read GSCR block */
504         rc = sata_pmp_read_gscr(dev, dev->gscr);
505         if (rc)
506                 goto fail;
507
508         /* config PMP */
509         rc = sata_pmp_configure(dev, 1);
510         if (rc)
511                 goto fail;
512
513         rc = sata_pmp_init_links(ap, sata_pmp_gscr_ports(dev->gscr));
514         if (rc) {
515                 ata_dev_info(dev, "failed to initialize PMP links\n");
516                 goto fail;
517         }
518
519         /* attach it */
520         spin_lock_irqsave(ap->lock, flags);
521         WARN_ON(ap->nr_pmp_links);
522         ap->nr_pmp_links = sata_pmp_gscr_ports(dev->gscr);
523         spin_unlock_irqrestore(ap->lock, flags);
524
525         sata_pmp_quirks(ap);
526
527         if (ap->ops->pmp_attach)
528                 ap->ops->pmp_attach(ap);
529
530         ata_for_each_link(tlink, ap, EDGE)
531                 sata_link_init_spd(tlink);
532
533         ata_acpi_associate_sata_port(ap);
534
535         return 0;
536
537  fail:
538         link->pmp = 0;
539         return rc;
540 }
541
542 /**
543  *      sata_pmp_detach - detach a SATA PMP device
544  *      @dev: SATA PMP device to detach
545  *
546  *      Detach SATA PMP device @dev.  This function is also
547  *      responsible for deconfiguring PMP links.
548  *
549  *      LOCKING:
550  *      Kernel thread context (may sleep).
551  */
552 static void sata_pmp_detach(struct ata_device *dev)
553 {
554         struct ata_link *link = dev->link;
555         struct ata_port *ap = link->ap;
556         struct ata_link *tlink;
557         unsigned long flags;
558
559         ata_dev_info(dev, "Port Multiplier detaching\n");
560
561         WARN_ON(!ata_is_host_link(link) || dev->devno ||
562                 link->pmp != SATA_PMP_CTRL_PORT);
563
564         if (ap->ops->pmp_detach)
565                 ap->ops->pmp_detach(ap);
566
567         ata_for_each_link(tlink, ap, EDGE)
568                 ata_eh_detach_dev(tlink->device);
569
570         spin_lock_irqsave(ap->lock, flags);
571         ap->nr_pmp_links = 0;
572         link->pmp = 0;
573         spin_unlock_irqrestore(ap->lock, flags);
574
575         ata_acpi_associate_sata_port(ap);
576 }
577
578 /**
579  *      sata_pmp_same_pmp - does new GSCR matches the configured PMP?
580  *      @dev: PMP device to compare against
581  *      @new_gscr: GSCR block of the new device
582  *
583  *      Compare @new_gscr against @dev and determine whether @dev is
584  *      the PMP described by @new_gscr.
585  *
586  *      LOCKING:
587  *      None.
588  *
589  *      RETURNS:
590  *      1 if @dev matches @new_gscr, 0 otherwise.
591  */
592 static int sata_pmp_same_pmp(struct ata_device *dev, const u32 *new_gscr)
593 {
594         const u32 *old_gscr = dev->gscr;
595         u16 old_vendor, new_vendor, old_devid, new_devid;
596         int old_nr_ports, new_nr_ports;
597
598         old_vendor = sata_pmp_gscr_vendor(old_gscr);
599         new_vendor = sata_pmp_gscr_vendor(new_gscr);
600         old_devid = sata_pmp_gscr_devid(old_gscr);
601         new_devid = sata_pmp_gscr_devid(new_gscr);
602         old_nr_ports = sata_pmp_gscr_ports(old_gscr);
603         new_nr_ports = sata_pmp_gscr_ports(new_gscr);
604
605         if (old_vendor != new_vendor) {
606                 ata_dev_info(dev,
607                              "Port Multiplier vendor mismatch '0x%x' != '0x%x'\n",
608                              old_vendor, new_vendor);
609                 return 0;
610         }
611
612         if (old_devid != new_devid) {
613                 ata_dev_info(dev,
614                              "Port Multiplier device ID mismatch '0x%x' != '0x%x'\n",
615                              old_devid, new_devid);
616                 return 0;
617         }
618
619         if (old_nr_ports != new_nr_ports) {
620                 ata_dev_info(dev,
621                              "Port Multiplier nr_ports mismatch '0x%x' != '0x%x'\n",
622                              old_nr_ports, new_nr_ports);
623                 return 0;
624         }
625
626         return 1;
627 }
628
629 /**
630  *      sata_pmp_revalidate - revalidate SATA PMP
631  *      @dev: PMP device to revalidate
632  *      @new_class: new class code
633  *
634  *      Re-read GSCR block and make sure @dev is still attached to the
635  *      port and properly configured.
636  *
637  *      LOCKING:
638  *      Kernel thread context (may sleep).
639  *
640  *      RETURNS:
641  *      0 on success, -errno otherwise.
642  */
643 static int sata_pmp_revalidate(struct ata_device *dev, unsigned int new_class)
644 {
645         struct ata_link *link = dev->link;
646         struct ata_port *ap = link->ap;
647         u32 *gscr = (void *)ap->sector_buf;
648         int rc;
649
650         DPRINTK("ENTER\n");
651
652         ata_eh_about_to_do(link, NULL, ATA_EH_REVALIDATE);
653
654         if (!ata_dev_enabled(dev)) {
655                 rc = -ENODEV;
656                 goto fail;
657         }
658
659         /* wrong class? */
660         if (ata_class_enabled(new_class) && new_class != ATA_DEV_PMP) {
661                 rc = -ENODEV;
662                 goto fail;
663         }
664
665         /* read GSCR */
666         rc = sata_pmp_read_gscr(dev, gscr);
667         if (rc)
668                 goto fail;
669
670         /* is the pmp still there? */
671         if (!sata_pmp_same_pmp(dev, gscr)) {
672                 rc = -ENODEV;
673                 goto fail;
674         }
675
676         memcpy(dev->gscr, gscr, sizeof(gscr[0]) * SATA_PMP_GSCR_DWORDS);
677
678         rc = sata_pmp_configure(dev, 0);
679         if (rc)
680                 goto fail;
681
682         ata_eh_done(link, NULL, ATA_EH_REVALIDATE);
683
684         DPRINTK("EXIT, rc=0\n");
685         return 0;
686
687  fail:
688         ata_dev_err(dev, "PMP revalidation failed (errno=%d)\n", rc);
689         DPRINTK("EXIT, rc=%d\n", rc);
690         return rc;
691 }
692
693 /**
694  *      sata_pmp_revalidate_quick - revalidate SATA PMP quickly
695  *      @dev: PMP device to revalidate
696  *
697  *      Make sure the attached PMP is accessible.
698  *
699  *      LOCKING:
700  *      Kernel thread context (may sleep).
701  *
702  *      RETURNS:
703  *      0 on success, -errno otherwise.
704  */
705 static int sata_pmp_revalidate_quick(struct ata_device *dev)
706 {
707         unsigned int err_mask;
708         u32 prod_id;
709
710         err_mask = sata_pmp_read(dev->link, SATA_PMP_GSCR_PROD_ID, &prod_id);
711         if (err_mask) {
712                 ata_dev_err(dev,
713                             "failed to read PMP product ID (Emask=0x%x)\n",
714                             err_mask);
715                 return -EIO;
716         }
717
718         if (prod_id != dev->gscr[SATA_PMP_GSCR_PROD_ID]) {
719                 ata_dev_err(dev, "PMP product ID mismatch\n");
720                 /* something weird is going on, request full PMP recovery */
721                 return -EIO;
722         }
723
724         return 0;
725 }
726
727 /**
728  *      sata_pmp_eh_recover_pmp - recover PMP
729  *      @ap: ATA port PMP is attached to
730  *      @prereset: prereset method (can be NULL)
731  *      @softreset: softreset method
732  *      @hardreset: hardreset method
733  *      @postreset: postreset method (can be NULL)
734  *
735  *      Recover PMP attached to @ap.  Recovery procedure is somewhat
736  *      similar to that of ata_eh_recover() except that reset should
737  *      always be performed in hard->soft sequence and recovery
738  *      failure results in PMP detachment.
739  *
740  *      LOCKING:
741  *      Kernel thread context (may sleep).
742  *
743  *      RETURNS:
744  *      0 on success, -errno on failure.
745  */
746 static int sata_pmp_eh_recover_pmp(struct ata_port *ap,
747                 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
748                 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
749 {
750         struct ata_link *link = &ap->link;
751         struct ata_eh_context *ehc = &link->eh_context;
752         struct ata_device *dev = link->device;
753         int tries = ATA_EH_PMP_TRIES;
754         int detach = 0, rc = 0;
755         int reval_failed = 0;
756
757         DPRINTK("ENTER\n");
758
759         if (dev->flags & ATA_DFLAG_DETACH) {
760                 detach = 1;
761                 goto fail;
762         }
763
764  retry:
765         ehc->classes[0] = ATA_DEV_UNKNOWN;
766
767         if (ehc->i.action & ATA_EH_RESET) {
768                 struct ata_link *tlink;
769
770                 /* reset */
771                 rc = ata_eh_reset(link, 0, prereset, softreset, hardreset,
772                                   postreset);
773                 if (rc) {
774                         ata_link_err(link, "failed to reset PMP, giving up\n");
775                         goto fail;
776                 }
777
778                 /* PMP is reset, SErrors cannot be trusted, scan all */
779                 ata_for_each_link(tlink, ap, EDGE) {
780                         struct ata_eh_context *ehc = &tlink->eh_context;
781
782                         ehc->i.probe_mask |= ATA_ALL_DEVICES;
783                         ehc->i.action |= ATA_EH_RESET;
784                 }
785         }
786
787         /* If revalidation is requested, revalidate and reconfigure;
788          * otherwise, do quick revalidation.
789          */
790         if (ehc->i.action & ATA_EH_REVALIDATE)
791                 rc = sata_pmp_revalidate(dev, ehc->classes[0]);
792         else
793                 rc = sata_pmp_revalidate_quick(dev);
794
795         if (rc) {
796                 tries--;
797
798                 if (rc == -ENODEV) {
799                         ehc->i.probe_mask |= ATA_ALL_DEVICES;
800                         detach = 1;
801                         /* give it just two more chances */
802                         tries = min(tries, 2);
803                 }
804
805                 if (tries) {
806                         /* consecutive revalidation failures? speed down */
807                         if (reval_failed)
808                                 sata_down_spd_limit(link, 0);
809                         else
810                                 reval_failed = 1;
811
812                         ehc->i.action |= ATA_EH_RESET;
813                         goto retry;
814                 } else {
815                         ata_dev_err(dev,
816                                     "failed to recover PMP after %d tries, giving up\n",
817                                     ATA_EH_PMP_TRIES);
818                         goto fail;
819                 }
820         }
821
822         /* okay, PMP resurrected */
823         ehc->i.flags = 0;
824
825         DPRINTK("EXIT, rc=0\n");
826         return 0;
827
828  fail:
829         sata_pmp_detach(dev);
830         if (detach)
831                 ata_eh_detach_dev(dev);
832         else
833                 ata_dev_disable(dev);
834
835         DPRINTK("EXIT, rc=%d\n", rc);
836         return rc;
837 }
838
839 static int sata_pmp_eh_handle_disabled_links(struct ata_port *ap)
840 {
841         struct ata_link *link;
842         unsigned long flags;
843         int rc;
844
845         spin_lock_irqsave(ap->lock, flags);
846
847         ata_for_each_link(link, ap, EDGE) {
848                 if (!(link->flags & ATA_LFLAG_DISABLED))
849                         continue;
850
851                 spin_unlock_irqrestore(ap->lock, flags);
852
853                 /* Some PMPs require hardreset sequence to get
854                  * SError.N working.
855                  */
856                 sata_link_hardreset(link, sata_deb_timing_normal,
857                                 ata_deadline(jiffies, ATA_TMOUT_INTERNAL_QUICK),
858                                 NULL, NULL);
859
860                 /* unconditionally clear SError.N */
861                 rc = sata_scr_write(link, SCR_ERROR, SERR_PHYRDY_CHG);
862                 if (rc) {
863                         ata_link_err(link,
864                                      "failed to clear SError.N (errno=%d)\n",
865                                      rc);
866                         return rc;
867                 }
868
869                 spin_lock_irqsave(ap->lock, flags);
870         }
871
872         spin_unlock_irqrestore(ap->lock, flags);
873
874         return 0;
875 }
876
877 static int sata_pmp_handle_link_fail(struct ata_link *link, int *link_tries)
878 {
879         struct ata_port *ap = link->ap;
880         unsigned long flags;
881
882         if (link_tries[link->pmp] && --link_tries[link->pmp])
883                 return 1;
884
885         /* disable this link */
886         if (!(link->flags & ATA_LFLAG_DISABLED)) {
887                 ata_link_warn(link,
888                         "failed to recover link after %d tries, disabling\n",
889                         ATA_EH_PMP_LINK_TRIES);
890
891                 spin_lock_irqsave(ap->lock, flags);
892                 link->flags |= ATA_LFLAG_DISABLED;
893                 spin_unlock_irqrestore(ap->lock, flags);
894         }
895
896         ata_dev_disable(link->device);
897         link->eh_context.i.action = 0;
898
899         return 0;
900 }
901
902 /**
903  *      sata_pmp_eh_recover - recover PMP-enabled port
904  *      @ap: ATA port to recover
905  *
906  *      Drive EH recovery operation for PMP enabled port @ap.  This
907  *      function recovers host and PMP ports with proper retrials and
908  *      fallbacks.  Actual recovery operations are performed using
909  *      ata_eh_recover() and sata_pmp_eh_recover_pmp().
910  *
911  *      LOCKING:
912  *      Kernel thread context (may sleep).
913  *
914  *      RETURNS:
915  *      0 on success, -errno on failure.
916  */
917 static int sata_pmp_eh_recover(struct ata_port *ap)
918 {
919         struct ata_port_operations *ops = ap->ops;
920         int pmp_tries, link_tries[SATA_PMP_MAX_PORTS];
921         struct ata_link *pmp_link = &ap->link;
922         struct ata_device *pmp_dev = pmp_link->device;
923         struct ata_eh_context *pmp_ehc = &pmp_link->eh_context;
924         u32 *gscr = pmp_dev->gscr;
925         struct ata_link *link;
926         struct ata_device *dev;
927         unsigned int err_mask;
928         u32 gscr_error, sntf;
929         int cnt, rc;
930
931         pmp_tries = ATA_EH_PMP_TRIES;
932         ata_for_each_link(link, ap, EDGE)
933                 link_tries[link->pmp] = ATA_EH_PMP_LINK_TRIES;
934
935  retry:
936         /* PMP attached? */
937         if (!sata_pmp_attached(ap)) {
938                 rc = ata_eh_recover(ap, ops->prereset, ops->softreset,
939                                     ops->hardreset, ops->postreset, NULL);
940                 if (rc) {
941                         ata_for_each_dev(dev, &ap->link, ALL)
942                                 ata_dev_disable(dev);
943                         return rc;
944                 }
945
946                 if (pmp_dev->class != ATA_DEV_PMP)
947                         return 0;
948
949                 /* new PMP online */
950                 ata_for_each_link(link, ap, EDGE)
951                         link_tries[link->pmp] = ATA_EH_PMP_LINK_TRIES;
952
953                 /* fall through */
954         }
955
956         /* recover pmp */
957         rc = sata_pmp_eh_recover_pmp(ap, ops->prereset, ops->softreset,
958                                      ops->hardreset, ops->postreset);
959         if (rc)
960                 goto pmp_fail;
961
962         /* PHY event notification can disturb reset and other recovery
963          * operations.  Turn it off.
964          */
965         if (gscr[SATA_PMP_GSCR_FEAT_EN] & SATA_PMP_FEAT_NOTIFY) {
966                 gscr[SATA_PMP_GSCR_FEAT_EN] &= ~SATA_PMP_FEAT_NOTIFY;
967
968                 err_mask = sata_pmp_write(pmp_link, SATA_PMP_GSCR_FEAT_EN,
969                                           gscr[SATA_PMP_GSCR_FEAT_EN]);
970                 if (err_mask) {
971                         ata_link_warn(pmp_link,
972                                 "failed to disable NOTIFY (err_mask=0x%x)\n",
973                                 err_mask);
974                         goto pmp_fail;
975                 }
976         }
977
978         /* handle disabled links */
979         rc = sata_pmp_eh_handle_disabled_links(ap);
980         if (rc)
981                 goto pmp_fail;
982
983         /* recover links */
984         rc = ata_eh_recover(ap, ops->pmp_prereset, ops->pmp_softreset,
985                             ops->pmp_hardreset, ops->pmp_postreset, &link);
986         if (rc)
987                 goto link_fail;
988
989         /* clear SNotification */
990         rc = sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf);
991         if (rc == 0)
992                 sata_scr_write(&ap->link, SCR_NOTIFICATION, sntf);
993
994         /*
995          * If LPM is active on any fan-out port, hotplug wouldn't
996          * work.  Return w/ PHY event notification disabled.
997          */
998         ata_for_each_link(link, ap, EDGE)
999                 if (link->lpm_policy > ATA_LPM_MAX_POWER)
1000                         return 0;
1001
1002         /*
1003          * Connection status might have changed while resetting other
1004          * links, enable notification and check SATA_PMP_GSCR_ERROR
1005          * before returning.
1006          */
1007
1008         /* enable notification */
1009         if (pmp_dev->flags & ATA_DFLAG_AN) {
1010                 gscr[SATA_PMP_GSCR_FEAT_EN] |= SATA_PMP_FEAT_NOTIFY;
1011
1012                 err_mask = sata_pmp_write(pmp_link, SATA_PMP_GSCR_FEAT_EN,
1013                                           gscr[SATA_PMP_GSCR_FEAT_EN]);
1014                 if (err_mask) {
1015                         ata_dev_err(pmp_dev,
1016                                     "failed to write PMP_FEAT_EN (Emask=0x%x)\n",
1017                                     err_mask);
1018                         rc = -EIO;
1019                         goto pmp_fail;
1020                 }
1021         }
1022
1023         /* check GSCR_ERROR */
1024         err_mask = sata_pmp_read(pmp_link, SATA_PMP_GSCR_ERROR, &gscr_error);
1025         if (err_mask) {
1026                 ata_dev_err(pmp_dev,
1027                             "failed to read PMP_GSCR_ERROR (Emask=0x%x)\n",
1028                             err_mask);
1029                 rc = -EIO;
1030                 goto pmp_fail;
1031         }
1032
1033         cnt = 0;
1034         ata_for_each_link(link, ap, EDGE) {
1035                 if (!(gscr_error & (1 << link->pmp)))
1036                         continue;
1037
1038                 if (sata_pmp_handle_link_fail(link, link_tries)) {
1039                         ata_ehi_hotplugged(&link->eh_context.i);
1040                         cnt++;
1041                 } else {
1042                         ata_link_warn(link,
1043                                 "PHY status changed but maxed out on retries, giving up\n");
1044                         ata_link_warn(link,
1045                                 "Manually issue scan to resume this link\n");
1046                 }
1047         }
1048
1049         if (cnt) {
1050                 ata_port_info(ap,
1051                         "PMP SError.N set for some ports, repeating recovery\n");
1052                 goto retry;
1053         }
1054
1055         return 0;
1056
1057  link_fail:
1058         if (sata_pmp_handle_link_fail(link, link_tries)) {
1059                 pmp_ehc->i.action |= ATA_EH_RESET;
1060                 goto retry;
1061         }
1062
1063         /* fall through */
1064  pmp_fail:
1065         /* Control always ends up here after detaching PMP.  Shut up
1066          * and return if we're unloading.
1067          */
1068         if (ap->pflags & ATA_PFLAG_UNLOADING)
1069                 return rc;
1070
1071         if (!sata_pmp_attached(ap))
1072                 goto retry;
1073
1074         if (--pmp_tries) {
1075                 pmp_ehc->i.action |= ATA_EH_RESET;
1076                 goto retry;
1077         }
1078
1079         ata_port_err(ap, "failed to recover PMP after %d tries, giving up\n",
1080                      ATA_EH_PMP_TRIES);
1081         sata_pmp_detach(pmp_dev);
1082         ata_dev_disable(pmp_dev);
1083
1084         return rc;
1085 }
1086
1087 /**
1088  *      sata_pmp_error_handler - do standard error handling for PMP-enabled host
1089  *      @ap: host port to handle error for
1090  *
1091  *      Perform standard error handling sequence for PMP-enabled host
1092  *      @ap.
1093  *
1094  *      LOCKING:
1095  *      Kernel thread context (may sleep).
1096  */
1097 void sata_pmp_error_handler(struct ata_port *ap)
1098 {
1099         ata_eh_autopsy(ap);
1100         ata_eh_report(ap);
1101         sata_pmp_eh_recover(ap);
1102         ata_eh_finish(ap);
1103 }
1104
1105 EXPORT_SYMBOL_GPL(sata_pmp_port_ops);
1106 EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch);
1107 EXPORT_SYMBOL_GPL(sata_pmp_error_handler);