blob: 26072f1e985250f42c3af9cc6c031565b83b123f [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 Williams994a9302011-06-09 16:04:28 -0700534 case SCU_COMPLETION_TYPE_NOTIFY: {
535 event_cycle ^= ((event_get+1) & SCU_MAX_EVENTS) <<
536 (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT - SCU_MAX_EVENTS_SHIFT);
537 event_get = (event_get+1) & (SCU_MAX_EVENTS-1);
538
Dan Williams89a73012011-06-30 19:14:33 -0700539 sci_controller_event_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700540 break;
Dan Williams994a9302011-06-09 16:04:28 -0700541 }
Dan Williamscc9203b2011-05-08 17:34:44 -0700542 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700543 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700544 "%s: SCIC Controller received unknown "
545 "completion type %x\n",
546 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700547 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700548 break;
549 }
550 }
551
552 /* Update the get register if we completed one or more entries */
553 if (completion_count > 0) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700554 ihost->completion_queue_get =
Dan Williamscc9203b2011-05-08 17:34:44 -0700555 SMU_CQGR_GEN_BIT(ENABLE) |
556 SMU_CQGR_GEN_BIT(EVENT_ENABLE) |
557 event_cycle |
Dan Williams994a9302011-06-09 16:04:28 -0700558 SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700559 get_cycle |
560 SMU_CQGR_GEN_VAL(POINTER, get_index);
561
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700562 writel(ihost->completion_queue_get,
563 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700564
565 }
566
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700567 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700568 "%s: completion queue ending get:0x%08x\n",
569 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700570 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700571
572}
573
Dan Williams89a73012011-06-30 19:14:33 -0700574static void sci_controller_error_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700575{
576 u32 interrupt_status;
577
578 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700579 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700580
581 if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) &&
Dan Williams89a73012011-06-30 19:14:33 -0700582 sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700583
Dan Williams89a73012011-06-30 19:14:33 -0700584 sci_controller_process_completions(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700585 writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700586 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700587 dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__,
Dan Williamscc9203b2011-05-08 17:34:44 -0700588 interrupt_status);
589
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700590 sci_change_state(&ihost->sm, SCIC_FAILED);
Dan Williamscc9203b2011-05-08 17:34:44 -0700591
592 return;
593 }
594
595 /* If we dont process any completions I am not sure that we want to do this.
596 * We are in the middle of a hardware fault and should probably be reset.
597 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700598 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700599}
600
Dan Williamsc7ef4032011-02-18 09:25:05 -0800601irqreturn_t isci_intx_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700602{
Dan Williams6f231dd2011-07-02 22:56:22 -0700603 irqreturn_t ret = IRQ_NONE;
Dan Williams31e824e2011-04-19 12:32:51 -0700604 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700605
Dan Williams89a73012011-06-30 19:14:33 -0700606 if (sci_controller_isr(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700607 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williams31e824e2011-04-19 12:32:51 -0700608 tasklet_schedule(&ihost->completion_tasklet);
609 ret = IRQ_HANDLED;
Dan Williams89a73012011-06-30 19:14:33 -0700610 } else if (sci_controller_error_isr(ihost)) {
Dan Williams31e824e2011-04-19 12:32:51 -0700611 spin_lock(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -0700612 sci_controller_error_handler(ihost);
Dan Williams31e824e2011-04-19 12:32:51 -0700613 spin_unlock(&ihost->scic_lock);
614 ret = IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700615 }
Dan Williams92f4f0f2011-02-18 09:25:11 -0800616
Dan Williams6f231dd2011-07-02 22:56:22 -0700617 return ret;
618}
619
Dan Williams92f4f0f2011-02-18 09:25:11 -0800620irqreturn_t isci_error_isr(int vec, void *data)
621{
622 struct isci_host *ihost = data;
Dan Williams92f4f0f2011-02-18 09:25:11 -0800623
Dan Williams89a73012011-06-30 19:14:33 -0700624 if (sci_controller_error_isr(ihost))
625 sci_controller_error_handler(ihost);
Dan Williams92f4f0f2011-02-18 09:25:11 -0800626
627 return IRQ_HANDLED;
628}
Dan Williams6f231dd2011-07-02 22:56:22 -0700629
630/**
631 * isci_host_start_complete() - This function is called by the core library,
632 * through the ISCI Module, to indicate controller start status.
633 * @isci_host: This parameter specifies the ISCI host object
634 * @completion_status: This parameter specifies the completion status from the
635 * core library.
636 *
637 */
Dan Williamscc9203b2011-05-08 17:34:44 -0700638static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700639{
Dan Williams0cf89d12011-02-18 09:25:07 -0800640 if (completion_status != SCI_SUCCESS)
641 dev_info(&ihost->pdev->dev,
642 "controller start timed out, continuing...\n");
643 isci_host_change_state(ihost, isci_ready);
644 clear_bit(IHOST_START_PENDING, &ihost->flags);
645 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700646}
647
Dan Williamsc7ef4032011-02-18 09:25:05 -0800648int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
Dan Williams6f231dd2011-07-02 22:56:22 -0700649{
Dan Williams4393aa42011-03-31 13:10:44 -0700650 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams6f231dd2011-07-02 22:56:22 -0700651
Edmund Nadolski77950f52011-02-18 09:25:09 -0800652 if (test_bit(IHOST_START_PENDING, &ihost->flags))
Dan Williams6f231dd2011-07-02 22:56:22 -0700653 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700654
Edmund Nadolski77950f52011-02-18 09:25:09 -0800655 /* todo: use sas_flush_discovery once it is upstream */
656 scsi_flush_work(shost);
657
658 scsi_flush_work(shost);
Dan Williams6f231dd2011-07-02 22:56:22 -0700659
Dan Williams0cf89d12011-02-18 09:25:07 -0800660 dev_dbg(&ihost->pdev->dev,
661 "%s: ihost->status = %d, time = %ld\n",
662 __func__, isci_host_get_state(ihost), time);
Dan Williams6f231dd2011-07-02 22:56:22 -0700663
Dan Williams6f231dd2011-07-02 22:56:22 -0700664 return 1;
665
666}
667
Dan Williamscc9203b2011-05-08 17:34:44 -0700668/**
Dan Williams89a73012011-06-30 19:14:33 -0700669 * sci_controller_get_suggested_start_timeout() - This method returns the
670 * suggested sci_controller_start() timeout amount. The user is free to
Dan Williamscc9203b2011-05-08 17:34:44 -0700671 * use any timeout value, but this method provides the suggested minimum
672 * start timeout value. The returned value is based upon empirical
673 * information determined as a result of interoperability testing.
674 * @controller: the handle to the controller object for which to return the
675 * suggested start timeout.
676 *
677 * This method returns the number of milliseconds for the suggested start
678 * operation timeout.
679 */
Dan Williams89a73012011-06-30 19:14:33 -0700680static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700681{
682 /* Validate the user supplied parameters. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700683 if (!ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700684 return 0;
685
686 /*
687 * The suggested minimum timeout value for a controller start operation:
688 *
689 * Signature FIS Timeout
690 * + Phy Start Timeout
691 * + Number of Phy Spin Up Intervals
692 * ---------------------------------
693 * Number of milliseconds for the controller start operation.
694 *
695 * NOTE: The number of phy spin up intervals will be equivalent
696 * to the number of phys divided by the number phys allowed
697 * per interval - 1 (once OEM parameters are supported).
698 * Currently we assume only 1 phy per interval. */
699
700 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
701 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
702 + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
703}
704
Dan Williams89a73012011-06-30 19:14:33 -0700705static void sci_controller_enable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700706{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700707 BUG_ON(ihost->smu_registers == NULL);
708 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700709}
710
Dan Williams89a73012011-06-30 19:14:33 -0700711void sci_controller_disable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700712{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700713 BUG_ON(ihost->smu_registers == NULL);
714 writel(0xffffffff, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700715}
716
Dan Williams89a73012011-06-30 19:14:33 -0700717static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700718{
719 u32 port_task_scheduler_value;
720
721 port_task_scheduler_value =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700722 readl(&ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700723 port_task_scheduler_value |=
724 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) |
725 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE));
726 writel(port_task_scheduler_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700727 &ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700728}
729
Dan Williams89a73012011-06-30 19:14:33 -0700730static void sci_controller_assign_task_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700731{
732 u32 task_assignment;
733
734 /*
735 * Assign all the TCs to function 0
736 * TODO: Do we actually need to read this register to write it back?
737 */
738
739 task_assignment =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700740 readl(&ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700741
742 task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) |
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700743 (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700744 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE));
745
746 writel(task_assignment,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700747 &ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700748
749}
750
Dan Williams89a73012011-06-30 19:14:33 -0700751static void sci_controller_initialize_completion_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700752{
753 u32 index;
754 u32 completion_queue_control_value;
755 u32 completion_queue_get_value;
756 u32 completion_queue_put_value;
757
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700758 ihost->completion_queue_get = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -0700759
Dan Williams7c78da32011-06-01 16:00:01 -0700760 completion_queue_control_value =
761 (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES - 1) |
762 SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS - 1));
Dan Williamscc9203b2011-05-08 17:34:44 -0700763
764 writel(completion_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700765 &ihost->smu_registers->completion_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700766
767
768 /* Set the completion queue get pointer and enable the queue */
769 completion_queue_get_value = (
770 (SMU_CQGR_GEN_VAL(POINTER, 0))
771 | (SMU_CQGR_GEN_VAL(EVENT_POINTER, 0))
772 | (SMU_CQGR_GEN_BIT(ENABLE))
773 | (SMU_CQGR_GEN_BIT(EVENT_ENABLE))
774 );
775
776 writel(completion_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700777 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700778
779 /* Set the completion queue put pointer */
780 completion_queue_put_value = (
781 (SMU_CQPR_GEN_VAL(POINTER, 0))
782 | (SMU_CQPR_GEN_VAL(EVENT_POINTER, 0))
783 );
784
785 writel(completion_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700786 &ihost->smu_registers->completion_queue_put);
Dan Williamscc9203b2011-05-08 17:34:44 -0700787
788 /* Initialize the cycle bit of the completion queue entries */
Dan Williams7c78da32011-06-01 16:00:01 -0700789 for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700790 /*
791 * If get.cycle_bit != completion_queue.cycle_bit
792 * its not a valid completion queue entry
793 * so at system start all entries are invalid */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700794 ihost->completion_queue[index] = 0x80000000;
Dan Williamscc9203b2011-05-08 17:34:44 -0700795 }
796}
797
Dan Williams89a73012011-06-30 19:14:33 -0700798static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700799{
800 u32 frame_queue_control_value;
801 u32 frame_queue_get_value;
802 u32 frame_queue_put_value;
803
804 /* Write the queue size */
805 frame_queue_control_value =
Dan Williams7c78da32011-06-01 16:00:01 -0700806 SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES);
Dan Williamscc9203b2011-05-08 17:34:44 -0700807
808 writel(frame_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700809 &ihost->scu_registers->sdma.unsolicited_frame_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700810
811 /* Setup the get pointer for the unsolicited frame queue */
812 frame_queue_get_value = (
813 SCU_UFQGP_GEN_VAL(POINTER, 0)
814 | SCU_UFQGP_GEN_BIT(ENABLE_BIT)
815 );
816
817 writel(frame_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700818 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700819 /* Setup the put pointer for the unsolicited frame queue */
820 frame_queue_put_value = SCU_UFQPP_GEN_VAL(POINTER, 0);
821 writel(frame_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700822 &ihost->scu_registers->sdma.unsolicited_frame_put_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700823}
824
Dan Williams89a73012011-06-30 19:14:33 -0700825static void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status)
Dan Williamscc9203b2011-05-08 17:34:44 -0700826{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700827 if (ihost->sm.current_state_id == SCIC_STARTING) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700828 /*
829 * We move into the ready state, because some of the phys/ports
830 * may be up and operational.
831 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700832 sci_change_state(&ihost->sm, SCIC_READY);
Dan Williamscc9203b2011-05-08 17:34:44 -0700833
834 isci_host_start_complete(ihost, status);
835 }
836}
837
Dan Williams85280952011-06-28 15:05:53 -0700838static bool is_phy_starting(struct isci_phy *iphy)
Adam Gruchala4a33c522011-05-10 23:54:23 +0000839{
Dan Williams89a73012011-06-30 19:14:33 -0700840 enum sci_phy_states state;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000841
Dan Williams85280952011-06-28 15:05:53 -0700842 state = iphy->sm.current_state_id;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000843 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000844 case SCI_PHY_STARTING:
845 case SCI_PHY_SUB_INITIAL:
846 case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN:
847 case SCI_PHY_SUB_AWAIT_IAF_UF:
848 case SCI_PHY_SUB_AWAIT_SAS_POWER:
849 case SCI_PHY_SUB_AWAIT_SATA_POWER:
850 case SCI_PHY_SUB_AWAIT_SATA_PHY_EN:
851 case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN:
852 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF:
853 case SCI_PHY_SUB_FINAL:
Adam Gruchala4a33c522011-05-10 23:54:23 +0000854 return true;
855 default:
856 return false;
857 }
858}
859
Dan Williamscc9203b2011-05-08 17:34:44 -0700860/**
Dan Williams89a73012011-06-30 19:14:33 -0700861 * sci_controller_start_next_phy - start phy
Dan Williamscc9203b2011-05-08 17:34:44 -0700862 * @scic: controller
863 *
864 * If all the phys have been started, then attempt to transition the
865 * controller to the READY state and inform the user
Dan Williams89a73012011-06-30 19:14:33 -0700866 * (sci_cb_controller_start_complete()).
Dan Williamscc9203b2011-05-08 17:34:44 -0700867 */
Dan Williams89a73012011-06-30 19:14:33 -0700868static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700869{
Dan Williams89a73012011-06-30 19:14:33 -0700870 struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williams85280952011-06-28 15:05:53 -0700871 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700872 enum sci_status status;
873
874 status = SCI_SUCCESS;
875
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700876 if (ihost->phy_startup_timer_pending)
Dan Williamscc9203b2011-05-08 17:34:44 -0700877 return status;
878
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700879 if (ihost->next_phy_to_start >= SCI_MAX_PHYS) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700880 bool is_controller_start_complete = true;
881 u32 state;
882 u8 index;
883
884 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams85280952011-06-28 15:05:53 -0700885 iphy = &ihost->phys[index];
886 state = iphy->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -0700887
Dan Williams85280952011-06-28 15:05:53 -0700888 if (!phy_get_non_dummy_port(iphy))
Dan Williamscc9203b2011-05-08 17:34:44 -0700889 continue;
890
891 /* The controller start operation is complete iff:
892 * - all links have been given an opportunity to start
893 * - have no indication of a connected device
894 * - have an indication of a connected device and it has
895 * finished the link training process.
896 */
Dan Williams85280952011-06-28 15:05:53 -0700897 if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) ||
898 (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) ||
899 (iphy->is_in_link_training == true && is_phy_starting(iphy))) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700900 is_controller_start_complete = false;
901 break;
902 }
903 }
904
905 /*
906 * The controller has successfully finished the start process.
907 * Inform the SCI Core user and transition to the READY state. */
908 if (is_controller_start_complete == true) {
Dan Williams89a73012011-06-30 19:14:33 -0700909 sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700910 sci_del_timer(&ihost->phy_timer);
911 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -0700912 }
913 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700914 iphy = &ihost->phys[ihost->next_phy_to_start];
Dan Williamscc9203b2011-05-08 17:34:44 -0700915
916 if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
Dan Williams85280952011-06-28 15:05:53 -0700917 if (phy_get_non_dummy_port(iphy) == NULL) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700918 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700919
920 /* Caution recursion ahead be forwarned
921 *
922 * The PHY was never added to a PORT in MPC mode
923 * so start the next phy in sequence This phy
924 * will never go link up and will not draw power
925 * the OEM parameters either configured the phy
926 * incorrectly for the PORT or it was never
927 * assigned to a PORT
928 */
Dan Williams89a73012011-06-30 19:14:33 -0700929 return sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -0700930 }
931 }
932
Dan Williams89a73012011-06-30 19:14:33 -0700933 status = sci_phy_start(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -0700934
935 if (status == SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700936 sci_mod_timer(&ihost->phy_timer,
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700937 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700938 ihost->phy_startup_timer_pending = true;
Dan Williamscc9203b2011-05-08 17:34:44 -0700939 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700940 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700941 "%s: Controller stop operation failed "
942 "to stop phy %d because of status "
943 "%d.\n",
944 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700945 ihost->phys[ihost->next_phy_to_start].phy_index,
Dan Williamscc9203b2011-05-08 17:34:44 -0700946 status);
947 }
948
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700949 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700950 }
951
952 return status;
953}
954
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700955static void phy_startup_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -0700956{
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700957 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700958 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700959 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -0700960 enum sci_status status;
961
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700962 spin_lock_irqsave(&ihost->scic_lock, flags);
963
964 if (tmr->cancel)
965 goto done;
966
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700967 ihost->phy_startup_timer_pending = false;
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700968
969 do {
Dan Williams89a73012011-06-30 19:14:33 -0700970 status = sci_controller_start_next_phy(ihost);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700971 } while (status != SCI_SUCCESS);
972
973done:
974 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -0700975}
976
Dan Williamsac668c62011-06-07 18:50:55 -0700977static u16 isci_tci_active(struct isci_host *ihost)
978{
979 return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
980}
981
Dan Williams89a73012011-06-30 19:14:33 -0700982static enum sci_status sci_controller_start(struct isci_host *ihost,
Dan Williamscc9203b2011-05-08 17:34:44 -0700983 u32 timeout)
984{
Dan Williamscc9203b2011-05-08 17:34:44 -0700985 enum sci_status result;
986 u16 index;
987
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700988 if (ihost->sm.current_state_id != SCIC_INITIALIZED) {
989 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700990 "SCIC Controller start operation requested in "
991 "invalid state\n");
992 return SCI_FAILURE_INVALID_STATE;
993 }
994
995 /* Build the TCi free pool */
Dan Williamsac668c62011-06-07 18:50:55 -0700996 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8);
997 ihost->tci_head = 0;
998 ihost->tci_tail = 0;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700999 for (index = 0; index < ihost->task_context_entries; index++)
Dan Williamsac668c62011-06-07 18:50:55 -07001000 isci_tci_free(ihost, index);
Dan Williamscc9203b2011-05-08 17:34:44 -07001001
1002 /* Build the RNi free pool */
Dan Williams89a73012011-06-30 19:14:33 -07001003 sci_remote_node_table_initialize(&ihost->available_remote_nodes,
1004 ihost->remote_node_entries);
Dan Williamscc9203b2011-05-08 17:34:44 -07001005
1006 /*
1007 * Before anything else lets make sure we will not be
1008 * interrupted by the hardware.
1009 */
Dan Williams89a73012011-06-30 19:14:33 -07001010 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001011
1012 /* Enable the port task scheduler */
Dan Williams89a73012011-06-30 19:14:33 -07001013 sci_controller_enable_port_task_scheduler(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001014
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001015 /* Assign all the task entries to ihost physical function */
Dan Williams89a73012011-06-30 19:14:33 -07001016 sci_controller_assign_task_entries(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001017
1018 /* Now initialize the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001019 sci_controller_initialize_completion_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001020
1021 /* Initialize the unsolicited frame queue for use */
Dan Williams89a73012011-06-30 19:14:33 -07001022 sci_controller_initialize_unsolicited_frame_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001023
1024 /* Start all of the ports on this controller */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001025 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001026 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001027
Dan Williams89a73012011-06-30 19:14:33 -07001028 result = sci_port_start(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001029 if (result)
1030 return result;
1031 }
1032
Dan Williams89a73012011-06-30 19:14:33 -07001033 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001034
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001035 sci_mod_timer(&ihost->timer, timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07001036
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001037 sci_change_state(&ihost->sm, SCIC_STARTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001038
1039 return SCI_SUCCESS;
1040}
1041
Dan Williams6f231dd2011-07-02 22:56:22 -07001042void isci_host_scan_start(struct Scsi_Host *shost)
1043{
Dan Williams4393aa42011-03-31 13:10:44 -07001044 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams89a73012011-06-30 19:14:33 -07001045 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07001046
Dan Williams0cf89d12011-02-18 09:25:07 -08001047 set_bit(IHOST_START_PENDING, &ihost->flags);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001048
1049 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001050 sci_controller_start(ihost, tmo);
1051 sci_controller_enable_interrupts(ihost);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001052 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001053}
1054
Dan Williamscc9203b2011-05-08 17:34:44 -07001055static void isci_host_stop_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07001056{
Dan Williams0cf89d12011-02-18 09:25:07 -08001057 isci_host_change_state(ihost, isci_stopped);
Dan Williams89a73012011-06-30 19:14:33 -07001058 sci_controller_disable_interrupts(ihost);
Dan Williams0cf89d12011-02-18 09:25:07 -08001059 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
1060 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07001061}
1062
Dan Williams89a73012011-06-30 19:14:33 -07001063static void sci_controller_completion_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001064{
1065 /* Empty out the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001066 if (sci_controller_completion_queue_has_entries(ihost))
1067 sci_controller_process_completions(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001068
1069 /* Clear the interrupt and enable all interrupts again */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001070 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001071 /* Could we write the value of SMU_ISR_COMPLETION? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001072 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
1073 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07001074}
1075
Dan Williams6f231dd2011-07-02 22:56:22 -07001076/**
1077 * isci_host_completion_routine() - This function is the delayed service
1078 * routine that calls the sci core library's completion handler. It's
1079 * scheduled as a tasklet from the interrupt service routine when interrupts
1080 * in use, or set as the timeout function in polled mode.
1081 * @data: This parameter specifies the ISCI host object
1082 *
1083 */
1084static void isci_host_completion_routine(unsigned long data)
1085{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001086 struct isci_host *ihost = (struct isci_host *)data;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001087 struct list_head completed_request_list;
1088 struct list_head errored_request_list;
1089 struct list_head *current_position;
1090 struct list_head *next_position;
Dan Williams6f231dd2011-07-02 22:56:22 -07001091 struct isci_request *request;
1092 struct isci_request *next_request;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001093 struct sas_task *task;
Dan Williams6f231dd2011-07-02 22:56:22 -07001094
1095 INIT_LIST_HEAD(&completed_request_list);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001096 INIT_LIST_HEAD(&errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001097
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001098 spin_lock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001099
Dan Williams89a73012011-06-30 19:14:33 -07001100 sci_controller_completion_handler(ihost);
Dan Williamsc7ef4032011-02-18 09:25:05 -08001101
Dan Williams6f231dd2011-07-02 22:56:22 -07001102 /* Take the lists of completed I/Os from the host. */
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001103
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001104 list_splice_init(&ihost->requests_to_complete,
Dan Williams6f231dd2011-07-02 22:56:22 -07001105 &completed_request_list);
1106
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001107 /* Take the list of errored I/Os from the host. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001108 list_splice_init(&ihost->requests_to_errorback,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001109 &errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001110
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001111 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001112
1113 /* Process any completions in the lists. */
1114 list_for_each_safe(current_position, next_position,
1115 &completed_request_list) {
1116
1117 request = list_entry(current_position, struct isci_request,
1118 completed_node);
1119 task = isci_request_access_task(request);
1120
1121 /* Normal notification (task_done) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001122 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001123 "%s: Normal - request/task = %p/%p\n",
1124 __func__,
1125 request,
1126 task);
1127
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001128 /* Return the task to libsas */
1129 if (task != NULL) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001130
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001131 task->lldd_task = NULL;
1132 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1133
1134 /* If the task is already in the abort path,
1135 * the task_done callback cannot be called.
1136 */
1137 task->task_done(task);
1138 }
1139 }
Dan Williams312e0c22011-06-28 13:47:09 -07001140
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001141 spin_lock_irq(&ihost->scic_lock);
1142 isci_free_tag(ihost, request->io_tag);
1143 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001144 }
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001145 list_for_each_entry_safe(request, next_request, &errored_request_list,
Dan Williams6f231dd2011-07-02 22:56:22 -07001146 completed_node) {
1147
1148 task = isci_request_access_task(request);
1149
1150 /* Use sas_task_abort */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001151 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001152 "%s: Error - request/task = %p/%p\n",
1153 __func__,
1154 request,
1155 task);
1156
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001157 if (task != NULL) {
1158
1159 /* Put the task into the abort path if it's not there
1160 * already.
1161 */
1162 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED))
1163 sas_task_abort(task);
1164
1165 } else {
1166 /* This is a case where the request has completed with a
1167 * status such that it needed further target servicing,
1168 * but the sas_task reference has already been removed
1169 * from the request. Since it was errored, it was not
1170 * being aborted, so there is nothing to do except free
1171 * it.
1172 */
1173
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001174 spin_lock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001175 /* Remove the request from the remote device's list
1176 * of pending requests.
1177 */
1178 list_del_init(&request->dev_node);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001179 isci_free_tag(ihost, request->io_tag);
1180 spin_unlock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001181 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001182 }
1183
1184}
1185
Dan Williamscc9203b2011-05-08 17:34:44 -07001186/**
Dan Williams89a73012011-06-30 19:14:33 -07001187 * sci_controller_stop() - This method will stop an individual controller
Dan Williamscc9203b2011-05-08 17:34:44 -07001188 * object.This method will invoke the associated user callback upon
1189 * completion. The completion callback is called when the following
1190 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1191 * controller has been quiesced. This method will ensure that all IO
1192 * requests are quiesced, phys are stopped, and all additional operation by
1193 * the hardware is halted.
1194 * @controller: the handle to the controller object to stop.
1195 * @timeout: This parameter specifies the number of milliseconds in which the
1196 * stop operation should complete.
1197 *
1198 * The controller must be in the STARTED or STOPPED state. Indicate if the
1199 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1200 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1201 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1202 * controller is not either in the STARTED or STOPPED states.
1203 */
Dan Williams89a73012011-06-30 19:14:33 -07001204static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001205{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001206 if (ihost->sm.current_state_id != SCIC_READY) {
1207 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001208 "SCIC Controller stop operation requested in "
1209 "invalid state\n");
1210 return SCI_FAILURE_INVALID_STATE;
1211 }
1212
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001213 sci_mod_timer(&ihost->timer, timeout);
1214 sci_change_state(&ihost->sm, SCIC_STOPPING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001215 return SCI_SUCCESS;
1216}
1217
1218/**
Dan Williams89a73012011-06-30 19:14:33 -07001219 * sci_controller_reset() - This method will reset the supplied core
Dan Williamscc9203b2011-05-08 17:34:44 -07001220 * controller regardless of the state of said controller. This operation is
1221 * considered destructive. In other words, all current operations are wiped
1222 * out. No IO completions for outstanding devices occur. Outstanding IO
1223 * requests are not aborted or completed at the actual remote device.
1224 * @controller: the handle to the controller object to reset.
1225 *
1226 * Indicate if the controller reset method succeeded or failed in some way.
1227 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1228 * the controller reset operation is unable to complete.
1229 */
Dan Williams89a73012011-06-30 19:14:33 -07001230static enum sci_status sci_controller_reset(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001231{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001232 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001233 case SCIC_RESET:
1234 case SCIC_READY:
1235 case SCIC_STOPPED:
1236 case SCIC_FAILED:
Dan Williamscc9203b2011-05-08 17:34:44 -07001237 /*
1238 * The reset operation is not a graceful cleanup, just
1239 * perform the state transition.
1240 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001241 sci_change_state(&ihost->sm, SCIC_RESETTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001242 return SCI_SUCCESS;
1243 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001244 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001245 "SCIC Controller reset operation requested in "
1246 "invalid state\n");
1247 return SCI_FAILURE_INVALID_STATE;
1248 }
1249}
1250
Dan Williams0cf89d12011-02-18 09:25:07 -08001251void isci_host_deinit(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07001252{
1253 int i;
1254
Dan Williams0cf89d12011-02-18 09:25:07 -08001255 isci_host_change_state(ihost, isci_stopping);
Dan Williams6f231dd2011-07-02 22:56:22 -07001256 for (i = 0; i < SCI_MAX_PORTS; i++) {
Dan Williamse5313812011-05-07 10:11:43 -07001257 struct isci_port *iport = &ihost->ports[i];
Dan Williams0cf89d12011-02-18 09:25:07 -08001258 struct isci_remote_device *idev, *d;
1259
Dan Williamse5313812011-05-07 10:11:43 -07001260 list_for_each_entry_safe(idev, d, &iport->remote_dev_list, node) {
Dan Williams209fae12011-06-13 17:39:44 -07001261 if (test_bit(IDEV_ALLOCATED, &idev->flags))
1262 isci_remote_device_stop(ihost, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001263 }
1264 }
1265
Dan Williams0cf89d12011-02-18 09:25:07 -08001266 set_bit(IHOST_STOP_PENDING, &ihost->flags);
Dan Williams7c40a802011-03-02 11:49:26 -08001267
1268 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001269 sci_controller_stop(ihost, SCIC_CONTROLLER_STOP_TIMEOUT);
Dan Williams7c40a802011-03-02 11:49:26 -08001270 spin_unlock_irq(&ihost->scic_lock);
1271
Dan Williams0cf89d12011-02-18 09:25:07 -08001272 wait_for_stop(ihost);
Dan Williams89a73012011-06-30 19:14:33 -07001273 sci_controller_reset(ihost);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001274
1275 /* Cancel any/all outstanding port timers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001276 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001277 struct isci_port *iport = &ihost->ports[i];
1278 del_timer_sync(&iport->timer.timer);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001279 }
1280
Edmund Nadolskia628d472011-05-19 11:59:36 +00001281 /* Cancel any/all outstanding phy timers */
1282 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams85280952011-06-28 15:05:53 -07001283 struct isci_phy *iphy = &ihost->phys[i];
1284 del_timer_sync(&iphy->sata_timer.timer);
Edmund Nadolskia628d472011-05-19 11:59:36 +00001285 }
1286
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001287 del_timer_sync(&ihost->port_agent.timer.timer);
Edmund Nadolskiac0eeb42011-05-19 20:00:51 -07001288
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001289 del_timer_sync(&ihost->power_control.timer.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001290
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001291 del_timer_sync(&ihost->timer.timer);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001292
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001293 del_timer_sync(&ihost->phy_timer.timer);
Dan Williams6f231dd2011-07-02 22:56:22 -07001294}
1295
Dan Williams6f231dd2011-07-02 22:56:22 -07001296static void __iomem *scu_base(struct isci_host *isci_host)
1297{
1298 struct pci_dev *pdev = isci_host->pdev;
1299 int id = isci_host->id;
1300
1301 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
1302}
1303
1304static void __iomem *smu_base(struct isci_host *isci_host)
1305{
1306 struct pci_dev *pdev = isci_host->pdev;
1307 int id = isci_host->id;
1308
1309 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
1310}
1311
Dan Williams89a73012011-06-30 19:14:33 -07001312static void isci_user_parameters_get(struct sci_user_parameters *u)
Dave Jiangb5f18a22011-03-16 14:57:23 -07001313{
Dave Jiangb5f18a22011-03-16 14:57:23 -07001314 int i;
1315
1316 for (i = 0; i < SCI_MAX_PHYS; i++) {
1317 struct sci_phy_user_params *u_phy = &u->phys[i];
1318
1319 u_phy->max_speed_generation = phy_gen;
1320
1321 /* we are not exporting these for now */
1322 u_phy->align_insertion_frequency = 0x7f;
1323 u_phy->in_connection_align_insertion_frequency = 0xff;
1324 u_phy->notify_enable_spin_up_insertion_frequency = 0x33;
1325 }
1326
1327 u->stp_inactivity_timeout = stp_inactive_to;
1328 u->ssp_inactivity_timeout = ssp_inactive_to;
1329 u->stp_max_occupancy_timeout = stp_max_occ_to;
1330 u->ssp_max_occupancy_timeout = ssp_max_occ_to;
1331 u->no_outbound_task_timeout = no_outbound_task_to;
1332 u->max_number_concurrent_device_spin_up = max_concurr_spinup;
1333}
1334
Dan Williams89a73012011-06-30 19:14:33 -07001335static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001336{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001337 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001338
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001339 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001340}
1341
Dan Williams89a73012011-06-30 19:14:33 -07001342static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001343{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001344 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001345
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001346 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001347}
1348
1349#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1350#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1351#define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1352#define INTERRUPT_COALESCE_NUMBER_MAX 256
1353#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1354#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1355
1356/**
Dan Williams89a73012011-06-30 19:14:33 -07001357 * sci_controller_set_interrupt_coalescence() - This method allows the user to
Dan Williamscc9203b2011-05-08 17:34:44 -07001358 * configure the interrupt coalescence.
1359 * @controller: This parameter represents the handle to the controller object
1360 * for which its interrupt coalesce register is overridden.
1361 * @coalesce_number: Used to control the number of entries in the Completion
1362 * Queue before an interrupt is generated. If the number of entries exceed
1363 * this number, an interrupt will be generated. The valid range of the input
1364 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1365 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1366 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1367 * interrupt coalescing timeout.
1368 *
1369 * Indicate if the user successfully set the interrupt coalesce parameters.
1370 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1371 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1372 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001373static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001374sci_controller_set_interrupt_coalescence(struct isci_host *ihost,
1375 u32 coalesce_number,
1376 u32 coalesce_timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001377{
1378 u8 timeout_encode = 0;
1379 u32 min = 0;
1380 u32 max = 0;
1381
1382 /* Check if the input parameters fall in the range. */
1383 if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX)
1384 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1385
1386 /*
1387 * Defined encoding for interrupt coalescing timeout:
1388 * Value Min Max Units
1389 * ----- --- --- -----
1390 * 0 - - Disabled
1391 * 1 13.3 20.0 ns
1392 * 2 26.7 40.0
1393 * 3 53.3 80.0
1394 * 4 106.7 160.0
1395 * 5 213.3 320.0
1396 * 6 426.7 640.0
1397 * 7 853.3 1280.0
1398 * 8 1.7 2.6 us
1399 * 9 3.4 5.1
1400 * 10 6.8 10.2
1401 * 11 13.7 20.5
1402 * 12 27.3 41.0
1403 * 13 54.6 81.9
1404 * 14 109.2 163.8
1405 * 15 218.5 327.7
1406 * 16 436.9 655.4
1407 * 17 873.8 1310.7
1408 * 18 1.7 2.6 ms
1409 * 19 3.5 5.2
1410 * 20 7.0 10.5
1411 * 21 14.0 21.0
1412 * 22 28.0 41.9
1413 * 23 55.9 83.9
1414 * 24 111.8 167.8
1415 * 25 223.7 335.5
1416 * 26 447.4 671.1
1417 * 27 894.8 1342.2
1418 * 28 1.8 2.7 s
1419 * Others Undefined */
1420
1421 /*
1422 * Use the table above to decide the encode of interrupt coalescing timeout
1423 * value for register writing. */
1424 if (coalesce_timeout == 0)
1425 timeout_encode = 0;
1426 else{
1427 /* make the timeout value in unit of (10 ns). */
1428 coalesce_timeout = coalesce_timeout * 100;
1429 min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10;
1430 max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10;
1431
1432 /* get the encode of timeout for register writing. */
1433 for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN;
1434 timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX;
1435 timeout_encode++) {
1436 if (min <= coalesce_timeout && max > coalesce_timeout)
1437 break;
1438 else if (coalesce_timeout >= max && coalesce_timeout < min * 2
1439 && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) {
1440 if ((coalesce_timeout - max) < (2 * min - coalesce_timeout))
1441 break;
1442 else{
1443 timeout_encode++;
1444 break;
1445 }
1446 } else {
1447 max = max * 2;
1448 min = min * 2;
1449 }
1450 }
1451
1452 if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1)
1453 /* the value is out of range. */
1454 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1455 }
1456
1457 writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) |
1458 SMU_ICC_GEN_VAL(TIMER, timeout_encode),
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001459 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001460
1461
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001462 ihost->interrupt_coalesce_number = (u16)coalesce_number;
1463 ihost->interrupt_coalesce_timeout = coalesce_timeout / 100;
Dan Williamscc9203b2011-05-08 17:34:44 -07001464
1465 return SCI_SUCCESS;
1466}
1467
1468
Dan Williams89a73012011-06-30 19:14:33 -07001469static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001470{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001471 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001472
1473 /* set the default interrupt coalescence number and timeout value. */
Dan Williams89a73012011-06-30 19:14:33 -07001474 sci_controller_set_interrupt_coalescence(ihost, 0x10, 250);
Dan Williamscc9203b2011-05-08 17:34:44 -07001475}
1476
Dan Williams89a73012011-06-30 19:14:33 -07001477static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001478{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001479 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001480
1481 /* disable interrupt coalescence. */
Dan Williams89a73012011-06-30 19:14:33 -07001482 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001483}
1484
Dan Williams89a73012011-06-30 19:14:33 -07001485static enum sci_status sci_controller_stop_phys(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001486{
1487 u32 index;
1488 enum sci_status status;
1489 enum sci_status phy_status;
Dan Williamscc9203b2011-05-08 17:34:44 -07001490
1491 status = SCI_SUCCESS;
1492
1493 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001494 phy_status = sci_phy_stop(&ihost->phys[index]);
Dan Williamscc9203b2011-05-08 17:34:44 -07001495
1496 if (phy_status != SCI_SUCCESS &&
1497 phy_status != SCI_FAILURE_INVALID_STATE) {
1498 status = SCI_FAILURE;
1499
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001500 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001501 "%s: Controller stop operation failed to stop "
1502 "phy %d because of status %d.\n",
1503 __func__,
Dan Williams85280952011-06-28 15:05:53 -07001504 ihost->phys[index].phy_index, phy_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001505 }
1506 }
1507
1508 return status;
1509}
1510
Dan Williams89a73012011-06-30 19:14:33 -07001511static enum sci_status sci_controller_stop_ports(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001512{
1513 u32 index;
1514 enum sci_status port_status;
1515 enum sci_status status = SCI_SUCCESS;
Dan Williamscc9203b2011-05-08 17:34:44 -07001516
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001517 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001518 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001519
Dan Williams89a73012011-06-30 19:14:33 -07001520 port_status = sci_port_stop(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001521
1522 if ((port_status != SCI_SUCCESS) &&
1523 (port_status != SCI_FAILURE_INVALID_STATE)) {
1524 status = SCI_FAILURE;
1525
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001526 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001527 "%s: Controller stop operation failed to "
1528 "stop port %d because of status %d.\n",
1529 __func__,
Dan Williamsffe191c2011-06-29 13:09:25 -07001530 iport->logical_port_index,
Dan Williamscc9203b2011-05-08 17:34:44 -07001531 port_status);
1532 }
1533 }
1534
1535 return status;
1536}
1537
Dan Williams89a73012011-06-30 19:14:33 -07001538static enum sci_status sci_controller_stop_devices(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001539{
1540 u32 index;
1541 enum sci_status status;
1542 enum sci_status device_status;
1543
1544 status = SCI_SUCCESS;
1545
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001546 for (index = 0; index < ihost->remote_node_entries; index++) {
1547 if (ihost->device_table[index] != NULL) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001548 /* / @todo What timeout value do we want to provide to this request? */
Dan Williams89a73012011-06-30 19:14:33 -07001549 device_status = sci_remote_device_stop(ihost->device_table[index], 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001550
1551 if ((device_status != SCI_SUCCESS) &&
1552 (device_status != SCI_FAILURE_INVALID_STATE)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001553 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001554 "%s: Controller stop operation failed "
1555 "to stop device 0x%p because of "
1556 "status %d.\n",
1557 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001558 ihost->device_table[index], device_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001559 }
1560 }
1561 }
1562
1563 return status;
1564}
1565
Dan Williams89a73012011-06-30 19:14:33 -07001566static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001567{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001568 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001569
1570 /* Stop all of the components for this controller */
Dan Williams89a73012011-06-30 19:14:33 -07001571 sci_controller_stop_phys(ihost);
1572 sci_controller_stop_ports(ihost);
1573 sci_controller_stop_devices(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001574}
1575
Dan Williams89a73012011-06-30 19:14:33 -07001576static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001577{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001578 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001579
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001580 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001581}
1582
Dan Williams89a73012011-06-30 19:14:33 -07001583static void sci_controller_reset_hardware(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001584{
1585 /* Disable interrupts so we dont take any spurious interrupts */
Dan Williams89a73012011-06-30 19:14:33 -07001586 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001587
1588 /* Reset the SCU */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001589 writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001590
1591 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1592 udelay(1000);
1593
1594 /* The write to the CQGR clears the CQP */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001595 writel(0x00000000, &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -07001596
1597 /* The write to the UFQGP clears the UFQPR */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001598 writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001599}
1600
Dan Williams89a73012011-06-30 19:14:33 -07001601static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001602{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001603 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001604
Dan Williams89a73012011-06-30 19:14:33 -07001605 sci_controller_reset_hardware(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001606 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001607}
1608
Dan Williams89a73012011-06-30 19:14:33 -07001609static const struct sci_base_state sci_controller_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001610 [SCIC_INITIAL] = {
Dan Williams89a73012011-06-30 19:14:33 -07001611 .enter_state = sci_controller_initial_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001612 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001613 [SCIC_RESET] = {},
1614 [SCIC_INITIALIZING] = {},
1615 [SCIC_INITIALIZED] = {},
1616 [SCIC_STARTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001617 .exit_state = sci_controller_starting_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001618 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001619 [SCIC_READY] = {
Dan Williams89a73012011-06-30 19:14:33 -07001620 .enter_state = sci_controller_ready_state_enter,
1621 .exit_state = sci_controller_ready_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001622 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001623 [SCIC_RESETTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001624 .enter_state = sci_controller_resetting_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001625 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001626 [SCIC_STOPPING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001627 .enter_state = sci_controller_stopping_state_enter,
1628 .exit_state = sci_controller_stopping_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001629 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001630 [SCIC_STOPPED] = {},
1631 [SCIC_FAILED] = {}
Dan Williamscc9203b2011-05-08 17:34:44 -07001632};
1633
Dan Williams89a73012011-06-30 19:14:33 -07001634static void sci_controller_set_default_config_parameters(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001635{
1636 /* these defaults are overridden by the platform / firmware */
Dan Williamscc9203b2011-05-08 17:34:44 -07001637 u16 index;
1638
1639 /* Default to APC mode. */
Dan Williams89a73012011-06-30 19:14:33 -07001640 ihost->oem_parameters.controller.mode_type = SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001641
1642 /* Default to APC mode. */
Dan Williams89a73012011-06-30 19:14:33 -07001643 ihost->oem_parameters.controller.max_concurrent_dev_spin_up = 1;
Dan Williamscc9203b2011-05-08 17:34:44 -07001644
1645 /* Default to no SSC operation. */
Dan Williams89a73012011-06-30 19:14:33 -07001646 ihost->oem_parameters.controller.do_enable_ssc = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07001647
1648 /* Initialize all of the port parameter information to narrow ports. */
1649 for (index = 0; index < SCI_MAX_PORTS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001650 ihost->oem_parameters.ports[index].phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001651 }
1652
1653 /* Initialize all of the phy parameter information. */
1654 for (index = 0; index < SCI_MAX_PHYS; index++) {
1655 /* Default to 6G (i.e. Gen 3) for now. */
Dan Williams89a73012011-06-30 19:14:33 -07001656 ihost->user_parameters.phys[index].max_speed_generation = 3;
Dan Williamscc9203b2011-05-08 17:34:44 -07001657
1658 /* the frequencies cannot be 0 */
Dan Williams89a73012011-06-30 19:14:33 -07001659 ihost->user_parameters.phys[index].align_insertion_frequency = 0x7f;
1660 ihost->user_parameters.phys[index].in_connection_align_insertion_frequency = 0xff;
1661 ihost->user_parameters.phys[index].notify_enable_spin_up_insertion_frequency = 0x33;
Dan Williamscc9203b2011-05-08 17:34:44 -07001662
1663 /*
1664 * Previous Vitesse based expanders had a arbitration issue that
1665 * is worked around by having the upper 32-bits of SAS address
1666 * with a value greater then the Vitesse company identifier.
1667 * Hence, usage of 0x5FCFFFFF. */
Dan Williams89a73012011-06-30 19:14:33 -07001668 ihost->oem_parameters.phys[index].sas_address.low = 0x1 + ihost->id;
1669 ihost->oem_parameters.phys[index].sas_address.high = 0x5FCFFFFF;
Dan Williamscc9203b2011-05-08 17:34:44 -07001670 }
1671
Dan Williams89a73012011-06-30 19:14:33 -07001672 ihost->user_parameters.stp_inactivity_timeout = 5;
1673 ihost->user_parameters.ssp_inactivity_timeout = 5;
1674 ihost->user_parameters.stp_max_occupancy_timeout = 5;
1675 ihost->user_parameters.ssp_max_occupancy_timeout = 20;
1676 ihost->user_parameters.no_outbound_task_timeout = 20;
Dan Williamscc9203b2011-05-08 17:34:44 -07001677}
1678
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001679static void controller_timeout(unsigned long data)
1680{
1681 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001682 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer);
1683 struct sci_base_state_machine *sm = &ihost->sm;
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001684 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -07001685
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001686 spin_lock_irqsave(&ihost->scic_lock, flags);
1687
1688 if (tmr->cancel)
1689 goto done;
1690
Edmund Nadolskie3013702011-06-02 00:10:43 +00001691 if (sm->current_state_id == SCIC_STARTING)
Dan Williams89a73012011-06-30 19:14:33 -07001692 sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001693 else if (sm->current_state_id == SCIC_STOPPING) {
1694 sci_change_state(sm, SCIC_FAILED);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001695 isci_host_stop_complete(ihost, SCI_FAILURE_TIMEOUT);
1696 } else /* / @todo Now what do we want to do in this case? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001697 dev_err(&ihost->pdev->dev,
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001698 "%s: Controller timer fired when controller was not "
1699 "in a state being timed.\n",
1700 __func__);
1701
1702done:
1703 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1704}
Dan Williamscc9203b2011-05-08 17:34:44 -07001705
Dan Williams89a73012011-06-30 19:14:33 -07001706static enum sci_status sci_controller_construct(struct isci_host *ihost,
1707 void __iomem *scu_base,
1708 void __iomem *smu_base)
Dan Williamscc9203b2011-05-08 17:34:44 -07001709{
Dan Williamscc9203b2011-05-08 17:34:44 -07001710 u8 i;
1711
Dan Williams89a73012011-06-30 19:14:33 -07001712 sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001713
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001714 ihost->scu_registers = scu_base;
1715 ihost->smu_registers = smu_base;
Dan Williamscc9203b2011-05-08 17:34:44 -07001716
Dan Williams89a73012011-06-30 19:14:33 -07001717 sci_port_configuration_agent_construct(&ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07001718
1719 /* Construct the ports for this controller */
1720 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williams89a73012011-06-30 19:14:33 -07001721 sci_port_construct(&ihost->ports[i], i, ihost);
1722 sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001723
1724 /* Construct the phys for this controller */
1725 for (i = 0; i < SCI_MAX_PHYS; i++) {
1726 /* Add all the PHYs to the dummy port */
Dan Williams89a73012011-06-30 19:14:33 -07001727 sci_phy_construct(&ihost->phys[i],
1728 &ihost->ports[SCI_MAX_PORTS], i);
Dan Williamscc9203b2011-05-08 17:34:44 -07001729 }
1730
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001731 ihost->invalid_phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001732
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001733 sci_init_timer(&ihost->timer, controller_timeout);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001734
Dan Williamscc9203b2011-05-08 17:34:44 -07001735 /* Initialize the User and OEM parameters to default values. */
Dan Williams89a73012011-06-30 19:14:33 -07001736 sci_controller_set_default_config_parameters(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001737
Dan Williams89a73012011-06-30 19:14:33 -07001738 return sci_controller_reset(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001739}
1740
Dan Williams89a73012011-06-30 19:14:33 -07001741int sci_oem_parameters_validate(struct sci_oem_params *oem)
Dan Williamscc9203b2011-05-08 17:34:44 -07001742{
1743 int i;
1744
1745 for (i = 0; i < SCI_MAX_PORTS; i++)
1746 if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX)
1747 return -EINVAL;
1748
1749 for (i = 0; i < SCI_MAX_PHYS; i++)
1750 if (oem->phys[i].sas_address.high == 0 &&
1751 oem->phys[i].sas_address.low == 0)
1752 return -EINVAL;
1753
1754 if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) {
1755 for (i = 0; i < SCI_MAX_PHYS; i++)
1756 if (oem->ports[i].phy_mask != 0)
1757 return -EINVAL;
1758 } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
1759 u8 phy_mask = 0;
1760
1761 for (i = 0; i < SCI_MAX_PHYS; i++)
1762 phy_mask |= oem->ports[i].phy_mask;
1763
1764 if (phy_mask == 0)
1765 return -EINVAL;
1766 } else
1767 return -EINVAL;
1768
1769 if (oem->controller.max_concurrent_dev_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT)
1770 return -EINVAL;
1771
1772 return 0;
1773}
1774
Dan Williams89a73012011-06-30 19:14:33 -07001775static enum sci_status sci_oem_parameters_set(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001776{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001777 u32 state = ihost->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -07001778
Edmund Nadolskie3013702011-06-02 00:10:43 +00001779 if (state == SCIC_RESET ||
1780 state == SCIC_INITIALIZING ||
1781 state == SCIC_INITIALIZED) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001782
Dan Williams89a73012011-06-30 19:14:33 -07001783 if (sci_oem_parameters_validate(&ihost->oem_parameters))
Dan Williamscc9203b2011-05-08 17:34:44 -07001784 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001785
1786 return SCI_SUCCESS;
1787 }
1788
1789 return SCI_FAILURE_INVALID_STATE;
1790}
1791
Edmund Nadolski04736612011-05-19 20:17:47 -07001792static void power_control_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -07001793{
Edmund Nadolski04736612011-05-19 20:17:47 -07001794 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001795 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer);
Dan Williams85280952011-06-28 15:05:53 -07001796 struct isci_phy *iphy;
Edmund Nadolski04736612011-05-19 20:17:47 -07001797 unsigned long flags;
1798 u8 i;
Dan Williamscc9203b2011-05-08 17:34:44 -07001799
Edmund Nadolski04736612011-05-19 20:17:47 -07001800 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001801
Edmund Nadolski04736612011-05-19 20:17:47 -07001802 if (tmr->cancel)
1803 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001804
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001805 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001806
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001807 if (ihost->power_control.phys_waiting == 0) {
1808 ihost->power_control.timer_started = false;
Edmund Nadolski04736612011-05-19 20:17:47 -07001809 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001810 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001811
1812 for (i = 0; i < SCI_MAX_PHYS; i++) {
1813
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001814 if (ihost->power_control.phys_waiting == 0)
Edmund Nadolski04736612011-05-19 20:17:47 -07001815 break;
1816
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001817 iphy = ihost->power_control.requesters[i];
Dan Williams85280952011-06-28 15:05:53 -07001818 if (iphy == NULL)
Edmund Nadolski04736612011-05-19 20:17:47 -07001819 continue;
1820
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001821 if (ihost->power_control.phys_granted_power >=
Dan Williams89a73012011-06-30 19:14:33 -07001822 ihost->oem_parameters.controller.max_concurrent_dev_spin_up)
Edmund Nadolski04736612011-05-19 20:17:47 -07001823 break;
1824
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001825 ihost->power_control.requesters[i] = NULL;
1826 ihost->power_control.phys_waiting--;
1827 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001828 sci_phy_consume_power_handler(iphy);
Edmund Nadolski04736612011-05-19 20:17:47 -07001829 }
1830
1831 /*
1832 * It doesn't matter if the power list is empty, we need to start the
1833 * timer in case another phy becomes ready.
1834 */
1835 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001836 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001837
1838done:
1839 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001840}
1841
Dan Williams89a73012011-06-30 19:14:33 -07001842void sci_controller_power_control_queue_insert(struct isci_host *ihost,
1843 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001844{
Dan Williams85280952011-06-28 15:05:53 -07001845 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001846
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001847 if (ihost->power_control.phys_granted_power <
Dan Williams89a73012011-06-30 19:14:33 -07001848 ihost->oem_parameters.controller.max_concurrent_dev_spin_up) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001849 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001850 sci_phy_consume_power_handler(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07001851
1852 /*
1853 * stop and start the power_control timer. When the timer fires, the
1854 * no_of_phys_granted_power will be set to 0
1855 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001856 if (ihost->power_control.timer_started)
1857 sci_del_timer(&ihost->power_control.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001858
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001859 sci_mod_timer(&ihost->power_control.timer,
Edmund Nadolski04736612011-05-19 20:17:47 -07001860 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001861 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001862
Dan Williamscc9203b2011-05-08 17:34:44 -07001863 } else {
1864 /* Add the phy in the waiting list */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001865 ihost->power_control.requesters[iphy->phy_index] = iphy;
1866 ihost->power_control.phys_waiting++;
Dan Williamscc9203b2011-05-08 17:34:44 -07001867 }
1868}
1869
Dan Williams89a73012011-06-30 19:14:33 -07001870void sci_controller_power_control_queue_remove(struct isci_host *ihost,
1871 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001872{
Dan Williams85280952011-06-28 15:05:53 -07001873 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001874
Dan Williams89a73012011-06-30 19:14:33 -07001875 if (ihost->power_control.requesters[iphy->phy_index])
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001876 ihost->power_control.phys_waiting--;
Dan Williamscc9203b2011-05-08 17:34:44 -07001877
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001878 ihost->power_control.requesters[iphy->phy_index] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07001879}
1880
1881#define AFE_REGISTER_WRITE_DELAY 10
1882
1883/* Initialize the AFE for this phy index. We need to read the AFE setup from
1884 * the OEM parameters
1885 */
Dan Williams89a73012011-06-30 19:14:33 -07001886static void sci_controller_afe_initialization(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001887{
Dan Williams89a73012011-06-30 19:14:33 -07001888 const struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001889 struct pci_dev *pdev = ihost->pdev;
Dan Williamscc9203b2011-05-08 17:34:44 -07001890 u32 afe_status;
1891 u32 phy_id;
1892
1893 /* Clear DFX Status registers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001894 writel(0x0081000f, &ihost->scu_registers->afe.afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001895 udelay(AFE_REGISTER_WRITE_DELAY);
1896
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001897 if (is_b0(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001898 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
1899 * Timer, PM Stagger Timer */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001900 writel(0x0007BFFF, &ihost->scu_registers->afe.afe_pmsn_master_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07001901 udelay(AFE_REGISTER_WRITE_DELAY);
1902 }
1903
1904 /* Configure bias currents to normal */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001905 if (is_a2(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001906 writel(0x00005A00, &ihost->scu_registers->afe.afe_bias_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001907 else if (is_b0(pdev) || is_c0(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001908 writel(0x00005F00, &ihost->scu_registers->afe.afe_bias_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001909
1910 udelay(AFE_REGISTER_WRITE_DELAY);
1911
1912 /* Enable PLL */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001913 if (is_b0(pdev) || is_c0(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001914 writel(0x80040A08, &ihost->scu_registers->afe.afe_pll_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001915 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001916 writel(0x80040908, &ihost->scu_registers->afe.afe_pll_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001917
1918 udelay(AFE_REGISTER_WRITE_DELAY);
1919
1920 /* Wait for the PLL to lock */
1921 do {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001922 afe_status = readl(&ihost->scu_registers->afe.afe_common_block_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001923 udelay(AFE_REGISTER_WRITE_DELAY);
1924 } while ((afe_status & 0x00001000) == 0);
1925
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001926 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001927 /* Shorten SAS SNW lock time (RxLock timer value from 76 us to 50 us) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001928 writel(0x7bcc96ad, &ihost->scu_registers->afe.afe_pmsn_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001929 udelay(AFE_REGISTER_WRITE_DELAY);
1930 }
1931
1932 for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) {
1933 const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id];
1934
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001935 if (is_b0(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001936 /* Configure transmitter SSC parameters */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001937 writel(0x00030000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_ssc_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001938 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001939 } else if (is_c0(pdev)) {
Adam Gruchaladbb07432011-06-01 22:31:03 +00001940 /* Configure transmitter SSC parameters */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001941 writel(0x0003000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_ssc_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001942 udelay(AFE_REGISTER_WRITE_DELAY);
1943
1944 /*
1945 * All defaults, except the Receive Word Alignament/Comma Detect
1946 * Enable....(0xe800) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001947 writel(0x00004500, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001948 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamscc9203b2011-05-08 17:34:44 -07001949 } else {
1950 /*
1951 * All defaults, except the Receive Word Alignament/Comma Detect
1952 * Enable....(0xe800) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001953 writel(0x00004512, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001954 udelay(AFE_REGISTER_WRITE_DELAY);
1955
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001956 writel(0x0050100F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07001957 udelay(AFE_REGISTER_WRITE_DELAY);
1958 }
1959
1960 /*
1961 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1962 * & increase TX int & ext bias 20%....(0xe85c) */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001963 if (is_a2(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001964 writel(0x000003F0, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001965 else if (is_b0(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001966 /* Power down TX and RX (PWRDNTX and PWRDNRX) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001967 writel(0x000003D7, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001968 udelay(AFE_REGISTER_WRITE_DELAY);
1969
1970 /*
1971 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1972 * & increase TX int & ext bias 20%....(0xe85c) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001973 writel(0x000003D4, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001974 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001975 writel(0x000001E7, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001976 udelay(AFE_REGISTER_WRITE_DELAY);
1977
1978 /*
1979 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1980 * & increase TX int & ext bias 20%....(0xe85c) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001981 writel(0x000001E4, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001982 }
1983 udelay(AFE_REGISTER_WRITE_DELAY);
1984
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001985 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001986 /* Enable TX equalization (0xe824) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001987 writel(0x00040000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001988 udelay(AFE_REGISTER_WRITE_DELAY);
1989 }
1990
1991 /*
1992 * RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0, TPD=0x0(TX Power On),
1993 * RDD=0x0(RX Detect Enabled) ....(0xe800) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001994 writel(0x00004100, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001995 udelay(AFE_REGISTER_WRITE_DELAY);
1996
1997 /* Leave DFE/FFE on */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001998 if (is_a2(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001999 writel(0x3F11103F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control0);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002000 else if (is_b0(pdev)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002001 writel(0x3F11103F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002002 udelay(AFE_REGISTER_WRITE_DELAY);
2003 /* Enable TX equalization (0xe824) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002004 writel(0x00040000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002005 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002006 writel(0x0140DF0F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control1);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002007 udelay(AFE_REGISTER_WRITE_DELAY);
2008
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002009 writel(0x3F6F103F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002010 udelay(AFE_REGISTER_WRITE_DELAY);
2011
2012 /* Enable TX equalization (0xe824) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002013 writel(0x00040000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002014 }
Adam Gruchaladbb07432011-06-01 22:31:03 +00002015
Dan Williamscc9203b2011-05-08 17:34:44 -07002016 udelay(AFE_REGISTER_WRITE_DELAY);
2017
2018 writel(oem_phy->afe_tx_amp_control0,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002019 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002020 udelay(AFE_REGISTER_WRITE_DELAY);
2021
2022 writel(oem_phy->afe_tx_amp_control1,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002023 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002024 udelay(AFE_REGISTER_WRITE_DELAY);
2025
2026 writel(oem_phy->afe_tx_amp_control2,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002027 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002028 udelay(AFE_REGISTER_WRITE_DELAY);
2029
2030 writel(oem_phy->afe_tx_amp_control3,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002031 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control3);
Dan Williamscc9203b2011-05-08 17:34:44 -07002032 udelay(AFE_REGISTER_WRITE_DELAY);
2033 }
2034
2035 /* Transfer control to the PEs */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002036 writel(0x00010f00, &ihost->scu_registers->afe.afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002037 udelay(AFE_REGISTER_WRITE_DELAY);
2038}
2039
Dan Williams89a73012011-06-30 19:14:33 -07002040static void sci_controller_initialize_power_control(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002041{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002042 sci_init_timer(&ihost->power_control.timer, power_control_timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07002043
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002044 memset(ihost->power_control.requesters, 0,
2045 sizeof(ihost->power_control.requesters));
Dan Williamscc9203b2011-05-08 17:34:44 -07002046
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002047 ihost->power_control.phys_waiting = 0;
2048 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002049}
2050
Dan Williams89a73012011-06-30 19:14:33 -07002051static enum sci_status sci_controller_initialize(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002052{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002053 struct sci_base_state_machine *sm = &ihost->sm;
Dan Williams7c78da32011-06-01 16:00:01 -07002054 enum sci_status result = SCI_FAILURE;
2055 unsigned long i, state, val;
Dan Williamscc9203b2011-05-08 17:34:44 -07002056
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002057 if (ihost->sm.current_state_id != SCIC_RESET) {
2058 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002059 "SCIC Controller initialize operation requested "
2060 "in invalid state\n");
2061 return SCI_FAILURE_INVALID_STATE;
2062 }
2063
Edmund Nadolskie3013702011-06-02 00:10:43 +00002064 sci_change_state(sm, SCIC_INITIALIZING);
Dan Williamscc9203b2011-05-08 17:34:44 -07002065
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002066 sci_init_timer(&ihost->phy_timer, phy_startup_timeout);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -07002067
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002068 ihost->next_phy_to_start = 0;
2069 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07002070
Dan Williams89a73012011-06-30 19:14:33 -07002071 sci_controller_initialize_power_control(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002072
2073 /*
2074 * There is nothing to do here for B0 since we do not have to
2075 * program the AFE registers.
2076 * / @todo The AFE settings are supposed to be correct for the B0 but
2077 * / presently they seem to be wrong. */
Dan Williams89a73012011-06-30 19:14:33 -07002078 sci_controller_afe_initialization(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002079
Dan Williams7c78da32011-06-01 16:00:01 -07002080
2081 /* Take the hardware out of reset */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002082 writel(0, &ihost->smu_registers->soft_reset_control);
Dan Williams7c78da32011-06-01 16:00:01 -07002083
2084 /*
2085 * / @todo Provide meaningfull error code for hardware failure
2086 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2087 for (i = 100; i >= 1; i--) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002088 u32 status;
Dan Williamscc9203b2011-05-08 17:34:44 -07002089
Dan Williams7c78da32011-06-01 16:00:01 -07002090 /* Loop until the hardware reports success */
2091 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002092 status = readl(&ihost->smu_registers->control_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002093
Dan Williams7c78da32011-06-01 16:00:01 -07002094 if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED)
2095 break;
Dan Williamscc9203b2011-05-08 17:34:44 -07002096 }
Dan Williams7c78da32011-06-01 16:00:01 -07002097 if (i == 0)
2098 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002099
Dan Williams7c78da32011-06-01 16:00:01 -07002100 /*
2101 * Determine what are the actaul device capacities that the
2102 * hardware will support */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002103 val = readl(&ihost->smu_registers->device_context_capacity);
Dan Williamscc9203b2011-05-08 17:34:44 -07002104
Dan Williams7c78da32011-06-01 16:00:01 -07002105 /* Record the smaller of the two capacity values */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002106 ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS);
2107 ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS);
2108 ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES);
Dan Williamscc9203b2011-05-08 17:34:44 -07002109
Dan Williams7c78da32011-06-01 16:00:01 -07002110 /*
2111 * Make all PEs that are unassigned match up with the
2112 * logical ports
2113 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002114 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams7c78da32011-06-01 16:00:01 -07002115 struct scu_port_task_scheduler_group_registers __iomem
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002116 *ptsg = &ihost->scu_registers->peg0.ptsg;
Dan Williamscc9203b2011-05-08 17:34:44 -07002117
Dan Williams7c78da32011-06-01 16:00:01 -07002118 writel(i, &ptsg->protocol_engine[i]);
Dan Williamscc9203b2011-05-08 17:34:44 -07002119 }
2120
2121 /* Initialize hardware PCI Relaxed ordering in DMA engines */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002122 val = readl(&ihost->scu_registers->sdma.pdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002123 val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002124 writel(val, &ihost->scu_registers->sdma.pdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002125
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002126 val = readl(&ihost->scu_registers->sdma.cdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002127 val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002128 writel(val, &ihost->scu_registers->sdma.cdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002129
2130 /*
2131 * Initialize the PHYs before the PORTs because the PHY registers
2132 * are accessed during the port initialization.
2133 */
Dan Williams7c78da32011-06-01 16:00:01 -07002134 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002135 result = sci_phy_initialize(&ihost->phys[i],
2136 &ihost->scu_registers->peg0.pe[i].tl,
2137 &ihost->scu_registers->peg0.pe[i].ll);
Dan Williams7c78da32011-06-01 16:00:01 -07002138 if (result != SCI_SUCCESS)
2139 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002140 }
2141
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002142 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002143 struct isci_port *iport = &ihost->ports[i];
Dan Williams7c78da32011-06-01 16:00:01 -07002144
Dan Williams89a73012011-06-30 19:14:33 -07002145 iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i];
2146 iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0];
2147 iport->viit_registers = &ihost->scu_registers->peg0.viit[i];
Dan Williamscc9203b2011-05-08 17:34:44 -07002148 }
2149
Dan Williams89a73012011-06-30 19:14:33 -07002150 result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07002151
Dan Williams7c78da32011-06-01 16:00:01 -07002152 out:
Dan Williamscc9203b2011-05-08 17:34:44 -07002153 /* Advance the controller state machine */
2154 if (result == SCI_SUCCESS)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002155 state = SCIC_INITIALIZED;
Dan Williamscc9203b2011-05-08 17:34:44 -07002156 else
Edmund Nadolskie3013702011-06-02 00:10:43 +00002157 state = SCIC_FAILED;
2158 sci_change_state(sm, state);
Dan Williamscc9203b2011-05-08 17:34:44 -07002159
2160 return result;
2161}
2162
Dan Williams89a73012011-06-30 19:14:33 -07002163static enum sci_status sci_user_parameters_set(struct isci_host *ihost,
2164 struct sci_user_parameters *sci_parms)
Dan Williamscc9203b2011-05-08 17:34:44 -07002165{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002166 u32 state = ihost->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -07002167
Edmund Nadolskie3013702011-06-02 00:10:43 +00002168 if (state == SCIC_RESET ||
2169 state == SCIC_INITIALIZING ||
2170 state == SCIC_INITIALIZED) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002171 u16 index;
2172
2173 /*
2174 * Validate the user parameters. If they are not legal, then
2175 * return a failure.
2176 */
2177 for (index = 0; index < SCI_MAX_PHYS; index++) {
2178 struct sci_phy_user_params *user_phy;
2179
Dan Williams89a73012011-06-30 19:14:33 -07002180 user_phy = &sci_parms->phys[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07002181
2182 if (!((user_phy->max_speed_generation <=
2183 SCIC_SDS_PARM_MAX_SPEED) &&
2184 (user_phy->max_speed_generation >
2185 SCIC_SDS_PARM_NO_SPEED)))
2186 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2187
2188 if (user_phy->in_connection_align_insertion_frequency <
2189 3)
2190 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2191
2192 if ((user_phy->in_connection_align_insertion_frequency <
2193 3) ||
2194 (user_phy->align_insertion_frequency == 0) ||
2195 (user_phy->
2196 notify_enable_spin_up_insertion_frequency ==
2197 0))
2198 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2199 }
2200
Dan Williams89a73012011-06-30 19:14:33 -07002201 if ((sci_parms->stp_inactivity_timeout == 0) ||
2202 (sci_parms->ssp_inactivity_timeout == 0) ||
2203 (sci_parms->stp_max_occupancy_timeout == 0) ||
2204 (sci_parms->ssp_max_occupancy_timeout == 0) ||
2205 (sci_parms->no_outbound_task_timeout == 0))
Dan Williamscc9203b2011-05-08 17:34:44 -07002206 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2207
Dan Williams89a73012011-06-30 19:14:33 -07002208 memcpy(&ihost->user_parameters, sci_parms, sizeof(*sci_parms));
Dan Williamscc9203b2011-05-08 17:34:44 -07002209
2210 return SCI_SUCCESS;
2211 }
2212
2213 return SCI_FAILURE_INVALID_STATE;
2214}
2215
Dan Williams89a73012011-06-30 19:14:33 -07002216static int sci_controller_mem_init(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002217{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002218 struct device *dev = &ihost->pdev->dev;
Dan Williams7c78da32011-06-01 16:00:01 -07002219 dma_addr_t dma;
2220 size_t size;
2221 int err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002222
Dan Williams7c78da32011-06-01 16:00:01 -07002223 size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002224 ihost->completion_queue = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2225 if (!ihost->completion_queue)
Dan Williamscc9203b2011-05-08 17:34:44 -07002226 return -ENOMEM;
2227
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002228 writel(lower_32_bits(dma), &ihost->smu_registers->completion_queue_lower);
2229 writel(upper_32_bits(dma), &ihost->smu_registers->completion_queue_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002230
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002231 size = ihost->remote_node_entries * sizeof(union scu_remote_node_context);
2232 ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &dma,
Dan Williams89a73012011-06-30 19:14:33 -07002233 GFP_KERNEL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002234 if (!ihost->remote_node_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002235 return -ENOMEM;
2236
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002237 writel(lower_32_bits(dma), &ihost->smu_registers->remote_node_context_lower);
2238 writel(upper_32_bits(dma), &ihost->smu_registers->remote_node_context_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002239
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002240 size = ihost->task_context_entries * sizeof(struct scu_task_context),
2241 ihost->task_context_table = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2242 if (!ihost->task_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002243 return -ENOMEM;
2244
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002245 ihost->task_context_dma = dma;
2246 writel(lower_32_bits(dma), &ihost->smu_registers->host_task_table_lower);
2247 writel(upper_32_bits(dma), &ihost->smu_registers->host_task_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002248
Dan Williams89a73012011-06-30 19:14:33 -07002249 err = sci_unsolicited_frame_control_construct(ihost);
Dan Williams7c78da32011-06-01 16:00:01 -07002250 if (err)
2251 return err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002252
2253 /*
2254 * Inform the silicon as to the location of the UF headers and
2255 * address table.
2256 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002257 writel(lower_32_bits(ihost->uf_control.headers.physical_address),
2258 &ihost->scu_registers->sdma.uf_header_base_address_lower);
2259 writel(upper_32_bits(ihost->uf_control.headers.physical_address),
2260 &ihost->scu_registers->sdma.uf_header_base_address_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002261
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002262 writel(lower_32_bits(ihost->uf_control.address_table.physical_address),
2263 &ihost->scu_registers->sdma.uf_address_table_lower);
2264 writel(upper_32_bits(ihost->uf_control.address_table.physical_address),
2265 &ihost->scu_registers->sdma.uf_address_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002266
2267 return 0;
2268}
2269
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002270int isci_host_init(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07002271{
Dan Williamsd9c37392011-03-03 17:59:32 -08002272 int err = 0, i;
Dan Williams6f231dd2011-07-02 22:56:22 -07002273 enum sci_status status;
Dan Williams89a73012011-06-30 19:14:33 -07002274 struct sci_user_parameters sci_user_params;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002275 struct isci_pci_info *pci_info = to_pci_info(ihost->pdev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002276
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002277 spin_lock_init(&ihost->state_lock);
2278 spin_lock_init(&ihost->scic_lock);
2279 init_waitqueue_head(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07002280
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002281 isci_host_change_state(ihost, isci_starting);
Dan Williams6f231dd2011-07-02 22:56:22 -07002282
Dan Williams89a73012011-06-30 19:14:33 -07002283 status = sci_controller_construct(ihost, scu_base(ihost),
2284 smu_base(ihost));
Dan Williams6f231dd2011-07-02 22:56:22 -07002285
2286 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002287 dev_err(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002288 "%s: sci_controller_construct failed - status = %x\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002289 __func__,
2290 status);
Dave Jiang858d4aa2011-02-22 01:27:03 -08002291 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002292 }
2293
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002294 ihost->sas_ha.dev = &ihost->pdev->dev;
2295 ihost->sas_ha.lldd_ha = ihost;
Dan Williams6f231dd2011-07-02 22:56:22 -07002296
Dan Williamsd044af12011-03-08 09:52:49 -08002297 /*
2298 * grab initial values stored in the controller object for OEM and USER
2299 * parameters
2300 */
Dan Williams89a73012011-06-30 19:14:33 -07002301 isci_user_parameters_get(&sci_user_params);
2302 status = sci_user_parameters_set(ihost, &sci_user_params);
Dan Williamsd044af12011-03-08 09:52:49 -08002303 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002304 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002305 "%s: sci_user_parameters_set failed\n",
Dan Williamsd044af12011-03-08 09:52:49 -08002306 __func__);
2307 return -ENODEV;
2308 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002309
Dan Williamsd044af12011-03-08 09:52:49 -08002310 /* grab any OEM parameters specified in orom */
2311 if (pci_info->orom) {
Dan Williams89a73012011-06-30 19:14:33 -07002312 status = isci_parse_oem_parameters(&ihost->oem_parameters,
Dan Williamsd044af12011-03-08 09:52:49 -08002313 pci_info->orom,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002314 ihost->id);
Dan Williams6f231dd2011-07-02 22:56:22 -07002315 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002316 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002317 "parsing firmware oem parameters failed\n");
Dave Jiang858d4aa2011-02-22 01:27:03 -08002318 return -EINVAL;
Dan Williams6f231dd2011-07-02 22:56:22 -07002319 }
Dan Williams4711ba12011-03-11 10:43:57 -08002320 }
2321
Dan Williams89a73012011-06-30 19:14:33 -07002322 status = sci_oem_parameters_set(ihost);
Dan Williams4711ba12011-03-11 10:43:57 -08002323 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002324 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002325 "%s: sci_oem_parameters_set failed\n",
Dan Williams4711ba12011-03-11 10:43:57 -08002326 __func__);
2327 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002328 }
2329
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002330 tasklet_init(&ihost->completion_tasklet,
2331 isci_host_completion_routine, (unsigned long)ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002332
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002333 INIT_LIST_HEAD(&ihost->requests_to_complete);
2334 INIT_LIST_HEAD(&ihost->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002335
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002336 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07002337 status = sci_controller_initialize(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002338 spin_unlock_irq(&ihost->scic_lock);
Dan Williams7c40a802011-03-02 11:49:26 -08002339 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002340 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002341 "%s: sci_controller_initialize failed -"
Dan Williams7c40a802011-03-02 11:49:26 -08002342 " status = 0x%x\n",
2343 __func__, status);
2344 return -ENODEV;
2345 }
2346
Dan Williams89a73012011-06-30 19:14:33 -07002347 err = sci_controller_mem_init(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002348 if (err)
Dave Jiang858d4aa2011-02-22 01:27:03 -08002349 return err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002350
Dan Williamsd9c37392011-03-03 17:59:32 -08002351 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002352 isci_port_init(&ihost->ports[i], ihost, i);
Dan Williams6f231dd2011-07-02 22:56:22 -07002353
Dan Williamsd9c37392011-03-03 17:59:32 -08002354 for (i = 0; i < SCI_MAX_PHYS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002355 isci_phy_init(&ihost->phys[i], ihost, i);
Dan Williamsd9c37392011-03-03 17:59:32 -08002356
2357 for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002358 struct isci_remote_device *idev = &ihost->devices[i];
Dan Williamsd9c37392011-03-03 17:59:32 -08002359
2360 INIT_LIST_HEAD(&idev->reqs_in_process);
2361 INIT_LIST_HEAD(&idev->node);
Dan Williamsd9c37392011-03-03 17:59:32 -08002362 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002363
Dan Williamsdb056252011-06-17 14:18:39 -07002364 for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) {
2365 struct isci_request *ireq;
2366 dma_addr_t dma;
2367
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002368 ireq = dmam_alloc_coherent(&ihost->pdev->dev,
Dan Williamsdb056252011-06-17 14:18:39 -07002369 sizeof(struct isci_request), &dma,
2370 GFP_KERNEL);
2371 if (!ireq)
2372 return -ENOMEM;
2373
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002374 ireq->tc = &ihost->task_context_table[i];
2375 ireq->owning_controller = ihost;
Dan Williamsdb056252011-06-17 14:18:39 -07002376 spin_lock_init(&ireq->state_lock);
2377 ireq->request_daddr = dma;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002378 ireq->isci_host = ihost;
2379 ihost->reqs[i] = ireq;
Dan Williamsdb056252011-06-17 14:18:39 -07002380 }
2381
Dave Jiang858d4aa2011-02-22 01:27:03 -08002382 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -07002383}
Dan Williamscc9203b2011-05-08 17:34:44 -07002384
Dan Williams89a73012011-06-30 19:14:33 -07002385void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport,
2386 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002387{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002388 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002389 case SCIC_STARTING:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002390 sci_del_timer(&ihost->phy_timer);
2391 ihost->phy_startup_timer_pending = false;
2392 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002393 iport, iphy);
2394 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002395 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002396 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002397 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002398 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002399 break;
2400 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002401 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002402 "%s: SCIC Controller linkup event from phy %d in "
Dan Williams85280952011-06-28 15:05:53 -07002403 "unexpected state %d\n", __func__, iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002404 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002405 }
2406}
2407
Dan Williams89a73012011-06-30 19:14:33 -07002408void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport,
2409 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002410{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002411 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002412 case SCIC_STARTING:
2413 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002414 ihost->port_agent.link_down_handler(ihost, &ihost->port_agent,
Dan Williamsffe191c2011-06-29 13:09:25 -07002415 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002416 break;
2417 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002418 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002419 "%s: SCIC Controller linkdown event from phy %d in "
2420 "unexpected state %d\n",
2421 __func__,
Dan Williams85280952011-06-28 15:05:53 -07002422 iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002423 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002424 }
2425}
2426
Dan Williams89a73012011-06-30 19:14:33 -07002427static bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002428{
2429 u32 index;
2430
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002431 for (index = 0; index < ihost->remote_node_entries; index++) {
2432 if ((ihost->device_table[index] != NULL) &&
2433 (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING))
Dan Williamscc9203b2011-05-08 17:34:44 -07002434 return true;
2435 }
2436
2437 return false;
2438}
2439
Dan Williams89a73012011-06-30 19:14:33 -07002440void sci_controller_remote_device_stopped(struct isci_host *ihost,
2441 struct isci_remote_device *idev)
Dan Williamscc9203b2011-05-08 17:34:44 -07002442{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002443 if (ihost->sm.current_state_id != SCIC_STOPPING) {
2444 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002445 "SCIC Controller 0x%p remote device stopped event "
2446 "from device 0x%p in unexpected state %d\n",
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002447 ihost, idev,
2448 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002449 return;
2450 }
2451
Dan Williams89a73012011-06-30 19:14:33 -07002452 if (!sci_controller_has_remote_devices_stopping(ihost))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002453 sci_change_state(&ihost->sm, SCIC_STOPPED);
Dan Williamscc9203b2011-05-08 17:34:44 -07002454}
2455
Dan Williams89a73012011-06-30 19:14:33 -07002456void sci_controller_post_request(struct isci_host *ihost, u32 request)
Dan Williamscc9203b2011-05-08 17:34:44 -07002457{
Dan Williams89a73012011-06-30 19:14:33 -07002458 dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n",
2459 __func__, ihost->id, request);
Dan Williamscc9203b2011-05-08 17:34:44 -07002460
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002461 writel(request, &ihost->smu_registers->post_context_port);
Dan Williamscc9203b2011-05-08 17:34:44 -07002462}
2463
Dan Williams89a73012011-06-30 19:14:33 -07002464struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag)
Dan Williamscc9203b2011-05-08 17:34:44 -07002465{
2466 u16 task_index;
2467 u16 task_sequence;
2468
Dan Williamsdd047c82011-06-09 11:06:58 -07002469 task_index = ISCI_TAG_TCI(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002470
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002471 if (task_index < ihost->task_context_entries) {
2472 struct isci_request *ireq = ihost->reqs[task_index];
Dan Williamsdb056252011-06-17 14:18:39 -07002473
2474 if (test_bit(IREQ_ACTIVE, &ireq->flags)) {
Dan Williamsdd047c82011-06-09 11:06:58 -07002475 task_sequence = ISCI_TAG_SEQ(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002476
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002477 if (task_sequence == ihost->io_request_sequence[task_index])
Dan Williams5076a1a2011-06-27 14:57:03 -07002478 return ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002479 }
2480 }
2481
2482 return NULL;
2483}
2484
2485/**
2486 * This method allocates remote node index and the reserves the remote node
2487 * context space for use. This method can fail if there are no more remote
2488 * node index available.
2489 * @scic: This is the controller object which contains the set of
2490 * free remote node ids
2491 * @sci_dev: This is the device object which is requesting the a remote node
2492 * id
2493 * @node_id: This is the remote node id that is assinged to the device if one
2494 * is available
2495 *
2496 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2497 * node index available.
2498 */
Dan Williams89a73012011-06-30 19:14:33 -07002499enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost,
2500 struct isci_remote_device *idev,
2501 u16 *node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002502{
2503 u16 node_index;
Dan Williams89a73012011-06-30 19:14:33 -07002504 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002505
Dan Williams89a73012011-06-30 19:14:33 -07002506 node_index = sci_remote_node_table_allocate_remote_node(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002507 &ihost->available_remote_nodes, remote_node_count
Dan Williamscc9203b2011-05-08 17:34:44 -07002508 );
2509
2510 if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002511 ihost->device_table[node_index] = idev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002512
2513 *node_id = node_index;
2514
2515 return SCI_SUCCESS;
2516 }
2517
2518 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
2519}
2520
Dan Williams89a73012011-06-30 19:14:33 -07002521void sci_controller_free_remote_node_context(struct isci_host *ihost,
2522 struct isci_remote_device *idev,
2523 u16 node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002524{
Dan Williams89a73012011-06-30 19:14:33 -07002525 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002526
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002527 if (ihost->device_table[node_id] == idev) {
2528 ihost->device_table[node_id] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002529
Dan Williams89a73012011-06-30 19:14:33 -07002530 sci_remote_node_table_release_remote_node_index(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002531 &ihost->available_remote_nodes, remote_node_count, node_id
Dan Williamscc9203b2011-05-08 17:34:44 -07002532 );
2533 }
2534}
2535
Dan Williams89a73012011-06-30 19:14:33 -07002536void sci_controller_copy_sata_response(void *response_buffer,
2537 void *frame_header,
2538 void *frame_buffer)
Dan Williamscc9203b2011-05-08 17:34:44 -07002539{
Dan Williams89a73012011-06-30 19:14:33 -07002540 /* XXX type safety? */
Dan Williamscc9203b2011-05-08 17:34:44 -07002541 memcpy(response_buffer, frame_header, sizeof(u32));
2542
2543 memcpy(response_buffer + sizeof(u32),
2544 frame_buffer,
2545 sizeof(struct dev_to_host_fis) - sizeof(u32));
2546}
2547
Dan Williams89a73012011-06-30 19:14:33 -07002548void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index)
Dan Williamscc9203b2011-05-08 17:34:44 -07002549{
Dan Williams89a73012011-06-30 19:14:33 -07002550 if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002551 writel(ihost->uf_control.get,
2552 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07002553}
2554
Dan Williams312e0c22011-06-28 13:47:09 -07002555void isci_tci_free(struct isci_host *ihost, u16 tci)
2556{
2557 u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1);
2558
2559 ihost->tci_pool[tail] = tci;
2560 ihost->tci_tail = tail + 1;
2561}
2562
2563static u16 isci_tci_alloc(struct isci_host *ihost)
2564{
2565 u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1);
2566 u16 tci = ihost->tci_pool[head];
2567
2568 ihost->tci_head = head + 1;
2569 return tci;
2570}
2571
2572static u16 isci_tci_space(struct isci_host *ihost)
2573{
2574 return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
2575}
2576
2577u16 isci_alloc_tag(struct isci_host *ihost)
2578{
2579 if (isci_tci_space(ihost)) {
2580 u16 tci = isci_tci_alloc(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002581 u8 seq = ihost->io_request_sequence[tci];
Dan Williams312e0c22011-06-28 13:47:09 -07002582
2583 return ISCI_TAG(seq, tci);
2584 }
2585
2586 return SCI_CONTROLLER_INVALID_IO_TAG;
2587}
2588
2589enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag)
2590{
Dan Williams312e0c22011-06-28 13:47:09 -07002591 u16 tci = ISCI_TAG_TCI(io_tag);
2592 u16 seq = ISCI_TAG_SEQ(io_tag);
2593
2594 /* prevent tail from passing head */
2595 if (isci_tci_active(ihost) == 0)
2596 return SCI_FAILURE_INVALID_IO_TAG;
2597
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002598 if (seq == ihost->io_request_sequence[tci]) {
2599 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1);
Dan Williams312e0c22011-06-28 13:47:09 -07002600
2601 isci_tci_free(ihost, tci);
2602
2603 return SCI_SUCCESS;
2604 }
2605 return SCI_FAILURE_INVALID_IO_TAG;
2606}
2607
Dan Williams89a73012011-06-30 19:14:33 -07002608enum sci_status sci_controller_start_io(struct isci_host *ihost,
2609 struct isci_remote_device *idev,
2610 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002611{
2612 enum sci_status status;
2613
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002614 if (ihost->sm.current_state_id != SCIC_READY) {
2615 dev_warn(&ihost->pdev->dev, "invalid state to start I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002616 return SCI_FAILURE_INVALID_STATE;
2617 }
2618
Dan Williams89a73012011-06-30 19:14:33 -07002619 status = sci_remote_device_start_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002620 if (status != SCI_SUCCESS)
2621 return status;
2622
Dan Williams5076a1a2011-06-27 14:57:03 -07002623 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002624 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002625 return SCI_SUCCESS;
2626}
2627
Dan Williams89a73012011-06-30 19:14:33 -07002628enum sci_status sci_controller_terminate_request(struct isci_host *ihost,
2629 struct isci_remote_device *idev,
2630 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002631{
Dan Williams89a73012011-06-30 19:14:33 -07002632 /* terminate an ongoing (i.e. started) core IO request. This does not
2633 * abort the IO request at the target, but rather removes the IO
2634 * request from the host controller.
2635 */
Dan Williamscc9203b2011-05-08 17:34:44 -07002636 enum sci_status status;
2637
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002638 if (ihost->sm.current_state_id != SCIC_READY) {
2639 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002640 "invalid state to terminate request\n");
2641 return SCI_FAILURE_INVALID_STATE;
2642 }
2643
Dan Williams89a73012011-06-30 19:14:33 -07002644 status = sci_io_request_terminate(ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002645 if (status != SCI_SUCCESS)
2646 return status;
2647
2648 /*
2649 * Utilize the original post context command and or in the POST_TC_ABORT
2650 * request sub-type.
2651 */
Dan Williams89a73012011-06-30 19:14:33 -07002652 sci_controller_post_request(ihost,
2653 ireq->post_context | SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT);
Dan Williamscc9203b2011-05-08 17:34:44 -07002654 return SCI_SUCCESS;
2655}
2656
2657/**
Dan Williams89a73012011-06-30 19:14:33 -07002658 * sci_controller_complete_io() - This method will perform core specific
Dan Williamscc9203b2011-05-08 17:34:44 -07002659 * completion operations for an IO request. After this method is invoked,
2660 * the user should consider the IO request as invalid until it is properly
2661 * reused (i.e. re-constructed).
Dan Williams89a73012011-06-30 19:14:33 -07002662 * @ihost: The handle to the controller object for which to complete the
Dan Williamscc9203b2011-05-08 17:34:44 -07002663 * IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002664 * @idev: The handle to the remote device object for which to complete
Dan Williamscc9203b2011-05-08 17:34:44 -07002665 * the IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002666 * @ireq: the handle to the io request object to complete.
Dan Williamscc9203b2011-05-08 17:34:44 -07002667 */
Dan Williams89a73012011-06-30 19:14:33 -07002668enum sci_status sci_controller_complete_io(struct isci_host *ihost,
2669 struct isci_remote_device *idev,
2670 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002671{
2672 enum sci_status status;
2673 u16 index;
2674
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002675 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002676 case SCIC_STOPPING:
Dan Williamscc9203b2011-05-08 17:34:44 -07002677 /* XXX: Implement this function */
2678 return SCI_FAILURE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002679 case SCIC_READY:
Dan Williams89a73012011-06-30 19:14:33 -07002680 status = sci_remote_device_complete_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002681 if (status != SCI_SUCCESS)
2682 return status;
2683
Dan Williams5076a1a2011-06-27 14:57:03 -07002684 index = ISCI_TAG_TCI(ireq->io_tag);
2685 clear_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002686 return SCI_SUCCESS;
2687 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002688 dev_warn(&ihost->pdev->dev, "invalid state to complete I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002689 return SCI_FAILURE_INVALID_STATE;
2690 }
2691
2692}
2693
Dan Williams89a73012011-06-30 19:14:33 -07002694enum sci_status sci_controller_continue_io(struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002695{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002696 struct isci_host *ihost = ireq->owning_controller;
Dan Williamscc9203b2011-05-08 17:34:44 -07002697
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002698 if (ihost->sm.current_state_id != SCIC_READY) {
2699 dev_warn(&ihost->pdev->dev, "invalid state to continue I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002700 return SCI_FAILURE_INVALID_STATE;
2701 }
2702
Dan Williams5076a1a2011-06-27 14:57:03 -07002703 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002704 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002705 return SCI_SUCCESS;
2706}
2707
2708/**
Dan Williams89a73012011-06-30 19:14:33 -07002709 * sci_controller_start_task() - This method is called by the SCIC user to
Dan Williamscc9203b2011-05-08 17:34:44 -07002710 * send/start a framework task management request.
2711 * @controller: the handle to the controller object for which to start the task
2712 * management request.
2713 * @remote_device: the handle to the remote device object for which to start
2714 * the task management request.
2715 * @task_request: the handle to the task request object to start.
Dan Williamscc9203b2011-05-08 17:34:44 -07002716 */
Dan Williams89a73012011-06-30 19:14:33 -07002717enum sci_task_status sci_controller_start_task(struct isci_host *ihost,
2718 struct isci_remote_device *idev,
2719 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002720{
2721 enum sci_status status;
2722
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002723 if (ihost->sm.current_state_id != SCIC_READY) {
2724 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002725 "%s: SCIC Controller starting task from invalid "
2726 "state\n",
2727 __func__);
2728 return SCI_TASK_FAILURE_INVALID_STATE;
2729 }
2730
Dan Williams89a73012011-06-30 19:14:33 -07002731 status = sci_remote_device_start_task(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002732 switch (status) {
2733 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002734 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002735
2736 /*
2737 * We will let framework know this task request started successfully,
2738 * although core is still woring on starting the request (to post tc when
2739 * RNC is resumed.)
2740 */
2741 return SCI_SUCCESS;
2742 case SCI_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002743 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002744 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002745 break;
2746 default:
2747 break;
2748 }
2749
2750 return status;
2751}