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.
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
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.
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., 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.
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
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
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.
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.
55 #include <linux/circ_buf.h>
56 #include <linux/device.h>
62 #include "probe_roms.h"
63 #include "remote_device.h"
65 #include "scu_completion_codes.h"
66 #include "scu_event_codes.h"
67 #include "registers.h"
68 #include "scu_remote_node_context.h"
69 #include "scu_task_context.h"
71 #define SCU_CONTEXT_RAM_INIT_STALL_TIME 200
73 #define smu_max_ports(dcc_value) \
75 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_MASK) \
76 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_SHIFT) + 1 \
79 #define smu_max_task_contexts(dcc_value) \
81 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_MASK) \
82 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT) + 1 \
85 #define smu_max_rncs(dcc_value) \
87 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_MASK) \
88 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_SHIFT) + 1 \
91 #define SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT 100
96 * The number of milliseconds to wait while a given phy is consuming power
97 * before allowing another set of phys to consume power. Ultimately, this will
98 * be specified by OEM parameter.
100 #define SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL 500
103 * NORMALIZE_PUT_POINTER() -
105 * This macro will normalize the completion queue put pointer so its value can
106 * be used as an array inde
108 #define NORMALIZE_PUT_POINTER(x) \
109 ((x) & SMU_COMPLETION_QUEUE_PUT_POINTER_MASK)
113 * NORMALIZE_EVENT_POINTER() -
115 * This macro will normalize the completion queue event entry so its value can
116 * be used as an index.
118 #define NORMALIZE_EVENT_POINTER(x) \
120 ((x) & SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_MASK) \
121 >> SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_SHIFT \
125 * NORMALIZE_GET_POINTER() -
127 * This macro will normalize the completion queue get pointer so its value can
128 * be used as an index into an array
130 #define NORMALIZE_GET_POINTER(x) \
131 ((x) & SMU_COMPLETION_QUEUE_GET_POINTER_MASK)
134 * NORMALIZE_GET_POINTER_CYCLE_BIT() -
136 * This macro will normalize the completion queue cycle pointer so it matches
137 * the completion queue cycle bit
139 #define NORMALIZE_GET_POINTER_CYCLE_BIT(x) \
140 ((SMU_CQGR_CYCLE_BIT & (x)) << (31 - SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT))
143 * COMPLETION_QUEUE_CYCLE_BIT() -
145 * This macro will return the cycle bit of the completion queue entry
147 #define COMPLETION_QUEUE_CYCLE_BIT(x) ((x) & 0x80000000)
149 /* Init the state machine and call the state entry function (if any) */
150 void sci_init_sm(struct sci_base_state_machine
*sm
,
151 const struct sci_base_state
*state_table
, u32 initial_state
)
153 sci_state_transition_t handler
;
155 sm
->initial_state_id
= initial_state
;
156 sm
->previous_state_id
= initial_state
;
157 sm
->current_state_id
= initial_state
;
158 sm
->state_table
= state_table
;
160 handler
= sm
->state_table
[initial_state
].enter_state
;
165 /* Call the state exit fn, update the current state, call the state entry fn */
166 void sci_change_state(struct sci_base_state_machine
*sm
, u32 next_state
)
168 sci_state_transition_t handler
;
170 handler
= sm
->state_table
[sm
->current_state_id
].exit_state
;
174 sm
->previous_state_id
= sm
->current_state_id
;
175 sm
->current_state_id
= next_state
;
177 handler
= sm
->state_table
[sm
->current_state_id
].enter_state
;
182 static bool sci_controller_completion_queue_has_entries(struct isci_host
*ihost
)
184 u32 get_value
= ihost
->completion_queue_get
;
185 u32 get_index
= get_value
& SMU_COMPLETION_QUEUE_GET_POINTER_MASK
;
187 if (NORMALIZE_GET_POINTER_CYCLE_BIT(get_value
) ==
188 COMPLETION_QUEUE_CYCLE_BIT(ihost
->completion_queue
[get_index
]))
194 static bool sci_controller_isr(struct isci_host
*ihost
)
196 if (sci_controller_completion_queue_has_entries(ihost
)) {
200 * we have a spurious interrupt it could be that we have already
201 * emptied the completion queue from a previous interrupt */
202 writel(SMU_ISR_COMPLETION
, &ihost
->smu_registers
->interrupt_status
);
205 * There is a race in the hardware that could cause us not to be notified
206 * of an interrupt completion if we do not take this step. We will mask
207 * then unmask the interrupts so if there is another interrupt pending
208 * the clearing of the interrupt source we get the next interrupt message. */
209 writel(0xFF000000, &ihost
->smu_registers
->interrupt_mask
);
210 writel(0, &ihost
->smu_registers
->interrupt_mask
);
216 irqreturn_t
isci_msix_isr(int vec
, void *data
)
218 struct isci_host
*ihost
= data
;
220 if (sci_controller_isr(ihost
))
221 tasklet_schedule(&ihost
->completion_tasklet
);
226 static bool sci_controller_error_isr(struct isci_host
*ihost
)
228 u32 interrupt_status
;
231 readl(&ihost
->smu_registers
->interrupt_status
);
232 interrupt_status
&= (SMU_ISR_QUEUE_ERROR
| SMU_ISR_QUEUE_SUSPEND
);
234 if (interrupt_status
!= 0) {
236 * There is an error interrupt pending so let it through and handle
242 * There is a race in the hardware that could cause us not to be notified
243 * of an interrupt completion if we do not take this step. We will mask
244 * then unmask the error interrupts so if there was another interrupt
245 * pending we will be notified.
246 * Could we write the value of (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND)? */
247 writel(0xff, &ihost
->smu_registers
->interrupt_mask
);
248 writel(0, &ihost
->smu_registers
->interrupt_mask
);
253 static void sci_controller_task_completion(struct isci_host
*ihost
, u32 ent
)
255 u32 index
= SCU_GET_COMPLETION_INDEX(ent
);
256 struct isci_request
*ireq
= ihost
->reqs
[index
];
258 /* Make sure that we really want to process this IO request */
259 if (test_bit(IREQ_ACTIVE
, &ireq
->flags
) &&
260 ireq
->io_tag
!= SCI_CONTROLLER_INVALID_IO_TAG
&&
261 ISCI_TAG_SEQ(ireq
->io_tag
) == ihost
->io_request_sequence
[index
])
262 /* Yep this is a valid io request pass it along to the
265 sci_io_request_tc_completion(ireq
, ent
);
268 static void sci_controller_sdma_completion(struct isci_host
*ihost
, u32 ent
)
271 struct isci_request
*ireq
;
272 struct isci_remote_device
*idev
;
274 index
= SCU_GET_COMPLETION_INDEX(ent
);
276 switch (scu_get_command_request_type(ent
)) {
277 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC
:
278 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC
:
279 ireq
= ihost
->reqs
[index
];
280 dev_warn(&ihost
->pdev
->dev
, "%s: %x for io request %p\n",
281 __func__
, ent
, ireq
);
282 /* @todo For a post TC operation we need to fail the IO
286 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_RNC
:
287 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_OTHER_RNC
:
288 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_RNC
:
289 idev
= ihost
->device_table
[index
];
290 dev_warn(&ihost
->pdev
->dev
, "%s: %x for device %p\n",
291 __func__
, ent
, idev
);
292 /* @todo For a port RNC operation we need to fail the
297 dev_warn(&ihost
->pdev
->dev
, "%s: unknown completion type %x\n",
303 static void sci_controller_unsolicited_frame(struct isci_host
*ihost
, u32 ent
)
308 struct scu_unsolicited_frame_header
*frame_header
;
309 struct isci_phy
*iphy
;
310 struct isci_remote_device
*idev
;
312 enum sci_status result
= SCI_FAILURE
;
314 frame_index
= SCU_GET_FRAME_INDEX(ent
);
316 frame_header
= ihost
->uf_control
.buffers
.array
[frame_index
].header
;
317 ihost
->uf_control
.buffers
.array
[frame_index
].state
= UNSOLICITED_FRAME_IN_USE
;
319 if (SCU_GET_FRAME_ERROR(ent
)) {
321 * / @todo If the IAF frame or SIGNATURE FIS frame has an error will
322 * / this cause a problem? We expect the phy initialization will
323 * / fail if there is an error in the frame. */
324 sci_controller_release_frame(ihost
, frame_index
);
328 if (frame_header
->is_address_frame
) {
329 index
= SCU_GET_PROTOCOL_ENGINE_INDEX(ent
);
330 iphy
= &ihost
->phys
[index
];
331 result
= sci_phy_frame_handler(iphy
, frame_index
);
334 index
= SCU_GET_COMPLETION_INDEX(ent
);
336 if (index
== SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX
) {
338 * This is a signature fis or a frame from a direct attached SATA
339 * device that has not yet been created. In either case forwared
340 * the frame to the PE and let it take care of the frame data. */
341 index
= SCU_GET_PROTOCOL_ENGINE_INDEX(ent
);
342 iphy
= &ihost
->phys
[index
];
343 result
= sci_phy_frame_handler(iphy
, frame_index
);
345 if (index
< ihost
->remote_node_entries
)
346 idev
= ihost
->device_table
[index
];
351 result
= sci_remote_device_frame_handler(idev
, frame_index
);
353 sci_controller_release_frame(ihost
, frame_index
);
357 if (result
!= SCI_SUCCESS
) {
359 * / @todo Is there any reason to report some additional error message
360 * / when we get this failure notifiction? */
364 static void sci_controller_event_completion(struct isci_host
*ihost
, u32 ent
)
366 struct isci_remote_device
*idev
;
367 struct isci_request
*ireq
;
368 struct isci_phy
*iphy
;
371 index
= SCU_GET_COMPLETION_INDEX(ent
);
373 switch (scu_get_event_type(ent
)) {
374 case SCU_EVENT_TYPE_SMU_COMMAND_ERROR
:
375 /* / @todo The driver did something wrong and we need to fix the condtion. */
376 dev_err(&ihost
->pdev
->dev
,
377 "%s: SCIC Controller 0x%p received SMU command error "
384 case SCU_EVENT_TYPE_SMU_PCQ_ERROR
:
385 case SCU_EVENT_TYPE_SMU_ERROR
:
386 case SCU_EVENT_TYPE_FATAL_MEMORY_ERROR
:
388 * / @todo This is a hardware failure and its likely that we want to
389 * / reset the controller. */
390 dev_err(&ihost
->pdev
->dev
,
391 "%s: SCIC Controller 0x%p received fatal controller "
398 case SCU_EVENT_TYPE_TRANSPORT_ERROR
:
399 ireq
= ihost
->reqs
[index
];
400 sci_io_request_event_handler(ireq
, ent
);
403 case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT
:
404 switch (scu_get_event_specifier(ent
)) {
405 case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE
:
406 case SCU_EVENT_SPECIFIC_TASK_TIMEOUT
:
407 ireq
= ihost
->reqs
[index
];
409 sci_io_request_event_handler(ireq
, ent
);
411 dev_warn(&ihost
->pdev
->dev
,
412 "%s: SCIC Controller 0x%p received "
413 "event 0x%x for io request object "
414 "that doesnt exist.\n",
421 case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT
:
422 idev
= ihost
->device_table
[index
];
424 sci_remote_device_event_handler(idev
, ent
);
426 dev_warn(&ihost
->pdev
->dev
,
427 "%s: SCIC Controller 0x%p received "
428 "event 0x%x for remote device object "
429 "that doesnt exist.\n",
438 case SCU_EVENT_TYPE_BROADCAST_CHANGE
:
440 * direct the broadcast change event to the phy first and then let
441 * the phy redirect the broadcast change to the port object */
442 case SCU_EVENT_TYPE_ERR_CNT_EVENT
:
444 * direct error counter event to the phy object since that is where
445 * we get the event notification. This is a type 4 event. */
446 case SCU_EVENT_TYPE_OSSP_EVENT
:
447 index
= SCU_GET_PROTOCOL_ENGINE_INDEX(ent
);
448 iphy
= &ihost
->phys
[index
];
449 sci_phy_event_handler(iphy
, ent
);
452 case SCU_EVENT_TYPE_RNC_SUSPEND_TX
:
453 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX
:
454 case SCU_EVENT_TYPE_RNC_OPS_MISC
:
455 if (index
< ihost
->remote_node_entries
) {
456 idev
= ihost
->device_table
[index
];
459 sci_remote_device_event_handler(idev
, ent
);
461 dev_err(&ihost
->pdev
->dev
,
462 "%s: SCIC Controller 0x%p received event 0x%x "
463 "for remote device object 0x%0x that doesnt "
473 dev_warn(&ihost
->pdev
->dev
,
474 "%s: SCIC Controller received unknown event code %x\n",
481 static void sci_controller_process_completions(struct isci_host
*ihost
)
483 u32 completion_count
= 0;
490 dev_dbg(&ihost
->pdev
->dev
,
491 "%s: completion queue begining get:0x%08x\n",
493 ihost
->completion_queue_get
);
495 /* Get the component parts of the completion queue */
496 get_index
= NORMALIZE_GET_POINTER(ihost
->completion_queue_get
);
497 get_cycle
= SMU_CQGR_CYCLE_BIT
& ihost
->completion_queue_get
;
499 event_get
= NORMALIZE_EVENT_POINTER(ihost
->completion_queue_get
);
500 event_cycle
= SMU_CQGR_EVENT_CYCLE_BIT
& ihost
->completion_queue_get
;
503 NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle
)
504 == COMPLETION_QUEUE_CYCLE_BIT(ihost
->completion_queue
[get_index
])
508 ent
= ihost
->completion_queue
[get_index
];
510 /* increment the get pointer and check for rollover to toggle the cycle bit */
511 get_cycle
^= ((get_index
+1) & SCU_MAX_COMPLETION_QUEUE_ENTRIES
) <<
512 (SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT
- SCU_MAX_COMPLETION_QUEUE_SHIFT
);
513 get_index
= (get_index
+1) & (SCU_MAX_COMPLETION_QUEUE_ENTRIES
-1);
515 dev_dbg(&ihost
->pdev
->dev
,
516 "%s: completion queue entry:0x%08x\n",
520 switch (SCU_GET_COMPLETION_TYPE(ent
)) {
521 case SCU_COMPLETION_TYPE_TASK
:
522 sci_controller_task_completion(ihost
, ent
);
525 case SCU_COMPLETION_TYPE_SDMA
:
526 sci_controller_sdma_completion(ihost
, ent
);
529 case SCU_COMPLETION_TYPE_UFI
:
530 sci_controller_unsolicited_frame(ihost
, ent
);
533 case SCU_COMPLETION_TYPE_EVENT
:
534 case SCU_COMPLETION_TYPE_NOTIFY
: {
535 event_cycle
^= ((event_get
+1) & SCU_MAX_EVENTS
) <<
536 (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT
- SCU_MAX_EVENTS_SHIFT
);
537 event_get
= (event_get
+1) & (SCU_MAX_EVENTS
-1);
539 sci_controller_event_completion(ihost
, ent
);
543 dev_warn(&ihost
->pdev
->dev
,
544 "%s: SCIC Controller received unknown "
545 "completion type %x\n",
552 /* Update the get register if we completed one or more entries */
553 if (completion_count
> 0) {
554 ihost
->completion_queue_get
=
555 SMU_CQGR_GEN_BIT(ENABLE
) |
556 SMU_CQGR_GEN_BIT(EVENT_ENABLE
) |
558 SMU_CQGR_GEN_VAL(EVENT_POINTER
, event_get
) |
560 SMU_CQGR_GEN_VAL(POINTER
, get_index
);
562 writel(ihost
->completion_queue_get
,
563 &ihost
->smu_registers
->completion_queue_get
);
567 dev_dbg(&ihost
->pdev
->dev
,
568 "%s: completion queue ending get:0x%08x\n",
570 ihost
->completion_queue_get
);
574 static void sci_controller_error_handler(struct isci_host
*ihost
)
576 u32 interrupt_status
;
579 readl(&ihost
->smu_registers
->interrupt_status
);
581 if ((interrupt_status
& SMU_ISR_QUEUE_SUSPEND
) &&
582 sci_controller_completion_queue_has_entries(ihost
)) {
584 sci_controller_process_completions(ihost
);
585 writel(SMU_ISR_QUEUE_SUSPEND
, &ihost
->smu_registers
->interrupt_status
);
587 dev_err(&ihost
->pdev
->dev
, "%s: status: %#x\n", __func__
,
590 sci_change_state(&ihost
->sm
, SCIC_FAILED
);
595 /* If we dont process any completions I am not sure that we want to do this.
596 * We are in the middle of a hardware fault and should probably be reset.
598 writel(0, &ihost
->smu_registers
->interrupt_mask
);
601 irqreturn_t
isci_intx_isr(int vec
, void *data
)
603 irqreturn_t ret
= IRQ_NONE
;
604 struct isci_host
*ihost
= data
;
606 if (sci_controller_isr(ihost
)) {
607 writel(SMU_ISR_COMPLETION
, &ihost
->smu_registers
->interrupt_status
);
608 tasklet_schedule(&ihost
->completion_tasklet
);
610 } else if (sci_controller_error_isr(ihost
)) {
611 spin_lock(&ihost
->scic_lock
);
612 sci_controller_error_handler(ihost
);
613 spin_unlock(&ihost
->scic_lock
);
620 irqreturn_t
isci_error_isr(int vec
, void *data
)
622 struct isci_host
*ihost
= data
;
624 if (sci_controller_error_isr(ihost
))
625 sci_controller_error_handler(ihost
);
631 * isci_host_start_complete() - This function is called by the core library,
632 * through the ISCI Module, to indicate controller start status.
633 * @isci_host: This parameter specifies the ISCI host object
634 * @completion_status: This parameter specifies the completion status from the
638 static void isci_host_start_complete(struct isci_host
*ihost
, enum sci_status completion_status
)
640 if (completion_status
!= SCI_SUCCESS
)
641 dev_info(&ihost
->pdev
->dev
,
642 "controller start timed out, continuing...\n");
643 isci_host_change_state(ihost
, isci_ready
);
644 clear_bit(IHOST_START_PENDING
, &ihost
->flags
);
645 wake_up(&ihost
->eventq
);
648 int isci_host_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
650 struct isci_host
*ihost
= SHOST_TO_SAS_HA(shost
)->lldd_ha
;
652 if (test_bit(IHOST_START_PENDING
, &ihost
->flags
))
655 /* todo: use sas_flush_discovery once it is upstream */
656 scsi_flush_work(shost
);
658 scsi_flush_work(shost
);
660 dev_dbg(&ihost
->pdev
->dev
,
661 "%s: ihost->status = %d, time = %ld\n",
662 __func__
, isci_host_get_state(ihost
), time
);
669 * sci_controller_get_suggested_start_timeout() - This method returns the
670 * suggested sci_controller_start() timeout amount. The user is free to
671 * use any timeout value, but this method provides the suggested minimum
672 * start timeout value. The returned value is based upon empirical
673 * information determined as a result of interoperability testing.
674 * @controller: the handle to the controller object for which to return the
675 * suggested start timeout.
677 * This method returns the number of milliseconds for the suggested start
680 static u32
sci_controller_get_suggested_start_timeout(struct isci_host
*ihost
)
682 /* Validate the user supplied parameters. */
687 * The suggested minimum timeout value for a controller start operation:
689 * Signature FIS Timeout
690 * + Phy Start Timeout
691 * + Number of Phy Spin Up Intervals
692 * ---------------------------------
693 * Number of milliseconds for the controller start operation.
695 * NOTE: The number of phy spin up intervals will be equivalent
696 * to the number of phys divided by the number phys allowed
697 * per interval - 1 (once OEM parameters are supported).
698 * Currently we assume only 1 phy per interval. */
700 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
701 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
702 + ((SCI_MAX_PHYS
- 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL
);
705 static void sci_controller_enable_interrupts(struct isci_host
*ihost
)
707 BUG_ON(ihost
->smu_registers
== NULL
);
708 writel(0, &ihost
->smu_registers
->interrupt_mask
);
711 void sci_controller_disable_interrupts(struct isci_host
*ihost
)
713 BUG_ON(ihost
->smu_registers
== NULL
);
714 writel(0xffffffff, &ihost
->smu_registers
->interrupt_mask
);
717 static void sci_controller_enable_port_task_scheduler(struct isci_host
*ihost
)
719 u32 port_task_scheduler_value
;
721 port_task_scheduler_value
=
722 readl(&ihost
->scu_registers
->peg0
.ptsg
.control
);
723 port_task_scheduler_value
|=
724 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE
) |
725 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE
));
726 writel(port_task_scheduler_value
,
727 &ihost
->scu_registers
->peg0
.ptsg
.control
);
730 static void sci_controller_assign_task_entries(struct isci_host
*ihost
)
735 * Assign all the TCs to function 0
736 * TODO: Do we actually need to read this register to write it back?
740 readl(&ihost
->smu_registers
->task_context_assignment
[0]);
742 task_assignment
|= (SMU_TCA_GEN_VAL(STARTING
, 0)) |
743 (SMU_TCA_GEN_VAL(ENDING
, ihost
->task_context_entries
- 1)) |
744 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE
));
746 writel(task_assignment
,
747 &ihost
->smu_registers
->task_context_assignment
[0]);
751 static void sci_controller_initialize_completion_queue(struct isci_host
*ihost
)
754 u32 completion_queue_control_value
;
755 u32 completion_queue_get_value
;
756 u32 completion_queue_put_value
;
758 ihost
->completion_queue_get
= 0;
760 completion_queue_control_value
=
761 (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES
- 1) |
762 SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS
- 1));
764 writel(completion_queue_control_value
,
765 &ihost
->smu_registers
->completion_queue_control
);
768 /* Set the completion queue get pointer and enable the queue */
769 completion_queue_get_value
= (
770 (SMU_CQGR_GEN_VAL(POINTER
, 0))
771 | (SMU_CQGR_GEN_VAL(EVENT_POINTER
, 0))
772 | (SMU_CQGR_GEN_BIT(ENABLE
))
773 | (SMU_CQGR_GEN_BIT(EVENT_ENABLE
))
776 writel(completion_queue_get_value
,
777 &ihost
->smu_registers
->completion_queue_get
);
779 /* Set the completion queue put pointer */
780 completion_queue_put_value
= (
781 (SMU_CQPR_GEN_VAL(POINTER
, 0))
782 | (SMU_CQPR_GEN_VAL(EVENT_POINTER
, 0))
785 writel(completion_queue_put_value
,
786 &ihost
->smu_registers
->completion_queue_put
);
788 /* Initialize the cycle bit of the completion queue entries */
789 for (index
= 0; index
< SCU_MAX_COMPLETION_QUEUE_ENTRIES
; index
++) {
791 * If get.cycle_bit != completion_queue.cycle_bit
792 * its not a valid completion queue entry
793 * so at system start all entries are invalid */
794 ihost
->completion_queue
[index
] = 0x80000000;
798 static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host
*ihost
)
800 u32 frame_queue_control_value
;
801 u32 frame_queue_get_value
;
802 u32 frame_queue_put_value
;
804 /* Write the queue size */
805 frame_queue_control_value
=
806 SCU_UFQC_GEN_VAL(QUEUE_SIZE
, SCU_MAX_UNSOLICITED_FRAMES
);
808 writel(frame_queue_control_value
,
809 &ihost
->scu_registers
->sdma
.unsolicited_frame_queue_control
);
811 /* Setup the get pointer for the unsolicited frame queue */
812 frame_queue_get_value
= (
813 SCU_UFQGP_GEN_VAL(POINTER
, 0)
814 | SCU_UFQGP_GEN_BIT(ENABLE_BIT
)
817 writel(frame_queue_get_value
,
818 &ihost
->scu_registers
->sdma
.unsolicited_frame_get_pointer
);
819 /* Setup the put pointer for the unsolicited frame queue */
820 frame_queue_put_value
= SCU_UFQPP_GEN_VAL(POINTER
, 0);
821 writel(frame_queue_put_value
,
822 &ihost
->scu_registers
->sdma
.unsolicited_frame_put_pointer
);
825 static void sci_controller_transition_to_ready(struct isci_host
*ihost
, enum sci_status status
)
827 if (ihost
->sm
.current_state_id
== SCIC_STARTING
) {
829 * We move into the ready state, because some of the phys/ports
830 * may be up and operational.
832 sci_change_state(&ihost
->sm
, SCIC_READY
);
834 isci_host_start_complete(ihost
, status
);
838 static bool is_phy_starting(struct isci_phy
*iphy
)
840 enum sci_phy_states state
;
842 state
= iphy
->sm
.current_state_id
;
844 case SCI_PHY_STARTING
:
845 case SCI_PHY_SUB_INITIAL
:
846 case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN
:
847 case SCI_PHY_SUB_AWAIT_IAF_UF
:
848 case SCI_PHY_SUB_AWAIT_SAS_POWER
:
849 case SCI_PHY_SUB_AWAIT_SATA_POWER
:
850 case SCI_PHY_SUB_AWAIT_SATA_PHY_EN
:
851 case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN
:
852 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF
:
853 case SCI_PHY_SUB_FINAL
:
861 * sci_controller_start_next_phy - start phy
864 * If all the phys have been started, then attempt to transition the
865 * controller to the READY state and inform the user
866 * (sci_cb_controller_start_complete()).
868 static enum sci_status
sci_controller_start_next_phy(struct isci_host
*ihost
)
870 struct sci_oem_params
*oem
= &ihost
->oem_parameters
;
871 struct isci_phy
*iphy
;
872 enum sci_status status
;
874 status
= SCI_SUCCESS
;
876 if (ihost
->phy_startup_timer_pending
)
879 if (ihost
->next_phy_to_start
>= SCI_MAX_PHYS
) {
880 bool is_controller_start_complete
= true;
884 for (index
= 0; index
< SCI_MAX_PHYS
; index
++) {
885 iphy
= &ihost
->phys
[index
];
886 state
= iphy
->sm
.current_state_id
;
888 if (!phy_get_non_dummy_port(iphy
))
891 /* The controller start operation is complete iff:
892 * - all links have been given an opportunity to start
893 * - have no indication of a connected device
894 * - have an indication of a connected device and it has
895 * finished the link training process.
897 if ((iphy
->is_in_link_training
== false && state
== SCI_PHY_INITIAL
) ||
898 (iphy
->is_in_link_training
== false && state
== SCI_PHY_STOPPED
) ||
899 (iphy
->is_in_link_training
== true && is_phy_starting(iphy
))) {
900 is_controller_start_complete
= false;
906 * The controller has successfully finished the start process.
907 * Inform the SCI Core user and transition to the READY state. */
908 if (is_controller_start_complete
== true) {
909 sci_controller_transition_to_ready(ihost
, SCI_SUCCESS
);
910 sci_del_timer(&ihost
->phy_timer
);
911 ihost
->phy_startup_timer_pending
= false;
914 iphy
= &ihost
->phys
[ihost
->next_phy_to_start
];
916 if (oem
->controller
.mode_type
== SCIC_PORT_MANUAL_CONFIGURATION_MODE
) {
917 if (phy_get_non_dummy_port(iphy
) == NULL
) {
918 ihost
->next_phy_to_start
++;
920 /* Caution recursion ahead be forwarned
922 * The PHY was never added to a PORT in MPC mode
923 * so start the next phy in sequence This phy
924 * will never go link up and will not draw power
925 * the OEM parameters either configured the phy
926 * incorrectly for the PORT or it was never
929 return sci_controller_start_next_phy(ihost
);
933 status
= sci_phy_start(iphy
);
935 if (status
== SCI_SUCCESS
) {
936 sci_mod_timer(&ihost
->phy_timer
,
937 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
);
938 ihost
->phy_startup_timer_pending
= true;
940 dev_warn(&ihost
->pdev
->dev
,
941 "%s: Controller stop operation failed "
942 "to stop phy %d because of status "
945 ihost
->phys
[ihost
->next_phy_to_start
].phy_index
,
949 ihost
->next_phy_to_start
++;
955 static void phy_startup_timeout(unsigned long data
)
957 struct sci_timer
*tmr
= (struct sci_timer
*)data
;
958 struct isci_host
*ihost
= container_of(tmr
, typeof(*ihost
), phy_timer
);
960 enum sci_status status
;
962 spin_lock_irqsave(&ihost
->scic_lock
, flags
);
967 ihost
->phy_startup_timer_pending
= false;
970 status
= sci_controller_start_next_phy(ihost
);
971 } while (status
!= SCI_SUCCESS
);
974 spin_unlock_irqrestore(&ihost
->scic_lock
, flags
);
977 static u16
isci_tci_active(struct isci_host
*ihost
)
979 return CIRC_CNT(ihost
->tci_head
, ihost
->tci_tail
, SCI_MAX_IO_REQUESTS
);
982 static enum sci_status
sci_controller_start(struct isci_host
*ihost
,
985 enum sci_status result
;
988 if (ihost
->sm
.current_state_id
!= SCIC_INITIALIZED
) {
989 dev_warn(&ihost
->pdev
->dev
,
990 "SCIC Controller start operation requested in "
992 return SCI_FAILURE_INVALID_STATE
;
995 /* Build the TCi free pool */
996 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS
> 1 << sizeof(ihost
->tci_pool
[0]) * 8);
999 for (index
= 0; index
< ihost
->task_context_entries
; index
++)
1000 isci_tci_free(ihost
, index
);
1002 /* Build the RNi free pool */
1003 sci_remote_node_table_initialize(&ihost
->available_remote_nodes
,
1004 ihost
->remote_node_entries
);
1007 * Before anything else lets make sure we will not be
1008 * interrupted by the hardware.
1010 sci_controller_disable_interrupts(ihost
);
1012 /* Enable the port task scheduler */
1013 sci_controller_enable_port_task_scheduler(ihost
);
1015 /* Assign all the task entries to ihost physical function */
1016 sci_controller_assign_task_entries(ihost
);
1018 /* Now initialize the completion queue */
1019 sci_controller_initialize_completion_queue(ihost
);
1021 /* Initialize the unsolicited frame queue for use */
1022 sci_controller_initialize_unsolicited_frame_queue(ihost
);
1024 /* Start all of the ports on this controller */
1025 for (index
= 0; index
< ihost
->logical_port_entries
; index
++) {
1026 struct isci_port
*iport
= &ihost
->ports
[index
];
1028 result
= sci_port_start(iport
);
1033 sci_controller_start_next_phy(ihost
);
1035 sci_mod_timer(&ihost
->timer
, timeout
);
1037 sci_change_state(&ihost
->sm
, SCIC_STARTING
);
1042 void isci_host_scan_start(struct Scsi_Host
*shost
)
1044 struct isci_host
*ihost
= SHOST_TO_SAS_HA(shost
)->lldd_ha
;
1045 unsigned long tmo
= sci_controller_get_suggested_start_timeout(ihost
);
1047 set_bit(IHOST_START_PENDING
, &ihost
->flags
);
1049 spin_lock_irq(&ihost
->scic_lock
);
1050 sci_controller_start(ihost
, tmo
);
1051 sci_controller_enable_interrupts(ihost
);
1052 spin_unlock_irq(&ihost
->scic_lock
);
1055 static void isci_host_stop_complete(struct isci_host
*ihost
, enum sci_status completion_status
)
1057 isci_host_change_state(ihost
, isci_stopped
);
1058 sci_controller_disable_interrupts(ihost
);
1059 clear_bit(IHOST_STOP_PENDING
, &ihost
->flags
);
1060 wake_up(&ihost
->eventq
);
1063 static void sci_controller_completion_handler(struct isci_host
*ihost
)
1065 /* Empty out the completion queue */
1066 if (sci_controller_completion_queue_has_entries(ihost
))
1067 sci_controller_process_completions(ihost
);
1069 /* Clear the interrupt and enable all interrupts again */
1070 writel(SMU_ISR_COMPLETION
, &ihost
->smu_registers
->interrupt_status
);
1071 /* Could we write the value of SMU_ISR_COMPLETION? */
1072 writel(0xFF000000, &ihost
->smu_registers
->interrupt_mask
);
1073 writel(0, &ihost
->smu_registers
->interrupt_mask
);
1077 * isci_host_completion_routine() - This function is the delayed service
1078 * routine that calls the sci core library's completion handler. It's
1079 * scheduled as a tasklet from the interrupt service routine when interrupts
1080 * in use, or set as the timeout function in polled mode.
1081 * @data: This parameter specifies the ISCI host object
1084 static void isci_host_completion_routine(unsigned long data
)
1086 struct isci_host
*ihost
= (struct isci_host
*)data
;
1087 struct list_head completed_request_list
;
1088 struct list_head errored_request_list
;
1089 struct list_head
*current_position
;
1090 struct list_head
*next_position
;
1091 struct isci_request
*request
;
1092 struct isci_request
*next_request
;
1093 struct sas_task
*task
;
1095 INIT_LIST_HEAD(&completed_request_list
);
1096 INIT_LIST_HEAD(&errored_request_list
);
1098 spin_lock_irq(&ihost
->scic_lock
);
1100 sci_controller_completion_handler(ihost
);
1102 /* Take the lists of completed I/Os from the host. */
1104 list_splice_init(&ihost
->requests_to_complete
,
1105 &completed_request_list
);
1107 /* Take the list of errored I/Os from the host. */
1108 list_splice_init(&ihost
->requests_to_errorback
,
1109 &errored_request_list
);
1111 spin_unlock_irq(&ihost
->scic_lock
);
1113 /* Process any completions in the lists. */
1114 list_for_each_safe(current_position
, next_position
,
1115 &completed_request_list
) {
1117 request
= list_entry(current_position
, struct isci_request
,
1119 task
= isci_request_access_task(request
);
1121 /* Normal notification (task_done) */
1122 dev_dbg(&ihost
->pdev
->dev
,
1123 "%s: Normal - request/task = %p/%p\n",
1128 /* Return the task to libsas */
1131 task
->lldd_task
= NULL
;
1132 if (!(task
->task_state_flags
& SAS_TASK_STATE_ABORTED
)) {
1134 /* If the task is already in the abort path,
1135 * the task_done callback cannot be called.
1137 task
->task_done(task
);
1141 spin_lock_irq(&ihost
->scic_lock
);
1142 isci_free_tag(ihost
, request
->io_tag
);
1143 spin_unlock_irq(&ihost
->scic_lock
);
1145 list_for_each_entry_safe(request
, next_request
, &errored_request_list
,
1148 task
= isci_request_access_task(request
);
1150 /* Use sas_task_abort */
1151 dev_warn(&ihost
->pdev
->dev
,
1152 "%s: Error - request/task = %p/%p\n",
1159 /* Put the task into the abort path if it's not there
1162 if (!(task
->task_state_flags
& SAS_TASK_STATE_ABORTED
))
1163 sas_task_abort(task
);
1166 /* This is a case where the request has completed with a
1167 * status such that it needed further target servicing,
1168 * but the sas_task reference has already been removed
1169 * from the request. Since it was errored, it was not
1170 * being aborted, so there is nothing to do except free
1174 spin_lock_irq(&ihost
->scic_lock
);
1175 /* Remove the request from the remote device's list
1176 * of pending requests.
1178 list_del_init(&request
->dev_node
);
1179 isci_free_tag(ihost
, request
->io_tag
);
1180 spin_unlock_irq(&ihost
->scic_lock
);
1187 * sci_controller_stop() - This method will stop an individual controller
1188 * object.This method will invoke the associated user callback upon
1189 * completion. The completion callback is called when the following
1190 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1191 * controller has been quiesced. This method will ensure that all IO
1192 * requests are quiesced, phys are stopped, and all additional operation by
1193 * the hardware is halted.
1194 * @controller: the handle to the controller object to stop.
1195 * @timeout: This parameter specifies the number of milliseconds in which the
1196 * stop operation should complete.
1198 * The controller must be in the STARTED or STOPPED state. Indicate if the
1199 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1200 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1201 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1202 * controller is not either in the STARTED or STOPPED states.
1204 static enum sci_status
sci_controller_stop(struct isci_host
*ihost
, u32 timeout
)
1206 if (ihost
->sm
.current_state_id
!= SCIC_READY
) {
1207 dev_warn(&ihost
->pdev
->dev
,
1208 "SCIC Controller stop operation requested in "
1210 return SCI_FAILURE_INVALID_STATE
;
1213 sci_mod_timer(&ihost
->timer
, timeout
);
1214 sci_change_state(&ihost
->sm
, SCIC_STOPPING
);
1219 * sci_controller_reset() - This method will reset the supplied core
1220 * controller regardless of the state of said controller. This operation is
1221 * considered destructive. In other words, all current operations are wiped
1222 * out. No IO completions for outstanding devices occur. Outstanding IO
1223 * requests are not aborted or completed at the actual remote device.
1224 * @controller: the handle to the controller object to reset.
1226 * Indicate if the controller reset method succeeded or failed in some way.
1227 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1228 * the controller reset operation is unable to complete.
1230 static enum sci_status
sci_controller_reset(struct isci_host
*ihost
)
1232 switch (ihost
->sm
.current_state_id
) {
1238 * The reset operation is not a graceful cleanup, just
1239 * perform the state transition.
1241 sci_change_state(&ihost
->sm
, SCIC_RESETTING
);
1244 dev_warn(&ihost
->pdev
->dev
,
1245 "SCIC Controller reset operation requested in "
1247 return SCI_FAILURE_INVALID_STATE
;
1251 void isci_host_deinit(struct isci_host
*ihost
)
1255 isci_host_change_state(ihost
, isci_stopping
);
1256 for (i
= 0; i
< SCI_MAX_PORTS
; i
++) {
1257 struct isci_port
*iport
= &ihost
->ports
[i
];
1258 struct isci_remote_device
*idev
, *d
;
1260 list_for_each_entry_safe(idev
, d
, &iport
->remote_dev_list
, node
) {
1261 if (test_bit(IDEV_ALLOCATED
, &idev
->flags
))
1262 isci_remote_device_stop(ihost
, idev
);
1266 set_bit(IHOST_STOP_PENDING
, &ihost
->flags
);
1268 spin_lock_irq(&ihost
->scic_lock
);
1269 sci_controller_stop(ihost
, SCIC_CONTROLLER_STOP_TIMEOUT
);
1270 spin_unlock_irq(&ihost
->scic_lock
);
1272 wait_for_stop(ihost
);
1273 sci_controller_reset(ihost
);
1275 /* Cancel any/all outstanding port timers */
1276 for (i
= 0; i
< ihost
->logical_port_entries
; i
++) {
1277 struct isci_port
*iport
= &ihost
->ports
[i
];
1278 del_timer_sync(&iport
->timer
.timer
);
1281 /* Cancel any/all outstanding phy timers */
1282 for (i
= 0; i
< SCI_MAX_PHYS
; i
++) {
1283 struct isci_phy
*iphy
= &ihost
->phys
[i
];
1284 del_timer_sync(&iphy
->sata_timer
.timer
);
1287 del_timer_sync(&ihost
->port_agent
.timer
.timer
);
1289 del_timer_sync(&ihost
->power_control
.timer
.timer
);
1291 del_timer_sync(&ihost
->timer
.timer
);
1293 del_timer_sync(&ihost
->phy_timer
.timer
);
1296 static void __iomem
*scu_base(struct isci_host
*isci_host
)
1298 struct pci_dev
*pdev
= isci_host
->pdev
;
1299 int id
= isci_host
->id
;
1301 return pcim_iomap_table(pdev
)[SCI_SCU_BAR
* 2] + SCI_SCU_BAR_SIZE
* id
;
1304 static void __iomem
*smu_base(struct isci_host
*isci_host
)
1306 struct pci_dev
*pdev
= isci_host
->pdev
;
1307 int id
= isci_host
->id
;
1309 return pcim_iomap_table(pdev
)[SCI_SMU_BAR
* 2] + SCI_SMU_BAR_SIZE
* id
;
1312 static void isci_user_parameters_get(struct sci_user_parameters
*u
)
1316 for (i
= 0; i
< SCI_MAX_PHYS
; i
++) {
1317 struct sci_phy_user_params
*u_phy
= &u
->phys
[i
];
1319 u_phy
->max_speed_generation
= phy_gen
;
1321 /* we are not exporting these for now */
1322 u_phy
->align_insertion_frequency
= 0x7f;
1323 u_phy
->in_connection_align_insertion_frequency
= 0xff;
1324 u_phy
->notify_enable_spin_up_insertion_frequency
= 0x33;
1327 u
->stp_inactivity_timeout
= stp_inactive_to
;
1328 u
->ssp_inactivity_timeout
= ssp_inactive_to
;
1329 u
->stp_max_occupancy_timeout
= stp_max_occ_to
;
1330 u
->ssp_max_occupancy_timeout
= ssp_max_occ_to
;
1331 u
->no_outbound_task_timeout
= no_outbound_task_to
;
1332 u
->max_number_concurrent_device_spin_up
= max_concurr_spinup
;
1335 static void sci_controller_initial_state_enter(struct sci_base_state_machine
*sm
)
1337 struct isci_host
*ihost
= container_of(sm
, typeof(*ihost
), sm
);
1339 sci_change_state(&ihost
->sm
, SCIC_RESET
);
1342 static inline void sci_controller_starting_state_exit(struct sci_base_state_machine
*sm
)
1344 struct isci_host
*ihost
= container_of(sm
, typeof(*ihost
), sm
);
1346 sci_del_timer(&ihost
->timer
);
1349 #define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1350 #define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1351 #define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1352 #define INTERRUPT_COALESCE_NUMBER_MAX 256
1353 #define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1354 #define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1357 * sci_controller_set_interrupt_coalescence() - This method allows the user to
1358 * configure the interrupt coalescence.
1359 * @controller: This parameter represents the handle to the controller object
1360 * for which its interrupt coalesce register is overridden.
1361 * @coalesce_number: Used to control the number of entries in the Completion
1362 * Queue before an interrupt is generated. If the number of entries exceed
1363 * this number, an interrupt will be generated. The valid range of the input
1364 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1365 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1366 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1367 * interrupt coalescing timeout.
1369 * Indicate if the user successfully set the interrupt coalesce parameters.
1370 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1371 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1373 static enum sci_status
1374 sci_controller_set_interrupt_coalescence(struct isci_host
*ihost
,
1375 u32 coalesce_number
,
1376 u32 coalesce_timeout
)
1378 u8 timeout_encode
= 0;
1382 /* Check if the input parameters fall in the range. */
1383 if (coalesce_number
> INTERRUPT_COALESCE_NUMBER_MAX
)
1384 return SCI_FAILURE_INVALID_PARAMETER_VALUE
;
1387 * Defined encoding for interrupt coalescing timeout:
1388 * Value Min Max Units
1389 * ----- --- --- -----
1419 * Others Undefined */
1422 * Use the table above to decide the encode of interrupt coalescing timeout
1423 * value for register writing. */
1424 if (coalesce_timeout
== 0)
1427 /* make the timeout value in unit of (10 ns). */
1428 coalesce_timeout
= coalesce_timeout
* 100;
1429 min
= INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS
/ 10;
1430 max
= INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS
/ 10;
1432 /* get the encode of timeout for register writing. */
1433 for (timeout_encode
= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN
;
1434 timeout_encode
<= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX
;
1436 if (min
<= coalesce_timeout
&& max
> coalesce_timeout
)
1438 else if (coalesce_timeout
>= max
&& coalesce_timeout
< min
* 2
1439 && coalesce_timeout
<= INTERRUPT_COALESCE_TIMEOUT_MAX_US
* 100) {
1440 if ((coalesce_timeout
- max
) < (2 * min
- coalesce_timeout
))
1452 if (timeout_encode
== INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX
+ 1)
1453 /* the value is out of range. */
1454 return SCI_FAILURE_INVALID_PARAMETER_VALUE
;
1457 writel(SMU_ICC_GEN_VAL(NUMBER
, coalesce_number
) |
1458 SMU_ICC_GEN_VAL(TIMER
, timeout_encode
),
1459 &ihost
->smu_registers
->interrupt_coalesce_control
);
1462 ihost
->interrupt_coalesce_number
= (u16
)coalesce_number
;
1463 ihost
->interrupt_coalesce_timeout
= coalesce_timeout
/ 100;
1469 static void sci_controller_ready_state_enter(struct sci_base_state_machine
*sm
)
1471 struct isci_host
*ihost
= container_of(sm
, typeof(*ihost
), sm
);
1473 /* set the default interrupt coalescence number and timeout value. */
1474 sci_controller_set_interrupt_coalescence(ihost
, 0x10, 250);
1477 static void sci_controller_ready_state_exit(struct sci_base_state_machine
*sm
)
1479 struct isci_host
*ihost
= container_of(sm
, typeof(*ihost
), sm
);
1481 /* disable interrupt coalescence. */
1482 sci_controller_set_interrupt_coalescence(ihost
, 0, 0);
1485 static enum sci_status
sci_controller_stop_phys(struct isci_host
*ihost
)
1488 enum sci_status status
;
1489 enum sci_status phy_status
;
1491 status
= SCI_SUCCESS
;
1493 for (index
= 0; index
< SCI_MAX_PHYS
; index
++) {
1494 phy_status
= sci_phy_stop(&ihost
->phys
[index
]);
1496 if (phy_status
!= SCI_SUCCESS
&&
1497 phy_status
!= SCI_FAILURE_INVALID_STATE
) {
1498 status
= SCI_FAILURE
;
1500 dev_warn(&ihost
->pdev
->dev
,
1501 "%s: Controller stop operation failed to stop "
1502 "phy %d because of status %d.\n",
1504 ihost
->phys
[index
].phy_index
, phy_status
);
1511 static enum sci_status
sci_controller_stop_ports(struct isci_host
*ihost
)
1514 enum sci_status port_status
;
1515 enum sci_status status
= SCI_SUCCESS
;
1517 for (index
= 0; index
< ihost
->logical_port_entries
; index
++) {
1518 struct isci_port
*iport
= &ihost
->ports
[index
];
1520 port_status
= sci_port_stop(iport
);
1522 if ((port_status
!= SCI_SUCCESS
) &&
1523 (port_status
!= SCI_FAILURE_INVALID_STATE
)) {
1524 status
= SCI_FAILURE
;
1526 dev_warn(&ihost
->pdev
->dev
,
1527 "%s: Controller stop operation failed to "
1528 "stop port %d because of status %d.\n",
1530 iport
->logical_port_index
,
1538 static enum sci_status
sci_controller_stop_devices(struct isci_host
*ihost
)
1541 enum sci_status status
;
1542 enum sci_status device_status
;
1544 status
= SCI_SUCCESS
;
1546 for (index
= 0; index
< ihost
->remote_node_entries
; index
++) {
1547 if (ihost
->device_table
[index
] != NULL
) {
1548 /* / @todo What timeout value do we want to provide to this request? */
1549 device_status
= sci_remote_device_stop(ihost
->device_table
[index
], 0);
1551 if ((device_status
!= SCI_SUCCESS
) &&
1552 (device_status
!= SCI_FAILURE_INVALID_STATE
)) {
1553 dev_warn(&ihost
->pdev
->dev
,
1554 "%s: Controller stop operation failed "
1555 "to stop device 0x%p because of "
1558 ihost
->device_table
[index
], device_status
);
1566 static void sci_controller_stopping_state_enter(struct sci_base_state_machine
*sm
)
1568 struct isci_host
*ihost
= container_of(sm
, typeof(*ihost
), sm
);
1570 /* Stop all of the components for this controller */
1571 sci_controller_stop_phys(ihost
);
1572 sci_controller_stop_ports(ihost
);
1573 sci_controller_stop_devices(ihost
);
1576 static void sci_controller_stopping_state_exit(struct sci_base_state_machine
*sm
)
1578 struct isci_host
*ihost
= container_of(sm
, typeof(*ihost
), sm
);
1580 sci_del_timer(&ihost
->timer
);
1583 static void sci_controller_reset_hardware(struct isci_host
*ihost
)
1585 /* Disable interrupts so we dont take any spurious interrupts */
1586 sci_controller_disable_interrupts(ihost
);
1589 writel(0xFFFFFFFF, &ihost
->smu_registers
->soft_reset_control
);
1591 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1594 /* The write to the CQGR clears the CQP */
1595 writel(0x00000000, &ihost
->smu_registers
->completion_queue_get
);
1597 /* The write to the UFQGP clears the UFQPR */
1598 writel(0, &ihost
->scu_registers
->sdma
.unsolicited_frame_get_pointer
);
1601 static void sci_controller_resetting_state_enter(struct sci_base_state_machine
*sm
)
1603 struct isci_host
*ihost
= container_of(sm
, typeof(*ihost
), sm
);
1605 sci_controller_reset_hardware(ihost
);
1606 sci_change_state(&ihost
->sm
, SCIC_RESET
);
1609 static const struct sci_base_state sci_controller_state_table
[] = {
1611 .enter_state
= sci_controller_initial_state_enter
,
1614 [SCIC_INITIALIZING
] = {},
1615 [SCIC_INITIALIZED
] = {},
1617 .exit_state
= sci_controller_starting_state_exit
,
1620 .enter_state
= sci_controller_ready_state_enter
,
1621 .exit_state
= sci_controller_ready_state_exit
,
1623 [SCIC_RESETTING
] = {
1624 .enter_state
= sci_controller_resetting_state_enter
,
1627 .enter_state
= sci_controller_stopping_state_enter
,
1628 .exit_state
= sci_controller_stopping_state_exit
,
1630 [SCIC_STOPPED
] = {},
1634 static void sci_controller_set_default_config_parameters(struct isci_host
*ihost
)
1636 /* these defaults are overridden by the platform / firmware */
1639 /* Default to APC mode. */
1640 ihost
->oem_parameters
.controller
.mode_type
= SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE
;
1642 /* Default to APC mode. */
1643 ihost
->oem_parameters
.controller
.max_concurrent_dev_spin_up
= 1;
1645 /* Default to no SSC operation. */
1646 ihost
->oem_parameters
.controller
.do_enable_ssc
= false;
1648 /* Initialize all of the port parameter information to narrow ports. */
1649 for (index
= 0; index
< SCI_MAX_PORTS
; index
++) {
1650 ihost
->oem_parameters
.ports
[index
].phy_mask
= 0;
1653 /* Initialize all of the phy parameter information. */
1654 for (index
= 0; index
< SCI_MAX_PHYS
; index
++) {
1655 /* Default to 6G (i.e. Gen 3) for now. */
1656 ihost
->user_parameters
.phys
[index
].max_speed_generation
= 3;
1658 /* the frequencies cannot be 0 */
1659 ihost
->user_parameters
.phys
[index
].align_insertion_frequency
= 0x7f;
1660 ihost
->user_parameters
.phys
[index
].in_connection_align_insertion_frequency
= 0xff;
1661 ihost
->user_parameters
.phys
[index
].notify_enable_spin_up_insertion_frequency
= 0x33;
1664 * Previous Vitesse based expanders had a arbitration issue that
1665 * is worked around by having the upper 32-bits of SAS address
1666 * with a value greater then the Vitesse company identifier.
1667 * Hence, usage of 0x5FCFFFFF. */
1668 ihost
->oem_parameters
.phys
[index
].sas_address
.low
= 0x1 + ihost
->id
;
1669 ihost
->oem_parameters
.phys
[index
].sas_address
.high
= 0x5FCFFFFF;
1672 ihost
->user_parameters
.stp_inactivity_timeout
= 5;
1673 ihost
->user_parameters
.ssp_inactivity_timeout
= 5;
1674 ihost
->user_parameters
.stp_max_occupancy_timeout
= 5;
1675 ihost
->user_parameters
.ssp_max_occupancy_timeout
= 20;
1676 ihost
->user_parameters
.no_outbound_task_timeout
= 20;
1679 static void controller_timeout(unsigned long data
)
1681 struct sci_timer
*tmr
= (struct sci_timer
*)data
;
1682 struct isci_host
*ihost
= container_of(tmr
, typeof(*ihost
), timer
);
1683 struct sci_base_state_machine
*sm
= &ihost
->sm
;
1684 unsigned long flags
;
1686 spin_lock_irqsave(&ihost
->scic_lock
, flags
);
1691 if (sm
->current_state_id
== SCIC_STARTING
)
1692 sci_controller_transition_to_ready(ihost
, SCI_FAILURE_TIMEOUT
);
1693 else if (sm
->current_state_id
== SCIC_STOPPING
) {
1694 sci_change_state(sm
, SCIC_FAILED
);
1695 isci_host_stop_complete(ihost
, SCI_FAILURE_TIMEOUT
);
1696 } else /* / @todo Now what do we want to do in this case? */
1697 dev_err(&ihost
->pdev
->dev
,
1698 "%s: Controller timer fired when controller was not "
1699 "in a state being timed.\n",
1703 spin_unlock_irqrestore(&ihost
->scic_lock
, flags
);
1706 static enum sci_status
sci_controller_construct(struct isci_host
*ihost
,
1707 void __iomem
*scu_base
,
1708 void __iomem
*smu_base
)
1712 sci_init_sm(&ihost
->sm
, sci_controller_state_table
, SCIC_INITIAL
);
1714 ihost
->scu_registers
= scu_base
;
1715 ihost
->smu_registers
= smu_base
;
1717 sci_port_configuration_agent_construct(&ihost
->port_agent
);
1719 /* Construct the ports for this controller */
1720 for (i
= 0; i
< SCI_MAX_PORTS
; i
++)
1721 sci_port_construct(&ihost
->ports
[i
], i
, ihost
);
1722 sci_port_construct(&ihost
->ports
[i
], SCIC_SDS_DUMMY_PORT
, ihost
);
1724 /* Construct the phys for this controller */
1725 for (i
= 0; i
< SCI_MAX_PHYS
; i
++) {
1726 /* Add all the PHYs to the dummy port */
1727 sci_phy_construct(&ihost
->phys
[i
],
1728 &ihost
->ports
[SCI_MAX_PORTS
], i
);
1731 ihost
->invalid_phy_mask
= 0;
1733 sci_init_timer(&ihost
->timer
, controller_timeout
);
1735 /* Initialize the User and OEM parameters to default values. */
1736 sci_controller_set_default_config_parameters(ihost
);
1738 return sci_controller_reset(ihost
);
1741 int sci_oem_parameters_validate(struct sci_oem_params
*oem
)
1745 for (i
= 0; i
< SCI_MAX_PORTS
; i
++)
1746 if (oem
->ports
[i
].phy_mask
> SCIC_SDS_PARM_PHY_MASK_MAX
)
1749 for (i
= 0; i
< SCI_MAX_PHYS
; i
++)
1750 if (oem
->phys
[i
].sas_address
.high
== 0 &&
1751 oem
->phys
[i
].sas_address
.low
== 0)
1754 if (oem
->controller
.mode_type
== SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE
) {
1755 for (i
= 0; i
< SCI_MAX_PHYS
; i
++)
1756 if (oem
->ports
[i
].phy_mask
!= 0)
1758 } else if (oem
->controller
.mode_type
== SCIC_PORT_MANUAL_CONFIGURATION_MODE
) {
1761 for (i
= 0; i
< SCI_MAX_PHYS
; i
++)
1762 phy_mask
|= oem
->ports
[i
].phy_mask
;
1769 if (oem
->controller
.max_concurrent_dev_spin_up
> MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT
)
1775 static enum sci_status
sci_oem_parameters_set(struct isci_host
*ihost
)
1777 u32 state
= ihost
->sm
.current_state_id
;
1779 if (state
== SCIC_RESET
||
1780 state
== SCIC_INITIALIZING
||
1781 state
== SCIC_INITIALIZED
) {
1783 if (sci_oem_parameters_validate(&ihost
->oem_parameters
))
1784 return SCI_FAILURE_INVALID_PARAMETER_VALUE
;
1789 return SCI_FAILURE_INVALID_STATE
;
1792 static void power_control_timeout(unsigned long data
)
1794 struct sci_timer
*tmr
= (struct sci_timer
*)data
;
1795 struct isci_host
*ihost
= container_of(tmr
, typeof(*ihost
), power_control
.timer
);
1796 struct isci_phy
*iphy
;
1797 unsigned long flags
;
1800 spin_lock_irqsave(&ihost
->scic_lock
, flags
);
1805 ihost
->power_control
.phys_granted_power
= 0;
1807 if (ihost
->power_control
.phys_waiting
== 0) {
1808 ihost
->power_control
.timer_started
= false;
1812 for (i
= 0; i
< SCI_MAX_PHYS
; i
++) {
1814 if (ihost
->power_control
.phys_waiting
== 0)
1817 iphy
= ihost
->power_control
.requesters
[i
];
1821 if (ihost
->power_control
.phys_granted_power
>=
1822 ihost
->oem_parameters
.controller
.max_concurrent_dev_spin_up
)
1825 ihost
->power_control
.requesters
[i
] = NULL
;
1826 ihost
->power_control
.phys_waiting
--;
1827 ihost
->power_control
.phys_granted_power
++;
1828 sci_phy_consume_power_handler(iphy
);
1832 * It doesn't matter if the power list is empty, we need to start the
1833 * timer in case another phy becomes ready.
1835 sci_mod_timer(tmr
, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL
);
1836 ihost
->power_control
.timer_started
= true;
1839 spin_unlock_irqrestore(&ihost
->scic_lock
, flags
);
1842 void sci_controller_power_control_queue_insert(struct isci_host
*ihost
,
1843 struct isci_phy
*iphy
)
1845 BUG_ON(iphy
== NULL
);
1847 if (ihost
->power_control
.phys_granted_power
<
1848 ihost
->oem_parameters
.controller
.max_concurrent_dev_spin_up
) {
1849 ihost
->power_control
.phys_granted_power
++;
1850 sci_phy_consume_power_handler(iphy
);
1853 * stop and start the power_control timer. When the timer fires, the
1854 * no_of_phys_granted_power will be set to 0
1856 if (ihost
->power_control
.timer_started
)
1857 sci_del_timer(&ihost
->power_control
.timer
);
1859 sci_mod_timer(&ihost
->power_control
.timer
,
1860 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL
);
1861 ihost
->power_control
.timer_started
= true;
1864 /* Add the phy in the waiting list */
1865 ihost
->power_control
.requesters
[iphy
->phy_index
] = iphy
;
1866 ihost
->power_control
.phys_waiting
++;
1870 void sci_controller_power_control_queue_remove(struct isci_host
*ihost
,
1871 struct isci_phy
*iphy
)
1873 BUG_ON(iphy
== NULL
);
1875 if (ihost
->power_control
.requesters
[iphy
->phy_index
])
1876 ihost
->power_control
.phys_waiting
--;
1878 ihost
->power_control
.requesters
[iphy
->phy_index
] = NULL
;
1881 #define AFE_REGISTER_WRITE_DELAY 10
1883 /* Initialize the AFE for this phy index. We need to read the AFE setup from
1884 * the OEM parameters
1886 static void sci_controller_afe_initialization(struct isci_host
*ihost
)
1888 const struct sci_oem_params
*oem
= &ihost
->oem_parameters
;
1889 struct pci_dev
*pdev
= ihost
->pdev
;
1893 /* Clear DFX Status registers */
1894 writel(0x0081000f, &ihost
->scu_registers
->afe
.afe_dfx_master_control0
);
1895 udelay(AFE_REGISTER_WRITE_DELAY
);
1898 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
1899 * Timer, PM Stagger Timer */
1900 writel(0x0007BFFF, &ihost
->scu_registers
->afe
.afe_pmsn_master_control2
);
1901 udelay(AFE_REGISTER_WRITE_DELAY
);
1904 /* Configure bias currents to normal */
1906 writel(0x00005A00, &ihost
->scu_registers
->afe
.afe_bias_control
);
1907 else if (is_b0(pdev
) || is_c0(pdev
))
1908 writel(0x00005F00, &ihost
->scu_registers
->afe
.afe_bias_control
);
1910 udelay(AFE_REGISTER_WRITE_DELAY
);
1913 if (is_b0(pdev
) || is_c0(pdev
))
1914 writel(0x80040A08, &ihost
->scu_registers
->afe
.afe_pll_control0
);
1916 writel(0x80040908, &ihost
->scu_registers
->afe
.afe_pll_control0
);
1918 udelay(AFE_REGISTER_WRITE_DELAY
);
1920 /* Wait for the PLL to lock */
1922 afe_status
= readl(&ihost
->scu_registers
->afe
.afe_common_block_status
);
1923 udelay(AFE_REGISTER_WRITE_DELAY
);
1924 } while ((afe_status
& 0x00001000) == 0);
1927 /* Shorten SAS SNW lock time (RxLock timer value from 76 us to 50 us) */
1928 writel(0x7bcc96ad, &ihost
->scu_registers
->afe
.afe_pmsn_master_control0
);
1929 udelay(AFE_REGISTER_WRITE_DELAY
);
1932 for (phy_id
= 0; phy_id
< SCI_MAX_PHYS
; phy_id
++) {
1933 const struct sci_phy_oem_params
*oem_phy
= &oem
->phys
[phy_id
];
1936 /* Configure transmitter SSC parameters */
1937 writel(0x00030000, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_ssc_control
);
1938 udelay(AFE_REGISTER_WRITE_DELAY
);
1939 } else if (is_c0(pdev
)) {
1940 /* Configure transmitter SSC parameters */
1941 writel(0x0003000, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_ssc_control
);
1942 udelay(AFE_REGISTER_WRITE_DELAY
);
1945 * All defaults, except the Receive Word Alignament/Comma Detect
1946 * Enable....(0xe800) */
1947 writel(0x00004500, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_xcvr_control0
);
1948 udelay(AFE_REGISTER_WRITE_DELAY
);
1951 * All defaults, except the Receive Word Alignament/Comma Detect
1952 * Enable....(0xe800) */
1953 writel(0x00004512, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_xcvr_control0
);
1954 udelay(AFE_REGISTER_WRITE_DELAY
);
1956 writel(0x0050100F, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_xcvr_control1
);
1957 udelay(AFE_REGISTER_WRITE_DELAY
);
1961 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1962 * & increase TX int & ext bias 20%....(0xe85c) */
1964 writel(0x000003F0, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_channel_control
);
1965 else if (is_b0(pdev
)) {
1966 /* Power down TX and RX (PWRDNTX and PWRDNRX) */
1967 writel(0x000003D7, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_channel_control
);
1968 udelay(AFE_REGISTER_WRITE_DELAY
);
1971 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1972 * & increase TX int & ext bias 20%....(0xe85c) */
1973 writel(0x000003D4, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_channel_control
);
1975 writel(0x000001E7, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_channel_control
);
1976 udelay(AFE_REGISTER_WRITE_DELAY
);
1979 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1980 * & increase TX int & ext bias 20%....(0xe85c) */
1981 writel(0x000001E4, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_channel_control
);
1983 udelay(AFE_REGISTER_WRITE_DELAY
);
1986 /* Enable TX equalization (0xe824) */
1987 writel(0x00040000, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_control
);
1988 udelay(AFE_REGISTER_WRITE_DELAY
);
1992 * RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0, TPD=0x0(TX Power On),
1993 * RDD=0x0(RX Detect Enabled) ....(0xe800) */
1994 writel(0x00004100, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_xcvr_control0
);
1995 udelay(AFE_REGISTER_WRITE_DELAY
);
1997 /* Leave DFE/FFE on */
1999 writel(0x3F11103F, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_rx_ssc_control0
);
2000 else if (is_b0(pdev
)) {
2001 writel(0x3F11103F, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_rx_ssc_control0
);
2002 udelay(AFE_REGISTER_WRITE_DELAY
);
2003 /* Enable TX equalization (0xe824) */
2004 writel(0x00040000, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_control
);
2006 writel(0x0140DF0F, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_rx_ssc_control1
);
2007 udelay(AFE_REGISTER_WRITE_DELAY
);
2009 writel(0x3F6F103F, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_rx_ssc_control0
);
2010 udelay(AFE_REGISTER_WRITE_DELAY
);
2012 /* Enable TX equalization (0xe824) */
2013 writel(0x00040000, &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_control
);
2016 udelay(AFE_REGISTER_WRITE_DELAY
);
2018 writel(oem_phy
->afe_tx_amp_control0
,
2019 &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_amp_control0
);
2020 udelay(AFE_REGISTER_WRITE_DELAY
);
2022 writel(oem_phy
->afe_tx_amp_control1
,
2023 &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_amp_control1
);
2024 udelay(AFE_REGISTER_WRITE_DELAY
);
2026 writel(oem_phy
->afe_tx_amp_control2
,
2027 &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_amp_control2
);
2028 udelay(AFE_REGISTER_WRITE_DELAY
);
2030 writel(oem_phy
->afe_tx_amp_control3
,
2031 &ihost
->scu_registers
->afe
.scu_afe_xcvr
[phy_id
].afe_tx_amp_control3
);
2032 udelay(AFE_REGISTER_WRITE_DELAY
);
2035 /* Transfer control to the PEs */
2036 writel(0x00010f00, &ihost
->scu_registers
->afe
.afe_dfx_master_control0
);
2037 udelay(AFE_REGISTER_WRITE_DELAY
);
2040 static void sci_controller_initialize_power_control(struct isci_host
*ihost
)
2042 sci_init_timer(&ihost
->power_control
.timer
, power_control_timeout
);
2044 memset(ihost
->power_control
.requesters
, 0,
2045 sizeof(ihost
->power_control
.requesters
));
2047 ihost
->power_control
.phys_waiting
= 0;
2048 ihost
->power_control
.phys_granted_power
= 0;
2051 static enum sci_status
sci_controller_initialize(struct isci_host
*ihost
)
2053 struct sci_base_state_machine
*sm
= &ihost
->sm
;
2054 enum sci_status result
= SCI_FAILURE
;
2055 unsigned long i
, state
, val
;
2057 if (ihost
->sm
.current_state_id
!= SCIC_RESET
) {
2058 dev_warn(&ihost
->pdev
->dev
,
2059 "SCIC Controller initialize operation requested "
2060 "in invalid state\n");
2061 return SCI_FAILURE_INVALID_STATE
;
2064 sci_change_state(sm
, SCIC_INITIALIZING
);
2066 sci_init_timer(&ihost
->phy_timer
, phy_startup_timeout
);
2068 ihost
->next_phy_to_start
= 0;
2069 ihost
->phy_startup_timer_pending
= false;
2071 sci_controller_initialize_power_control(ihost
);
2074 * There is nothing to do here for B0 since we do not have to
2075 * program the AFE registers.
2076 * / @todo The AFE settings are supposed to be correct for the B0 but
2077 * / presently they seem to be wrong. */
2078 sci_controller_afe_initialization(ihost
);
2081 /* Take the hardware out of reset */
2082 writel(0, &ihost
->smu_registers
->soft_reset_control
);
2085 * / @todo Provide meaningfull error code for hardware failure
2086 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2087 for (i
= 100; i
>= 1; i
--) {
2090 /* Loop until the hardware reports success */
2091 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME
);
2092 status
= readl(&ihost
->smu_registers
->control_status
);
2094 if ((status
& SCU_RAM_INIT_COMPLETED
) == SCU_RAM_INIT_COMPLETED
)
2101 * Determine what are the actaul device capacities that the
2102 * hardware will support */
2103 val
= readl(&ihost
->smu_registers
->device_context_capacity
);
2105 /* Record the smaller of the two capacity values */
2106 ihost
->logical_port_entries
= min(smu_max_ports(val
), SCI_MAX_PORTS
);
2107 ihost
->task_context_entries
= min(smu_max_task_contexts(val
), SCI_MAX_IO_REQUESTS
);
2108 ihost
->remote_node_entries
= min(smu_max_rncs(val
), SCI_MAX_REMOTE_DEVICES
);
2111 * Make all PEs that are unassigned match up with the
2114 for (i
= 0; i
< ihost
->logical_port_entries
; i
++) {
2115 struct scu_port_task_scheduler_group_registers __iomem
2116 *ptsg
= &ihost
->scu_registers
->peg0
.ptsg
;
2118 writel(i
, &ptsg
->protocol_engine
[i
]);
2121 /* Initialize hardware PCI Relaxed ordering in DMA engines */
2122 val
= readl(&ihost
->scu_registers
->sdma
.pdma_configuration
);
2123 val
|= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE
);
2124 writel(val
, &ihost
->scu_registers
->sdma
.pdma_configuration
);
2126 val
= readl(&ihost
->scu_registers
->sdma
.cdma_configuration
);
2127 val
|= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE
);
2128 writel(val
, &ihost
->scu_registers
->sdma
.cdma_configuration
);
2131 * Initialize the PHYs before the PORTs because the PHY registers
2132 * are accessed during the port initialization.
2134 for (i
= 0; i
< SCI_MAX_PHYS
; i
++) {
2135 result
= sci_phy_initialize(&ihost
->phys
[i
],
2136 &ihost
->scu_registers
->peg0
.pe
[i
].tl
,
2137 &ihost
->scu_registers
->peg0
.pe
[i
].ll
);
2138 if (result
!= SCI_SUCCESS
)
2142 for (i
= 0; i
< ihost
->logical_port_entries
; i
++) {
2143 struct isci_port
*iport
= &ihost
->ports
[i
];
2145 iport
->port_task_scheduler_registers
= &ihost
->scu_registers
->peg0
.ptsg
.port
[i
];
2146 iport
->port_pe_configuration_register
= &ihost
->scu_registers
->peg0
.ptsg
.protocol_engine
[0];
2147 iport
->viit_registers
= &ihost
->scu_registers
->peg0
.viit
[i
];
2150 result
= sci_port_configuration_agent_initialize(ihost
, &ihost
->port_agent
);
2153 /* Advance the controller state machine */
2154 if (result
== SCI_SUCCESS
)
2155 state
= SCIC_INITIALIZED
;
2157 state
= SCIC_FAILED
;
2158 sci_change_state(sm
, state
);
2163 static enum sci_status
sci_user_parameters_set(struct isci_host
*ihost
,
2164 struct sci_user_parameters
*sci_parms
)
2166 u32 state
= ihost
->sm
.current_state_id
;
2168 if (state
== SCIC_RESET
||
2169 state
== SCIC_INITIALIZING
||
2170 state
== SCIC_INITIALIZED
) {
2174 * Validate the user parameters. If they are not legal, then
2177 for (index
= 0; index
< SCI_MAX_PHYS
; index
++) {
2178 struct sci_phy_user_params
*user_phy
;
2180 user_phy
= &sci_parms
->phys
[index
];
2182 if (!((user_phy
->max_speed_generation
<=
2183 SCIC_SDS_PARM_MAX_SPEED
) &&
2184 (user_phy
->max_speed_generation
>
2185 SCIC_SDS_PARM_NO_SPEED
)))
2186 return SCI_FAILURE_INVALID_PARAMETER_VALUE
;
2188 if (user_phy
->in_connection_align_insertion_frequency
<
2190 return SCI_FAILURE_INVALID_PARAMETER_VALUE
;
2192 if ((user_phy
->in_connection_align_insertion_frequency
<
2194 (user_phy
->align_insertion_frequency
== 0) ||
2196 notify_enable_spin_up_insertion_frequency
==
2198 return SCI_FAILURE_INVALID_PARAMETER_VALUE
;
2201 if ((sci_parms
->stp_inactivity_timeout
== 0) ||
2202 (sci_parms
->ssp_inactivity_timeout
== 0) ||
2203 (sci_parms
->stp_max_occupancy_timeout
== 0) ||
2204 (sci_parms
->ssp_max_occupancy_timeout
== 0) ||
2205 (sci_parms
->no_outbound_task_timeout
== 0))
2206 return SCI_FAILURE_INVALID_PARAMETER_VALUE
;
2208 memcpy(&ihost
->user_parameters
, sci_parms
, sizeof(*sci_parms
));
2213 return SCI_FAILURE_INVALID_STATE
;
2216 static int sci_controller_mem_init(struct isci_host
*ihost
)
2218 struct device
*dev
= &ihost
->pdev
->dev
;
2223 size
= SCU_MAX_COMPLETION_QUEUE_ENTRIES
* sizeof(u32
);
2224 ihost
->completion_queue
= dmam_alloc_coherent(dev
, size
, &dma
, GFP_KERNEL
);
2225 if (!ihost
->completion_queue
)
2228 writel(lower_32_bits(dma
), &ihost
->smu_registers
->completion_queue_lower
);
2229 writel(upper_32_bits(dma
), &ihost
->smu_registers
->completion_queue_upper
);
2231 size
= ihost
->remote_node_entries
* sizeof(union scu_remote_node_context
);
2232 ihost
->remote_node_context_table
= dmam_alloc_coherent(dev
, size
, &dma
,
2234 if (!ihost
->remote_node_context_table
)
2237 writel(lower_32_bits(dma
), &ihost
->smu_registers
->remote_node_context_lower
);
2238 writel(upper_32_bits(dma
), &ihost
->smu_registers
->remote_node_context_upper
);
2240 size
= ihost
->task_context_entries
* sizeof(struct scu_task_context
),
2241 ihost
->task_context_table
= dmam_alloc_coherent(dev
, size
, &dma
, GFP_KERNEL
);
2242 if (!ihost
->task_context_table
)
2245 ihost
->task_context_dma
= dma
;
2246 writel(lower_32_bits(dma
), &ihost
->smu_registers
->host_task_table_lower
);
2247 writel(upper_32_bits(dma
), &ihost
->smu_registers
->host_task_table_upper
);
2249 err
= sci_unsolicited_frame_control_construct(ihost
);
2254 * Inform the silicon as to the location of the UF headers and
2257 writel(lower_32_bits(ihost
->uf_control
.headers
.physical_address
),
2258 &ihost
->scu_registers
->sdma
.uf_header_base_address_lower
);
2259 writel(upper_32_bits(ihost
->uf_control
.headers
.physical_address
),
2260 &ihost
->scu_registers
->sdma
.uf_header_base_address_upper
);
2262 writel(lower_32_bits(ihost
->uf_control
.address_table
.physical_address
),
2263 &ihost
->scu_registers
->sdma
.uf_address_table_lower
);
2264 writel(upper_32_bits(ihost
->uf_control
.address_table
.physical_address
),
2265 &ihost
->scu_registers
->sdma
.uf_address_table_upper
);
2270 int isci_host_init(struct isci_host
*ihost
)
2273 enum sci_status status
;
2274 struct sci_user_parameters sci_user_params
;
2275 struct isci_pci_info
*pci_info
= to_pci_info(ihost
->pdev
);
2277 spin_lock_init(&ihost
->state_lock
);
2278 spin_lock_init(&ihost
->scic_lock
);
2279 init_waitqueue_head(&ihost
->eventq
);
2281 isci_host_change_state(ihost
, isci_starting
);
2283 status
= sci_controller_construct(ihost
, scu_base(ihost
),
2286 if (status
!= SCI_SUCCESS
) {
2287 dev_err(&ihost
->pdev
->dev
,
2288 "%s: sci_controller_construct failed - status = %x\n",
2294 ihost
->sas_ha
.dev
= &ihost
->pdev
->dev
;
2295 ihost
->sas_ha
.lldd_ha
= ihost
;
2298 * grab initial values stored in the controller object for OEM and USER
2301 isci_user_parameters_get(&sci_user_params
);
2302 status
= sci_user_parameters_set(ihost
, &sci_user_params
);
2303 if (status
!= SCI_SUCCESS
) {
2304 dev_warn(&ihost
->pdev
->dev
,
2305 "%s: sci_user_parameters_set failed\n",
2310 /* grab any OEM parameters specified in orom */
2311 if (pci_info
->orom
) {
2312 status
= isci_parse_oem_parameters(&ihost
->oem_parameters
,
2315 if (status
!= SCI_SUCCESS
) {
2316 dev_warn(&ihost
->pdev
->dev
,
2317 "parsing firmware oem parameters failed\n");
2322 status
= sci_oem_parameters_set(ihost
);
2323 if (status
!= SCI_SUCCESS
) {
2324 dev_warn(&ihost
->pdev
->dev
,
2325 "%s: sci_oem_parameters_set failed\n",
2330 tasklet_init(&ihost
->completion_tasklet
,
2331 isci_host_completion_routine
, (unsigned long)ihost
);
2333 INIT_LIST_HEAD(&ihost
->requests_to_complete
);
2334 INIT_LIST_HEAD(&ihost
->requests_to_errorback
);
2336 spin_lock_irq(&ihost
->scic_lock
);
2337 status
= sci_controller_initialize(ihost
);
2338 spin_unlock_irq(&ihost
->scic_lock
);
2339 if (status
!= SCI_SUCCESS
) {
2340 dev_warn(&ihost
->pdev
->dev
,
2341 "%s: sci_controller_initialize failed -"
2347 err
= sci_controller_mem_init(ihost
);
2351 for (i
= 0; i
< SCI_MAX_PORTS
; i
++)
2352 isci_port_init(&ihost
->ports
[i
], ihost
, i
);
2354 for (i
= 0; i
< SCI_MAX_PHYS
; i
++)
2355 isci_phy_init(&ihost
->phys
[i
], ihost
, i
);
2357 for (i
= 0; i
< SCI_MAX_REMOTE_DEVICES
; i
++) {
2358 struct isci_remote_device
*idev
= &ihost
->devices
[i
];
2360 INIT_LIST_HEAD(&idev
->reqs_in_process
);
2361 INIT_LIST_HEAD(&idev
->node
);
2364 for (i
= 0; i
< SCI_MAX_IO_REQUESTS
; i
++) {
2365 struct isci_request
*ireq
;
2368 ireq
= dmam_alloc_coherent(&ihost
->pdev
->dev
,
2369 sizeof(struct isci_request
), &dma
,
2374 ireq
->tc
= &ihost
->task_context_table
[i
];
2375 ireq
->owning_controller
= ihost
;
2376 spin_lock_init(&ireq
->state_lock
);
2377 ireq
->request_daddr
= dma
;
2378 ireq
->isci_host
= ihost
;
2379 ihost
->reqs
[i
] = ireq
;
2385 void sci_controller_link_up(struct isci_host
*ihost
, struct isci_port
*iport
,
2386 struct isci_phy
*iphy
)
2388 switch (ihost
->sm
.current_state_id
) {
2390 sci_del_timer(&ihost
->phy_timer
);
2391 ihost
->phy_startup_timer_pending
= false;
2392 ihost
->port_agent
.link_up_handler(ihost
, &ihost
->port_agent
,
2394 sci_controller_start_next_phy(ihost
);
2397 ihost
->port_agent
.link_up_handler(ihost
, &ihost
->port_agent
,
2401 dev_dbg(&ihost
->pdev
->dev
,
2402 "%s: SCIC Controller linkup event from phy %d in "
2403 "unexpected state %d\n", __func__
, iphy
->phy_index
,
2404 ihost
->sm
.current_state_id
);
2408 void sci_controller_link_down(struct isci_host
*ihost
, struct isci_port
*iport
,
2409 struct isci_phy
*iphy
)
2411 switch (ihost
->sm
.current_state_id
) {
2414 ihost
->port_agent
.link_down_handler(ihost
, &ihost
->port_agent
,
2418 dev_dbg(&ihost
->pdev
->dev
,
2419 "%s: SCIC Controller linkdown event from phy %d in "
2420 "unexpected state %d\n",
2423 ihost
->sm
.current_state_id
);
2427 static bool sci_controller_has_remote_devices_stopping(struct isci_host
*ihost
)
2431 for (index
= 0; index
< ihost
->remote_node_entries
; index
++) {
2432 if ((ihost
->device_table
[index
] != NULL
) &&
2433 (ihost
->device_table
[index
]->sm
.current_state_id
== SCI_DEV_STOPPING
))
2440 void sci_controller_remote_device_stopped(struct isci_host
*ihost
,
2441 struct isci_remote_device
*idev
)
2443 if (ihost
->sm
.current_state_id
!= SCIC_STOPPING
) {
2444 dev_dbg(&ihost
->pdev
->dev
,
2445 "SCIC Controller 0x%p remote device stopped event "
2446 "from device 0x%p in unexpected state %d\n",
2448 ihost
->sm
.current_state_id
);
2452 if (!sci_controller_has_remote_devices_stopping(ihost
))
2453 sci_change_state(&ihost
->sm
, SCIC_STOPPED
);
2456 void sci_controller_post_request(struct isci_host
*ihost
, u32 request
)
2458 dev_dbg(&ihost
->pdev
->dev
, "%s[%d]: %#x\n",
2459 __func__
, ihost
->id
, request
);
2461 writel(request
, &ihost
->smu_registers
->post_context_port
);
2464 struct isci_request
*sci_request_by_tag(struct isci_host
*ihost
, u16 io_tag
)
2469 task_index
= ISCI_TAG_TCI(io_tag
);
2471 if (task_index
< ihost
->task_context_entries
) {
2472 struct isci_request
*ireq
= ihost
->reqs
[task_index
];
2474 if (test_bit(IREQ_ACTIVE
, &ireq
->flags
)) {
2475 task_sequence
= ISCI_TAG_SEQ(io_tag
);
2477 if (task_sequence
== ihost
->io_request_sequence
[task_index
])
2486 * This method allocates remote node index and the reserves the remote node
2487 * context space for use. This method can fail if there are no more remote
2488 * node index available.
2489 * @scic: This is the controller object which contains the set of
2490 * free remote node ids
2491 * @sci_dev: This is the device object which is requesting the a remote node
2493 * @node_id: This is the remote node id that is assinged to the device if one
2496 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2497 * node index available.
2499 enum sci_status
sci_controller_allocate_remote_node_context(struct isci_host
*ihost
,
2500 struct isci_remote_device
*idev
,
2504 u32 remote_node_count
= sci_remote_device_node_count(idev
);
2506 node_index
= sci_remote_node_table_allocate_remote_node(
2507 &ihost
->available_remote_nodes
, remote_node_count
2510 if (node_index
!= SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX
) {
2511 ihost
->device_table
[node_index
] = idev
;
2513 *node_id
= node_index
;
2518 return SCI_FAILURE_INSUFFICIENT_RESOURCES
;
2521 void sci_controller_free_remote_node_context(struct isci_host
*ihost
,
2522 struct isci_remote_device
*idev
,
2525 u32 remote_node_count
= sci_remote_device_node_count(idev
);
2527 if (ihost
->device_table
[node_id
] == idev
) {
2528 ihost
->device_table
[node_id
] = NULL
;
2530 sci_remote_node_table_release_remote_node_index(
2531 &ihost
->available_remote_nodes
, remote_node_count
, node_id
2536 void sci_controller_copy_sata_response(void *response_buffer
,
2540 /* XXX type safety? */
2541 memcpy(response_buffer
, frame_header
, sizeof(u32
));
2543 memcpy(response_buffer
+ sizeof(u32
),
2545 sizeof(struct dev_to_host_fis
) - sizeof(u32
));
2548 void sci_controller_release_frame(struct isci_host
*ihost
, u32 frame_index
)
2550 if (sci_unsolicited_frame_control_release_frame(&ihost
->uf_control
, frame_index
))
2551 writel(ihost
->uf_control
.get
,
2552 &ihost
->scu_registers
->sdma
.unsolicited_frame_get_pointer
);
2555 void isci_tci_free(struct isci_host
*ihost
, u16 tci
)
2557 u16 tail
= ihost
->tci_tail
& (SCI_MAX_IO_REQUESTS
-1);
2559 ihost
->tci_pool
[tail
] = tci
;
2560 ihost
->tci_tail
= tail
+ 1;
2563 static u16
isci_tci_alloc(struct isci_host
*ihost
)
2565 u16 head
= ihost
->tci_head
& (SCI_MAX_IO_REQUESTS
-1);
2566 u16 tci
= ihost
->tci_pool
[head
];
2568 ihost
->tci_head
= head
+ 1;
2572 static u16
isci_tci_space(struct isci_host
*ihost
)
2574 return CIRC_SPACE(ihost
->tci_head
, ihost
->tci_tail
, SCI_MAX_IO_REQUESTS
);
2577 u16
isci_alloc_tag(struct isci_host
*ihost
)
2579 if (isci_tci_space(ihost
)) {
2580 u16 tci
= isci_tci_alloc(ihost
);
2581 u8 seq
= ihost
->io_request_sequence
[tci
];
2583 return ISCI_TAG(seq
, tci
);
2586 return SCI_CONTROLLER_INVALID_IO_TAG
;
2589 enum sci_status
isci_free_tag(struct isci_host
*ihost
, u16 io_tag
)
2591 u16 tci
= ISCI_TAG_TCI(io_tag
);
2592 u16 seq
= ISCI_TAG_SEQ(io_tag
);
2594 /* prevent tail from passing head */
2595 if (isci_tci_active(ihost
) == 0)
2596 return SCI_FAILURE_INVALID_IO_TAG
;
2598 if (seq
== ihost
->io_request_sequence
[tci
]) {
2599 ihost
->io_request_sequence
[tci
] = (seq
+1) & (SCI_MAX_SEQ
-1);
2601 isci_tci_free(ihost
, tci
);
2605 return SCI_FAILURE_INVALID_IO_TAG
;
2608 enum sci_status
sci_controller_start_io(struct isci_host
*ihost
,
2609 struct isci_remote_device
*idev
,
2610 struct isci_request
*ireq
)
2612 enum sci_status status
;
2614 if (ihost
->sm
.current_state_id
!= SCIC_READY
) {
2615 dev_warn(&ihost
->pdev
->dev
, "invalid state to start I/O");
2616 return SCI_FAILURE_INVALID_STATE
;
2619 status
= sci_remote_device_start_io(ihost
, idev
, ireq
);
2620 if (status
!= SCI_SUCCESS
)
2623 set_bit(IREQ_ACTIVE
, &ireq
->flags
);
2624 sci_controller_post_request(ihost
, ireq
->post_context
);
2628 enum sci_status
sci_controller_terminate_request(struct isci_host
*ihost
,
2629 struct isci_remote_device
*idev
,
2630 struct isci_request
*ireq
)
2632 /* terminate an ongoing (i.e. started) core IO request. This does not
2633 * abort the IO request at the target, but rather removes the IO
2634 * request from the host controller.
2636 enum sci_status status
;
2638 if (ihost
->sm
.current_state_id
!= SCIC_READY
) {
2639 dev_warn(&ihost
->pdev
->dev
,
2640 "invalid state to terminate request\n");
2641 return SCI_FAILURE_INVALID_STATE
;
2644 status
= sci_io_request_terminate(ireq
);
2645 if (status
!= SCI_SUCCESS
)
2649 * Utilize the original post context command and or in the POST_TC_ABORT
2652 sci_controller_post_request(ihost
,
2653 ireq
->post_context
| SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT
);
2658 * sci_controller_complete_io() - This method will perform core specific
2659 * completion operations for an IO request. After this method is invoked,
2660 * the user should consider the IO request as invalid until it is properly
2661 * reused (i.e. re-constructed).
2662 * @ihost: The handle to the controller object for which to complete the
2664 * @idev: The handle to the remote device object for which to complete
2666 * @ireq: the handle to the io request object to complete.
2668 enum sci_status
sci_controller_complete_io(struct isci_host
*ihost
,
2669 struct isci_remote_device
*idev
,
2670 struct isci_request
*ireq
)
2672 enum sci_status status
;
2675 switch (ihost
->sm
.current_state_id
) {
2677 /* XXX: Implement this function */
2680 status
= sci_remote_device_complete_io(ihost
, idev
, ireq
);
2681 if (status
!= SCI_SUCCESS
)
2684 index
= ISCI_TAG_TCI(ireq
->io_tag
);
2685 clear_bit(IREQ_ACTIVE
, &ireq
->flags
);
2688 dev_warn(&ihost
->pdev
->dev
, "invalid state to complete I/O");
2689 return SCI_FAILURE_INVALID_STATE
;
2694 enum sci_status
sci_controller_continue_io(struct isci_request
*ireq
)
2696 struct isci_host
*ihost
= ireq
->owning_controller
;
2698 if (ihost
->sm
.current_state_id
!= SCIC_READY
) {
2699 dev_warn(&ihost
->pdev
->dev
, "invalid state to continue I/O");
2700 return SCI_FAILURE_INVALID_STATE
;
2703 set_bit(IREQ_ACTIVE
, &ireq
->flags
);
2704 sci_controller_post_request(ihost
, ireq
->post_context
);
2709 * sci_controller_start_task() - This method is called by the SCIC user to
2710 * send/start a framework task management request.
2711 * @controller: the handle to the controller object for which to start the task
2712 * management request.
2713 * @remote_device: the handle to the remote device object for which to start
2714 * the task management request.
2715 * @task_request: the handle to the task request object to start.
2717 enum sci_task_status
sci_controller_start_task(struct isci_host
*ihost
,
2718 struct isci_remote_device
*idev
,
2719 struct isci_request
*ireq
)
2721 enum sci_status status
;
2723 if (ihost
->sm
.current_state_id
!= SCIC_READY
) {
2724 dev_warn(&ihost
->pdev
->dev
,
2725 "%s: SCIC Controller starting task from invalid "
2728 return SCI_TASK_FAILURE_INVALID_STATE
;
2731 status
= sci_remote_device_start_task(ihost
, idev
, ireq
);
2733 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS
:
2734 set_bit(IREQ_ACTIVE
, &ireq
->flags
);
2737 * We will let framework know this task request started successfully,
2738 * although core is still woring on starting the request (to post tc when
2743 set_bit(IREQ_ACTIVE
, &ireq
->flags
);
2744 sci_controller_post_request(ihost
, ireq
->post_context
);