Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 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 | */ |
Jeff Skirvin | c94fc1a | 2012-03-08 22:41:58 -0800 | [diff] [blame] | 55 | #include <scsi/sas_ata.h> |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 56 | #include "host.h" |
Edmund Nadolski | 12ef654 | 2011-06-02 00:10:50 +0000 | [diff] [blame] | 57 | #include "isci.h" |
Dan Williams | 88f3b62 | 2011-04-22 19:18:03 -0700 | [diff] [blame] | 58 | #include "remote_device.h" |
| 59 | #include "remote_node_context.h" |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 60 | #include "scu_event_codes.h" |
| 61 | #include "scu_task_context.h" |
| 62 | |
Dan Williams | d7a0ccd | 2012-02-10 01:18:44 -0800 | [diff] [blame] | 63 | #undef C |
| 64 | #define C(a) (#a) |
| 65 | const char *rnc_state_name(enum scis_sds_remote_node_context_states state) |
| 66 | { |
| 67 | static const char * const strings[] = RNC_STATES; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 68 | |
Dan Williams | d7a0ccd | 2012-02-10 01:18:44 -0800 | [diff] [blame] | 69 | return strings[state]; |
| 70 | } |
| 71 | #undef C |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 72 | |
| 73 | /** |
| 74 | * |
Dave Jiang | e2023b8 | 2011-04-21 05:34:49 +0000 | [diff] [blame] | 75 | * @sci_rnc: The state of the remote node context object to check. |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 76 | * |
| 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 Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 81 | bool sci_remote_node_context_is_ready( |
| 82 | struct sci_remote_node_context *sci_rnc) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 83 | { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 84 | u32 current_state = sci_rnc->sm.current_state_id; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 85 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 86 | if (current_state == SCI_RNC_READY) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 87 | return true; |
| 88 | } |
| 89 | |
| 90 | return false; |
| 91 | } |
| 92 | |
Jeff Skirvin | 31a38ef | 2012-03-08 22:42:01 -0800 | [diff] [blame] | 93 | bool sci_remote_node_context_is_suspended(struct sci_remote_node_context *sci_rnc) |
| 94 | { |
| 95 | u32 current_state = sci_rnc->sm.current_state_id; |
| 96 | |
| 97 | if (current_state == SCI_RNC_TX_RX_SUSPENDED) |
| 98 | return true; |
| 99 | return false; |
| 100 | } |
| 101 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 102 | static union scu_remote_node_context *sci_rnc_by_id(struct isci_host *ihost, u16 id) |
| 103 | { |
| 104 | if (id < ihost->remote_node_entries && |
| 105 | ihost->device_table[id]) |
| 106 | return &ihost->remote_node_context_table[id]; |
| 107 | |
| 108 | return NULL; |
| 109 | } |
| 110 | |
| 111 | static void sci_remote_node_context_construct_buffer(struct sci_remote_node_context *sci_rnc) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 112 | { |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 113 | struct isci_remote_device *idev = rnc_to_dev(sci_rnc); |
| 114 | struct domain_device *dev = idev->domain_dev; |
Dan Williams | 1f4fa1f | 2011-04-26 11:44:06 -0700 | [diff] [blame] | 115 | int rni = sci_rnc->remote_node_index; |
Dan Williams | a1a113b | 2011-04-21 18:44:45 -0700 | [diff] [blame] | 116 | union scu_remote_node_context *rnc; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 117 | struct isci_host *ihost; |
Dan Williams | a3d568f0 | 2011-04-26 09:41:52 -0700 | [diff] [blame] | 118 | __le64 sas_addr; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 119 | |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 120 | ihost = idev->owning_port->owning_controller; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 121 | rnc = sci_rnc_by_id(ihost, rni); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 122 | |
Dan Williams | 9614395 | 2011-04-19 18:35:58 -0700 | [diff] [blame] | 123 | memset(rnc, 0, sizeof(union scu_remote_node_context) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 124 | * sci_remote_device_node_count(idev)); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 125 | |
Dan Williams | 1f4fa1f | 2011-04-26 11:44:06 -0700 | [diff] [blame] | 126 | rnc->ssp.remote_node_index = rni; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 127 | rnc->ssp.remote_node_port_width = idev->device_port_width; |
| 128 | rnc->ssp.logical_port_index = idev->owning_port->physical_port_index; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 129 | |
Dan Williams | a3d568f0 | 2011-04-26 09:41:52 -0700 | [diff] [blame] | 130 | /* sas address is __be64, context ram format is __le64 */ |
| 131 | sas_addr = cpu_to_le64(SAS_ADDR(dev->sas_addr)); |
| 132 | rnc->ssp.remote_sas_address_hi = upper_32_bits(sas_addr); |
| 133 | rnc->ssp.remote_sas_address_lo = lower_32_bits(sas_addr); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 134 | |
| 135 | rnc->ssp.nexus_loss_timer_enable = true; |
| 136 | rnc->ssp.check_bit = false; |
| 137 | rnc->ssp.is_valid = false; |
| 138 | rnc->ssp.is_remote_node_context = true; |
| 139 | rnc->ssp.function_number = 0; |
| 140 | |
| 141 | rnc->ssp.arbitration_wait_time = 0; |
| 142 | |
Dan Williams | 11cc5183 | 2012-02-01 00:23:10 -0800 | [diff] [blame] | 143 | if (dev_is_sata(dev)) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 144 | rnc->ssp.connection_occupancy_timeout = |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 145 | ihost->user_parameters.stp_max_occupancy_timeout; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 146 | rnc->ssp.connection_inactivity_timeout = |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 147 | ihost->user_parameters.stp_inactivity_timeout; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 148 | } else { |
| 149 | rnc->ssp.connection_occupancy_timeout = |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 150 | ihost->user_parameters.ssp_max_occupancy_timeout; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 151 | rnc->ssp.connection_inactivity_timeout = |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 152 | ihost->user_parameters.ssp_inactivity_timeout; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | rnc->ssp.initial_arbitration_wait_time = 0; |
| 156 | |
| 157 | /* Open Address Frame Parameters */ |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 158 | rnc->ssp.oaf_connection_rate = idev->connection_rate; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 159 | rnc->ssp.oaf_features = 0; |
| 160 | rnc->ssp.oaf_source_zone_group = 0; |
| 161 | rnc->ssp.oaf_more_compatibility_features = 0; |
| 162 | } |
| 163 | |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 164 | static void sci_remote_node_context_save_cbparams( |
| 165 | struct sci_remote_node_context *sci_rnc, |
| 166 | scics_sds_remote_node_context_callback callback, |
| 167 | void *callback_parameter) |
| 168 | { |
| 169 | sci_rnc->user_callback = callback; |
| 170 | sci_rnc->user_cookie = callback_parameter; |
| 171 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 172 | /** |
| 173 | * |
Dave Jiang | e2023b8 | 2011-04-21 05:34:49 +0000 | [diff] [blame] | 174 | * @sci_rnc: |
| 175 | * @callback: |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 176 | * @callback_parameter: |
| 177 | * |
| 178 | * This method will setup the remote node context object so it will transition |
| 179 | * to its ready state. If the remote node context is already setup to |
| 180 | * transition to its final state then this function does nothing. none |
| 181 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 182 | static void sci_remote_node_context_setup_to_resume( |
| 183 | struct sci_remote_node_context *sci_rnc, |
Dave Jiang | e2023b8 | 2011-04-21 05:34:49 +0000 | [diff] [blame] | 184 | scics_sds_remote_node_context_callback callback, |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 185 | void *callback_parameter, |
| 186 | enum sci_remote_node_context_destination_state dest_param) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 187 | { |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 188 | if (sci_rnc->destination_state != RNC_DEST_FINAL) { |
| 189 | sci_rnc->destination_state = dest_param; |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 190 | if (callback != NULL) |
| 191 | sci_remote_node_context_save_cbparams( |
| 192 | sci_rnc, callback, callback_parameter); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 196 | static void sci_remote_node_context_setup_to_destroy( |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 197 | struct sci_remote_node_context *sci_rnc, |
Dave Jiang | e2023b8 | 2011-04-21 05:34:49 +0000 | [diff] [blame] | 198 | scics_sds_remote_node_context_callback callback, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 199 | void *callback_parameter) |
| 200 | { |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 201 | sci_rnc->destination_state = RNC_DEST_FINAL; |
Dave Jiang | e2023b8 | 2011-04-21 05:34:49 +0000 | [diff] [blame] | 202 | sci_rnc->user_callback = callback; |
| 203 | sci_rnc->user_cookie = callback_parameter; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 206 | /** |
| 207 | * |
| 208 | * |
| 209 | * This method just calls the user callback function and then resets the |
| 210 | * callback. |
| 211 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 212 | static void sci_remote_node_context_notify_user( |
| 213 | struct sci_remote_node_context *rnc) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 214 | { |
| 215 | if (rnc->user_callback != NULL) { |
| 216 | (*rnc->user_callback)(rnc->user_cookie); |
| 217 | |
| 218 | rnc->user_callback = NULL; |
| 219 | rnc->user_cookie = NULL; |
| 220 | } |
| 221 | } |
| 222 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 223 | static void sci_remote_node_context_continue_state_transitions(struct sci_remote_node_context *rnc) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 224 | { |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 225 | if ((rnc->destination_state == RNC_DEST_READY) || |
| 226 | (rnc->destination_state == RNC_DEST_SUSPENDED_RESUME)) { |
| 227 | rnc->destination_state = RNC_DEST_READY; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 228 | sci_remote_node_context_resume(rnc, rnc->user_callback, |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 229 | rnc->user_cookie); |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 230 | } else |
| 231 | rnc->destination_state = RNC_DEST_UNSPECIFIED; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 232 | } |
| 233 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 234 | static void sci_remote_node_context_validate_context_buffer(struct sci_remote_node_context *sci_rnc) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 235 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 236 | union scu_remote_node_context *rnc_buffer; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 237 | struct isci_remote_device *idev = rnc_to_dev(sci_rnc); |
| 238 | struct domain_device *dev = idev->domain_dev; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 239 | struct isci_host *ihost = idev->owning_port->owning_controller; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 240 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 241 | rnc_buffer = sci_rnc_by_id(ihost, sci_rnc->remote_node_index); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 242 | |
| 243 | rnc_buffer->ssp.is_valid = true; |
| 244 | |
Dan Williams | 11cc5183 | 2012-02-01 00:23:10 -0800 | [diff] [blame] | 245 | if (dev_is_sata(dev) && dev->parent) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 246 | sci_remote_device_post_request(idev, SCU_CONTEXT_COMMAND_POST_RNC_96); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 247 | } else { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 248 | sci_remote_device_post_request(idev, SCU_CONTEXT_COMMAND_POST_RNC_32); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 249 | |
Dan Williams | 11cc5183 | 2012-02-01 00:23:10 -0800 | [diff] [blame] | 250 | if (!dev->parent) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 251 | sci_port_setup_transports(idev->owning_port, |
| 252 | sci_rnc->remote_node_index); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 253 | } |
| 254 | } |
| 255 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 256 | static void sci_remote_node_context_invalidate_context_buffer(struct sci_remote_node_context *sci_rnc) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 257 | { |
| 258 | union scu_remote_node_context *rnc_buffer; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 259 | struct isci_remote_device *idev = rnc_to_dev(sci_rnc); |
| 260 | struct isci_host *ihost = idev->owning_port->owning_controller; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 261 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 262 | rnc_buffer = sci_rnc_by_id(ihost, sci_rnc->remote_node_index); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 263 | |
| 264 | rnc_buffer->ssp.is_valid = false; |
| 265 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 266 | sci_remote_device_post_request(rnc_to_dev(sci_rnc), |
| 267 | SCU_CONTEXT_COMMAND_POST_RNC_INVALIDATE); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 270 | static void sci_remote_node_context_initial_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 271 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 272 | struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm); |
Jeff Skirvin | 1f05388 | 2012-03-08 22:42:08 -0800 | [diff] [blame^] | 273 | struct isci_remote_device *idev = rnc_to_dev(rnc); |
| 274 | struct isci_host *ihost = idev->owning_port->owning_controller; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 275 | |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 276 | /* Check to see if we have gotten back to the initial state because |
| 277 | * someone requested to destroy the remote node context object. |
| 278 | */ |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 279 | if (sm->previous_state_id == SCI_RNC_INVALIDATING) { |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 280 | rnc->destination_state = RNC_DEST_UNSPECIFIED; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 281 | sci_remote_node_context_notify_user(rnc); |
Jeff Skirvin | 1f05388 | 2012-03-08 22:42:08 -0800 | [diff] [blame^] | 282 | |
| 283 | smp_wmb(); |
| 284 | wake_up(&ihost->eventq); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 288 | static void sci_remote_node_context_posting_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 289 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 290 | struct sci_remote_node_context *sci_rnc = container_of(sm, typeof(*sci_rnc), sm); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 291 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 292 | sci_remote_node_context_validate_context_buffer(sci_rnc); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 295 | static void sci_remote_node_context_invalidating_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 296 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 297 | struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 298 | |
Jeff Skirvin | aa20d93 | 2012-03-08 22:41:56 -0800 | [diff] [blame] | 299 | /* Terminate all outstanding requests. */ |
| 300 | sci_remote_device_terminate_requests(rnc_to_dev(rnc)); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 301 | sci_remote_node_context_invalidate_context_buffer(rnc); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 304 | static void sci_remote_node_context_resuming_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 305 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 306 | struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm); |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 307 | struct isci_remote_device *idev; |
Dan Williams | a1a113b | 2011-04-21 18:44:45 -0700 | [diff] [blame] | 308 | struct domain_device *dev; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 309 | |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 310 | idev = rnc_to_dev(rnc); |
| 311 | dev = idev->domain_dev; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 312 | |
Henryk Dembkowski | 2462146 | 2011-02-23 00:08:52 -0800 | [diff] [blame] | 313 | /* |
| 314 | * For direct attached SATA devices we need to clear the TLCR |
| 315 | * NCQ to TCi tag mapping on the phy and in cases where we |
| 316 | * resume because of a target reset we also need to update |
| 317 | * the STPTLDARNI register with the RNi of the device |
| 318 | */ |
Dan Williams | 11cc5183 | 2012-02-01 00:23:10 -0800 | [diff] [blame] | 319 | if (dev_is_sata(dev) && !dev->parent) |
| 320 | sci_port_setup_transports(idev->owning_port, rnc->remote_node_index); |
Henryk Dembkowski | 2462146 | 2011-02-23 00:08:52 -0800 | [diff] [blame] | 321 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 322 | sci_remote_device_post_request(idev, SCU_CONTEXT_COMMAND_POST_RNC_RESUME); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 323 | } |
| 324 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 325 | static void sci_remote_node_context_ready_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 326 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 327 | struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm); |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 328 | enum sci_remote_node_context_destination_state dest_select; |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 329 | int tell_user = 1; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 330 | |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 331 | dest_select = rnc->destination_state; |
| 332 | rnc->destination_state = RNC_DEST_UNSPECIFIED; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 333 | |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 334 | if ((dest_select == RNC_DEST_SUSPENDED) || |
| 335 | (dest_select == RNC_DEST_SUSPENDED_RESUME)) { |
| 336 | sci_remote_node_context_suspend( |
Jeff Skirvin | 447bfbc | 2012-03-08 22:41:59 -0800 | [diff] [blame] | 337 | rnc, rnc->suspend_reason, |
| 338 | SCI_SOFTWARE_SUSPEND_EXPECTED_EVENT); |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 339 | |
Jeff Skirvin | d76689e | 2012-03-08 22:42:04 -0800 | [diff] [blame] | 340 | if (dest_select == RNC_DEST_SUSPENDED_RESUME) |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 341 | tell_user = 0; /* Wait until ready again. */ |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 342 | } |
Jeff Skirvin | d76689e | 2012-03-08 22:42:04 -0800 | [diff] [blame] | 343 | if (tell_user) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 344 | sci_remote_node_context_notify_user(rnc); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 345 | } |
| 346 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 347 | static void sci_remote_node_context_tx_suspended_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 348 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 349 | struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 350 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 351 | sci_remote_node_context_continue_state_transitions(rnc); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 352 | } |
| 353 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 354 | static void sci_remote_node_context_tx_rx_suspended_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 355 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 356 | struct sci_remote_node_context *rnc = container_of(sm, typeof(*rnc), sm); |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 357 | struct isci_remote_device *idev = rnc_to_dev(rnc); |
| 358 | struct isci_host *ihost = idev->owning_port->owning_controller; |
Jeff Skirvin | 31a38ef | 2012-03-08 22:42:01 -0800 | [diff] [blame] | 359 | u32 new_count = rnc->suspend_count + 1; |
| 360 | |
| 361 | if (new_count == 0) |
| 362 | rnc->suspend_count = 1; |
| 363 | else |
| 364 | rnc->suspend_count = new_count; |
| 365 | smp_wmb(); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 366 | |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 367 | /* Terminate outstanding requests pending abort. */ |
| 368 | sci_remote_device_abort_requests_pending_abort(idev); |
| 369 | |
| 370 | wake_up(&ihost->eventq); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 371 | sci_remote_node_context_continue_state_transitions(rnc); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 372 | } |
| 373 | |
Jeff Skirvin | 6f48844 | 2012-03-08 22:41:48 -0800 | [diff] [blame] | 374 | static void sci_remote_node_context_await_suspend_state_exit( |
| 375 | struct sci_base_state_machine *sm) |
| 376 | { |
| 377 | struct sci_remote_node_context *rnc |
| 378 | = container_of(sm, typeof(*rnc), sm); |
Jeff Skirvin | c94fc1a | 2012-03-08 22:41:58 -0800 | [diff] [blame] | 379 | struct isci_remote_device *idev = rnc_to_dev(rnc); |
Jeff Skirvin | 6f48844 | 2012-03-08 22:41:48 -0800 | [diff] [blame] | 380 | |
Jeff Skirvin | c94fc1a | 2012-03-08 22:41:58 -0800 | [diff] [blame] | 381 | if (dev_is_sata(idev->domain_dev)) |
| 382 | isci_dev_set_hang_detection_timeout(idev, 0); |
Jeff Skirvin | 6f48844 | 2012-03-08 22:41:48 -0800 | [diff] [blame] | 383 | } |
| 384 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 385 | static const struct sci_base_state sci_remote_node_context_state_table[] = { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 386 | [SCI_RNC_INITIAL] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 387 | .enter_state = sci_remote_node_context_initial_state_enter, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 388 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 389 | [SCI_RNC_POSTING] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 390 | .enter_state = sci_remote_node_context_posting_state_enter, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 391 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 392 | [SCI_RNC_INVALIDATING] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 393 | .enter_state = sci_remote_node_context_invalidating_state_enter, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 394 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 395 | [SCI_RNC_RESUMING] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 396 | .enter_state = sci_remote_node_context_resuming_state_enter, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 397 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 398 | [SCI_RNC_READY] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 399 | .enter_state = sci_remote_node_context_ready_state_enter, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 400 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 401 | [SCI_RNC_TX_SUSPENDED] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 402 | .enter_state = sci_remote_node_context_tx_suspended_state_enter, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 403 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 404 | [SCI_RNC_TX_RX_SUSPENDED] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 405 | .enter_state = sci_remote_node_context_tx_rx_suspended_state_enter, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 406 | }, |
Jeff Skirvin | 6f48844 | 2012-03-08 22:41:48 -0800 | [diff] [blame] | 407 | [SCI_RNC_AWAIT_SUSPENSION] = { |
| 408 | .exit_state = sci_remote_node_context_await_suspend_state_exit, |
| 409 | }, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 410 | }; |
| 411 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 412 | void sci_remote_node_context_construct(struct sci_remote_node_context *rnc, |
Dan Williams | 9614395 | 2011-04-19 18:35:58 -0700 | [diff] [blame] | 413 | u16 remote_node_index) |
Dan Williams | 35173d5 | 2011-03-26 16:43:01 -0700 | [diff] [blame] | 414 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 415 | memset(rnc, 0, sizeof(struct sci_remote_node_context)); |
Dan Williams | 35173d5 | 2011-03-26 16:43:01 -0700 | [diff] [blame] | 416 | |
| 417 | rnc->remote_node_index = remote_node_index; |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 418 | rnc->destination_state = RNC_DEST_UNSPECIFIED; |
Dan Williams | 35173d5 | 2011-03-26 16:43:01 -0700 | [diff] [blame] | 419 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 420 | sci_init_sm(&rnc->sm, sci_remote_node_context_state_table, SCI_RNC_INITIAL); |
Dan Williams | 35173d5 | 2011-03-26 16:43:01 -0700 | [diff] [blame] | 421 | } |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 422 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 423 | enum sci_status sci_remote_node_context_event_handler(struct sci_remote_node_context *sci_rnc, |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 424 | u32 event_code) |
| 425 | { |
| 426 | enum scis_sds_remote_node_context_states state; |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 427 | u32 next_state; |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 428 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 429 | state = sci_rnc->sm.current_state_id; |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 430 | switch (state) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 431 | case SCI_RNC_POSTING: |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 432 | switch (scu_get_event_code(event_code)) { |
| 433 | case SCU_EVENT_POST_RNC_COMPLETE: |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 434 | sci_change_state(&sci_rnc->sm, SCI_RNC_READY); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 435 | break; |
| 436 | default: |
| 437 | goto out; |
| 438 | } |
| 439 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 440 | case SCI_RNC_INVALIDATING: |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 441 | if (scu_get_event_code(event_code) == SCU_EVENT_POST_RNC_INVALIDATE_COMPLETE) { |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 442 | if (sci_rnc->destination_state == RNC_DEST_FINAL) |
| 443 | next_state = SCI_RNC_INITIAL; |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 444 | else |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 445 | next_state = SCI_RNC_POSTING; |
| 446 | sci_change_state(&sci_rnc->sm, next_state); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 447 | } else { |
| 448 | switch (scu_get_event_type(event_code)) { |
| 449 | case SCU_EVENT_TYPE_RNC_SUSPEND_TX: |
| 450 | case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX: |
| 451 | /* We really dont care if the hardware is going to suspend |
| 452 | * the device since it's being invalidated anyway */ |
Jeff Skirvin | 8c73188 | 2012-03-08 22:42:06 -0800 | [diff] [blame] | 453 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 454 | "%s: SCIC Remote Node Context 0x%p was " |
| 455 | "suspeneded by hardware while being " |
| 456 | "invalidated.\n", __func__, sci_rnc); |
| 457 | break; |
| 458 | default: |
| 459 | goto out; |
| 460 | } |
| 461 | } |
| 462 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 463 | case SCI_RNC_RESUMING: |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 464 | if (scu_get_event_code(event_code) == SCU_EVENT_POST_RCN_RELEASE) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 465 | sci_change_state(&sci_rnc->sm, SCI_RNC_READY); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 466 | } else { |
| 467 | switch (scu_get_event_type(event_code)) { |
| 468 | case SCU_EVENT_TYPE_RNC_SUSPEND_TX: |
| 469 | case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX: |
| 470 | /* We really dont care if the hardware is going to suspend |
| 471 | * the device since it's being resumed anyway */ |
Jeff Skirvin | 8c73188 | 2012-03-08 22:42:06 -0800 | [diff] [blame] | 472 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 473 | "%s: SCIC Remote Node Context 0x%p was " |
| 474 | "suspeneded by hardware while being resumed.\n", |
| 475 | __func__, sci_rnc); |
| 476 | break; |
| 477 | default: |
| 478 | goto out; |
| 479 | } |
| 480 | } |
| 481 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 482 | case SCI_RNC_READY: |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 483 | switch (scu_get_event_type(event_code)) { |
| 484 | case SCU_EVENT_TL_RNC_SUSPEND_TX: |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 485 | sci_change_state(&sci_rnc->sm, SCI_RNC_TX_SUSPENDED); |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 486 | sci_rnc->suspend_type = scu_get_event_type(event_code); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 487 | break; |
| 488 | case SCU_EVENT_TL_RNC_SUSPEND_TX_RX: |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 489 | sci_change_state(&sci_rnc->sm, SCI_RNC_TX_RX_SUSPENDED); |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 490 | sci_rnc->suspend_type = scu_get_event_type(event_code); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 491 | break; |
| 492 | default: |
| 493 | goto out; |
| 494 | } |
| 495 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 496 | case SCI_RNC_AWAIT_SUSPENSION: |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 497 | switch (scu_get_event_type(event_code)) { |
| 498 | case SCU_EVENT_TL_RNC_SUSPEND_TX: |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 499 | next_state = SCI_RNC_TX_SUSPENDED; |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 500 | break; |
| 501 | case SCU_EVENT_TL_RNC_SUSPEND_TX_RX: |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 502 | next_state = SCI_RNC_TX_RX_SUSPENDED; |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 503 | break; |
| 504 | default: |
| 505 | goto out; |
| 506 | } |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 507 | if (sci_rnc->suspend_type == scu_get_event_type(event_code)) |
| 508 | sci_change_state(&sci_rnc->sm, next_state); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 509 | break; |
| 510 | default: |
| 511 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 512 | "%s: invalid state: %s\n", __func__, |
| 513 | rnc_state_name(state)); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 514 | return SCI_FAILURE_INVALID_STATE; |
| 515 | } |
| 516 | return SCI_SUCCESS; |
| 517 | |
| 518 | out: |
| 519 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 520 | "%s: code: %#x state: %s\n", __func__, event_code, |
| 521 | rnc_state_name(state)); |
Dan Williams | 338e386 | 2011-05-12 07:46:59 -0700 | [diff] [blame] | 522 | return SCI_FAILURE; |
| 523 | |
| 524 | } |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 525 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 526 | enum sci_status sci_remote_node_context_destruct(struct sci_remote_node_context *sci_rnc, |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 527 | scics_sds_remote_node_context_callback cb_fn, |
| 528 | void *cb_p) |
| 529 | { |
| 530 | enum scis_sds_remote_node_context_states state; |
| 531 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 532 | state = sci_rnc->sm.current_state_id; |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 533 | switch (state) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 534 | case SCI_RNC_INVALIDATING: |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 535 | sci_remote_node_context_setup_to_destroy(sci_rnc, cb_fn, cb_p); |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 536 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 537 | case SCI_RNC_POSTING: |
| 538 | case SCI_RNC_RESUMING: |
| 539 | case SCI_RNC_READY: |
| 540 | case SCI_RNC_TX_SUSPENDED: |
| 541 | case SCI_RNC_TX_RX_SUSPENDED: |
| 542 | case SCI_RNC_AWAIT_SUSPENSION: |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 543 | sci_remote_node_context_setup_to_destroy(sci_rnc, cb_fn, cb_p); |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 544 | sci_change_state(&sci_rnc->sm, SCI_RNC_INVALIDATING); |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 545 | return SCI_SUCCESS; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 546 | case SCI_RNC_INITIAL: |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 547 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 548 | "%s: invalid state: %s\n", __func__, |
| 549 | rnc_state_name(state)); |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 550 | /* We have decided that the destruct request on the remote node context |
| 551 | * can not fail since it is either in the initial/destroyed state or is |
| 552 | * can be destroyed. |
| 553 | */ |
| 554 | return SCI_SUCCESS; |
| 555 | default: |
| 556 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 557 | "%s: invalid state %s\n", __func__, |
| 558 | rnc_state_name(state)); |
Dan Williams | c845ae9 | 2011-05-12 08:26:56 -0700 | [diff] [blame] | 559 | return SCI_FAILURE_INVALID_STATE; |
| 560 | } |
| 561 | } |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 562 | |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 563 | enum sci_status sci_remote_node_context_suspend( |
| 564 | struct sci_remote_node_context *sci_rnc, |
| 565 | enum sci_remote_node_suspension_reasons suspend_reason, |
Jeff Skirvin | 447bfbc | 2012-03-08 22:41:59 -0800 | [diff] [blame] | 566 | u32 suspend_type) |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 567 | { |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 568 | enum scis_sds_remote_node_context_states state |
| 569 | = sci_rnc->sm.current_state_id; |
| 570 | struct isci_remote_device *idev = rnc_to_dev(sci_rnc); |
| 571 | enum sci_status status = SCI_FAILURE_INVALID_STATE; |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 572 | enum sci_remote_node_context_destination_state dest_param = |
| 573 | RNC_DEST_UNSPECIFIED; |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 574 | |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 575 | dev_dbg(scirdev_to_dev(idev), |
Jeff Skirvin | 8c73188 | 2012-03-08 22:42:06 -0800 | [diff] [blame] | 576 | "%s: current state %s, current suspend_type %x dest state %d," |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 577 | " arg suspend_reason %d, arg suspend_type %x", |
Jeff Skirvin | 8c73188 | 2012-03-08 22:42:06 -0800 | [diff] [blame] | 578 | __func__, rnc_state_name(state), sci_rnc->suspend_type, |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 579 | sci_rnc->destination_state, suspend_reason, |
| 580 | suspend_type); |
| 581 | |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 582 | /* Disable automatic state continuations if explicitly suspending. */ |
Jeff Skirvin | c94fc1a | 2012-03-08 22:41:58 -0800 | [diff] [blame] | 583 | if ((suspend_reason == SCI_HW_SUSPEND) || |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 584 | (sci_rnc->destination_state == RNC_DEST_FINAL)) |
| 585 | dest_param = sci_rnc->destination_state; |
| 586 | |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 587 | switch (state) { |
| 588 | case SCI_RNC_READY: |
| 589 | break; |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 590 | case SCI_RNC_INVALIDATING: |
| 591 | if (sci_rnc->destination_state == RNC_DEST_FINAL) { |
| 592 | dev_warn(scirdev_to_dev(idev), |
| 593 | "%s: already destroying %p\n", |
| 594 | __func__, sci_rnc); |
| 595 | return SCI_FAILURE_INVALID_STATE; |
| 596 | } |
| 597 | /* Fall through and handle like SCI_RNC_POSTING */ |
Jeff Skirvin | d76689e | 2012-03-08 22:42:04 -0800 | [diff] [blame] | 598 | case SCI_RNC_RESUMING: |
| 599 | /* Fall through and handle like SCI_RNC_POSTING */ |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 600 | case SCI_RNC_POSTING: |
| 601 | /* Set the destination state to AWAIT - this signals the |
| 602 | * entry into the SCI_RNC_READY state that a suspension |
| 603 | * needs to be done immediately. |
| 604 | */ |
| 605 | sci_rnc->destination_state = RNC_DEST_SUSPENDED; |
Jeff Skirvin | 447bfbc | 2012-03-08 22:41:59 -0800 | [diff] [blame] | 606 | sci_rnc->suspend_type = suspend_type; |
| 607 | sci_rnc->suspend_reason = suspend_reason; |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 608 | return SCI_SUCCESS; |
| 609 | |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 610 | case SCI_RNC_TX_SUSPENDED: |
| 611 | if (suspend_type == SCU_EVENT_TL_RNC_SUSPEND_TX) |
| 612 | status = SCI_SUCCESS; |
| 613 | break; |
| 614 | case SCI_RNC_TX_RX_SUSPENDED: |
| 615 | if (suspend_type == SCU_EVENT_TL_RNC_SUSPEND_TX_RX) |
| 616 | status = SCI_SUCCESS; |
| 617 | break; |
| 618 | case SCI_RNC_AWAIT_SUSPENSION: |
| 619 | if ((sci_rnc->suspend_type == SCU_EVENT_TL_RNC_SUSPEND_TX_RX) |
| 620 | || (suspend_type == sci_rnc->suspend_type)) |
| 621 | return SCI_SUCCESS; |
| 622 | break; |
| 623 | default: |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 624 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 625 | "%s: invalid state %s\n", __func__, |
| 626 | rnc_state_name(state)); |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 627 | return SCI_FAILURE_INVALID_STATE; |
| 628 | } |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 629 | sci_rnc->destination_state = dest_param; |
Jeff Skirvin | 447bfbc | 2012-03-08 22:41:59 -0800 | [diff] [blame] | 630 | sci_rnc->suspend_type = suspend_type; |
| 631 | sci_rnc->suspend_reason = suspend_reason; |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 632 | |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 633 | if (status == SCI_SUCCESS) { /* Already in the destination state? */ |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 634 | struct isci_host *ihost = idev->owning_port->owning_controller; |
| 635 | |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 636 | wake_up_all(&ihost->eventq); /* Let observers look. */ |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 637 | return SCI_SUCCESS; |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 638 | } |
Jeff Skirvin | c94fc1a | 2012-03-08 22:41:58 -0800 | [diff] [blame] | 639 | if ((suspend_reason == SCI_SW_SUSPEND_NORMAL) || |
| 640 | (suspend_reason == SCI_SW_SUSPEND_LINKHANG_DETECT)) { |
| 641 | |
Jeff Skirvin | 9608b64 | 2012-03-08 22:42:00 -0800 | [diff] [blame] | 642 | if (suspend_reason == SCI_SW_SUSPEND_LINKHANG_DETECT) |
Jeff Skirvin | c94fc1a | 2012-03-08 22:41:58 -0800 | [diff] [blame] | 643 | isci_dev_set_hang_detection_timeout(idev, 0x00000001); |
| 644 | |
Jeff Skirvin | ac78ed0 | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 645 | sci_remote_device_post_request( |
| 646 | idev, SCI_SOFTWARE_SUSPEND_CMD); |
| 647 | } |
| 648 | if (state != SCI_RNC_AWAIT_SUSPENSION) |
| 649 | sci_change_state(&sci_rnc->sm, SCI_RNC_AWAIT_SUSPENSION); |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 650 | |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 651 | return SCI_SUCCESS; |
| 652 | } |
| 653 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 654 | enum sci_status sci_remote_node_context_resume(struct sci_remote_node_context *sci_rnc, |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 655 | scics_sds_remote_node_context_callback cb_fn, |
| 656 | void *cb_p) |
| 657 | { |
| 658 | enum scis_sds_remote_node_context_states state; |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 659 | struct isci_remote_device *idev = rnc_to_dev(sci_rnc); |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 660 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 661 | state = sci_rnc->sm.current_state_id; |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 662 | dev_dbg(scirdev_to_dev(idev), |
| 663 | "%s: state %s, cb_fn = %p, cb_p = %p; dest_state = %d; " |
| 664 | "dev resume path %s\n", |
| 665 | __func__, rnc_state_name(state), cb_fn, cb_p, |
| 666 | sci_rnc->destination_state, |
| 667 | test_bit(IDEV_ABORT_PATH_ACTIVE, &idev->flags) |
| 668 | ? "<abort active>" : "<normal>"); |
Jeff Skirvin | 31a38ef | 2012-03-08 22:42:01 -0800 | [diff] [blame] | 669 | |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 670 | switch (state) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 671 | case SCI_RNC_INITIAL: |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 672 | if (sci_rnc->remote_node_index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) |
| 673 | return SCI_FAILURE_INVALID_STATE; |
| 674 | |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 675 | if (test_bit(IDEV_ABORT_PATH_ACTIVE, &idev->flags)) |
| 676 | sci_remote_node_context_save_cbparams(sci_rnc, cb_fn, |
| 677 | cb_p); |
| 678 | else { |
| 679 | sci_remote_node_context_setup_to_resume(sci_rnc, cb_fn, |
| 680 | cb_p, RNC_DEST_READY); |
| 681 | sci_remote_node_context_construct_buffer(sci_rnc); |
| 682 | sci_change_state(&sci_rnc->sm, SCI_RNC_POSTING); |
| 683 | } |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 684 | return SCI_SUCCESS; |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 685 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 686 | case SCI_RNC_POSTING: |
| 687 | case SCI_RNC_INVALIDATING: |
| 688 | case SCI_RNC_RESUMING: |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 689 | if (test_bit(IDEV_ABORT_PATH_ACTIVE, &idev->flags)) |
| 690 | sci_remote_node_context_save_cbparams(sci_rnc, cb_fn, |
| 691 | cb_p); |
| 692 | else { |
| 693 | /* We are still waiting to post when a resume was |
| 694 | * requested. |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 695 | */ |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 696 | switch (sci_rnc->destination_state) { |
| 697 | case RNC_DEST_SUSPENDED: |
| 698 | case RNC_DEST_SUSPENDED_RESUME: |
| 699 | /* Previously waiting to suspend after posting. |
| 700 | * Now continue onto resumption. |
| 701 | */ |
| 702 | sci_remote_node_context_setup_to_resume( |
| 703 | sci_rnc, cb_fn, cb_p, |
| 704 | RNC_DEST_SUSPENDED_RESUME); |
| 705 | break; |
| 706 | default: |
| 707 | sci_remote_node_context_setup_to_resume( |
| 708 | sci_rnc, cb_fn, cb_p, |
| 709 | RNC_DEST_READY); |
| 710 | break; |
| 711 | } |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 712 | } |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 713 | return SCI_SUCCESS; |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 714 | |
Jeff Skirvin | 56d7c01 | 2012-03-08 22:41:49 -0800 | [diff] [blame] | 715 | case SCI_RNC_TX_SUSPENDED: |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 716 | case SCI_RNC_TX_RX_SUSPENDED: |
| 717 | if (test_bit(IDEV_ABORT_PATH_ACTIVE, &idev->flags)) |
| 718 | sci_remote_node_context_save_cbparams(sci_rnc, cb_fn, |
| 719 | cb_p); |
| 720 | else { |
| 721 | struct domain_device *dev = idev->domain_dev; |
| 722 | /* If this is an expander attached SATA device we must |
| 723 | * invalidate and repost the RNC since this is the only |
| 724 | * way to clear the TCi to NCQ tag mapping table for |
| 725 | * the RNi. All other device types we can just resume. |
| 726 | */ |
| 727 | sci_remote_node_context_setup_to_resume( |
| 728 | sci_rnc, cb_fn, cb_p, RNC_DEST_READY); |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 729 | |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 730 | if (dev_is_sata(dev) && dev->parent) |
| 731 | sci_change_state(&sci_rnc->sm, |
| 732 | SCI_RNC_INVALIDATING); |
| 733 | else |
| 734 | sci_change_state(&sci_rnc->sm, |
| 735 | SCI_RNC_RESUMING); |
| 736 | } |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 737 | return SCI_SUCCESS; |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 738 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 739 | case SCI_RNC_AWAIT_SUSPENSION: |
Jeff Skirvin | 0c3ce38 | 2012-03-08 22:42:02 -0800 | [diff] [blame] | 740 | if (test_bit(IDEV_ABORT_PATH_ACTIVE, &idev->flags)) |
| 741 | sci_remote_node_context_save_cbparams(sci_rnc, cb_fn, |
| 742 | cb_p); |
| 743 | else |
| 744 | sci_remote_node_context_setup_to_resume( |
| 745 | sci_rnc, cb_fn, cb_p, |
| 746 | RNC_DEST_SUSPENDED_RESUME); |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 747 | return SCI_SUCCESS; |
| 748 | default: |
| 749 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 750 | "%s: invalid state %s\n", __func__, |
| 751 | rnc_state_name(state)); |
Dan Williams | ed3efb7 | 2011-05-12 08:50:23 -0700 | [diff] [blame] | 752 | return SCI_FAILURE_INVALID_STATE; |
| 753 | } |
| 754 | } |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 755 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 756 | enum sci_status sci_remote_node_context_start_io(struct sci_remote_node_context *sci_rnc, |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 757 | struct isci_request *ireq) |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 758 | { |
| 759 | enum scis_sds_remote_node_context_states state; |
| 760 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 761 | state = sci_rnc->sm.current_state_id; |
Jeff Skirvin | fd53660 | 2011-06-20 14:09:22 -0700 | [diff] [blame] | 762 | |
| 763 | switch (state) { |
| 764 | case SCI_RNC_READY: |
| 765 | return SCI_SUCCESS; |
| 766 | case SCI_RNC_TX_SUSPENDED: |
| 767 | case SCI_RNC_TX_RX_SUSPENDED: |
| 768 | case SCI_RNC_AWAIT_SUSPENSION: |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 769 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 770 | "%s: invalid state %s\n", __func__, |
| 771 | rnc_state_name(state)); |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 772 | return SCI_FAILURE_REMOTE_DEVICE_RESET_REQUIRED; |
Jeff Skirvin | fd53660 | 2011-06-20 14:09:22 -0700 | [diff] [blame] | 773 | default: |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 774 | dev_dbg(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
| 775 | "%s: invalid state %s\n", __func__, |
| 776 | rnc_state_name(state)); |
| 777 | return SCI_FAILURE_INVALID_STATE; |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 778 | } |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Jeff Skirvin | 14aaa9f | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 781 | enum sci_status sci_remote_node_context_start_task( |
| 782 | struct sci_remote_node_context *sci_rnc, |
| 783 | struct isci_request *ireq, |
| 784 | scics_sds_remote_node_context_callback cb_fn, |
| 785 | void *cb_p) |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 786 | { |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 787 | enum sci_status status = sci_remote_node_context_resume(sci_rnc, |
| 788 | cb_fn, cb_p); |
| 789 | if (status != SCI_SUCCESS) |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 790 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
Jeff Skirvin | 59e3539 | 2012-03-08 22:41:54 -0800 | [diff] [blame] | 791 | "%s: resume failed: %d\n", __func__, status); |
| 792 | return status; |
Dan Williams | f34d9e5 | 2011-05-12 09:27:52 -0700 | [diff] [blame] | 793 | } |
Jeff Skirvin | 726980d | 2012-03-08 22:41:50 -0800 | [diff] [blame] | 794 | |
| 795 | int sci_remote_node_context_is_safe_to_abort( |
| 796 | struct sci_remote_node_context *sci_rnc) |
| 797 | { |
| 798 | enum scis_sds_remote_node_context_states state; |
| 799 | |
| 800 | state = sci_rnc->sm.current_state_id; |
| 801 | switch (state) { |
| 802 | case SCI_RNC_INVALIDATING: |
| 803 | case SCI_RNC_TX_RX_SUSPENDED: |
| 804 | return 1; |
| 805 | case SCI_RNC_POSTING: |
| 806 | case SCI_RNC_RESUMING: |
| 807 | case SCI_RNC_READY: |
| 808 | case SCI_RNC_TX_SUSPENDED: |
| 809 | case SCI_RNC_AWAIT_SUSPENSION: |
| 810 | case SCI_RNC_INITIAL: |
| 811 | return 0; |
| 812 | default: |
| 813 | dev_warn(scirdev_to_dev(rnc_to_dev(sci_rnc)), |
| 814 | "%s: invalid state %d\n", __func__, state); |
| 815 | return 0; |
| 816 | } |
| 817 | } |