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