SCSI: fix locking around blk_abort_request()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / libsas / sas_ata.c
blob816ab97eb16da1c3269999e72912303dbe2f2c99
1 /*
2 * Support for SATA devices on Serial Attached SCSI (SAS) controllers
4 * Copyright (C) 2006 IBM Corporation
6 * Written by: Darrick J. Wong <djwong@us.ibm.com>, IBM Corporation
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
24 #include <linux/scatterlist.h>
26 #include <scsi/sas_ata.h>
27 #include "sas_internal.h"
28 #include <scsi/scsi_host.h>
29 #include <scsi/scsi_device.h>
30 #include <scsi/scsi_tcq.h>
31 #include <scsi/scsi.h>
32 #include <scsi/scsi_transport.h>
33 #include <scsi/scsi_transport_sas.h>
34 #include "../scsi_sas_internal.h"
35 #include "../scsi_transport_api.h"
36 #include <scsi/scsi_eh.h>
38 static enum ata_completion_errors sas_to_ata_err(struct task_status_struct *ts)
40 /* Cheesy attempt to translate SAS errors into ATA. Hah! */
42 /* transport error */
43 if (ts->resp == SAS_TASK_UNDELIVERED)
44 return AC_ERR_ATA_BUS;
46 /* ts->resp == SAS_TASK_COMPLETE */
47 /* task delivered, what happened afterwards? */
48 switch (ts->stat) {
49 case SAS_DEV_NO_RESPONSE:
50 return AC_ERR_TIMEOUT;
52 case SAS_INTERRUPTED:
53 case SAS_PHY_DOWN:
54 case SAS_NAK_R_ERR:
55 return AC_ERR_ATA_BUS;
58 case SAS_DATA_UNDERRUN:
60 * Some programs that use the taskfile interface
61 * (smartctl in particular) can cause underrun
62 * problems. Ignore these errors, perhaps at our
63 * peril.
65 return 0;
67 case SAS_DATA_OVERRUN:
68 case SAS_QUEUE_FULL:
69 case SAS_DEVICE_UNKNOWN:
70 case SAS_SG_ERR:
71 return AC_ERR_INVALID;
73 case SAM_CHECK_COND:
74 case SAS_OPEN_TO:
75 case SAS_OPEN_REJECT:
76 SAS_DPRINTK("%s: Saw error %d. What to do?\n",
77 __func__, ts->stat);
78 return AC_ERR_OTHER;
80 case SAS_ABORTED_TASK:
81 return AC_ERR_DEV;
83 case SAS_PROTO_RESPONSE:
84 /* This means the ending_fis has the error
85 * value; return 0 here to collect it */
86 return 0;
87 default:
88 return 0;
92 static void sas_ata_task_done(struct sas_task *task)
94 struct ata_queued_cmd *qc = task->uldd_task;
95 struct domain_device *dev;
96 struct task_status_struct *stat = &task->task_status;
97 struct ata_task_resp *resp = (struct ata_task_resp *)stat->buf;
98 struct sas_ha_struct *sas_ha;
99 enum ata_completion_errors ac;
100 unsigned long flags;
102 if (!qc)
103 goto qc_already_gone;
105 dev = qc->ap->private_data;
106 sas_ha = dev->port->ha;
108 spin_lock_irqsave(dev->sata_dev.ap->lock, flags);
109 if (stat->stat == SAS_PROTO_RESPONSE || stat->stat == SAM_GOOD) {
110 ata_tf_from_fis(resp->ending_fis, &dev->sata_dev.tf);
111 qc->err_mask |= ac_err_mask(dev->sata_dev.tf.command);
112 dev->sata_dev.sstatus = resp->sstatus;
113 dev->sata_dev.serror = resp->serror;
114 dev->sata_dev.scontrol = resp->scontrol;
115 } else if (stat->stat != SAM_STAT_GOOD) {
116 ac = sas_to_ata_err(stat);
117 if (ac) {
118 SAS_DPRINTK("%s: SAS error %x\n", __func__,
119 stat->stat);
120 /* We saw a SAS error. Send a vague error. */
121 qc->err_mask = ac;
122 dev->sata_dev.tf.feature = 0x04; /* status err */
123 dev->sata_dev.tf.command = ATA_ERR;
127 qc->lldd_task = NULL;
128 if (qc->scsicmd)
129 ASSIGN_SAS_TASK(qc->scsicmd, NULL);
130 ata_qc_complete(qc);
131 spin_unlock_irqrestore(dev->sata_dev.ap->lock, flags);
134 * If the sas_task has an ata qc, a scsi_cmnd and the aborted
135 * flag is set, then we must have come in via the libsas EH
136 * functions. When we exit this function, we need to put the
137 * scsi_cmnd on the list of finished errors. The ata_qc_complete
138 * call cleans up the libata side of things but we're protected
139 * from the scsi_cmnd going away because the scsi_cmnd is owned
140 * by the EH, making libata's call to scsi_done a NOP.
142 spin_lock_irqsave(&task->task_state_lock, flags);
143 if (qc->scsicmd && task->task_state_flags & SAS_TASK_STATE_ABORTED)
144 scsi_eh_finish_cmd(qc->scsicmd, &sas_ha->eh_done_q);
145 spin_unlock_irqrestore(&task->task_state_lock, flags);
147 qc_already_gone:
148 list_del_init(&task->list);
149 sas_free_task(task);
152 static unsigned int sas_ata_qc_issue(struct ata_queued_cmd *qc)
154 int res;
155 struct sas_task *task;
156 struct domain_device *dev = qc->ap->private_data;
157 struct sas_ha_struct *sas_ha = dev->port->ha;
158 struct Scsi_Host *host = sas_ha->core.shost;
159 struct sas_internal *i = to_sas_internal(host->transportt);
160 struct scatterlist *sg;
161 unsigned int xfer = 0;
162 unsigned int si;
164 task = sas_alloc_task(GFP_ATOMIC);
165 if (!task)
166 return AC_ERR_SYSTEM;
167 task->dev = dev;
168 task->task_proto = SAS_PROTOCOL_STP;
169 task->task_done = sas_ata_task_done;
171 if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
172 qc->tf.command == ATA_CMD_FPDMA_READ) {
173 /* Need to zero out the tag libata assigned us */
174 qc->tf.nsect = 0;
177 ata_tf_to_fis(&qc->tf, 1, 0, (u8*)&task->ata_task.fis);
178 task->uldd_task = qc;
179 if (ata_is_atapi(qc->tf.protocol)) {
180 memcpy(task->ata_task.atapi_packet, qc->cdb, qc->dev->cdb_len);
181 task->total_xfer_len = qc->nbytes;
182 task->num_scatter = qc->n_elem;
183 } else {
184 for_each_sg(qc->sg, sg, qc->n_elem, si)
185 xfer += sg->length;
187 task->total_xfer_len = xfer;
188 task->num_scatter = si;
191 task->data_dir = qc->dma_dir;
192 task->scatter = qc->sg;
193 task->ata_task.retry_count = 1;
194 task->task_state_flags = SAS_TASK_STATE_PENDING;
195 qc->lldd_task = task;
197 switch (qc->tf.protocol) {
198 case ATA_PROT_NCQ:
199 task->ata_task.use_ncq = 1;
200 /* fall through */
201 case ATAPI_PROT_DMA:
202 case ATA_PROT_DMA:
203 task->ata_task.dma_xfer = 1;
204 break;
207 if (qc->scsicmd)
208 ASSIGN_SAS_TASK(qc->scsicmd, task);
210 if (sas_ha->lldd_max_execute_num < 2)
211 res = i->dft->lldd_execute_task(task, 1, GFP_ATOMIC);
212 else
213 res = sas_queue_up(task);
215 /* Examine */
216 if (res) {
217 SAS_DPRINTK("lldd_execute_task returned: %d\n", res);
219 if (qc->scsicmd)
220 ASSIGN_SAS_TASK(qc->scsicmd, NULL);
221 sas_free_task(task);
222 return AC_ERR_SYSTEM;
225 return 0;
228 static bool sas_ata_qc_fill_rtf(struct ata_queued_cmd *qc)
230 struct domain_device *dev = qc->ap->private_data;
232 memcpy(&qc->result_tf, &dev->sata_dev.tf, sizeof(qc->result_tf));
233 return true;
236 static void sas_ata_phy_reset(struct ata_port *ap)
238 struct domain_device *dev = ap->private_data;
239 struct sas_internal *i =
240 to_sas_internal(dev->port->ha->core.shost->transportt);
241 int res = TMF_RESP_FUNC_FAILED;
243 if (i->dft->lldd_I_T_nexus_reset)
244 res = i->dft->lldd_I_T_nexus_reset(dev);
246 if (res != TMF_RESP_FUNC_COMPLETE)
247 SAS_DPRINTK("%s: Unable to reset I T nexus?\n", __func__);
249 switch (dev->sata_dev.command_set) {
250 case ATA_COMMAND_SET:
251 SAS_DPRINTK("%s: Found ATA device.\n", __func__);
252 ap->link.device[0].class = ATA_DEV_ATA;
253 break;
254 case ATAPI_COMMAND_SET:
255 SAS_DPRINTK("%s: Found ATAPI device.\n", __func__);
256 ap->link.device[0].class = ATA_DEV_ATAPI;
257 break;
258 default:
259 SAS_DPRINTK("%s: Unknown SATA command set: %d.\n",
260 __func__,
261 dev->sata_dev.command_set);
262 ap->link.device[0].class = ATA_DEV_UNKNOWN;
263 break;
266 ap->cbl = ATA_CBL_SATA;
269 static void sas_ata_post_internal(struct ata_queued_cmd *qc)
271 if (qc->flags & ATA_QCFLAG_FAILED)
272 qc->err_mask |= AC_ERR_OTHER;
274 if (qc->err_mask) {
276 * Find the sas_task and kill it. By this point,
277 * libata has decided to kill the qc, so we needn't
278 * bother with sas_ata_task_done. But we still
279 * ought to abort the task.
281 struct sas_task *task = qc->lldd_task;
282 unsigned long flags;
284 qc->lldd_task = NULL;
285 if (task) {
286 /* Should this be a AT(API) device reset? */
287 spin_lock_irqsave(&task->task_state_lock, flags);
288 task->task_state_flags |= SAS_TASK_NEED_DEV_RESET;
289 spin_unlock_irqrestore(&task->task_state_lock, flags);
291 task->uldd_task = NULL;
292 __sas_task_abort(task);
297 static int sas_ata_scr_write(struct ata_link *link, unsigned int sc_reg_in,
298 u32 val)
300 struct domain_device *dev = link->ap->private_data;
302 SAS_DPRINTK("STUB %s\n", __func__);
303 switch (sc_reg_in) {
304 case SCR_STATUS:
305 dev->sata_dev.sstatus = val;
306 break;
307 case SCR_CONTROL:
308 dev->sata_dev.scontrol = val;
309 break;
310 case SCR_ERROR:
311 dev->sata_dev.serror = val;
312 break;
313 case SCR_ACTIVE:
314 dev->sata_dev.ap->link.sactive = val;
315 break;
316 default:
317 return -EINVAL;
319 return 0;
322 static int sas_ata_scr_read(struct ata_link *link, unsigned int sc_reg_in,
323 u32 *val)
325 struct domain_device *dev = link->ap->private_data;
327 SAS_DPRINTK("STUB %s\n", __func__);
328 switch (sc_reg_in) {
329 case SCR_STATUS:
330 *val = dev->sata_dev.sstatus;
331 return 0;
332 case SCR_CONTROL:
333 *val = dev->sata_dev.scontrol;
334 return 0;
335 case SCR_ERROR:
336 *val = dev->sata_dev.serror;
337 return 0;
338 case SCR_ACTIVE:
339 *val = dev->sata_dev.ap->link.sactive;
340 return 0;
341 default:
342 return -EINVAL;
346 static struct ata_port_operations sas_sata_ops = {
347 .phy_reset = sas_ata_phy_reset,
348 .post_internal_cmd = sas_ata_post_internal,
349 .qc_prep = ata_noop_qc_prep,
350 .qc_issue = sas_ata_qc_issue,
351 .qc_fill_rtf = sas_ata_qc_fill_rtf,
352 .port_start = ata_sas_port_start,
353 .port_stop = ata_sas_port_stop,
354 .scr_read = sas_ata_scr_read,
355 .scr_write = sas_ata_scr_write
358 static struct ata_port_info sata_port_info = {
359 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | ATA_FLAG_SATA_RESET |
360 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ,
361 .pio_mask = 0x1f, /* PIO0-4 */
362 .mwdma_mask = 0x07, /* MWDMA0-2 */
363 .udma_mask = ATA_UDMA6,
364 .port_ops = &sas_sata_ops
367 int sas_ata_init_host_and_port(struct domain_device *found_dev,
368 struct scsi_target *starget)
370 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
371 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
372 struct ata_port *ap;
374 ata_host_init(&found_dev->sata_dev.ata_host,
375 ha->dev,
376 sata_port_info.flags,
377 &sas_sata_ops);
378 ap = ata_sas_port_alloc(&found_dev->sata_dev.ata_host,
379 &sata_port_info,
380 shost);
381 if (!ap) {
382 SAS_DPRINTK("ata_sas_port_alloc failed.\n");
383 return -ENODEV;
386 ap->private_data = found_dev;
387 ap->cbl = ATA_CBL_SATA;
388 ap->scsi_host = shost;
389 found_dev->sata_dev.ap = ap;
391 return 0;
394 void sas_ata_task_abort(struct sas_task *task)
396 struct ata_queued_cmd *qc = task->uldd_task;
397 struct request_queue *q = qc->scsicmd->device->request_queue;
398 struct completion *waiting;
399 unsigned long flags;
401 /* Bounce SCSI-initiated commands to the SCSI EH */
402 if (qc->scsicmd) {
403 spin_lock_irqsave(q->queue_lock, flags);
404 blk_abort_request(qc->scsicmd->request);
405 spin_unlock_irqrestore(q->queue_lock, flags);
406 scsi_schedule_eh(qc->scsicmd->device->host);
407 return;
410 /* Internal command, fake a timeout and complete. */
411 qc->flags &= ~ATA_QCFLAG_ACTIVE;
412 qc->flags |= ATA_QCFLAG_FAILED;
413 qc->err_mask |= AC_ERR_TIMEOUT;
414 waiting = qc->private_data;
415 complete(waiting);
418 static void sas_task_timedout(unsigned long _task)
420 struct sas_task *task = (void *) _task;
421 unsigned long flags;
423 spin_lock_irqsave(&task->task_state_lock, flags);
424 if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
425 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
426 spin_unlock_irqrestore(&task->task_state_lock, flags);
428 complete(&task->completion);
431 static void sas_disc_task_done(struct sas_task *task)
433 if (!del_timer(&task->timer))
434 return;
435 complete(&task->completion);
438 #define SAS_DEV_TIMEOUT 10
441 * sas_execute_task -- Basic task processing for discovery
442 * @task: the task to be executed
443 * @buffer: pointer to buffer to do I/O
444 * @size: size of @buffer
445 * @dma_dir: DMA direction. DMA_xxx
447 static int sas_execute_task(struct sas_task *task, void *buffer, int size,
448 enum dma_data_direction dma_dir)
450 int res = 0;
451 struct scatterlist *scatter = NULL;
452 struct task_status_struct *ts = &task->task_status;
453 int num_scatter = 0;
454 int retries = 0;
455 struct sas_internal *i =
456 to_sas_internal(task->dev->port->ha->core.shost->transportt);
458 if (dma_dir != DMA_NONE) {
459 scatter = kzalloc(sizeof(*scatter), GFP_KERNEL);
460 if (!scatter)
461 goto out;
463 sg_init_one(scatter, buffer, size);
464 num_scatter = 1;
467 task->task_proto = task->dev->tproto;
468 task->scatter = scatter;
469 task->num_scatter = num_scatter;
470 task->total_xfer_len = size;
471 task->data_dir = dma_dir;
472 task->task_done = sas_disc_task_done;
473 if (dma_dir != DMA_NONE &&
474 sas_protocol_ata(task->task_proto)) {
475 task->num_scatter = dma_map_sg(task->dev->port->ha->dev,
476 task->scatter,
477 task->num_scatter,
478 task->data_dir);
481 for (retries = 0; retries < 5; retries++) {
482 task->task_state_flags = SAS_TASK_STATE_PENDING;
483 init_completion(&task->completion);
485 task->timer.data = (unsigned long) task;
486 task->timer.function = sas_task_timedout;
487 task->timer.expires = jiffies + SAS_DEV_TIMEOUT*HZ;
488 add_timer(&task->timer);
490 res = i->dft->lldd_execute_task(task, 1, GFP_KERNEL);
491 if (res) {
492 del_timer(&task->timer);
493 SAS_DPRINTK("executing SAS discovery task failed:%d\n",
494 res);
495 goto ex_err;
497 wait_for_completion(&task->completion);
498 res = -ECOMM;
499 if (task->task_state_flags & SAS_TASK_STATE_ABORTED) {
500 int res2;
501 SAS_DPRINTK("task aborted, flags:0x%x\n",
502 task->task_state_flags);
503 res2 = i->dft->lldd_abort_task(task);
504 SAS_DPRINTK("came back from abort task\n");
505 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
506 if (res2 == TMF_RESP_FUNC_COMPLETE)
507 continue; /* Retry the task */
508 else
509 goto ex_err;
512 if (task->task_status.stat == SAM_BUSY ||
513 task->task_status.stat == SAM_TASK_SET_FULL ||
514 task->task_status.stat == SAS_QUEUE_FULL) {
515 SAS_DPRINTK("task: q busy, sleeping...\n");
516 schedule_timeout_interruptible(HZ);
517 } else if (task->task_status.stat == SAM_CHECK_COND) {
518 struct scsi_sense_hdr shdr;
520 if (!scsi_normalize_sense(ts->buf, ts->buf_valid_size,
521 &shdr)) {
522 SAS_DPRINTK("couldn't normalize sense\n");
523 continue;
525 if ((shdr.sense_key == 6 && shdr.asc == 0x29) ||
526 (shdr.sense_key == 2 && shdr.asc == 4 &&
527 shdr.ascq == 1)) {
528 SAS_DPRINTK("device %016llx LUN: %016llx "
529 "powering up or not ready yet, "
530 "sleeping...\n",
531 SAS_ADDR(task->dev->sas_addr),
532 SAS_ADDR(task->ssp_task.LUN));
534 schedule_timeout_interruptible(5*HZ);
535 } else if (shdr.sense_key == 1) {
536 res = 0;
537 break;
538 } else if (shdr.sense_key == 5) {
539 break;
540 } else {
541 SAS_DPRINTK("dev %016llx LUN: %016llx "
542 "sense key:0x%x ASC:0x%x ASCQ:0x%x"
543 "\n",
544 SAS_ADDR(task->dev->sas_addr),
545 SAS_ADDR(task->ssp_task.LUN),
546 shdr.sense_key,
547 shdr.asc, shdr.ascq);
549 } else if (task->task_status.resp != SAS_TASK_COMPLETE ||
550 task->task_status.stat != SAM_GOOD) {
551 SAS_DPRINTK("task finished with resp:0x%x, "
552 "stat:0x%x\n",
553 task->task_status.resp,
554 task->task_status.stat);
555 goto ex_err;
556 } else {
557 res = 0;
558 break;
561 ex_err:
562 if (dma_dir != DMA_NONE) {
563 if (sas_protocol_ata(task->task_proto))
564 dma_unmap_sg(task->dev->port->ha->dev,
565 task->scatter, task->num_scatter,
566 task->data_dir);
567 kfree(scatter);
569 out:
570 return res;
573 /* ---------- SATA ---------- */
575 static void sas_get_ata_command_set(struct domain_device *dev)
577 struct dev_to_host_fis *fis =
578 (struct dev_to_host_fis *) dev->frame_rcvd;
580 if ((fis->sector_count == 1 && /* ATA */
581 fis->lbal == 1 &&
582 fis->lbam == 0 &&
583 fis->lbah == 0 &&
584 fis->device == 0)
586 (fis->sector_count == 0 && /* CE-ATA (mATA) */
587 fis->lbal == 0 &&
588 fis->lbam == 0xCE &&
589 fis->lbah == 0xAA &&
590 (fis->device & ~0x10) == 0))
592 dev->sata_dev.command_set = ATA_COMMAND_SET;
594 else if ((fis->interrupt_reason == 1 && /* ATAPI */
595 fis->lbal == 1 &&
596 fis->byte_count_low == 0x14 &&
597 fis->byte_count_high == 0xEB &&
598 (fis->device & ~0x10) == 0))
600 dev->sata_dev.command_set = ATAPI_COMMAND_SET;
602 else if ((fis->sector_count == 1 && /* SEMB */
603 fis->lbal == 1 &&
604 fis->lbam == 0x3C &&
605 fis->lbah == 0xC3 &&
606 fis->device == 0)
608 (fis->interrupt_reason == 1 && /* SATA PM */
609 fis->lbal == 1 &&
610 fis->byte_count_low == 0x69 &&
611 fis->byte_count_high == 0x96 &&
612 (fis->device & ~0x10) == 0))
614 /* Treat it as a superset? */
615 dev->sata_dev.command_set = ATAPI_COMMAND_SET;
619 * sas_issue_ata_cmd -- Basic SATA command processing for discovery
620 * @dev: the device to send the command to
621 * @command: the command register
622 * @features: the features register
623 * @buffer: pointer to buffer to do I/O
624 * @size: size of @buffer
625 * @dma_dir: DMA direction. DMA_xxx
627 static int sas_issue_ata_cmd(struct domain_device *dev, u8 command,
628 u8 features, void *buffer, int size,
629 enum dma_data_direction dma_dir)
631 int res = 0;
632 struct sas_task *task;
633 struct dev_to_host_fis *d2h_fis = (struct dev_to_host_fis *)
634 &dev->frame_rcvd[0];
636 res = -ENOMEM;
637 task = sas_alloc_task(GFP_KERNEL);
638 if (!task)
639 goto out;
641 task->dev = dev;
643 task->ata_task.fis.fis_type = 0x27;
644 task->ata_task.fis.command = command;
645 task->ata_task.fis.features = features;
646 task->ata_task.fis.device = d2h_fis->device;
647 task->ata_task.retry_count = 1;
649 res = sas_execute_task(task, buffer, size, dma_dir);
651 sas_free_task(task);
652 out:
653 return res;
656 #define ATA_IDENTIFY_DEV 0xEC
657 #define ATA_IDENTIFY_PACKET_DEV 0xA1
658 #define ATA_SET_FEATURES 0xEF
659 #define ATA_FEATURE_PUP_STBY_SPIN_UP 0x07
662 * sas_discover_sata_dev -- discover a STP/SATA device (SATA_DEV)
663 * @dev: STP/SATA device of interest (ATA/ATAPI)
665 * The LLDD has already been notified of this device, so that we can
666 * send FISes to it. Here we try to get IDENTIFY DEVICE or IDENTIFY
667 * PACKET DEVICE, if ATAPI device, so that the LLDD can fine-tune its
668 * performance for this device.
670 static int sas_discover_sata_dev(struct domain_device *dev)
672 int res;
673 __le16 *identify_x;
674 u8 command;
676 identify_x = kzalloc(512, GFP_KERNEL);
677 if (!identify_x)
678 return -ENOMEM;
680 if (dev->sata_dev.command_set == ATA_COMMAND_SET) {
681 dev->sata_dev.identify_device = identify_x;
682 command = ATA_IDENTIFY_DEV;
683 } else {
684 dev->sata_dev.identify_packet_device = identify_x;
685 command = ATA_IDENTIFY_PACKET_DEV;
688 res = sas_issue_ata_cmd(dev, command, 0, identify_x, 512,
689 DMA_FROM_DEVICE);
690 if (res)
691 goto out_err;
693 /* lives on the media? */
694 if (le16_to_cpu(identify_x[0]) & 4) {
695 /* incomplete response */
696 SAS_DPRINTK("sending SET FEATURE/PUP_STBY_SPIN_UP to "
697 "dev %llx\n", SAS_ADDR(dev->sas_addr));
698 if (!(identify_x[83] & cpu_to_le16(1<<6)))
699 goto cont1;
700 res = sas_issue_ata_cmd(dev, ATA_SET_FEATURES,
701 ATA_FEATURE_PUP_STBY_SPIN_UP,
702 NULL, 0, DMA_NONE);
703 if (res)
704 goto cont1;
706 schedule_timeout_interruptible(5*HZ); /* More time? */
707 res = sas_issue_ata_cmd(dev, command, 0, identify_x, 512,
708 DMA_FROM_DEVICE);
709 if (res)
710 goto out_err;
712 cont1:
713 /* XXX Hint: register this SATA device with SATL.
714 When this returns, dev->sata_dev->lu is alive and
715 present.
716 sas_satl_register_dev(dev);
719 sas_fill_in_rphy(dev, dev->rphy);
721 return 0;
722 out_err:
723 dev->sata_dev.identify_packet_device = NULL;
724 dev->sata_dev.identify_device = NULL;
725 kfree(identify_x);
726 return res;
729 static int sas_discover_sata_pm(struct domain_device *dev)
731 return -ENODEV;
735 * sas_discover_sata -- discover an STP/SATA domain device
736 * @dev: pointer to struct domain_device of interest
738 * First we notify the LLDD of this device, so we can send frames to
739 * it. Then depending on the type of device we call the appropriate
740 * discover functions. Once device discover is done, we notify the
741 * LLDD so that it can fine-tune its parameters for the device, by
742 * removing it and then adding it. That is, the second time around,
743 * the driver would have certain fields, that it is looking at, set.
744 * Finally we initialize the kobj so that the device can be added to
745 * the system at registration time. Devices directly attached to a HA
746 * port, have no parents. All other devices do, and should have their
747 * "parent" pointer set appropriately before calling this function.
749 int sas_discover_sata(struct domain_device *dev)
751 int res;
753 sas_get_ata_command_set(dev);
755 res = sas_notify_lldd_dev_found(dev);
756 if (res)
757 return res;
759 switch (dev->dev_type) {
760 case SATA_DEV:
761 res = sas_discover_sata_dev(dev);
762 break;
763 case SATA_PM:
764 res = sas_discover_sata_pm(dev);
765 break;
766 default:
767 break;
769 sas_notify_lldd_dev_gone(dev);
770 if (!res) {
771 sas_notify_lldd_dev_found(dev);
772 res = sas_rphy_add(dev->rphy);
775 return res;