blob: 285232fd5e634277a4b2cbcf56cb8c7973339822 [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
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"
Dan Williams6f231dd2011-07-02 22:56:22 -070057#include "scic_sds_controller.h"
58#include "scic_sds_port.h"
Dan Williams88f3b622011-04-22 19:18:03 -070059#include "remote_device.h"
60#include "remote_node_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070061#include "sci_environment.h"
62#include "sci_util.h"
63#include "scu_event_codes.h"
64#include "scu_task_context.h"
65
Dan Williams6f231dd2011-07-02 22:56:22 -070066
67/**
68 *
Dave Jiange2023b82011-04-21 05:34:49 +000069 * @sci_rnc: The RNC for which the is posted request is being made.
Dan Williams6f231dd2011-07-02 22:56:22 -070070 *
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 *
Dave Jiange2023b82011-04-21 05:34:49 +000081 * @sci_rnc: The state of the remote node context object to check.
Dan Williams6f231dd2011-07-02 22:56:22 -070082 *
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(
Dave Jiange2023b82011-04-21 05:34:49 +000088 struct scic_sds_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -070089{
Dave Jiange2023b82011-04-21 05:34:49 +000090 u32 current_state = sci_base_state_machine_get_state(&sci_rnc->state_machine);
Dan Williams6f231dd2011-07-02 22:56:22 -070091
92 if (current_state == SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE) {
93 return true;
94 }
95
96 return false;
97}
98
99/**
100 *
Dave Jiange2023b82011-04-21 05:34:49 +0000101 * @sci_dev: The remote device to use to construct the RNC buffer.
Dan Williams6f231dd2011-07-02 22:56:22 -0700102 * @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 */
Dan Williams35173d52011-03-26 16:43:01 -0700106static void scic_sds_remote_node_context_construct_buffer(
Dave Jiange2023b82011-04-21 05:34:49 +0000107 struct scic_sds_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700108{
Dan Williams96143952011-04-19 18:35:58 -0700109 struct scic_sds_remote_device *sci_dev = rnc_to_dev(sci_rnc);
Dan Williamsa1a113b2011-04-21 18:44:45 -0700110 struct domain_device *dev = sci_dev_to_domain(sci_dev);
111 union scu_remote_node_context *rnc;
Dave Jiange2023b82011-04-21 05:34:49 +0000112 struct scic_sds_controller *scic;
Dan Williams6f231dd2011-07-02 22:56:22 -0700113
Dan Williams96143952011-04-19 18:35:58 -0700114 scic = scic_sds_remote_device_get_controller(sci_dev);
Dan Williams6f231dd2011-07-02 22:56:22 -0700115
116 rnc = scic_sds_controller_get_remote_node_context_buffer(
Dave Jiange2023b82011-04-21 05:34:49 +0000117 scic, sci_rnc->remote_node_index);
Dan Williams6f231dd2011-07-02 22:56:22 -0700118
Dan Williams96143952011-04-19 18:35:58 -0700119 memset(rnc, 0, sizeof(union scu_remote_node_context)
120 * scic_sds_remote_device_node_count(sci_dev));
Dan Williams6f231dd2011-07-02 22:56:22 -0700121
Dave Jiange2023b82011-04-21 05:34:49 +0000122 rnc->ssp.remote_node_index = sci_rnc->remote_node_index;
Dan Williams96143952011-04-19 18:35:58 -0700123 rnc->ssp.remote_node_port_width = sci_dev->device_port_width;
Dan Williams6f231dd2011-07-02 22:56:22 -0700124 rnc->ssp.logical_port_index =
Dan Williams96143952011-04-19 18:35:58 -0700125 scic_sds_remote_device_get_port_index(sci_dev);
Dan Williams6f231dd2011-07-02 22:56:22 -0700126
Dan Williams96143952011-04-19 18:35:58 -0700127 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);
Dan Williams6f231dd2011-07-02 22:56:22 -0700129
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
Dan Williamsa1a113b2011-04-21 18:44:45 -0700138 if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700139 rnc->ssp.connection_occupancy_timeout =
Dave Jiange2023b82011-04-21 05:34:49 +0000140 scic->user_parameters.sds1.stp_max_occupancy_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700141 rnc->ssp.connection_inactivity_timeout =
Dave Jiange2023b82011-04-21 05:34:49 +0000142 scic->user_parameters.sds1.stp_inactivity_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700143 } else {
144 rnc->ssp.connection_occupancy_timeout =
Dave Jiange2023b82011-04-21 05:34:49 +0000145 scic->user_parameters.sds1.ssp_max_occupancy_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700146 rnc->ssp.connection_inactivity_timeout =
Dave Jiange2023b82011-04-21 05:34:49 +0000147 scic->user_parameters.sds1.ssp_inactivity_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700148 }
149
150 rnc->ssp.initial_arbitration_wait_time = 0;
151
152 /* Open Address Frame Parameters */
Dan Williams96143952011-04-19 18:35:58 -0700153 rnc->ssp.oaf_connection_rate = sci_dev->connection_rate;
Dan Williams6f231dd2011-07-02 22:56:22 -0700154 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 *
Dave Jiange2023b82011-04-21 05:34:49 +0000161 * @sci_rnc:
162 * @callback:
Dan Williams6f231dd2011-07-02 22:56:22 -0700163 * @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(
Dave Jiange2023b82011-04-21 05:34:49 +0000170 struct scic_sds_remote_node_context *sci_rnc,
171 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700172 void *callback_parameter)
173{
Dave Jiange2023b82011-04-21 05:34:49 +0000174 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;
Dan Williams6f231dd2011-07-02 22:56:22 -0700178 }
179}
180
181/**
182 *
Dave Jiange2023b82011-04-21 05:34:49 +0000183 * @sci_rnc:
184 * @callback:
Dan Williams6f231dd2011-07-02 22:56:22 -0700185 * @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(
Dave Jiange2023b82011-04-21 05:34:49 +0000191 struct scic_sds_remote_node_context *sci_rnc,
192 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700193 void *callback_parameter)
194{
Dave Jiange2023b82011-04-21 05:34:49 +0000195 sci_rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL;
196 sci_rnc->user_callback = callback;
197 sci_rnc->user_cookie = callback_parameter;
Dan Williams6f231dd2011-07-02 22:56:22 -0700198}
199
200/**
201 *
Dave Jiange2023b82011-04-21 05:34:49 +0000202 * @sci_rnc:
203 * @callback:
Dan Williams6f231dd2011-07-02 22:56:22 -0700204 *
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000209 struct scic_sds_remote_node_context *sci_rnc,
210 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700211 void *callback_parameter)
212{
Dave Jiange2023b82011-04-21 05:34:49 +0000213 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;
Dan Williams6f231dd2011-07-02 22:56:22 -0700216
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000226 struct scic_sds_remote_node_context *sci_rnc,
227 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700228 void *callback_parameter)
229{
Dan Williams96143952011-04-19 18:35:58 -0700230 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700231 "%s: SCIC Remote Node Context 0x%p requested to stop while "
232 "in unexpected state %d\n",
233 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000234 sci_rnc,
235 sci_base_state_machine_get_state(&sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700236
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000244 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700245 u32 suspend_type,
Dave Jiange2023b82011-04-21 05:34:49 +0000246 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700247 void *callback_parameter)
248{
Dan Williams96143952011-04-19 18:35:58 -0700249 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700250 "%s: SCIC Remote Node Context 0x%p requested to suspend "
251 "while in wrong state %d\n",
252 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000253 sci_rnc,
254 sci_base_state_machine_get_state(&sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700255
256 return SCI_FAILURE_INVALID_STATE;
257}
258
259static enum sci_status scic_sds_remote_node_context_default_resume_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000260 struct scic_sds_remote_node_context *sci_rnc,
261 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700262 void *callback_parameter)
263{
Dan Williams96143952011-04-19 18:35:58 -0700264 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700265 "%s: SCIC Remote Node Context 0x%p requested to resume "
266 "while in wrong state %d\n",
267 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000268 sci_rnc,
269 sci_base_state_machine_get_state(&sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700270
271 return SCI_FAILURE_INVALID_STATE;
272}
273
274static enum sci_status scic_sds_remote_node_context_default_start_io_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000275 struct scic_sds_remote_node_context *sci_rnc,
276 struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700277{
Dan Williams96143952011-04-19 18:35:58 -0700278 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700279 "%s: SCIC Remote Node Context 0x%p requested to start io "
280 "0x%p while in wrong state %d\n",
281 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000282 sci_rnc,
283 sci_req,
284 sci_base_state_machine_get_state(&sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700285
286 return SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED;
287}
288
289static enum sci_status scic_sds_remote_node_context_default_start_task_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000290 struct scic_sds_remote_node_context *sci_rnc,
291 struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700292{
Dan Williams96143952011-04-19 18:35:58 -0700293 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700294 "%s: SCIC Remote Node Context 0x%p requested to start "
295 "task 0x%p while in wrong state %d\n",
296 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000297 sci_rnc,
298 sci_req,
299 sci_base_state_machine_get_state(&sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700300
301 return SCI_FAILURE;
302}
303
304static enum sci_status scic_sds_remote_node_context_default_event_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000305 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700306 u32 event_code)
307{
Dan Williams96143952011-04-19 18:35:58 -0700308 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700309 "%s: SCIC Remote Node Context 0x%p requested to process "
310 "event 0x%x while in wrong state %d\n",
311 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000312 sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700313 event_code,
Dave Jiange2023b82011-04-21 05:34:49 +0000314 sci_base_state_machine_get_state(&sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700315
316 return SCI_FAILURE_INVALID_STATE;
317}
318
319/**
320 *
Dave Jiange2023b82011-04-21 05:34:49 +0000321 * @sci_rnc: The rnc for which the task request is targeted.
322 * @sci_req: The request which is going to be started.
Dan Williams6f231dd2011-07-02 22:56:22 -0700323 *
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000329 struct scic_sds_remote_node_context *sci_rnc,
330 struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700331{
332 return SCI_SUCCESS;
333}
334
335/**
336 *
Dave Jiange2023b82011-04-21 05:34:49 +0000337 * @sci_rnc:
338 * @callback:
Dan Williams6f231dd2011-07-02 22:56:22 -0700339 * @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(
Dave Jiange2023b82011-04-21 05:34:49 +0000347 struct scic_sds_remote_node_context *sci_rnc,
348 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700349 void *callback_parameter)
350{
351 scic_sds_remote_node_context_setup_to_destory(
Dave Jiange2023b82011-04-21 05:34:49 +0000352 sci_rnc, callback, callback_parameter
Dan Williams6f231dd2011-07-02 22:56:22 -0700353 );
354
355 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000356 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700357 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000366 struct scic_sds_remote_node_context *sci_rnc,
367 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700368 void *callback_parameter)
369{
Dave Jiange2023b82011-04-21 05:34:49 +0000370 if (sci_rnc->remote_node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700371 scic_sds_remote_node_context_setup_to_resume(
Dave Jiange2023b82011-04-21 05:34:49 +0000372 sci_rnc, callback, callback_parameter
Dan Williams6f231dd2011-07-02 22:56:22 -0700373 );
374
Dave Jiange2023b82011-04-21 05:34:49 +0000375 scic_sds_remote_node_context_construct_buffer(sci_rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700376
377 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000378 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700379 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000391 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700392 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000401 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700402 SCIC_SDS_REMOTE_NODE_CONTEXT_READY_STATE
403 );
404 break;
405
406 default:
407 status = SCI_FAILURE;
Dan Williams96143952011-04-19 18:35:58 -0700408 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700409 "%s: SCIC Remote Node Context 0x%p requested to "
410 "process unexpected event 0x%x while in posting "
411 "state\n",
412 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000413 sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700414 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000424 struct scic_sds_remote_node_context *sci_rnc,
425 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700426 void *callback_parameter)
427{
428 scic_sds_remote_node_context_setup_to_destory(
Dave Jiange2023b82011-04-21 05:34:49 +0000429 sci_rnc, callback, callback_parameter
Dan Williams6f231dd2011-07-02 22:56:22 -0700430 );
431
432 return SCI_SUCCESS;
433}
434
435static enum sci_status scic_sds_remote_node_context_invalidating_state_event_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000436 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700437 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
Dave Jiange2023b82011-04-21 05:34:49 +0000444 if (sci_rnc->destination_state == SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700445 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000446 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700447 SCIC_SDS_REMOTE_NODE_CONTEXT_INITIAL_STATE
448 );
449 } else {
450 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000451 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700452 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 */
Dan Williams96143952011-04-19 18:35:58 -0700462 dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700463 "%s: SCIC Remote Node Context 0x%p was "
464 "suspeneded by hardware while being "
465 "invalidated.\n",
466 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000467 sci_rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700468 status = SCI_SUCCESS;
469 break;
470
471 default:
Dan Williams96143952011-04-19 18:35:58 -0700472 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700473 "%s: SCIC Remote Node Context 0x%p "
474 "requested to process event 0x%x while "
475 "in state %d.\n",
476 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000477 sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700478 event_code,
479 sci_base_state_machine_get_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000480 &sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700481 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000493 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700494 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000502 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700503 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 */
Dan Williams96143952011-04-19 18:35:58 -0700512 dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700513 "%s: SCIC Remote Node Context 0x%p was "
514 "suspeneded by hardware while being resumed.\n",
515 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000516 sci_rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700517 status = SCI_SUCCESS;
518 break;
519
520 default:
Dan Williams96143952011-04-19 18:35:58 -0700521 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700522 "%s: SCIC Remote Node Context 0x%p requested "
523 "to process event 0x%x while in state %d.\n",
524 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000525 sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700526 event_code,
527 sci_base_state_machine_get_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000528 &sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700529 status = SCI_FAILURE;
530 break;
531 }
532 }
533
534 return status;
535}
536
537/* --------------------------------------------------------------------------- */
538
539/**
540 *
Dave Jiange2023b82011-04-21 05:34:49 +0000541 * @sci_rnc: The remote node context object being suspended.
542 * @callback: The callback when the suspension is complete.
Dan Williams6f231dd2011-07-02 22:56:22 -0700543 * @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(
Dave Jiange2023b82011-04-21 05:34:49 +0000549 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700550 u32 suspend_type,
Dave Jiange2023b82011-04-21 05:34:49 +0000551 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700552 void *callback_parameter)
553{
Dave Jiange2023b82011-04-21 05:34:49 +0000554 sci_rnc->user_callback = callback;
555 sci_rnc->user_cookie = callback_parameter;
556 sci_rnc->suspension_code = suspend_type;
Dan Williams6f231dd2011-07-02 22:56:22 -0700557
558 if (suspend_type == SCI_SOFTWARE_SUSPENSION) {
Dan Williams96143952011-04-19 18:35:58 -0700559 scic_sds_remote_device_post_request(rnc_to_dev(sci_rnc),
560 SCU_CONTEXT_COMMAND_POST_RNC_SUSPEND_TX);
Dan Williams6f231dd2011-07-02 22:56:22 -0700561 }
562
563 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000564 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700565 SCIC_SDS_REMOTE_NODE_CONTEXT_AWAIT_SUSPENSION_STATE
566 );
567
568 return SCI_SUCCESS;
569}
570
571/**
572 *
Dave Jiange2023b82011-04-21 05:34:49 +0000573 * @sci_rnc: The rnc for which the io request is targeted.
574 * @sci_req: The request which is going to be started.
Dan Williams6f231dd2011-07-02 22:56:22 -0700575 *
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000581 struct scic_sds_remote_node_context *sci_rnc,
582 struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700583{
584 return SCI_SUCCESS;
585}
586
587
588static enum sci_status scic_sds_remote_node_context_ready_state_event_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000589 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700590 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000597 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700598 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_SUSPENDED_STATE
599 );
600
Dave Jiange2023b82011-04-21 05:34:49 +0000601 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
Dan Williams6f231dd2011-07-02 22:56:22 -0700602 status = SCI_SUCCESS;
603 break;
604
605 case SCU_EVENT_TL_RNC_SUSPEND_TX_RX:
606 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000607 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700608 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_RX_SUSPENDED_STATE
609 );
610
Dave Jiange2023b82011-04-21 05:34:49 +0000611 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
Dan Williams6f231dd2011-07-02 22:56:22 -0700612 status = SCI_SUCCESS;
613 break;
614
615 default:
Dan Williams96143952011-04-19 18:35:58 -0700616 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700617 "%s: SCIC Remote Node Context 0x%p requested to "
618 "process event 0x%x while in state %d.\n",
619 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000620 sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700621 event_code,
622 sci_base_state_machine_get_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000623 &sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700624
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000635 struct scic_sds_remote_node_context *sci_rnc,
636 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700637 void *callback_parameter)
638{
Dan Williamsa1a113b2011-04-21 18:44:45 -0700639 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;
Dan Williams6f231dd2011-07-02 22:56:22 -0700642
Dan Williamsa1a113b2011-04-21 18:44:45 -0700643 scic_sds_remote_node_context_setup_to_resume(sci_rnc, callback,
644 callback_parameter);
Dan Williams6f231dd2011-07-02 22:56:22 -0700645
646 /* TODO: consider adding a resume action of NONE, INVALIDATE, WRITE_TLCR */
Dan Williamsa1a113b2011-04-21 18:44:45 -0700647 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) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700652 /* @todo Fix this since I am being silly in writing to the STPTLDARNI register. */
Dan Williams6f231dd2011-07-02 22:56:22 -0700653 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000654 &sci_rnc->state_machine,
Dan Williamsa1a113b2011-04-21 18:44:45 -0700655 SCIC_SDS_REMOTE_NODE_CONTEXT_RESUMING_STATE);
Dan Williams6f231dd2011-07-02 22:56:22 -0700656 } else {
657 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000658 &sci_rnc->state_machine,
Dan Williamsa1a113b2011-04-21 18:44:45 -0700659 SCIC_SDS_REMOTE_NODE_CONTEXT_INVALIDATING_STATE);
Dan Williams6f231dd2011-07-02 22:56:22 -0700660 }
Dan Williamsa1a113b2011-04-21 18:44:45 -0700661 } else
Dan Williams6f231dd2011-07-02 22:56:22 -0700662 status = SCI_FAILURE;
Dan Williams6f231dd2011-07-02 22:56:22 -0700663
664 return status;
665}
666
667/**
668 *
Dave Jiange2023b82011-04-21 05:34:49 +0000669 * @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
Dan Williams6f231dd2011-07-02 22:56:22 -0700671 * 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000679 struct scic_sds_remote_node_context *sci_rnc,
680 struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700681{
Dave Jiange2023b82011-04-21 05:34:49 +0000682 scic_sds_remote_node_context_resume(sci_rnc, NULL, NULL);
Dan Williams6f231dd2011-07-02 22:56:22 -0700683
684 return SCI_SUCCESS;
685}
686
687/* --------------------------------------------------------------------------- */
688
689static enum sci_status scic_sds_remote_node_context_tx_rx_suspended_state_resume_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000690 struct scic_sds_remote_node_context *sci_rnc,
691 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700692 void *callback_parameter)
693{
694 scic_sds_remote_node_context_setup_to_resume(
Dave Jiange2023b82011-04-21 05:34:49 +0000695 sci_rnc, callback, callback_parameter
Dan Williams6f231dd2011-07-02 22:56:22 -0700696 );
697
698 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000699 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700700 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000714 struct scic_sds_remote_node_context *sci_rnc,
715 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700716 void *callback_parameter)
717{
718 scic_sds_remote_node_context_setup_to_resume(
Dave Jiange2023b82011-04-21 05:34:49 +0000719 sci_rnc, callback, callback_parameter
Dan Williams6f231dd2011-07-02 22:56:22 -0700720 );
721
722 return SCI_SUCCESS;
723}
724
725/**
726 *
Dave Jiange2023b82011-04-21 05:34:49 +0000727 * @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
Dan Williams6f231dd2011-07-02 22:56:22 -0700729 * 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000737 struct scic_sds_remote_node_context *sci_rnc,
738 struct scic_sds_request *sci_req)
Dan Williams6f231dd2011-07-02 22:56:22 -0700739{
740 return SCI_SUCCESS;
741}
742
743static enum sci_status scic_sds_remote_node_context_await_suspension_state_event_handler(
Dave Jiange2023b82011-04-21 05:34:49 +0000744 struct scic_sds_remote_node_context *sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700745 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(
Dave Jiange2023b82011-04-21 05:34:49 +0000752 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700753 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_SUSPENDED_STATE
754 );
755
Dave Jiange2023b82011-04-21 05:34:49 +0000756 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
Dan Williams6f231dd2011-07-02 22:56:22 -0700757 status = SCI_SUCCESS;
758 break;
759
760 case SCU_EVENT_TL_RNC_SUSPEND_TX_RX:
761 sci_base_state_machine_change_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000762 &sci_rnc->state_machine,
Dan Williams6f231dd2011-07-02 22:56:22 -0700763 SCIC_SDS_REMOTE_NODE_CONTEXT_TX_RX_SUSPENDED_STATE
764 );
765
Dave Jiange2023b82011-04-21 05:34:49 +0000766 sci_rnc->suspension_code = scu_get_event_specifier(event_code);
Dan Williams6f231dd2011-07-02 22:56:22 -0700767 status = SCI_SUCCESS;
768 break;
769
770 default:
Dan Williams96143952011-04-19 18:35:58 -0700771 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams6f231dd2011-07-02 22:56:22 -0700772 "%s: SCIC Remote Node Context 0x%p requested to "
773 "process event 0x%x while in state %d.\n",
774 __func__,
Dave Jiange2023b82011-04-21 05:34:49 +0000775 sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -0700776 event_code,
777 sci_base_state_machine_get_state(
Dave Jiange2023b82011-04-21 05:34:49 +0000778 &sci_rnc->state_machine));
Dan Williams6f231dd2011-07-02 22:56:22 -0700779
780 status = SCI_FAILURE;
781 break;
782 }
783
784 return status;
785}
786
787/* --------------------------------------------------------------------------- */
788
Dan Williams35173d52011-03-26 16:43:01 -0700789static struct scic_sds_remote_node_context_handlers
Dan Williams6f231dd2011-07-02 22:56:22 -0700790scic_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 *
Dave Jiange2023b82011-04-21 05:34:49 +0000908 * @sci_rnc: The remote node context object that is to be validated.
Dan Williams6f231dd2011-07-02 22:56:22 -0700909 *
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000914 struct scic_sds_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700915{
Dan Williams96143952011-04-19 18:35:58 -0700916 struct scic_sds_remote_device *sci_dev = rnc_to_dev(sci_rnc);
Dan Williamsa1a113b2011-04-21 18:44:45 -0700917 struct domain_device *dev = sci_dev_to_domain(sci_dev);
Dan Williams6f231dd2011-07-02 22:56:22 -0700918 union scu_remote_node_context *rnc_buffer;
919
920 rnc_buffer = scic_sds_controller_get_remote_node_context_buffer(
Dan Williams96143952011-04-19 18:35:58 -0700921 scic_sds_remote_device_get_controller(sci_dev),
Dave Jiange2023b82011-04-21 05:34:49 +0000922 sci_rnc->remote_node_index
Dan Williams6f231dd2011-07-02 22:56:22 -0700923 );
924
925 rnc_buffer->ssp.is_valid = true;
926
Dan Williams96143952011-04-19 18:35:58 -0700927 if (!sci_dev->is_direct_attached &&
Dan Williamsa1a113b2011-04-21 18:44:45 -0700928 (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP))) {
Dan Williams96143952011-04-19 18:35:58 -0700929 scic_sds_remote_device_post_request(sci_dev,
930 SCU_CONTEXT_COMMAND_POST_RNC_96);
Dan Williams6f231dd2011-07-02 22:56:22 -0700931 } else {
Dan Williams96143952011-04-19 18:35:58 -0700932 scic_sds_remote_device_post_request(sci_dev, SCU_CONTEXT_COMMAND_POST_RNC_32);
Dan Williams6f231dd2011-07-02 22:56:22 -0700933
Dan Williams96143952011-04-19 18:35:58 -0700934 if (sci_dev->is_direct_attached) {
935 scic_sds_port_setup_transports(sci_dev->owning_port,
936 sci_rnc->remote_node_index);
Dan Williams6f231dd2011-07-02 22:56:22 -0700937 }
938 }
939}
940
941/**
942 *
Dave Jiange2023b82011-04-21 05:34:49 +0000943 * @sci_rnc: The remote node context object that is to be invalidated.
Dan Williams6f231dd2011-07-02 22:56:22 -0700944 *
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(
Dave Jiange2023b82011-04-21 05:34:49 +0000948 struct scic_sds_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700949{
950 union scu_remote_node_context *rnc_buffer;
951
952 rnc_buffer = scic_sds_controller_get_remote_node_context_buffer(
Dan Williams96143952011-04-19 18:35:58 -0700953 scic_sds_remote_device_get_controller(rnc_to_dev(sci_rnc)),
954 sci_rnc->remote_node_index);
Dan Williams6f231dd2011-07-02 22:56:22 -0700955
956 rnc_buffer->ssp.is_valid = false;
957
Dan Williams96143952011-04-19 18:35:58 -0700958 scic_sds_remote_device_post_request(rnc_to_dev(sci_rnc),
959 SCU_CONTEXT_COMMAND_POST_RNC_INVALIDATE);
Dan Williams6f231dd2011-07-02 22:56:22 -0700960}
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{
Dave Jiange2023b82011-04-21 05:34:49 +00001006 struct scic_sds_remote_node_context *sci_rnc;
Dan Williams6f231dd2011-07-02 22:56:22 -07001007
Dave Jiange2023b82011-04-21 05:34:49 +00001008 sci_rnc = (struct scic_sds_remote_node_context *)object;
Dan Williams6f231dd2011-07-02 22:56:22 -07001009
1010 SET_STATE_HANDLER(
Dave Jiange2023b82011-04-21 05:34:49 +00001011 sci_rnc,
Dan Williams6f231dd2011-07-02 22:56:22 -07001012 scic_sds_remote_node_context_state_handler_table,
1013 SCIC_SDS_REMOTE_NODE_CONTEXT_POSTING_STATE
1014 );
1015
Dave Jiange2023b82011-04-21 05:34:49 +00001016 scic_sds_remote_node_context_validate_context_buffer(sci_rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -07001017}
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;
Dan Williams96143952011-04-19 18:35:58 -07001049 struct scic_sds_remote_device *sci_dev;
Dan Williamsa1a113b2011-04-21 18:44:45 -07001050 struct domain_device *dev;
Dan Williams6f231dd2011-07-02 22:56:22 -07001051
1052 rnc = (struct scic_sds_remote_node_context *)object;
Dan Williams96143952011-04-19 18:35:58 -07001053 sci_dev = rnc_to_dev(rnc);
Dan Williamsa1a113b2011-04-21 18:44:45 -07001054 dev = sci_dev_to_domain(sci_dev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001055
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
Henryk Dembkowski24621462011-02-23 00:08:52 -08001062 /*
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 */
Dan Williamsa1a113b2011-04-21 18:44:45 -07001068 if ((dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) &&
1069 sci_dev->is_direct_attached)
Dan Williams96143952011-04-19 18:35:58 -07001070 scic_sds_port_setup_transports(sci_dev->owning_port,
1071 rnc->remote_node_index);
Henryk Dembkowski24621462011-02-23 00:08:52 -08001072
Dan Williams96143952011-04-19 18:35:58 -07001073 scic_sds_remote_device_post_request(sci_dev, SCU_CONTEXT_COMMAND_POST_RNC_RESUME);
Dan Williams6f231dd2011-07-02 22:56:22 -07001074}
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
Dan Williams35173d52011-03-26 16:43:01 -07001164static const struct sci_base_state scic_sds_remote_node_context_state_table[] = {
Dan Williams6f231dd2011-07-02 22:56:22 -07001165 [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
Dan Williams96143952011-04-19 18:35:58 -07001191void scic_sds_remote_node_context_construct(struct scic_sds_remote_node_context *rnc,
1192 u16 remote_node_index)
Dan Williams35173d52011-03-26 16:43:01 -07001193{
1194 memset(rnc, 0, sizeof(struct scic_sds_remote_node_context));
1195
1196 rnc->remote_node_index = remote_node_index;
Dan Williams35173d52011-03-26 16:43:01 -07001197 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}