blob: feeca17f0f13a290e92cf39f734518f473280932 [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
Dan Williamscc9203b2011-05-08 17:34:44 -070056#include "host.h"
Edmund Nadolski12ef6542011-06-02 00:10:50 +000057#include "isci.h"
Dan Williams88f3b622011-04-22 19:18:03 -070058#include "remote_device.h"
59#include "remote_node_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070060#include "scu_event_codes.h"
61#include "scu_task_context.h"
62
Dan Williamsd7a0ccd2012-02-10 01:18:44 -080063#undef C
64#define C(a) (#a)
65const char *rnc_state_name(enum scis_sds_remote_node_context_states state)
66{
67 static const char * const strings[] = RNC_STATES;
Dan Williams6f231dd2011-07-02 22:56:22 -070068
Dan Williamsd7a0ccd2012-02-10 01:18:44 -080069 return strings[state];
70}
71#undef C
Dan Williams6f231dd2011-07-02 22:56:22 -070072
73/**
74 *
Dave Jiange2023b82011-04-21 05:34:49 +000075 * @sci_rnc: The state of the remote node context object to check.
Dan Williams6f231dd2011-07-02 22:56:22 -070076 *
77 * This method will return true if the remote node context is in a READY state
78 * otherwise it will return false bool true if the remote node context is in
79 * the ready state. false if the remote node context is not in the ready state.
80 */
Dan Williams89a73012011-06-30 19:14:33 -070081bool sci_remote_node_context_is_ready(
82 struct sci_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -070083{
Edmund Nadolskie3013702011-06-02 00:10:43 +000084 u32 current_state = sci_rnc->sm.current_state_id;
Dan Williams6f231dd2011-07-02 22:56:22 -070085
Edmund Nadolskie3013702011-06-02 00:10:43 +000086 if (current_state == SCI_RNC_READY) {
Dan Williams6f231dd2011-07-02 22:56:22 -070087 return true;
88 }
89
90 return false;
91}
92
Dan Williams89a73012011-06-30 19:14:33 -070093static union scu_remote_node_context *sci_rnc_by_id(struct isci_host *ihost, u16 id)
94{
95 if (id < ihost->remote_node_entries &&
96 ihost->device_table[id])
97 return &ihost->remote_node_context_table[id];
98
99 return NULL;
100}
101
102static void sci_remote_node_context_construct_buffer(struct sci_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700103{
Dan Williams78a6f062011-06-30 16:31:37 -0700104 struct isci_remote_device *idev = rnc_to_dev(sci_rnc);
105 struct domain_device *dev = idev->domain_dev;
Dan Williams1f4fa1f2011-04-26 11:44:06 -0700106 int rni = sci_rnc->remote_node_index;
Dan Williamsa1a113b2011-04-21 18:44:45 -0700107 union scu_remote_node_context *rnc;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700108 struct isci_host *ihost;
Dan Williamsa3d568f02011-04-26 09:41:52 -0700109 __le64 sas_addr;
Dan Williams6f231dd2011-07-02 22:56:22 -0700110
Dan Williams34a99152011-07-01 02:25:15 -0700111 ihost = idev->owning_port->owning_controller;
Dan Williams89a73012011-06-30 19:14:33 -0700112 rnc = sci_rnc_by_id(ihost, rni);
Dan Williams6f231dd2011-07-02 22:56:22 -0700113
Dan Williams96143952011-04-19 18:35:58 -0700114 memset(rnc, 0, sizeof(union scu_remote_node_context)
Dan Williams89a73012011-06-30 19:14:33 -0700115 * sci_remote_device_node_count(idev));
Dan Williams6f231dd2011-07-02 22:56:22 -0700116
Dan Williams1f4fa1f2011-04-26 11:44:06 -0700117 rnc->ssp.remote_node_index = rni;
Dan Williams78a6f062011-06-30 16:31:37 -0700118 rnc->ssp.remote_node_port_width = idev->device_port_width;
119 rnc->ssp.logical_port_index = idev->owning_port->physical_port_index;
Dan Williams6f231dd2011-07-02 22:56:22 -0700120
Dan Williamsa3d568f02011-04-26 09:41:52 -0700121 /* sas address is __be64, context ram format is __le64 */
122 sas_addr = cpu_to_le64(SAS_ADDR(dev->sas_addr));
123 rnc->ssp.remote_sas_address_hi = upper_32_bits(sas_addr);
124 rnc->ssp.remote_sas_address_lo = lower_32_bits(sas_addr);
Dan Williams6f231dd2011-07-02 22:56:22 -0700125
126 rnc->ssp.nexus_loss_timer_enable = true;
127 rnc->ssp.check_bit = false;
128 rnc->ssp.is_valid = false;
129 rnc->ssp.is_remote_node_context = true;
130 rnc->ssp.function_number = 0;
131
132 rnc->ssp.arbitration_wait_time = 0;
133
Dan Williams11cc51832012-02-01 00:23:10 -0800134 if (dev_is_sata(dev)) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700135 rnc->ssp.connection_occupancy_timeout =
Dan Williams89a73012011-06-30 19:14:33 -0700136 ihost->user_parameters.stp_max_occupancy_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700137 rnc->ssp.connection_inactivity_timeout =
Dan Williams89a73012011-06-30 19:14:33 -0700138 ihost->user_parameters.stp_inactivity_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700139 } else {
140 rnc->ssp.connection_occupancy_timeout =
Dan Williams89a73012011-06-30 19:14:33 -0700141 ihost->user_parameters.ssp_max_occupancy_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700142 rnc->ssp.connection_inactivity_timeout =
Dan Williams89a73012011-06-30 19:14:33 -0700143 ihost->user_parameters.ssp_inactivity_timeout;
Dan Williams6f231dd2011-07-02 22:56:22 -0700144 }
145
146 rnc->ssp.initial_arbitration_wait_time = 0;
147
148 /* Open Address Frame Parameters */
Dan Williams78a6f062011-06-30 16:31:37 -0700149 rnc->ssp.oaf_connection_rate = idev->connection_rate;
Dan Williams6f231dd2011-07-02 22:56:22 -0700150 rnc->ssp.oaf_features = 0;
151 rnc->ssp.oaf_source_zone_group = 0;
152 rnc->ssp.oaf_more_compatibility_features = 0;
153}
154
155/**
156 *
Dave Jiange2023b82011-04-21 05:34:49 +0000157 * @sci_rnc:
158 * @callback:
Dan Williams6f231dd2011-07-02 22:56:22 -0700159 * @callback_parameter:
160 *
161 * This method will setup the remote node context object so it will transition
162 * to its ready state. If the remote node context is already setup to
163 * transition to its final state then this function does nothing. none
164 */
Dan Williams89a73012011-06-30 19:14:33 -0700165static void sci_remote_node_context_setup_to_resume(
166 struct sci_remote_node_context *sci_rnc,
Dave Jiange2023b82011-04-21 05:34:49 +0000167 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700168 void *callback_parameter)
169{
Dave Jiange2023b82011-04-21 05:34:49 +0000170 if (sci_rnc->destination_state != SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL) {
171 sci_rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_READY;
172 sci_rnc->user_callback = callback;
173 sci_rnc->user_cookie = callback_parameter;
Dan Williams6f231dd2011-07-02 22:56:22 -0700174 }
175}
176
Dan Williams89a73012011-06-30 19:14:33 -0700177static void sci_remote_node_context_setup_to_destory(
178 struct sci_remote_node_context *sci_rnc,
Dave Jiange2023b82011-04-21 05:34:49 +0000179 scics_sds_remote_node_context_callback callback,
Dan Williams6f231dd2011-07-02 22:56:22 -0700180 void *callback_parameter)
181{
Dave Jiange2023b82011-04-21 05:34:49 +0000182 sci_rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL;
183 sci_rnc->user_callback = callback;
184 sci_rnc->user_cookie = callback_parameter;
Dan Williams6f231dd2011-07-02 22:56:22 -0700185}
186
Dan Williams6f231dd2011-07-02 22:56:22 -0700187/**
188 *
189 *
190 * This method just calls the user callback function and then resets the
191 * callback.
192 */
Dan Williams89a73012011-06-30 19:14:33 -0700193static void sci_remote_node_context_notify_user(
194 struct sci_remote_node_context *rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700195{
196 if (rnc->user_callback != NULL) {
197 (*rnc->user_callback)(rnc->user_cookie);
198
199 rnc->user_callback = NULL;
200 rnc->user_cookie = NULL;
201 }
202}
203
Dan Williams89a73012011-06-30 19:14:33 -0700204static void sci_remote_node_context_continue_state_transitions(struct sci_remote_node_context *rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700205{
Dan Williamsed3efb72011-05-12 08:50:23 -0700206 if (rnc->destination_state == SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_READY)
Dan Williams89a73012011-06-30 19:14:33 -0700207 sci_remote_node_context_resume(rnc, rnc->user_callback,
Dan Williamsed3efb72011-05-12 08:50:23 -0700208 rnc->user_cookie);
Dan Williams6f231dd2011-07-02 22:56:22 -0700209}
210
Dan Williams89a73012011-06-30 19:14:33 -0700211static void sci_remote_node_context_validate_context_buffer(struct sci_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700212{
Dan Williams89a73012011-06-30 19:14:33 -0700213 union scu_remote_node_context *rnc_buffer;
Dan Williams78a6f062011-06-30 16:31:37 -0700214 struct isci_remote_device *idev = rnc_to_dev(sci_rnc);
215 struct domain_device *dev = idev->domain_dev;
Dan Williams89a73012011-06-30 19:14:33 -0700216 struct isci_host *ihost = idev->owning_port->owning_controller;
Dan Williams6f231dd2011-07-02 22:56:22 -0700217
Dan Williams89a73012011-06-30 19:14:33 -0700218 rnc_buffer = sci_rnc_by_id(ihost, sci_rnc->remote_node_index);
Dan Williams6f231dd2011-07-02 22:56:22 -0700219
220 rnc_buffer->ssp.is_valid = true;
221
Dan Williams11cc51832012-02-01 00:23:10 -0800222 if (dev_is_sata(dev) && dev->parent) {
Dan Williams89a73012011-06-30 19:14:33 -0700223 sci_remote_device_post_request(idev, SCU_CONTEXT_COMMAND_POST_RNC_96);
Dan Williams6f231dd2011-07-02 22:56:22 -0700224 } else {
Dan Williams89a73012011-06-30 19:14:33 -0700225 sci_remote_device_post_request(idev, SCU_CONTEXT_COMMAND_POST_RNC_32);
Dan Williams6f231dd2011-07-02 22:56:22 -0700226
Dan Williams11cc51832012-02-01 00:23:10 -0800227 if (!dev->parent)
Dan Williams89a73012011-06-30 19:14:33 -0700228 sci_port_setup_transports(idev->owning_port,
229 sci_rnc->remote_node_index);
Dan Williams6f231dd2011-07-02 22:56:22 -0700230 }
231}
232
Dan Williams89a73012011-06-30 19:14:33 -0700233static void sci_remote_node_context_invalidate_context_buffer(struct sci_remote_node_context *sci_rnc)
Dan Williams6f231dd2011-07-02 22:56:22 -0700234{
235 union scu_remote_node_context *rnc_buffer;
Dan Williams89a73012011-06-30 19:14:33 -0700236 struct isci_remote_device *idev = rnc_to_dev(sci_rnc);
237 struct isci_host *ihost = idev->owning_port->owning_controller;
Dan Williams6f231dd2011-07-02 22:56:22 -0700238
Dan Williams89a73012011-06-30 19:14:33 -0700239 rnc_buffer = sci_rnc_by_id(ihost, sci_rnc->remote_node_index);
Dan Williams6f231dd2011-07-02 22:56:22 -0700240
241 rnc_buffer->ssp.is_valid = false;
242
Dan Williams89a73012011-06-30 19:14:33 -0700243 sci_remote_device_post_request(rnc_to_dev(sci_rnc),
244 SCU_CONTEXT_COMMAND_POST_RNC_INVALIDATE);
Dan Williams6f231dd2011-07-02 22:56:22 -0700245}
246
Dan Williams89a73012011-06-30 19:14:33 -0700247static void sci_remote_node_context_initial_state_enter(struct sci_base_state_machine *sm)
Dan Williams6f231dd2011-07-02 22:56:22 -0700248{
Dan Williams89a73012011-06-30 19:14:33 -0700249 struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm);
Dan Williams6f231dd2011-07-02 22:56:22 -0700250
Dan Williamsf34d9e52011-05-12 09:27:52 -0700251 /* Check to see if we have gotten back to the initial state because
252 * someone requested to destroy the remote node context object.
253 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000254 if (sm->previous_state_id == SCI_RNC_INVALIDATING) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700255 rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_UNSPECIFIED;
Dan Williams89a73012011-06-30 19:14:33 -0700256 sci_remote_node_context_notify_user(rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700257 }
258}
259
Dan Williams89a73012011-06-30 19:14:33 -0700260static void sci_remote_node_context_posting_state_enter(struct sci_base_state_machine *sm)
Dan Williams6f231dd2011-07-02 22:56:22 -0700261{
Dan Williams89a73012011-06-30 19:14:33 -0700262 struct sci_remote_node_context *sci_rnc = container_of(sm, typeof(*sci_rnc), sm);
Dan Williams6f231dd2011-07-02 22:56:22 -0700263
Dan Williams89a73012011-06-30 19:14:33 -0700264 sci_remote_node_context_validate_context_buffer(sci_rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700265}
266
Dan Williams89a73012011-06-30 19:14:33 -0700267static void sci_remote_node_context_invalidating_state_enter(struct sci_base_state_machine *sm)
Dan Williams6f231dd2011-07-02 22:56:22 -0700268{
Dan Williams89a73012011-06-30 19:14:33 -0700269 struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm);
Dan Williams6f231dd2011-07-02 22:56:22 -0700270
Jeff Skirvin726980d2012-03-08 22:41:50 -0800271 /* Terminate outstanding requests pending abort. */
272 sci_remote_device_abort_requests_pending_abort(rnc_to_dev(rnc));
Dan Williams89a73012011-06-30 19:14:33 -0700273 sci_remote_node_context_invalidate_context_buffer(rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700274}
275
Dan Williams89a73012011-06-30 19:14:33 -0700276static void sci_remote_node_context_resuming_state_enter(struct sci_base_state_machine *sm)
Dan Williams6f231dd2011-07-02 22:56:22 -0700277{
Dan Williams89a73012011-06-30 19:14:33 -0700278 struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm);
Dan Williams78a6f062011-06-30 16:31:37 -0700279 struct isci_remote_device *idev;
Dan Williamsa1a113b2011-04-21 18:44:45 -0700280 struct domain_device *dev;
Dan Williams6f231dd2011-07-02 22:56:22 -0700281
Dan Williams78a6f062011-06-30 16:31:37 -0700282 idev = rnc_to_dev(rnc);
283 dev = idev->domain_dev;
Dan Williams6f231dd2011-07-02 22:56:22 -0700284
Henryk Dembkowski24621462011-02-23 00:08:52 -0800285 /*
286 * For direct attached SATA devices we need to clear the TLCR
287 * NCQ to TCi tag mapping on the phy and in cases where we
288 * resume because of a target reset we also need to update
289 * the STPTLDARNI register with the RNi of the device
290 */
Dan Williams11cc51832012-02-01 00:23:10 -0800291 if (dev_is_sata(dev) && !dev->parent)
292 sci_port_setup_transports(idev->owning_port, rnc->remote_node_index);
Henryk Dembkowski24621462011-02-23 00:08:52 -0800293
Dan Williams89a73012011-06-30 19:14:33 -0700294 sci_remote_device_post_request(idev, SCU_CONTEXT_COMMAND_POST_RNC_RESUME);
Dan Williams6f231dd2011-07-02 22:56:22 -0700295}
296
Dan Williams89a73012011-06-30 19:14:33 -0700297static void sci_remote_node_context_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williams6f231dd2011-07-02 22:56:22 -0700298{
Dan Williams89a73012011-06-30 19:14:33 -0700299 struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm);
Dan Williams6f231dd2011-07-02 22:56:22 -0700300
Dan Williams6f231dd2011-07-02 22:56:22 -0700301 rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_UNSPECIFIED;
302
Dan Williamsf34d9e52011-05-12 09:27:52 -0700303 if (rnc->user_callback)
Dan Williams89a73012011-06-30 19:14:33 -0700304 sci_remote_node_context_notify_user(rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700305}
306
Dan Williams89a73012011-06-30 19:14:33 -0700307static void sci_remote_node_context_tx_suspended_state_enter(struct sci_base_state_machine *sm)
Dan Williams6f231dd2011-07-02 22:56:22 -0700308{
Dan Williams89a73012011-06-30 19:14:33 -0700309 struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm);
Dan Williams6f231dd2011-07-02 22:56:22 -0700310
Dan Williams89a73012011-06-30 19:14:33 -0700311 sci_remote_node_context_continue_state_transitions(rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700312}
313
Dan Williams89a73012011-06-30 19:14:33 -0700314static void sci_remote_node_context_tx_rx_suspended_state_enter(struct sci_base_state_machine *sm)
Dan Williams6f231dd2011-07-02 22:56:22 -0700315{
Dan Williams89a73012011-06-30 19:14:33 -0700316 struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm);
Jeff Skirvin726980d2012-03-08 22:41:50 -0800317 struct isci_remote_device *idev = rnc_to_dev(rnc);
318 struct isci_host *ihost = idev->owning_port->owning_controller;
Dan Williams6f231dd2011-07-02 22:56:22 -0700319
Jeff Skirvin726980d2012-03-08 22:41:50 -0800320 /* Terminate outstanding requests pending abort. */
321 sci_remote_device_abort_requests_pending_abort(idev);
322
323 wake_up(&ihost->eventq);
Dan Williams89a73012011-06-30 19:14:33 -0700324 sci_remote_node_context_continue_state_transitions(rnc);
Dan Williams6f231dd2011-07-02 22:56:22 -0700325}
326
Jeff Skirvin6f488442012-03-08 22:41:48 -0800327static void sci_remote_node_context_await_suspend_state_exit(
328 struct sci_base_state_machine *sm)
329{
330 struct sci_remote_node_context *rnc
331 = container_of(sm, typeof(*rnc), sm);
332
333 isci_dev_set_hang_detection_timeout(rnc_to_dev(rnc), 0);
334}
335
Dan Williams89a73012011-06-30 19:14:33 -0700336static const struct sci_base_state sci_remote_node_context_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000337 [SCI_RNC_INITIAL] = {
Dan Williams89a73012011-06-30 19:14:33 -0700338 .enter_state = sci_remote_node_context_initial_state_enter,
Dan Williams6f231dd2011-07-02 22:56:22 -0700339 },
Edmund Nadolskie3013702011-06-02 00:10:43 +0000340 [SCI_RNC_POSTING] = {
Dan Williams89a73012011-06-30 19:14:33 -0700341 .enter_state = sci_remote_node_context_posting_state_enter,
Dan Williams6f231dd2011-07-02 22:56:22 -0700342 },
Edmund Nadolskie3013702011-06-02 00:10:43 +0000343 [SCI_RNC_INVALIDATING] = {
Dan Williams89a73012011-06-30 19:14:33 -0700344 .enter_state = sci_remote_node_context_invalidating_state_enter,
Dan Williams6f231dd2011-07-02 22:56:22 -0700345 },
Edmund Nadolskie3013702011-06-02 00:10:43 +0000346 [SCI_RNC_RESUMING] = {
Dan Williams89a73012011-06-30 19:14:33 -0700347 .enter_state = sci_remote_node_context_resuming_state_enter,
Dan Williams6f231dd2011-07-02 22:56:22 -0700348 },
Edmund Nadolskie3013702011-06-02 00:10:43 +0000349 [SCI_RNC_READY] = {
Dan Williams89a73012011-06-30 19:14:33 -0700350 .enter_state = sci_remote_node_context_ready_state_enter,
Dan Williams6f231dd2011-07-02 22:56:22 -0700351 },
Edmund Nadolskie3013702011-06-02 00:10:43 +0000352 [SCI_RNC_TX_SUSPENDED] = {
Dan Williams89a73012011-06-30 19:14:33 -0700353 .enter_state = sci_remote_node_context_tx_suspended_state_enter,
Dan Williams6f231dd2011-07-02 22:56:22 -0700354 },
Edmund Nadolskie3013702011-06-02 00:10:43 +0000355 [SCI_RNC_TX_RX_SUSPENDED] = {
Dan Williams89a73012011-06-30 19:14:33 -0700356 .enter_state = sci_remote_node_context_tx_rx_suspended_state_enter,
Dan Williams6f231dd2011-07-02 22:56:22 -0700357 },
Jeff Skirvin6f488442012-03-08 22:41:48 -0800358 [SCI_RNC_AWAIT_SUSPENSION] = {
359 .exit_state = sci_remote_node_context_await_suspend_state_exit,
360 },
Dan Williams6f231dd2011-07-02 22:56:22 -0700361};
362
Dan Williams89a73012011-06-30 19:14:33 -0700363void sci_remote_node_context_construct(struct sci_remote_node_context *rnc,
Dan Williams96143952011-04-19 18:35:58 -0700364 u16 remote_node_index)
Dan Williams35173d52011-03-26 16:43:01 -0700365{
Dan Williams89a73012011-06-30 19:14:33 -0700366 memset(rnc, 0, sizeof(struct sci_remote_node_context));
Dan Williams35173d52011-03-26 16:43:01 -0700367
368 rnc->remote_node_index = remote_node_index;
Dan Williams35173d52011-03-26 16:43:01 -0700369 rnc->destination_state = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_UNSPECIFIED;
370
Dan Williams89a73012011-06-30 19:14:33 -0700371 sci_init_sm(&rnc->sm, sci_remote_node_context_state_table, SCI_RNC_INITIAL);
Dan Williams35173d52011-03-26 16:43:01 -0700372}
Dan Williams338e3862011-05-12 07:46:59 -0700373
Dan Williams89a73012011-06-30 19:14:33 -0700374enum sci_status sci_remote_node_context_event_handler(struct sci_remote_node_context *sci_rnc,
Dan Williams338e3862011-05-12 07:46:59 -0700375 u32 event_code)
376{
377 enum scis_sds_remote_node_context_states state;
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800378 u32 next_state;
Dan Williams338e3862011-05-12 07:46:59 -0700379
Edmund Nadolskie3013702011-06-02 00:10:43 +0000380 state = sci_rnc->sm.current_state_id;
Dan Williams338e3862011-05-12 07:46:59 -0700381 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000382 case SCI_RNC_POSTING:
Dan Williams338e3862011-05-12 07:46:59 -0700383 switch (scu_get_event_code(event_code)) {
384 case SCU_EVENT_POST_RNC_COMPLETE:
Edmund Nadolskie3013702011-06-02 00:10:43 +0000385 sci_change_state(&sci_rnc->sm, SCI_RNC_READY);
Dan Williams338e3862011-05-12 07:46:59 -0700386 break;
387 default:
388 goto out;
389 }
390 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000391 case SCI_RNC_INVALIDATING:
Dan Williams338e3862011-05-12 07:46:59 -0700392 if (scu_get_event_code(event_code) == SCU_EVENT_POST_RNC_INVALIDATE_COMPLETE) {
393 if (sci_rnc->destination_state == SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_FINAL)
Edmund Nadolskie3013702011-06-02 00:10:43 +0000394 state = SCI_RNC_INITIAL;
Dan Williams338e3862011-05-12 07:46:59 -0700395 else
Edmund Nadolskie3013702011-06-02 00:10:43 +0000396 state = SCI_RNC_POSTING;
397 sci_change_state(&sci_rnc->sm, state);
Dan Williams338e3862011-05-12 07:46:59 -0700398 } else {
399 switch (scu_get_event_type(event_code)) {
400 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
401 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
402 /* We really dont care if the hardware is going to suspend
403 * the device since it's being invalidated anyway */
404 dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)),
405 "%s: SCIC Remote Node Context 0x%p was "
406 "suspeneded by hardware while being "
407 "invalidated.\n", __func__, sci_rnc);
408 break;
409 default:
410 goto out;
411 }
412 }
413 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000414 case SCI_RNC_RESUMING:
Dan Williams338e3862011-05-12 07:46:59 -0700415 if (scu_get_event_code(event_code) == SCU_EVENT_POST_RCN_RELEASE) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000416 sci_change_state(&sci_rnc->sm, SCI_RNC_READY);
Dan Williams338e3862011-05-12 07:46:59 -0700417 } else {
418 switch (scu_get_event_type(event_code)) {
419 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
420 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
421 /* We really dont care if the hardware is going to suspend
422 * the device since it's being resumed anyway */
423 dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)),
424 "%s: SCIC Remote Node Context 0x%p was "
425 "suspeneded by hardware while being resumed.\n",
426 __func__, sci_rnc);
427 break;
428 default:
429 goto out;
430 }
431 }
432 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000433 case SCI_RNC_READY:
Dan Williams338e3862011-05-12 07:46:59 -0700434 switch (scu_get_event_type(event_code)) {
435 case SCU_EVENT_TL_RNC_SUSPEND_TX:
Edmund Nadolskie3013702011-06-02 00:10:43 +0000436 sci_change_state(&sci_rnc->sm, SCI_RNC_TX_SUSPENDED);
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800437 sci_rnc->suspend_type = scu_get_event_type(event_code);
Dan Williams338e3862011-05-12 07:46:59 -0700438 break;
439 case SCU_EVENT_TL_RNC_SUSPEND_TX_RX:
Edmund Nadolskie3013702011-06-02 00:10:43 +0000440 sci_change_state(&sci_rnc->sm, SCI_RNC_TX_RX_SUSPENDED);
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800441 sci_rnc->suspend_type = scu_get_event_type(event_code);
Dan Williams338e3862011-05-12 07:46:59 -0700442 break;
443 default:
444 goto out;
445 }
446 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000447 case SCI_RNC_AWAIT_SUSPENSION:
Dan Williams338e3862011-05-12 07:46:59 -0700448 switch (scu_get_event_type(event_code)) {
449 case SCU_EVENT_TL_RNC_SUSPEND_TX:
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800450 next_state = SCI_RNC_TX_SUSPENDED;
Dan Williams338e3862011-05-12 07:46:59 -0700451 break;
452 case SCU_EVENT_TL_RNC_SUSPEND_TX_RX:
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800453 next_state = SCI_RNC_TX_RX_SUSPENDED;
Dan Williams338e3862011-05-12 07:46:59 -0700454 break;
455 default:
456 goto out;
457 }
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800458 if (sci_rnc->suspend_type == scu_get_event_type(event_code))
459 sci_change_state(&sci_rnc->sm, next_state);
Dan Williams338e3862011-05-12 07:46:59 -0700460 break;
461 default:
462 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800463 "%s: invalid state: %s\n", __func__,
464 rnc_state_name(state));
Dan Williams338e3862011-05-12 07:46:59 -0700465 return SCI_FAILURE_INVALID_STATE;
466 }
467 return SCI_SUCCESS;
468
469 out:
470 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800471 "%s: code: %#x state: %s\n", __func__, event_code,
472 rnc_state_name(state));
Dan Williams338e3862011-05-12 07:46:59 -0700473 return SCI_FAILURE;
474
475}
Dan Williamsc845ae92011-05-12 08:26:56 -0700476
Dan Williams89a73012011-06-30 19:14:33 -0700477enum sci_status sci_remote_node_context_destruct(struct sci_remote_node_context *sci_rnc,
Dan Williamsc845ae92011-05-12 08:26:56 -0700478 scics_sds_remote_node_context_callback cb_fn,
479 void *cb_p)
480{
481 enum scis_sds_remote_node_context_states state;
482
Edmund Nadolskie3013702011-06-02 00:10:43 +0000483 state = sci_rnc->sm.current_state_id;
Dan Williamsc845ae92011-05-12 08:26:56 -0700484 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000485 case SCI_RNC_INVALIDATING:
Dan Williams89a73012011-06-30 19:14:33 -0700486 sci_remote_node_context_setup_to_destory(sci_rnc, cb_fn, cb_p);
Dan Williamsc845ae92011-05-12 08:26:56 -0700487 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000488 case SCI_RNC_POSTING:
489 case SCI_RNC_RESUMING:
490 case SCI_RNC_READY:
491 case SCI_RNC_TX_SUSPENDED:
492 case SCI_RNC_TX_RX_SUSPENDED:
493 case SCI_RNC_AWAIT_SUSPENSION:
Dan Williams89a73012011-06-30 19:14:33 -0700494 sci_remote_node_context_setup_to_destory(sci_rnc, cb_fn, cb_p);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000495 sci_change_state(&sci_rnc->sm, SCI_RNC_INVALIDATING);
Dan Williamsc845ae92011-05-12 08:26:56 -0700496 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000497 case SCI_RNC_INITIAL:
Dan Williamsc845ae92011-05-12 08:26:56 -0700498 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800499 "%s: invalid state: %s\n", __func__,
500 rnc_state_name(state));
Dan Williamsc845ae92011-05-12 08:26:56 -0700501 /* We have decided that the destruct request on the remote node context
502 * can not fail since it is either in the initial/destroyed state or is
503 * can be destroyed.
504 */
505 return SCI_SUCCESS;
506 default:
507 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800508 "%s: invalid state %s\n", __func__,
509 rnc_state_name(state));
Dan Williamsc845ae92011-05-12 08:26:56 -0700510 return SCI_FAILURE_INVALID_STATE;
511 }
512}
Dan Williamsed3efb72011-05-12 08:50:23 -0700513
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800514enum sci_status sci_remote_node_context_suspend(
515 struct sci_remote_node_context *sci_rnc,
516 enum sci_remote_node_suspension_reasons suspend_reason,
517 u32 suspend_type,
518 scics_sds_remote_node_context_callback cb_fn,
519 void *cb_p)
Dan Williamsed3efb72011-05-12 08:50:23 -0700520{
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800521 enum scis_sds_remote_node_context_states state
522 = sci_rnc->sm.current_state_id;
523 struct isci_remote_device *idev = rnc_to_dev(sci_rnc);
524 enum sci_status status = SCI_FAILURE_INVALID_STATE;
Dan Williamsed3efb72011-05-12 08:50:23 -0700525
Jeff Skirvin726980d2012-03-08 22:41:50 -0800526 dev_dbg(scirdev_to_dev(idev),
527 "%s: current state %d, current suspend_type %x dest state %d,"
528 " arg suspend_reason %d, arg suspend_type %x",
529 __func__, state, sci_rnc->suspend_type,
530 sci_rnc->destination_state, suspend_reason,
531 suspend_type);
532
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800533 /* Disable automatic state continuations if explicitly suspending. */
534 if (suspend_reason == SCI_SOFTWARE_SUSPENSION)
535 sci_rnc->destination_state
536 = SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_UNSPECIFIED;
537 switch (state) {
538 case SCI_RNC_READY:
539 break;
540 case SCI_RNC_TX_SUSPENDED:
541 if (suspend_type == SCU_EVENT_TL_RNC_SUSPEND_TX)
542 status = SCI_SUCCESS;
543 break;
544 case SCI_RNC_TX_RX_SUSPENDED:
545 if (suspend_type == SCU_EVENT_TL_RNC_SUSPEND_TX_RX)
546 status = SCI_SUCCESS;
547 break;
548 case SCI_RNC_AWAIT_SUSPENSION:
549 if ((sci_rnc->suspend_type == SCU_EVENT_TL_RNC_SUSPEND_TX_RX)
550 || (suspend_type == sci_rnc->suspend_type))
551 return SCI_SUCCESS;
552 break;
553 default:
Dan Williamsed3efb72011-05-12 08:50:23 -0700554 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800555 "%s: invalid state %s\n", __func__,
556 rnc_state_name(state));
Dan Williamsed3efb72011-05-12 08:50:23 -0700557 return SCI_FAILURE_INVALID_STATE;
558 }
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800559 sci_rnc->user_callback = cb_fn;
560 sci_rnc->user_cookie = cb_p;
561 sci_rnc->suspend_type = suspend_type;
Dan Williamsed3efb72011-05-12 08:50:23 -0700562
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800563 if (status == SCI_SUCCESS) { /* Already in the destination state? */
Jeff Skirvin726980d2012-03-08 22:41:50 -0800564 struct isci_host *ihost = idev->owning_port->owning_controller;
565
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800566 sci_remote_node_context_notify_user(sci_rnc);
Jeff Skirvin726980d2012-03-08 22:41:50 -0800567 wake_up_all(&ihost->eventq); /* Let observers look. */
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800568 return SCI_SUCCESS;
Dan Williamsed3efb72011-05-12 08:50:23 -0700569 }
Jeff Skirvinac78ed02012-03-08 22:41:50 -0800570 if (suspend_reason == SCI_SOFTWARE_SUSPENSION) {
571 isci_dev_set_hang_detection_timeout(idev, 0x00000001);
572 sci_remote_device_post_request(
573 idev, SCI_SOFTWARE_SUSPEND_CMD);
574 }
575 if (state != SCI_RNC_AWAIT_SUSPENSION)
576 sci_change_state(&sci_rnc->sm, SCI_RNC_AWAIT_SUSPENSION);
Dan Williamsed3efb72011-05-12 08:50:23 -0700577
Dan Williamsed3efb72011-05-12 08:50:23 -0700578 return SCI_SUCCESS;
579}
580
Dan Williams89a73012011-06-30 19:14:33 -0700581enum sci_status sci_remote_node_context_resume(struct sci_remote_node_context *sci_rnc,
Dan Williamsed3efb72011-05-12 08:50:23 -0700582 scics_sds_remote_node_context_callback cb_fn,
583 void *cb_p)
584{
585 enum scis_sds_remote_node_context_states state;
586
Edmund Nadolskie3013702011-06-02 00:10:43 +0000587 state = sci_rnc->sm.current_state_id;
Dan Williamsed3efb72011-05-12 08:50:23 -0700588 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000589 case SCI_RNC_INITIAL:
Dan Williamsed3efb72011-05-12 08:50:23 -0700590 if (sci_rnc->remote_node_index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX)
591 return SCI_FAILURE_INVALID_STATE;
592
Dan Williams89a73012011-06-30 19:14:33 -0700593 sci_remote_node_context_setup_to_resume(sci_rnc, cb_fn, cb_p);
594 sci_remote_node_context_construct_buffer(sci_rnc);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000595 sci_change_state(&sci_rnc->sm, SCI_RNC_POSTING);
Dan Williamsed3efb72011-05-12 08:50:23 -0700596 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000597 case SCI_RNC_POSTING:
598 case SCI_RNC_INVALIDATING:
599 case SCI_RNC_RESUMING:
Dan Williamsed3efb72011-05-12 08:50:23 -0700600 if (sci_rnc->destination_state != SCIC_SDS_REMOTE_NODE_DESTINATION_STATE_READY)
601 return SCI_FAILURE_INVALID_STATE;
602
603 sci_rnc->user_callback = cb_fn;
604 sci_rnc->user_cookie = cb_p;
605 return SCI_SUCCESS;
Jeff Skirvin56d7c012012-03-08 22:41:49 -0800606 case SCI_RNC_TX_SUSPENDED:
607 case SCI_RNC_TX_RX_SUSPENDED: {
Dan Williams78a6f062011-06-30 16:31:37 -0700608 struct isci_remote_device *idev = rnc_to_dev(sci_rnc);
609 struct domain_device *dev = idev->domain_dev;
Dan Williamsed3efb72011-05-12 08:50:23 -0700610
Jeff Skirvin56d7c012012-03-08 22:41:49 -0800611 /* If this is an expander attached SATA device we must
612 * invalidate and repost the RNC since this is the only way
613 * to clear the TCi to NCQ tag mapping table for the RNi.
614 * All other device types we can just resume.
615 */
Dan Williams89a73012011-06-30 19:14:33 -0700616 sci_remote_node_context_setup_to_resume(sci_rnc, cb_fn, cb_p);
Dan Williamsed3efb72011-05-12 08:50:23 -0700617
Dan Williams11cc51832012-02-01 00:23:10 -0800618 if (dev_is_sata(dev) && dev->parent)
619 sci_change_state(&sci_rnc->sm, SCI_RNC_INVALIDATING);
620 else
Edmund Nadolskie3013702011-06-02 00:10:43 +0000621 sci_change_state(&sci_rnc->sm, SCI_RNC_RESUMING);
Dan Williamsed3efb72011-05-12 08:50:23 -0700622 return SCI_SUCCESS;
623 }
Edmund Nadolskie3013702011-06-02 00:10:43 +0000624 case SCI_RNC_AWAIT_SUSPENSION:
Dan Williams89a73012011-06-30 19:14:33 -0700625 sci_remote_node_context_setup_to_resume(sci_rnc, cb_fn, cb_p);
Dan Williamsed3efb72011-05-12 08:50:23 -0700626 return SCI_SUCCESS;
627 default:
628 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800629 "%s: invalid state %s\n", __func__,
630 rnc_state_name(state));
Dan Williamsed3efb72011-05-12 08:50:23 -0700631 return SCI_FAILURE_INVALID_STATE;
632 }
633}
Dan Williamsf34d9e52011-05-12 09:27:52 -0700634
Dan Williams89a73012011-06-30 19:14:33 -0700635enum sci_status sci_remote_node_context_start_io(struct sci_remote_node_context *sci_rnc,
Dan Williams5076a1a2011-06-27 14:57:03 -0700636 struct isci_request *ireq)
Dan Williamsf34d9e52011-05-12 09:27:52 -0700637{
638 enum scis_sds_remote_node_context_states state;
639
Edmund Nadolskie3013702011-06-02 00:10:43 +0000640 state = sci_rnc->sm.current_state_id;
Jeff Skirvinfd536602011-06-20 14:09:22 -0700641
642 switch (state) {
643 case SCI_RNC_READY:
644 return SCI_SUCCESS;
645 case SCI_RNC_TX_SUSPENDED:
646 case SCI_RNC_TX_RX_SUSPENDED:
647 case SCI_RNC_AWAIT_SUSPENSION:
Dan Williamsf34d9e52011-05-12 09:27:52 -0700648 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800649 "%s: invalid state %s\n", __func__,
650 rnc_state_name(state));
Dan Williamsf34d9e52011-05-12 09:27:52 -0700651 return SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED;
Jeff Skirvinfd536602011-06-20 14:09:22 -0700652 default:
Dan Williams14e99b42012-02-10 01:05:43 -0800653 dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)),
654 "%s: invalid state %s\n", __func__,
655 rnc_state_name(state));
656 return SCI_FAILURE_INVALID_STATE;
Dan Williamsf34d9e52011-05-12 09:27:52 -0700657 }
Dan Williamsf34d9e52011-05-12 09:27:52 -0700658}
659
Jeff Skirvin14aaa9f2012-03-08 22:41:54 -0800660enum sci_status sci_remote_node_context_start_task(
661 struct sci_remote_node_context *sci_rnc,
662 struct isci_request *ireq,
663 scics_sds_remote_node_context_callback cb_fn,
664 void *cb_p)
Dan Williamsf34d9e52011-05-12 09:27:52 -0700665{
666 enum scis_sds_remote_node_context_states state;
667
Edmund Nadolskie3013702011-06-02 00:10:43 +0000668 state = sci_rnc->sm.current_state_id;
Dan Williamsf34d9e52011-05-12 09:27:52 -0700669 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000670 case SCI_RNC_RESUMING:
671 case SCI_RNC_READY:
672 case SCI_RNC_AWAIT_SUSPENSION:
Dan Williamsf34d9e52011-05-12 09:27:52 -0700673 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000674 case SCI_RNC_TX_SUSPENDED:
675 case SCI_RNC_TX_RX_SUSPENDED:
Jeff Skirvin14aaa9f2012-03-08 22:41:54 -0800676 sci_remote_node_context_resume(sci_rnc, cb_fn, cb_p);
Dan Williamsf34d9e52011-05-12 09:27:52 -0700677 return SCI_SUCCESS;
678 default:
679 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
Dan Williams14e99b42012-02-10 01:05:43 -0800680 "%s: invalid state %s\n", __func__,
681 rnc_state_name(state));
Dan Williamsf34d9e52011-05-12 09:27:52 -0700682 return SCI_FAILURE_INVALID_STATE;
683 }
684}
Jeff Skirvin726980d2012-03-08 22:41:50 -0800685
686int sci_remote_node_context_is_safe_to_abort(
687 struct sci_remote_node_context *sci_rnc)
688{
689 enum scis_sds_remote_node_context_states state;
690
691 state = sci_rnc->sm.current_state_id;
692 switch (state) {
693 case SCI_RNC_INVALIDATING:
694 case SCI_RNC_TX_RX_SUSPENDED:
695 return 1;
696 case SCI_RNC_POSTING:
697 case SCI_RNC_RESUMING:
698 case SCI_RNC_READY:
699 case SCI_RNC_TX_SUSPENDED:
700 case SCI_RNC_AWAIT_SUSPENSION:
701 case SCI_RNC_INITIAL:
702 return 0;
703 default:
704 dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)),
705 "%s: invalid state %d\n", __func__, state);
706 return 0;
707 }
708}