isci: sparse warnings cleanup
[deliverable/linux.git] / drivers / scsi / isci / remote_device.c
1 /*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
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.
17 *
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., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
55
56 #include "isci.h"
57 #include "scic_io_request.h"
58 #include "scic_remote_device.h"
59 #include "scic_phy.h"
60 #include "scic_port.h"
61 #include "port.h"
62 #include "remote_device.h"
63 #include "request.h"
64 #include "task.h"
65
66
67
68 /**
69 * isci_remote_device_deconstruct() - This function frees an isci_remote_device.
70 * @ihost: This parameter specifies the isci host object.
71 * @idev: This parameter specifies the remote device to be freed.
72 *
73 */
74 static void isci_remote_device_deconstruct(struct isci_host *ihost, struct isci_remote_device *idev)
75 {
76 dev_dbg(&ihost->pdev->dev,
77 "%s: isci_device = %p\n", __func__, idev);
78
79 /* There should not be any outstanding io's. All paths to
80 * here should go through isci_remote_device_nuke_requests.
81 * If we hit this condition, we will need a way to complete
82 * io requests in process */
83 while (!list_empty(&idev->reqs_in_process)) {
84
85 dev_err(&ihost->pdev->dev,
86 "%s: ** request list not empty! **\n", __func__);
87 BUG();
88 }
89
90 scic_remote_device_destruct(to_sci_dev(idev));
91 idev->domain_dev->lldd_dev = NULL;
92 idev->domain_dev = NULL;
93 idev->isci_port = NULL;
94 list_del_init(&idev->node);
95
96 clear_bit(IDEV_START_PENDING, &idev->flags);
97 clear_bit(IDEV_STOP_PENDING, &idev->flags);
98 wake_up(&ihost->eventq);
99 }
100
101
102 /**
103 * isci_remote_device_construct() - This function calls the scic remote device
104 * construct and start functions, it waits on the remote device start
105 * completion.
106 * @port: This parameter specifies the isci port with the remote device.
107 * @isci_device: This parameter specifies the isci remote device
108 *
109 * status from the scic calls, the caller to this function should clean up
110 * resources as appropriate.
111 */
112 static enum sci_status isci_remote_device_construct(
113 struct isci_port *port,
114 struct isci_remote_device *isci_device)
115 {
116 enum sci_status status = SCI_SUCCESS;
117
118 /* let the core do it's common constuction. */
119 scic_remote_device_construct(port->sci_port_handle,
120 to_sci_dev(isci_device));
121
122 /* let the core do it's device specific constuction. */
123 if (isci_device->domain_dev->parent &&
124 (isci_device->domain_dev->parent->dev_type == EDGE_DEV)) {
125 int i;
126
127 /* struct smp_response_discover discover_response; */
128 struct discover_resp discover_response;
129 struct domain_device *parent =
130 isci_device->domain_dev->parent;
131
132 struct expander_device *parent_ex = &parent->ex_dev;
133
134 for (i = 0; i < parent_ex->num_phys; i++) {
135
136 struct ex_phy *phy = &parent_ex->ex_phy[i];
137
138 if ((phy->phy_state == PHY_VACANT) ||
139 (phy->phy_state == PHY_NOT_PRESENT))
140 continue;
141
142 if (SAS_ADDR(phy->attached_sas_addr)
143 == SAS_ADDR(isci_device->domain_dev->sas_addr)) {
144
145 discover_response.attached_dev_type
146 = phy->attached_dev_type;
147 discover_response.linkrate
148 = phy->linkrate;
149 discover_response.attached_sata_host
150 = phy->attached_sata_host;
151 discover_response.attached_sata_dev
152 = phy->attached_sata_dev;
153 discover_response.attached_sata_ps
154 = phy->attached_sata_ps;
155 discover_response.iproto
156 = phy->attached_iproto >> 1;
157 discover_response.tproto
158 = phy->attached_tproto >> 1;
159 memcpy(
160 discover_response.attached_sas_addr,
161 phy->attached_sas_addr,
162 SAS_ADDR_SIZE
163 );
164 discover_response.attached_phy_id
165 = phy->attached_phy_id;
166 discover_response.change_count
167 = phy->phy_change_count;
168 discover_response.routing_attr
169 = phy->routing_attr;
170 discover_response.hmin_linkrate
171 = phy->phy->minimum_linkrate_hw;
172 discover_response.hmax_linkrate
173 = phy->phy->maximum_linkrate_hw;
174 discover_response.pmin_linkrate
175 = phy->phy->minimum_linkrate;
176 discover_response.pmax_linkrate
177 = phy->phy->maximum_linkrate;
178 }
179 }
180
181
182 dev_dbg(&port->isci_host->pdev->dev,
183 "%s: parent->dev_type = EDGE_DEV\n",
184 __func__);
185
186 status = scic_remote_device_ea_construct(to_sci_dev(isci_device),
187 (struct smp_response_discover *)&discover_response);
188
189 } else
190 status = scic_remote_device_da_construct(to_sci_dev(isci_device));
191
192
193 if (status != SCI_SUCCESS) {
194 dev_dbg(&port->isci_host->pdev->dev,
195 "%s: scic_remote_device_da_construct failed - "
196 "isci_device = %p\n",
197 __func__,
198 isci_device);
199
200 return status;
201 }
202
203 sci_object_set_association(to_sci_dev(isci_device), isci_device);
204
205 BUG_ON(port->isci_host == NULL);
206
207 /* start the device. */
208 status = scic_remote_device_start(to_sci_dev(isci_device),
209 ISCI_REMOTE_DEVICE_START_TIMEOUT);
210
211 if (status != SCI_SUCCESS) {
212 dev_warn(&port->isci_host->pdev->dev,
213 "%s: scic_remote_device_start failed\n",
214 __func__);
215 return status;
216 }
217
218 return status;
219 }
220
221 void isci_remote_device_nuke_requests(struct isci_host *ihost, struct isci_remote_device *idev)
222 {
223 DECLARE_COMPLETION_ONSTACK(aborted_task_completion);
224
225 dev_dbg(&ihost->pdev->dev,
226 "%s: idev = %p\n", __func__, idev);
227
228 /* Cleanup all requests pending for this device. */
229 isci_terminate_pending_requests(ihost, idev, terminating);
230
231 dev_dbg(&ihost->pdev->dev,
232 "%s: idev = %p, done\n", __func__, idev);
233 }
234
235 /**
236 * This function builds the isci_remote_device when a libsas dev_found message
237 * is received.
238 * @isci_host: This parameter specifies the isci host object.
239 * @port: This parameter specifies the isci_port conected to this device.
240 *
241 * pointer to new isci_remote_device.
242 */
243 static struct isci_remote_device *
244 isci_remote_device_alloc(struct isci_host *ihost, struct isci_port *iport)
245 {
246 struct isci_remote_device *idev;
247 int i;
248
249 for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
250 idev = idev_by_id(ihost, i);
251 if (!test_and_set_bit(IDEV_ALLOCATED, &idev->flags))
252 break;
253 }
254
255 if (i >= SCI_MAX_REMOTE_DEVICES) {
256 dev_warn(&ihost->pdev->dev, "%s: failed\n", __func__);
257 return NULL;
258 }
259
260 BUG_ON(!list_empty(&idev->reqs_in_process));
261 BUG_ON(!list_empty(&idev->node));
262 isci_remote_device_change_state(idev, isci_freed);
263
264 return idev;
265 }
266
267 /**
268 * isci_remote_device_ready() - This function is called by the scic when the
269 * remote device is ready. We mark the isci device as ready and signal the
270 * waiting proccess.
271 * @ihost: our valid isci_host
272 * @idev: remote device
273 *
274 */
275 void isci_remote_device_ready(struct isci_host *ihost, struct isci_remote_device *idev)
276 {
277 dev_dbg(&ihost->pdev->dev,
278 "%s: idev = %p\n", __func__, idev);
279
280 isci_remote_device_change_state(idev, isci_ready_for_io);
281 if (test_and_clear_bit(IDEV_START_PENDING, &idev->flags))
282 wake_up(&ihost->eventq);
283 }
284
285 /**
286 * isci_remote_device_not_ready() - This function is called by the scic when
287 * the remote device is not ready. We mark the isci device as ready (not
288 * "ready_for_io") and signal the waiting proccess.
289 * @isci_host: This parameter specifies the isci host object.
290 * @isci_device: This parameter specifies the remote device
291 *
292 */
293 void isci_remote_device_not_ready(struct isci_host *ihost,
294 struct isci_remote_device *idev, u32 reason)
295 {
296 dev_dbg(&ihost->pdev->dev,
297 "%s: isci_device = %p\n", __func__, idev);
298
299 if (reason == SCIC_REMOTE_DEVICE_NOT_READY_STOP_REQUESTED)
300 isci_remote_device_change_state(idev, isci_stopping);
301 else
302 /* device ready is actually a "not ready for io" state. */
303 isci_remote_device_change_state(idev, isci_ready);
304 }
305
306 /**
307 * isci_remote_device_stop_complete() - This function is called by the scic
308 * when the remote device stop has completed. We mark the isci device as not
309 * ready and remove the isci remote device.
310 * @isci_host: This parameter specifies the isci host object.
311 * @isci_device: This parameter specifies the remote device.
312 * @status: This parameter specifies status of the completion.
313 *
314 */
315 void isci_remote_device_stop_complete(
316 struct isci_host *isci_host,
317 struct isci_remote_device *isci_device,
318 enum sci_status status)
319 {
320 dev_dbg(&isci_host->pdev->dev,
321 "%s: complete isci_device = %p, status = 0x%x\n",
322 __func__,
323 isci_device,
324 status);
325
326 isci_remote_device_change_state(isci_device, isci_stopped);
327
328 /* after stop, we can tear down resources. */
329 isci_remote_device_deconstruct(isci_host, isci_device);
330
331 }
332
333 /**
334 * isci_remote_device_start_complete() - This function is called by the scic
335 * when the remote device start has completed
336 * @isci_host: This parameter specifies the isci host object.
337 * @isci_device: This parameter specifies the remote device.
338 * @status: This parameter specifies status of the completion.
339 *
340 */
341 void isci_remote_device_start_complete(
342 struct isci_host *isci_host,
343 struct isci_remote_device *isci_device,
344 enum sci_status status)
345 {
346
347
348 }
349
350
351 /**
352 * isci_remote_device_stop() - This function is called internally to stop the
353 * remote device.
354 * @isci_host: This parameter specifies the isci host object.
355 * @isci_device: This parameter specifies the remote device.
356 *
357 * The status of the scic request to stop.
358 */
359 enum sci_status isci_remote_device_stop(struct isci_host *ihost, struct isci_remote_device *idev)
360 {
361 enum sci_status status;
362 unsigned long flags;
363
364 dev_dbg(&ihost->pdev->dev,
365 "%s: isci_device = %p\n", __func__, idev);
366
367 isci_remote_device_change_state(idev, isci_stopping);
368
369 /* Kill all outstanding requests. */
370 isci_remote_device_nuke_requests(ihost, idev);
371
372 set_bit(IDEV_STOP_PENDING, &idev->flags);
373
374 spin_lock_irqsave(&ihost->scic_lock, flags);
375 status = scic_remote_device_stop(to_sci_dev(idev), 50);
376 spin_unlock_irqrestore(&ihost->scic_lock, flags);
377
378 /* Wait for the stop complete callback. */
379 if (status == SCI_SUCCESS) {
380 wait_for_device_stop(ihost, idev);
381 clear_bit(IDEV_ALLOCATED, &idev->flags);
382 }
383
384 dev_dbg(&ihost->pdev->dev,
385 "%s: idev = %p - after completion wait\n",
386 __func__, idev);
387
388 return status;
389 }
390
391 /**
392 * isci_remote_device_gone() - This function is called by libsas when a domain
393 * device is removed.
394 * @domain_device: This parameter specifies the libsas domain device.
395 *
396 */
397 void isci_remote_device_gone(struct domain_device *dev)
398 {
399 struct isci_host *ihost = dev_to_ihost(dev);
400 struct isci_remote_device *idev = dev->lldd_dev;
401
402 dev_dbg(&ihost->pdev->dev,
403 "%s: domain_device = %p, isci_device = %p, isci_port = %p\n",
404 __func__, dev, idev, idev->isci_port);
405
406 isci_remote_device_stop(ihost, idev);
407 }
408
409
410 /**
411 * isci_remote_device_found() - This function is called by libsas when a remote
412 * device is discovered. A remote device object is created and started. the
413 * function then sleeps until the sci core device started message is
414 * received.
415 * @domain_device: This parameter specifies the libsas domain device.
416 *
417 * status, zero indicates success.
418 */
419 int isci_remote_device_found(struct domain_device *domain_dev)
420 {
421 struct isci_host *isci_host = dev_to_ihost(domain_dev);
422 struct isci_port *isci_port;
423 struct isci_phy *isci_phy;
424 struct asd_sas_port *sas_port;
425 struct asd_sas_phy *sas_phy;
426 struct isci_remote_device *isci_device;
427 enum sci_status status;
428
429 dev_dbg(&isci_host->pdev->dev,
430 "%s: domain_device = %p\n", __func__, domain_dev);
431
432 wait_for_start(isci_host);
433
434 sas_port = domain_dev->port;
435 sas_phy = list_first_entry(&sas_port->phy_list, struct asd_sas_phy,
436 port_phy_el);
437 isci_phy = to_isci_phy(sas_phy);
438 isci_port = isci_phy->isci_port;
439
440 /* we are being called for a device on this port,
441 * so it has to come up eventually
442 */
443 wait_for_completion(&isci_port->start_complete);
444
445 if ((isci_stopping == isci_port_get_state(isci_port)) ||
446 (isci_stopped == isci_port_get_state(isci_port)))
447 return -ENODEV;
448
449 isci_device = isci_remote_device_alloc(isci_host, isci_port);
450 if (!isci_device)
451 return -ENODEV;
452
453 INIT_LIST_HEAD(&isci_device->node);
454 domain_dev->lldd_dev = isci_device;
455 isci_device->domain_dev = domain_dev;
456 isci_device->isci_port = isci_port;
457 isci_remote_device_change_state(isci_device, isci_starting);
458
459
460 spin_lock_irq(&isci_host->scic_lock);
461 list_add_tail(&isci_device->node, &isci_port->remote_dev_list);
462
463 set_bit(IDEV_START_PENDING, &isci_device->flags);
464 status = isci_remote_device_construct(isci_port, isci_device);
465 spin_unlock_irq(&isci_host->scic_lock);
466
467 dev_dbg(&isci_host->pdev->dev,
468 "%s: isci_device = %p\n",
469 __func__, isci_device);
470
471 if (status != SCI_SUCCESS) {
472
473 spin_lock_irq(&isci_host->scic_lock);
474 isci_remote_device_deconstruct(
475 isci_host,
476 isci_device
477 );
478 spin_unlock_irq(&isci_host->scic_lock);
479 return -ENODEV;
480 }
481
482 /* wait for the device ready callback. */
483 wait_for_device_start(isci_host, isci_device);
484
485 return 0;
486 }
487 /**
488 * isci_device_is_reset_pending() - This function will check if there is any
489 * pending reset condition on the device.
490 * @request: This parameter is the isci_device object.
491 *
492 * true if there is a reset pending for the device.
493 */
494 bool isci_device_is_reset_pending(
495 struct isci_host *isci_host,
496 struct isci_remote_device *isci_device)
497 {
498 struct isci_request *isci_request;
499 struct isci_request *tmp_req;
500 bool reset_is_pending = false;
501 unsigned long flags;
502
503 dev_dbg(&isci_host->pdev->dev,
504 "%s: isci_device = %p\n", __func__, isci_device);
505
506 spin_lock_irqsave(&isci_host->scic_lock, flags);
507
508 /* Check for reset on all pending requests. */
509 list_for_each_entry_safe(isci_request, tmp_req,
510 &isci_device->reqs_in_process, dev_node) {
511 dev_dbg(&isci_host->pdev->dev,
512 "%s: isci_device = %p request = %p\n",
513 __func__, isci_device, isci_request);
514
515 if (isci_request->ttype == io_task) {
516 struct sas_task *task = isci_request_access_task(
517 isci_request);
518
519 spin_lock(&task->task_state_lock);
520 if (task->task_state_flags & SAS_TASK_NEED_DEV_RESET)
521 reset_is_pending = true;
522 spin_unlock(&task->task_state_lock);
523 }
524 }
525
526 spin_unlock_irqrestore(&isci_host->scic_lock, flags);
527
528 dev_dbg(&isci_host->pdev->dev,
529 "%s: isci_device = %p reset_is_pending = %d\n",
530 __func__, isci_device, reset_is_pending);
531
532 return reset_is_pending;
533 }
534
535 /**
536 * isci_device_clear_reset_pending() - This function will clear if any pending
537 * reset condition flags on the device.
538 * @request: This parameter is the isci_device object.
539 *
540 * true if there is a reset pending for the device.
541 */
542 void isci_device_clear_reset_pending(struct isci_host *ihost, struct isci_remote_device *idev)
543 {
544 struct isci_request *isci_request;
545 struct isci_request *tmp_req;
546 unsigned long flags = 0;
547
548 dev_dbg(&ihost->pdev->dev, "%s: idev=%p, ihost=%p\n",
549 __func__, idev, ihost);
550
551 spin_lock_irqsave(&ihost->scic_lock, flags);
552
553 /* Clear reset pending on all pending requests. */
554 list_for_each_entry_safe(isci_request, tmp_req,
555 &idev->reqs_in_process, dev_node) {
556 dev_dbg(&ihost->pdev->dev, "%s: idev = %p request = %p\n",
557 __func__, idev, isci_request);
558
559 if (isci_request->ttype == io_task) {
560
561 unsigned long flags2;
562 struct sas_task *task = isci_request_access_task(
563 isci_request);
564
565 spin_lock_irqsave(&task->task_state_lock, flags2);
566 task->task_state_flags &= ~SAS_TASK_NEED_DEV_RESET;
567 spin_unlock_irqrestore(&task->task_state_lock, flags2);
568 }
569 }
570 spin_unlock_irqrestore(&ihost->scic_lock, flags);
571 }
572
573 /**
574 * isci_remote_device_change_state() - This function gets the status of the
575 * remote_device object.
576 * @isci_device: This parameter points to the isci_remote_device object
577 *
578 * status of the object as a isci_status enum.
579 */
580 void isci_remote_device_change_state(
581 struct isci_remote_device *isci_device,
582 enum isci_status status)
583 {
584 unsigned long flags;
585
586 spin_lock_irqsave(&isci_device->state_lock, flags);
587 isci_device->status = status;
588 spin_unlock_irqrestore(&isci_device->state_lock, flags);
589 }
This page took 0.0459 seconds and 6 git commands to generate.