blob: e3cf3832c5b6b43791a5fe6080796a2baf28292b [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
Dan Williamsac668c62011-06-07 18:50:55 -070055#include <linux/circ_buf.h>
Dan Williamscc9203b2011-05-08 17:34:44 -070056#include <linux/device.h>
57#include <scsi/sas.h>
58#include "host.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070059#include "isci.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070060#include "port.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070061#include "host.h"
Dan Williamsd044af12011-03-08 09:52:49 -080062#include "probe_roms.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070063#include "remote_device.h"
64#include "request.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070065#include "scu_completion_codes.h"
66#include "scu_event_codes.h"
Dan Williams63a3a152011-05-08 21:36:46 -070067#include "registers.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070068#include "scu_remote_node_context.h"
69#include "scu_task_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070070
Dan Williamscc9203b2011-05-08 17:34:44 -070071#define SCU_CONTEXT_RAM_INIT_STALL_TIME 200
72
Dan Williams7c78da32011-06-01 16:00:01 -070073#define smu_max_ports(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070074 (\
75 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_MASK) \
76 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_SHIFT) + 1 \
77 )
78
Dan Williams7c78da32011-06-01 16:00:01 -070079#define smu_max_task_contexts(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070080 (\
81 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_MASK) \
82 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT) + 1 \
83 )
84
Dan Williams7c78da32011-06-01 16:00:01 -070085#define smu_max_rncs(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070086 (\
87 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_MASK) \
88 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_SHIFT) + 1 \
89 )
90
Dan Williamscc9203b2011-05-08 17:34:44 -070091#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 Williamscc9203b2011-05-08 17:34:44 -0700125 * 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 Nadolski12ef6542011-06-02 00:10:50 +0000149/* Init the state machine and call the state entry function (if any) */
150void 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 */
166void 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 Williams89a73012011-06-30 19:14:33 -0700182static bool sci_controller_completion_queue_has_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700183{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700184 u32 get_value = ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700185 u32 get_index = get_value & SMU_COMPLETION_QUEUE_GET_POINTER_MASK;
186
187 if (NORMALIZE_GET_POINTER_CYCLE_BIT(get_value) ==
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700188 COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index]))
Dan Williamscc9203b2011-05-08 17:34:44 -0700189 return true;
190
191 return false;
192}
193
Dan Williams89a73012011-06-30 19:14:33 -0700194static bool sci_controller_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700195{
Dan Williams89a73012011-06-30 19:14:33 -0700196 if (sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700197 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 Williamsd9dcb4b2011-06-30 17:38:32 -0700202 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700203
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 Williamsd9dcb4b2011-06-30 17:38:32 -0700209 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
210 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700211 }
212
213 return false;
214}
215
Dan Williamsc7ef4032011-02-18 09:25:05 -0800216irqreturn_t isci_msix_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700217{
Dan Williamsc7ef4032011-02-18 09:25:05 -0800218 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700219
Dan Williams89a73012011-06-30 19:14:33 -0700220 if (sci_controller_isr(ihost))
Dan Williams0cf89d12011-02-18 09:25:07 -0800221 tasklet_schedule(&ihost->completion_tasklet);
Dan Williams6f231dd2011-07-02 22:56:22 -0700222
Dan Williamsc7ef4032011-02-18 09:25:05 -0800223 return IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700224}
225
Dan Williams89a73012011-06-30 19:14:33 -0700226static bool sci_controller_error_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700227{
228 u32 interrupt_status;
229
230 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700231 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700232 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 Williamsd9dcb4b2011-06-30 17:38:32 -0700247 writel(0xff, &ihost->smu_registers->interrupt_mask);
248 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700249
250 return false;
251}
252
Dan Williams89a73012011-06-30 19:14:33 -0700253static void sci_controller_task_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700254{
Dan Williams89a73012011-06-30 19:14:33 -0700255 u32 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamsdb056252011-06-17 14:18:39 -0700256 struct isci_request *ireq = ihost->reqs[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700257
258 /* Make sure that we really want to process this IO request */
Dan Williamsdb056252011-06-17 14:18:39 -0700259 if (test_bit(IREQ_ACTIVE, &ireq->flags) &&
Dan Williams5076a1a2011-06-27 14:57:03 -0700260 ireq->io_tag != SCI_CONTROLLER_INVALID_IO_TAG &&
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700261 ISCI_TAG_SEQ(ireq->io_tag) == ihost->io_request_sequence[index])
Dan Williams89a73012011-06-30 19:14:33 -0700262 /* 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 Williamscc9203b2011-05-08 17:34:44 -0700266}
267
Dan Williams89a73012011-06-30 19:14:33 -0700268static void sci_controller_sdma_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700269{
270 u32 index;
Dan Williams5076a1a2011-06-27 14:57:03 -0700271 struct isci_request *ireq;
Dan Williams78a6f062011-06-30 16:31:37 -0700272 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700273
Dan Williams89a73012011-06-30 19:14:33 -0700274 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700275
Dan Williams89a73012011-06-30 19:14:33 -0700276 switch (scu_get_command_request_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700277 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC:
278 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700279 ireq = ihost->reqs[index];
280 dev_warn(&ihost->pdev->dev, "%s: %x for io request %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700281 __func__, ent, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -0700282 /* @todo For a post TC operation we need to fail the IO
283 * request
284 */
285 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700286 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 Williamsd9dcb4b2011-06-30 17:38:32 -0700289 idev = ihost->device_table[index];
290 dev_warn(&ihost->pdev->dev, "%s: %x for device %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700291 __func__, ent, idev);
Dan Williamscc9203b2011-05-08 17:34:44 -0700292 /* @todo For a port RNC operation we need to fail the
293 * device
294 */
295 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700296 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700297 dev_warn(&ihost->pdev->dev, "%s: unknown completion type %x\n",
Dan Williams89a73012011-06-30 19:14:33 -0700298 __func__, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700299 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700300 }
301}
302
Dan Williams89a73012011-06-30 19:14:33 -0700303static void sci_controller_unsolicited_frame(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700304{
305 u32 index;
306 u32 frame_index;
307
Dan Williamscc9203b2011-05-08 17:34:44 -0700308 struct scu_unsolicited_frame_header *frame_header;
Dan Williams85280952011-06-28 15:05:53 -0700309 struct isci_phy *iphy;
Dan Williams78a6f062011-06-30 16:31:37 -0700310 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700311
312 enum sci_status result = SCI_FAILURE;
313
Dan Williams89a73012011-06-30 19:14:33 -0700314 frame_index = SCU_GET_FRAME_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700315
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700316 frame_header = ihost->uf_control.buffers.array[frame_index].header;
317 ihost->uf_control.buffers.array[frame_index].state = UNSOLICITED_FRAME_IN_USE;
Dan Williamscc9203b2011-05-08 17:34:44 -0700318
Dan Williams89a73012011-06-30 19:14:33 -0700319 if (SCU_GET_FRAME_ERROR(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700320 /*
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 Williams89a73012011-06-30 19:14:33 -0700324 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700325 return;
326 }
327
328 if (frame_header->is_address_frame) {
Dan Williams89a73012011-06-30 19:14:33 -0700329 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700330 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700331 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700332 } else {
333
Dan Williams89a73012011-06-30 19:14:33 -0700334 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700335
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 Williams89a73012011-06-30 19:14:33 -0700341 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700342 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700343 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700344 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700345 if (index < ihost->remote_node_entries)
346 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700347 else
Dan Williams78a6f062011-06-30 16:31:37 -0700348 idev = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -0700349
Dan Williams78a6f062011-06-30 16:31:37 -0700350 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700351 result = sci_remote_device_frame_handler(idev, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700352 else
Dan Williams89a73012011-06-30 19:14:33 -0700353 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700354 }
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 Williams89a73012011-06-30 19:14:33 -0700364static void sci_controller_event_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700365{
Dan Williams78a6f062011-06-30 16:31:37 -0700366 struct isci_remote_device *idev;
Dan Williams5076a1a2011-06-27 14:57:03 -0700367 struct isci_request *ireq;
Dan Williams85280952011-06-28 15:05:53 -0700368 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700369 u32 index;
370
Dan Williams89a73012011-06-30 19:14:33 -0700371 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700372
Dan Williams89a73012011-06-30 19:14:33 -0700373 switch (scu_get_event_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700374 case SCU_EVENT_TYPE_SMU_COMMAND_ERROR:
375 /* / @todo The driver did something wrong and we need to fix the condtion. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700376 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700377 "%s: SCIC Controller 0x%p received SMU command error "
378 "0x%x\n",
379 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700380 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700381 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700382 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 Williamsd9dcb4b2011-06-30 17:38:32 -0700390 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700391 "%s: SCIC Controller 0x%p received fatal controller "
392 "event 0x%x\n",
393 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700394 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700395 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700396 break;
397
398 case SCU_EVENT_TYPE_TRANSPORT_ERROR:
Dan Williams5076a1a2011-06-27 14:57:03 -0700399 ireq = ihost->reqs[index];
Dan Williams89a73012011-06-30 19:14:33 -0700400 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700401 break;
402
403 case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700404 switch (scu_get_event_specifier(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700405 case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE:
406 case SCU_EVENT_SPECIFIC_TASK_TIMEOUT:
Dan Williams5076a1a2011-06-27 14:57:03 -0700407 ireq = ihost->reqs[index];
408 if (ireq != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700409 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700410 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700411 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700412 "%s: SCIC Controller 0x%p received "
413 "event 0x%x for io request object "
414 "that doesnt exist.\n",
415 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700416 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700417 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700418
419 break;
420
421 case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700422 idev = ihost->device_table[index];
Dan Williams78a6f062011-06-30 16:31:37 -0700423 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700424 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700425 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700426 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700427 "%s: SCIC Controller 0x%p received "
428 "event 0x%x for remote device object "
429 "that doesnt exist.\n",
430 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700431 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700432 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700433
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 Williams89a73012011-06-30 19:14:33 -0700447 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700448 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700449 sci_phy_event_handler(iphy, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700450 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 Williamsd9dcb4b2011-06-30 17:38:32 -0700455 if (index < ihost->remote_node_entries) {
456 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700457
Dan Williams78a6f062011-06-30 16:31:37 -0700458 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700459 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700460 } else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700461 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700462 "%s: SCIC Controller 0x%p received event 0x%x "
463 "for remote device object 0x%0x that doesnt "
464 "exist.\n",
465 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700466 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700467 ent,
Dan Williamscc9203b2011-05-08 17:34:44 -0700468 index);
469
470 break;
471
472 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700473 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700474 "%s: SCIC Controller received unknown event code %x\n",
475 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700476 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700477 break;
478 }
479}
480
Dan Williams89a73012011-06-30 19:14:33 -0700481static void sci_controller_process_completions(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700482{
483 u32 completion_count = 0;
Dan Williams89a73012011-06-30 19:14:33 -0700484 u32 ent;
Dan Williamscc9203b2011-05-08 17:34:44 -0700485 u32 get_index;
486 u32 get_cycle;
Dan Williams994a9302011-06-09 16:04:28 -0700487 u32 event_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700488 u32 event_cycle;
489
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700490 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700491 "%s: completion queue begining get:0x%08x\n",
492 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700493 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700494
495 /* Get the component parts of the completion queue */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700496 get_index = NORMALIZE_GET_POINTER(ihost->completion_queue_get);
497 get_cycle = SMU_CQGR_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700498
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700499 event_get = NORMALIZE_EVENT_POINTER(ihost->completion_queue_get);
500 event_cycle = SMU_CQGR_EVENT_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700501
502 while (
503 NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700504 == COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index])
Dan Williamscc9203b2011-05-08 17:34:44 -0700505 ) {
506 completion_count++;
507
Dan Williams89a73012011-06-30 19:14:33 -0700508 ent = ihost->completion_queue[get_index];
Dan Williams994a9302011-06-09 16:04:28 -0700509
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 Williamscc9203b2011-05-08 17:34:44 -0700514
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700515 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700516 "%s: completion queue entry:0x%08x\n",
517 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700518 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700519
Dan Williams89a73012011-06-30 19:14:33 -0700520 switch (SCU_GET_COMPLETION_TYPE(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700521 case SCU_COMPLETION_TYPE_TASK:
Dan Williams89a73012011-06-30 19:14:33 -0700522 sci_controller_task_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700523 break;
524
525 case SCU_COMPLETION_TYPE_SDMA:
Dan Williams89a73012011-06-30 19:14:33 -0700526 sci_controller_sdma_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700527 break;
528
529 case SCU_COMPLETION_TYPE_UFI:
Dan Williams89a73012011-06-30 19:14:33 -0700530 sci_controller_unsolicited_frame(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700531 break;
532
533 case SCU_COMPLETION_TYPE_EVENT:
Dan Williams77cd72a2011-07-29 17:17:16 -0700534 sci_controller_event_completion(ihost, ent);
535 break;
536
Dan Williams994a9302011-06-09 16:04:28 -0700537 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 Williams89a73012011-06-30 19:14:33 -0700542 sci_controller_event_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700543 break;
Dan Williams994a9302011-06-09 16:04:28 -0700544 }
Dan Williamscc9203b2011-05-08 17:34:44 -0700545 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700546 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700547 "%s: SCIC Controller received unknown "
548 "completion type %x\n",
549 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700550 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700551 break;
552 }
553 }
554
555 /* Update the get register if we completed one or more entries */
556 if (completion_count > 0) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700557 ihost->completion_queue_get =
Dan Williamscc9203b2011-05-08 17:34:44 -0700558 SMU_CQGR_GEN_BIT(ENABLE) |
559 SMU_CQGR_GEN_BIT(EVENT_ENABLE) |
560 event_cycle |
Dan Williams994a9302011-06-09 16:04:28 -0700561 SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700562 get_cycle |
563 SMU_CQGR_GEN_VAL(POINTER, get_index);
564
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700565 writel(ihost->completion_queue_get,
566 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700567
568 }
569
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700570 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700571 "%s: completion queue ending get:0x%08x\n",
572 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700573 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700574
575}
576
Dan Williams89a73012011-06-30 19:14:33 -0700577static void sci_controller_error_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700578{
579 u32 interrupt_status;
580
581 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700582 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700583
584 if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) &&
Dan Williams89a73012011-06-30 19:14:33 -0700585 sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700586
Dan Williams89a73012011-06-30 19:14:33 -0700587 sci_controller_process_completions(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700588 writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700589 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700590 dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__,
Dan Williamscc9203b2011-05-08 17:34:44 -0700591 interrupt_status);
592
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700593 sci_change_state(&ihost->sm, SCIC_FAILED);
Dan Williamscc9203b2011-05-08 17:34:44 -0700594
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 Williamsd9dcb4b2011-06-30 17:38:32 -0700601 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700602}
603
Dan Williamsc7ef4032011-02-18 09:25:05 -0800604irqreturn_t isci_intx_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700605{
Dan Williams6f231dd2011-07-02 22:56:22 -0700606 irqreturn_t ret = IRQ_NONE;
Dan Williams31e824e2011-04-19 12:32:51 -0700607 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700608
Dan Williams89a73012011-06-30 19:14:33 -0700609 if (sci_controller_isr(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700610 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williams31e824e2011-04-19 12:32:51 -0700611 tasklet_schedule(&ihost->completion_tasklet);
612 ret = IRQ_HANDLED;
Dan Williams89a73012011-06-30 19:14:33 -0700613 } else if (sci_controller_error_isr(ihost)) {
Dan Williams31e824e2011-04-19 12:32:51 -0700614 spin_lock(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -0700615 sci_controller_error_handler(ihost);
Dan Williams31e824e2011-04-19 12:32:51 -0700616 spin_unlock(&ihost->scic_lock);
617 ret = IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700618 }
Dan Williams92f4f0f2011-02-18 09:25:11 -0800619
Dan Williams6f231dd2011-07-02 22:56:22 -0700620 return ret;
621}
622
Dan Williams92f4f0f2011-02-18 09:25:11 -0800623irqreturn_t isci_error_isr(int vec, void *data)
624{
625 struct isci_host *ihost = data;
Dan Williams92f4f0f2011-02-18 09:25:11 -0800626
Dan Williams89a73012011-06-30 19:14:33 -0700627 if (sci_controller_error_isr(ihost))
628 sci_controller_error_handler(ihost);
Dan Williams92f4f0f2011-02-18 09:25:11 -0800629
630 return IRQ_HANDLED;
631}
Dan Williams6f231dd2011-07-02 22:56:22 -0700632
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 Williamscc9203b2011-05-08 17:34:44 -0700641static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700642{
Dan Williams0cf89d12011-02-18 09:25:07 -0800643 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 Williams6f231dd2011-07-02 22:56:22 -0700649}
650
Dan Williamsc7ef4032011-02-18 09:25:05 -0800651int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
Dan Williams6f231dd2011-07-02 22:56:22 -0700652{
Dan Williamsb1124cd2011-12-19 16:42:34 -0800653 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
654 struct isci_host *ihost = ha->lldd_ha;
Dan Williams6f231dd2011-07-02 22:56:22 -0700655
Edmund Nadolski77950f52011-02-18 09:25:09 -0800656 if (test_bit(IHOST_START_PENDING, &ihost->flags))
Dan Williams6f231dd2011-07-02 22:56:22 -0700657 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700658
Dan Williamsb1124cd2011-12-19 16:42:34 -0800659 sas_drain_work(ha);
Dan Williams6f231dd2011-07-02 22:56:22 -0700660
Dan Williams0cf89d12011-02-18 09:25:07 -0800661 dev_dbg(&ihost->pdev->dev,
662 "%s: ihost->status = %d, time = %ld\n",
663 __func__, isci_host_get_state(ihost), time);
Dan Williams6f231dd2011-07-02 22:56:22 -0700664
Dan Williams6f231dd2011-07-02 22:56:22 -0700665 return 1;
666
667}
668
Dan Williamscc9203b2011-05-08 17:34:44 -0700669/**
Dan Williams89a73012011-06-30 19:14:33 -0700670 * sci_controller_get_suggested_start_timeout() - This method returns the
671 * suggested sci_controller_start() timeout amount. The user is free to
Dan Williamscc9203b2011-05-08 17:34:44 -0700672 * use any timeout value, but this method provides the suggested minimum
673 * start timeout value. The returned value is based upon empirical
674 * information determined as a result of interoperability testing.
675 * @controller: the handle to the controller object for which to return the
676 * suggested start timeout.
677 *
678 * This method returns the number of milliseconds for the suggested start
679 * operation timeout.
680 */
Dan Williams89a73012011-06-30 19:14:33 -0700681static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700682{
683 /* Validate the user supplied parameters. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700684 if (!ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700685 return 0;
686
687 /*
688 * The suggested minimum timeout value for a controller start operation:
689 *
690 * Signature FIS Timeout
691 * + Phy Start Timeout
692 * + Number of Phy Spin Up Intervals
693 * ---------------------------------
694 * Number of milliseconds for the controller start operation.
695 *
696 * NOTE: The number of phy spin up intervals will be equivalent
697 * to the number of phys divided by the number phys allowed
698 * per interval - 1 (once OEM parameters are supported).
699 * Currently we assume only 1 phy per interval. */
700
701 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
702 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
703 + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
704}
705
Dan Williams89a73012011-06-30 19:14:33 -0700706static void sci_controller_enable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700707{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700708 BUG_ON(ihost->smu_registers == NULL);
709 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700710}
711
Dan Williams89a73012011-06-30 19:14:33 -0700712void sci_controller_disable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700713{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700714 BUG_ON(ihost->smu_registers == NULL);
715 writel(0xffffffff, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700716}
717
Dan Williams89a73012011-06-30 19:14:33 -0700718static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700719{
720 u32 port_task_scheduler_value;
721
722 port_task_scheduler_value =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700723 readl(&ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700724 port_task_scheduler_value |=
725 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) |
726 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE));
727 writel(port_task_scheduler_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700728 &ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700729}
730
Dan Williams89a73012011-06-30 19:14:33 -0700731static void sci_controller_assign_task_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700732{
733 u32 task_assignment;
734
735 /*
736 * Assign all the TCs to function 0
737 * TODO: Do we actually need to read this register to write it back?
738 */
739
740 task_assignment =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700741 readl(&ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700742
743 task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) |
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700744 (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700745 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE));
746
747 writel(task_assignment,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700748 &ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700749
750}
751
Dan Williams89a73012011-06-30 19:14:33 -0700752static void sci_controller_initialize_completion_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700753{
754 u32 index;
755 u32 completion_queue_control_value;
756 u32 completion_queue_get_value;
757 u32 completion_queue_put_value;
758
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700759 ihost->completion_queue_get = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -0700760
Dan Williams7c78da32011-06-01 16:00:01 -0700761 completion_queue_control_value =
762 (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES - 1) |
763 SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS - 1));
Dan Williamscc9203b2011-05-08 17:34:44 -0700764
765 writel(completion_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700766 &ihost->smu_registers->completion_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700767
768
769 /* Set the completion queue get pointer and enable the queue */
770 completion_queue_get_value = (
771 (SMU_CQGR_GEN_VAL(POINTER, 0))
772 | (SMU_CQGR_GEN_VAL(EVENT_POINTER, 0))
773 | (SMU_CQGR_GEN_BIT(ENABLE))
774 | (SMU_CQGR_GEN_BIT(EVENT_ENABLE))
775 );
776
777 writel(completion_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700778 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700779
780 /* Set the completion queue put pointer */
781 completion_queue_put_value = (
782 (SMU_CQPR_GEN_VAL(POINTER, 0))
783 | (SMU_CQPR_GEN_VAL(EVENT_POINTER, 0))
784 );
785
786 writel(completion_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700787 &ihost->smu_registers->completion_queue_put);
Dan Williamscc9203b2011-05-08 17:34:44 -0700788
789 /* Initialize the cycle bit of the completion queue entries */
Dan Williams7c78da32011-06-01 16:00:01 -0700790 for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700791 /*
792 * If get.cycle_bit != completion_queue.cycle_bit
793 * its not a valid completion queue entry
794 * so at system start all entries are invalid */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700795 ihost->completion_queue[index] = 0x80000000;
Dan Williamscc9203b2011-05-08 17:34:44 -0700796 }
797}
798
Dan Williams89a73012011-06-30 19:14:33 -0700799static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700800{
801 u32 frame_queue_control_value;
802 u32 frame_queue_get_value;
803 u32 frame_queue_put_value;
804
805 /* Write the queue size */
806 frame_queue_control_value =
Dan Williams7c78da32011-06-01 16:00:01 -0700807 SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES);
Dan Williamscc9203b2011-05-08 17:34:44 -0700808
809 writel(frame_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700810 &ihost->scu_registers->sdma.unsolicited_frame_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700811
812 /* Setup the get pointer for the unsolicited frame queue */
813 frame_queue_get_value = (
814 SCU_UFQGP_GEN_VAL(POINTER, 0)
815 | SCU_UFQGP_GEN_BIT(ENABLE_BIT)
816 );
817
818 writel(frame_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700819 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700820 /* Setup the put pointer for the unsolicited frame queue */
821 frame_queue_put_value = SCU_UFQPP_GEN_VAL(POINTER, 0);
822 writel(frame_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700823 &ihost->scu_registers->sdma.unsolicited_frame_put_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700824}
825
Dan Williams89a73012011-06-30 19:14:33 -0700826static void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status)
Dan Williamscc9203b2011-05-08 17:34:44 -0700827{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700828 if (ihost->sm.current_state_id == SCIC_STARTING) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700829 /*
830 * We move into the ready state, because some of the phys/ports
831 * may be up and operational.
832 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700833 sci_change_state(&ihost->sm, SCIC_READY);
Dan Williamscc9203b2011-05-08 17:34:44 -0700834
835 isci_host_start_complete(ihost, status);
836 }
837}
838
Dan Williams85280952011-06-28 15:05:53 -0700839static bool is_phy_starting(struct isci_phy *iphy)
Adam Gruchala4a33c522011-05-10 23:54:23 +0000840{
Dan Williams89a73012011-06-30 19:14:33 -0700841 enum sci_phy_states state;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000842
Dan Williams85280952011-06-28 15:05:53 -0700843 state = iphy->sm.current_state_id;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000844 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000845 case SCI_PHY_STARTING:
846 case SCI_PHY_SUB_INITIAL:
847 case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN:
848 case SCI_PHY_SUB_AWAIT_IAF_UF:
849 case SCI_PHY_SUB_AWAIT_SAS_POWER:
850 case SCI_PHY_SUB_AWAIT_SATA_POWER:
851 case SCI_PHY_SUB_AWAIT_SATA_PHY_EN:
852 case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN:
853 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF:
854 case SCI_PHY_SUB_FINAL:
Adam Gruchala4a33c522011-05-10 23:54:23 +0000855 return true;
856 default:
857 return false;
858 }
859}
860
Dan Williamscc9203b2011-05-08 17:34:44 -0700861/**
Dan Williams89a73012011-06-30 19:14:33 -0700862 * sci_controller_start_next_phy - start phy
Dan Williamscc9203b2011-05-08 17:34:44 -0700863 * @scic: controller
864 *
865 * If all the phys have been started, then attempt to transition the
866 * controller to the READY state and inform the user
Dan Williams89a73012011-06-30 19:14:33 -0700867 * (sci_cb_controller_start_complete()).
Dan Williamscc9203b2011-05-08 17:34:44 -0700868 */
Dan Williams89a73012011-06-30 19:14:33 -0700869static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700870{
Dan Williams89a73012011-06-30 19:14:33 -0700871 struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williams85280952011-06-28 15:05:53 -0700872 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700873 enum sci_status status;
874
875 status = SCI_SUCCESS;
876
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700877 if (ihost->phy_startup_timer_pending)
Dan Williamscc9203b2011-05-08 17:34:44 -0700878 return status;
879
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700880 if (ihost->next_phy_to_start >= SCI_MAX_PHYS) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700881 bool is_controller_start_complete = true;
882 u32 state;
883 u8 index;
884
885 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams85280952011-06-28 15:05:53 -0700886 iphy = &ihost->phys[index];
887 state = iphy->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -0700888
Dan Williams85280952011-06-28 15:05:53 -0700889 if (!phy_get_non_dummy_port(iphy))
Dan Williamscc9203b2011-05-08 17:34:44 -0700890 continue;
891
892 /* The controller start operation is complete iff:
893 * - all links have been given an opportunity to start
894 * - have no indication of a connected device
895 * - have an indication of a connected device and it has
896 * finished the link training process.
897 */
Dan Williams85280952011-06-28 15:05:53 -0700898 if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) ||
899 (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) ||
Marcin Tomczakbe778342012-01-04 01:33:31 -0800900 (iphy->is_in_link_training == true && is_phy_starting(iphy)) ||
901 (ihost->port_agent.phy_ready_mask != ihost->port_agent.phy_configured_mask)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700902 is_controller_start_complete = false;
903 break;
904 }
905 }
906
907 /*
908 * The controller has successfully finished the start process.
909 * Inform the SCI Core user and transition to the READY state. */
910 if (is_controller_start_complete == true) {
Dan Williams89a73012011-06-30 19:14:33 -0700911 sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700912 sci_del_timer(&ihost->phy_timer);
913 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -0700914 }
915 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700916 iphy = &ihost->phys[ihost->next_phy_to_start];
Dan Williamscc9203b2011-05-08 17:34:44 -0700917
918 if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
Dan Williams85280952011-06-28 15:05:53 -0700919 if (phy_get_non_dummy_port(iphy) == NULL) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700920 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700921
922 /* Caution recursion ahead be forwarned
923 *
924 * The PHY was never added to a PORT in MPC mode
925 * so start the next phy in sequence This phy
926 * will never go link up and will not draw power
927 * the OEM parameters either configured the phy
928 * incorrectly for the PORT or it was never
929 * assigned to a PORT
930 */
Dan Williams89a73012011-06-30 19:14:33 -0700931 return sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -0700932 }
933 }
934
Dan Williams89a73012011-06-30 19:14:33 -0700935 status = sci_phy_start(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -0700936
937 if (status == SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700938 sci_mod_timer(&ihost->phy_timer,
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700939 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700940 ihost->phy_startup_timer_pending = true;
Dan Williamscc9203b2011-05-08 17:34:44 -0700941 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700942 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700943 "%s: Controller stop operation failed "
944 "to stop phy %d because of status "
945 "%d.\n",
946 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700947 ihost->phys[ihost->next_phy_to_start].phy_index,
Dan Williamscc9203b2011-05-08 17:34:44 -0700948 status);
949 }
950
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700951 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700952 }
953
954 return status;
955}
956
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700957static void phy_startup_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -0700958{
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700959 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700960 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700961 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -0700962 enum sci_status status;
963
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700964 spin_lock_irqsave(&ihost->scic_lock, flags);
965
966 if (tmr->cancel)
967 goto done;
968
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700969 ihost->phy_startup_timer_pending = false;
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700970
971 do {
Dan Williams89a73012011-06-30 19:14:33 -0700972 status = sci_controller_start_next_phy(ihost);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700973 } while (status != SCI_SUCCESS);
974
975done:
976 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -0700977}
978
Dan Williamsac668c62011-06-07 18:50:55 -0700979static u16 isci_tci_active(struct isci_host *ihost)
980{
981 return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
982}
983
Dan Williams89a73012011-06-30 19:14:33 -0700984static enum sci_status sci_controller_start(struct isci_host *ihost,
Dan Williamscc9203b2011-05-08 17:34:44 -0700985 u32 timeout)
986{
Dan Williamscc9203b2011-05-08 17:34:44 -0700987 enum sci_status result;
988 u16 index;
989
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700990 if (ihost->sm.current_state_id != SCIC_INITIALIZED) {
991 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700992 "SCIC Controller start operation requested in "
993 "invalid state\n");
994 return SCI_FAILURE_INVALID_STATE;
995 }
996
997 /* Build the TCi free pool */
Dan Williamsac668c62011-06-07 18:50:55 -0700998 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8);
999 ihost->tci_head = 0;
1000 ihost->tci_tail = 0;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001001 for (index = 0; index < ihost->task_context_entries; index++)
Dan Williamsac668c62011-06-07 18:50:55 -07001002 isci_tci_free(ihost, index);
Dan Williamscc9203b2011-05-08 17:34:44 -07001003
1004 /* Build the RNi free pool */
Dan Williams89a73012011-06-30 19:14:33 -07001005 sci_remote_node_table_initialize(&ihost->available_remote_nodes,
1006 ihost->remote_node_entries);
Dan Williamscc9203b2011-05-08 17:34:44 -07001007
1008 /*
1009 * Before anything else lets make sure we will not be
1010 * interrupted by the hardware.
1011 */
Dan Williams89a73012011-06-30 19:14:33 -07001012 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001013
1014 /* Enable the port task scheduler */
Dan Williams89a73012011-06-30 19:14:33 -07001015 sci_controller_enable_port_task_scheduler(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001016
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001017 /* Assign all the task entries to ihost physical function */
Dan Williams89a73012011-06-30 19:14:33 -07001018 sci_controller_assign_task_entries(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001019
1020 /* Now initialize the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001021 sci_controller_initialize_completion_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001022
1023 /* Initialize the unsolicited frame queue for use */
Dan Williams89a73012011-06-30 19:14:33 -07001024 sci_controller_initialize_unsolicited_frame_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001025
1026 /* Start all of the ports on this controller */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001027 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001028 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001029
Dan Williams89a73012011-06-30 19:14:33 -07001030 result = sci_port_start(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001031 if (result)
1032 return result;
1033 }
1034
Dan Williams89a73012011-06-30 19:14:33 -07001035 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001036
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001037 sci_mod_timer(&ihost->timer, timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07001038
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001039 sci_change_state(&ihost->sm, SCIC_STARTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001040
1041 return SCI_SUCCESS;
1042}
1043
Dan Williams6f231dd2011-07-02 22:56:22 -07001044void isci_host_scan_start(struct Scsi_Host *shost)
1045{
Dan Williams4393aa42011-03-31 13:10:44 -07001046 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams89a73012011-06-30 19:14:33 -07001047 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07001048
Dan Williams0cf89d12011-02-18 09:25:07 -08001049 set_bit(IHOST_START_PENDING, &ihost->flags);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001050
1051 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001052 sci_controller_start(ihost, tmo);
1053 sci_controller_enable_interrupts(ihost);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001054 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001055}
1056
Dan Williamscc9203b2011-05-08 17:34:44 -07001057static void isci_host_stop_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07001058{
Dan Williams0cf89d12011-02-18 09:25:07 -08001059 isci_host_change_state(ihost, isci_stopped);
Dan Williams89a73012011-06-30 19:14:33 -07001060 sci_controller_disable_interrupts(ihost);
Dan Williams0cf89d12011-02-18 09:25:07 -08001061 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
1062 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07001063}
1064
Dan Williams89a73012011-06-30 19:14:33 -07001065static void sci_controller_completion_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001066{
1067 /* Empty out the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001068 if (sci_controller_completion_queue_has_entries(ihost))
1069 sci_controller_process_completions(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001070
1071 /* Clear the interrupt and enable all interrupts again */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001072 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001073 /* Could we write the value of SMU_ISR_COMPLETION? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001074 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
1075 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07001076}
1077
Dan Williams6f231dd2011-07-02 22:56:22 -07001078/**
1079 * isci_host_completion_routine() - This function is the delayed service
1080 * routine that calls the sci core library's completion handler. It's
1081 * scheduled as a tasklet from the interrupt service routine when interrupts
1082 * in use, or set as the timeout function in polled mode.
1083 * @data: This parameter specifies the ISCI host object
1084 *
1085 */
1086static void isci_host_completion_routine(unsigned long data)
1087{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001088 struct isci_host *ihost = (struct isci_host *)data;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001089 struct list_head completed_request_list;
1090 struct list_head errored_request_list;
1091 struct list_head *current_position;
1092 struct list_head *next_position;
Dan Williams6f231dd2011-07-02 22:56:22 -07001093 struct isci_request *request;
1094 struct isci_request *next_request;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001095 struct sas_task *task;
Dan Williams9b4be522011-07-29 17:17:10 -07001096 u16 active;
Dan Williams6f231dd2011-07-02 22:56:22 -07001097
1098 INIT_LIST_HEAD(&completed_request_list);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001099 INIT_LIST_HEAD(&errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001100
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001101 spin_lock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001102
Dan Williams89a73012011-06-30 19:14:33 -07001103 sci_controller_completion_handler(ihost);
Dan Williamsc7ef4032011-02-18 09:25:05 -08001104
Dan Williams6f231dd2011-07-02 22:56:22 -07001105 /* Take the lists of completed I/Os from the host. */
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001106
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001107 list_splice_init(&ihost->requests_to_complete,
Dan Williams6f231dd2011-07-02 22:56:22 -07001108 &completed_request_list);
1109
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001110 /* Take the list of errored I/Os from the host. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001111 list_splice_init(&ihost->requests_to_errorback,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001112 &errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001113
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001114 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001115
1116 /* Process any completions in the lists. */
1117 list_for_each_safe(current_position, next_position,
1118 &completed_request_list) {
1119
1120 request = list_entry(current_position, struct isci_request,
1121 completed_node);
1122 task = isci_request_access_task(request);
1123
1124 /* Normal notification (task_done) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001125 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001126 "%s: Normal - request/task = %p/%p\n",
1127 __func__,
1128 request,
1129 task);
1130
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001131 /* Return the task to libsas */
1132 if (task != NULL) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001133
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001134 task->lldd_task = NULL;
1135 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1136
1137 /* If the task is already in the abort path,
1138 * the task_done callback cannot be called.
1139 */
1140 task->task_done(task);
1141 }
1142 }
Dan Williams312e0c22011-06-28 13:47:09 -07001143
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001144 spin_lock_irq(&ihost->scic_lock);
1145 isci_free_tag(ihost, request->io_tag);
1146 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001147 }
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001148 list_for_each_entry_safe(request, next_request, &errored_request_list,
Dan Williams6f231dd2011-07-02 22:56:22 -07001149 completed_node) {
1150
1151 task = isci_request_access_task(request);
1152
1153 /* Use sas_task_abort */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001154 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001155 "%s: Error - request/task = %p/%p\n",
1156 __func__,
1157 request,
1158 task);
1159
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001160 if (task != NULL) {
1161
1162 /* Put the task into the abort path if it's not there
1163 * already.
1164 */
1165 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED))
1166 sas_task_abort(task);
1167
1168 } else {
1169 /* This is a case where the request has completed with a
1170 * status such that it needed further target servicing,
1171 * but the sas_task reference has already been removed
1172 * from the request. Since it was errored, it was not
1173 * being aborted, so there is nothing to do except free
1174 * it.
1175 */
1176
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001177 spin_lock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001178 /* Remove the request from the remote device's list
1179 * of pending requests.
1180 */
1181 list_del_init(&request->dev_node);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001182 isci_free_tag(ihost, request->io_tag);
1183 spin_unlock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001184 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001185 }
1186
Dan Williams9b4be522011-07-29 17:17:10 -07001187 /* the coalesence timeout doubles at each encoding step, so
1188 * update it based on the ilog2 value of the outstanding requests
1189 */
1190 active = isci_tci_active(ihost);
1191 writel(SMU_ICC_GEN_VAL(NUMBER, active) |
1192 SMU_ICC_GEN_VAL(TIMER, ISCI_COALESCE_BASE + ilog2(active)),
1193 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williams6f231dd2011-07-02 22:56:22 -07001194}
1195
Dan Williamscc9203b2011-05-08 17:34:44 -07001196/**
Dan Williams89a73012011-06-30 19:14:33 -07001197 * sci_controller_stop() - This method will stop an individual controller
Dan Williamscc9203b2011-05-08 17:34:44 -07001198 * object.This method will invoke the associated user callback upon
1199 * completion. The completion callback is called when the following
1200 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1201 * controller has been quiesced. This method will ensure that all IO
1202 * requests are quiesced, phys are stopped, and all additional operation by
1203 * the hardware is halted.
1204 * @controller: the handle to the controller object to stop.
1205 * @timeout: This parameter specifies the number of milliseconds in which the
1206 * stop operation should complete.
1207 *
1208 * The controller must be in the STARTED or STOPPED state. Indicate if the
1209 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1210 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1211 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1212 * controller is not either in the STARTED or STOPPED states.
1213 */
Dan Williams89a73012011-06-30 19:14:33 -07001214static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001215{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001216 if (ihost->sm.current_state_id != SCIC_READY) {
1217 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001218 "SCIC Controller stop operation requested in "
1219 "invalid state\n");
1220 return SCI_FAILURE_INVALID_STATE;
1221 }
1222
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001223 sci_mod_timer(&ihost->timer, timeout);
1224 sci_change_state(&ihost->sm, SCIC_STOPPING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001225 return SCI_SUCCESS;
1226}
1227
1228/**
Dan Williams89a73012011-06-30 19:14:33 -07001229 * sci_controller_reset() - This method will reset the supplied core
Dan Williamscc9203b2011-05-08 17:34:44 -07001230 * controller regardless of the state of said controller. This operation is
1231 * considered destructive. In other words, all current operations are wiped
1232 * out. No IO completions for outstanding devices occur. Outstanding IO
1233 * requests are not aborted or completed at the actual remote device.
1234 * @controller: the handle to the controller object to reset.
1235 *
1236 * Indicate if the controller reset method succeeded or failed in some way.
1237 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1238 * the controller reset operation is unable to complete.
1239 */
Dan Williams89a73012011-06-30 19:14:33 -07001240static enum sci_status sci_controller_reset(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001241{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001242 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001243 case SCIC_RESET:
1244 case SCIC_READY:
1245 case SCIC_STOPPED:
1246 case SCIC_FAILED:
Dan Williamscc9203b2011-05-08 17:34:44 -07001247 /*
1248 * The reset operation is not a graceful cleanup, just
1249 * perform the state transition.
1250 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001251 sci_change_state(&ihost->sm, SCIC_RESETTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001252 return SCI_SUCCESS;
1253 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001254 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001255 "SCIC Controller reset operation requested in "
1256 "invalid state\n");
1257 return SCI_FAILURE_INVALID_STATE;
1258 }
1259}
1260
Dan Williams0cf89d12011-02-18 09:25:07 -08001261void isci_host_deinit(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07001262{
1263 int i;
1264
Dan Williamsad4f4c12011-09-01 21:18:31 -07001265 /* disable output data selects */
1266 for (i = 0; i < isci_gpio_count(ihost); i++)
1267 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
1268
Dan Williams0cf89d12011-02-18 09:25:07 -08001269 isci_host_change_state(ihost, isci_stopping);
Dan Williams6f231dd2011-07-02 22:56:22 -07001270 for (i = 0; i < SCI_MAX_PORTS; i++) {
Dan Williamse5313812011-05-07 10:11:43 -07001271 struct isci_port *iport = &ihost->ports[i];
Dan Williams0cf89d12011-02-18 09:25:07 -08001272 struct isci_remote_device *idev, *d;
1273
Dan Williamse5313812011-05-07 10:11:43 -07001274 list_for_each_entry_safe(idev, d, &iport->remote_dev_list, node) {
Dan Williams209fae12011-06-13 17:39:44 -07001275 if (test_bit(IDEV_ALLOCATED, &idev->flags))
1276 isci_remote_device_stop(ihost, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001277 }
1278 }
1279
Dan Williams0cf89d12011-02-18 09:25:07 -08001280 set_bit(IHOST_STOP_PENDING, &ihost->flags);
Dan Williams7c40a802011-03-02 11:49:26 -08001281
1282 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001283 sci_controller_stop(ihost, SCIC_CONTROLLER_STOP_TIMEOUT);
Dan Williams7c40a802011-03-02 11:49:26 -08001284 spin_unlock_irq(&ihost->scic_lock);
1285
Dan Williams0cf89d12011-02-18 09:25:07 -08001286 wait_for_stop(ihost);
Dan Williamsad4f4c12011-09-01 21:18:31 -07001287
1288 /* disable sgpio: where the above wait should give time for the
1289 * enclosure to sample the gpios going inactive
1290 */
1291 writel(0, &ihost->scu_registers->peg0.sgpio.interface_control);
1292
Dan Williams89a73012011-06-30 19:14:33 -07001293 sci_controller_reset(ihost);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001294
1295 /* Cancel any/all outstanding port timers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001296 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001297 struct isci_port *iport = &ihost->ports[i];
1298 del_timer_sync(&iport->timer.timer);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001299 }
1300
Edmund Nadolskia628d472011-05-19 11:59:36 +00001301 /* Cancel any/all outstanding phy timers */
1302 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams85280952011-06-28 15:05:53 -07001303 struct isci_phy *iphy = &ihost->phys[i];
1304 del_timer_sync(&iphy->sata_timer.timer);
Edmund Nadolskia628d472011-05-19 11:59:36 +00001305 }
1306
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001307 del_timer_sync(&ihost->port_agent.timer.timer);
Edmund Nadolskiac0eeb42011-05-19 20:00:51 -07001308
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001309 del_timer_sync(&ihost->power_control.timer.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001310
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001311 del_timer_sync(&ihost->timer.timer);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001312
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001313 del_timer_sync(&ihost->phy_timer.timer);
Dan Williams6f231dd2011-07-02 22:56:22 -07001314}
1315
Dan Williams6f231dd2011-07-02 22:56:22 -07001316static void __iomem *scu_base(struct isci_host *isci_host)
1317{
1318 struct pci_dev *pdev = isci_host->pdev;
1319 int id = isci_host->id;
1320
1321 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
1322}
1323
1324static void __iomem *smu_base(struct isci_host *isci_host)
1325{
1326 struct pci_dev *pdev = isci_host->pdev;
1327 int id = isci_host->id;
1328
1329 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
1330}
1331
Dan Williams89a73012011-06-30 19:14:33 -07001332static void isci_user_parameters_get(struct sci_user_parameters *u)
Dave Jiangb5f18a22011-03-16 14:57:23 -07001333{
Dave Jiangb5f18a22011-03-16 14:57:23 -07001334 int i;
1335
1336 for (i = 0; i < SCI_MAX_PHYS; i++) {
1337 struct sci_phy_user_params *u_phy = &u->phys[i];
1338
1339 u_phy->max_speed_generation = phy_gen;
1340
1341 /* we are not exporting these for now */
1342 u_phy->align_insertion_frequency = 0x7f;
1343 u_phy->in_connection_align_insertion_frequency = 0xff;
1344 u_phy->notify_enable_spin_up_insertion_frequency = 0x33;
1345 }
1346
1347 u->stp_inactivity_timeout = stp_inactive_to;
1348 u->ssp_inactivity_timeout = ssp_inactive_to;
1349 u->stp_max_occupancy_timeout = stp_max_occ_to;
1350 u->ssp_max_occupancy_timeout = ssp_max_occ_to;
1351 u->no_outbound_task_timeout = no_outbound_task_to;
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001352 u->max_concurr_spinup = max_concurr_spinup;
Dave Jiangb5f18a22011-03-16 14:57:23 -07001353}
1354
Dan Williams89a73012011-06-30 19:14:33 -07001355static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001356{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001357 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001358
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001359 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001360}
1361
Dan Williams89a73012011-06-30 19:14:33 -07001362static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001363{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001364 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001365
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001366 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001367}
1368
1369#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1370#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1371#define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1372#define INTERRUPT_COALESCE_NUMBER_MAX 256
1373#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1374#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1375
1376/**
Dan Williams89a73012011-06-30 19:14:33 -07001377 * sci_controller_set_interrupt_coalescence() - This method allows the user to
Dan Williamscc9203b2011-05-08 17:34:44 -07001378 * configure the interrupt coalescence.
1379 * @controller: This parameter represents the handle to the controller object
1380 * for which its interrupt coalesce register is overridden.
1381 * @coalesce_number: Used to control the number of entries in the Completion
1382 * Queue before an interrupt is generated. If the number of entries exceed
1383 * this number, an interrupt will be generated. The valid range of the input
1384 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1385 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1386 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1387 * interrupt coalescing timeout.
1388 *
1389 * Indicate if the user successfully set the interrupt coalesce parameters.
1390 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1391 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1392 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001393static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001394sci_controller_set_interrupt_coalescence(struct isci_host *ihost,
1395 u32 coalesce_number,
1396 u32 coalesce_timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001397{
1398 u8 timeout_encode = 0;
1399 u32 min = 0;
1400 u32 max = 0;
1401
1402 /* Check if the input parameters fall in the range. */
1403 if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX)
1404 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1405
1406 /*
1407 * Defined encoding for interrupt coalescing timeout:
1408 * Value Min Max Units
1409 * ----- --- --- -----
1410 * 0 - - Disabled
1411 * 1 13.3 20.0 ns
1412 * 2 26.7 40.0
1413 * 3 53.3 80.0
1414 * 4 106.7 160.0
1415 * 5 213.3 320.0
1416 * 6 426.7 640.0
1417 * 7 853.3 1280.0
1418 * 8 1.7 2.6 us
1419 * 9 3.4 5.1
1420 * 10 6.8 10.2
1421 * 11 13.7 20.5
1422 * 12 27.3 41.0
1423 * 13 54.6 81.9
1424 * 14 109.2 163.8
1425 * 15 218.5 327.7
1426 * 16 436.9 655.4
1427 * 17 873.8 1310.7
1428 * 18 1.7 2.6 ms
1429 * 19 3.5 5.2
1430 * 20 7.0 10.5
1431 * 21 14.0 21.0
1432 * 22 28.0 41.9
1433 * 23 55.9 83.9
1434 * 24 111.8 167.8
1435 * 25 223.7 335.5
1436 * 26 447.4 671.1
1437 * 27 894.8 1342.2
1438 * 28 1.8 2.7 s
1439 * Others Undefined */
1440
1441 /*
1442 * Use the table above to decide the encode of interrupt coalescing timeout
1443 * value for register writing. */
1444 if (coalesce_timeout == 0)
1445 timeout_encode = 0;
1446 else{
1447 /* make the timeout value in unit of (10 ns). */
1448 coalesce_timeout = coalesce_timeout * 100;
1449 min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10;
1450 max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10;
1451
1452 /* get the encode of timeout for register writing. */
1453 for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN;
1454 timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX;
1455 timeout_encode++) {
1456 if (min <= coalesce_timeout && max > coalesce_timeout)
1457 break;
1458 else if (coalesce_timeout >= max && coalesce_timeout < min * 2
1459 && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) {
1460 if ((coalesce_timeout - max) < (2 * min - coalesce_timeout))
1461 break;
1462 else{
1463 timeout_encode++;
1464 break;
1465 }
1466 } else {
1467 max = max * 2;
1468 min = min * 2;
1469 }
1470 }
1471
1472 if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1)
1473 /* the value is out of range. */
1474 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1475 }
1476
1477 writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) |
1478 SMU_ICC_GEN_VAL(TIMER, timeout_encode),
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001479 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001480
1481
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001482 ihost->interrupt_coalesce_number = (u16)coalesce_number;
1483 ihost->interrupt_coalesce_timeout = coalesce_timeout / 100;
Dan Williamscc9203b2011-05-08 17:34:44 -07001484
1485 return SCI_SUCCESS;
1486}
1487
1488
Dan Williams89a73012011-06-30 19:14:33 -07001489static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001490{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001491 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Marcin Tomczake5cc6aa2012-01-27 11:14:50 -08001492 u32 val;
1493
1494 /* enable clock gating for power control of the scu unit */
1495 val = readl(&ihost->smu_registers->clock_gating_control);
1496 val &= ~(SMU_CGUCR_GEN_BIT(REGCLK_ENABLE) |
1497 SMU_CGUCR_GEN_BIT(TXCLK_ENABLE) |
1498 SMU_CGUCR_GEN_BIT(XCLK_ENABLE));
1499 val |= SMU_CGUCR_GEN_BIT(IDLE_ENABLE);
1500 writel(val, &ihost->smu_registers->clock_gating_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001501
1502 /* set the default interrupt coalescence number and timeout value. */
Dan Williams9b4be522011-07-29 17:17:10 -07001503 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001504}
1505
Dan Williams89a73012011-06-30 19:14:33 -07001506static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001507{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001508 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001509
1510 /* disable interrupt coalescence. */
Dan Williams89a73012011-06-30 19:14:33 -07001511 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001512}
1513
Dan Williams89a73012011-06-30 19:14:33 -07001514static enum sci_status sci_controller_stop_phys(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001515{
1516 u32 index;
1517 enum sci_status status;
1518 enum sci_status phy_status;
Dan Williamscc9203b2011-05-08 17:34:44 -07001519
1520 status = SCI_SUCCESS;
1521
1522 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001523 phy_status = sci_phy_stop(&ihost->phys[index]);
Dan Williamscc9203b2011-05-08 17:34:44 -07001524
1525 if (phy_status != SCI_SUCCESS &&
1526 phy_status != SCI_FAILURE_INVALID_STATE) {
1527 status = SCI_FAILURE;
1528
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001529 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001530 "%s: Controller stop operation failed to stop "
1531 "phy %d because of status %d.\n",
1532 __func__,
Dan Williams85280952011-06-28 15:05:53 -07001533 ihost->phys[index].phy_index, phy_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001534 }
1535 }
1536
1537 return status;
1538}
1539
Dan Williams89a73012011-06-30 19:14:33 -07001540static enum sci_status sci_controller_stop_ports(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001541{
1542 u32 index;
1543 enum sci_status port_status;
1544 enum sci_status status = SCI_SUCCESS;
Dan Williamscc9203b2011-05-08 17:34:44 -07001545
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001546 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001547 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001548
Dan Williams89a73012011-06-30 19:14:33 -07001549 port_status = sci_port_stop(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001550
1551 if ((port_status != SCI_SUCCESS) &&
1552 (port_status != SCI_FAILURE_INVALID_STATE)) {
1553 status = SCI_FAILURE;
1554
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001555 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001556 "%s: Controller stop operation failed to "
1557 "stop port %d because of status %d.\n",
1558 __func__,
Dan Williamsffe191c2011-06-29 13:09:25 -07001559 iport->logical_port_index,
Dan Williamscc9203b2011-05-08 17:34:44 -07001560 port_status);
1561 }
1562 }
1563
1564 return status;
1565}
1566
Dan Williams89a73012011-06-30 19:14:33 -07001567static enum sci_status sci_controller_stop_devices(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001568{
1569 u32 index;
1570 enum sci_status status;
1571 enum sci_status device_status;
1572
1573 status = SCI_SUCCESS;
1574
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001575 for (index = 0; index < ihost->remote_node_entries; index++) {
1576 if (ihost->device_table[index] != NULL) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001577 /* / @todo What timeout value do we want to provide to this request? */
Dan Williams89a73012011-06-30 19:14:33 -07001578 device_status = sci_remote_device_stop(ihost->device_table[index], 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001579
1580 if ((device_status != SCI_SUCCESS) &&
1581 (device_status != SCI_FAILURE_INVALID_STATE)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001582 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001583 "%s: Controller stop operation failed "
1584 "to stop device 0x%p because of "
1585 "status %d.\n",
1586 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001587 ihost->device_table[index], device_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001588 }
1589 }
1590 }
1591
1592 return status;
1593}
1594
Dan Williams89a73012011-06-30 19:14:33 -07001595static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001596{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001597 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001598
1599 /* Stop all of the components for this controller */
Dan Williams89a73012011-06-30 19:14:33 -07001600 sci_controller_stop_phys(ihost);
1601 sci_controller_stop_ports(ihost);
1602 sci_controller_stop_devices(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001603}
1604
Dan Williams89a73012011-06-30 19:14:33 -07001605static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001606{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001607 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001608
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001609 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001610}
1611
Dan Williams89a73012011-06-30 19:14:33 -07001612static void sci_controller_reset_hardware(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001613{
1614 /* Disable interrupts so we dont take any spurious interrupts */
Dan Williams89a73012011-06-30 19:14:33 -07001615 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001616
1617 /* Reset the SCU */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001618 writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001619
1620 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1621 udelay(1000);
1622
1623 /* The write to the CQGR clears the CQP */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001624 writel(0x00000000, &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -07001625
1626 /* The write to the UFQGP clears the UFQPR */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001627 writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001628}
1629
Dan Williams89a73012011-06-30 19:14:33 -07001630static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001631{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001632 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001633
Dan Williams89a73012011-06-30 19:14:33 -07001634 sci_controller_reset_hardware(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001635 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001636}
1637
Dan Williams89a73012011-06-30 19:14:33 -07001638static const struct sci_base_state sci_controller_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001639 [SCIC_INITIAL] = {
Dan Williams89a73012011-06-30 19:14:33 -07001640 .enter_state = sci_controller_initial_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001641 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001642 [SCIC_RESET] = {},
1643 [SCIC_INITIALIZING] = {},
1644 [SCIC_INITIALIZED] = {},
1645 [SCIC_STARTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001646 .exit_state = sci_controller_starting_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001647 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001648 [SCIC_READY] = {
Dan Williams89a73012011-06-30 19:14:33 -07001649 .enter_state = sci_controller_ready_state_enter,
1650 .exit_state = sci_controller_ready_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001651 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001652 [SCIC_RESETTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001653 .enter_state = sci_controller_resetting_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001654 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001655 [SCIC_STOPPING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001656 .enter_state = sci_controller_stopping_state_enter,
1657 .exit_state = sci_controller_stopping_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001658 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001659 [SCIC_STOPPED] = {},
1660 [SCIC_FAILED] = {}
Dan Williamscc9203b2011-05-08 17:34:44 -07001661};
1662
Dan Williams89a73012011-06-30 19:14:33 -07001663static void sci_controller_set_default_config_parameters(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001664{
1665 /* these defaults are overridden by the platform / firmware */
Dan Williamscc9203b2011-05-08 17:34:44 -07001666 u16 index;
1667
1668 /* Default to APC mode. */
Dan Williams89a73012011-06-30 19:14:33 -07001669 ihost->oem_parameters.controller.mode_type = SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001670
1671 /* Default to APC mode. */
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001672 ihost->oem_parameters.controller.max_concurr_spin_up = 1;
Dan Williamscc9203b2011-05-08 17:34:44 -07001673
1674 /* Default to no SSC operation. */
Dan Williams89a73012011-06-30 19:14:33 -07001675 ihost->oem_parameters.controller.do_enable_ssc = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07001676
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001677 /* Default to short cables on all phys. */
1678 ihost->oem_parameters.controller.cable_selection_mask = 0;
1679
Dan Williamscc9203b2011-05-08 17:34:44 -07001680 /* Initialize all of the port parameter information to narrow ports. */
1681 for (index = 0; index < SCI_MAX_PORTS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001682 ihost->oem_parameters.ports[index].phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001683 }
1684
1685 /* Initialize all of the phy parameter information. */
1686 for (index = 0; index < SCI_MAX_PHYS; index++) {
Jeff Skirvinbe168a32012-01-04 01:33:00 -08001687 /* Default to 3G (i.e. Gen 2). */
1688 ihost->user_parameters.phys[index].max_speed_generation =
1689 SCIC_SDS_PARM_GEN2_SPEED;
Dan Williamscc9203b2011-05-08 17:34:44 -07001690
1691 /* the frequencies cannot be 0 */
Dan Williams89a73012011-06-30 19:14:33 -07001692 ihost->user_parameters.phys[index].align_insertion_frequency = 0x7f;
1693 ihost->user_parameters.phys[index].in_connection_align_insertion_frequency = 0xff;
1694 ihost->user_parameters.phys[index].notify_enable_spin_up_insertion_frequency = 0x33;
Dan Williamscc9203b2011-05-08 17:34:44 -07001695
1696 /*
1697 * Previous Vitesse based expanders had a arbitration issue that
1698 * is worked around by having the upper 32-bits of SAS address
1699 * with a value greater then the Vitesse company identifier.
1700 * Hence, usage of 0x5FCFFFFF. */
Dan Williams89a73012011-06-30 19:14:33 -07001701 ihost->oem_parameters.phys[index].sas_address.low = 0x1 + ihost->id;
1702 ihost->oem_parameters.phys[index].sas_address.high = 0x5FCFFFFF;
Dan Williamscc9203b2011-05-08 17:34:44 -07001703 }
1704
Dan Williams89a73012011-06-30 19:14:33 -07001705 ihost->user_parameters.stp_inactivity_timeout = 5;
1706 ihost->user_parameters.ssp_inactivity_timeout = 5;
1707 ihost->user_parameters.stp_max_occupancy_timeout = 5;
1708 ihost->user_parameters.ssp_max_occupancy_timeout = 20;
Marcin Tomczak6024d382012-01-04 01:32:54 -08001709 ihost->user_parameters.no_outbound_task_timeout = 2;
Dan Williamscc9203b2011-05-08 17:34:44 -07001710}
1711
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001712static void controller_timeout(unsigned long data)
1713{
1714 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001715 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer);
1716 struct sci_base_state_machine *sm = &ihost->sm;
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001717 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -07001718
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001719 spin_lock_irqsave(&ihost->scic_lock, flags);
1720
1721 if (tmr->cancel)
1722 goto done;
1723
Edmund Nadolskie3013702011-06-02 00:10:43 +00001724 if (sm->current_state_id == SCIC_STARTING)
Dan Williams89a73012011-06-30 19:14:33 -07001725 sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001726 else if (sm->current_state_id == SCIC_STOPPING) {
1727 sci_change_state(sm, SCIC_FAILED);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001728 isci_host_stop_complete(ihost, SCI_FAILURE_TIMEOUT);
1729 } else /* / @todo Now what do we want to do in this case? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001730 dev_err(&ihost->pdev->dev,
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001731 "%s: Controller timer fired when controller was not "
1732 "in a state being timed.\n",
1733 __func__);
1734
1735done:
1736 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1737}
Dan Williamscc9203b2011-05-08 17:34:44 -07001738
Dan Williams89a73012011-06-30 19:14:33 -07001739static enum sci_status sci_controller_construct(struct isci_host *ihost,
1740 void __iomem *scu_base,
1741 void __iomem *smu_base)
Dan Williamscc9203b2011-05-08 17:34:44 -07001742{
Dan Williamscc9203b2011-05-08 17:34:44 -07001743 u8 i;
1744
Dan Williams89a73012011-06-30 19:14:33 -07001745 sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001746
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001747 ihost->scu_registers = scu_base;
1748 ihost->smu_registers = smu_base;
Dan Williamscc9203b2011-05-08 17:34:44 -07001749
Dan Williams89a73012011-06-30 19:14:33 -07001750 sci_port_configuration_agent_construct(&ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07001751
1752 /* Construct the ports for this controller */
1753 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williams89a73012011-06-30 19:14:33 -07001754 sci_port_construct(&ihost->ports[i], i, ihost);
1755 sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001756
1757 /* Construct the phys for this controller */
1758 for (i = 0; i < SCI_MAX_PHYS; i++) {
1759 /* Add all the PHYs to the dummy port */
Dan Williams89a73012011-06-30 19:14:33 -07001760 sci_phy_construct(&ihost->phys[i],
1761 &ihost->ports[SCI_MAX_PORTS], i);
Dan Williamscc9203b2011-05-08 17:34:44 -07001762 }
1763
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001764 ihost->invalid_phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001765
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001766 sci_init_timer(&ihost->timer, controller_timeout);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001767
Dan Williamscc9203b2011-05-08 17:34:44 -07001768 /* Initialize the User and OEM parameters to default values. */
Dan Williams89a73012011-06-30 19:14:33 -07001769 sci_controller_set_default_config_parameters(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001770
Dan Williams89a73012011-06-30 19:14:33 -07001771 return sci_controller_reset(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001772}
1773
Dave Jiang594e5662012-01-04 01:32:44 -08001774int sci_oem_parameters_validate(struct sci_oem_params *oem, u8 version)
Dan Williamscc9203b2011-05-08 17:34:44 -07001775{
1776 int i;
1777
1778 for (i = 0; i < SCI_MAX_PORTS; i++)
1779 if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX)
1780 return -EINVAL;
1781
1782 for (i = 0; i < SCI_MAX_PHYS; i++)
1783 if (oem->phys[i].sas_address.high == 0 &&
1784 oem->phys[i].sas_address.low == 0)
1785 return -EINVAL;
1786
1787 if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) {
1788 for (i = 0; i < SCI_MAX_PHYS; i++)
1789 if (oem->ports[i].phy_mask != 0)
1790 return -EINVAL;
1791 } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
1792 u8 phy_mask = 0;
1793
1794 for (i = 0; i < SCI_MAX_PHYS; i++)
1795 phy_mask |= oem->ports[i].phy_mask;
1796
1797 if (phy_mask == 0)
1798 return -EINVAL;
1799 } else
1800 return -EINVAL;
1801
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001802 if (oem->controller.max_concurr_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT ||
1803 oem->controller.max_concurr_spin_up < 1)
Dan Williamscc9203b2011-05-08 17:34:44 -07001804 return -EINVAL;
1805
Dave Jiang594e5662012-01-04 01:32:44 -08001806 if (oem->controller.do_enable_ssc) {
1807 if (version < ISCI_ROM_VER_1_1 && oem->controller.do_enable_ssc != 1)
1808 return -EINVAL;
1809
1810 if (version >= ISCI_ROM_VER_1_1) {
1811 u8 test = oem->controller.ssc_sata_tx_spread_level;
1812
1813 switch (test) {
1814 case 0:
1815 case 2:
1816 case 3:
1817 case 6:
1818 case 7:
1819 break;
1820 default:
1821 return -EINVAL;
1822 }
1823
1824 test = oem->controller.ssc_sas_tx_spread_level;
1825 if (oem->controller.ssc_sas_tx_type == 0) {
1826 switch (test) {
1827 case 0:
1828 case 2:
1829 case 3:
1830 break;
1831 default:
1832 return -EINVAL;
1833 }
1834 } else if (oem->controller.ssc_sas_tx_type == 1) {
1835 switch (test) {
1836 case 0:
1837 case 3:
1838 case 6:
1839 break;
1840 default:
1841 return -EINVAL;
1842 }
1843 }
1844 }
1845 }
1846
Dan Williamscc9203b2011-05-08 17:34:44 -07001847 return 0;
1848}
1849
Dan Williams89a73012011-06-30 19:14:33 -07001850static enum sci_status sci_oem_parameters_set(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001851{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001852 u32 state = ihost->sm.current_state_id;
Dave Jiang594e5662012-01-04 01:32:44 -08001853 struct isci_pci_info *pci_info = to_pci_info(ihost->pdev);
Dan Williamscc9203b2011-05-08 17:34:44 -07001854
Edmund Nadolskie3013702011-06-02 00:10:43 +00001855 if (state == SCIC_RESET ||
1856 state == SCIC_INITIALIZING ||
1857 state == SCIC_INITIALIZED) {
Dave Jiang6d7938f2012-01-27 11:17:37 -08001858 u8 oem_version = pci_info->orom ? pci_info->orom->hdr.version :
1859 ISCI_ROM_VER_1_0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001860
Dave Jiang594e5662012-01-04 01:32:44 -08001861 if (sci_oem_parameters_validate(&ihost->oem_parameters,
Dave Jiang6d7938f2012-01-27 11:17:37 -08001862 oem_version))
Dan Williamscc9203b2011-05-08 17:34:44 -07001863 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001864
1865 return SCI_SUCCESS;
1866 }
1867
1868 return SCI_FAILURE_INVALID_STATE;
1869}
1870
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001871static u8 max_spin_up(struct isci_host *ihost)
1872{
1873 if (ihost->user_parameters.max_concurr_spinup)
1874 return min_t(u8, ihost->user_parameters.max_concurr_spinup,
1875 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1876 else
1877 return min_t(u8, ihost->oem_parameters.controller.max_concurr_spin_up,
1878 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1879}
1880
Edmund Nadolski04736612011-05-19 20:17:47 -07001881static void power_control_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -07001882{
Edmund Nadolski04736612011-05-19 20:17:47 -07001883 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001884 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer);
Dan Williams85280952011-06-28 15:05:53 -07001885 struct isci_phy *iphy;
Edmund Nadolski04736612011-05-19 20:17:47 -07001886 unsigned long flags;
1887 u8 i;
Dan Williamscc9203b2011-05-08 17:34:44 -07001888
Edmund Nadolski04736612011-05-19 20:17:47 -07001889 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001890
Edmund Nadolski04736612011-05-19 20:17:47 -07001891 if (tmr->cancel)
1892 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001893
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001894 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001895
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001896 if (ihost->power_control.phys_waiting == 0) {
1897 ihost->power_control.timer_started = false;
Edmund Nadolski04736612011-05-19 20:17:47 -07001898 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001899 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001900
1901 for (i = 0; i < SCI_MAX_PHYS; i++) {
1902
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001903 if (ihost->power_control.phys_waiting == 0)
Edmund Nadolski04736612011-05-19 20:17:47 -07001904 break;
1905
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001906 iphy = ihost->power_control.requesters[i];
Dan Williams85280952011-06-28 15:05:53 -07001907 if (iphy == NULL)
Edmund Nadolski04736612011-05-19 20:17:47 -07001908 continue;
1909
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001910 if (ihost->power_control.phys_granted_power >= max_spin_up(ihost))
Edmund Nadolski04736612011-05-19 20:17:47 -07001911 break;
1912
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001913 ihost->power_control.requesters[i] = NULL;
1914 ihost->power_control.phys_waiting--;
1915 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001916 sci_phy_consume_power_handler(iphy);
Marcin Tomczakbe778342012-01-04 01:33:31 -08001917
1918 if (iphy->protocol == SCIC_SDS_PHY_PROTOCOL_SAS) {
1919 u8 j;
1920
1921 for (j = 0; j < SCI_MAX_PHYS; j++) {
1922 struct isci_phy *requester = ihost->power_control.requesters[j];
1923
1924 /*
1925 * Search the power_control queue to see if there are other phys
1926 * attached to the same remote device. If found, take all of
1927 * them out of await_sas_power state.
1928 */
1929 if (requester != NULL && requester != iphy) {
1930 u8 other = memcmp(requester->frame_rcvd.iaf.sas_addr,
1931 iphy->frame_rcvd.iaf.sas_addr,
1932 sizeof(requester->frame_rcvd.iaf.sas_addr));
1933
1934 if (other == 0) {
1935 ihost->power_control.requesters[j] = NULL;
1936 ihost->power_control.phys_waiting--;
1937 sci_phy_consume_power_handler(requester);
1938 }
1939 }
1940 }
1941 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001942 }
1943
1944 /*
1945 * It doesn't matter if the power list is empty, we need to start the
1946 * timer in case another phy becomes ready.
1947 */
1948 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001949 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001950
1951done:
1952 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001953}
1954
Dan Williams89a73012011-06-30 19:14:33 -07001955void sci_controller_power_control_queue_insert(struct isci_host *ihost,
1956 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001957{
Dan Williams85280952011-06-28 15:05:53 -07001958 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001959
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001960 if (ihost->power_control.phys_granted_power < max_spin_up(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001961 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001962 sci_phy_consume_power_handler(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07001963
1964 /*
1965 * stop and start the power_control timer. When the timer fires, the
1966 * no_of_phys_granted_power will be set to 0
1967 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001968 if (ihost->power_control.timer_started)
1969 sci_del_timer(&ihost->power_control.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001970
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001971 sci_mod_timer(&ihost->power_control.timer,
Edmund Nadolski04736612011-05-19 20:17:47 -07001972 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001973 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001974
Dan Williamscc9203b2011-05-08 17:34:44 -07001975 } else {
Marcin Tomczakbe778342012-01-04 01:33:31 -08001976 /*
1977 * There are phys, attached to the same sas address as this phy, are
1978 * already in READY state, this phy don't need wait.
1979 */
1980 u8 i;
1981 struct isci_phy *current_phy;
1982
1983 for (i = 0; i < SCI_MAX_PHYS; i++) {
1984 u8 other;
1985 current_phy = &ihost->phys[i];
1986
1987 other = memcmp(current_phy->frame_rcvd.iaf.sas_addr,
1988 iphy->frame_rcvd.iaf.sas_addr,
1989 sizeof(current_phy->frame_rcvd.iaf.sas_addr));
1990
1991 if (current_phy->sm.current_state_id == SCI_PHY_READY &&
1992 current_phy->protocol == SCIC_SDS_PHY_PROTOCOL_SAS &&
1993 other == 0) {
1994 sci_phy_consume_power_handler(iphy);
1995 break;
1996 }
1997 }
1998
1999 if (i == SCI_MAX_PHYS) {
2000 /* Add the phy in the waiting list */
2001 ihost->power_control.requesters[iphy->phy_index] = iphy;
2002 ihost->power_control.phys_waiting++;
2003 }
Dan Williamscc9203b2011-05-08 17:34:44 -07002004 }
2005}
2006
Dan Williams89a73012011-06-30 19:14:33 -07002007void sci_controller_power_control_queue_remove(struct isci_host *ihost,
2008 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002009{
Dan Williams85280952011-06-28 15:05:53 -07002010 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07002011
Dan Williams89a73012011-06-30 19:14:33 -07002012 if (ihost->power_control.requesters[iphy->phy_index])
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002013 ihost->power_control.phys_waiting--;
Dan Williamscc9203b2011-05-08 17:34:44 -07002014
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002015 ihost->power_control.requesters[iphy->phy_index] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002016}
2017
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002018static int is_long_cable(int phy, unsigned char selection_byte)
2019{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08002020 return !!(selection_byte & (1 << phy));
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002021}
2022
2023static int is_medium_cable(int phy, unsigned char selection_byte)
2024{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08002025 return !!(selection_byte & (1 << (phy + 4)));
2026}
2027
2028static enum cable_selections decode_selection_byte(
2029 int phy,
2030 unsigned char selection_byte)
2031{
2032 return ((selection_byte & (1 << phy)) ? 1 : 0)
2033 + (selection_byte & (1 << (phy + 4)) ? 2 : 0);
2034}
2035
2036static unsigned char *to_cable_select(struct isci_host *ihost)
2037{
2038 if (is_cable_select_overridden())
2039 return ((unsigned char *)&cable_selection_override)
2040 + ihost->id;
2041 else
2042 return &ihost->oem_parameters.controller.cable_selection_mask;
2043}
2044
2045enum cable_selections decode_cable_selection(struct isci_host *ihost, int phy)
2046{
2047 return decode_selection_byte(phy, *to_cable_select(ihost));
2048}
2049
2050char *lookup_cable_names(enum cable_selections selection)
2051{
2052 static char *cable_names[] = {
2053 [short_cable] = "short",
2054 [long_cable] = "long",
2055 [medium_cable] = "medium",
2056 [undefined_cable] = "<undefined, assumed long>" /* bit 0==1 */
2057 };
2058 return (selection <= undefined_cable) ? cable_names[selection]
2059 : cable_names[undefined_cable];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002060}
2061
Dan Williamscc9203b2011-05-08 17:34:44 -07002062#define AFE_REGISTER_WRITE_DELAY 10
2063
Dan Williams89a73012011-06-30 19:14:33 -07002064static void sci_controller_afe_initialization(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002065{
Dan Williams2e5da882012-01-04 01:32:34 -08002066 struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe;
Dan Williams89a73012011-06-30 19:14:33 -07002067 const struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002068 struct pci_dev *pdev = ihost->pdev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002069 u32 afe_status;
2070 u32 phy_id;
Jeff Skirvin9fee6072012-01-04 01:32:49 -08002071 unsigned char cable_selection_mask = *to_cable_select(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002072
2073 /* Clear DFX Status registers */
Dan Williams2e5da882012-01-04 01:32:34 -08002074 writel(0x0081000f, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002075 udelay(AFE_REGISTER_WRITE_DELAY);
2076
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002077 if (is_b0(pdev) || is_c0(pdev) || is_c1(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002078 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
Dan Williams2e5da882012-01-04 01:32:34 -08002079 * Timer, PM Stagger Timer
2080 */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002081 writel(0x0007FFFF, &afe->afe_pmsn_master_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002082 udelay(AFE_REGISTER_WRITE_DELAY);
2083 }
2084
2085 /* Configure bias currents to normal */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002086 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002087 writel(0x00005A00, &afe->afe_bias_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002088 else if (is_b0(pdev) || is_c0(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002089 writel(0x00005F00, &afe->afe_bias_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002090 else if (is_c1(pdev))
2091 writel(0x00005500, &afe->afe_bias_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002092
2093 udelay(AFE_REGISTER_WRITE_DELAY);
2094
2095 /* Enable PLL */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002096 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002097 writel(0x80040908, &afe->afe_pll_control0);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002098 else if (is_b0(pdev) || is_c0(pdev))
2099 writel(0x80040A08, &afe->afe_pll_control0);
2100 else if (is_c1(pdev)) {
2101 writel(0x80000B08, &afe->afe_pll_control0);
2102 udelay(AFE_REGISTER_WRITE_DELAY);
2103 writel(0x00000B08, &afe->afe_pll_control0);
2104 udelay(AFE_REGISTER_WRITE_DELAY);
2105 writel(0x80000B08, &afe->afe_pll_control0);
2106 }
Dan Williamscc9203b2011-05-08 17:34:44 -07002107
2108 udelay(AFE_REGISTER_WRITE_DELAY);
2109
2110 /* Wait for the PLL to lock */
2111 do {
Dan Williams2e5da882012-01-04 01:32:34 -08002112 afe_status = readl(&afe->afe_common_block_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002113 udelay(AFE_REGISTER_WRITE_DELAY);
2114 } while ((afe_status & 0x00001000) == 0);
2115
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002116 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002117 /* Shorten SAS SNW lock time (RxLock timer value from 76
2118 * us to 50 us)
2119 */
2120 writel(0x7bcc96ad, &afe->afe_pmsn_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002121 udelay(AFE_REGISTER_WRITE_DELAY);
2122 }
2123
2124 for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) {
Dan Williams2e5da882012-01-04 01:32:34 -08002125 struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_id];
Dan Williamscc9203b2011-05-08 17:34:44 -07002126 const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002127 int cable_length_long =
2128 is_long_cable(phy_id, cable_selection_mask);
2129 int cable_length_medium =
2130 is_medium_cable(phy_id, cable_selection_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07002131
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002132 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002133 /* All defaults, except the Receive Word
2134 * Alignament/Comma Detect Enable....(0xe800)
2135 */
2136 writel(0x00004512, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002137 udelay(AFE_REGISTER_WRITE_DELAY);
2138
Dan Williams2e5da882012-01-04 01:32:34 -08002139 writel(0x0050100F, &xcvr->afe_xcvr_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002140 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002141 } else if (is_b0(pdev)) {
2142 /* Configure transmitter SSC parameters */
2143 writel(0x00030000, &xcvr->afe_tx_ssc_control);
2144 udelay(AFE_REGISTER_WRITE_DELAY);
2145 } else if (is_c0(pdev)) {
2146 /* Configure transmitter SSC parameters */
2147 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2148 udelay(AFE_REGISTER_WRITE_DELAY);
2149
2150 /* All defaults, except the Receive Word
2151 * Alignament/Comma Detect Enable....(0xe800)
2152 */
2153 writel(0x00014500, &xcvr->afe_xcvr_control0);
2154 udelay(AFE_REGISTER_WRITE_DELAY);
2155 } else if (is_c1(pdev)) {
2156 /* Configure transmitter SSC parameters */
2157 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2158 udelay(AFE_REGISTER_WRITE_DELAY);
2159
2160 /* All defaults, except the Receive Word
2161 * Alignament/Comma Detect Enable....(0xe800)
2162 */
2163 writel(0x0001C500, &xcvr->afe_xcvr_control0);
2164 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamscc9203b2011-05-08 17:34:44 -07002165 }
2166
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002167 /* Power up TX and RX out from power down (PWRDNTX and
2168 * PWRDNRX) & increase TX int & ext bias 20%....(0xe85c)
Dan Williams2e5da882012-01-04 01:32:34 -08002169 */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002170 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002171 writel(0x000003F0, &xcvr->afe_channel_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002172 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002173 writel(0x000003D7, &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002174 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002175
Dan Williams2e5da882012-01-04 01:32:34 -08002176 writel(0x000003D4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002177 } else if (is_c0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002178 writel(0x000001E7, &xcvr->afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002179 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002180
Dan Williams2e5da882012-01-04 01:32:34 -08002181 writel(0x000001E4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002182 } else if (is_c1(pdev)) {
2183 writel(cable_length_long ? 0x000002F7 : 0x000001F7,
2184 &xcvr->afe_channel_control);
2185 udelay(AFE_REGISTER_WRITE_DELAY);
2186
2187 writel(cable_length_long ? 0x000002F4 : 0x000001F4,
2188 &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002189 }
2190 udelay(AFE_REGISTER_WRITE_DELAY);
2191
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002192 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002193 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002194 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002195 udelay(AFE_REGISTER_WRITE_DELAY);
2196 }
2197
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002198 if (is_a2(pdev) || is_b0(pdev))
2199 /* RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0,
2200 * TPD=0x0(TX Power On), RDD=0x0(RX Detect
2201 * Enabled) ....(0xe800)
2202 */
2203 writel(0x00004100, &xcvr->afe_xcvr_control0);
2204 else if (is_c0(pdev))
2205 writel(0x00014100, &xcvr->afe_xcvr_control0);
2206 else if (is_c1(pdev))
2207 writel(0x0001C100, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002208 udelay(AFE_REGISTER_WRITE_DELAY);
2209
2210 /* Leave DFE/FFE on */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002211 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002212 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002213 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002214 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002215 udelay(AFE_REGISTER_WRITE_DELAY);
2216 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002217 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002218 } else if (is_c0(pdev)) {
2219 writel(0x01400C0F, &xcvr->afe_rx_ssc_control1);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002220 udelay(AFE_REGISTER_WRITE_DELAY);
2221
Dan Williams2e5da882012-01-04 01:32:34 -08002222 writel(0x3F6F103F, &xcvr->afe_rx_ssc_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002223 udelay(AFE_REGISTER_WRITE_DELAY);
2224
2225 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002226 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002227 } else if (is_c1(pdev)) {
2228 writel(cable_length_long ? 0x01500C0C :
2229 cable_length_medium ? 0x01400C0D : 0x02400C0D,
2230 &xcvr->afe_xcvr_control1);
2231 udelay(AFE_REGISTER_WRITE_DELAY);
2232
2233 writel(0x000003E0, &xcvr->afe_dfx_rx_control1);
2234 udelay(AFE_REGISTER_WRITE_DELAY);
2235
2236 writel(cable_length_long ? 0x33091C1F :
2237 cable_length_medium ? 0x3315181F : 0x2B17161F,
2238 &xcvr->afe_rx_ssc_control0);
2239 udelay(AFE_REGISTER_WRITE_DELAY);
2240
2241 /* Enable TX equalization (0xe824) */
2242 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002243 }
Adam Gruchaladbb07432011-06-01 22:31:03 +00002244
Dan Williamscc9203b2011-05-08 17:34:44 -07002245 udelay(AFE_REGISTER_WRITE_DELAY);
2246
Dan Williams2e5da882012-01-04 01:32:34 -08002247 writel(oem_phy->afe_tx_amp_control0, &xcvr->afe_tx_amp_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002248 udelay(AFE_REGISTER_WRITE_DELAY);
2249
Dan Williams2e5da882012-01-04 01:32:34 -08002250 writel(oem_phy->afe_tx_amp_control1, &xcvr->afe_tx_amp_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002251 udelay(AFE_REGISTER_WRITE_DELAY);
2252
Dan Williams2e5da882012-01-04 01:32:34 -08002253 writel(oem_phy->afe_tx_amp_control2, &xcvr->afe_tx_amp_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002254 udelay(AFE_REGISTER_WRITE_DELAY);
2255
Dan Williams2e5da882012-01-04 01:32:34 -08002256 writel(oem_phy->afe_tx_amp_control3, &xcvr->afe_tx_amp_control3);
Dan Williamscc9203b2011-05-08 17:34:44 -07002257 udelay(AFE_REGISTER_WRITE_DELAY);
2258 }
2259
2260 /* Transfer control to the PEs */
Dan Williams2e5da882012-01-04 01:32:34 -08002261 writel(0x00010f00, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002262 udelay(AFE_REGISTER_WRITE_DELAY);
2263}
2264
Dan Williams89a73012011-06-30 19:14:33 -07002265static void sci_controller_initialize_power_control(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002266{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002267 sci_init_timer(&ihost->power_control.timer, power_control_timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07002268
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002269 memset(ihost->power_control.requesters, 0,
2270 sizeof(ihost->power_control.requesters));
Dan Williamscc9203b2011-05-08 17:34:44 -07002271
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002272 ihost->power_control.phys_waiting = 0;
2273 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002274}
2275
Dan Williams89a73012011-06-30 19:14:33 -07002276static enum sci_status sci_controller_initialize(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002277{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002278 struct sci_base_state_machine *sm = &ihost->sm;
Dan Williams7c78da32011-06-01 16:00:01 -07002279 enum sci_status result = SCI_FAILURE;
2280 unsigned long i, state, val;
Dan Williamscc9203b2011-05-08 17:34:44 -07002281
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002282 if (ihost->sm.current_state_id != SCIC_RESET) {
2283 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002284 "SCIC Controller initialize operation requested "
2285 "in invalid state\n");
2286 return SCI_FAILURE_INVALID_STATE;
2287 }
2288
Edmund Nadolskie3013702011-06-02 00:10:43 +00002289 sci_change_state(sm, SCIC_INITIALIZING);
Dan Williamscc9203b2011-05-08 17:34:44 -07002290
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002291 sci_init_timer(&ihost->phy_timer, phy_startup_timeout);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -07002292
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002293 ihost->next_phy_to_start = 0;
2294 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07002295
Dan Williams89a73012011-06-30 19:14:33 -07002296 sci_controller_initialize_power_control(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002297
2298 /*
2299 * There is nothing to do here for B0 since we do not have to
2300 * program the AFE registers.
2301 * / @todo The AFE settings are supposed to be correct for the B0 but
2302 * / presently they seem to be wrong. */
Dan Williams89a73012011-06-30 19:14:33 -07002303 sci_controller_afe_initialization(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002304
Dan Williams7c78da32011-06-01 16:00:01 -07002305
2306 /* Take the hardware out of reset */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002307 writel(0, &ihost->smu_registers->soft_reset_control);
Dan Williams7c78da32011-06-01 16:00:01 -07002308
2309 /*
2310 * / @todo Provide meaningfull error code for hardware failure
2311 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2312 for (i = 100; i >= 1; i--) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002313 u32 status;
Dan Williamscc9203b2011-05-08 17:34:44 -07002314
Dan Williams7c78da32011-06-01 16:00:01 -07002315 /* Loop until the hardware reports success */
2316 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002317 status = readl(&ihost->smu_registers->control_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002318
Dan Williams7c78da32011-06-01 16:00:01 -07002319 if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED)
2320 break;
Dan Williamscc9203b2011-05-08 17:34:44 -07002321 }
Dan Williams7c78da32011-06-01 16:00:01 -07002322 if (i == 0)
2323 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002324
Dan Williams7c78da32011-06-01 16:00:01 -07002325 /*
2326 * Determine what are the actaul device capacities that the
2327 * hardware will support */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002328 val = readl(&ihost->smu_registers->device_context_capacity);
Dan Williamscc9203b2011-05-08 17:34:44 -07002329
Dan Williams7c78da32011-06-01 16:00:01 -07002330 /* Record the smaller of the two capacity values */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002331 ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS);
2332 ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS);
2333 ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES);
Dan Williamscc9203b2011-05-08 17:34:44 -07002334
Dan Williams7c78da32011-06-01 16:00:01 -07002335 /*
2336 * Make all PEs that are unassigned match up with the
2337 * logical ports
2338 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002339 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams7c78da32011-06-01 16:00:01 -07002340 struct scu_port_task_scheduler_group_registers __iomem
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002341 *ptsg = &ihost->scu_registers->peg0.ptsg;
Dan Williamscc9203b2011-05-08 17:34:44 -07002342
Dan Williams7c78da32011-06-01 16:00:01 -07002343 writel(i, &ptsg->protocol_engine[i]);
Dan Williamscc9203b2011-05-08 17:34:44 -07002344 }
2345
2346 /* Initialize hardware PCI Relaxed ordering in DMA engines */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002347 val = readl(&ihost->scu_registers->sdma.pdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002348 val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002349 writel(val, &ihost->scu_registers->sdma.pdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002350
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002351 val = readl(&ihost->scu_registers->sdma.cdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002352 val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002353 writel(val, &ihost->scu_registers->sdma.cdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002354
2355 /*
2356 * Initialize the PHYs before the PORTs because the PHY registers
2357 * are accessed during the port initialization.
2358 */
Dan Williams7c78da32011-06-01 16:00:01 -07002359 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002360 result = sci_phy_initialize(&ihost->phys[i],
2361 &ihost->scu_registers->peg0.pe[i].tl,
2362 &ihost->scu_registers->peg0.pe[i].ll);
Dan Williams7c78da32011-06-01 16:00:01 -07002363 if (result != SCI_SUCCESS)
2364 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002365 }
2366
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002367 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002368 struct isci_port *iport = &ihost->ports[i];
Dan Williams7c78da32011-06-01 16:00:01 -07002369
Dan Williams89a73012011-06-30 19:14:33 -07002370 iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i];
2371 iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0];
2372 iport->viit_registers = &ihost->scu_registers->peg0.viit[i];
Dan Williamscc9203b2011-05-08 17:34:44 -07002373 }
2374
Dan Williams89a73012011-06-30 19:14:33 -07002375 result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07002376
Dan Williams7c78da32011-06-01 16:00:01 -07002377 out:
Dan Williamscc9203b2011-05-08 17:34:44 -07002378 /* Advance the controller state machine */
2379 if (result == SCI_SUCCESS)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002380 state = SCIC_INITIALIZED;
Dan Williamscc9203b2011-05-08 17:34:44 -07002381 else
Edmund Nadolskie3013702011-06-02 00:10:43 +00002382 state = SCIC_FAILED;
2383 sci_change_state(sm, state);
Dan Williamscc9203b2011-05-08 17:34:44 -07002384
2385 return result;
2386}
2387
Dan Williams89a73012011-06-30 19:14:33 -07002388static enum sci_status sci_user_parameters_set(struct isci_host *ihost,
2389 struct sci_user_parameters *sci_parms)
Dan Williamscc9203b2011-05-08 17:34:44 -07002390{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002391 u32 state = ihost->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -07002392
Edmund Nadolskie3013702011-06-02 00:10:43 +00002393 if (state == SCIC_RESET ||
2394 state == SCIC_INITIALIZING ||
2395 state == SCIC_INITIALIZED) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002396 u16 index;
2397
2398 /*
2399 * Validate the user parameters. If they are not legal, then
2400 * return a failure.
2401 */
2402 for (index = 0; index < SCI_MAX_PHYS; index++) {
2403 struct sci_phy_user_params *user_phy;
2404
Dan Williams89a73012011-06-30 19:14:33 -07002405 user_phy = &sci_parms->phys[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07002406
2407 if (!((user_phy->max_speed_generation <=
2408 SCIC_SDS_PARM_MAX_SPEED) &&
2409 (user_phy->max_speed_generation >
2410 SCIC_SDS_PARM_NO_SPEED)))
2411 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2412
2413 if (user_phy->in_connection_align_insertion_frequency <
2414 3)
2415 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2416
2417 if ((user_phy->in_connection_align_insertion_frequency <
2418 3) ||
2419 (user_phy->align_insertion_frequency == 0) ||
2420 (user_phy->
2421 notify_enable_spin_up_insertion_frequency ==
2422 0))
2423 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2424 }
2425
Dan Williams89a73012011-06-30 19:14:33 -07002426 if ((sci_parms->stp_inactivity_timeout == 0) ||
2427 (sci_parms->ssp_inactivity_timeout == 0) ||
2428 (sci_parms->stp_max_occupancy_timeout == 0) ||
2429 (sci_parms->ssp_max_occupancy_timeout == 0) ||
2430 (sci_parms->no_outbound_task_timeout == 0))
Dan Williamscc9203b2011-05-08 17:34:44 -07002431 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2432
Dan Williams89a73012011-06-30 19:14:33 -07002433 memcpy(&ihost->user_parameters, sci_parms, sizeof(*sci_parms));
Dan Williamscc9203b2011-05-08 17:34:44 -07002434
2435 return SCI_SUCCESS;
2436 }
2437
2438 return SCI_FAILURE_INVALID_STATE;
2439}
2440
Dan Williams89a73012011-06-30 19:14:33 -07002441static int sci_controller_mem_init(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002442{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002443 struct device *dev = &ihost->pdev->dev;
Dan Williams7c78da32011-06-01 16:00:01 -07002444 dma_addr_t dma;
2445 size_t size;
2446 int err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002447
Dan Williams7c78da32011-06-01 16:00:01 -07002448 size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002449 ihost->completion_queue = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2450 if (!ihost->completion_queue)
Dan Williamscc9203b2011-05-08 17:34:44 -07002451 return -ENOMEM;
2452
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002453 writel(lower_32_bits(dma), &ihost->smu_registers->completion_queue_lower);
2454 writel(upper_32_bits(dma), &ihost->smu_registers->completion_queue_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002455
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002456 size = ihost->remote_node_entries * sizeof(union scu_remote_node_context);
2457 ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &dma,
Dan Williams89a73012011-06-30 19:14:33 -07002458 GFP_KERNEL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002459 if (!ihost->remote_node_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002460 return -ENOMEM;
2461
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002462 writel(lower_32_bits(dma), &ihost->smu_registers->remote_node_context_lower);
2463 writel(upper_32_bits(dma), &ihost->smu_registers->remote_node_context_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002464
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002465 size = ihost->task_context_entries * sizeof(struct scu_task_context),
2466 ihost->task_context_table = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2467 if (!ihost->task_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002468 return -ENOMEM;
2469
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002470 ihost->task_context_dma = dma;
2471 writel(lower_32_bits(dma), &ihost->smu_registers->host_task_table_lower);
2472 writel(upper_32_bits(dma), &ihost->smu_registers->host_task_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002473
Dan Williams89a73012011-06-30 19:14:33 -07002474 err = sci_unsolicited_frame_control_construct(ihost);
Dan Williams7c78da32011-06-01 16:00:01 -07002475 if (err)
2476 return err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002477
2478 /*
2479 * Inform the silicon as to the location of the UF headers and
2480 * address table.
2481 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002482 writel(lower_32_bits(ihost->uf_control.headers.physical_address),
2483 &ihost->scu_registers->sdma.uf_header_base_address_lower);
2484 writel(upper_32_bits(ihost->uf_control.headers.physical_address),
2485 &ihost->scu_registers->sdma.uf_header_base_address_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002486
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002487 writel(lower_32_bits(ihost->uf_control.address_table.physical_address),
2488 &ihost->scu_registers->sdma.uf_address_table_lower);
2489 writel(upper_32_bits(ihost->uf_control.address_table.physical_address),
2490 &ihost->scu_registers->sdma.uf_address_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002491
2492 return 0;
2493}
2494
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002495int isci_host_init(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07002496{
Dan Williamsd9c37392011-03-03 17:59:32 -08002497 int err = 0, i;
Dan Williams6f231dd2011-07-02 22:56:22 -07002498 enum sci_status status;
Dan Williams89a73012011-06-30 19:14:33 -07002499 struct sci_user_parameters sci_user_params;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002500 struct isci_pci_info *pci_info = to_pci_info(ihost->pdev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002501
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002502 spin_lock_init(&ihost->state_lock);
2503 spin_lock_init(&ihost->scic_lock);
2504 init_waitqueue_head(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07002505
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002506 isci_host_change_state(ihost, isci_starting);
Dan Williams6f231dd2011-07-02 22:56:22 -07002507
Dan Williams89a73012011-06-30 19:14:33 -07002508 status = sci_controller_construct(ihost, scu_base(ihost),
2509 smu_base(ihost));
Dan Williams6f231dd2011-07-02 22:56:22 -07002510
2511 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002512 dev_err(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002513 "%s: sci_controller_construct failed - status = %x\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002514 __func__,
2515 status);
Dave Jiang858d4aa2011-02-22 01:27:03 -08002516 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002517 }
2518
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002519 ihost->sas_ha.dev = &ihost->pdev->dev;
2520 ihost->sas_ha.lldd_ha = ihost;
Dan Williams6f231dd2011-07-02 22:56:22 -07002521
Dan Williamsd044af12011-03-08 09:52:49 -08002522 /*
2523 * grab initial values stored in the controller object for OEM and USER
2524 * parameters
2525 */
Dan Williams89a73012011-06-30 19:14:33 -07002526 isci_user_parameters_get(&sci_user_params);
2527 status = sci_user_parameters_set(ihost, &sci_user_params);
Dan Williamsd044af12011-03-08 09:52:49 -08002528 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002529 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002530 "%s: sci_user_parameters_set failed\n",
Dan Williamsd044af12011-03-08 09:52:49 -08002531 __func__);
2532 return -ENODEV;
2533 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002534
Dan Williamsd044af12011-03-08 09:52:49 -08002535 /* grab any OEM parameters specified in orom */
2536 if (pci_info->orom) {
Dan Williams89a73012011-06-30 19:14:33 -07002537 status = isci_parse_oem_parameters(&ihost->oem_parameters,
Dan Williamsd044af12011-03-08 09:52:49 -08002538 pci_info->orom,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002539 ihost->id);
Dan Williams6f231dd2011-07-02 22:56:22 -07002540 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002541 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002542 "parsing firmware oem parameters failed\n");
Dave Jiang858d4aa2011-02-22 01:27:03 -08002543 return -EINVAL;
Dan Williams6f231dd2011-07-02 22:56:22 -07002544 }
Dan Williams4711ba12011-03-11 10:43:57 -08002545 }
2546
Dan Williams89a73012011-06-30 19:14:33 -07002547 status = sci_oem_parameters_set(ihost);
Dan Williams4711ba12011-03-11 10:43:57 -08002548 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002549 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002550 "%s: sci_oem_parameters_set failed\n",
Dan Williams4711ba12011-03-11 10:43:57 -08002551 __func__);
2552 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002553 }
2554
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002555 tasklet_init(&ihost->completion_tasklet,
2556 isci_host_completion_routine, (unsigned long)ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002557
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002558 INIT_LIST_HEAD(&ihost->requests_to_complete);
2559 INIT_LIST_HEAD(&ihost->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002560
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002561 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07002562 status = sci_controller_initialize(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002563 spin_unlock_irq(&ihost->scic_lock);
Dan Williams7c40a802011-03-02 11:49:26 -08002564 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002565 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002566 "%s: sci_controller_initialize failed -"
Dan Williams7c40a802011-03-02 11:49:26 -08002567 " status = 0x%x\n",
2568 __func__, status);
2569 return -ENODEV;
2570 }
2571
Dan Williams89a73012011-06-30 19:14:33 -07002572 err = sci_controller_mem_init(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002573 if (err)
Dave Jiang858d4aa2011-02-22 01:27:03 -08002574 return err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002575
Dan Williamsd9c37392011-03-03 17:59:32 -08002576 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002577 isci_port_init(&ihost->ports[i], ihost, i);
Dan Williams6f231dd2011-07-02 22:56:22 -07002578
Dan Williamsd9c37392011-03-03 17:59:32 -08002579 for (i = 0; i < SCI_MAX_PHYS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002580 isci_phy_init(&ihost->phys[i], ihost, i);
Dan Williamsd9c37392011-03-03 17:59:32 -08002581
Dan Williamsad4f4c12011-09-01 21:18:31 -07002582 /* enable sgpio */
2583 writel(1, &ihost->scu_registers->peg0.sgpio.interface_control);
2584 for (i = 0; i < isci_gpio_count(ihost); i++)
2585 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
2586 writel(0, &ihost->scu_registers->peg0.sgpio.vendor_specific_code);
2587
Dan Williamsd9c37392011-03-03 17:59:32 -08002588 for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002589 struct isci_remote_device *idev = &ihost->devices[i];
Dan Williamsd9c37392011-03-03 17:59:32 -08002590
2591 INIT_LIST_HEAD(&idev->reqs_in_process);
2592 INIT_LIST_HEAD(&idev->node);
Dan Williamsd9c37392011-03-03 17:59:32 -08002593 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002594
Dan Williamsdb056252011-06-17 14:18:39 -07002595 for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) {
2596 struct isci_request *ireq;
2597 dma_addr_t dma;
2598
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002599 ireq = dmam_alloc_coherent(&ihost->pdev->dev,
Dan Williamsdb056252011-06-17 14:18:39 -07002600 sizeof(struct isci_request), &dma,
2601 GFP_KERNEL);
2602 if (!ireq)
2603 return -ENOMEM;
2604
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002605 ireq->tc = &ihost->task_context_table[i];
2606 ireq->owning_controller = ihost;
Dan Williamsdb056252011-06-17 14:18:39 -07002607 spin_lock_init(&ireq->state_lock);
2608 ireq->request_daddr = dma;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002609 ireq->isci_host = ihost;
2610 ihost->reqs[i] = ireq;
Dan Williamsdb056252011-06-17 14:18:39 -07002611 }
2612
Dave Jiang858d4aa2011-02-22 01:27:03 -08002613 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -07002614}
Dan Williamscc9203b2011-05-08 17:34:44 -07002615
Dan Williams89a73012011-06-30 19:14:33 -07002616void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport,
2617 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002618{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002619 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002620 case SCIC_STARTING:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002621 sci_del_timer(&ihost->phy_timer);
2622 ihost->phy_startup_timer_pending = false;
2623 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002624 iport, iphy);
2625 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002626 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002627 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002628 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002629 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002630 break;
2631 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002632 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002633 "%s: SCIC Controller linkup event from phy %d in "
Dan Williams85280952011-06-28 15:05:53 -07002634 "unexpected state %d\n", __func__, iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002635 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002636 }
2637}
2638
Dan Williams89a73012011-06-30 19:14:33 -07002639void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport,
2640 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002641{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002642 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002643 case SCIC_STARTING:
2644 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002645 ihost->port_agent.link_down_handler(ihost, &ihost->port_agent,
Dan Williamsffe191c2011-06-29 13:09:25 -07002646 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002647 break;
2648 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002649 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002650 "%s: SCIC Controller linkdown event from phy %d in "
2651 "unexpected state %d\n",
2652 __func__,
Dan Williams85280952011-06-28 15:05:53 -07002653 iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002654 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002655 }
2656}
2657
Dan Williams89a73012011-06-30 19:14:33 -07002658static bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002659{
2660 u32 index;
2661
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002662 for (index = 0; index < ihost->remote_node_entries; index++) {
2663 if ((ihost->device_table[index] != NULL) &&
2664 (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING))
Dan Williamscc9203b2011-05-08 17:34:44 -07002665 return true;
2666 }
2667
2668 return false;
2669}
2670
Dan Williams89a73012011-06-30 19:14:33 -07002671void sci_controller_remote_device_stopped(struct isci_host *ihost,
2672 struct isci_remote_device *idev)
Dan Williamscc9203b2011-05-08 17:34:44 -07002673{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002674 if (ihost->sm.current_state_id != SCIC_STOPPING) {
2675 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002676 "SCIC Controller 0x%p remote device stopped event "
2677 "from device 0x%p in unexpected state %d\n",
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002678 ihost, idev,
2679 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002680 return;
2681 }
2682
Dan Williams89a73012011-06-30 19:14:33 -07002683 if (!sci_controller_has_remote_devices_stopping(ihost))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002684 sci_change_state(&ihost->sm, SCIC_STOPPED);
Dan Williamscc9203b2011-05-08 17:34:44 -07002685}
2686
Dan Williams89a73012011-06-30 19:14:33 -07002687void sci_controller_post_request(struct isci_host *ihost, u32 request)
Dan Williamscc9203b2011-05-08 17:34:44 -07002688{
Dan Williams89a73012011-06-30 19:14:33 -07002689 dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n",
2690 __func__, ihost->id, request);
Dan Williamscc9203b2011-05-08 17:34:44 -07002691
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002692 writel(request, &ihost->smu_registers->post_context_port);
Dan Williamscc9203b2011-05-08 17:34:44 -07002693}
2694
Dan Williams89a73012011-06-30 19:14:33 -07002695struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag)
Dan Williamscc9203b2011-05-08 17:34:44 -07002696{
2697 u16 task_index;
2698 u16 task_sequence;
2699
Dan Williamsdd047c82011-06-09 11:06:58 -07002700 task_index = ISCI_TAG_TCI(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002701
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002702 if (task_index < ihost->task_context_entries) {
2703 struct isci_request *ireq = ihost->reqs[task_index];
Dan Williamsdb056252011-06-17 14:18:39 -07002704
2705 if (test_bit(IREQ_ACTIVE, &ireq->flags)) {
Dan Williamsdd047c82011-06-09 11:06:58 -07002706 task_sequence = ISCI_TAG_SEQ(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002707
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002708 if (task_sequence == ihost->io_request_sequence[task_index])
Dan Williams5076a1a2011-06-27 14:57:03 -07002709 return ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002710 }
2711 }
2712
2713 return NULL;
2714}
2715
2716/**
2717 * This method allocates remote node index and the reserves the remote node
2718 * context space for use. This method can fail if there are no more remote
2719 * node index available.
2720 * @scic: This is the controller object which contains the set of
2721 * free remote node ids
2722 * @sci_dev: This is the device object which is requesting the a remote node
2723 * id
2724 * @node_id: This is the remote node id that is assinged to the device if one
2725 * is available
2726 *
2727 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2728 * node index available.
2729 */
Dan Williams89a73012011-06-30 19:14:33 -07002730enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost,
2731 struct isci_remote_device *idev,
2732 u16 *node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002733{
2734 u16 node_index;
Dan Williams89a73012011-06-30 19:14:33 -07002735 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002736
Dan Williams89a73012011-06-30 19:14:33 -07002737 node_index = sci_remote_node_table_allocate_remote_node(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002738 &ihost->available_remote_nodes, remote_node_count
Dan Williamscc9203b2011-05-08 17:34:44 -07002739 );
2740
2741 if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002742 ihost->device_table[node_index] = idev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002743
2744 *node_id = node_index;
2745
2746 return SCI_SUCCESS;
2747 }
2748
2749 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
2750}
2751
Dan Williams89a73012011-06-30 19:14:33 -07002752void sci_controller_free_remote_node_context(struct isci_host *ihost,
2753 struct isci_remote_device *idev,
2754 u16 node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002755{
Dan Williams89a73012011-06-30 19:14:33 -07002756 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002757
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002758 if (ihost->device_table[node_id] == idev) {
2759 ihost->device_table[node_id] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002760
Dan Williams89a73012011-06-30 19:14:33 -07002761 sci_remote_node_table_release_remote_node_index(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002762 &ihost->available_remote_nodes, remote_node_count, node_id
Dan Williamscc9203b2011-05-08 17:34:44 -07002763 );
2764 }
2765}
2766
Dan Williams89a73012011-06-30 19:14:33 -07002767void sci_controller_copy_sata_response(void *response_buffer,
2768 void *frame_header,
2769 void *frame_buffer)
Dan Williamscc9203b2011-05-08 17:34:44 -07002770{
Dan Williams89a73012011-06-30 19:14:33 -07002771 /* XXX type safety? */
Dan Williamscc9203b2011-05-08 17:34:44 -07002772 memcpy(response_buffer, frame_header, sizeof(u32));
2773
2774 memcpy(response_buffer + sizeof(u32),
2775 frame_buffer,
2776 sizeof(struct dev_to_host_fis) - sizeof(u32));
2777}
2778
Dan Williams89a73012011-06-30 19:14:33 -07002779void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index)
Dan Williamscc9203b2011-05-08 17:34:44 -07002780{
Dan Williams89a73012011-06-30 19:14:33 -07002781 if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002782 writel(ihost->uf_control.get,
2783 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07002784}
2785
Dan Williams312e0c22011-06-28 13:47:09 -07002786void isci_tci_free(struct isci_host *ihost, u16 tci)
2787{
2788 u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1);
2789
2790 ihost->tci_pool[tail] = tci;
2791 ihost->tci_tail = tail + 1;
2792}
2793
2794static u16 isci_tci_alloc(struct isci_host *ihost)
2795{
2796 u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1);
2797 u16 tci = ihost->tci_pool[head];
2798
2799 ihost->tci_head = head + 1;
2800 return tci;
2801}
2802
2803static u16 isci_tci_space(struct isci_host *ihost)
2804{
2805 return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
2806}
2807
2808u16 isci_alloc_tag(struct isci_host *ihost)
2809{
2810 if (isci_tci_space(ihost)) {
2811 u16 tci = isci_tci_alloc(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002812 u8 seq = ihost->io_request_sequence[tci];
Dan Williams312e0c22011-06-28 13:47:09 -07002813
2814 return ISCI_TAG(seq, tci);
2815 }
2816
2817 return SCI_CONTROLLER_INVALID_IO_TAG;
2818}
2819
2820enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag)
2821{
Dan Williams312e0c22011-06-28 13:47:09 -07002822 u16 tci = ISCI_TAG_TCI(io_tag);
2823 u16 seq = ISCI_TAG_SEQ(io_tag);
2824
2825 /* prevent tail from passing head */
2826 if (isci_tci_active(ihost) == 0)
2827 return SCI_FAILURE_INVALID_IO_TAG;
2828
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002829 if (seq == ihost->io_request_sequence[tci]) {
2830 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1);
Dan Williams312e0c22011-06-28 13:47:09 -07002831
2832 isci_tci_free(ihost, tci);
2833
2834 return SCI_SUCCESS;
2835 }
2836 return SCI_FAILURE_INVALID_IO_TAG;
2837}
2838
Dan Williams89a73012011-06-30 19:14:33 -07002839enum sci_status sci_controller_start_io(struct isci_host *ihost,
2840 struct isci_remote_device *idev,
2841 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002842{
2843 enum sci_status status;
2844
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002845 if (ihost->sm.current_state_id != SCIC_READY) {
2846 dev_warn(&ihost->pdev->dev, "invalid state to start I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002847 return SCI_FAILURE_INVALID_STATE;
2848 }
2849
Dan Williams89a73012011-06-30 19:14:33 -07002850 status = sci_remote_device_start_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002851 if (status != SCI_SUCCESS)
2852 return status;
2853
Dan Williams5076a1a2011-06-27 14:57:03 -07002854 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002855 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002856 return SCI_SUCCESS;
2857}
2858
Dan Williams89a73012011-06-30 19:14:33 -07002859enum sci_status sci_controller_terminate_request(struct isci_host *ihost,
2860 struct isci_remote_device *idev,
2861 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002862{
Dan Williams89a73012011-06-30 19:14:33 -07002863 /* terminate an ongoing (i.e. started) core IO request. This does not
2864 * abort the IO request at the target, but rather removes the IO
2865 * request from the host controller.
2866 */
Dan Williamscc9203b2011-05-08 17:34:44 -07002867 enum sci_status status;
2868
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002869 if (ihost->sm.current_state_id != SCIC_READY) {
2870 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002871 "invalid state to terminate request\n");
2872 return SCI_FAILURE_INVALID_STATE;
2873 }
2874
Dan Williams89a73012011-06-30 19:14:33 -07002875 status = sci_io_request_terminate(ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002876 if (status != SCI_SUCCESS)
2877 return status;
2878
2879 /*
2880 * Utilize the original post context command and or in the POST_TC_ABORT
2881 * request sub-type.
2882 */
Dan Williams89a73012011-06-30 19:14:33 -07002883 sci_controller_post_request(ihost,
2884 ireq->post_context | SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT);
Dan Williamscc9203b2011-05-08 17:34:44 -07002885 return SCI_SUCCESS;
2886}
2887
2888/**
Dan Williams89a73012011-06-30 19:14:33 -07002889 * sci_controller_complete_io() - This method will perform core specific
Dan Williamscc9203b2011-05-08 17:34:44 -07002890 * completion operations for an IO request. After this method is invoked,
2891 * the user should consider the IO request as invalid until it is properly
2892 * reused (i.e. re-constructed).
Dan Williams89a73012011-06-30 19:14:33 -07002893 * @ihost: The handle to the controller object for which to complete the
Dan Williamscc9203b2011-05-08 17:34:44 -07002894 * IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002895 * @idev: The handle to the remote device object for which to complete
Dan Williamscc9203b2011-05-08 17:34:44 -07002896 * the IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002897 * @ireq: the handle to the io request object to complete.
Dan Williamscc9203b2011-05-08 17:34:44 -07002898 */
Dan Williams89a73012011-06-30 19:14:33 -07002899enum sci_status sci_controller_complete_io(struct isci_host *ihost,
2900 struct isci_remote_device *idev,
2901 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002902{
2903 enum sci_status status;
2904 u16 index;
2905
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002906 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002907 case SCIC_STOPPING:
Dan Williamscc9203b2011-05-08 17:34:44 -07002908 /* XXX: Implement this function */
2909 return SCI_FAILURE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002910 case SCIC_READY:
Dan Williams89a73012011-06-30 19:14:33 -07002911 status = sci_remote_device_complete_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002912 if (status != SCI_SUCCESS)
2913 return status;
2914
Dan Williams5076a1a2011-06-27 14:57:03 -07002915 index = ISCI_TAG_TCI(ireq->io_tag);
2916 clear_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002917 return SCI_SUCCESS;
2918 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002919 dev_warn(&ihost->pdev->dev, "invalid state to complete I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002920 return SCI_FAILURE_INVALID_STATE;
2921 }
2922
2923}
2924
Dan Williams89a73012011-06-30 19:14:33 -07002925enum sci_status sci_controller_continue_io(struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002926{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002927 struct isci_host *ihost = ireq->owning_controller;
Dan Williamscc9203b2011-05-08 17:34:44 -07002928
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002929 if (ihost->sm.current_state_id != SCIC_READY) {
2930 dev_warn(&ihost->pdev->dev, "invalid state to continue I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002931 return SCI_FAILURE_INVALID_STATE;
2932 }
2933
Dan Williams5076a1a2011-06-27 14:57:03 -07002934 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002935 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002936 return SCI_SUCCESS;
2937}
2938
2939/**
Dan Williams89a73012011-06-30 19:14:33 -07002940 * sci_controller_start_task() - This method is called by the SCIC user to
Dan Williamscc9203b2011-05-08 17:34:44 -07002941 * send/start a framework task management request.
2942 * @controller: the handle to the controller object for which to start the task
2943 * management request.
2944 * @remote_device: the handle to the remote device object for which to start
2945 * the task management request.
2946 * @task_request: the handle to the task request object to start.
Dan Williamscc9203b2011-05-08 17:34:44 -07002947 */
Dan Williams89a73012011-06-30 19:14:33 -07002948enum sci_task_status sci_controller_start_task(struct isci_host *ihost,
2949 struct isci_remote_device *idev,
2950 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002951{
2952 enum sci_status status;
2953
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002954 if (ihost->sm.current_state_id != SCIC_READY) {
2955 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002956 "%s: SCIC Controller starting task from invalid "
2957 "state\n",
2958 __func__);
2959 return SCI_TASK_FAILURE_INVALID_STATE;
2960 }
2961
Dan Williams89a73012011-06-30 19:14:33 -07002962 status = sci_remote_device_start_task(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002963 switch (status) {
2964 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002965 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002966
2967 /*
2968 * We will let framework know this task request started successfully,
2969 * although core is still woring on starting the request (to post tc when
2970 * RNC is resumed.)
2971 */
2972 return SCI_SUCCESS;
2973 case SCI_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002974 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002975 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002976 break;
2977 default:
2978 break;
2979 }
2980
2981 return status;
2982}
Dan Williamsad4f4c12011-09-01 21:18:31 -07002983
2984static int sci_write_gpio_tx_gp(struct isci_host *ihost, u8 reg_index, u8 reg_count, u8 *write_data)
2985{
2986 int d;
2987
2988 /* no support for TX_GP_CFG */
2989 if (reg_index == 0)
2990 return -EINVAL;
2991
2992 for (d = 0; d < isci_gpio_count(ihost); d++) {
2993 u32 val = 0x444; /* all ODx.n clear */
2994 int i;
2995
2996 for (i = 0; i < 3; i++) {
2997 int bit = (i << 2) + 2;
2998
2999 bit = try_test_sas_gpio_gp_bit(to_sas_gpio_od(d, i),
3000 write_data, reg_index,
3001 reg_count);
3002 if (bit < 0)
3003 break;
3004
3005 /* if od is set, clear the 'invert' bit */
3006 val &= ~(bit << ((i << 2) + 2));
3007 }
3008
3009 if (i < 3)
3010 break;
3011 writel(val, &ihost->scu_registers->peg0.sgpio.output_data_select[d]);
3012 }
3013
3014 /* unless reg_index is > 1, we should always be able to write at
3015 * least one register
3016 */
3017 return d > 0;
3018}
3019
3020int isci_gpio_write(struct sas_ha_struct *sas_ha, u8 reg_type, u8 reg_index,
3021 u8 reg_count, u8 *write_data)
3022{
3023 struct isci_host *ihost = sas_ha->lldd_ha;
3024 int written;
3025
3026 switch (reg_type) {
3027 case SAS_GPIO_REG_TX_GP:
3028 written = sci_write_gpio_tx_gp(ihost, reg_index, reg_count, write_data);
3029 break;
3030 default:
3031 written = -EINVAL;
3032 }
3033
3034 return written;
3035}