isci: kill smp_discover_response_protocols in favor of domain_device.dev_type
[deliverable/linux.git] / drivers / scsi / isci / remote_node_context.c
CommitLineData
6f231dda
DW
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 "sci_base_state_machine.h"
6f231dda
DW
57#include "scic_sds_controller.h"
58#include "scic_sds_port.h"
88f3b62a
DW
59#include "remote_device.h"
60#include "remote_node_context.h"
6f231dda
DW
61#include "sci_environment.h"
62#include "sci_util.h"
63#include "scu_event_codes.h"
64#include "scu_task_context.h"
65
6f231dda
DW
66
67/**
68 *
e2023b87 69 * @sci_rnc: The RNC for which the is posted request is being made.
6f231dda
DW
70 *
71 * This method will return true if the RNC is not in the initial state. In all
72 * other states the RNC is considered active and this will return true. The
73 * destroy request of the state machine drives the RNC back to the initial
74 * state. If the state machine changes then this routine will also have to be
75 * changed. bool true if the state machine is not in the initial state false if
76 * the state machine is in the initial state
77 */
78
79/**
80 *
e2023b87 81 * @sci_rnc: The state of the remote node context object to check.
6f231dda
DW
82 *
83 * This method will return true if the remote node context is in a READY state
84 * otherwise it will return false bool true if the remote node context is in
85 * the ready state. false if the remote node context is not in the ready state.
86 */
87bool scic_sds_remote_node_context_is_ready(
e2023b87 88 struct scic_sds_remote_node_context *sci_rnc)
6f231dda 89{
e2023b87 90 u32 current_state = sci_base_state_machine_get_state(&sci_rnc->state_machine);
6f231dda
DW
91
92 if (current_state == SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE) {
93 return true;
94 }
95
96 return false;
97}
98
99/**
100 *
e2023b87 101 * @sci_dev: The remote device to use to construct the RNC buffer.
6f231dda
DW
102 * @rnc: The buffer into which the remote device data will be copied.
103 *
104 * This method will construct the RNC buffer for this remote device object. none
105 */
35173d57 106static void scic_sds_remote_node_context_construct_buffer(
e2023b87 107 struct scic_sds_remote_node_context *sci_rnc)
6f231dda 108{
9614395e 109 struct scic_sds_remote_device *sci_dev = rnc_to_dev(sci_rnc);
a1a113b0
DW
110 struct domain_device *dev = sci_dev_to_domain(sci_dev);
111 union scu_remote_node_context *rnc;
e2023b87 112 struct scic_sds_controller *scic;
6f231dda 113
9614395e 114 scic = scic_sds_remote_device_get_controller(sci_dev);
6f231dda
DW
115
116 rnc = scic_sds_controller_get_remote_node_context_buffer(
e2023b87 117 scic, sci_rnc->remote_node_index);
6f231dda 118
9614395e
DW
119 memset(rnc, 0, sizeof(union scu_remote_node_context)
120 * scic_sds_remote_device_node_count(sci_dev));
6f231dda 121
e2023b87 122 rnc->ssp.remote_node_index = sci_rnc->remote_node_index;
9614395e 123 rnc->ssp.remote_node_port_width = sci_dev->device_port_width;
6f231dda 124 rnc->ssp.logical_port_index =
9614395e 125 scic_sds_remote_device_get_port_index(sci_dev);
6f231dda 126
9614395e
DW
127 rnc->ssp.remote_sas_address_hi = SCIC_SWAP_DWORD(sci_dev->device_address.high);
128 rnc->ssp.remote_sas_address_lo = SCIC_SWAP_DWORD(sci_dev->device_address.low);
6f231dda
DW
129
130 rnc->ssp.nexus_loss_timer_enable = true;
131 rnc->ssp.check_bit = false;
132 rnc->ssp.is_valid = false;
133 rnc->ssp.is_remote_node_context = true;
134 rnc->ssp.function_number = 0;
135
136 rnc->ssp.arbitration_wait_time = 0;
137
a1a113b0 138 if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) {
6f231dda 139 rnc->ssp.connection_occupancy_timeout =
e2023b87 140 scic->user_parameters.sds1.stp_max_occupancy_timeout;
6f231dda 141 rnc->ssp.connection_inactivity_timeout =
e2023b87 142 scic->user_parameters.sds1.stp_inactivity_timeout;
6f231dda
DW
143 } else {
144 rnc->ssp.connection_occupancy_timeout =
e2023b87 145 scic->user_parameters.sds1.ssp_max_occupancy_timeout;
6f231dda 146 rnc->ssp.connection_inactivity_timeout =
e2023b87 147 scic->user_parameters.sds1.ssp_inactivity_timeout;
6f231dda
DW
148 }
149
150 rnc->ssp.initial_arbitration_wait_time = 0;
151
152 /* Open Address Frame Parameters */
9614395e 153 rnc->ssp.oaf_connection_rate = sci_dev->connection_rate;
6f231dda
DW
154 rnc->ssp.oaf_features = 0;
155 rnc->ssp.oaf_source_zone_group = 0;
156 rnc->ssp.oaf_more_compatibility_features = 0;
157}
158
159/**
160 *
e2023b87
DJ
161 * @sci_rnc:
162 * @callback:
6f231dda
DW
163 * @callback_parameter:
164 *
165 * This method will setup the remote node context object so it will transition
166 * to its ready state. If the remote node context is already setup to
167 * transition to its final state then this function does nothing. none
168 */
169static void scic_sds_remote_node_context_setup_to_resume(
e2023b87
DJ
170 struct scic_sds_remote_node_context *sci_rnc,
171 scics_sds_remote_node_context_callback callback,
6f231dda
DW
172 void *callback_parameter)
173{
e2023b87
DJ
174 if (sci_rnc->destination_state != SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL) {
175 sci_rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_READY;
176 sci_rnc->user_callback = callback;
177 sci_rnc->user_cookie = callback_parameter;
6f231dda
DW
178 }
179}
180
181/**
182 *
e2023b87
DJ
183 * @sci_rnc:
184 * @callback:
6f231dda
DW
185 * @callback_parameter:
186 *
187 * This method will setup the remote node context object so it will transistion
188 * to its final state. none
189 */
190static void scic_sds_remote_node_context_setup_to_destory(
e2023b87
DJ
191 struct scic_sds_remote_node_context *sci_rnc,
192 scics_sds_remote_node_context_callback callback,
6f231dda
DW
193 void *callback_parameter)
194{
e2023b87
DJ
195 sci_rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL;
196 sci_rnc->user_callback = callback;
197 sci_rnc->user_cookie = callback_parameter;
6f231dda
DW
198}
199
200/**
201 *
e2023b87
DJ
202 * @sci_rnc:
203 * @callback:
6f231dda
DW
204 *
205 * This method will continue to resume a remote node context. This is used in
206 * the states where a resume is requested while a resume is in progress.
207 */
208static enum sci_status scic_sds_remote_node_context_continue_to_resume_handler(
e2023b87
DJ
209 struct scic_sds_remote_node_context *sci_rnc,
210 scics_sds_remote_node_context_callback callback,
6f231dda
DW
211 void *callback_parameter)
212{
e2023b87
DJ
213 if (sci_rnc->destination_state == SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_READY) {
214 sci_rnc->user_callback = callback;
215 sci_rnc->user_cookie = callback_parameter;
6f231dda
DW
216
217 return SCI_SUCCESS;
218 }
219
220 return SCI_FAILURE_INVALID_STATE;
221}
222
223/* --------------------------------------------------------------------------- */
224
225static enum sci_status scic_sds_remote_node_context_default_destruct_handler(
e2023b87
DJ
226 struct scic_sds_remote_node_context *sci_rnc,
227 scics_sds_remote_node_context_callback callback,
6f231dda
DW
228 void *callback_parameter)
229{
9614395e 230 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
231 "%s: SCIC Remote Node Context 0x%p requested to stop while "
232 "in unexpected state %d\n",
233 __func__,
e2023b87
DJ
234 sci_rnc,
235 sci_base_state_machine_get_state(&sci_rnc->state_machine));
6f231dda
DW
236
237 /*
238 * We have decided that the destruct request on the remote node context can not fail
239 * since it is either in the initial/destroyed state or is can be destroyed. */
240 return SCI_SUCCESS;
241}
242
243static enum sci_status scic_sds_remote_node_context_default_suspend_handler(
e2023b87 244 struct scic_sds_remote_node_context *sci_rnc,
6f231dda 245 u32 suspend_type,
e2023b87 246 scics_sds_remote_node_context_callback callback,
6f231dda
DW
247 void *callback_parameter)
248{
9614395e 249 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
250 "%s: SCIC Remote Node Context 0x%p requested to suspend "
251 "while in wrong state %d\n",
252 __func__,
e2023b87
DJ
253 sci_rnc,
254 sci_base_state_machine_get_state(&sci_rnc->state_machine));
6f231dda
DW
255
256 return SCI_FAILURE_INVALID_STATE;
257}
258
259static enum sci_status scic_sds_remote_node_context_default_resume_handler(
e2023b87
DJ
260 struct scic_sds_remote_node_context *sci_rnc,
261 scics_sds_remote_node_context_callback callback,
6f231dda
DW
262 void *callback_parameter)
263{
9614395e 264 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
265 "%s: SCIC Remote Node Context 0x%p requested to resume "
266 "while in wrong state %d\n",
267 __func__,
e2023b87
DJ
268 sci_rnc,
269 sci_base_state_machine_get_state(&sci_rnc->state_machine));
6f231dda
DW
270
271 return SCI_FAILURE_INVALID_STATE;
272}
273
274static enum sci_status scic_sds_remote_node_context_default_start_io_handler(
e2023b87
DJ
275 struct scic_sds_remote_node_context *sci_rnc,
276 struct scic_sds_request *sci_req)
6f231dda 277{
9614395e 278 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
279 "%s: SCIC Remote Node Context 0x%p requested to start io "
280 "0x%p while in wrong state %d\n",
281 __func__,
e2023b87
DJ
282 sci_rnc,
283 sci_req,
284 sci_base_state_machine_get_state(&sci_rnc->state_machine));
6f231dda
DW
285
286 return SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED;
287}
288
289static enum sci_status scic_sds_remote_node_context_default_start_task_handler(
e2023b87
DJ
290 struct scic_sds_remote_node_context *sci_rnc,
291 struct scic_sds_request *sci_req)
6f231dda 292{
9614395e 293 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
294 "%s: SCIC Remote Node Context 0x%p requested to start "
295 "task 0x%p while in wrong state %d\n",
296 __func__,
e2023b87
DJ
297 sci_rnc,
298 sci_req,
299 sci_base_state_machine_get_state(&sci_rnc->state_machine));
6f231dda
DW
300
301 return SCI_FAILURE;
302}
303
304static enum sci_status scic_sds_remote_node_context_default_event_handler(
e2023b87 305 struct scic_sds_remote_node_context *sci_rnc,
6f231dda
DW
306 u32 event_code)
307{
9614395e 308 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
309 "%s: SCIC Remote Node Context 0x%p requested to process "
310 "event 0x%x while in wrong state %d\n",
311 __func__,
e2023b87 312 sci_rnc,
6f231dda 313 event_code,
e2023b87 314 sci_base_state_machine_get_state(&sci_rnc->state_machine));
6f231dda
DW
315
316 return SCI_FAILURE_INVALID_STATE;
317}
318
319/**
320 *
e2023b87
DJ
321 * @sci_rnc: The rnc for which the task request is targeted.
322 * @sci_req: The request which is going to be started.
6f231dda
DW
323 *
324 * This method determines if the task request can be started by the SCU
325 * hardware. When the RNC is in the ready state any task can be started.
326 * enum sci_status SCI_SUCCESS
327 */
328static enum sci_status scic_sds_remote_node_context_success_start_task_handler(
e2023b87
DJ
329 struct scic_sds_remote_node_context *sci_rnc,
330 struct scic_sds_request *sci_req)
6f231dda
DW
331{
332 return SCI_SUCCESS;
333}
334
335/**
336 *
e2023b87
DJ
337 * @sci_rnc:
338 * @callback:
6f231dda
DW
339 * @callback_parameter:
340 *
341 * This method handles destruct calls from the various state handlers. The
342 * remote node context can be requested to destroy from any state. If there was
343 * a user callback it is always replaced with the request to destroy user
344 * callback. enum sci_status
345 */
346static enum sci_status scic_sds_remote_node_context_general_destruct_handler(
e2023b87
DJ
347 struct scic_sds_remote_node_context *sci_rnc,
348 scics_sds_remote_node_context_callback callback,
6f231dda
DW
349 void *callback_parameter)
350{
351 scic_sds_remote_node_context_setup_to_destory(
e2023b87 352 sci_rnc, callback, callback_parameter
6f231dda
DW
353 );
354
355 sci_base_state_machine_change_state(
e2023b87 356 &sci_rnc->state_machine,
6f231dda
DW
357 SCIC_SDS_REMOTE_NODE_CONTEXT_INVALIDATING_STATE
358 );
359
360 return SCI_SUCCESS;
361}
362
363/* --------------------------------------------------------------------------- */
364
365static enum sci_status scic_sds_remote_node_context_initial_state_resume_handler(
e2023b87
DJ
366 struct scic_sds_remote_node_context *sci_rnc,
367 scics_sds_remote_node_context_callback callback,
6f231dda
DW
368 void *callback_parameter)
369{
e2023b87 370 if (sci_rnc->remote_node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
6f231dda 371 scic_sds_remote_node_context_setup_to_resume(
e2023b87 372 sci_rnc, callback, callback_parameter
6f231dda
DW
373 );
374
e2023b87 375 scic_sds_remote_node_context_construct_buffer(sci_rnc);
6f231dda
DW
376
377 sci_base_state_machine_change_state(
e2023b87 378 &sci_rnc->state_machine,
6f231dda
DW
379 SCIC_SDS_REMOTE_NODE_CONTEXT_POSTING_STATE
380 );
381
382 return SCI_SUCCESS;
383 }
384
385 return SCI_FAILURE_INVALID_STATE;
386}
387
388/* --------------------------------------------------------------------------- */
389
390static enum sci_status scic_sds_remote_node_context_posting_state_event_handler(
e2023b87 391 struct scic_sds_remote_node_context *sci_rnc,
6f231dda
DW
392 u32 event_code)
393{
394 enum sci_status status;
395
396 switch (scu_get_event_code(event_code)) {
397 case SCU_EVENT_POST_RNC_COMPLETE:
398 status = SCI_SUCCESS;
399
400 sci_base_state_machine_change_state(
e2023b87 401 &sci_rnc->state_machine,
6f231dda
DW
402 SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE
403 );
404 break;
405
406 default:
407 status = SCI_FAILURE;
9614395e 408 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
409 "%s: SCIC Remote Node Context 0x%p requested to "
410 "process unexpected event 0x%x while in posting "
411 "state\n",
412 __func__,
e2023b87 413 sci_rnc,
6f231dda
DW
414 event_code);
415 break;
416 }
417
418 return status;
419}
420
421/* --------------------------------------------------------------------------- */
422
423static enum sci_status scic_sds_remote_node_context_invalidating_state_destruct_handler(
e2023b87
DJ
424 struct scic_sds_remote_node_context *sci_rnc,
425 scics_sds_remote_node_context_callback callback,
6f231dda
DW
426 void *callback_parameter)
427{
428 scic_sds_remote_node_context_setup_to_destory(
e2023b87 429 sci_rnc, callback, callback_parameter
6f231dda
DW
430 );
431
432 return SCI_SUCCESS;
433}
434
435static enum sci_status scic_sds_remote_node_context_invalidating_state_event_handler(
e2023b87 436 struct scic_sds_remote_node_context *sci_rnc,
6f231dda
DW
437 u32 event_code)
438{
439 enum sci_status status;
440
441 if (scu_get_event_code(event_code) == SCU_EVENT_POST_RNC_INVALIDATE_COMPLETE) {
442 status = SCI_SUCCESS;
443
e2023b87 444 if (sci_rnc->destination_state == SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL) {
6f231dda 445 sci_base_state_machine_change_state(
e2023b87 446 &sci_rnc->state_machine,
6f231dda
DW
447 SCIC_SDS_REMOTE_NODE_CONTEXT_INITIAL_STATE
448 );
449 } else {
450 sci_base_state_machine_change_state(
e2023b87 451 &sci_rnc->state_machine,
6f231dda
DW
452 SCIC_SDS_REMOTE_NODE_CONTEXT_POSTING_STATE
453 );
454 }
455 } else {
456 switch (scu_get_event_type(event_code)) {
457 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
458 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
459 /*
460 * We really dont care if the hardware is going to suspend
461 * the device since it's being invalidated anyway */
9614395e 462 dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
463 "%s: SCIC Remote Node Context 0x%p was "
464 "suspeneded by hardware while being "
465 "invalidated.\n",
466 __func__,
e2023b87 467 sci_rnc);
6f231dda
DW
468 status = SCI_SUCCESS;
469 break;
470
471 default:
9614395e 472 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
473 "%s: SCIC Remote Node Context 0x%p "
474 "requested to process event 0x%x while "
475 "in state %d.\n",
476 __func__,
e2023b87 477 sci_rnc,
6f231dda
DW
478 event_code,
479 sci_base_state_machine_get_state(
e2023b87 480 &sci_rnc->state_machine));
6f231dda
DW
481 status = SCI_FAILURE;
482 break;
483 }
484 }
485
486 return status;
487}
488
489/* --------------------------------------------------------------------------- */
490
491
492static enum sci_status scic_sds_remote_node_context_resuming_state_event_handler(
e2023b87 493 struct scic_sds_remote_node_context *sci_rnc,
6f231dda
DW
494 u32 event_code)
495{
496 enum sci_status status;
497
498 if (scu_get_event_code(event_code) == SCU_EVENT_POST_RCN_RELEASE) {
499 status = SCI_SUCCESS;
500
501 sci_base_state_machine_change_state(
e2023b87 502 &sci_rnc->state_machine,
6f231dda
DW
503 SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE
504 );
505 } else {
506 switch (scu_get_event_type(event_code)) {
507 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
508 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
509 /*
510 * We really dont care if the hardware is going to suspend
511 * the device since it's being resumed anyway */
9614395e 512 dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
513 "%s: SCIC Remote Node Context 0x%p was "
514 "suspeneded by hardware while being resumed.\n",
515 __func__,
e2023b87 516 sci_rnc);
6f231dda
DW
517 status = SCI_SUCCESS;
518 break;
519
520 default:
9614395e 521 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
522 "%s: SCIC Remote Node Context 0x%p requested "
523 "to process event 0x%x while in state %d.\n",
524 __func__,
e2023b87 525 sci_rnc,
6f231dda
DW
526 event_code,
527 sci_base_state_machine_get_state(
e2023b87 528 &sci_rnc->state_machine));
6f231dda
DW
529 status = SCI_FAILURE;
530 break;
531 }
532 }
533
534 return status;
535}
536
537/* --------------------------------------------------------------------------- */
538
539/**
540 *
e2023b87
DJ
541 * @sci_rnc: The remote node context object being suspended.
542 * @callback: The callback when the suspension is complete.
6f231dda
DW
543 * @callback_parameter: The parameter that is to be passed into the callback.
544 *
545 * This method will handle the suspend requests from the ready state.
546 * SCI_SUCCESS
547 */
548static enum sci_status scic_sds_remote_node_context_ready_state_suspend_handler(
e2023b87 549 struct scic_sds_remote_node_context *sci_rnc,
6f231dda 550 u32 suspend_type,
e2023b87 551 scics_sds_remote_node_context_callback callback,
6f231dda
DW
552 void *callback_parameter)
553{
e2023b87
DJ
554 sci_rnc->user_callback = callback;
555 sci_rnc->user_cookie = callback_parameter;
556 sci_rnc->suspension_code = suspend_type;
6f231dda
DW
557
558 if (suspend_type == SCI_SOFTWARE_SUSPENSION) {
9614395e
DW
559 scic_sds_remote_device_post_request(rnc_to_dev(sci_rnc),
560 SCU_CONTEXT_COMMAND_POST_RNC_SUSPEND_TX);
6f231dda
DW
561 }
562
563 sci_base_state_machine_change_state(
e2023b87 564 &sci_rnc->state_machine,
6f231dda
DW
565 SCIC_SDS_REMOTE_NODE_CONTEXT_AWAIT_SUSPENSION_STATE
566 );
567
568 return SCI_SUCCESS;
569}
570
571/**
572 *
e2023b87
DJ
573 * @sci_rnc: The rnc for which the io request is targeted.
574 * @sci_req: The request which is going to be started.
6f231dda
DW
575 *
576 * This method determines if the io request can be started by the SCU hardware.
577 * When the RNC is in the ready state any io request can be started. enum sci_status
578 * SCI_SUCCESS
579 */
580static enum sci_status scic_sds_remote_node_context_ready_state_start_io_handler(
e2023b87
DJ
581 struct scic_sds_remote_node_context *sci_rnc,
582 struct scic_sds_request *sci_req)
6f231dda
DW
583{
584 return SCI_SUCCESS;
585}
586
587
588static enum sci_status scic_sds_remote_node_context_ready_state_event_handler(
e2023b87 589 struct scic_sds_remote_node_context *sci_rnc,
6f231dda
DW
590 u32 event_code)
591{
592 enum sci_status status;
593
594 switch (scu_get_event_type(event_code)) {
595 case SCU_EVENT_TL_RNC_SUSPEND_TX:
596 sci_base_state_machine_change_state(
e2023b87 597 &sci_rnc->state_machine,
6f231dda
DW
598 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_SUSPENDED_STATE
599 );
600
e2023b87 601 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
6f231dda
DW
602 status = SCI_SUCCESS;
603 break;
604
605 case SCU_EVENT_TL_RNC_SUSPEND_TX_RX:
606 sci_base_state_machine_change_state(
e2023b87 607 &sci_rnc->state_machine,
6f231dda
DW
608 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_RX_SUSPENDED_STATE
609 );
610
e2023b87 611 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
6f231dda
DW
612 status = SCI_SUCCESS;
613 break;
614
615 default:
9614395e 616 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
617 "%s: SCIC Remote Node Context 0x%p requested to "
618 "process event 0x%x while in state %d.\n",
619 __func__,
e2023b87 620 sci_rnc,
6f231dda
DW
621 event_code,
622 sci_base_state_machine_get_state(
e2023b87 623 &sci_rnc->state_machine));
6f231dda
DW
624
625 status = SCI_FAILURE;
626 break;
627 }
628
629 return status;
630}
631
632/* --------------------------------------------------------------------------- */
633
634static enum sci_status scic_sds_remote_node_context_tx_suspended_state_resume_handler(
e2023b87
DJ
635 struct scic_sds_remote_node_context *sci_rnc,
636 scics_sds_remote_node_context_callback callback,
6f231dda
DW
637 void *callback_parameter)
638{
a1a113b0
DW
639 struct scic_sds_remote_device *sci_dev = rnc_to_dev(sci_rnc);
640 struct domain_device *dev = sci_dev_to_domain(sci_dev);
641 enum sci_status status = SCI_SUCCESS;
6f231dda 642
a1a113b0
DW
643 scic_sds_remote_node_context_setup_to_resume(sci_rnc, callback,
644 callback_parameter);
6f231dda
DW
645
646 /* TODO: consider adding a resume action of NONE, INVALIDATE, WRITE_TLCR */
a1a113b0
DW
647 if (dev->dev_type == SAS_END_DEV || dev_is_expander(dev))
648 sci_base_state_machine_change_state(&sci_rnc->state_machine,
649 SCIC_SDS_REMOTE_NODE_CONTEXT_RESUMING_STATE);
650 else if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) {
651 if (sci_dev->is_direct_attached) {
6f231dda 652 /* @todo Fix this since I am being silly in writing to the STPTLDARNI register. */
6f231dda 653 sci_base_state_machine_change_state(
e2023b87 654 &sci_rnc->state_machine,
a1a113b0 655 SCIC_SDS_REMOTE_NODE_CONTEXT_RESUMING_STATE);
6f231dda
DW
656 } else {
657 sci_base_state_machine_change_state(
e2023b87 658 &sci_rnc->state_machine,
a1a113b0 659 SCIC_SDS_REMOTE_NODE_CONTEXT_INVALIDATING_STATE);
6f231dda 660 }
a1a113b0 661 } else
6f231dda 662 status = SCI_FAILURE;
6f231dda
DW
663
664 return status;
665}
666
667/**
668 *
e2023b87
DJ
669 * @sci_rnc: The remote node context which is to receive the task request.
670 * @sci_req: The task request to be transmitted to to the remote target
6f231dda
DW
671 * device.
672 *
673 * This method will report a success or failure attempt to start a new task
674 * request to the hardware. Since all task requests are sent on the high
675 * priority queue they can be sent when the RCN is in a TX suspend state.
676 * enum sci_status SCI_SUCCESS
677 */
678static enum sci_status scic_sds_remote_node_context_suspended_start_task_handler(
e2023b87
DJ
679 struct scic_sds_remote_node_context *sci_rnc,
680 struct scic_sds_request *sci_req)
6f231dda 681{
e2023b87 682 scic_sds_remote_node_context_resume(sci_rnc, NULL, NULL);
6f231dda
DW
683
684 return SCI_SUCCESS;
685}
686
687/* --------------------------------------------------------------------------- */
688
689static enum sci_status scic_sds_remote_node_context_tx_rx_suspended_state_resume_handler(
e2023b87
DJ
690 struct scic_sds_remote_node_context *sci_rnc,
691 scics_sds_remote_node_context_callback callback,
6f231dda
DW
692 void *callback_parameter)
693{
694 scic_sds_remote_node_context_setup_to_resume(
e2023b87 695 sci_rnc, callback, callback_parameter
6f231dda
DW
696 );
697
698 sci_base_state_machine_change_state(
e2023b87 699 &sci_rnc->state_machine,
6f231dda
DW
700 SCIC_SDS_REMOTE_NODE_CONTEXT_RESUMING_STATE
701 );
702
703 return SCI_FAILURE_INVALID_STATE;
704}
705
706/* --------------------------------------------------------------------------- */
707
708/**
709 *
710 *
711 *
712 */
713static enum sci_status scic_sds_remote_node_context_await_suspension_state_resume_handler(
e2023b87
DJ
714 struct scic_sds_remote_node_context *sci_rnc,
715 scics_sds_remote_node_context_callback callback,
6f231dda
DW
716 void *callback_parameter)
717{
718 scic_sds_remote_node_context_setup_to_resume(
e2023b87 719 sci_rnc, callback, callback_parameter
6f231dda
DW
720 );
721
722 return SCI_SUCCESS;
723}
724
725/**
726 *
e2023b87
DJ
727 * @sci_rnc: The remote node context which is to receive the task request.
728 * @sci_req: The task request to be transmitted to to the remote target
6f231dda
DW
729 * device.
730 *
731 * This method will report a success or failure attempt to start a new task
732 * request to the hardware. Since all task requests are sent on the high
733 * priority queue they can be sent when the RCN is in a TX suspend state.
734 * enum sci_status SCI_SUCCESS
735 */
736static enum sci_status scic_sds_remote_node_context_await_suspension_state_start_task_handler(
e2023b87
DJ
737 struct scic_sds_remote_node_context *sci_rnc,
738 struct scic_sds_request *sci_req)
6f231dda
DW
739{
740 return SCI_SUCCESS;
741}
742
743static enum sci_status scic_sds_remote_node_context_await_suspension_state_event_handler(
e2023b87 744 struct scic_sds_remote_node_context *sci_rnc,
6f231dda
DW
745 u32 event_code)
746{
747 enum sci_status status;
748
749 switch (scu_get_event_type(event_code)) {
750 case SCU_EVENT_TL_RNC_SUSPEND_TX:
751 sci_base_state_machine_change_state(
e2023b87 752 &sci_rnc->state_machine,
6f231dda
DW
753 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_SUSPENDED_STATE
754 );
755
e2023b87 756 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
6f231dda
DW
757 status = SCI_SUCCESS;
758 break;
759
760 case SCU_EVENT_TL_RNC_SUSPEND_TX_RX:
761 sci_base_state_machine_change_state(
e2023b87 762 &sci_rnc->state_machine,
6f231dda
DW
763 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_RX_SUSPENDED_STATE
764 );
765
e2023b87 766 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
6f231dda
DW
767 status = SCI_SUCCESS;
768 break;
769
770 default:
9614395e 771 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
6f231dda
DW
772 "%s: SCIC Remote Node Context 0x%p requested to "
773 "process event 0x%x while in state %d.\n",
774 __func__,
e2023b87 775 sci_rnc,
6f231dda
DW
776 event_code,
777 sci_base_state_machine_get_state(
e2023b87 778 &sci_rnc->state_machine));
6f231dda
DW
779
780 status = SCI_FAILURE;
781 break;
782 }
783
784 return status;
785}
786
787/* --------------------------------------------------------------------------- */
788
35173d57 789static struct scic_sds_remote_node_context_handlers
6f231dda
DW
790scic_sds_remote_node_context_state_handler_table[
791 SCIC_SDS_REMOTE_NODE_CONTEXT_MAX_STATES] =
792{
793 /* SCIC_SDS_REMOTE_NODE_CONTEXT_INITIAL_STATE */
794 {
795 scic_sds_remote_node_context_default_destruct_handler,
796 scic_sds_remote_node_context_default_suspend_handler,
797 scic_sds_remote_node_context_initial_state_resume_handler,
798 scic_sds_remote_node_context_default_start_io_handler,
799 scic_sds_remote_node_context_default_start_task_handler,
800 scic_sds_remote_node_context_default_event_handler
801 },
802 /* SCIC_SDS_REMOTE_NODE_CONTEXT_POSTING_STATE */
803 {
804 scic_sds_remote_node_context_general_destruct_handler,
805 scic_sds_remote_node_context_default_suspend_handler,
806 scic_sds_remote_node_context_continue_to_resume_handler,
807 scic_sds_remote_node_context_default_start_io_handler,
808 scic_sds_remote_node_context_default_start_task_handler,
809 scic_sds_remote_node_context_posting_state_event_handler
810 },
811 /* SCIC_SDS_REMOTE_NODE_CONTEXT_INVALIDATING_STATE */
812 {
813 scic_sds_remote_node_context_invalidating_state_destruct_handler,
814 scic_sds_remote_node_context_default_suspend_handler,
815 scic_sds_remote_node_context_continue_to_resume_handler,
816 scic_sds_remote_node_context_default_start_io_handler,
817 scic_sds_remote_node_context_default_start_task_handler,
818 scic_sds_remote_node_context_invalidating_state_event_handler
819 },
820 /* SCIC_SDS_REMOTE_NODE_CONTEXT_RESUMING_STATE */
821 {
822 scic_sds_remote_node_context_general_destruct_handler,
823 scic_sds_remote_node_context_default_suspend_handler,
824 scic_sds_remote_node_context_continue_to_resume_handler,
825 scic_sds_remote_node_context_default_start_io_handler,
826 scic_sds_remote_node_context_success_start_task_handler,
827 scic_sds_remote_node_context_resuming_state_event_handler
828 },
829 /* SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE */
830 {
831 scic_sds_remote_node_context_general_destruct_handler,
832 scic_sds_remote_node_context_ready_state_suspend_handler,
833 scic_sds_remote_node_context_default_resume_handler,
834 scic_sds_remote_node_context_ready_state_start_io_handler,
835 scic_sds_remote_node_context_success_start_task_handler,
836 scic_sds_remote_node_context_ready_state_event_handler
837 },
838 /* SCIC_SDS_REMOTE_NODE_CONTEXT_TX_SUSPENDED_STATE */
839 {
840 scic_sds_remote_node_context_general_destruct_handler,
841 scic_sds_remote_node_context_default_suspend_handler,
842 scic_sds_remote_node_context_tx_suspended_state_resume_handler,
843 scic_sds_remote_node_context_default_start_io_handler,
844 scic_sds_remote_node_context_suspended_start_task_handler,
845 scic_sds_remote_node_context_default_event_handler
846 },
847 /* SCIC_SDS_REMOTE_NODE_CONTEXT_TX_RX_SUSPENDED_STATE */
848 {
849 scic_sds_remote_node_context_general_destruct_handler,
850 scic_sds_remote_node_context_default_suspend_handler,
851 scic_sds_remote_node_context_tx_rx_suspended_state_resume_handler,
852 scic_sds_remote_node_context_default_start_io_handler,
853 scic_sds_remote_node_context_suspended_start_task_handler,
854 scic_sds_remote_node_context_default_event_handler
855 },
856 /* SCIC_SDS_REMOTE_NODE_CONTEXT_AWAIT_SUSPENSION_STATE */
857 {
858 scic_sds_remote_node_context_general_destruct_handler,
859 scic_sds_remote_node_context_default_suspend_handler,
860 scic_sds_remote_node_context_await_suspension_state_resume_handler,
861 scic_sds_remote_node_context_default_start_io_handler,
862 scic_sds_remote_node_context_await_suspension_state_start_task_handler,
863 scic_sds_remote_node_context_await_suspension_state_event_handler
864 }
865};
866
867/*
868 * *****************************************************************************
869 * * REMOTE NODE CONTEXT PRIVATE METHODS
870 * ***************************************************************************** */
871
872/**
873 *
874 *
875 * This method just calls the user callback function and then resets the
876 * callback.
877 */
878static void scic_sds_remote_node_context_notify_user(
879 struct scic_sds_remote_node_context *rnc)
880{
881 if (rnc->user_callback != NULL) {
882 (*rnc->user_callback)(rnc->user_cookie);
883
884 rnc->user_callback = NULL;
885 rnc->user_cookie = NULL;
886 }
887}
888
889/**
890 *
891 *
892 * This method will continue the remote node context state machine by
893 * requesting to resume the remote node context state machine from its current
894 * state.
895 */
896static void scic_sds_remote_node_context_continue_state_transitions(
897 struct scic_sds_remote_node_context *rnc)
898{
899 if (rnc->destination_state == SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_READY) {
900 rnc->state_handlers->resume_handler(
901 rnc, rnc->user_callback, rnc->user_cookie
902 );
903 }
904}
905
906/**
907 *
e2023b87 908 * @sci_rnc: The remote node context object that is to be validated.
6f231dda
DW
909 *
910 * This method will mark the rnc buffer as being valid and post the request to
911 * the hardware. none
912 */
913static void scic_sds_remote_node_context_validate_context_buffer(
e2023b87 914 struct scic_sds_remote_node_context *sci_rnc)
6f231dda 915{
9614395e 916 struct scic_sds_remote_device *sci_dev = rnc_to_dev(sci_rnc);
a1a113b0 917 struct domain_device *dev = sci_dev_to_domain(sci_dev);
6f231dda
DW
918 union scu_remote_node_context *rnc_buffer;
919
920 rnc_buffer = scic_sds_controller_get_remote_node_context_buffer(
9614395e 921 scic_sds_remote_device_get_controller(sci_dev),
e2023b87 922 sci_rnc->remote_node_index
6f231dda
DW
923 );
924
925 rnc_buffer->ssp.is_valid = true;
926
9614395e 927 if (!sci_dev->is_direct_attached &&
a1a113b0 928 (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP))) {
9614395e
DW
929 scic_sds_remote_device_post_request(sci_dev,
930 SCU_CONTEXT_COMMAND_POST_RNC_96);
6f231dda 931 } else {
9614395e 932 scic_sds_remote_device_post_request(sci_dev, SCU_CONTEXT_COMMAND_POST_RNC_32);
6f231dda 933
9614395e
DW
934 if (sci_dev->is_direct_attached) {
935 scic_sds_port_setup_transports(sci_dev->owning_port,
936 sci_rnc->remote_node_index);
6f231dda
DW
937 }
938 }
939}
940
941/**
942 *
e2023b87 943 * @sci_rnc: The remote node context object that is to be invalidated.
6f231dda
DW
944 *
945 * This method will update the RNC buffer and post the invalidate request. none
946 */
947static void scic_sds_remote_node_context_invalidate_context_buffer(
e2023b87 948 struct scic_sds_remote_node_context *sci_rnc)
6f231dda
DW
949{
950 union scu_remote_node_context *rnc_buffer;
951
952 rnc_buffer = scic_sds_controller_get_remote_node_context_buffer(
9614395e
DW
953 scic_sds_remote_device_get_controller(rnc_to_dev(sci_rnc)),
954 sci_rnc->remote_node_index);
6f231dda
DW
955
956 rnc_buffer->ssp.is_valid = false;
957
9614395e
DW
958 scic_sds_remote_device_post_request(rnc_to_dev(sci_rnc),
959 SCU_CONTEXT_COMMAND_POST_RNC_INVALIDATE);
6f231dda
DW
960}
961
962/*
963 * *****************************************************************************
964 * * REMOTE NODE CONTEXT STATE ENTER AND EXIT METHODS
965 * ***************************************************************************** */
966
967/**
968 *
969 *
970 *
971 */
972static void scic_sds_remote_node_context_initial_state_enter(
973 struct sci_base_object *object)
974{
975 struct scic_sds_remote_node_context *rnc;
976
977 rnc = (struct scic_sds_remote_node_context *)object;
978
979 SET_STATE_HANDLER(
980 rnc,
981 scic_sds_remote_node_context_state_handler_table,
982 SCIC_SDS_REMOTE_NODE_CONTEXT_INITIAL_STATE
983 );
984
985 /*
986 * Check to see if we have gotten back to the initial state because someone
987 * requested to destroy the remote node context object. */
988 if (
989 rnc->state_machine.previous_state_id
990 == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALIDATING_STATE
991 ) {
992 rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_UNSPECIFIED;
993
994 scic_sds_remote_node_context_notify_user(rnc);
995 }
996}
997
998/**
999 *
1000 *
1001 *
1002 */
1003static void scic_sds_remote_node_context_posting_state_enter(
1004 struct sci_base_object *object)
1005{
e2023b87 1006 struct scic_sds_remote_node_context *sci_rnc;
6f231dda 1007
e2023b87 1008 sci_rnc = (struct scic_sds_remote_node_context *)object;
6f231dda
DW
1009
1010 SET_STATE_HANDLER(
e2023b87 1011 sci_rnc,
6f231dda
DW
1012 scic_sds_remote_node_context_state_handler_table,
1013 SCIC_SDS_REMOTE_NODE_CONTEXT_POSTING_STATE
1014 );
1015
e2023b87 1016 scic_sds_remote_node_context_validate_context_buffer(sci_rnc);
6f231dda
DW
1017}
1018
1019/**
1020 *
1021 *
1022 *
1023 */
1024static void scic_sds_remote_node_context_invalidating_state_enter(
1025 struct sci_base_object *object)
1026{
1027 struct scic_sds_remote_node_context *rnc;
1028
1029 rnc = (struct scic_sds_remote_node_context *)object;
1030
1031 SET_STATE_HANDLER(
1032 rnc,
1033 scic_sds_remote_node_context_state_handler_table,
1034 SCIC_SDS_REMOTE_NODE_CONTEXT_INVALIDATING_STATE
1035 );
1036
1037 scic_sds_remote_node_context_invalidate_context_buffer(rnc);
1038}
1039
1040/**
1041 *
1042 *
1043 *
1044 */
1045static void scic_sds_remote_node_context_resuming_state_enter(
1046 struct sci_base_object *object)
1047{
1048 struct scic_sds_remote_node_context *rnc;
9614395e 1049 struct scic_sds_remote_device *sci_dev;
a1a113b0 1050 struct domain_device *dev;
6f231dda
DW
1051
1052 rnc = (struct scic_sds_remote_node_context *)object;
9614395e 1053 sci_dev = rnc_to_dev(rnc);
a1a113b0 1054 dev = sci_dev_to_domain(sci_dev);
6f231dda
DW
1055
1056 SET_STATE_HANDLER(
1057 rnc,
1058 scic_sds_remote_node_context_state_handler_table,
1059 SCIC_SDS_REMOTE_NODE_CONTEXT_RESUMING_STATE
1060 );
1061
24621466
HD
1062 /*
1063 * For direct attached SATA devices we need to clear the TLCR
1064 * NCQ to TCi tag mapping on the phy and in cases where we
1065 * resume because of a target reset we also need to update
1066 * the STPTLDARNI register with the RNi of the device
1067 */
a1a113b0
DW
1068 if ((dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) &&
1069 sci_dev->is_direct_attached)
9614395e
DW
1070 scic_sds_port_setup_transports(sci_dev->owning_port,
1071 rnc->remote_node_index);
24621466 1072
9614395e 1073 scic_sds_remote_device_post_request(sci_dev, SCU_CONTEXT_COMMAND_POST_RNC_RESUME);
6f231dda
DW
1074}
1075
1076/**
1077 *
1078 *
1079 *
1080 */
1081static void scic_sds_remote_node_context_ready_state_enter(
1082 struct sci_base_object *object)
1083{
1084 struct scic_sds_remote_node_context *rnc;
1085
1086 rnc = (struct scic_sds_remote_node_context *)object;
1087
1088 SET_STATE_HANDLER(
1089 rnc,
1090 scic_sds_remote_node_context_state_handler_table,
1091 SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE
1092 );
1093
1094 rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_UNSPECIFIED;
1095
1096 if (rnc->user_callback != NULL) {
1097 scic_sds_remote_node_context_notify_user(rnc);
1098 }
1099}
1100
1101/**
1102 *
1103 *
1104 *
1105 */
1106static void scic_sds_remote_node_context_tx_suspended_state_enter(
1107 struct sci_base_object *object)
1108{
1109 struct scic_sds_remote_node_context *rnc;
1110
1111 rnc = (struct scic_sds_remote_node_context *)object;
1112
1113 SET_STATE_HANDLER(
1114 rnc,
1115 scic_sds_remote_node_context_state_handler_table,
1116 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_SUSPENDED_STATE
1117 );
1118
1119 scic_sds_remote_node_context_continue_state_transitions(rnc);
1120}
1121
1122/**
1123 *
1124 *
1125 *
1126 */
1127static void scic_sds_remote_node_context_tx_rx_suspended_state_enter(
1128 struct sci_base_object *object)
1129{
1130 struct scic_sds_remote_node_context *rnc;
1131
1132 rnc = (struct scic_sds_remote_node_context *)object;
1133
1134 SET_STATE_HANDLER(
1135 rnc,
1136 scic_sds_remote_node_context_state_handler_table,
1137 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_RX_SUSPENDED_STATE
1138 );
1139
1140 scic_sds_remote_node_context_continue_state_transitions(rnc);
1141}
1142
1143/**
1144 *
1145 *
1146 *
1147 */
1148static void scic_sds_remote_node_context_await_suspension_state_enter(
1149 struct sci_base_object *object)
1150{
1151 struct scic_sds_remote_node_context *rnc;
1152
1153 rnc = (struct scic_sds_remote_node_context *)object;
1154
1155 SET_STATE_HANDLER(
1156 rnc,
1157 scic_sds_remote_node_context_state_handler_table,
1158 SCIC_SDS_REMOTE_NODE_CONTEXT_AWAIT_SUSPENSION_STATE
1159 );
1160}
1161
1162/* --------------------------------------------------------------------------- */
1163
35173d57 1164static const struct sci_base_state scic_sds_remote_node_context_state_table[] = {
6f231dda
DW
1165 [SCIC_SDS_REMOTE_NODE_CONTEXT_INITIAL_STATE] = {
1166 .enter_state = scic_sds_remote_node_context_initial_state_enter,
1167 },
1168 [SCIC_SDS_REMOTE_NODE_CONTEXT_POSTING_STATE] = {
1169 .enter_state = scic_sds_remote_node_context_posting_state_enter,
1170 },
1171 [SCIC_SDS_REMOTE_NODE_CONTEXT_INVALIDATING_STATE] = {
1172 .enter_state = scic_sds_remote_node_context_invalidating_state_enter,
1173 },
1174 [SCIC_SDS_REMOTE_NODE_CONTEXT_RESUMING_STATE] = {
1175 .enter_state = scic_sds_remote_node_context_resuming_state_enter,
1176 },
1177 [SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE] = {
1178 .enter_state = scic_sds_remote_node_context_ready_state_enter,
1179 },
1180 [SCIC_SDS_REMOTE_NODE_CONTEXT_TX_SUSPENDED_STATE] = {
1181 .enter_state = scic_sds_remote_node_context_tx_suspended_state_enter,
1182 },
1183 [SCIC_SDS_REMOTE_NODE_CONTEXT_TX_RX_SUSPENDED_STATE] = {
1184 .enter_state = scic_sds_remote_node_context_tx_rx_suspended_state_enter,
1185 },
1186 [SCIC_SDS_REMOTE_NODE_CONTEXT_AWAIT_SUSPENSION_STATE] = {
1187 .enter_state = scic_sds_remote_node_context_await_suspension_state_enter,
1188 },
1189};
1190
9614395e
DW
1191void scic_sds_remote_node_context_construct(struct scic_sds_remote_node_context *rnc,
1192 u16 remote_node_index)
35173d57
DW
1193{
1194 memset(rnc, 0, sizeof(struct scic_sds_remote_node_context));
1195
1196 rnc->remote_node_index = remote_node_index;
35173d57
DW
1197 rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_UNSPECIFIED;
1198
1199 sci_base_state_machine_construct(
1200 &rnc->state_machine,
1201 &rnc->parent,
1202 scic_sds_remote_node_context_state_table,
1203 SCIC_SDS_REMOTE_NODE_CONTEXT_INITIAL_STATE
1204 );
1205
1206 sci_base_state_machine_start(&rnc->state_machine);
1207}
This page took 0.136798 seconds and 5 git commands to generate.