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 | */ |
Dan Williams | ac668c6 | 2011-06-07 18:50:55 -0700 | [diff] [blame] | 55 | #include <linux/circ_buf.h> |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 56 | #include <linux/device.h> |
| 57 | #include <scsi/sas.h> |
| 58 | #include "host.h" |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 59 | #include "isci.h" |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 60 | #include "port.h" |
Dan Williams | d044af1 | 2011-03-08 09:52:49 -0800 | [diff] [blame] | 61 | #include "probe_roms.h" |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 62 | #include "remote_device.h" |
| 63 | #include "request.h" |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 64 | #include "scu_completion_codes.h" |
| 65 | #include "scu_event_codes.h" |
Dan Williams | 63a3a15 | 2011-05-08 21:36:46 -0700 | [diff] [blame] | 66 | #include "registers.h" |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 67 | #include "scu_remote_node_context.h" |
| 68 | #include "scu_task_context.h" |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 69 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 70 | #define SCU_CONTEXT_RAM_INIT_STALL_TIME 200 |
| 71 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 72 | #define smu_max_ports(dcc_value) \ |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 73 | (\ |
| 74 | (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_MASK) \ |
| 75 | >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_SHIFT) + 1 \ |
| 76 | ) |
| 77 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 78 | #define smu_max_task_contexts(dcc_value) \ |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 79 | (\ |
| 80 | (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_MASK) \ |
| 81 | >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT) + 1 \ |
| 82 | ) |
| 83 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 84 | #define smu_max_rncs(dcc_value) \ |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 85 | (\ |
| 86 | (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_MASK) \ |
| 87 | >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_SHIFT) + 1 \ |
| 88 | ) |
| 89 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 90 | #define SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT 100 |
| 91 | |
| 92 | /** |
| 93 | * |
| 94 | * |
| 95 | * The number of milliseconds to wait while a given phy is consuming power |
| 96 | * before allowing another set of phys to consume power. Ultimately, this will |
| 97 | * be specified by OEM parameter. |
| 98 | */ |
| 99 | #define SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL 500 |
| 100 | |
| 101 | /** |
| 102 | * NORMALIZE_PUT_POINTER() - |
| 103 | * |
| 104 | * This macro will normalize the completion queue put pointer so its value can |
| 105 | * be used as an array inde |
| 106 | */ |
| 107 | #define NORMALIZE_PUT_POINTER(x) \ |
| 108 | ((x) & SMU_COMPLETION_QUEUE_PUT_POINTER_MASK) |
| 109 | |
| 110 | |
| 111 | /** |
| 112 | * NORMALIZE_EVENT_POINTER() - |
| 113 | * |
| 114 | * This macro will normalize the completion queue event entry so its value can |
| 115 | * be used as an index. |
| 116 | */ |
| 117 | #define NORMALIZE_EVENT_POINTER(x) \ |
| 118 | (\ |
| 119 | ((x) & SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_MASK) \ |
| 120 | >> SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_SHIFT \ |
| 121 | ) |
| 122 | |
| 123 | /** |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 124 | * NORMALIZE_GET_POINTER() - |
| 125 | * |
| 126 | * This macro will normalize the completion queue get pointer so its value can |
| 127 | * be used as an index into an array |
| 128 | */ |
| 129 | #define NORMALIZE_GET_POINTER(x) \ |
| 130 | ((x) & SMU_COMPLETION_QUEUE_GET_POINTER_MASK) |
| 131 | |
| 132 | /** |
| 133 | * NORMALIZE_GET_POINTER_CYCLE_BIT() - |
| 134 | * |
| 135 | * This macro will normalize the completion queue cycle pointer so it matches |
| 136 | * the completion queue cycle bit |
| 137 | */ |
| 138 | #define NORMALIZE_GET_POINTER_CYCLE_BIT(x) \ |
| 139 | ((SMU_CQGR_CYCLE_BIT & (x)) << (31 - SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT)) |
| 140 | |
| 141 | /** |
| 142 | * COMPLETION_QUEUE_CYCLE_BIT() - |
| 143 | * |
| 144 | * This macro will return the cycle bit of the completion queue entry |
| 145 | */ |
| 146 | #define COMPLETION_QUEUE_CYCLE_BIT(x) ((x) & 0x80000000) |
| 147 | |
Edmund Nadolski | 12ef654 | 2011-06-02 00:10:50 +0000 | [diff] [blame] | 148 | /* Init the state machine and call the state entry function (if any) */ |
| 149 | void sci_init_sm(struct sci_base_state_machine *sm, |
| 150 | const struct sci_base_state *state_table, u32 initial_state) |
| 151 | { |
| 152 | sci_state_transition_t handler; |
| 153 | |
| 154 | sm->initial_state_id = initial_state; |
| 155 | sm->previous_state_id = initial_state; |
| 156 | sm->current_state_id = initial_state; |
| 157 | sm->state_table = state_table; |
| 158 | |
| 159 | handler = sm->state_table[initial_state].enter_state; |
| 160 | if (handler) |
| 161 | handler(sm); |
| 162 | } |
| 163 | |
| 164 | /* Call the state exit fn, update the current state, call the state entry fn */ |
| 165 | void sci_change_state(struct sci_base_state_machine *sm, u32 next_state) |
| 166 | { |
| 167 | sci_state_transition_t handler; |
| 168 | |
| 169 | handler = sm->state_table[sm->current_state_id].exit_state; |
| 170 | if (handler) |
| 171 | handler(sm); |
| 172 | |
| 173 | sm->previous_state_id = sm->current_state_id; |
| 174 | sm->current_state_id = next_state; |
| 175 | |
| 176 | handler = sm->state_table[sm->current_state_id].enter_state; |
| 177 | if (handler) |
| 178 | handler(sm); |
| 179 | } |
| 180 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 181 | static bool sci_controller_completion_queue_has_entries(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 182 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 183 | u32 get_value = ihost->completion_queue_get; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 184 | u32 get_index = get_value & SMU_COMPLETION_QUEUE_GET_POINTER_MASK; |
| 185 | |
| 186 | if (NORMALIZE_GET_POINTER_CYCLE_BIT(get_value) == |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 187 | COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index])) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 188 | return true; |
| 189 | |
| 190 | return false; |
| 191 | } |
| 192 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 193 | static bool sci_controller_isr(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 194 | { |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 195 | if (sci_controller_completion_queue_has_entries(ihost)) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 196 | return true; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 197 | |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 198 | /* we have a spurious interrupt it could be that we have already |
| 199 | * emptied the completion queue from a previous interrupt |
| 200 | * FIXME: really!? |
| 201 | */ |
| 202 | writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status); |
| 203 | |
| 204 | /* There is a race in the hardware that could cause us not to be |
| 205 | * notified of an interrupt completion if we do not take this |
| 206 | * step. We will mask then unmask the interrupts so if there is |
| 207 | * another interrupt pending the clearing of the interrupt |
| 208 | * source we get the next interrupt message. |
| 209 | */ |
| 210 | spin_lock(&ihost->scic_lock); |
| 211 | if (test_bit(IHOST_IRQ_ENABLED, &ihost->flags)) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 212 | writel(0xFF000000, &ihost->smu_registers->interrupt_mask); |
| 213 | writel(0, &ihost->smu_registers->interrupt_mask); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 214 | } |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 215 | spin_unlock(&ihost->scic_lock); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 216 | |
| 217 | return false; |
| 218 | } |
| 219 | |
Dan Williams | c7ef403 | 2011-02-18 09:25:05 -0800 | [diff] [blame] | 220 | irqreturn_t isci_msix_isr(int vec, void *data) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 221 | { |
Dan Williams | c7ef403 | 2011-02-18 09:25:05 -0800 | [diff] [blame] | 222 | struct isci_host *ihost = data; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 223 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 224 | if (sci_controller_isr(ihost)) |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 225 | tasklet_schedule(&ihost->completion_tasklet); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 226 | |
Dan Williams | c7ef403 | 2011-02-18 09:25:05 -0800 | [diff] [blame] | 227 | return IRQ_HANDLED; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 230 | static bool sci_controller_error_isr(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 231 | { |
| 232 | u32 interrupt_status; |
| 233 | |
| 234 | interrupt_status = |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 235 | readl(&ihost->smu_registers->interrupt_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 236 | interrupt_status &= (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND); |
| 237 | |
| 238 | if (interrupt_status != 0) { |
| 239 | /* |
| 240 | * There is an error interrupt pending so let it through and handle |
| 241 | * in the callback */ |
| 242 | return true; |
| 243 | } |
| 244 | |
| 245 | /* |
| 246 | * There is a race in the hardware that could cause us not to be notified |
| 247 | * of an interrupt completion if we do not take this step. We will mask |
| 248 | * then unmask the error interrupts so if there was another interrupt |
| 249 | * pending we will be notified. |
| 250 | * Could we write the value of (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND)? */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 251 | writel(0xff, &ihost->smu_registers->interrupt_mask); |
| 252 | writel(0, &ihost->smu_registers->interrupt_mask); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 253 | |
| 254 | return false; |
| 255 | } |
| 256 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 257 | static void sci_controller_task_completion(struct isci_host *ihost, u32 ent) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 258 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 259 | u32 index = SCU_GET_COMPLETION_INDEX(ent); |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 260 | struct isci_request *ireq = ihost->reqs[index]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 261 | |
| 262 | /* Make sure that we really want to process this IO request */ |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 263 | if (test_bit(IREQ_ACTIVE, &ireq->flags) && |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 264 | ireq->io_tag != SCI_CONTROLLER_INVALID_IO_TAG && |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 265 | ISCI_TAG_SEQ(ireq->io_tag) == ihost->io_request_sequence[index]) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 266 | /* Yep this is a valid io request pass it along to the |
| 267 | * io request handler |
| 268 | */ |
| 269 | sci_io_request_tc_completion(ireq, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 272 | static void sci_controller_sdma_completion(struct isci_host *ihost, u32 ent) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 273 | { |
| 274 | u32 index; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 275 | struct isci_request *ireq; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 276 | struct isci_remote_device *idev; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 277 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 278 | index = SCU_GET_COMPLETION_INDEX(ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 279 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 280 | switch (scu_get_command_request_type(ent)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 281 | case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC: |
| 282 | case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 283 | ireq = ihost->reqs[index]; |
| 284 | dev_warn(&ihost->pdev->dev, "%s: %x for io request %p\n", |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 285 | __func__, ent, ireq); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 286 | /* @todo For a post TC operation we need to fail the IO |
| 287 | * request |
| 288 | */ |
| 289 | break; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 290 | case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_RNC: |
| 291 | case SCU_CONTEXT_COMMAND_REQUEST_TYPE_OTHER_RNC: |
| 292 | case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_RNC: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 293 | idev = ihost->device_table[index]; |
| 294 | dev_warn(&ihost->pdev->dev, "%s: %x for device %p\n", |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 295 | __func__, ent, idev); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 296 | /* @todo For a port RNC operation we need to fail the |
| 297 | * device |
| 298 | */ |
| 299 | break; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 300 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 301 | dev_warn(&ihost->pdev->dev, "%s: unknown completion type %x\n", |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 302 | __func__, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 303 | break; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 304 | } |
| 305 | } |
| 306 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 307 | static void sci_controller_unsolicited_frame(struct isci_host *ihost, u32 ent) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 308 | { |
| 309 | u32 index; |
| 310 | u32 frame_index; |
| 311 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 312 | struct scu_unsolicited_frame_header *frame_header; |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 313 | struct isci_phy *iphy; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 314 | struct isci_remote_device *idev; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 315 | |
| 316 | enum sci_status result = SCI_FAILURE; |
| 317 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 318 | frame_index = SCU_GET_FRAME_INDEX(ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 319 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 320 | frame_header = ihost->uf_control.buffers.array[frame_index].header; |
| 321 | ihost->uf_control.buffers.array[frame_index].state = UNSOLICITED_FRAME_IN_USE; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 322 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 323 | if (SCU_GET_FRAME_ERROR(ent)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 324 | /* |
| 325 | * / @todo If the IAF frame or SIGNATURE FIS frame has an error will |
| 326 | * / this cause a problem? We expect the phy initialization will |
| 327 | * / fail if there is an error in the frame. */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 328 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 329 | return; |
| 330 | } |
| 331 | |
| 332 | if (frame_header->is_address_frame) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 333 | index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent); |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 334 | iphy = &ihost->phys[index]; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 335 | result = sci_phy_frame_handler(iphy, frame_index); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 336 | } else { |
| 337 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 338 | index = SCU_GET_COMPLETION_INDEX(ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 339 | |
| 340 | if (index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) { |
| 341 | /* |
| 342 | * This is a signature fis or a frame from a direct attached SATA |
| 343 | * device that has not yet been created. In either case forwared |
| 344 | * the frame to the PE and let it take care of the frame data. */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 345 | index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent); |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 346 | iphy = &ihost->phys[index]; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 347 | result = sci_phy_frame_handler(iphy, frame_index); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 348 | } else { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 349 | if (index < ihost->remote_node_entries) |
| 350 | idev = ihost->device_table[index]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 351 | else |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 352 | idev = NULL; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 353 | |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 354 | if (idev != NULL) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 355 | result = sci_remote_device_frame_handler(idev, frame_index); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 356 | else |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 357 | sci_controller_release_frame(ihost, frame_index); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 358 | } |
| 359 | } |
| 360 | |
| 361 | if (result != SCI_SUCCESS) { |
| 362 | /* |
| 363 | * / @todo Is there any reason to report some additional error message |
| 364 | * / when we get this failure notifiction? */ |
| 365 | } |
| 366 | } |
| 367 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 368 | static void sci_controller_event_completion(struct isci_host *ihost, u32 ent) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 369 | { |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 370 | struct isci_remote_device *idev; |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 371 | struct isci_request *ireq; |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 372 | struct isci_phy *iphy; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 373 | u32 index; |
| 374 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 375 | index = SCU_GET_COMPLETION_INDEX(ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 376 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 377 | switch (scu_get_event_type(ent)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 378 | case SCU_EVENT_TYPE_SMU_COMMAND_ERROR: |
| 379 | /* / @todo The driver did something wrong and we need to fix the condtion. */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 380 | dev_err(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 381 | "%s: SCIC Controller 0x%p received SMU command error " |
| 382 | "0x%x\n", |
| 383 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 384 | ihost, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 385 | ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 386 | break; |
| 387 | |
| 388 | case SCU_EVENT_TYPE_SMU_PCQ_ERROR: |
| 389 | case SCU_EVENT_TYPE_SMU_ERROR: |
| 390 | case SCU_EVENT_TYPE_FATAL_MEMORY_ERROR: |
| 391 | /* |
| 392 | * / @todo This is a hardware failure and its likely that we want to |
| 393 | * / reset the controller. */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 394 | dev_err(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 395 | "%s: SCIC Controller 0x%p received fatal controller " |
| 396 | "event 0x%x\n", |
| 397 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 398 | ihost, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 399 | ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 400 | break; |
| 401 | |
| 402 | case SCU_EVENT_TYPE_TRANSPORT_ERROR: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 403 | ireq = ihost->reqs[index]; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 404 | sci_io_request_event_handler(ireq, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 405 | break; |
| 406 | |
| 407 | case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 408 | switch (scu_get_event_specifier(ent)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 409 | case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE: |
| 410 | case SCU_EVENT_SPECIFIC_TASK_TIMEOUT: |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 411 | ireq = ihost->reqs[index]; |
| 412 | if (ireq != NULL) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 413 | sci_io_request_event_handler(ireq, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 414 | else |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 415 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 416 | "%s: SCIC Controller 0x%p received " |
| 417 | "event 0x%x for io request object " |
| 418 | "that doesnt exist.\n", |
| 419 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 420 | ihost, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 421 | ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 422 | |
| 423 | break; |
| 424 | |
| 425 | case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 426 | idev = ihost->device_table[index]; |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 427 | if (idev != NULL) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 428 | sci_remote_device_event_handler(idev, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 429 | else |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 430 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 431 | "%s: SCIC Controller 0x%p received " |
| 432 | "event 0x%x for remote device object " |
| 433 | "that doesnt exist.\n", |
| 434 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 435 | ihost, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 436 | ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 437 | |
| 438 | break; |
| 439 | } |
| 440 | break; |
| 441 | |
| 442 | case SCU_EVENT_TYPE_BROADCAST_CHANGE: |
| 443 | /* |
| 444 | * direct the broadcast change event to the phy first and then let |
| 445 | * the phy redirect the broadcast change to the port object */ |
| 446 | case SCU_EVENT_TYPE_ERR_CNT_EVENT: |
| 447 | /* |
| 448 | * direct error counter event to the phy object since that is where |
| 449 | * we get the event notification. This is a type 4 event. */ |
| 450 | case SCU_EVENT_TYPE_OSSP_EVENT: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 451 | index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent); |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 452 | iphy = &ihost->phys[index]; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 453 | sci_phy_event_handler(iphy, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 454 | break; |
| 455 | |
| 456 | case SCU_EVENT_TYPE_RNC_SUSPEND_TX: |
| 457 | case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX: |
| 458 | case SCU_EVENT_TYPE_RNC_OPS_MISC: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 459 | if (index < ihost->remote_node_entries) { |
| 460 | idev = ihost->device_table[index]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 461 | |
Dan Williams | 78a6f06 | 2011-06-30 16:31:37 -0700 | [diff] [blame] | 462 | if (idev != NULL) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 463 | sci_remote_device_event_handler(idev, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 464 | } else |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 465 | dev_err(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 466 | "%s: SCIC Controller 0x%p received event 0x%x " |
| 467 | "for remote device object 0x%0x that doesnt " |
| 468 | "exist.\n", |
| 469 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 470 | ihost, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 471 | ent, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 472 | index); |
| 473 | |
| 474 | break; |
| 475 | |
| 476 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 477 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 478 | "%s: SCIC Controller received unknown event code %x\n", |
| 479 | __func__, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 480 | ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 481 | break; |
| 482 | } |
| 483 | } |
| 484 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 485 | static void sci_controller_process_completions(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 486 | { |
| 487 | u32 completion_count = 0; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 488 | u32 ent; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 489 | u32 get_index; |
| 490 | u32 get_cycle; |
Dan Williams | 994a930 | 2011-06-09 16:04:28 -0700 | [diff] [blame] | 491 | u32 event_get; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 492 | u32 event_cycle; |
| 493 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 494 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 495 | "%s: completion queue begining get:0x%08x\n", |
| 496 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 497 | ihost->completion_queue_get); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 498 | |
| 499 | /* Get the component parts of the completion queue */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 500 | get_index = NORMALIZE_GET_POINTER(ihost->completion_queue_get); |
| 501 | get_cycle = SMU_CQGR_CYCLE_BIT & ihost->completion_queue_get; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 502 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 503 | event_get = NORMALIZE_EVENT_POINTER(ihost->completion_queue_get); |
| 504 | event_cycle = SMU_CQGR_EVENT_CYCLE_BIT & ihost->completion_queue_get; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 505 | |
| 506 | while ( |
| 507 | NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle) |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 508 | == COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index]) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 509 | ) { |
| 510 | completion_count++; |
| 511 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 512 | ent = ihost->completion_queue[get_index]; |
Dan Williams | 994a930 | 2011-06-09 16:04:28 -0700 | [diff] [blame] | 513 | |
| 514 | /* increment the get pointer and check for rollover to toggle the cycle bit */ |
| 515 | get_cycle ^= ((get_index+1) & SCU_MAX_COMPLETION_QUEUE_ENTRIES) << |
| 516 | (SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT - SCU_MAX_COMPLETION_QUEUE_SHIFT); |
| 517 | get_index = (get_index+1) & (SCU_MAX_COMPLETION_QUEUE_ENTRIES-1); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 518 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 519 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 520 | "%s: completion queue entry:0x%08x\n", |
| 521 | __func__, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 522 | ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 523 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 524 | switch (SCU_GET_COMPLETION_TYPE(ent)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 525 | case SCU_COMPLETION_TYPE_TASK: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 526 | sci_controller_task_completion(ihost, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 527 | break; |
| 528 | |
| 529 | case SCU_COMPLETION_TYPE_SDMA: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 530 | sci_controller_sdma_completion(ihost, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 531 | break; |
| 532 | |
| 533 | case SCU_COMPLETION_TYPE_UFI: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 534 | sci_controller_unsolicited_frame(ihost, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 535 | break; |
| 536 | |
| 537 | case SCU_COMPLETION_TYPE_EVENT: |
Dan Williams | 77cd72a | 2011-07-29 17:17:16 -0700 | [diff] [blame] | 538 | sci_controller_event_completion(ihost, ent); |
| 539 | break; |
| 540 | |
Dan Williams | 994a930 | 2011-06-09 16:04:28 -0700 | [diff] [blame] | 541 | case SCU_COMPLETION_TYPE_NOTIFY: { |
| 542 | event_cycle ^= ((event_get+1) & SCU_MAX_EVENTS) << |
| 543 | (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT - SCU_MAX_EVENTS_SHIFT); |
| 544 | event_get = (event_get+1) & (SCU_MAX_EVENTS-1); |
| 545 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 546 | sci_controller_event_completion(ihost, ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 547 | break; |
Dan Williams | 994a930 | 2011-06-09 16:04:28 -0700 | [diff] [blame] | 548 | } |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 549 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 550 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 551 | "%s: SCIC Controller received unknown " |
| 552 | "completion type %x\n", |
| 553 | __func__, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 554 | ent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 555 | break; |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | /* Update the get register if we completed one or more entries */ |
| 560 | if (completion_count > 0) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 561 | ihost->completion_queue_get = |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 562 | SMU_CQGR_GEN_BIT(ENABLE) | |
| 563 | SMU_CQGR_GEN_BIT(EVENT_ENABLE) | |
| 564 | event_cycle | |
Dan Williams | 994a930 | 2011-06-09 16:04:28 -0700 | [diff] [blame] | 565 | SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 566 | get_cycle | |
| 567 | SMU_CQGR_GEN_VAL(POINTER, get_index); |
| 568 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 569 | writel(ihost->completion_queue_get, |
| 570 | &ihost->smu_registers->completion_queue_get); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 571 | |
| 572 | } |
| 573 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 574 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 575 | "%s: completion queue ending get:0x%08x\n", |
| 576 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 577 | ihost->completion_queue_get); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 578 | |
| 579 | } |
| 580 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 581 | static void sci_controller_error_handler(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 582 | { |
| 583 | u32 interrupt_status; |
| 584 | |
| 585 | interrupt_status = |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 586 | readl(&ihost->smu_registers->interrupt_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 587 | |
| 588 | if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) && |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 589 | sci_controller_completion_queue_has_entries(ihost)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 590 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 591 | sci_controller_process_completions(ihost); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 592 | writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 593 | } else { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 594 | dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 595 | interrupt_status); |
| 596 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 597 | sci_change_state(&ihost->sm, SCIC_FAILED); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 598 | |
| 599 | return; |
| 600 | } |
| 601 | |
| 602 | /* If we dont process any completions I am not sure that we want to do this. |
| 603 | * We are in the middle of a hardware fault and should probably be reset. |
| 604 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 605 | writel(0, &ihost->smu_registers->interrupt_mask); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 606 | } |
| 607 | |
Dan Williams | c7ef403 | 2011-02-18 09:25:05 -0800 | [diff] [blame] | 608 | irqreturn_t isci_intx_isr(int vec, void *data) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 609 | { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 610 | irqreturn_t ret = IRQ_NONE; |
Dan Williams | 31e824e | 2011-04-19 12:32:51 -0700 | [diff] [blame] | 611 | struct isci_host *ihost = data; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 612 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 613 | if (sci_controller_isr(ihost)) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 614 | writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status); |
Dan Williams | 31e824e | 2011-04-19 12:32:51 -0700 | [diff] [blame] | 615 | tasklet_schedule(&ihost->completion_tasklet); |
| 616 | ret = IRQ_HANDLED; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 617 | } else if (sci_controller_error_isr(ihost)) { |
Dan Williams | 31e824e | 2011-04-19 12:32:51 -0700 | [diff] [blame] | 618 | spin_lock(&ihost->scic_lock); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 619 | sci_controller_error_handler(ihost); |
Dan Williams | 31e824e | 2011-04-19 12:32:51 -0700 | [diff] [blame] | 620 | spin_unlock(&ihost->scic_lock); |
| 621 | ret = IRQ_HANDLED; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 622 | } |
Dan Williams | 92f4f0f | 2011-02-18 09:25:11 -0800 | [diff] [blame] | 623 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 624 | return ret; |
| 625 | } |
| 626 | |
Dan Williams | 92f4f0f | 2011-02-18 09:25:11 -0800 | [diff] [blame] | 627 | irqreturn_t isci_error_isr(int vec, void *data) |
| 628 | { |
| 629 | struct isci_host *ihost = data; |
Dan Williams | 92f4f0f | 2011-02-18 09:25:11 -0800 | [diff] [blame] | 630 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 631 | if (sci_controller_error_isr(ihost)) |
| 632 | sci_controller_error_handler(ihost); |
Dan Williams | 92f4f0f | 2011-02-18 09:25:11 -0800 | [diff] [blame] | 633 | |
| 634 | return IRQ_HANDLED; |
| 635 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 636 | |
| 637 | /** |
| 638 | * isci_host_start_complete() - This function is called by the core library, |
| 639 | * through the ISCI Module, to indicate controller start status. |
| 640 | * @isci_host: This parameter specifies the ISCI host object |
| 641 | * @completion_status: This parameter specifies the completion status from the |
| 642 | * core library. |
| 643 | * |
| 644 | */ |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 645 | static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 646 | { |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 647 | if (completion_status != SCI_SUCCESS) |
| 648 | dev_info(&ihost->pdev->dev, |
| 649 | "controller start timed out, continuing...\n"); |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 650 | clear_bit(IHOST_START_PENDING, &ihost->flags); |
| 651 | wake_up(&ihost->eventq); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 652 | } |
| 653 | |
Dan Williams | c7ef403 | 2011-02-18 09:25:05 -0800 | [diff] [blame] | 654 | int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 655 | { |
Dan Williams | b1124cd | 2011-12-19 16:42:34 -0800 | [diff] [blame] | 656 | struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost); |
| 657 | struct isci_host *ihost = ha->lldd_ha; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 658 | |
Edmund Nadolski | 77950f5 | 2011-02-18 09:25:09 -0800 | [diff] [blame] | 659 | if (test_bit(IHOST_START_PENDING, &ihost->flags)) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 660 | return 0; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 661 | |
Dan Williams | b1124cd | 2011-12-19 16:42:34 -0800 | [diff] [blame] | 662 | sas_drain_work(ha); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 663 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 664 | return 1; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 665 | } |
| 666 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 667 | /** |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 668 | * sci_controller_get_suggested_start_timeout() - This method returns the |
| 669 | * suggested sci_controller_start() timeout amount. The user is free to |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 670 | * use any timeout value, but this method provides the suggested minimum |
| 671 | * start timeout value. The returned value is based upon empirical |
| 672 | * information determined as a result of interoperability testing. |
| 673 | * @controller: the handle to the controller object for which to return the |
| 674 | * suggested start timeout. |
| 675 | * |
| 676 | * This method returns the number of milliseconds for the suggested start |
| 677 | * operation timeout. |
| 678 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 679 | static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 680 | { |
| 681 | /* Validate the user supplied parameters. */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 682 | if (!ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 683 | return 0; |
| 684 | |
| 685 | /* |
| 686 | * The suggested minimum timeout value for a controller start operation: |
| 687 | * |
| 688 | * Signature FIS Timeout |
| 689 | * + Phy Start Timeout |
| 690 | * + Number of Phy Spin Up Intervals |
| 691 | * --------------------------------- |
| 692 | * Number of milliseconds for the controller start operation. |
| 693 | * |
| 694 | * NOTE: The number of phy spin up intervals will be equivalent |
| 695 | * to the number of phys divided by the number phys allowed |
| 696 | * per interval - 1 (once OEM parameters are supported). |
| 697 | * Currently we assume only 1 phy per interval. */ |
| 698 | |
| 699 | return SCIC_SDS_SIGNATURE_FIS_TIMEOUT |
| 700 | + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT |
| 701 | + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL); |
| 702 | } |
| 703 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 704 | static void sci_controller_enable_interrupts(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 705 | { |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 706 | set_bit(IHOST_IRQ_ENABLED, &ihost->flags); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 707 | writel(0, &ihost->smu_registers->interrupt_mask); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 708 | } |
| 709 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 710 | void sci_controller_disable_interrupts(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 711 | { |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 712 | clear_bit(IHOST_IRQ_ENABLED, &ihost->flags); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 713 | writel(0xffffffff, &ihost->smu_registers->interrupt_mask); |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 714 | readl(&ihost->smu_registers->interrupt_mask); /* flush */ |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 715 | } |
| 716 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 717 | static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 718 | { |
| 719 | u32 port_task_scheduler_value; |
| 720 | |
| 721 | port_task_scheduler_value = |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 722 | readl(&ihost->scu_registers->peg0.ptsg.control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 723 | port_task_scheduler_value |= |
| 724 | (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) | |
| 725 | SCU_PTSGCR_GEN_BIT(PTSG_ENABLE)); |
| 726 | writel(port_task_scheduler_value, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 727 | &ihost->scu_registers->peg0.ptsg.control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 728 | } |
| 729 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 730 | static void sci_controller_assign_task_entries(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 731 | { |
| 732 | u32 task_assignment; |
| 733 | |
| 734 | /* |
| 735 | * Assign all the TCs to function 0 |
| 736 | * TODO: Do we actually need to read this register to write it back? |
| 737 | */ |
| 738 | |
| 739 | task_assignment = |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 740 | readl(&ihost->smu_registers->task_context_assignment[0]); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 741 | |
| 742 | task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 743 | (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 744 | (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE)); |
| 745 | |
| 746 | writel(task_assignment, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 747 | &ihost->smu_registers->task_context_assignment[0]); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 748 | |
| 749 | } |
| 750 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 751 | static void sci_controller_initialize_completion_queue(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 752 | { |
| 753 | u32 index; |
| 754 | u32 completion_queue_control_value; |
| 755 | u32 completion_queue_get_value; |
| 756 | u32 completion_queue_put_value; |
| 757 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 758 | ihost->completion_queue_get = 0; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 759 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 760 | completion_queue_control_value = |
| 761 | (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES - 1) | |
| 762 | SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS - 1)); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 763 | |
| 764 | writel(completion_queue_control_value, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 765 | &ihost->smu_registers->completion_queue_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 766 | |
| 767 | |
| 768 | /* Set the completion queue get pointer and enable the queue */ |
| 769 | completion_queue_get_value = ( |
| 770 | (SMU_CQGR_GEN_VAL(POINTER, 0)) |
| 771 | | (SMU_CQGR_GEN_VAL(EVENT_POINTER, 0)) |
| 772 | | (SMU_CQGR_GEN_BIT(ENABLE)) |
| 773 | | (SMU_CQGR_GEN_BIT(EVENT_ENABLE)) |
| 774 | ); |
| 775 | |
| 776 | writel(completion_queue_get_value, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 777 | &ihost->smu_registers->completion_queue_get); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 778 | |
| 779 | /* Set the completion queue put pointer */ |
| 780 | completion_queue_put_value = ( |
| 781 | (SMU_CQPR_GEN_VAL(POINTER, 0)) |
| 782 | | (SMU_CQPR_GEN_VAL(EVENT_POINTER, 0)) |
| 783 | ); |
| 784 | |
| 785 | writel(completion_queue_put_value, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 786 | &ihost->smu_registers->completion_queue_put); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 787 | |
| 788 | /* Initialize the cycle bit of the completion queue entries */ |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 789 | for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 790 | /* |
| 791 | * If get.cycle_bit != completion_queue.cycle_bit |
| 792 | * its not a valid completion queue entry |
| 793 | * so at system start all entries are invalid */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 794 | ihost->completion_queue[index] = 0x80000000; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 795 | } |
| 796 | } |
| 797 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 798 | static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 799 | { |
| 800 | u32 frame_queue_control_value; |
| 801 | u32 frame_queue_get_value; |
| 802 | u32 frame_queue_put_value; |
| 803 | |
| 804 | /* Write the queue size */ |
| 805 | frame_queue_control_value = |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 806 | SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 807 | |
| 808 | writel(frame_queue_control_value, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 809 | &ihost->scu_registers->sdma.unsolicited_frame_queue_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 810 | |
| 811 | /* Setup the get pointer for the unsolicited frame queue */ |
| 812 | frame_queue_get_value = ( |
| 813 | SCU_UFQGP_GEN_VAL(POINTER, 0) |
| 814 | | SCU_UFQGP_GEN_BIT(ENABLE_BIT) |
| 815 | ); |
| 816 | |
| 817 | writel(frame_queue_get_value, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 818 | &ihost->scu_registers->sdma.unsolicited_frame_get_pointer); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 819 | /* Setup the put pointer for the unsolicited frame queue */ |
| 820 | frame_queue_put_value = SCU_UFQPP_GEN_VAL(POINTER, 0); |
| 821 | writel(frame_queue_put_value, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 822 | &ihost->scu_registers->sdma.unsolicited_frame_put_pointer); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 823 | } |
| 824 | |
Dan Williams | 50a92d9 | 2012-02-29 01:07:56 -0800 | [diff] [blame] | 825 | void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 826 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 827 | if (ihost->sm.current_state_id == SCIC_STARTING) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 828 | /* |
| 829 | * We move into the ready state, because some of the phys/ports |
| 830 | * may be up and operational. |
| 831 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 832 | sci_change_state(&ihost->sm, SCIC_READY); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 833 | |
| 834 | isci_host_start_complete(ihost, status); |
| 835 | } |
| 836 | } |
| 837 | |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 838 | static bool is_phy_starting(struct isci_phy *iphy) |
Adam Gruchala | 4a33c52 | 2011-05-10 23:54:23 +0000 | [diff] [blame] | 839 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 840 | enum sci_phy_states state; |
Adam Gruchala | 4a33c52 | 2011-05-10 23:54:23 +0000 | [diff] [blame] | 841 | |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 842 | state = iphy->sm.current_state_id; |
Adam Gruchala | 4a33c52 | 2011-05-10 23:54:23 +0000 | [diff] [blame] | 843 | switch (state) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 844 | case SCI_PHY_STARTING: |
| 845 | case SCI_PHY_SUB_INITIAL: |
| 846 | case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN: |
| 847 | case SCI_PHY_SUB_AWAIT_IAF_UF: |
| 848 | case SCI_PHY_SUB_AWAIT_SAS_POWER: |
| 849 | case SCI_PHY_SUB_AWAIT_SATA_POWER: |
| 850 | case SCI_PHY_SUB_AWAIT_SATA_PHY_EN: |
| 851 | case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN: |
Dan Williams | 50a92d9 | 2012-02-29 01:07:56 -0800 | [diff] [blame] | 852 | case SCI_PHY_SUB_AWAIT_OSSP_EN: |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 853 | case SCI_PHY_SUB_AWAIT_SIG_FIS_UF: |
| 854 | case SCI_PHY_SUB_FINAL: |
Adam Gruchala | 4a33c52 | 2011-05-10 23:54:23 +0000 | [diff] [blame] | 855 | return true; |
| 856 | default: |
| 857 | return false; |
| 858 | } |
| 859 | } |
| 860 | |
Dan Williams | 50a92d9 | 2012-02-29 01:07:56 -0800 | [diff] [blame] | 861 | bool is_controller_start_complete(struct isci_host *ihost) |
| 862 | { |
| 863 | int i; |
| 864 | |
| 865 | for (i = 0; i < SCI_MAX_PHYS; i++) { |
| 866 | struct isci_phy *iphy = &ihost->phys[i]; |
| 867 | u32 state = iphy->sm.current_state_id; |
| 868 | |
| 869 | /* in apc mode we need to check every phy, in |
| 870 | * mpc mode we only need to check phys that have |
| 871 | * been configured into a port |
| 872 | */ |
| 873 | if (is_port_config_apc(ihost)) |
| 874 | /* pass */; |
| 875 | else if (!phy_get_non_dummy_port(iphy)) |
| 876 | continue; |
| 877 | |
| 878 | /* The controller start operation is complete iff: |
| 879 | * - all links have been given an opportunity to start |
| 880 | * - have no indication of a connected device |
| 881 | * - have an indication of a connected device and it has |
| 882 | * finished the link training process. |
| 883 | */ |
| 884 | if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) || |
| 885 | (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) || |
| 886 | (iphy->is_in_link_training == true && is_phy_starting(iphy)) || |
| 887 | (ihost->port_agent.phy_ready_mask != ihost->port_agent.phy_configured_mask)) |
| 888 | return false; |
| 889 | } |
| 890 | |
| 891 | return true; |
| 892 | } |
| 893 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 894 | /** |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 895 | * sci_controller_start_next_phy - start phy |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 896 | * @scic: controller |
| 897 | * |
| 898 | * If all the phys have been started, then attempt to transition the |
| 899 | * controller to the READY state and inform the user |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 900 | * (sci_cb_controller_start_complete()). |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 901 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 902 | static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 903 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 904 | struct sci_oem_params *oem = &ihost->oem_parameters; |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 905 | struct isci_phy *iphy; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 906 | enum sci_status status; |
| 907 | |
| 908 | status = SCI_SUCCESS; |
| 909 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 910 | if (ihost->phy_startup_timer_pending) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 911 | return status; |
| 912 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 913 | if (ihost->next_phy_to_start >= SCI_MAX_PHYS) { |
Dan Williams | 50a92d9 | 2012-02-29 01:07:56 -0800 | [diff] [blame] | 914 | if (is_controller_start_complete(ihost)) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 915 | sci_controller_transition_to_ready(ihost, SCI_SUCCESS); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 916 | sci_del_timer(&ihost->phy_timer); |
| 917 | ihost->phy_startup_timer_pending = false; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 918 | } |
| 919 | } else { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 920 | iphy = &ihost->phys[ihost->next_phy_to_start]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 921 | |
| 922 | if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) { |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 923 | if (phy_get_non_dummy_port(iphy) == NULL) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 924 | ihost->next_phy_to_start++; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 925 | |
| 926 | /* Caution recursion ahead be forwarned |
| 927 | * |
| 928 | * The PHY was never added to a PORT in MPC mode |
| 929 | * so start the next phy in sequence This phy |
| 930 | * will never go link up and will not draw power |
| 931 | * the OEM parameters either configured the phy |
| 932 | * incorrectly for the PORT or it was never |
| 933 | * assigned to a PORT |
| 934 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 935 | return sci_controller_start_next_phy(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 939 | status = sci_phy_start(iphy); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 940 | |
| 941 | if (status == SCI_SUCCESS) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 942 | sci_mod_timer(&ihost->phy_timer, |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 943 | SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 944 | ihost->phy_startup_timer_pending = true; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 945 | } else { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 946 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 947 | "%s: Controller stop operation failed " |
| 948 | "to stop phy %d because of status " |
| 949 | "%d.\n", |
| 950 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 951 | ihost->phys[ihost->next_phy_to_start].phy_index, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 952 | status); |
| 953 | } |
| 954 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 955 | ihost->next_phy_to_start++; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | return status; |
| 959 | } |
| 960 | |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 961 | static void phy_startup_timeout(unsigned long data) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 962 | { |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 963 | struct sci_timer *tmr = (struct sci_timer *)data; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 964 | struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer); |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 965 | unsigned long flags; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 966 | enum sci_status status; |
| 967 | |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 968 | spin_lock_irqsave(&ihost->scic_lock, flags); |
| 969 | |
| 970 | if (tmr->cancel) |
| 971 | goto done; |
| 972 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 973 | ihost->phy_startup_timer_pending = false; |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 974 | |
| 975 | do { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 976 | status = sci_controller_start_next_phy(ihost); |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 977 | } while (status != SCI_SUCCESS); |
| 978 | |
| 979 | done: |
| 980 | spin_unlock_irqrestore(&ihost->scic_lock, flags); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 981 | } |
| 982 | |
Dan Williams | ac668c6 | 2011-06-07 18:50:55 -0700 | [diff] [blame] | 983 | static u16 isci_tci_active(struct isci_host *ihost) |
| 984 | { |
| 985 | return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS); |
| 986 | } |
| 987 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 988 | static enum sci_status sci_controller_start(struct isci_host *ihost, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 989 | u32 timeout) |
| 990 | { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 991 | enum sci_status result; |
| 992 | u16 index; |
| 993 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 994 | if (ihost->sm.current_state_id != SCIC_INITIALIZED) { |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 995 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 996 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 997 | return SCI_FAILURE_INVALID_STATE; |
| 998 | } |
| 999 | |
| 1000 | /* Build the TCi free pool */ |
Dan Williams | ac668c6 | 2011-06-07 18:50:55 -0700 | [diff] [blame] | 1001 | BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8); |
| 1002 | ihost->tci_head = 0; |
| 1003 | ihost->tci_tail = 0; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1004 | for (index = 0; index < ihost->task_context_entries; index++) |
Dan Williams | ac668c6 | 2011-06-07 18:50:55 -0700 | [diff] [blame] | 1005 | isci_tci_free(ihost, index); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1006 | |
| 1007 | /* Build the RNi free pool */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1008 | sci_remote_node_table_initialize(&ihost->available_remote_nodes, |
| 1009 | ihost->remote_node_entries); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1010 | |
| 1011 | /* |
| 1012 | * Before anything else lets make sure we will not be |
| 1013 | * interrupted by the hardware. |
| 1014 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1015 | sci_controller_disable_interrupts(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1016 | |
| 1017 | /* Enable the port task scheduler */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1018 | sci_controller_enable_port_task_scheduler(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1019 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1020 | /* Assign all the task entries to ihost physical function */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1021 | sci_controller_assign_task_entries(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1022 | |
| 1023 | /* Now initialize the completion queue */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1024 | sci_controller_initialize_completion_queue(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1025 | |
| 1026 | /* Initialize the unsolicited frame queue for use */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1027 | sci_controller_initialize_unsolicited_frame_queue(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1028 | |
| 1029 | /* Start all of the ports on this controller */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1030 | for (index = 0; index < ihost->logical_port_entries; index++) { |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 1031 | struct isci_port *iport = &ihost->ports[index]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1032 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1033 | result = sci_port_start(iport); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1034 | if (result) |
| 1035 | return result; |
| 1036 | } |
| 1037 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1038 | sci_controller_start_next_phy(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1039 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1040 | sci_mod_timer(&ihost->timer, timeout); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1041 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1042 | sci_change_state(&ihost->sm, SCIC_STARTING); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1043 | |
| 1044 | return SCI_SUCCESS; |
| 1045 | } |
| 1046 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1047 | void isci_host_scan_start(struct Scsi_Host *shost) |
| 1048 | { |
Dan Williams | 4393aa4 | 2011-03-31 13:10:44 -0700 | [diff] [blame] | 1049 | struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1050 | unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1051 | |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 1052 | set_bit(IHOST_START_PENDING, &ihost->flags); |
Edmund Nadolski | 77950f5 | 2011-02-18 09:25:09 -0800 | [diff] [blame] | 1053 | |
| 1054 | spin_lock_irq(&ihost->scic_lock); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1055 | sci_controller_start(ihost, tmo); |
| 1056 | sci_controller_enable_interrupts(ihost); |
Edmund Nadolski | 77950f5 | 2011-02-18 09:25:09 -0800 | [diff] [blame] | 1057 | spin_unlock_irq(&ihost->scic_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1058 | } |
| 1059 | |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 1060 | static void isci_host_stop_complete(struct isci_host *ihost) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1061 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1062 | sci_controller_disable_interrupts(ihost); |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 1063 | clear_bit(IHOST_STOP_PENDING, &ihost->flags); |
| 1064 | wake_up(&ihost->eventq); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1065 | } |
| 1066 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1067 | static void sci_controller_completion_handler(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1068 | { |
| 1069 | /* Empty out the completion queue */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1070 | if (sci_controller_completion_queue_has_entries(ihost)) |
| 1071 | sci_controller_process_completions(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1072 | |
| 1073 | /* Clear the interrupt and enable all interrupts again */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1074 | writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1075 | /* Could we write the value of SMU_ISR_COMPLETION? */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1076 | writel(0xFF000000, &ihost->smu_registers->interrupt_mask); |
| 1077 | writel(0, &ihost->smu_registers->interrupt_mask); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1080 | /** |
| 1081 | * isci_host_completion_routine() - This function is the delayed service |
| 1082 | * routine that calls the sci core library's completion handler. It's |
| 1083 | * scheduled as a tasklet from the interrupt service routine when interrupts |
| 1084 | * in use, or set as the timeout function in polled mode. |
| 1085 | * @data: This parameter specifies the ISCI host object |
| 1086 | * |
| 1087 | */ |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 1088 | void isci_host_completion_routine(unsigned long data) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1089 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1090 | struct isci_host *ihost = (struct isci_host *)data; |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1091 | struct list_head completed_request_list; |
| 1092 | struct list_head errored_request_list; |
| 1093 | struct list_head *current_position; |
| 1094 | struct list_head *next_position; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1095 | struct isci_request *request; |
| 1096 | struct isci_request *next_request; |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1097 | struct sas_task *task; |
Dan Williams | 9b4be52 | 2011-07-29 17:17:10 -0700 | [diff] [blame] | 1098 | u16 active; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1099 | |
| 1100 | INIT_LIST_HEAD(&completed_request_list); |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1101 | INIT_LIST_HEAD(&errored_request_list); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1102 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1103 | spin_lock_irq(&ihost->scic_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1104 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1105 | sci_controller_completion_handler(ihost); |
Dan Williams | c7ef403 | 2011-02-18 09:25:05 -0800 | [diff] [blame] | 1106 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1107 | /* Take the lists of completed I/Os from the host. */ |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1108 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1109 | list_splice_init(&ihost->requests_to_complete, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1110 | &completed_request_list); |
| 1111 | |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1112 | /* Take the list of errored I/Os from the host. */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1113 | list_splice_init(&ihost->requests_to_errorback, |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1114 | &errored_request_list); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1115 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1116 | spin_unlock_irq(&ihost->scic_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1117 | |
| 1118 | /* Process any completions in the lists. */ |
| 1119 | list_for_each_safe(current_position, next_position, |
| 1120 | &completed_request_list) { |
| 1121 | |
| 1122 | request = list_entry(current_position, struct isci_request, |
| 1123 | completed_node); |
| 1124 | task = isci_request_access_task(request); |
| 1125 | |
| 1126 | /* Normal notification (task_done) */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1127 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1128 | "%s: Normal - request/task = %p/%p\n", |
| 1129 | __func__, |
| 1130 | request, |
| 1131 | task); |
| 1132 | |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1133 | /* Return the task to libsas */ |
| 1134 | if (task != NULL) { |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1135 | |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1136 | task->lldd_task = NULL; |
| 1137 | if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) { |
| 1138 | |
| 1139 | /* If the task is already in the abort path, |
| 1140 | * the task_done callback cannot be called. |
| 1141 | */ |
| 1142 | task->task_done(task); |
| 1143 | } |
| 1144 | } |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 1145 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1146 | spin_lock_irq(&ihost->scic_lock); |
| 1147 | isci_free_tag(ihost, request->io_tag); |
| 1148 | spin_unlock_irq(&ihost->scic_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1149 | } |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1150 | list_for_each_entry_safe(request, next_request, &errored_request_list, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1151 | completed_node) { |
| 1152 | |
| 1153 | task = isci_request_access_task(request); |
| 1154 | |
| 1155 | /* Use sas_task_abort */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1156 | dev_warn(&ihost->pdev->dev, |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1157 | "%s: Error - request/task = %p/%p\n", |
| 1158 | __func__, |
| 1159 | request, |
| 1160 | task); |
| 1161 | |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1162 | if (task != NULL) { |
| 1163 | |
| 1164 | /* Put the task into the abort path if it's not there |
| 1165 | * already. |
| 1166 | */ |
| 1167 | if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) |
| 1168 | sas_task_abort(task); |
| 1169 | |
| 1170 | } else { |
| 1171 | /* This is a case where the request has completed with a |
| 1172 | * status such that it needed further target servicing, |
| 1173 | * but the sas_task reference has already been removed |
| 1174 | * from the request. Since it was errored, it was not |
| 1175 | * being aborted, so there is nothing to do except free |
| 1176 | * it. |
| 1177 | */ |
| 1178 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1179 | spin_lock_irq(&ihost->scic_lock); |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1180 | /* Remove the request from the remote device's list |
| 1181 | * of pending requests. |
| 1182 | */ |
| 1183 | list_del_init(&request->dev_node); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1184 | isci_free_tag(ihost, request->io_tag); |
| 1185 | spin_unlock_irq(&ihost->scic_lock); |
Jeff Skirvin | 11b00c1 | 2011-03-04 14:06:40 -0800 | [diff] [blame] | 1186 | } |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1187 | } |
| 1188 | |
Dan Williams | 9b4be52 | 2011-07-29 17:17:10 -0700 | [diff] [blame] | 1189 | /* the coalesence timeout doubles at each encoding step, so |
| 1190 | * update it based on the ilog2 value of the outstanding requests |
| 1191 | */ |
| 1192 | active = isci_tci_active(ihost); |
| 1193 | writel(SMU_ICC_GEN_VAL(NUMBER, active) | |
| 1194 | SMU_ICC_GEN_VAL(TIMER, ISCI_COALESCE_BASE + ilog2(active)), |
| 1195 | &ihost->smu_registers->interrupt_coalesce_control); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1196 | } |
| 1197 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1198 | /** |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1199 | * sci_controller_stop() - This method will stop an individual controller |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1200 | * object.This method will invoke the associated user callback upon |
| 1201 | * completion. The completion callback is called when the following |
| 1202 | * conditions are met: -# the method return status is SCI_SUCCESS. -# the |
| 1203 | * controller has been quiesced. This method will ensure that all IO |
| 1204 | * requests are quiesced, phys are stopped, and all additional operation by |
| 1205 | * the hardware is halted. |
| 1206 | * @controller: the handle to the controller object to stop. |
| 1207 | * @timeout: This parameter specifies the number of milliseconds in which the |
| 1208 | * stop operation should complete. |
| 1209 | * |
| 1210 | * The controller must be in the STARTED or STOPPED state. Indicate if the |
| 1211 | * controller stop method succeeded or failed in some way. SCI_SUCCESS if the |
| 1212 | * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the |
| 1213 | * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the |
| 1214 | * controller is not either in the STARTED or STOPPED states. |
| 1215 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1216 | static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1217 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1218 | if (ihost->sm.current_state_id != SCIC_READY) { |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 1219 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 1220 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1221 | return SCI_FAILURE_INVALID_STATE; |
| 1222 | } |
| 1223 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1224 | sci_mod_timer(&ihost->timer, timeout); |
| 1225 | sci_change_state(&ihost->sm, SCIC_STOPPING); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1226 | return SCI_SUCCESS; |
| 1227 | } |
| 1228 | |
| 1229 | /** |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1230 | * sci_controller_reset() - This method will reset the supplied core |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1231 | * controller regardless of the state of said controller. This operation is |
| 1232 | * considered destructive. In other words, all current operations are wiped |
| 1233 | * out. No IO completions for outstanding devices occur. Outstanding IO |
| 1234 | * requests are not aborted or completed at the actual remote device. |
| 1235 | * @controller: the handle to the controller object to reset. |
| 1236 | * |
| 1237 | * Indicate if the controller reset method succeeded or failed in some way. |
| 1238 | * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if |
| 1239 | * the controller reset operation is unable to complete. |
| 1240 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1241 | static enum sci_status sci_controller_reset(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1242 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1243 | switch (ihost->sm.current_state_id) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1244 | case SCIC_RESET: |
| 1245 | case SCIC_READY: |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 1246 | case SCIC_STOPPING: |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1247 | case SCIC_FAILED: |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1248 | /* |
| 1249 | * The reset operation is not a graceful cleanup, just |
| 1250 | * perform the state transition. |
| 1251 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1252 | sci_change_state(&ihost->sm, SCIC_RESETTING); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1253 | return SCI_SUCCESS; |
| 1254 | default: |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 1255 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 1256 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1257 | return SCI_FAILURE_INVALID_STATE; |
| 1258 | } |
| 1259 | } |
| 1260 | |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 1261 | static enum sci_status sci_controller_stop_phys(struct isci_host *ihost) |
| 1262 | { |
| 1263 | u32 index; |
| 1264 | enum sci_status status; |
| 1265 | enum sci_status phy_status; |
| 1266 | |
| 1267 | status = SCI_SUCCESS; |
| 1268 | |
| 1269 | for (index = 0; index < SCI_MAX_PHYS; index++) { |
| 1270 | phy_status = sci_phy_stop(&ihost->phys[index]); |
| 1271 | |
| 1272 | if (phy_status != SCI_SUCCESS && |
| 1273 | phy_status != SCI_FAILURE_INVALID_STATE) { |
| 1274 | status = SCI_FAILURE; |
| 1275 | |
| 1276 | dev_warn(&ihost->pdev->dev, |
| 1277 | "%s: Controller stop operation failed to stop " |
| 1278 | "phy %d because of status %d.\n", |
| 1279 | __func__, |
| 1280 | ihost->phys[index].phy_index, phy_status); |
| 1281 | } |
| 1282 | } |
| 1283 | |
| 1284 | return status; |
| 1285 | } |
| 1286 | |
| 1287 | |
| 1288 | /** |
| 1289 | * isci_host_deinit - shutdown frame reception and dma |
| 1290 | * @ihost: host to take down |
| 1291 | * |
| 1292 | * This is called in either the driver shutdown or the suspend path. In |
| 1293 | * the shutdown case libsas went through port teardown and normal device |
| 1294 | * removal (i.e. physical links stayed up to service scsi_device removal |
| 1295 | * commands). In the suspend case we disable the hardware without |
| 1296 | * notifying libsas of the link down events since we want libsas to |
| 1297 | * remember the domain across the suspend/resume cycle |
| 1298 | */ |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 1299 | void isci_host_deinit(struct isci_host *ihost) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1300 | { |
| 1301 | int i; |
| 1302 | |
Dan Williams | ad4f4c1 | 2011-09-01 21:18:31 -0700 | [diff] [blame] | 1303 | /* disable output data selects */ |
| 1304 | for (i = 0; i < isci_gpio_count(ihost); i++) |
| 1305 | writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]); |
| 1306 | |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 1307 | set_bit(IHOST_STOP_PENDING, &ihost->flags); |
Dan Williams | 7c40a80 | 2011-03-02 11:49:26 -0800 | [diff] [blame] | 1308 | |
| 1309 | spin_lock_irq(&ihost->scic_lock); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1310 | sci_controller_stop(ihost, SCIC_CONTROLLER_STOP_TIMEOUT); |
Dan Williams | 7c40a80 | 2011-03-02 11:49:26 -0800 | [diff] [blame] | 1311 | spin_unlock_irq(&ihost->scic_lock); |
| 1312 | |
Dan Williams | 0cf89d1 | 2011-02-18 09:25:07 -0800 | [diff] [blame] | 1313 | wait_for_stop(ihost); |
Dan Williams | ad4f4c1 | 2011-09-01 21:18:31 -0700 | [diff] [blame] | 1314 | |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 1315 | /* phy stop is after controller stop to allow port and device to |
| 1316 | * go idle before shutting down the phys, but the expectation is |
| 1317 | * that i/o has been shut off well before we reach this |
| 1318 | * function. |
| 1319 | */ |
| 1320 | sci_controller_stop_phys(ihost); |
| 1321 | |
Dan Williams | ad4f4c1 | 2011-09-01 21:18:31 -0700 | [diff] [blame] | 1322 | /* disable sgpio: where the above wait should give time for the |
| 1323 | * enclosure to sample the gpios going inactive |
| 1324 | */ |
| 1325 | writel(0, &ihost->scu_registers->peg0.sgpio.interface_control); |
| 1326 | |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 1327 | spin_lock_irq(&ihost->scic_lock); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1328 | sci_controller_reset(ihost); |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 1329 | spin_unlock_irq(&ihost->scic_lock); |
Edmund Nadolski | 5553ba2 | 2011-05-19 11:59:10 +0000 | [diff] [blame] | 1330 | |
| 1331 | /* Cancel any/all outstanding port timers */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1332 | for (i = 0; i < ihost->logical_port_entries; i++) { |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 1333 | struct isci_port *iport = &ihost->ports[i]; |
| 1334 | del_timer_sync(&iport->timer.timer); |
Edmund Nadolski | 5553ba2 | 2011-05-19 11:59:10 +0000 | [diff] [blame] | 1335 | } |
| 1336 | |
Edmund Nadolski | a628d47 | 2011-05-19 11:59:36 +0000 | [diff] [blame] | 1337 | /* Cancel any/all outstanding phy timers */ |
| 1338 | for (i = 0; i < SCI_MAX_PHYS; i++) { |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 1339 | struct isci_phy *iphy = &ihost->phys[i]; |
| 1340 | del_timer_sync(&iphy->sata_timer.timer); |
Edmund Nadolski | a628d47 | 2011-05-19 11:59:36 +0000 | [diff] [blame] | 1341 | } |
| 1342 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1343 | del_timer_sync(&ihost->port_agent.timer.timer); |
Edmund Nadolski | ac0eeb4 | 2011-05-19 20:00:51 -0700 | [diff] [blame] | 1344 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1345 | del_timer_sync(&ihost->power_control.timer.timer); |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1346 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1347 | del_timer_sync(&ihost->timer.timer); |
Edmund Nadolski | 6cb5853 | 2011-05-19 11:59:56 +0000 | [diff] [blame] | 1348 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1349 | del_timer_sync(&ihost->phy_timer.timer); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1350 | } |
| 1351 | |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 1352 | static void __iomem *scu_base(struct isci_host *isci_host) |
| 1353 | { |
| 1354 | struct pci_dev *pdev = isci_host->pdev; |
| 1355 | int id = isci_host->id; |
| 1356 | |
| 1357 | return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id; |
| 1358 | } |
| 1359 | |
| 1360 | static void __iomem *smu_base(struct isci_host *isci_host) |
| 1361 | { |
| 1362 | struct pci_dev *pdev = isci_host->pdev; |
| 1363 | int id = isci_host->id; |
| 1364 | |
| 1365 | return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id; |
| 1366 | } |
| 1367 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1368 | static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1369 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1370 | struct isci_host *ihost = container_of(sm, typeof(*ihost), sm); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1371 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1372 | sci_change_state(&ihost->sm, SCIC_RESET); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1373 | } |
| 1374 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1375 | static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1376 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1377 | struct isci_host *ihost = container_of(sm, typeof(*ihost), sm); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1378 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1379 | sci_del_timer(&ihost->timer); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | #define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853 |
| 1383 | #define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280 |
| 1384 | #define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000 |
| 1385 | #define INTERRUPT_COALESCE_NUMBER_MAX 256 |
| 1386 | #define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7 |
| 1387 | #define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28 |
| 1388 | |
| 1389 | /** |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1390 | * sci_controller_set_interrupt_coalescence() - This method allows the user to |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1391 | * configure the interrupt coalescence. |
| 1392 | * @controller: This parameter represents the handle to the controller object |
| 1393 | * for which its interrupt coalesce register is overridden. |
| 1394 | * @coalesce_number: Used to control the number of entries in the Completion |
| 1395 | * Queue before an interrupt is generated. If the number of entries exceed |
| 1396 | * this number, an interrupt will be generated. The valid range of the input |
| 1397 | * is [0, 256]. A setting of 0 results in coalescing being disabled. |
| 1398 | * @coalesce_timeout: Timeout value in microseconds. The valid range of the |
| 1399 | * input is [0, 2700000] . A setting of 0 is allowed and results in no |
| 1400 | * interrupt coalescing timeout. |
| 1401 | * |
| 1402 | * Indicate if the user successfully set the interrupt coalesce parameters. |
| 1403 | * SCI_SUCCESS The user successfully updated the interrutp coalescence. |
| 1404 | * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range. |
| 1405 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1406 | static enum sci_status |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1407 | sci_controller_set_interrupt_coalescence(struct isci_host *ihost, |
| 1408 | u32 coalesce_number, |
| 1409 | u32 coalesce_timeout) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1410 | { |
| 1411 | u8 timeout_encode = 0; |
| 1412 | u32 min = 0; |
| 1413 | u32 max = 0; |
| 1414 | |
| 1415 | /* Check if the input parameters fall in the range. */ |
| 1416 | if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX) |
| 1417 | return SCI_FAILURE_INVALID_PARAMETER_VALUE; |
| 1418 | |
| 1419 | /* |
| 1420 | * Defined encoding for interrupt coalescing timeout: |
| 1421 | * Value Min Max Units |
| 1422 | * ----- --- --- ----- |
| 1423 | * 0 - - Disabled |
| 1424 | * 1 13.3 20.0 ns |
| 1425 | * 2 26.7 40.0 |
| 1426 | * 3 53.3 80.0 |
| 1427 | * 4 106.7 160.0 |
| 1428 | * 5 213.3 320.0 |
| 1429 | * 6 426.7 640.0 |
| 1430 | * 7 853.3 1280.0 |
| 1431 | * 8 1.7 2.6 us |
| 1432 | * 9 3.4 5.1 |
| 1433 | * 10 6.8 10.2 |
| 1434 | * 11 13.7 20.5 |
| 1435 | * 12 27.3 41.0 |
| 1436 | * 13 54.6 81.9 |
| 1437 | * 14 109.2 163.8 |
| 1438 | * 15 218.5 327.7 |
| 1439 | * 16 436.9 655.4 |
| 1440 | * 17 873.8 1310.7 |
| 1441 | * 18 1.7 2.6 ms |
| 1442 | * 19 3.5 5.2 |
| 1443 | * 20 7.0 10.5 |
| 1444 | * 21 14.0 21.0 |
| 1445 | * 22 28.0 41.9 |
| 1446 | * 23 55.9 83.9 |
| 1447 | * 24 111.8 167.8 |
| 1448 | * 25 223.7 335.5 |
| 1449 | * 26 447.4 671.1 |
| 1450 | * 27 894.8 1342.2 |
| 1451 | * 28 1.8 2.7 s |
| 1452 | * Others Undefined */ |
| 1453 | |
| 1454 | /* |
| 1455 | * Use the table above to decide the encode of interrupt coalescing timeout |
| 1456 | * value for register writing. */ |
| 1457 | if (coalesce_timeout == 0) |
| 1458 | timeout_encode = 0; |
| 1459 | else{ |
| 1460 | /* make the timeout value in unit of (10 ns). */ |
| 1461 | coalesce_timeout = coalesce_timeout * 100; |
| 1462 | min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10; |
| 1463 | max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10; |
| 1464 | |
| 1465 | /* get the encode of timeout for register writing. */ |
| 1466 | for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN; |
| 1467 | timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX; |
| 1468 | timeout_encode++) { |
| 1469 | if (min <= coalesce_timeout && max > coalesce_timeout) |
| 1470 | break; |
| 1471 | else if (coalesce_timeout >= max && coalesce_timeout < min * 2 |
| 1472 | && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) { |
| 1473 | if ((coalesce_timeout - max) < (2 * min - coalesce_timeout)) |
| 1474 | break; |
| 1475 | else{ |
| 1476 | timeout_encode++; |
| 1477 | break; |
| 1478 | } |
| 1479 | } else { |
| 1480 | max = max * 2; |
| 1481 | min = min * 2; |
| 1482 | } |
| 1483 | } |
| 1484 | |
| 1485 | if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1) |
| 1486 | /* the value is out of range. */ |
| 1487 | return SCI_FAILURE_INVALID_PARAMETER_VALUE; |
| 1488 | } |
| 1489 | |
| 1490 | writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) | |
| 1491 | SMU_ICC_GEN_VAL(TIMER, timeout_encode), |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1492 | &ihost->smu_registers->interrupt_coalesce_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1493 | |
| 1494 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1495 | ihost->interrupt_coalesce_number = (u16)coalesce_number; |
| 1496 | ihost->interrupt_coalesce_timeout = coalesce_timeout / 100; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1497 | |
| 1498 | return SCI_SUCCESS; |
| 1499 | } |
| 1500 | |
| 1501 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1502 | static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1503 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1504 | struct isci_host *ihost = container_of(sm, typeof(*ihost), sm); |
Marcin Tomczak | e5cc6aa | 2012-01-27 11:14:50 -0800 | [diff] [blame] | 1505 | u32 val; |
| 1506 | |
| 1507 | /* enable clock gating for power control of the scu unit */ |
| 1508 | val = readl(&ihost->smu_registers->clock_gating_control); |
| 1509 | val &= ~(SMU_CGUCR_GEN_BIT(REGCLK_ENABLE) | |
| 1510 | SMU_CGUCR_GEN_BIT(TXCLK_ENABLE) | |
| 1511 | SMU_CGUCR_GEN_BIT(XCLK_ENABLE)); |
| 1512 | val |= SMU_CGUCR_GEN_BIT(IDLE_ENABLE); |
| 1513 | writel(val, &ihost->smu_registers->clock_gating_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1514 | |
| 1515 | /* set the default interrupt coalescence number and timeout value. */ |
Dan Williams | 9b4be52 | 2011-07-29 17:17:10 -0700 | [diff] [blame] | 1516 | sci_controller_set_interrupt_coalescence(ihost, 0, 0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1517 | } |
| 1518 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1519 | static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1520 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1521 | struct isci_host *ihost = container_of(sm, typeof(*ihost), sm); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1522 | |
| 1523 | /* disable interrupt coalescence. */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1524 | sci_controller_set_interrupt_coalescence(ihost, 0, 0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1525 | } |
| 1526 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1527 | static enum sci_status sci_controller_stop_ports(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1528 | { |
| 1529 | u32 index; |
| 1530 | enum sci_status port_status; |
| 1531 | enum sci_status status = SCI_SUCCESS; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1532 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1533 | for (index = 0; index < ihost->logical_port_entries; index++) { |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 1534 | struct isci_port *iport = &ihost->ports[index]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1535 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1536 | port_status = sci_port_stop(iport); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1537 | |
| 1538 | if ((port_status != SCI_SUCCESS) && |
| 1539 | (port_status != SCI_FAILURE_INVALID_STATE)) { |
| 1540 | status = SCI_FAILURE; |
| 1541 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1542 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1543 | "%s: Controller stop operation failed to " |
| 1544 | "stop port %d because of status %d.\n", |
| 1545 | __func__, |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 1546 | iport->logical_port_index, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1547 | port_status); |
| 1548 | } |
| 1549 | } |
| 1550 | |
| 1551 | return status; |
| 1552 | } |
| 1553 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1554 | static enum sci_status sci_controller_stop_devices(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1555 | { |
| 1556 | u32 index; |
| 1557 | enum sci_status status; |
| 1558 | enum sci_status device_status; |
| 1559 | |
| 1560 | status = SCI_SUCCESS; |
| 1561 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1562 | for (index = 0; index < ihost->remote_node_entries; index++) { |
| 1563 | if (ihost->device_table[index] != NULL) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1564 | /* / @todo What timeout value do we want to provide to this request? */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1565 | device_status = sci_remote_device_stop(ihost->device_table[index], 0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1566 | |
| 1567 | if ((device_status != SCI_SUCCESS) && |
| 1568 | (device_status != SCI_FAILURE_INVALID_STATE)) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1569 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1570 | "%s: Controller stop operation failed " |
| 1571 | "to stop device 0x%p because of " |
| 1572 | "status %d.\n", |
| 1573 | __func__, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1574 | ihost->device_table[index], device_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1575 | } |
| 1576 | } |
| 1577 | } |
| 1578 | |
| 1579 | return status; |
| 1580 | } |
| 1581 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1582 | static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1583 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1584 | struct isci_host *ihost = container_of(sm, typeof(*ihost), sm); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1585 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1586 | sci_controller_stop_devices(ihost); |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 1587 | sci_controller_stop_ports(ihost); |
| 1588 | |
| 1589 | if (!sci_controller_has_remote_devices_stopping(ihost)) |
| 1590 | isci_host_stop_complete(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1593 | static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1594 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1595 | struct isci_host *ihost = container_of(sm, typeof(*ihost), sm); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1596 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1597 | sci_del_timer(&ihost->timer); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1598 | } |
| 1599 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1600 | static void sci_controller_reset_hardware(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1601 | { |
| 1602 | /* Disable interrupts so we dont take any spurious interrupts */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1603 | sci_controller_disable_interrupts(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1604 | |
| 1605 | /* Reset the SCU */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1606 | writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1607 | |
| 1608 | /* Delay for 1ms to before clearing the CQP and UFQPR. */ |
| 1609 | udelay(1000); |
| 1610 | |
| 1611 | /* The write to the CQGR clears the CQP */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1612 | writel(0x00000000, &ihost->smu_registers->completion_queue_get); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1613 | |
| 1614 | /* The write to the UFQGP clears the UFQPR */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1615 | writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer); |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 1616 | |
| 1617 | /* clear all interrupts */ |
| 1618 | writel(~SMU_INTERRUPT_STATUS_RESERVED_MASK, &ihost->smu_registers->interrupt_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1619 | } |
| 1620 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1621 | static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1622 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1623 | struct isci_host *ihost = container_of(sm, typeof(*ihost), sm); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1624 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1625 | sci_controller_reset_hardware(ihost); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1626 | sci_change_state(&ihost->sm, SCIC_RESET); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1627 | } |
| 1628 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1629 | static const struct sci_base_state sci_controller_state_table[] = { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1630 | [SCIC_INITIAL] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1631 | .enter_state = sci_controller_initial_state_enter, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1632 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1633 | [SCIC_RESET] = {}, |
| 1634 | [SCIC_INITIALIZING] = {}, |
| 1635 | [SCIC_INITIALIZED] = {}, |
| 1636 | [SCIC_STARTING] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1637 | .exit_state = sci_controller_starting_state_exit, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1638 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1639 | [SCIC_READY] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1640 | .enter_state = sci_controller_ready_state_enter, |
| 1641 | .exit_state = sci_controller_ready_state_exit, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1642 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1643 | [SCIC_RESETTING] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1644 | .enter_state = sci_controller_resetting_state_enter, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1645 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1646 | [SCIC_STOPPING] = { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1647 | .enter_state = sci_controller_stopping_state_enter, |
| 1648 | .exit_state = sci_controller_stopping_state_exit, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1649 | }, |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1650 | [SCIC_FAILED] = {} |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1651 | }; |
| 1652 | |
Edmund Nadolski | 6cb5853 | 2011-05-19 11:59:56 +0000 | [diff] [blame] | 1653 | static void controller_timeout(unsigned long data) |
| 1654 | { |
| 1655 | struct sci_timer *tmr = (struct sci_timer *)data; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1656 | struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer); |
| 1657 | struct sci_base_state_machine *sm = &ihost->sm; |
Edmund Nadolski | 6cb5853 | 2011-05-19 11:59:56 +0000 | [diff] [blame] | 1658 | unsigned long flags; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1659 | |
Edmund Nadolski | 6cb5853 | 2011-05-19 11:59:56 +0000 | [diff] [blame] | 1660 | spin_lock_irqsave(&ihost->scic_lock, flags); |
| 1661 | |
| 1662 | if (tmr->cancel) |
| 1663 | goto done; |
| 1664 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1665 | if (sm->current_state_id == SCIC_STARTING) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1666 | sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT); |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 1667 | else if (sm->current_state_id == SCIC_STOPPING) { |
| 1668 | sci_change_state(sm, SCIC_FAILED); |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 1669 | isci_host_stop_complete(ihost); |
Edmund Nadolski | 6cb5853 | 2011-05-19 11:59:56 +0000 | [diff] [blame] | 1670 | } else /* / @todo Now what do we want to do in this case? */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1671 | dev_err(&ihost->pdev->dev, |
Edmund Nadolski | 6cb5853 | 2011-05-19 11:59:56 +0000 | [diff] [blame] | 1672 | "%s: Controller timer fired when controller was not " |
| 1673 | "in a state being timed.\n", |
| 1674 | __func__); |
| 1675 | |
| 1676 | done: |
| 1677 | spin_unlock_irqrestore(&ihost->scic_lock, flags); |
| 1678 | } |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1679 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1680 | static enum sci_status sci_controller_construct(struct isci_host *ihost, |
| 1681 | void __iomem *scu_base, |
| 1682 | void __iomem *smu_base) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1683 | { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1684 | u8 i; |
| 1685 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1686 | sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1687 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1688 | ihost->scu_registers = scu_base; |
| 1689 | ihost->smu_registers = smu_base; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1690 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1691 | sci_port_configuration_agent_construct(&ihost->port_agent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1692 | |
| 1693 | /* Construct the ports for this controller */ |
| 1694 | for (i = 0; i < SCI_MAX_PORTS; i++) |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1695 | sci_port_construct(&ihost->ports[i], i, ihost); |
| 1696 | sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1697 | |
| 1698 | /* Construct the phys for this controller */ |
| 1699 | for (i = 0; i < SCI_MAX_PHYS; i++) { |
| 1700 | /* Add all the PHYs to the dummy port */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1701 | sci_phy_construct(&ihost->phys[i], |
| 1702 | &ihost->ports[SCI_MAX_PORTS], i); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1703 | } |
| 1704 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1705 | ihost->invalid_phy_mask = 0; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1706 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1707 | sci_init_timer(&ihost->timer, controller_timeout); |
Edmund Nadolski | 6cb5853 | 2011-05-19 11:59:56 +0000 | [diff] [blame] | 1708 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1709 | return sci_controller_reset(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1710 | } |
| 1711 | |
Dave Jiang | 594e566 | 2012-01-04 01:32:44 -0800 | [diff] [blame] | 1712 | int sci_oem_parameters_validate(struct sci_oem_params *oem, u8 version) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1713 | { |
| 1714 | int i; |
| 1715 | |
| 1716 | for (i = 0; i < SCI_MAX_PORTS; i++) |
| 1717 | if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX) |
| 1718 | return -EINVAL; |
| 1719 | |
| 1720 | for (i = 0; i < SCI_MAX_PHYS; i++) |
| 1721 | if (oem->phys[i].sas_address.high == 0 && |
| 1722 | oem->phys[i].sas_address.low == 0) |
| 1723 | return -EINVAL; |
| 1724 | |
| 1725 | if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) { |
| 1726 | for (i = 0; i < SCI_MAX_PHYS; i++) |
| 1727 | if (oem->ports[i].phy_mask != 0) |
| 1728 | return -EINVAL; |
| 1729 | } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) { |
| 1730 | u8 phy_mask = 0; |
| 1731 | |
| 1732 | for (i = 0; i < SCI_MAX_PHYS; i++) |
| 1733 | phy_mask |= oem->ports[i].phy_mask; |
| 1734 | |
| 1735 | if (phy_mask == 0) |
| 1736 | return -EINVAL; |
| 1737 | } else |
| 1738 | return -EINVAL; |
| 1739 | |
Andrzej Jakowski | 7000f7c | 2011-10-27 15:05:42 -0700 | [diff] [blame] | 1740 | if (oem->controller.max_concurr_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT || |
| 1741 | oem->controller.max_concurr_spin_up < 1) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1742 | return -EINVAL; |
| 1743 | |
Dave Jiang | 594e566 | 2012-01-04 01:32:44 -0800 | [diff] [blame] | 1744 | if (oem->controller.do_enable_ssc) { |
| 1745 | if (version < ISCI_ROM_VER_1_1 && oem->controller.do_enable_ssc != 1) |
| 1746 | return -EINVAL; |
| 1747 | |
| 1748 | if (version >= ISCI_ROM_VER_1_1) { |
| 1749 | u8 test = oem->controller.ssc_sata_tx_spread_level; |
| 1750 | |
| 1751 | switch (test) { |
| 1752 | case 0: |
| 1753 | case 2: |
| 1754 | case 3: |
| 1755 | case 6: |
| 1756 | case 7: |
| 1757 | break; |
| 1758 | default: |
| 1759 | return -EINVAL; |
| 1760 | } |
| 1761 | |
| 1762 | test = oem->controller.ssc_sas_tx_spread_level; |
| 1763 | if (oem->controller.ssc_sas_tx_type == 0) { |
| 1764 | switch (test) { |
| 1765 | case 0: |
| 1766 | case 2: |
| 1767 | case 3: |
| 1768 | break; |
| 1769 | default: |
| 1770 | return -EINVAL; |
| 1771 | } |
| 1772 | } else if (oem->controller.ssc_sas_tx_type == 1) { |
| 1773 | switch (test) { |
| 1774 | case 0: |
| 1775 | case 3: |
| 1776 | case 6: |
| 1777 | break; |
| 1778 | default: |
| 1779 | return -EINVAL; |
| 1780 | } |
| 1781 | } |
| 1782 | } |
| 1783 | } |
| 1784 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1785 | return 0; |
| 1786 | } |
| 1787 | |
Andrzej Jakowski | 7000f7c | 2011-10-27 15:05:42 -0700 | [diff] [blame] | 1788 | static u8 max_spin_up(struct isci_host *ihost) |
| 1789 | { |
| 1790 | if (ihost->user_parameters.max_concurr_spinup) |
| 1791 | return min_t(u8, ihost->user_parameters.max_concurr_spinup, |
| 1792 | MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT); |
| 1793 | else |
| 1794 | return min_t(u8, ihost->oem_parameters.controller.max_concurr_spin_up, |
| 1795 | MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT); |
| 1796 | } |
| 1797 | |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1798 | static void power_control_timeout(unsigned long data) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1799 | { |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1800 | struct sci_timer *tmr = (struct sci_timer *)data; |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1801 | struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer); |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 1802 | struct isci_phy *iphy; |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1803 | unsigned long flags; |
| 1804 | u8 i; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1805 | |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1806 | spin_lock_irqsave(&ihost->scic_lock, flags); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1807 | |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1808 | if (tmr->cancel) |
| 1809 | goto done; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1810 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1811 | ihost->power_control.phys_granted_power = 0; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1812 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1813 | if (ihost->power_control.phys_waiting == 0) { |
| 1814 | ihost->power_control.timer_started = false; |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1815 | goto done; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1816 | } |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1817 | |
| 1818 | for (i = 0; i < SCI_MAX_PHYS; i++) { |
| 1819 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1820 | if (ihost->power_control.phys_waiting == 0) |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1821 | break; |
| 1822 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1823 | iphy = ihost->power_control.requesters[i]; |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 1824 | if (iphy == NULL) |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1825 | continue; |
| 1826 | |
Andrzej Jakowski | 7000f7c | 2011-10-27 15:05:42 -0700 | [diff] [blame] | 1827 | if (ihost->power_control.phys_granted_power >= max_spin_up(ihost)) |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1828 | break; |
| 1829 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1830 | ihost->power_control.requesters[i] = NULL; |
| 1831 | ihost->power_control.phys_waiting--; |
| 1832 | ihost->power_control.phys_granted_power++; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1833 | sci_phy_consume_power_handler(iphy); |
Marcin Tomczak | be77834 | 2012-01-04 01:33:31 -0800 | [diff] [blame] | 1834 | |
Dan Williams | c79dd80 | 2012-02-01 00:44:14 -0800 | [diff] [blame] | 1835 | if (iphy->protocol == SAS_PROTOCOL_SSP) { |
Marcin Tomczak | be77834 | 2012-01-04 01:33:31 -0800 | [diff] [blame] | 1836 | u8 j; |
| 1837 | |
| 1838 | for (j = 0; j < SCI_MAX_PHYS; j++) { |
| 1839 | struct isci_phy *requester = ihost->power_control.requesters[j]; |
| 1840 | |
| 1841 | /* |
| 1842 | * Search the power_control queue to see if there are other phys |
| 1843 | * attached to the same remote device. If found, take all of |
| 1844 | * them out of await_sas_power state. |
| 1845 | */ |
| 1846 | if (requester != NULL && requester != iphy) { |
| 1847 | u8 other = memcmp(requester->frame_rcvd.iaf.sas_addr, |
| 1848 | iphy->frame_rcvd.iaf.sas_addr, |
| 1849 | sizeof(requester->frame_rcvd.iaf.sas_addr)); |
| 1850 | |
| 1851 | if (other == 0) { |
| 1852 | ihost->power_control.requesters[j] = NULL; |
| 1853 | ihost->power_control.phys_waiting--; |
| 1854 | sci_phy_consume_power_handler(requester); |
| 1855 | } |
| 1856 | } |
| 1857 | } |
| 1858 | } |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1859 | } |
| 1860 | |
| 1861 | /* |
| 1862 | * It doesn't matter if the power list is empty, we need to start the |
| 1863 | * timer in case another phy becomes ready. |
| 1864 | */ |
| 1865 | sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1866 | ihost->power_control.timer_started = true; |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1867 | |
| 1868 | done: |
| 1869 | spin_unlock_irqrestore(&ihost->scic_lock, flags); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1870 | } |
| 1871 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1872 | void sci_controller_power_control_queue_insert(struct isci_host *ihost, |
| 1873 | struct isci_phy *iphy) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1874 | { |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 1875 | BUG_ON(iphy == NULL); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1876 | |
Andrzej Jakowski | 7000f7c | 2011-10-27 15:05:42 -0700 | [diff] [blame] | 1877 | if (ihost->power_control.phys_granted_power < max_spin_up(ihost)) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1878 | ihost->power_control.phys_granted_power++; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1879 | sci_phy_consume_power_handler(iphy); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1880 | |
| 1881 | /* |
| 1882 | * stop and start the power_control timer. When the timer fires, the |
| 1883 | * no_of_phys_granted_power will be set to 0 |
| 1884 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1885 | if (ihost->power_control.timer_started) |
| 1886 | sci_del_timer(&ihost->power_control.timer); |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1887 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1888 | sci_mod_timer(&ihost->power_control.timer, |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1889 | SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1890 | ihost->power_control.timer_started = true; |
Edmund Nadolski | 0473661 | 2011-05-19 20:17:47 -0700 | [diff] [blame] | 1891 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1892 | } else { |
Marcin Tomczak | be77834 | 2012-01-04 01:33:31 -0800 | [diff] [blame] | 1893 | /* |
| 1894 | * There are phys, attached to the same sas address as this phy, are |
| 1895 | * already in READY state, this phy don't need wait. |
| 1896 | */ |
| 1897 | u8 i; |
| 1898 | struct isci_phy *current_phy; |
| 1899 | |
| 1900 | for (i = 0; i < SCI_MAX_PHYS; i++) { |
| 1901 | u8 other; |
| 1902 | current_phy = &ihost->phys[i]; |
| 1903 | |
| 1904 | other = memcmp(current_phy->frame_rcvd.iaf.sas_addr, |
| 1905 | iphy->frame_rcvd.iaf.sas_addr, |
| 1906 | sizeof(current_phy->frame_rcvd.iaf.sas_addr)); |
| 1907 | |
| 1908 | if (current_phy->sm.current_state_id == SCI_PHY_READY && |
Dan Williams | c79dd80 | 2012-02-01 00:44:14 -0800 | [diff] [blame] | 1909 | current_phy->protocol == SAS_PROTOCOL_SSP && |
Marcin Tomczak | be77834 | 2012-01-04 01:33:31 -0800 | [diff] [blame] | 1910 | other == 0) { |
| 1911 | sci_phy_consume_power_handler(iphy); |
| 1912 | break; |
| 1913 | } |
| 1914 | } |
| 1915 | |
| 1916 | if (i == SCI_MAX_PHYS) { |
| 1917 | /* Add the phy in the waiting list */ |
| 1918 | ihost->power_control.requesters[iphy->phy_index] = iphy; |
| 1919 | ihost->power_control.phys_waiting++; |
| 1920 | } |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1921 | } |
| 1922 | } |
| 1923 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1924 | void sci_controller_power_control_queue_remove(struct isci_host *ihost, |
| 1925 | struct isci_phy *iphy) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1926 | { |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 1927 | BUG_ON(iphy == NULL); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1928 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1929 | if (ihost->power_control.requesters[iphy->phy_index]) |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1930 | ihost->power_control.phys_waiting--; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1931 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 1932 | ihost->power_control.requesters[iphy->phy_index] = NULL; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1933 | } |
| 1934 | |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 1935 | static int is_long_cable(int phy, unsigned char selection_byte) |
| 1936 | { |
Jeff Skirvin | 9fee607 | 2012-01-04 01:32:49 -0800 | [diff] [blame] | 1937 | return !!(selection_byte & (1 << phy)); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 1938 | } |
| 1939 | |
| 1940 | static int is_medium_cable(int phy, unsigned char selection_byte) |
| 1941 | { |
Jeff Skirvin | 9fee607 | 2012-01-04 01:32:49 -0800 | [diff] [blame] | 1942 | return !!(selection_byte & (1 << (phy + 4))); |
| 1943 | } |
| 1944 | |
| 1945 | static enum cable_selections decode_selection_byte( |
| 1946 | int phy, |
| 1947 | unsigned char selection_byte) |
| 1948 | { |
| 1949 | return ((selection_byte & (1 << phy)) ? 1 : 0) |
| 1950 | + (selection_byte & (1 << (phy + 4)) ? 2 : 0); |
| 1951 | } |
| 1952 | |
| 1953 | static unsigned char *to_cable_select(struct isci_host *ihost) |
| 1954 | { |
| 1955 | if (is_cable_select_overridden()) |
| 1956 | return ((unsigned char *)&cable_selection_override) |
| 1957 | + ihost->id; |
| 1958 | else |
| 1959 | return &ihost->oem_parameters.controller.cable_selection_mask; |
| 1960 | } |
| 1961 | |
| 1962 | enum cable_selections decode_cable_selection(struct isci_host *ihost, int phy) |
| 1963 | { |
| 1964 | return decode_selection_byte(phy, *to_cable_select(ihost)); |
| 1965 | } |
| 1966 | |
| 1967 | char *lookup_cable_names(enum cable_selections selection) |
| 1968 | { |
| 1969 | static char *cable_names[] = { |
| 1970 | [short_cable] = "short", |
| 1971 | [long_cable] = "long", |
| 1972 | [medium_cable] = "medium", |
| 1973 | [undefined_cable] = "<undefined, assumed long>" /* bit 0==1 */ |
| 1974 | }; |
| 1975 | return (selection <= undefined_cable) ? cable_names[selection] |
| 1976 | : cable_names[undefined_cable]; |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 1977 | } |
| 1978 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1979 | #define AFE_REGISTER_WRITE_DELAY 10 |
| 1980 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1981 | static void sci_controller_afe_initialization(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1982 | { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 1983 | struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 1984 | const struct sci_oem_params *oem = &ihost->oem_parameters; |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 1985 | struct pci_dev *pdev = ihost->pdev; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1986 | u32 afe_status; |
| 1987 | u32 phy_id; |
Jeff Skirvin | 9fee607 | 2012-01-04 01:32:49 -0800 | [diff] [blame] | 1988 | unsigned char cable_selection_mask = *to_cable_select(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1989 | |
| 1990 | /* Clear DFX Status registers */ |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 1991 | writel(0x0081000f, &afe->afe_dfx_master_control0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1992 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 1993 | |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 1994 | if (is_b0(pdev) || is_c0(pdev) || is_c1(pdev)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1995 | /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 1996 | * Timer, PM Stagger Timer |
| 1997 | */ |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 1998 | writel(0x0007FFFF, &afe->afe_pmsn_master_control2); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 1999 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2000 | } |
| 2001 | |
| 2002 | /* Configure bias currents to normal */ |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2003 | if (is_a2(pdev)) |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2004 | writel(0x00005A00, &afe->afe_bias_control); |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2005 | else if (is_b0(pdev) || is_c0(pdev)) |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2006 | writel(0x00005F00, &afe->afe_bias_control); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2007 | else if (is_c1(pdev)) |
| 2008 | writel(0x00005500, &afe->afe_bias_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2009 | |
| 2010 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2011 | |
| 2012 | /* Enable PLL */ |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2013 | if (is_a2(pdev)) |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2014 | writel(0x80040908, &afe->afe_pll_control0); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2015 | else if (is_b0(pdev) || is_c0(pdev)) |
| 2016 | writel(0x80040A08, &afe->afe_pll_control0); |
| 2017 | else if (is_c1(pdev)) { |
| 2018 | writel(0x80000B08, &afe->afe_pll_control0); |
| 2019 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2020 | writel(0x00000B08, &afe->afe_pll_control0); |
| 2021 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2022 | writel(0x80000B08, &afe->afe_pll_control0); |
| 2023 | } |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2024 | |
| 2025 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2026 | |
| 2027 | /* Wait for the PLL to lock */ |
| 2028 | do { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2029 | afe_status = readl(&afe->afe_common_block_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2030 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2031 | } while ((afe_status & 0x00001000) == 0); |
| 2032 | |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2033 | if (is_a2(pdev)) { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2034 | /* Shorten SAS SNW lock time (RxLock timer value from 76 |
| 2035 | * us to 50 us) |
| 2036 | */ |
| 2037 | writel(0x7bcc96ad, &afe->afe_pmsn_master_control0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2038 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2039 | } |
| 2040 | |
| 2041 | for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2042 | struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_id]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2043 | const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id]; |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2044 | int cable_length_long = |
| 2045 | is_long_cable(phy_id, cable_selection_mask); |
| 2046 | int cable_length_medium = |
| 2047 | is_medium_cable(phy_id, cable_selection_mask); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2048 | |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2049 | if (is_a2(pdev)) { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2050 | /* All defaults, except the Receive Word |
| 2051 | * Alignament/Comma Detect Enable....(0xe800) |
| 2052 | */ |
| 2053 | writel(0x00004512, &xcvr->afe_xcvr_control0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2054 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2055 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2056 | writel(0x0050100F, &xcvr->afe_xcvr_control1); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2057 | udelay(AFE_REGISTER_WRITE_DELAY); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2058 | } else if (is_b0(pdev)) { |
| 2059 | /* Configure transmitter SSC parameters */ |
| 2060 | writel(0x00030000, &xcvr->afe_tx_ssc_control); |
| 2061 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2062 | } else if (is_c0(pdev)) { |
| 2063 | /* Configure transmitter SSC parameters */ |
| 2064 | writel(0x00010202, &xcvr->afe_tx_ssc_control); |
| 2065 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2066 | |
| 2067 | /* All defaults, except the Receive Word |
| 2068 | * Alignament/Comma Detect Enable....(0xe800) |
| 2069 | */ |
| 2070 | writel(0x00014500, &xcvr->afe_xcvr_control0); |
| 2071 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2072 | } else if (is_c1(pdev)) { |
| 2073 | /* Configure transmitter SSC parameters */ |
| 2074 | writel(0x00010202, &xcvr->afe_tx_ssc_control); |
| 2075 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2076 | |
| 2077 | /* All defaults, except the Receive Word |
| 2078 | * Alignament/Comma Detect Enable....(0xe800) |
| 2079 | */ |
| 2080 | writel(0x0001C500, &xcvr->afe_xcvr_control0); |
| 2081 | udelay(AFE_REGISTER_WRITE_DELAY); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2082 | } |
| 2083 | |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2084 | /* Power up TX and RX out from power down (PWRDNTX and |
| 2085 | * PWRDNRX) & increase TX int & ext bias 20%....(0xe85c) |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2086 | */ |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2087 | if (is_a2(pdev)) |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2088 | writel(0x000003F0, &xcvr->afe_channel_control); |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2089 | else if (is_b0(pdev)) { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2090 | writel(0x000003D7, &xcvr->afe_channel_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2091 | udelay(AFE_REGISTER_WRITE_DELAY); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2092 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2093 | writel(0x000003D4, &xcvr->afe_channel_control); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2094 | } else if (is_c0(pdev)) { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2095 | writel(0x000001E7, &xcvr->afe_channel_control); |
Adam Gruchala | dbb0743 | 2011-06-01 22:31:03 +0000 | [diff] [blame] | 2096 | udelay(AFE_REGISTER_WRITE_DELAY); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2097 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2098 | writel(0x000001E4, &xcvr->afe_channel_control); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2099 | } else if (is_c1(pdev)) { |
| 2100 | writel(cable_length_long ? 0x000002F7 : 0x000001F7, |
| 2101 | &xcvr->afe_channel_control); |
| 2102 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2103 | |
| 2104 | writel(cable_length_long ? 0x000002F4 : 0x000001F4, |
| 2105 | &xcvr->afe_channel_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2106 | } |
| 2107 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2108 | |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2109 | if (is_a2(pdev)) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2110 | /* Enable TX equalization (0xe824) */ |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2111 | writel(0x00040000, &xcvr->afe_tx_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2112 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2113 | } |
| 2114 | |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2115 | if (is_a2(pdev) || is_b0(pdev)) |
| 2116 | /* RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0, |
| 2117 | * TPD=0x0(TX Power On), RDD=0x0(RX Detect |
| 2118 | * Enabled) ....(0xe800) |
| 2119 | */ |
| 2120 | writel(0x00004100, &xcvr->afe_xcvr_control0); |
| 2121 | else if (is_c0(pdev)) |
| 2122 | writel(0x00014100, &xcvr->afe_xcvr_control0); |
| 2123 | else if (is_c1(pdev)) |
| 2124 | writel(0x0001C100, &xcvr->afe_xcvr_control0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2125 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2126 | |
| 2127 | /* Leave DFE/FFE on */ |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2128 | if (is_a2(pdev)) |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2129 | writel(0x3F11103F, &xcvr->afe_rx_ssc_control0); |
Dan Williams | dc00c8b | 2011-07-01 11:41:21 -0700 | [diff] [blame] | 2130 | else if (is_b0(pdev)) { |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2131 | writel(0x3F11103F, &xcvr->afe_rx_ssc_control0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2132 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2133 | /* Enable TX equalization (0xe824) */ |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2134 | writel(0x00040000, &xcvr->afe_tx_control); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2135 | } else if (is_c0(pdev)) { |
| 2136 | writel(0x01400C0F, &xcvr->afe_rx_ssc_control1); |
Adam Gruchala | dbb0743 | 2011-06-01 22:31:03 +0000 | [diff] [blame] | 2137 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2138 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2139 | writel(0x3F6F103F, &xcvr->afe_rx_ssc_control0); |
Adam Gruchala | dbb0743 | 2011-06-01 22:31:03 +0000 | [diff] [blame] | 2140 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2141 | |
| 2142 | /* Enable TX equalization (0xe824) */ |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2143 | writel(0x00040000, &xcvr->afe_tx_control); |
Jeff Skirvin | afd13a1 | 2012-01-04 01:32:39 -0800 | [diff] [blame] | 2144 | } else if (is_c1(pdev)) { |
| 2145 | writel(cable_length_long ? 0x01500C0C : |
| 2146 | cable_length_medium ? 0x01400C0D : 0x02400C0D, |
| 2147 | &xcvr->afe_xcvr_control1); |
| 2148 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2149 | |
| 2150 | writel(0x000003E0, &xcvr->afe_dfx_rx_control1); |
| 2151 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2152 | |
| 2153 | writel(cable_length_long ? 0x33091C1F : |
| 2154 | cable_length_medium ? 0x3315181F : 0x2B17161F, |
| 2155 | &xcvr->afe_rx_ssc_control0); |
| 2156 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2157 | |
| 2158 | /* Enable TX equalization (0xe824) */ |
| 2159 | writel(0x00040000, &xcvr->afe_tx_control); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2160 | } |
Adam Gruchala | dbb0743 | 2011-06-01 22:31:03 +0000 | [diff] [blame] | 2161 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2162 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2163 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2164 | writel(oem_phy->afe_tx_amp_control0, &xcvr->afe_tx_amp_control0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2165 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2166 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2167 | writel(oem_phy->afe_tx_amp_control1, &xcvr->afe_tx_amp_control1); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2168 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2169 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2170 | writel(oem_phy->afe_tx_amp_control2, &xcvr->afe_tx_amp_control2); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2171 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2172 | |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2173 | writel(oem_phy->afe_tx_amp_control3, &xcvr->afe_tx_amp_control3); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2174 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2175 | } |
| 2176 | |
| 2177 | /* Transfer control to the PEs */ |
Dan Williams | 2e5da88 | 2012-01-04 01:32:34 -0800 | [diff] [blame] | 2178 | writel(0x00010f00, &afe->afe_dfx_master_control0); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2179 | udelay(AFE_REGISTER_WRITE_DELAY); |
| 2180 | } |
| 2181 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2182 | static void sci_controller_initialize_power_control(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2183 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2184 | sci_init_timer(&ihost->power_control.timer, power_control_timeout); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2185 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2186 | memset(ihost->power_control.requesters, 0, |
| 2187 | sizeof(ihost->power_control.requesters)); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2188 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2189 | ihost->power_control.phys_waiting = 0; |
| 2190 | ihost->power_control.phys_granted_power = 0; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2191 | } |
| 2192 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2193 | static enum sci_status sci_controller_initialize(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2194 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2195 | struct sci_base_state_machine *sm = &ihost->sm; |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2196 | enum sci_status result = SCI_FAILURE; |
| 2197 | unsigned long i, state, val; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2198 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2199 | if (ihost->sm.current_state_id != SCIC_RESET) { |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 2200 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 2201 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2202 | return SCI_FAILURE_INVALID_STATE; |
| 2203 | } |
| 2204 | |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2205 | sci_change_state(sm, SCIC_INITIALIZING); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2206 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2207 | sci_init_timer(&ihost->phy_timer, phy_startup_timeout); |
Edmund Nadolski | bb3dbdf | 2011-05-19 20:26:02 -0700 | [diff] [blame] | 2208 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2209 | ihost->next_phy_to_start = 0; |
| 2210 | ihost->phy_startup_timer_pending = false; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2211 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2212 | sci_controller_initialize_power_control(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2213 | |
| 2214 | /* |
| 2215 | * There is nothing to do here for B0 since we do not have to |
| 2216 | * program the AFE registers. |
| 2217 | * / @todo The AFE settings are supposed to be correct for the B0 but |
| 2218 | * / presently they seem to be wrong. */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2219 | sci_controller_afe_initialization(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2220 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2221 | |
| 2222 | /* Take the hardware out of reset */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2223 | writel(0, &ihost->smu_registers->soft_reset_control); |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2224 | |
| 2225 | /* |
| 2226 | * / @todo Provide meaningfull error code for hardware failure |
| 2227 | * result = SCI_FAILURE_CONTROLLER_HARDWARE; */ |
| 2228 | for (i = 100; i >= 1; i--) { |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2229 | u32 status; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2230 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2231 | /* Loop until the hardware reports success */ |
| 2232 | udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2233 | status = readl(&ihost->smu_registers->control_status); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2234 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2235 | if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED) |
| 2236 | break; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2237 | } |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2238 | if (i == 0) |
| 2239 | goto out; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2240 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2241 | /* |
| 2242 | * Determine what are the actaul device capacities that the |
| 2243 | * hardware will support */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2244 | val = readl(&ihost->smu_registers->device_context_capacity); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2245 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2246 | /* Record the smaller of the two capacity values */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2247 | ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS); |
| 2248 | ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS); |
| 2249 | ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2250 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2251 | /* |
| 2252 | * Make all PEs that are unassigned match up with the |
| 2253 | * logical ports |
| 2254 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2255 | for (i = 0; i < ihost->logical_port_entries; i++) { |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2256 | struct scu_port_task_scheduler_group_registers __iomem |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2257 | *ptsg = &ihost->scu_registers->peg0.ptsg; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2258 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2259 | writel(i, &ptsg->protocol_engine[i]); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2260 | } |
| 2261 | |
| 2262 | /* Initialize hardware PCI Relaxed ordering in DMA engines */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2263 | val = readl(&ihost->scu_registers->sdma.pdma_configuration); |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2264 | val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2265 | writel(val, &ihost->scu_registers->sdma.pdma_configuration); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2266 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2267 | val = readl(&ihost->scu_registers->sdma.cdma_configuration); |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2268 | val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2269 | writel(val, &ihost->scu_registers->sdma.cdma_configuration); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2270 | |
| 2271 | /* |
| 2272 | * Initialize the PHYs before the PORTs because the PHY registers |
| 2273 | * are accessed during the port initialization. |
| 2274 | */ |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2275 | for (i = 0; i < SCI_MAX_PHYS; i++) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2276 | result = sci_phy_initialize(&ihost->phys[i], |
| 2277 | &ihost->scu_registers->peg0.pe[i].tl, |
| 2278 | &ihost->scu_registers->peg0.pe[i].ll); |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2279 | if (result != SCI_SUCCESS) |
| 2280 | goto out; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2281 | } |
| 2282 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2283 | for (i = 0; i < ihost->logical_port_entries; i++) { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2284 | struct isci_port *iport = &ihost->ports[i]; |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2285 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2286 | iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i]; |
| 2287 | iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0]; |
| 2288 | iport->viit_registers = &ihost->scu_registers->peg0.viit[i]; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2289 | } |
| 2290 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2291 | result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2292 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2293 | out: |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2294 | /* Advance the controller state machine */ |
| 2295 | if (result == SCI_SUCCESS) |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2296 | state = SCIC_INITIALIZED; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2297 | else |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2298 | state = SCIC_FAILED; |
| 2299 | sci_change_state(sm, state); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2300 | |
| 2301 | return result; |
| 2302 | } |
| 2303 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2304 | static int sci_controller_dma_alloc(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2305 | { |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2306 | struct device *dev = &ihost->pdev->dev; |
| 2307 | size_t size; |
| 2308 | int i; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2309 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2310 | /* detect re-initialization */ |
| 2311 | if (ihost->completion_queue) |
| 2312 | return 0; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2313 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2314 | size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32); |
| 2315 | ihost->completion_queue = dmam_alloc_coherent(dev, size, &ihost->cq_dma, |
| 2316 | GFP_KERNEL); |
| 2317 | if (!ihost->completion_queue) |
| 2318 | return -ENOMEM; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2319 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2320 | size = ihost->remote_node_entries * sizeof(union scu_remote_node_context); |
| 2321 | ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &ihost->rnc_dma, |
| 2322 | GFP_KERNEL); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2323 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2324 | if (!ihost->remote_node_context_table) |
| 2325 | return -ENOMEM; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2326 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2327 | size = ihost->task_context_entries * sizeof(struct scu_task_context), |
| 2328 | ihost->task_context_table = dmam_alloc_coherent(dev, size, &ihost->tc_dma, |
| 2329 | GFP_KERNEL); |
| 2330 | if (!ihost->task_context_table) |
| 2331 | return -ENOMEM; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2332 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2333 | size = SCI_UFI_TOTAL_SIZE; |
| 2334 | ihost->ufi_buf = dmam_alloc_coherent(dev, size, &ihost->ufi_dma, GFP_KERNEL); |
| 2335 | if (!ihost->ufi_buf) |
| 2336 | return -ENOMEM; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2337 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2338 | for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) { |
| 2339 | struct isci_request *ireq; |
| 2340 | dma_addr_t dma; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2341 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2342 | ireq = dmam_alloc_coherent(dev, sizeof(*ireq), &dma, GFP_KERNEL); |
| 2343 | if (!ireq) |
| 2344 | return -ENOMEM; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2345 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2346 | ireq->tc = &ihost->task_context_table[i]; |
| 2347 | ireq->owning_controller = ihost; |
| 2348 | spin_lock_init(&ireq->state_lock); |
| 2349 | ireq->request_daddr = dma; |
| 2350 | ireq->isci_host = ihost; |
| 2351 | ihost->reqs[i] = ireq; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2352 | } |
| 2353 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2354 | return 0; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2355 | } |
| 2356 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2357 | static int sci_controller_mem_init(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2358 | { |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2359 | int err = sci_controller_dma_alloc(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2360 | |
Dan Williams | 7c78da3 | 2011-06-01 16:00:01 -0700 | [diff] [blame] | 2361 | if (err) |
| 2362 | return err; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2363 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2364 | writel(lower_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_lower); |
| 2365 | writel(upper_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_upper); |
| 2366 | |
| 2367 | writel(lower_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_lower); |
| 2368 | writel(upper_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_upper); |
| 2369 | |
| 2370 | writel(lower_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_lower); |
| 2371 | writel(upper_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_upper); |
| 2372 | |
| 2373 | sci_unsolicited_frame_control_construct(ihost); |
| 2374 | |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2375 | /* |
| 2376 | * Inform the silicon as to the location of the UF headers and |
| 2377 | * address table. |
| 2378 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2379 | writel(lower_32_bits(ihost->uf_control.headers.physical_address), |
| 2380 | &ihost->scu_registers->sdma.uf_header_base_address_lower); |
| 2381 | writel(upper_32_bits(ihost->uf_control.headers.physical_address), |
| 2382 | &ihost->scu_registers->sdma.uf_header_base_address_upper); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2383 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2384 | writel(lower_32_bits(ihost->uf_control.address_table.physical_address), |
| 2385 | &ihost->scu_registers->sdma.uf_address_table_lower); |
| 2386 | writel(upper_32_bits(ihost->uf_control.address_table.physical_address), |
| 2387 | &ihost->scu_registers->sdma.uf_address_table_upper); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2388 | |
| 2389 | return 0; |
| 2390 | } |
| 2391 | |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2392 | /** |
| 2393 | * isci_host_init - (re-)initialize hardware and internal (private) state |
| 2394 | * @ihost: host to init |
| 2395 | * |
| 2396 | * Any public facing objects (like asd_sas_port, and asd_sas_phys), or |
| 2397 | * one-time initialization objects like locks and waitqueues, are |
| 2398 | * not touched (they are initialized in isci_host_alloc) |
| 2399 | */ |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2400 | int isci_host_init(struct isci_host *ihost) |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2401 | { |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2402 | int i, err; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2403 | enum sci_status status; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2404 | |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 2405 | spin_lock_irq(&ihost->scic_lock); |
Dan Williams | abec912 | 2012-02-15 13:58:42 -0800 | [diff] [blame] | 2406 | status = sci_controller_construct(ihost, scu_base(ihost), smu_base(ihost)); |
Dan Williams | 2396a265 | 2012-03-01 17:06:24 -0800 | [diff] [blame^] | 2407 | spin_unlock_irq(&ihost->scic_lock); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2408 | if (status != SCI_SUCCESS) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2409 | dev_err(&ihost->pdev->dev, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2410 | "%s: sci_controller_construct failed - status = %x\n", |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2411 | __func__, |
| 2412 | status); |
Dave Jiang | 858d4aa | 2011-02-22 01:27:03 -0800 | [diff] [blame] | 2413 | return -ENODEV; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2414 | } |
| 2415 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2416 | spin_lock_irq(&ihost->scic_lock); |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2417 | status = sci_controller_initialize(ihost); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2418 | spin_unlock_irq(&ihost->scic_lock); |
Dan Williams | 7c40a80 | 2011-03-02 11:49:26 -0800 | [diff] [blame] | 2419 | if (status != SCI_SUCCESS) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2420 | dev_warn(&ihost->pdev->dev, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2421 | "%s: sci_controller_initialize failed -" |
Dan Williams | 7c40a80 | 2011-03-02 11:49:26 -0800 | [diff] [blame] | 2422 | " status = 0x%x\n", |
| 2423 | __func__, status); |
| 2424 | return -ENODEV; |
| 2425 | } |
| 2426 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2427 | err = sci_controller_mem_init(ihost); |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2428 | if (err) |
Dave Jiang | 858d4aa | 2011-02-22 01:27:03 -0800 | [diff] [blame] | 2429 | return err; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2430 | |
Dan Williams | ad4f4c1 | 2011-09-01 21:18:31 -0700 | [diff] [blame] | 2431 | /* enable sgpio */ |
| 2432 | writel(1, &ihost->scu_registers->peg0.sgpio.interface_control); |
| 2433 | for (i = 0; i < isci_gpio_count(ihost); i++) |
| 2434 | writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]); |
| 2435 | writel(0, &ihost->scu_registers->peg0.sgpio.vendor_specific_code); |
| 2436 | |
Dave Jiang | 858d4aa | 2011-02-22 01:27:03 -0800 | [diff] [blame] | 2437 | return 0; |
Dan Williams | 6f231dd | 2011-07-02 22:56:22 -0700 | [diff] [blame] | 2438 | } |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2439 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2440 | void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport, |
| 2441 | struct isci_phy *iphy) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2442 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2443 | switch (ihost->sm.current_state_id) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2444 | case SCIC_STARTING: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2445 | sci_del_timer(&ihost->phy_timer); |
| 2446 | ihost->phy_startup_timer_pending = false; |
| 2447 | ihost->port_agent.link_up_handler(ihost, &ihost->port_agent, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2448 | iport, iphy); |
| 2449 | sci_controller_start_next_phy(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2450 | break; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2451 | case SCIC_READY: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2452 | ihost->port_agent.link_up_handler(ihost, &ihost->port_agent, |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2453 | iport, iphy); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2454 | break; |
| 2455 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2456 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2457 | "%s: SCIC Controller linkup event from phy %d in " |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 2458 | "unexpected state %d\n", __func__, iphy->phy_index, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2459 | ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2460 | } |
| 2461 | } |
| 2462 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2463 | void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport, |
| 2464 | struct isci_phy *iphy) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2465 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2466 | switch (ihost->sm.current_state_id) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2467 | case SCIC_STARTING: |
| 2468 | case SCIC_READY: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2469 | ihost->port_agent.link_down_handler(ihost, &ihost->port_agent, |
Dan Williams | ffe191c | 2011-06-29 13:09:25 -0700 | [diff] [blame] | 2470 | iport, iphy); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2471 | break; |
| 2472 | default: |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2473 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2474 | "%s: SCIC Controller linkdown event from phy %d in " |
| 2475 | "unexpected state %d\n", |
| 2476 | __func__, |
Dan Williams | 8528095 | 2011-06-28 15:05:53 -0700 | [diff] [blame] | 2477 | iphy->phy_index, |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2478 | ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2479 | } |
| 2480 | } |
| 2481 | |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 2482 | bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2483 | { |
| 2484 | u32 index; |
| 2485 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2486 | for (index = 0; index < ihost->remote_node_entries; index++) { |
| 2487 | if ((ihost->device_table[index] != NULL) && |
| 2488 | (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING)) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2489 | return true; |
| 2490 | } |
| 2491 | |
| 2492 | return false; |
| 2493 | } |
| 2494 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2495 | void sci_controller_remote_device_stopped(struct isci_host *ihost, |
| 2496 | struct isci_remote_device *idev) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2497 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2498 | if (ihost->sm.current_state_id != SCIC_STOPPING) { |
| 2499 | dev_dbg(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2500 | "SCIC Controller 0x%p remote device stopped event " |
| 2501 | "from device 0x%p in unexpected state %d\n", |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2502 | ihost, idev, |
| 2503 | ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2504 | return; |
| 2505 | } |
| 2506 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2507 | if (!sci_controller_has_remote_devices_stopping(ihost)) |
Dan Williams | eb608c3 | 2012-02-23 01:12:10 -0800 | [diff] [blame] | 2508 | isci_host_stop_complete(ihost); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2509 | } |
| 2510 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2511 | void sci_controller_post_request(struct isci_host *ihost, u32 request) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2512 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2513 | dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n", |
| 2514 | __func__, ihost->id, request); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2515 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2516 | writel(request, &ihost->smu_registers->post_context_port); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2517 | } |
| 2518 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2519 | struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2520 | { |
| 2521 | u16 task_index; |
| 2522 | u16 task_sequence; |
| 2523 | |
Dan Williams | dd047c8 | 2011-06-09 11:06:58 -0700 | [diff] [blame] | 2524 | task_index = ISCI_TAG_TCI(io_tag); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2525 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2526 | if (task_index < ihost->task_context_entries) { |
| 2527 | struct isci_request *ireq = ihost->reqs[task_index]; |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 2528 | |
| 2529 | if (test_bit(IREQ_ACTIVE, &ireq->flags)) { |
Dan Williams | dd047c8 | 2011-06-09 11:06:58 -0700 | [diff] [blame] | 2530 | task_sequence = ISCI_TAG_SEQ(io_tag); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2531 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2532 | if (task_sequence == ihost->io_request_sequence[task_index]) |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2533 | return ireq; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2534 | } |
| 2535 | } |
| 2536 | |
| 2537 | return NULL; |
| 2538 | } |
| 2539 | |
| 2540 | /** |
| 2541 | * This method allocates remote node index and the reserves the remote node |
| 2542 | * context space for use. This method can fail if there are no more remote |
| 2543 | * node index available. |
| 2544 | * @scic: This is the controller object which contains the set of |
| 2545 | * free remote node ids |
| 2546 | * @sci_dev: This is the device object which is requesting the a remote node |
| 2547 | * id |
| 2548 | * @node_id: This is the remote node id that is assinged to the device if one |
| 2549 | * is available |
| 2550 | * |
| 2551 | * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote |
| 2552 | * node index available. |
| 2553 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2554 | enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost, |
| 2555 | struct isci_remote_device *idev, |
| 2556 | u16 *node_id) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2557 | { |
| 2558 | u16 node_index; |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2559 | u32 remote_node_count = sci_remote_device_node_count(idev); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2560 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2561 | node_index = sci_remote_node_table_allocate_remote_node( |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2562 | &ihost->available_remote_nodes, remote_node_count |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2563 | ); |
| 2564 | |
| 2565 | if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2566 | ihost->device_table[node_index] = idev; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2567 | |
| 2568 | *node_id = node_index; |
| 2569 | |
| 2570 | return SCI_SUCCESS; |
| 2571 | } |
| 2572 | |
| 2573 | return SCI_FAILURE_INSUFFICIENT_RESOURCES; |
| 2574 | } |
| 2575 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2576 | void sci_controller_free_remote_node_context(struct isci_host *ihost, |
| 2577 | struct isci_remote_device *idev, |
| 2578 | u16 node_id) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2579 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2580 | u32 remote_node_count = sci_remote_device_node_count(idev); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2581 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2582 | if (ihost->device_table[node_id] == idev) { |
| 2583 | ihost->device_table[node_id] = NULL; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2584 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2585 | sci_remote_node_table_release_remote_node_index( |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2586 | &ihost->available_remote_nodes, remote_node_count, node_id |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2587 | ); |
| 2588 | } |
| 2589 | } |
| 2590 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2591 | void sci_controller_copy_sata_response(void *response_buffer, |
| 2592 | void *frame_header, |
| 2593 | void *frame_buffer) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2594 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2595 | /* XXX type safety? */ |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2596 | memcpy(response_buffer, frame_header, sizeof(u32)); |
| 2597 | |
| 2598 | memcpy(response_buffer + sizeof(u32), |
| 2599 | frame_buffer, |
| 2600 | sizeof(struct dev_to_host_fis) - sizeof(u32)); |
| 2601 | } |
| 2602 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2603 | void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2604 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2605 | if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index)) |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2606 | writel(ihost->uf_control.get, |
| 2607 | &ihost->scu_registers->sdma.unsolicited_frame_get_pointer); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2608 | } |
| 2609 | |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 2610 | void isci_tci_free(struct isci_host *ihost, u16 tci) |
| 2611 | { |
| 2612 | u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1); |
| 2613 | |
| 2614 | ihost->tci_pool[tail] = tci; |
| 2615 | ihost->tci_tail = tail + 1; |
| 2616 | } |
| 2617 | |
| 2618 | static u16 isci_tci_alloc(struct isci_host *ihost) |
| 2619 | { |
| 2620 | u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1); |
| 2621 | u16 tci = ihost->tci_pool[head]; |
| 2622 | |
| 2623 | ihost->tci_head = head + 1; |
| 2624 | return tci; |
| 2625 | } |
| 2626 | |
| 2627 | static u16 isci_tci_space(struct isci_host *ihost) |
| 2628 | { |
| 2629 | return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS); |
| 2630 | } |
| 2631 | |
| 2632 | u16 isci_alloc_tag(struct isci_host *ihost) |
| 2633 | { |
| 2634 | if (isci_tci_space(ihost)) { |
| 2635 | u16 tci = isci_tci_alloc(ihost); |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2636 | u8 seq = ihost->io_request_sequence[tci]; |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 2637 | |
| 2638 | return ISCI_TAG(seq, tci); |
| 2639 | } |
| 2640 | |
| 2641 | return SCI_CONTROLLER_INVALID_IO_TAG; |
| 2642 | } |
| 2643 | |
| 2644 | enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag) |
| 2645 | { |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 2646 | u16 tci = ISCI_TAG_TCI(io_tag); |
| 2647 | u16 seq = ISCI_TAG_SEQ(io_tag); |
| 2648 | |
| 2649 | /* prevent tail from passing head */ |
| 2650 | if (isci_tci_active(ihost) == 0) |
| 2651 | return SCI_FAILURE_INVALID_IO_TAG; |
| 2652 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2653 | if (seq == ihost->io_request_sequence[tci]) { |
| 2654 | ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1); |
Dan Williams | 312e0c2 | 2011-06-28 13:47:09 -0700 | [diff] [blame] | 2655 | |
| 2656 | isci_tci_free(ihost, tci); |
| 2657 | |
| 2658 | return SCI_SUCCESS; |
| 2659 | } |
| 2660 | return SCI_FAILURE_INVALID_IO_TAG; |
| 2661 | } |
| 2662 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2663 | enum sci_status sci_controller_start_io(struct isci_host *ihost, |
| 2664 | struct isci_remote_device *idev, |
| 2665 | struct isci_request *ireq) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2666 | { |
| 2667 | enum sci_status status; |
| 2668 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2669 | if (ihost->sm.current_state_id != SCIC_READY) { |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 2670 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 2671 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2672 | return SCI_FAILURE_INVALID_STATE; |
| 2673 | } |
| 2674 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2675 | status = sci_remote_device_start_io(ihost, idev, ireq); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2676 | if (status != SCI_SUCCESS) |
| 2677 | return status; |
| 2678 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2679 | set_bit(IREQ_ACTIVE, &ireq->flags); |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2680 | sci_controller_post_request(ihost, ireq->post_context); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2681 | return SCI_SUCCESS; |
| 2682 | } |
| 2683 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2684 | enum sci_status sci_controller_terminate_request(struct isci_host *ihost, |
| 2685 | struct isci_remote_device *idev, |
| 2686 | struct isci_request *ireq) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2687 | { |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2688 | /* terminate an ongoing (i.e. started) core IO request. This does not |
| 2689 | * abort the IO request at the target, but rather removes the IO |
| 2690 | * request from the host controller. |
| 2691 | */ |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2692 | enum sci_status status; |
| 2693 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2694 | if (ihost->sm.current_state_id != SCIC_READY) { |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 2695 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 2696 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2697 | return SCI_FAILURE_INVALID_STATE; |
| 2698 | } |
| 2699 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2700 | status = sci_io_request_terminate(ireq); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2701 | if (status != SCI_SUCCESS) |
| 2702 | return status; |
| 2703 | |
| 2704 | /* |
| 2705 | * Utilize the original post context command and or in the POST_TC_ABORT |
| 2706 | * request sub-type. |
| 2707 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2708 | sci_controller_post_request(ihost, |
| 2709 | ireq->post_context | SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2710 | return SCI_SUCCESS; |
| 2711 | } |
| 2712 | |
| 2713 | /** |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2714 | * sci_controller_complete_io() - This method will perform core specific |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2715 | * completion operations for an IO request. After this method is invoked, |
| 2716 | * the user should consider the IO request as invalid until it is properly |
| 2717 | * reused (i.e. re-constructed). |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2718 | * @ihost: The handle to the controller object for which to complete the |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2719 | * IO request. |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2720 | * @idev: The handle to the remote device object for which to complete |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2721 | * the IO request. |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2722 | * @ireq: the handle to the io request object to complete. |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2723 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2724 | enum sci_status sci_controller_complete_io(struct isci_host *ihost, |
| 2725 | struct isci_remote_device *idev, |
| 2726 | struct isci_request *ireq) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2727 | { |
| 2728 | enum sci_status status; |
| 2729 | u16 index; |
| 2730 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2731 | switch (ihost->sm.current_state_id) { |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2732 | case SCIC_STOPPING: |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2733 | /* XXX: Implement this function */ |
| 2734 | return SCI_FAILURE; |
Edmund Nadolski | e301370 | 2011-06-02 00:10:43 +0000 | [diff] [blame] | 2735 | case SCIC_READY: |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2736 | status = sci_remote_device_complete_io(ihost, idev, ireq); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2737 | if (status != SCI_SUCCESS) |
| 2738 | return status; |
| 2739 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2740 | index = ISCI_TAG_TCI(ireq->io_tag); |
| 2741 | clear_bit(IREQ_ACTIVE, &ireq->flags); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2742 | return SCI_SUCCESS; |
| 2743 | default: |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 2744 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 2745 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2746 | return SCI_FAILURE_INVALID_STATE; |
| 2747 | } |
| 2748 | |
| 2749 | } |
| 2750 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2751 | enum sci_status sci_controller_continue_io(struct isci_request *ireq) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2752 | { |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2753 | struct isci_host *ihost = ireq->owning_controller; |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2754 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2755 | if (ihost->sm.current_state_id != SCIC_READY) { |
Dan Williams | 14e99b4 | 2012-02-10 01:05:43 -0800 | [diff] [blame] | 2756 | dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n", |
| 2757 | __func__, ihost->sm.current_state_id); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2758 | return SCI_FAILURE_INVALID_STATE; |
| 2759 | } |
| 2760 | |
Dan Williams | 5076a1a | 2011-06-27 14:57:03 -0700 | [diff] [blame] | 2761 | set_bit(IREQ_ACTIVE, &ireq->flags); |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2762 | sci_controller_post_request(ihost, ireq->post_context); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2763 | return SCI_SUCCESS; |
| 2764 | } |
| 2765 | |
| 2766 | /** |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2767 | * sci_controller_start_task() - This method is called by the SCIC user to |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2768 | * send/start a framework task management request. |
| 2769 | * @controller: the handle to the controller object for which to start the task |
| 2770 | * management request. |
| 2771 | * @remote_device: the handle to the remote device object for which to start |
| 2772 | * the task management request. |
| 2773 | * @task_request: the handle to the task request object to start. |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2774 | */ |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2775 | enum sci_task_status sci_controller_start_task(struct isci_host *ihost, |
| 2776 | struct isci_remote_device *idev, |
| 2777 | struct isci_request *ireq) |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2778 | { |
| 2779 | enum sci_status status; |
| 2780 | |
Dan Williams | d9dcb4b | 2011-06-30 17:38:32 -0700 | [diff] [blame] | 2781 | if (ihost->sm.current_state_id != SCIC_READY) { |
| 2782 | dev_warn(&ihost->pdev->dev, |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2783 | "%s: SCIC Controller starting task from invalid " |
| 2784 | "state\n", |
| 2785 | __func__); |
| 2786 | return SCI_TASK_FAILURE_INVALID_STATE; |
| 2787 | } |
| 2788 | |
Dan Williams | 89a7301 | 2011-06-30 19:14:33 -0700 | [diff] [blame] | 2789 | status = sci_remote_device_start_task(ihost, idev, ireq); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2790 | switch (status) { |
| 2791 | case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS: |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 2792 | set_bit(IREQ_ACTIVE, &ireq->flags); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2793 | |
| 2794 | /* |
| 2795 | * We will let framework know this task request started successfully, |
| 2796 | * although core is still woring on starting the request (to post tc when |
| 2797 | * RNC is resumed.) |
| 2798 | */ |
| 2799 | return SCI_SUCCESS; |
| 2800 | case SCI_SUCCESS: |
Dan Williams | db05625 | 2011-06-17 14:18:39 -0700 | [diff] [blame] | 2801 | set_bit(IREQ_ACTIVE, &ireq->flags); |
Dan Williams | 34a9915 | 2011-07-01 02:25:15 -0700 | [diff] [blame] | 2802 | sci_controller_post_request(ihost, ireq->post_context); |
Dan Williams | cc9203b | 2011-05-08 17:34:44 -0700 | [diff] [blame] | 2803 | break; |
| 2804 | default: |
| 2805 | break; |
| 2806 | } |
| 2807 | |
| 2808 | return status; |
| 2809 | } |
Dan Williams | ad4f4c1 | 2011-09-01 21:18:31 -0700 | [diff] [blame] | 2810 | |
| 2811 | static int sci_write_gpio_tx_gp(struct isci_host *ihost, u8 reg_index, u8 reg_count, u8 *write_data) |
| 2812 | { |
| 2813 | int d; |
| 2814 | |
| 2815 | /* no support for TX_GP_CFG */ |
| 2816 | if (reg_index == 0) |
| 2817 | return -EINVAL; |
| 2818 | |
| 2819 | for (d = 0; d < isci_gpio_count(ihost); d++) { |
| 2820 | u32 val = 0x444; /* all ODx.n clear */ |
| 2821 | int i; |
| 2822 | |
| 2823 | for (i = 0; i < 3; i++) { |
| 2824 | int bit = (i << 2) + 2; |
| 2825 | |
| 2826 | bit = try_test_sas_gpio_gp_bit(to_sas_gpio_od(d, i), |
| 2827 | write_data, reg_index, |
| 2828 | reg_count); |
| 2829 | if (bit < 0) |
| 2830 | break; |
| 2831 | |
| 2832 | /* if od is set, clear the 'invert' bit */ |
| 2833 | val &= ~(bit << ((i << 2) + 2)); |
| 2834 | } |
| 2835 | |
| 2836 | if (i < 3) |
| 2837 | break; |
| 2838 | writel(val, &ihost->scu_registers->peg0.sgpio.output_data_select[d]); |
| 2839 | } |
| 2840 | |
| 2841 | /* unless reg_index is > 1, we should always be able to write at |
| 2842 | * least one register |
| 2843 | */ |
| 2844 | return d > 0; |
| 2845 | } |
| 2846 | |
| 2847 | int isci_gpio_write(struct sas_ha_struct *sas_ha, u8 reg_type, u8 reg_index, |
| 2848 | u8 reg_count, u8 *write_data) |
| 2849 | { |
| 2850 | struct isci_host *ihost = sas_ha->lldd_ha; |
| 2851 | int written; |
| 2852 | |
| 2853 | switch (reg_type) { |
| 2854 | case SAS_GPIO_REG_TX_GP: |
| 2855 | written = sci_write_gpio_tx_gp(ihost, reg_index, reg_count, write_data); |
| 2856 | break; |
| 2857 | default: |
| 2858 | written = -EINVAL; |
| 2859 | } |
| 2860 | |
| 2861 | return written; |
| 2862 | } |