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