blob: 6981b773a88d42bdf9e7213e31844d2c22711317 [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
Dan Williamsac668c62011-06-07 18:50:55 -070055#include <linux/circ_buf.h>
Dan Williamscc9203b2011-05-08 17:34:44 -070056#include <linux/device.h>
57#include <scsi/sas.h>
58#include "host.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070059#include "isci.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070060#include "port.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070061#include "host.h"
Dan Williamsd044af12011-03-08 09:52:49 -080062#include "probe_roms.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070063#include "remote_device.h"
64#include "request.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070065#include "scu_completion_codes.h"
66#include "scu_event_codes.h"
Dan Williams63a3a152011-05-08 21:36:46 -070067#include "registers.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070068#include "scu_remote_node_context.h"
69#include "scu_task_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070070
Dan Williamscc9203b2011-05-08 17:34:44 -070071#define SCU_CONTEXT_RAM_INIT_STALL_TIME 200
72
Dan Williams7c78da32011-06-01 16:00:01 -070073#define smu_max_ports(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070074 (\
75 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_MASK) \
76 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_SHIFT) + 1 \
77 )
78
Dan Williams7c78da32011-06-01 16:00:01 -070079#define smu_max_task_contexts(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070080 (\
81 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_MASK) \
82 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT) + 1 \
83 )
84
Dan Williams7c78da32011-06-01 16:00:01 -070085#define smu_max_rncs(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070086 (\
87 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_MASK) \
88 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_SHIFT) + 1 \
89 )
90
Dan Williamscc9203b2011-05-08 17:34:44 -070091#define SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT 100
92
93/**
94 *
95 *
96 * The number of milliseconds to wait while a given phy is consuming power
97 * before allowing another set of phys to consume power. Ultimately, this will
98 * be specified by OEM parameter.
99 */
100#define SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL 500
101
102/**
103 * NORMALIZE_PUT_POINTER() -
104 *
105 * This macro will normalize the completion queue put pointer so its value can
106 * be used as an array inde
107 */
108#define NORMALIZE_PUT_POINTER(x) \
109 ((x) & SMU_COMPLETION_QUEUE_PUT_POINTER_MASK)
110
111
112/**
113 * NORMALIZE_EVENT_POINTER() -
114 *
115 * This macro will normalize the completion queue event entry so its value can
116 * be used as an index.
117 */
118#define NORMALIZE_EVENT_POINTER(x) \
119 (\
120 ((x) & SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_MASK) \
121 >> SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_SHIFT \
122 )
123
124/**
Dan Williamscc9203b2011-05-08 17:34:44 -0700125 * NORMALIZE_GET_POINTER() -
126 *
127 * This macro will normalize the completion queue get pointer so its value can
128 * be used as an index into an array
129 */
130#define NORMALIZE_GET_POINTER(x) \
131 ((x) & SMU_COMPLETION_QUEUE_GET_POINTER_MASK)
132
133/**
134 * NORMALIZE_GET_POINTER_CYCLE_BIT() -
135 *
136 * This macro will normalize the completion queue cycle pointer so it matches
137 * the completion queue cycle bit
138 */
139#define NORMALIZE_GET_POINTER_CYCLE_BIT(x) \
140 ((SMU_CQGR_CYCLE_BIT & (x)) << (31 - SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT))
141
142/**
143 * COMPLETION_QUEUE_CYCLE_BIT() -
144 *
145 * This macro will return the cycle bit of the completion queue entry
146 */
147#define COMPLETION_QUEUE_CYCLE_BIT(x) ((x) & 0x80000000)
148
Edmund Nadolski12ef6542011-06-02 00:10:50 +0000149/* Init the state machine and call the state entry function (if any) */
150void sci_init_sm(struct sci_base_state_machine *sm,
151 const struct sci_base_state *state_table, u32 initial_state)
152{
153 sci_state_transition_t handler;
154
155 sm->initial_state_id = initial_state;
156 sm->previous_state_id = initial_state;
157 sm->current_state_id = initial_state;
158 sm->state_table = state_table;
159
160 handler = sm->state_table[initial_state].enter_state;
161 if (handler)
162 handler(sm);
163}
164
165/* Call the state exit fn, update the current state, call the state entry fn */
166void sci_change_state(struct sci_base_state_machine *sm, u32 next_state)
167{
168 sci_state_transition_t handler;
169
170 handler = sm->state_table[sm->current_state_id].exit_state;
171 if (handler)
172 handler(sm);
173
174 sm->previous_state_id = sm->current_state_id;
175 sm->current_state_id = next_state;
176
177 handler = sm->state_table[sm->current_state_id].enter_state;
178 if (handler)
179 handler(sm);
180}
181
Dan Williams89a73012011-06-30 19:14:33 -0700182static bool sci_controller_completion_queue_has_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700183{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700184 u32 get_value = ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700185 u32 get_index = get_value & SMU_COMPLETION_QUEUE_GET_POINTER_MASK;
186
187 if (NORMALIZE_GET_POINTER_CYCLE_BIT(get_value) ==
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700188 COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index]))
Dan Williamscc9203b2011-05-08 17:34:44 -0700189 return true;
190
191 return false;
192}
193
Dan Williams89a73012011-06-30 19:14:33 -0700194static bool sci_controller_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700195{
Dan Williams89a73012011-06-30 19:14:33 -0700196 if (sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700197 return true;
198 } else {
199 /*
200 * we have a spurious interrupt it could be that we have already
201 * emptied the completion queue from a previous interrupt */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700202 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700203
204 /*
205 * There is a race in the hardware that could cause us not to be notified
206 * of an interrupt completion if we do not take this step. We will mask
207 * then unmask the interrupts so if there is another interrupt pending
208 * the clearing of the interrupt source we get the next interrupt message. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700209 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
210 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700211 }
212
213 return false;
214}
215
Dan Williamsc7ef4032011-02-18 09:25:05 -0800216irqreturn_t isci_msix_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700217{
Dan Williamsc7ef4032011-02-18 09:25:05 -0800218 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700219
Dan Williams89a73012011-06-30 19:14:33 -0700220 if (sci_controller_isr(ihost))
Dan Williams0cf89d12011-02-18 09:25:07 -0800221 tasklet_schedule(&ihost->completion_tasklet);
Dan Williams6f231dd2011-07-02 22:56:22 -0700222
Dan Williamsc7ef4032011-02-18 09:25:05 -0800223 return IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700224}
225
Dan Williams89a73012011-06-30 19:14:33 -0700226static bool sci_controller_error_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700227{
228 u32 interrupt_status;
229
230 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700231 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700232 interrupt_status &= (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND);
233
234 if (interrupt_status != 0) {
235 /*
236 * There is an error interrupt pending so let it through and handle
237 * in the callback */
238 return true;
239 }
240
241 /*
242 * There is a race in the hardware that could cause us not to be notified
243 * of an interrupt completion if we do not take this step. We will mask
244 * then unmask the error interrupts so if there was another interrupt
245 * pending we will be notified.
246 * Could we write the value of (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND)? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700247 writel(0xff, &ihost->smu_registers->interrupt_mask);
248 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700249
250 return false;
251}
252
Dan Williams89a73012011-06-30 19:14:33 -0700253static void sci_controller_task_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700254{
Dan Williams89a73012011-06-30 19:14:33 -0700255 u32 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamsdb056252011-06-17 14:18:39 -0700256 struct isci_request *ireq = ihost->reqs[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700257
258 /* Make sure that we really want to process this IO request */
Dan Williamsdb056252011-06-17 14:18:39 -0700259 if (test_bit(IREQ_ACTIVE, &ireq->flags) &&
Dan Williams5076a1a2011-06-27 14:57:03 -0700260 ireq->io_tag != SCI_CONTROLLER_INVALID_IO_TAG &&
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700261 ISCI_TAG_SEQ(ireq->io_tag) == ihost->io_request_sequence[index])
Dan Williams89a73012011-06-30 19:14:33 -0700262 /* Yep this is a valid io request pass it along to the
263 * io request handler
264 */
265 sci_io_request_tc_completion(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700266}
267
Dan Williams89a73012011-06-30 19:14:33 -0700268static void sci_controller_sdma_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700269{
270 u32 index;
Dan Williams5076a1a2011-06-27 14:57:03 -0700271 struct isci_request *ireq;
Dan Williams78a6f062011-06-30 16:31:37 -0700272 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700273
Dan Williams89a73012011-06-30 19:14:33 -0700274 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700275
Dan Williams89a73012011-06-30 19:14:33 -0700276 switch (scu_get_command_request_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700277 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC:
278 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700279 ireq = ihost->reqs[index];
280 dev_warn(&ihost->pdev->dev, "%s: %x for io request %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700281 __func__, ent, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -0700282 /* @todo For a post TC operation we need to fail the IO
283 * request
284 */
285 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700286 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_RNC:
287 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_OTHER_RNC:
288 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_RNC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700289 idev = ihost->device_table[index];
290 dev_warn(&ihost->pdev->dev, "%s: %x for device %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700291 __func__, ent, idev);
Dan Williamscc9203b2011-05-08 17:34:44 -0700292 /* @todo For a port RNC operation we need to fail the
293 * device
294 */
295 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700296 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700297 dev_warn(&ihost->pdev->dev, "%s: unknown completion type %x\n",
Dan Williams89a73012011-06-30 19:14:33 -0700298 __func__, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700299 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700300 }
301}
302
Dan Williams89a73012011-06-30 19:14:33 -0700303static void sci_controller_unsolicited_frame(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700304{
305 u32 index;
306 u32 frame_index;
307
Dan Williamscc9203b2011-05-08 17:34:44 -0700308 struct scu_unsolicited_frame_header *frame_header;
Dan Williams85280952011-06-28 15:05:53 -0700309 struct isci_phy *iphy;
Dan Williams78a6f062011-06-30 16:31:37 -0700310 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700311
312 enum sci_status result = SCI_FAILURE;
313
Dan Williams89a73012011-06-30 19:14:33 -0700314 frame_index = SCU_GET_FRAME_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700315
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700316 frame_header = ihost->uf_control.buffers.array[frame_index].header;
317 ihost->uf_control.buffers.array[frame_index].state = UNSOLICITED_FRAME_IN_USE;
Dan Williamscc9203b2011-05-08 17:34:44 -0700318
Dan Williams89a73012011-06-30 19:14:33 -0700319 if (SCU_GET_FRAME_ERROR(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700320 /*
321 * / @todo If the IAF frame or SIGNATURE FIS frame has an error will
322 * / this cause a problem? We expect the phy initialization will
323 * / fail if there is an error in the frame. */
Dan Williams89a73012011-06-30 19:14:33 -0700324 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700325 return;
326 }
327
328 if (frame_header->is_address_frame) {
Dan Williams89a73012011-06-30 19:14:33 -0700329 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700330 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700331 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700332 } else {
333
Dan Williams89a73012011-06-30 19:14:33 -0700334 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700335
336 if (index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
337 /*
338 * This is a signature fis or a frame from a direct attached SATA
339 * device that has not yet been created. In either case forwared
340 * the frame to the PE and let it take care of the frame data. */
Dan Williams89a73012011-06-30 19:14:33 -0700341 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700342 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700343 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700344 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700345 if (index < ihost->remote_node_entries)
346 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700347 else
Dan Williams78a6f062011-06-30 16:31:37 -0700348 idev = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -0700349
Dan Williams78a6f062011-06-30 16:31:37 -0700350 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700351 result = sci_remote_device_frame_handler(idev, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700352 else
Dan Williams89a73012011-06-30 19:14:33 -0700353 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700354 }
355 }
356
357 if (result != SCI_SUCCESS) {
358 /*
359 * / @todo Is there any reason to report some additional error message
360 * / when we get this failure notifiction? */
361 }
362}
363
Dan Williams89a73012011-06-30 19:14:33 -0700364static void sci_controller_event_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700365{
Dan Williams78a6f062011-06-30 16:31:37 -0700366 struct isci_remote_device *idev;
Dan Williams5076a1a2011-06-27 14:57:03 -0700367 struct isci_request *ireq;
Dan Williams85280952011-06-28 15:05:53 -0700368 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700369 u32 index;
370
Dan Williams89a73012011-06-30 19:14:33 -0700371 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700372
Dan Williams89a73012011-06-30 19:14:33 -0700373 switch (scu_get_event_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700374 case SCU_EVENT_TYPE_SMU_COMMAND_ERROR:
375 /* / @todo The driver did something wrong and we need to fix the condtion. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700376 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700377 "%s: SCIC Controller 0x%p received SMU command error "
378 "0x%x\n",
379 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700380 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700381 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700382 break;
383
384 case SCU_EVENT_TYPE_SMU_PCQ_ERROR:
385 case SCU_EVENT_TYPE_SMU_ERROR:
386 case SCU_EVENT_TYPE_FATAL_MEMORY_ERROR:
387 /*
388 * / @todo This is a hardware failure and its likely that we want to
389 * / reset the controller. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700390 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700391 "%s: SCIC Controller 0x%p received fatal controller "
392 "event 0x%x\n",
393 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700394 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700395 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700396 break;
397
398 case SCU_EVENT_TYPE_TRANSPORT_ERROR:
Dan Williams5076a1a2011-06-27 14:57:03 -0700399 ireq = ihost->reqs[index];
Dan Williams89a73012011-06-30 19:14:33 -0700400 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700401 break;
402
403 case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700404 switch (scu_get_event_specifier(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700405 case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE:
406 case SCU_EVENT_SPECIFIC_TASK_TIMEOUT:
Dan Williams5076a1a2011-06-27 14:57:03 -0700407 ireq = ihost->reqs[index];
408 if (ireq != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700409 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700410 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700411 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700412 "%s: SCIC Controller 0x%p received "
413 "event 0x%x for io request object "
414 "that doesnt exist.\n",
415 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700416 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700417 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700418
419 break;
420
421 case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700422 idev = ihost->device_table[index];
Dan Williams78a6f062011-06-30 16:31:37 -0700423 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700424 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700425 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700426 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700427 "%s: SCIC Controller 0x%p received "
428 "event 0x%x for remote device object "
429 "that doesnt exist.\n",
430 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700431 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700432 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700433
434 break;
435 }
436 break;
437
438 case SCU_EVENT_TYPE_BROADCAST_CHANGE:
439 /*
440 * direct the broadcast change event to the phy first and then let
441 * the phy redirect the broadcast change to the port object */
442 case SCU_EVENT_TYPE_ERR_CNT_EVENT:
443 /*
444 * direct error counter event to the phy object since that is where
445 * we get the event notification. This is a type 4 event. */
446 case SCU_EVENT_TYPE_OSSP_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700447 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700448 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700449 sci_phy_event_handler(iphy, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700450 break;
451
452 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
453 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
454 case SCU_EVENT_TYPE_RNC_OPS_MISC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700455 if (index < ihost->remote_node_entries) {
456 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700457
Dan Williams78a6f062011-06-30 16:31:37 -0700458 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700459 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700460 } else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700461 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700462 "%s: SCIC Controller 0x%p received event 0x%x "
463 "for remote device object 0x%0x that doesnt "
464 "exist.\n",
465 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700466 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700467 ent,
Dan Williamscc9203b2011-05-08 17:34:44 -0700468 index);
469
470 break;
471
472 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700473 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700474 "%s: SCIC Controller received unknown event code %x\n",
475 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700476 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700477 break;
478 }
479}
480
Dan Williams89a73012011-06-30 19:14:33 -0700481static void sci_controller_process_completions(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700482{
483 u32 completion_count = 0;
Dan Williams89a73012011-06-30 19:14:33 -0700484 u32 ent;
Dan Williamscc9203b2011-05-08 17:34:44 -0700485 u32 get_index;
486 u32 get_cycle;
Dan Williams994a9302011-06-09 16:04:28 -0700487 u32 event_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700488 u32 event_cycle;
489
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700490 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700491 "%s: completion queue begining get:0x%08x\n",
492 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700493 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700494
495 /* Get the component parts of the completion queue */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700496 get_index = NORMALIZE_GET_POINTER(ihost->completion_queue_get);
497 get_cycle = SMU_CQGR_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700498
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700499 event_get = NORMALIZE_EVENT_POINTER(ihost->completion_queue_get);
500 event_cycle = SMU_CQGR_EVENT_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700501
502 while (
503 NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700504 == COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index])
Dan Williamscc9203b2011-05-08 17:34:44 -0700505 ) {
506 completion_count++;
507
Dan Williams89a73012011-06-30 19:14:33 -0700508 ent = ihost->completion_queue[get_index];
Dan Williams994a9302011-06-09 16:04:28 -0700509
510 /* increment the get pointer and check for rollover to toggle the cycle bit */
511 get_cycle ^= ((get_index+1) & SCU_MAX_COMPLETION_QUEUE_ENTRIES) <<
512 (SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT - SCU_MAX_COMPLETION_QUEUE_SHIFT);
513 get_index = (get_index+1) & (SCU_MAX_COMPLETION_QUEUE_ENTRIES-1);
Dan Williamscc9203b2011-05-08 17:34:44 -0700514
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700515 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700516 "%s: completion queue entry:0x%08x\n",
517 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700518 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700519
Dan Williams89a73012011-06-30 19:14:33 -0700520 switch (SCU_GET_COMPLETION_TYPE(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700521 case SCU_COMPLETION_TYPE_TASK:
Dan Williams89a73012011-06-30 19:14:33 -0700522 sci_controller_task_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700523 break;
524
525 case SCU_COMPLETION_TYPE_SDMA:
Dan Williams89a73012011-06-30 19:14:33 -0700526 sci_controller_sdma_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700527 break;
528
529 case SCU_COMPLETION_TYPE_UFI:
Dan Williams89a73012011-06-30 19:14:33 -0700530 sci_controller_unsolicited_frame(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700531 break;
532
533 case SCU_COMPLETION_TYPE_EVENT:
Dan Williams77cd72a2011-07-29 17:17:16 -0700534 sci_controller_event_completion(ihost, ent);
535 break;
536
Dan Williams994a9302011-06-09 16:04:28 -0700537 case SCU_COMPLETION_TYPE_NOTIFY: {
538 event_cycle ^= ((event_get+1) & SCU_MAX_EVENTS) <<
539 (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT - SCU_MAX_EVENTS_SHIFT);
540 event_get = (event_get+1) & (SCU_MAX_EVENTS-1);
541
Dan Williams89a73012011-06-30 19:14:33 -0700542 sci_controller_event_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700543 break;
Dan Williams994a9302011-06-09 16:04:28 -0700544 }
Dan Williamscc9203b2011-05-08 17:34:44 -0700545 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700546 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700547 "%s: SCIC Controller received unknown "
548 "completion type %x\n",
549 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700550 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700551 break;
552 }
553 }
554
555 /* Update the get register if we completed one or more entries */
556 if (completion_count > 0) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700557 ihost->completion_queue_get =
Dan Williamscc9203b2011-05-08 17:34:44 -0700558 SMU_CQGR_GEN_BIT(ENABLE) |
559 SMU_CQGR_GEN_BIT(EVENT_ENABLE) |
560 event_cycle |
Dan Williams994a9302011-06-09 16:04:28 -0700561 SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700562 get_cycle |
563 SMU_CQGR_GEN_VAL(POINTER, get_index);
564
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700565 writel(ihost->completion_queue_get,
566 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700567
568 }
569
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700570 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700571 "%s: completion queue ending get:0x%08x\n",
572 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700573 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700574
575}
576
Dan Williams89a73012011-06-30 19:14:33 -0700577static void sci_controller_error_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700578{
579 u32 interrupt_status;
580
581 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700582 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700583
584 if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) &&
Dan Williams89a73012011-06-30 19:14:33 -0700585 sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700586
Dan Williams89a73012011-06-30 19:14:33 -0700587 sci_controller_process_completions(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700588 writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700589 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700590 dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__,
Dan Williamscc9203b2011-05-08 17:34:44 -0700591 interrupt_status);
592
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700593 sci_change_state(&ihost->sm, SCIC_FAILED);
Dan Williamscc9203b2011-05-08 17:34:44 -0700594
595 return;
596 }
597
598 /* If we dont process any completions I am not sure that we want to do this.
599 * We are in the middle of a hardware fault and should probably be reset.
600 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700601 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700602}
603
Dan Williamsc7ef4032011-02-18 09:25:05 -0800604irqreturn_t isci_intx_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700605{
Dan Williams6f231dd2011-07-02 22:56:22 -0700606 irqreturn_t ret = IRQ_NONE;
Dan Williams31e824e2011-04-19 12:32:51 -0700607 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700608
Dan Williams89a73012011-06-30 19:14:33 -0700609 if (sci_controller_isr(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700610 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williams31e824e2011-04-19 12:32:51 -0700611 tasklet_schedule(&ihost->completion_tasklet);
612 ret = IRQ_HANDLED;
Dan Williams89a73012011-06-30 19:14:33 -0700613 } else if (sci_controller_error_isr(ihost)) {
Dan Williams31e824e2011-04-19 12:32:51 -0700614 spin_lock(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -0700615 sci_controller_error_handler(ihost);
Dan Williams31e824e2011-04-19 12:32:51 -0700616 spin_unlock(&ihost->scic_lock);
617 ret = IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700618 }
Dan Williams92f4f0f2011-02-18 09:25:11 -0800619
Dan Williams6f231dd2011-07-02 22:56:22 -0700620 return ret;
621}
622
Dan Williams92f4f0f2011-02-18 09:25:11 -0800623irqreturn_t isci_error_isr(int vec, void *data)
624{
625 struct isci_host *ihost = data;
Dan Williams92f4f0f2011-02-18 09:25:11 -0800626
Dan Williams89a73012011-06-30 19:14:33 -0700627 if (sci_controller_error_isr(ihost))
628 sci_controller_error_handler(ihost);
Dan Williams92f4f0f2011-02-18 09:25:11 -0800629
630 return IRQ_HANDLED;
631}
Dan Williams6f231dd2011-07-02 22:56:22 -0700632
633/**
634 * isci_host_start_complete() - This function is called by the core library,
635 * through the ISCI Module, to indicate controller start status.
636 * @isci_host: This parameter specifies the ISCI host object
637 * @completion_status: This parameter specifies the completion status from the
638 * core library.
639 *
640 */
Dan Williamscc9203b2011-05-08 17:34:44 -0700641static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700642{
Dan Williams0cf89d12011-02-18 09:25:07 -0800643 if (completion_status != SCI_SUCCESS)
644 dev_info(&ihost->pdev->dev,
645 "controller start timed out, continuing...\n");
646 isci_host_change_state(ihost, isci_ready);
647 clear_bit(IHOST_START_PENDING, &ihost->flags);
648 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700649}
650
Dan Williamsc7ef4032011-02-18 09:25:05 -0800651int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
Dan Williams6f231dd2011-07-02 22:56:22 -0700652{
Dan Williams4393aa42011-03-31 13:10:44 -0700653 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams6f231dd2011-07-02 22:56:22 -0700654
Edmund Nadolski77950f52011-02-18 09:25:09 -0800655 if (test_bit(IHOST_START_PENDING, &ihost->flags))
Dan Williams6f231dd2011-07-02 22:56:22 -0700656 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700657
Edmund Nadolski77950f52011-02-18 09:25:09 -0800658 /* todo: use sas_flush_discovery once it is upstream */
659 scsi_flush_work(shost);
660
661 scsi_flush_work(shost);
Dan Williams6f231dd2011-07-02 22:56:22 -0700662
Dan Williams0cf89d12011-02-18 09:25:07 -0800663 dev_dbg(&ihost->pdev->dev,
664 "%s: ihost->status = %d, time = %ld\n",
665 __func__, isci_host_get_state(ihost), time);
Dan Williams6f231dd2011-07-02 22:56:22 -0700666
Dan Williams6f231dd2011-07-02 22:56:22 -0700667 return 1;
668
669}
670
Dan Williamscc9203b2011-05-08 17:34:44 -0700671/**
Dan Williams89a73012011-06-30 19:14:33 -0700672 * sci_controller_get_suggested_start_timeout() - This method returns the
673 * suggested sci_controller_start() timeout amount. The user is free to
Dan Williamscc9203b2011-05-08 17:34:44 -0700674 * use any timeout value, but this method provides the suggested minimum
675 * start timeout value. The returned value is based upon empirical
676 * information determined as a result of interoperability testing.
677 * @controller: the handle to the controller object for which to return the
678 * suggested start timeout.
679 *
680 * This method returns the number of milliseconds for the suggested start
681 * operation timeout.
682 */
Dan Williams89a73012011-06-30 19:14:33 -0700683static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700684{
685 /* Validate the user supplied parameters. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700686 if (!ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700687 return 0;
688
689 /*
690 * The suggested minimum timeout value for a controller start operation:
691 *
692 * Signature FIS Timeout
693 * + Phy Start Timeout
694 * + Number of Phy Spin Up Intervals
695 * ---------------------------------
696 * Number of milliseconds for the controller start operation.
697 *
698 * NOTE: The number of phy spin up intervals will be equivalent
699 * to the number of phys divided by the number phys allowed
700 * per interval - 1 (once OEM parameters are supported).
701 * Currently we assume only 1 phy per interval. */
702
703 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
704 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
705 + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
706}
707
Dan Williams89a73012011-06-30 19:14:33 -0700708static void sci_controller_enable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700709{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700710 BUG_ON(ihost->smu_registers == NULL);
711 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700712}
713
Dan Williams89a73012011-06-30 19:14:33 -0700714void sci_controller_disable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700715{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700716 BUG_ON(ihost->smu_registers == NULL);
717 writel(0xffffffff, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700718}
719
Dan Williams89a73012011-06-30 19:14:33 -0700720static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700721{
722 u32 port_task_scheduler_value;
723
724 port_task_scheduler_value =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700725 readl(&ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700726 port_task_scheduler_value |=
727 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) |
728 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE));
729 writel(port_task_scheduler_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700730 &ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700731}
732
Dan Williams89a73012011-06-30 19:14:33 -0700733static void sci_controller_assign_task_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700734{
735 u32 task_assignment;
736
737 /*
738 * Assign all the TCs to function 0
739 * TODO: Do we actually need to read this register to write it back?
740 */
741
742 task_assignment =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700743 readl(&ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700744
745 task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) |
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700746 (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700747 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE));
748
749 writel(task_assignment,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700750 &ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700751
752}
753
Dan Williams89a73012011-06-30 19:14:33 -0700754static void sci_controller_initialize_completion_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700755{
756 u32 index;
757 u32 completion_queue_control_value;
758 u32 completion_queue_get_value;
759 u32 completion_queue_put_value;
760
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700761 ihost->completion_queue_get = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -0700762
Dan Williams7c78da32011-06-01 16:00:01 -0700763 completion_queue_control_value =
764 (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES - 1) |
765 SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS - 1));
Dan Williamscc9203b2011-05-08 17:34:44 -0700766
767 writel(completion_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700768 &ihost->smu_registers->completion_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700769
770
771 /* Set the completion queue get pointer and enable the queue */
772 completion_queue_get_value = (
773 (SMU_CQGR_GEN_VAL(POINTER, 0))
774 | (SMU_CQGR_GEN_VAL(EVENT_POINTER, 0))
775 | (SMU_CQGR_GEN_BIT(ENABLE))
776 | (SMU_CQGR_GEN_BIT(EVENT_ENABLE))
777 );
778
779 writel(completion_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700780 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700781
782 /* Set the completion queue put pointer */
783 completion_queue_put_value = (
784 (SMU_CQPR_GEN_VAL(POINTER, 0))
785 | (SMU_CQPR_GEN_VAL(EVENT_POINTER, 0))
786 );
787
788 writel(completion_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700789 &ihost->smu_registers->completion_queue_put);
Dan Williamscc9203b2011-05-08 17:34:44 -0700790
791 /* Initialize the cycle bit of the completion queue entries */
Dan Williams7c78da32011-06-01 16:00:01 -0700792 for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700793 /*
794 * If get.cycle_bit != completion_queue.cycle_bit
795 * its not a valid completion queue entry
796 * so at system start all entries are invalid */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700797 ihost->completion_queue[index] = 0x80000000;
Dan Williamscc9203b2011-05-08 17:34:44 -0700798 }
799}
800
Dan Williams89a73012011-06-30 19:14:33 -0700801static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700802{
803 u32 frame_queue_control_value;
804 u32 frame_queue_get_value;
805 u32 frame_queue_put_value;
806
807 /* Write the queue size */
808 frame_queue_control_value =
Dan Williams7c78da32011-06-01 16:00:01 -0700809 SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES);
Dan Williamscc9203b2011-05-08 17:34:44 -0700810
811 writel(frame_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700812 &ihost->scu_registers->sdma.unsolicited_frame_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700813
814 /* Setup the get pointer for the unsolicited frame queue */
815 frame_queue_get_value = (
816 SCU_UFQGP_GEN_VAL(POINTER, 0)
817 | SCU_UFQGP_GEN_BIT(ENABLE_BIT)
818 );
819
820 writel(frame_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700821 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700822 /* Setup the put pointer for the unsolicited frame queue */
823 frame_queue_put_value = SCU_UFQPP_GEN_VAL(POINTER, 0);
824 writel(frame_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700825 &ihost->scu_registers->sdma.unsolicited_frame_put_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700826}
827
Dan Williams89a73012011-06-30 19:14:33 -0700828static void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status)
Dan Williamscc9203b2011-05-08 17:34:44 -0700829{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700830 if (ihost->sm.current_state_id == SCIC_STARTING) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700831 /*
832 * We move into the ready state, because some of the phys/ports
833 * may be up and operational.
834 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700835 sci_change_state(&ihost->sm, SCIC_READY);
Dan Williamscc9203b2011-05-08 17:34:44 -0700836
837 isci_host_start_complete(ihost, status);
838 }
839}
840
Dan Williams85280952011-06-28 15:05:53 -0700841static bool is_phy_starting(struct isci_phy *iphy)
Adam Gruchala4a33c522011-05-10 23:54:23 +0000842{
Dan Williams89a73012011-06-30 19:14:33 -0700843 enum sci_phy_states state;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000844
Dan Williams85280952011-06-28 15:05:53 -0700845 state = iphy->sm.current_state_id;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000846 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000847 case SCI_PHY_STARTING:
848 case SCI_PHY_SUB_INITIAL:
849 case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN:
850 case SCI_PHY_SUB_AWAIT_IAF_UF:
851 case SCI_PHY_SUB_AWAIT_SAS_POWER:
852 case SCI_PHY_SUB_AWAIT_SATA_POWER:
853 case SCI_PHY_SUB_AWAIT_SATA_PHY_EN:
854 case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN:
855 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF:
856 case SCI_PHY_SUB_FINAL:
Adam Gruchala4a33c522011-05-10 23:54:23 +0000857 return true;
858 default:
859 return false;
860 }
861}
862
Dan Williamscc9203b2011-05-08 17:34:44 -0700863/**
Dan Williams89a73012011-06-30 19:14:33 -0700864 * sci_controller_start_next_phy - start phy
Dan Williamscc9203b2011-05-08 17:34:44 -0700865 * @scic: controller
866 *
867 * If all the phys have been started, then attempt to transition the
868 * controller to the READY state and inform the user
Dan Williams89a73012011-06-30 19:14:33 -0700869 * (sci_cb_controller_start_complete()).
Dan Williamscc9203b2011-05-08 17:34:44 -0700870 */
Dan Williams89a73012011-06-30 19:14:33 -0700871static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700872{
Dan Williams89a73012011-06-30 19:14:33 -0700873 struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williams85280952011-06-28 15:05:53 -0700874 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700875 enum sci_status status;
876
877 status = SCI_SUCCESS;
878
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700879 if (ihost->phy_startup_timer_pending)
Dan Williamscc9203b2011-05-08 17:34:44 -0700880 return status;
881
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700882 if (ihost->next_phy_to_start >= SCI_MAX_PHYS) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700883 bool is_controller_start_complete = true;
884 u32 state;
885 u8 index;
886
887 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams85280952011-06-28 15:05:53 -0700888 iphy = &ihost->phys[index];
889 state = iphy->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -0700890
Dan Williams85280952011-06-28 15:05:53 -0700891 if (!phy_get_non_dummy_port(iphy))
Dan Williamscc9203b2011-05-08 17:34:44 -0700892 continue;
893
894 /* The controller start operation is complete iff:
895 * - all links have been given an opportunity to start
896 * - have no indication of a connected device
897 * - have an indication of a connected device and it has
898 * finished the link training process.
899 */
Dan Williams85280952011-06-28 15:05:53 -0700900 if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) ||
901 (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) ||
902 (iphy->is_in_link_training == true && is_phy_starting(iphy))) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700903 is_controller_start_complete = false;
904 break;
905 }
906 }
907
908 /*
909 * The controller has successfully finished the start process.
910 * Inform the SCI Core user and transition to the READY state. */
911 if (is_controller_start_complete == true) {
Dan Williams89a73012011-06-30 19:14:33 -0700912 sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700913 sci_del_timer(&ihost->phy_timer);
914 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -0700915 }
916 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700917 iphy = &ihost->phys[ihost->next_phy_to_start];
Dan Williamscc9203b2011-05-08 17:34:44 -0700918
919 if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
Dan Williams85280952011-06-28 15:05:53 -0700920 if (phy_get_non_dummy_port(iphy) == NULL) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700921 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700922
923 /* Caution recursion ahead be forwarned
924 *
925 * The PHY was never added to a PORT in MPC mode
926 * so start the next phy in sequence This phy
927 * will never go link up and will not draw power
928 * the OEM parameters either configured the phy
929 * incorrectly for the PORT or it was never
930 * assigned to a PORT
931 */
Dan Williams89a73012011-06-30 19:14:33 -0700932 return sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -0700933 }
934 }
935
Dan Williams89a73012011-06-30 19:14:33 -0700936 status = sci_phy_start(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -0700937
938 if (status == SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700939 sci_mod_timer(&ihost->phy_timer,
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700940 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700941 ihost->phy_startup_timer_pending = true;
Dan Williamscc9203b2011-05-08 17:34:44 -0700942 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700943 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700944 "%s: Controller stop operation failed "
945 "to stop phy %d because of status "
946 "%d.\n",
947 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700948 ihost->phys[ihost->next_phy_to_start].phy_index,
Dan Williamscc9203b2011-05-08 17:34:44 -0700949 status);
950 }
951
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700952 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700953 }
954
955 return status;
956}
957
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700958static void phy_startup_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -0700959{
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700960 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700961 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700962 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -0700963 enum sci_status status;
964
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700965 spin_lock_irqsave(&ihost->scic_lock, flags);
966
967 if (tmr->cancel)
968 goto done;
969
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700970 ihost->phy_startup_timer_pending = false;
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700971
972 do {
Dan Williams89a73012011-06-30 19:14:33 -0700973 status = sci_controller_start_next_phy(ihost);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700974 } while (status != SCI_SUCCESS);
975
976done:
977 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -0700978}
979
Dan Williamsac668c62011-06-07 18:50:55 -0700980static u16 isci_tci_active(struct isci_host *ihost)
981{
982 return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
983}
984
Dan Williams89a73012011-06-30 19:14:33 -0700985static enum sci_status sci_controller_start(struct isci_host *ihost,
Dan Williamscc9203b2011-05-08 17:34:44 -0700986 u32 timeout)
987{
Dan Williamscc9203b2011-05-08 17:34:44 -0700988 enum sci_status result;
989 u16 index;
990
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700991 if (ihost->sm.current_state_id != SCIC_INITIALIZED) {
992 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700993 "SCIC Controller start operation requested in "
994 "invalid state\n");
995 return SCI_FAILURE_INVALID_STATE;
996 }
997
998 /* Build the TCi free pool */
Dan Williamsac668c62011-06-07 18:50:55 -0700999 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8);
1000 ihost->tci_head = 0;
1001 ihost->tci_tail = 0;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001002 for (index = 0; index < ihost->task_context_entries; index++)
Dan Williamsac668c62011-06-07 18:50:55 -07001003 isci_tci_free(ihost, index);
Dan Williamscc9203b2011-05-08 17:34:44 -07001004
1005 /* Build the RNi free pool */
Dan Williams89a73012011-06-30 19:14:33 -07001006 sci_remote_node_table_initialize(&ihost->available_remote_nodes,
1007 ihost->remote_node_entries);
Dan Williamscc9203b2011-05-08 17:34:44 -07001008
1009 /*
1010 * Before anything else lets make sure we will not be
1011 * interrupted by the hardware.
1012 */
Dan Williams89a73012011-06-30 19:14:33 -07001013 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001014
1015 /* Enable the port task scheduler */
Dan Williams89a73012011-06-30 19:14:33 -07001016 sci_controller_enable_port_task_scheduler(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001017
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001018 /* Assign all the task entries to ihost physical function */
Dan Williams89a73012011-06-30 19:14:33 -07001019 sci_controller_assign_task_entries(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001020
1021 /* Now initialize the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001022 sci_controller_initialize_completion_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001023
1024 /* Initialize the unsolicited frame queue for use */
Dan Williams89a73012011-06-30 19:14:33 -07001025 sci_controller_initialize_unsolicited_frame_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001026
1027 /* Start all of the ports on this controller */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001028 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001029 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001030
Dan Williams89a73012011-06-30 19:14:33 -07001031 result = sci_port_start(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001032 if (result)
1033 return result;
1034 }
1035
Dan Williams89a73012011-06-30 19:14:33 -07001036 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001037
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001038 sci_mod_timer(&ihost->timer, timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07001039
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001040 sci_change_state(&ihost->sm, SCIC_STARTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001041
1042 return SCI_SUCCESS;
1043}
1044
Dan Williams6f231dd2011-07-02 22:56:22 -07001045void isci_host_scan_start(struct Scsi_Host *shost)
1046{
Dan Williams4393aa42011-03-31 13:10:44 -07001047 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams89a73012011-06-30 19:14:33 -07001048 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07001049
Dan Williams0cf89d12011-02-18 09:25:07 -08001050 set_bit(IHOST_START_PENDING, &ihost->flags);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001051
1052 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001053 sci_controller_start(ihost, tmo);
1054 sci_controller_enable_interrupts(ihost);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001055 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001056}
1057
Dan Williamscc9203b2011-05-08 17:34:44 -07001058static void isci_host_stop_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07001059{
Dan Williams0cf89d12011-02-18 09:25:07 -08001060 isci_host_change_state(ihost, isci_stopped);
Dan Williams89a73012011-06-30 19:14:33 -07001061 sci_controller_disable_interrupts(ihost);
Dan Williams0cf89d12011-02-18 09:25:07 -08001062 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
1063 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07001064}
1065
Dan Williams89a73012011-06-30 19:14:33 -07001066static void sci_controller_completion_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001067{
1068 /* Empty out the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001069 if (sci_controller_completion_queue_has_entries(ihost))
1070 sci_controller_process_completions(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001071
1072 /* Clear the interrupt and enable all interrupts again */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001073 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001074 /* Could we write the value of SMU_ISR_COMPLETION? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001075 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
1076 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07001077}
1078
Dan Williams6f231dd2011-07-02 22:56:22 -07001079/**
1080 * isci_host_completion_routine() - This function is the delayed service
1081 * routine that calls the sci core library's completion handler. It's
1082 * scheduled as a tasklet from the interrupt service routine when interrupts
1083 * in use, or set as the timeout function in polled mode.
1084 * @data: This parameter specifies the ISCI host object
1085 *
1086 */
1087static void isci_host_completion_routine(unsigned long data)
1088{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001089 struct isci_host *ihost = (struct isci_host *)data;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001090 struct list_head completed_request_list;
1091 struct list_head errored_request_list;
1092 struct list_head *current_position;
1093 struct list_head *next_position;
Dan Williams6f231dd2011-07-02 22:56:22 -07001094 struct isci_request *request;
1095 struct isci_request *next_request;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001096 struct sas_task *task;
Dan Williams9b4be522011-07-29 17:17:10 -07001097 u16 active;
Dan Williams6f231dd2011-07-02 22:56:22 -07001098
1099 INIT_LIST_HEAD(&completed_request_list);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001100 INIT_LIST_HEAD(&errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001101
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001102 spin_lock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001103
Dan Williams89a73012011-06-30 19:14:33 -07001104 sci_controller_completion_handler(ihost);
Dan Williamsc7ef4032011-02-18 09:25:05 -08001105
Dan Williams6f231dd2011-07-02 22:56:22 -07001106 /* Take the lists of completed I/Os from the host. */
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001107
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001108 list_splice_init(&ihost->requests_to_complete,
Dan Williams6f231dd2011-07-02 22:56:22 -07001109 &completed_request_list);
1110
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001111 /* Take the list of errored I/Os from the host. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001112 list_splice_init(&ihost->requests_to_errorback,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001113 &errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001114
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001115 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001116
1117 /* Process any completions in the lists. */
1118 list_for_each_safe(current_position, next_position,
1119 &completed_request_list) {
1120
1121 request = list_entry(current_position, struct isci_request,
1122 completed_node);
1123 task = isci_request_access_task(request);
1124
1125 /* Normal notification (task_done) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001126 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001127 "%s: Normal - request/task = %p/%p\n",
1128 __func__,
1129 request,
1130 task);
1131
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001132 /* Return the task to libsas */
1133 if (task != NULL) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001134
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001135 task->lldd_task = NULL;
1136 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1137
1138 /* If the task is already in the abort path,
1139 * the task_done callback cannot be called.
1140 */
1141 task->task_done(task);
1142 }
1143 }
Dan Williams312e0c22011-06-28 13:47:09 -07001144
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001145 spin_lock_irq(&ihost->scic_lock);
1146 isci_free_tag(ihost, request->io_tag);
1147 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001148 }
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001149 list_for_each_entry_safe(request, next_request, &errored_request_list,
Dan Williams6f231dd2011-07-02 22:56:22 -07001150 completed_node) {
1151
1152 task = isci_request_access_task(request);
1153
1154 /* Use sas_task_abort */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001155 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001156 "%s: Error - request/task = %p/%p\n",
1157 __func__,
1158 request,
1159 task);
1160
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001161 if (task != NULL) {
1162
1163 /* Put the task into the abort path if it's not there
1164 * already.
1165 */
1166 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED))
1167 sas_task_abort(task);
1168
1169 } else {
1170 /* This is a case where the request has completed with a
1171 * status such that it needed further target servicing,
1172 * but the sas_task reference has already been removed
1173 * from the request. Since it was errored, it was not
1174 * being aborted, so there is nothing to do except free
1175 * it.
1176 */
1177
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001178 spin_lock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001179 /* Remove the request from the remote device's list
1180 * of pending requests.
1181 */
1182 list_del_init(&request->dev_node);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001183 isci_free_tag(ihost, request->io_tag);
1184 spin_unlock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001185 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001186 }
1187
Dan Williams9b4be522011-07-29 17:17:10 -07001188 /* the coalesence timeout doubles at each encoding step, so
1189 * update it based on the ilog2 value of the outstanding requests
1190 */
1191 active = isci_tci_active(ihost);
1192 writel(SMU_ICC_GEN_VAL(NUMBER, active) |
1193 SMU_ICC_GEN_VAL(TIMER, ISCI_COALESCE_BASE + ilog2(active)),
1194 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williams6f231dd2011-07-02 22:56:22 -07001195}
1196
Dan Williamscc9203b2011-05-08 17:34:44 -07001197/**
Dan Williams89a73012011-06-30 19:14:33 -07001198 * sci_controller_stop() - This method will stop an individual controller
Dan Williamscc9203b2011-05-08 17:34:44 -07001199 * object.This method will invoke the associated user callback upon
1200 * completion. The completion callback is called when the following
1201 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1202 * controller has been quiesced. This method will ensure that all IO
1203 * requests are quiesced, phys are stopped, and all additional operation by
1204 * the hardware is halted.
1205 * @controller: the handle to the controller object to stop.
1206 * @timeout: This parameter specifies the number of milliseconds in which the
1207 * stop operation should complete.
1208 *
1209 * The controller must be in the STARTED or STOPPED state. Indicate if the
1210 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1211 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1212 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1213 * controller is not either in the STARTED or STOPPED states.
1214 */
Dan Williams89a73012011-06-30 19:14:33 -07001215static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001216{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001217 if (ihost->sm.current_state_id != SCIC_READY) {
1218 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001219 "SCIC Controller stop operation requested in "
1220 "invalid state\n");
1221 return SCI_FAILURE_INVALID_STATE;
1222 }
1223
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001224 sci_mod_timer(&ihost->timer, timeout);
1225 sci_change_state(&ihost->sm, SCIC_STOPPING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001226 return SCI_SUCCESS;
1227}
1228
1229/**
Dan Williams89a73012011-06-30 19:14:33 -07001230 * sci_controller_reset() - This method will reset the supplied core
Dan Williamscc9203b2011-05-08 17:34:44 -07001231 * controller regardless of the state of said controller. This operation is
1232 * considered destructive. In other words, all current operations are wiped
1233 * out. No IO completions for outstanding devices occur. Outstanding IO
1234 * requests are not aborted or completed at the actual remote device.
1235 * @controller: the handle to the controller object to reset.
1236 *
1237 * Indicate if the controller reset method succeeded or failed in some way.
1238 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1239 * the controller reset operation is unable to complete.
1240 */
Dan Williams89a73012011-06-30 19:14:33 -07001241static enum sci_status sci_controller_reset(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001242{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001243 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001244 case SCIC_RESET:
1245 case SCIC_READY:
1246 case SCIC_STOPPED:
1247 case SCIC_FAILED:
Dan Williamscc9203b2011-05-08 17:34:44 -07001248 /*
1249 * The reset operation is not a graceful cleanup, just
1250 * perform the state transition.
1251 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001252 sci_change_state(&ihost->sm, SCIC_RESETTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001253 return SCI_SUCCESS;
1254 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001255 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001256 "SCIC Controller reset operation requested in "
1257 "invalid state\n");
1258 return SCI_FAILURE_INVALID_STATE;
1259 }
1260}
1261
Dan Williams0cf89d12011-02-18 09:25:07 -08001262void isci_host_deinit(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07001263{
1264 int i;
1265
Dan Williams0cf89d12011-02-18 09:25:07 -08001266 isci_host_change_state(ihost, isci_stopping);
Dan Williams6f231dd2011-07-02 22:56:22 -07001267 for (i = 0; i < SCI_MAX_PORTS; i++) {
Dan Williamse5313812011-05-07 10:11:43 -07001268 struct isci_port *iport = &ihost->ports[i];
Dan Williams0cf89d12011-02-18 09:25:07 -08001269 struct isci_remote_device *idev, *d;
1270
Dan Williamse5313812011-05-07 10:11:43 -07001271 list_for_each_entry_safe(idev, d, &iport->remote_dev_list, node) {
Dan Williams209fae12011-06-13 17:39:44 -07001272 if (test_bit(IDEV_ALLOCATED, &idev->flags))
1273 isci_remote_device_stop(ihost, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001274 }
1275 }
1276
Dan Williams0cf89d12011-02-18 09:25:07 -08001277 set_bit(IHOST_STOP_PENDING, &ihost->flags);
Dan Williams7c40a802011-03-02 11:49:26 -08001278
1279 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001280 sci_controller_stop(ihost, SCIC_CONTROLLER_STOP_TIMEOUT);
Dan Williams7c40a802011-03-02 11:49:26 -08001281 spin_unlock_irq(&ihost->scic_lock);
1282
Dan Williams0cf89d12011-02-18 09:25:07 -08001283 wait_for_stop(ihost);
Dan Williams89a73012011-06-30 19:14:33 -07001284 sci_controller_reset(ihost);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001285
1286 /* Cancel any/all outstanding port timers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001287 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001288 struct isci_port *iport = &ihost->ports[i];
1289 del_timer_sync(&iport->timer.timer);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001290 }
1291
Edmund Nadolskia628d472011-05-19 11:59:36 +00001292 /* Cancel any/all outstanding phy timers */
1293 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams85280952011-06-28 15:05:53 -07001294 struct isci_phy *iphy = &ihost->phys[i];
1295 del_timer_sync(&iphy->sata_timer.timer);
Edmund Nadolskia628d472011-05-19 11:59:36 +00001296 }
1297
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001298 del_timer_sync(&ihost->port_agent.timer.timer);
Edmund Nadolskiac0eeb42011-05-19 20:00:51 -07001299
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001300 del_timer_sync(&ihost->power_control.timer.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001301
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001302 del_timer_sync(&ihost->timer.timer);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001303
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001304 del_timer_sync(&ihost->phy_timer.timer);
Dan Williams6f231dd2011-07-02 22:56:22 -07001305}
1306
Dan Williams6f231dd2011-07-02 22:56:22 -07001307static void __iomem *scu_base(struct isci_host *isci_host)
1308{
1309 struct pci_dev *pdev = isci_host->pdev;
1310 int id = isci_host->id;
1311
1312 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
1313}
1314
1315static void __iomem *smu_base(struct isci_host *isci_host)
1316{
1317 struct pci_dev *pdev = isci_host->pdev;
1318 int id = isci_host->id;
1319
1320 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
1321}
1322
Dan Williams89a73012011-06-30 19:14:33 -07001323static void isci_user_parameters_get(struct sci_user_parameters *u)
Dave Jiangb5f18a22011-03-16 14:57:23 -07001324{
Dave Jiangb5f18a22011-03-16 14:57:23 -07001325 int i;
1326
1327 for (i = 0; i < SCI_MAX_PHYS; i++) {
1328 struct sci_phy_user_params *u_phy = &u->phys[i];
1329
1330 u_phy->max_speed_generation = phy_gen;
1331
1332 /* we are not exporting these for now */
1333 u_phy->align_insertion_frequency = 0x7f;
1334 u_phy->in_connection_align_insertion_frequency = 0xff;
1335 u_phy->notify_enable_spin_up_insertion_frequency = 0x33;
1336 }
1337
1338 u->stp_inactivity_timeout = stp_inactive_to;
1339 u->ssp_inactivity_timeout = ssp_inactive_to;
1340 u->stp_max_occupancy_timeout = stp_max_occ_to;
1341 u->ssp_max_occupancy_timeout = ssp_max_occ_to;
1342 u->no_outbound_task_timeout = no_outbound_task_to;
1343 u->max_number_concurrent_device_spin_up = max_concurr_spinup;
1344}
1345
Dan Williams89a73012011-06-30 19:14:33 -07001346static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001347{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001348 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001349
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001350 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001351}
1352
Dan Williams89a73012011-06-30 19:14:33 -07001353static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001354{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001355 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001356
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001357 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001358}
1359
1360#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1361#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1362#define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1363#define INTERRUPT_COALESCE_NUMBER_MAX 256
1364#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1365#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1366
1367/**
Dan Williams89a73012011-06-30 19:14:33 -07001368 * sci_controller_set_interrupt_coalescence() - This method allows the user to
Dan Williamscc9203b2011-05-08 17:34:44 -07001369 * configure the interrupt coalescence.
1370 * @controller: This parameter represents the handle to the controller object
1371 * for which its interrupt coalesce register is overridden.
1372 * @coalesce_number: Used to control the number of entries in the Completion
1373 * Queue before an interrupt is generated. If the number of entries exceed
1374 * this number, an interrupt will be generated. The valid range of the input
1375 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1376 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1377 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1378 * interrupt coalescing timeout.
1379 *
1380 * Indicate if the user successfully set the interrupt coalesce parameters.
1381 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1382 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1383 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001384static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001385sci_controller_set_interrupt_coalescence(struct isci_host *ihost,
1386 u32 coalesce_number,
1387 u32 coalesce_timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001388{
1389 u8 timeout_encode = 0;
1390 u32 min = 0;
1391 u32 max = 0;
1392
1393 /* Check if the input parameters fall in the range. */
1394 if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX)
1395 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1396
1397 /*
1398 * Defined encoding for interrupt coalescing timeout:
1399 * Value Min Max Units
1400 * ----- --- --- -----
1401 * 0 - - Disabled
1402 * 1 13.3 20.0 ns
1403 * 2 26.7 40.0
1404 * 3 53.3 80.0
1405 * 4 106.7 160.0
1406 * 5 213.3 320.0
1407 * 6 426.7 640.0
1408 * 7 853.3 1280.0
1409 * 8 1.7 2.6 us
1410 * 9 3.4 5.1
1411 * 10 6.8 10.2
1412 * 11 13.7 20.5
1413 * 12 27.3 41.0
1414 * 13 54.6 81.9
1415 * 14 109.2 163.8
1416 * 15 218.5 327.7
1417 * 16 436.9 655.4
1418 * 17 873.8 1310.7
1419 * 18 1.7 2.6 ms
1420 * 19 3.5 5.2
1421 * 20 7.0 10.5
1422 * 21 14.0 21.0
1423 * 22 28.0 41.9
1424 * 23 55.9 83.9
1425 * 24 111.8 167.8
1426 * 25 223.7 335.5
1427 * 26 447.4 671.1
1428 * 27 894.8 1342.2
1429 * 28 1.8 2.7 s
1430 * Others Undefined */
1431
1432 /*
1433 * Use the table above to decide the encode of interrupt coalescing timeout
1434 * value for register writing. */
1435 if (coalesce_timeout == 0)
1436 timeout_encode = 0;
1437 else{
1438 /* make the timeout value in unit of (10 ns). */
1439 coalesce_timeout = coalesce_timeout * 100;
1440 min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10;
1441 max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10;
1442
1443 /* get the encode of timeout for register writing. */
1444 for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN;
1445 timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX;
1446 timeout_encode++) {
1447 if (min <= coalesce_timeout && max > coalesce_timeout)
1448 break;
1449 else if (coalesce_timeout >= max && coalesce_timeout < min * 2
1450 && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) {
1451 if ((coalesce_timeout - max) < (2 * min - coalesce_timeout))
1452 break;
1453 else{
1454 timeout_encode++;
1455 break;
1456 }
1457 } else {
1458 max = max * 2;
1459 min = min * 2;
1460 }
1461 }
1462
1463 if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1)
1464 /* the value is out of range. */
1465 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1466 }
1467
1468 writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) |
1469 SMU_ICC_GEN_VAL(TIMER, timeout_encode),
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001470 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001471
1472
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001473 ihost->interrupt_coalesce_number = (u16)coalesce_number;
1474 ihost->interrupt_coalesce_timeout = coalesce_timeout / 100;
Dan Williamscc9203b2011-05-08 17:34:44 -07001475
1476 return SCI_SUCCESS;
1477}
1478
1479
Dan Williams89a73012011-06-30 19:14:33 -07001480static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001481{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001482 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001483
1484 /* set the default interrupt coalescence number and timeout value. */
Dan Williams9b4be522011-07-29 17:17:10 -07001485 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001486}
1487
Dan Williams89a73012011-06-30 19:14:33 -07001488static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001489{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001490 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001491
1492 /* disable interrupt coalescence. */
Dan Williams89a73012011-06-30 19:14:33 -07001493 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001494}
1495
Dan Williams89a73012011-06-30 19:14:33 -07001496static enum sci_status sci_controller_stop_phys(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001497{
1498 u32 index;
1499 enum sci_status status;
1500 enum sci_status phy_status;
Dan Williamscc9203b2011-05-08 17:34:44 -07001501
1502 status = SCI_SUCCESS;
1503
1504 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001505 phy_status = sci_phy_stop(&ihost->phys[index]);
Dan Williamscc9203b2011-05-08 17:34:44 -07001506
1507 if (phy_status != SCI_SUCCESS &&
1508 phy_status != SCI_FAILURE_INVALID_STATE) {
1509 status = SCI_FAILURE;
1510
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001511 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001512 "%s: Controller stop operation failed to stop "
1513 "phy %d because of status %d.\n",
1514 __func__,
Dan Williams85280952011-06-28 15:05:53 -07001515 ihost->phys[index].phy_index, phy_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001516 }
1517 }
1518
1519 return status;
1520}
1521
Dan Williams89a73012011-06-30 19:14:33 -07001522static enum sci_status sci_controller_stop_ports(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001523{
1524 u32 index;
1525 enum sci_status port_status;
1526 enum sci_status status = SCI_SUCCESS;
Dan Williamscc9203b2011-05-08 17:34:44 -07001527
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001528 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001529 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001530
Dan Williams89a73012011-06-30 19:14:33 -07001531 port_status = sci_port_stop(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001532
1533 if ((port_status != SCI_SUCCESS) &&
1534 (port_status != SCI_FAILURE_INVALID_STATE)) {
1535 status = SCI_FAILURE;
1536
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001537 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001538 "%s: Controller stop operation failed to "
1539 "stop port %d because of status %d.\n",
1540 __func__,
Dan Williamsffe191c2011-06-29 13:09:25 -07001541 iport->logical_port_index,
Dan Williamscc9203b2011-05-08 17:34:44 -07001542 port_status);
1543 }
1544 }
1545
1546 return status;
1547}
1548
Dan Williams89a73012011-06-30 19:14:33 -07001549static enum sci_status sci_controller_stop_devices(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001550{
1551 u32 index;
1552 enum sci_status status;
1553 enum sci_status device_status;
1554
1555 status = SCI_SUCCESS;
1556
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001557 for (index = 0; index < ihost->remote_node_entries; index++) {
1558 if (ihost->device_table[index] != NULL) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001559 /* / @todo What timeout value do we want to provide to this request? */
Dan Williams89a73012011-06-30 19:14:33 -07001560 device_status = sci_remote_device_stop(ihost->device_table[index], 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001561
1562 if ((device_status != SCI_SUCCESS) &&
1563 (device_status != SCI_FAILURE_INVALID_STATE)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001564 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001565 "%s: Controller stop operation failed "
1566 "to stop device 0x%p because of "
1567 "status %d.\n",
1568 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001569 ihost->device_table[index], device_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001570 }
1571 }
1572 }
1573
1574 return status;
1575}
1576
Dan Williams89a73012011-06-30 19:14:33 -07001577static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001578{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001579 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001580
1581 /* Stop all of the components for this controller */
Dan Williams89a73012011-06-30 19:14:33 -07001582 sci_controller_stop_phys(ihost);
1583 sci_controller_stop_ports(ihost);
1584 sci_controller_stop_devices(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001585}
1586
Dan Williams89a73012011-06-30 19:14:33 -07001587static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001588{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001589 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001590
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001591 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001592}
1593
Dan Williams89a73012011-06-30 19:14:33 -07001594static void sci_controller_reset_hardware(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001595{
1596 /* Disable interrupts so we dont take any spurious interrupts */
Dan Williams89a73012011-06-30 19:14:33 -07001597 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001598
1599 /* Reset the SCU */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001600 writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001601
1602 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1603 udelay(1000);
1604
1605 /* The write to the CQGR clears the CQP */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001606 writel(0x00000000, &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -07001607
1608 /* The write to the UFQGP clears the UFQPR */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001609 writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001610}
1611
Dan Williams89a73012011-06-30 19:14:33 -07001612static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001613{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001614 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001615
Dan Williams89a73012011-06-30 19:14:33 -07001616 sci_controller_reset_hardware(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001617 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001618}
1619
Dan Williams89a73012011-06-30 19:14:33 -07001620static const struct sci_base_state sci_controller_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001621 [SCIC_INITIAL] = {
Dan Williams89a73012011-06-30 19:14:33 -07001622 .enter_state = sci_controller_initial_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001623 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001624 [SCIC_RESET] = {},
1625 [SCIC_INITIALIZING] = {},
1626 [SCIC_INITIALIZED] = {},
1627 [SCIC_STARTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001628 .exit_state = sci_controller_starting_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001629 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001630 [SCIC_READY] = {
Dan Williams89a73012011-06-30 19:14:33 -07001631 .enter_state = sci_controller_ready_state_enter,
1632 .exit_state = sci_controller_ready_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001633 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001634 [SCIC_RESETTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001635 .enter_state = sci_controller_resetting_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001636 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001637 [SCIC_STOPPING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001638 .enter_state = sci_controller_stopping_state_enter,
1639 .exit_state = sci_controller_stopping_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001640 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001641 [SCIC_STOPPED] = {},
1642 [SCIC_FAILED] = {}
Dan Williamscc9203b2011-05-08 17:34:44 -07001643};
1644
Dan Williams89a73012011-06-30 19:14:33 -07001645static void sci_controller_set_default_config_parameters(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001646{
1647 /* these defaults are overridden by the platform / firmware */
Dan Williamscc9203b2011-05-08 17:34:44 -07001648 u16 index;
1649
1650 /* Default to APC mode. */
Dan Williams89a73012011-06-30 19:14:33 -07001651 ihost->oem_parameters.controller.mode_type = SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001652
1653 /* Default to APC mode. */
Dan Williams89a73012011-06-30 19:14:33 -07001654 ihost->oem_parameters.controller.max_concurrent_dev_spin_up = 1;
Dan Williamscc9203b2011-05-08 17:34:44 -07001655
1656 /* Default to no SSC operation. */
Dan Williams89a73012011-06-30 19:14:33 -07001657 ihost->oem_parameters.controller.do_enable_ssc = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07001658
1659 /* Initialize all of the port parameter information to narrow ports. */
1660 for (index = 0; index < SCI_MAX_PORTS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001661 ihost->oem_parameters.ports[index].phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001662 }
1663
1664 /* Initialize all of the phy parameter information. */
1665 for (index = 0; index < SCI_MAX_PHYS; index++) {
1666 /* Default to 6G (i.e. Gen 3) for now. */
Dan Williams89a73012011-06-30 19:14:33 -07001667 ihost->user_parameters.phys[index].max_speed_generation = 3;
Dan Williamscc9203b2011-05-08 17:34:44 -07001668
1669 /* the frequencies cannot be 0 */
Dan Williams89a73012011-06-30 19:14:33 -07001670 ihost->user_parameters.phys[index].align_insertion_frequency = 0x7f;
1671 ihost->user_parameters.phys[index].in_connection_align_insertion_frequency = 0xff;
1672 ihost->user_parameters.phys[index].notify_enable_spin_up_insertion_frequency = 0x33;
Dan Williamscc9203b2011-05-08 17:34:44 -07001673
1674 /*
1675 * Previous Vitesse based expanders had a arbitration issue that
1676 * is worked around by having the upper 32-bits of SAS address
1677 * with a value greater then the Vitesse company identifier.
1678 * Hence, usage of 0x5FCFFFFF. */
Dan Williams89a73012011-06-30 19:14:33 -07001679 ihost->oem_parameters.phys[index].sas_address.low = 0x1 + ihost->id;
1680 ihost->oem_parameters.phys[index].sas_address.high = 0x5FCFFFFF;
Dan Williamscc9203b2011-05-08 17:34:44 -07001681 }
1682
Dan Williams89a73012011-06-30 19:14:33 -07001683 ihost->user_parameters.stp_inactivity_timeout = 5;
1684 ihost->user_parameters.ssp_inactivity_timeout = 5;
1685 ihost->user_parameters.stp_max_occupancy_timeout = 5;
1686 ihost->user_parameters.ssp_max_occupancy_timeout = 20;
1687 ihost->user_parameters.no_outbound_task_timeout = 20;
Dan Williamscc9203b2011-05-08 17:34:44 -07001688}
1689
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001690static void controller_timeout(unsigned long data)
1691{
1692 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001693 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer);
1694 struct sci_base_state_machine *sm = &ihost->sm;
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001695 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -07001696
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001697 spin_lock_irqsave(&ihost->scic_lock, flags);
1698
1699 if (tmr->cancel)
1700 goto done;
1701
Edmund Nadolskie3013702011-06-02 00:10:43 +00001702 if (sm->current_state_id == SCIC_STARTING)
Dan Williams89a73012011-06-30 19:14:33 -07001703 sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001704 else if (sm->current_state_id == SCIC_STOPPING) {
1705 sci_change_state(sm, SCIC_FAILED);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001706 isci_host_stop_complete(ihost, SCI_FAILURE_TIMEOUT);
1707 } else /* / @todo Now what do we want to do in this case? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001708 dev_err(&ihost->pdev->dev,
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001709 "%s: Controller timer fired when controller was not "
1710 "in a state being timed.\n",
1711 __func__);
1712
1713done:
1714 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1715}
Dan Williamscc9203b2011-05-08 17:34:44 -07001716
Dan Williams89a73012011-06-30 19:14:33 -07001717static enum sci_status sci_controller_construct(struct isci_host *ihost,
1718 void __iomem *scu_base,
1719 void __iomem *smu_base)
Dan Williamscc9203b2011-05-08 17:34:44 -07001720{
Dan Williamscc9203b2011-05-08 17:34:44 -07001721 u8 i;
1722
Dan Williams89a73012011-06-30 19:14:33 -07001723 sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001724
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001725 ihost->scu_registers = scu_base;
1726 ihost->smu_registers = smu_base;
Dan Williamscc9203b2011-05-08 17:34:44 -07001727
Dan Williams89a73012011-06-30 19:14:33 -07001728 sci_port_configuration_agent_construct(&ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07001729
1730 /* Construct the ports for this controller */
1731 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williams89a73012011-06-30 19:14:33 -07001732 sci_port_construct(&ihost->ports[i], i, ihost);
1733 sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001734
1735 /* Construct the phys for this controller */
1736 for (i = 0; i < SCI_MAX_PHYS; i++) {
1737 /* Add all the PHYs to the dummy port */
Dan Williams89a73012011-06-30 19:14:33 -07001738 sci_phy_construct(&ihost->phys[i],
1739 &ihost->ports[SCI_MAX_PORTS], i);
Dan Williamscc9203b2011-05-08 17:34:44 -07001740 }
1741
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001742 ihost->invalid_phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001743
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001744 sci_init_timer(&ihost->timer, controller_timeout);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001745
Dan Williamscc9203b2011-05-08 17:34:44 -07001746 /* Initialize the User and OEM parameters to default values. */
Dan Williams89a73012011-06-30 19:14:33 -07001747 sci_controller_set_default_config_parameters(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001748
Dan Williams89a73012011-06-30 19:14:33 -07001749 return sci_controller_reset(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001750}
1751
Dan Williams89a73012011-06-30 19:14:33 -07001752int sci_oem_parameters_validate(struct sci_oem_params *oem)
Dan Williamscc9203b2011-05-08 17:34:44 -07001753{
1754 int i;
1755
1756 for (i = 0; i < SCI_MAX_PORTS; i++)
1757 if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX)
1758 return -EINVAL;
1759
1760 for (i = 0; i < SCI_MAX_PHYS; i++)
1761 if (oem->phys[i].sas_address.high == 0 &&
1762 oem->phys[i].sas_address.low == 0)
1763 return -EINVAL;
1764
1765 if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) {
1766 for (i = 0; i < SCI_MAX_PHYS; i++)
1767 if (oem->ports[i].phy_mask != 0)
1768 return -EINVAL;
1769 } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
1770 u8 phy_mask = 0;
1771
1772 for (i = 0; i < SCI_MAX_PHYS; i++)
1773 phy_mask |= oem->ports[i].phy_mask;
1774
1775 if (phy_mask == 0)
1776 return -EINVAL;
1777 } else
1778 return -EINVAL;
1779
1780 if (oem->controller.max_concurrent_dev_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT)
1781 return -EINVAL;
1782
1783 return 0;
1784}
1785
Dan Williams89a73012011-06-30 19:14:33 -07001786static enum sci_status sci_oem_parameters_set(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001787{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001788 u32 state = ihost->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -07001789
Edmund Nadolskie3013702011-06-02 00:10:43 +00001790 if (state == SCIC_RESET ||
1791 state == SCIC_INITIALIZING ||
1792 state == SCIC_INITIALIZED) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001793
Dan Williams89a73012011-06-30 19:14:33 -07001794 if (sci_oem_parameters_validate(&ihost->oem_parameters))
Dan Williamscc9203b2011-05-08 17:34:44 -07001795 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001796
1797 return SCI_SUCCESS;
1798 }
1799
1800 return SCI_FAILURE_INVALID_STATE;
1801}
1802
Edmund Nadolski04736612011-05-19 20:17:47 -07001803static void power_control_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -07001804{
Edmund Nadolski04736612011-05-19 20:17:47 -07001805 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001806 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer);
Dan Williams85280952011-06-28 15:05:53 -07001807 struct isci_phy *iphy;
Edmund Nadolski04736612011-05-19 20:17:47 -07001808 unsigned long flags;
1809 u8 i;
Dan Williamscc9203b2011-05-08 17:34:44 -07001810
Edmund Nadolski04736612011-05-19 20:17:47 -07001811 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001812
Edmund Nadolski04736612011-05-19 20:17:47 -07001813 if (tmr->cancel)
1814 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001815
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001816 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001817
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001818 if (ihost->power_control.phys_waiting == 0) {
1819 ihost->power_control.timer_started = false;
Edmund Nadolski04736612011-05-19 20:17:47 -07001820 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001821 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001822
1823 for (i = 0; i < SCI_MAX_PHYS; i++) {
1824
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001825 if (ihost->power_control.phys_waiting == 0)
Edmund Nadolski04736612011-05-19 20:17:47 -07001826 break;
1827
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001828 iphy = ihost->power_control.requesters[i];
Dan Williams85280952011-06-28 15:05:53 -07001829 if (iphy == NULL)
Edmund Nadolski04736612011-05-19 20:17:47 -07001830 continue;
1831
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001832 if (ihost->power_control.phys_granted_power >=
Dan Williams89a73012011-06-30 19:14:33 -07001833 ihost->oem_parameters.controller.max_concurrent_dev_spin_up)
Edmund Nadolski04736612011-05-19 20:17:47 -07001834 break;
1835
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001836 ihost->power_control.requesters[i] = NULL;
1837 ihost->power_control.phys_waiting--;
1838 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001839 sci_phy_consume_power_handler(iphy);
Edmund Nadolski04736612011-05-19 20:17:47 -07001840 }
1841
1842 /*
1843 * It doesn't matter if the power list is empty, we need to start the
1844 * timer in case another phy becomes ready.
1845 */
1846 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001847 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001848
1849done:
1850 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001851}
1852
Dan Williams89a73012011-06-30 19:14:33 -07001853void sci_controller_power_control_queue_insert(struct isci_host *ihost,
1854 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001855{
Dan Williams85280952011-06-28 15:05:53 -07001856 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001857
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001858 if (ihost->power_control.phys_granted_power <
Dan Williams89a73012011-06-30 19:14:33 -07001859 ihost->oem_parameters.controller.max_concurrent_dev_spin_up) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001860 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001861 sci_phy_consume_power_handler(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07001862
1863 /*
1864 * stop and start the power_control timer. When the timer fires, the
1865 * no_of_phys_granted_power will be set to 0
1866 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001867 if (ihost->power_control.timer_started)
1868 sci_del_timer(&ihost->power_control.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001869
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001870 sci_mod_timer(&ihost->power_control.timer,
Edmund Nadolski04736612011-05-19 20:17:47 -07001871 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001872 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001873
Dan Williamscc9203b2011-05-08 17:34:44 -07001874 } else {
1875 /* Add the phy in the waiting list */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001876 ihost->power_control.requesters[iphy->phy_index] = iphy;
1877 ihost->power_control.phys_waiting++;
Dan Williamscc9203b2011-05-08 17:34:44 -07001878 }
1879}
1880
Dan Williams89a73012011-06-30 19:14:33 -07001881void sci_controller_power_control_queue_remove(struct isci_host *ihost,
1882 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001883{
Dan Williams85280952011-06-28 15:05:53 -07001884 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001885
Dan Williams89a73012011-06-30 19:14:33 -07001886 if (ihost->power_control.requesters[iphy->phy_index])
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001887 ihost->power_control.phys_waiting--;
Dan Williamscc9203b2011-05-08 17:34:44 -07001888
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001889 ihost->power_control.requesters[iphy->phy_index] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07001890}
1891
1892#define AFE_REGISTER_WRITE_DELAY 10
1893
1894/* Initialize the AFE for this phy index. We need to read the AFE setup from
1895 * the OEM parameters
1896 */
Dan Williams89a73012011-06-30 19:14:33 -07001897static void sci_controller_afe_initialization(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001898{
Dan Williams89a73012011-06-30 19:14:33 -07001899 const struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001900 struct pci_dev *pdev = ihost->pdev;
Dan Williamscc9203b2011-05-08 17:34:44 -07001901 u32 afe_status;
1902 u32 phy_id;
1903
1904 /* Clear DFX Status registers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001905 writel(0x0081000f, &ihost->scu_registers->afe.afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001906 udelay(AFE_REGISTER_WRITE_DELAY);
1907
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001908 if (is_b0(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001909 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
1910 * Timer, PM Stagger Timer */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001911 writel(0x0007BFFF, &ihost->scu_registers->afe.afe_pmsn_master_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07001912 udelay(AFE_REGISTER_WRITE_DELAY);
1913 }
1914
1915 /* Configure bias currents to normal */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001916 if (is_a2(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001917 writel(0x00005A00, &ihost->scu_registers->afe.afe_bias_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001918 else if (is_b0(pdev) || is_c0(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001919 writel(0x00005F00, &ihost->scu_registers->afe.afe_bias_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001920
1921 udelay(AFE_REGISTER_WRITE_DELAY);
1922
1923 /* Enable PLL */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001924 if (is_b0(pdev) || is_c0(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001925 writel(0x80040A08, &ihost->scu_registers->afe.afe_pll_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001926 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001927 writel(0x80040908, &ihost->scu_registers->afe.afe_pll_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001928
1929 udelay(AFE_REGISTER_WRITE_DELAY);
1930
1931 /* Wait for the PLL to lock */
1932 do {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001933 afe_status = readl(&ihost->scu_registers->afe.afe_common_block_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001934 udelay(AFE_REGISTER_WRITE_DELAY);
1935 } while ((afe_status & 0x00001000) == 0);
1936
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001937 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001938 /* Shorten SAS SNW lock time (RxLock timer value from 76 us to 50 us) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001939 writel(0x7bcc96ad, &ihost->scu_registers->afe.afe_pmsn_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001940 udelay(AFE_REGISTER_WRITE_DELAY);
1941 }
1942
1943 for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) {
1944 const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id];
1945
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001946 if (is_b0(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001947 /* Configure transmitter SSC parameters */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001948 writel(0x00030000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_ssc_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001949 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001950 } else if (is_c0(pdev)) {
Adam Gruchaladbb07432011-06-01 22:31:03 +00001951 /* Configure transmitter SSC parameters */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001952 writel(0x0003000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_ssc_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001953 udelay(AFE_REGISTER_WRITE_DELAY);
1954
1955 /*
1956 * All defaults, except the Receive Word Alignament/Comma Detect
1957 * Enable....(0xe800) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001958 writel(0x00004500, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001959 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamscc9203b2011-05-08 17:34:44 -07001960 } else {
1961 /*
1962 * All defaults, except the Receive Word Alignament/Comma Detect
1963 * Enable....(0xe800) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001964 writel(0x00004512, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001965 udelay(AFE_REGISTER_WRITE_DELAY);
1966
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001967 writel(0x0050100F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07001968 udelay(AFE_REGISTER_WRITE_DELAY);
1969 }
1970
1971 /*
1972 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1973 * & increase TX int & ext bias 20%....(0xe85c) */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001974 if (is_a2(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001975 writel(0x000003F0, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001976 else if (is_b0(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001977 /* Power down TX and RX (PWRDNTX and PWRDNRX) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001978 writel(0x000003D7, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001979 udelay(AFE_REGISTER_WRITE_DELAY);
1980
1981 /*
1982 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1983 * & increase TX int & ext bias 20%....(0xe85c) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001984 writel(0x000003D4, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001985 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001986 writel(0x000001E7, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00001987 udelay(AFE_REGISTER_WRITE_DELAY);
1988
1989 /*
1990 * Power up TX and RX out from power down (PWRDNTX and PWRDNRX)
1991 * & increase TX int & ext bias 20%....(0xe85c) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001992 writel(0x000001E4, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001993 }
1994 udelay(AFE_REGISTER_WRITE_DELAY);
1995
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001996 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001997 /* Enable TX equalization (0xe824) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001998 writel(0x00040000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001999 udelay(AFE_REGISTER_WRITE_DELAY);
2000 }
2001
2002 /*
2003 * RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0, TPD=0x0(TX Power On),
2004 * RDD=0x0(RX Detect Enabled) ....(0xe800) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002005 writel(0x00004100, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002006 udelay(AFE_REGISTER_WRITE_DELAY);
2007
2008 /* Leave DFE/FFE on */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002009 if (is_a2(pdev))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002010 writel(0x3F11103F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control0);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002011 else if (is_b0(pdev)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002012 writel(0x3F11103F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002013 udelay(AFE_REGISTER_WRITE_DELAY);
2014 /* Enable TX equalization (0xe824) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002015 writel(0x00040000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002016 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002017 writel(0x0140DF0F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control1);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002018 udelay(AFE_REGISTER_WRITE_DELAY);
2019
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002020 writel(0x3F6F103F, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_rx_ssc_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002021 udelay(AFE_REGISTER_WRITE_DELAY);
2022
2023 /* Enable TX equalization (0xe824) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002024 writel(0x00040000, &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002025 }
Adam Gruchaladbb07432011-06-01 22:31:03 +00002026
Dan Williamscc9203b2011-05-08 17:34:44 -07002027 udelay(AFE_REGISTER_WRITE_DELAY);
2028
2029 writel(oem_phy->afe_tx_amp_control0,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002030 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002031 udelay(AFE_REGISTER_WRITE_DELAY);
2032
2033 writel(oem_phy->afe_tx_amp_control1,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002034 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002035 udelay(AFE_REGISTER_WRITE_DELAY);
2036
2037 writel(oem_phy->afe_tx_amp_control2,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002038 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002039 udelay(AFE_REGISTER_WRITE_DELAY);
2040
2041 writel(oem_phy->afe_tx_amp_control3,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002042 &ihost->scu_registers->afe.scu_afe_xcvr[phy_id].afe_tx_amp_control3);
Dan Williamscc9203b2011-05-08 17:34:44 -07002043 udelay(AFE_REGISTER_WRITE_DELAY);
2044 }
2045
2046 /* Transfer control to the PEs */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002047 writel(0x00010f00, &ihost->scu_registers->afe.afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002048 udelay(AFE_REGISTER_WRITE_DELAY);
2049}
2050
Dan Williams89a73012011-06-30 19:14:33 -07002051static void sci_controller_initialize_power_control(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002052{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002053 sci_init_timer(&ihost->power_control.timer, power_control_timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07002054
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002055 memset(ihost->power_control.requesters, 0,
2056 sizeof(ihost->power_control.requesters));
Dan Williamscc9203b2011-05-08 17:34:44 -07002057
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002058 ihost->power_control.phys_waiting = 0;
2059 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002060}
2061
Dan Williams89a73012011-06-30 19:14:33 -07002062static enum sci_status sci_controller_initialize(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002063{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002064 struct sci_base_state_machine *sm = &ihost->sm;
Dan Williams7c78da32011-06-01 16:00:01 -07002065 enum sci_status result = SCI_FAILURE;
2066 unsigned long i, state, val;
Dan Williamscc9203b2011-05-08 17:34:44 -07002067
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002068 if (ihost->sm.current_state_id != SCIC_RESET) {
2069 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002070 "SCIC Controller initialize operation requested "
2071 "in invalid state\n");
2072 return SCI_FAILURE_INVALID_STATE;
2073 }
2074
Edmund Nadolskie3013702011-06-02 00:10:43 +00002075 sci_change_state(sm, SCIC_INITIALIZING);
Dan Williamscc9203b2011-05-08 17:34:44 -07002076
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002077 sci_init_timer(&ihost->phy_timer, phy_startup_timeout);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -07002078
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002079 ihost->next_phy_to_start = 0;
2080 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07002081
Dan Williams89a73012011-06-30 19:14:33 -07002082 sci_controller_initialize_power_control(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002083
2084 /*
2085 * There is nothing to do here for B0 since we do not have to
2086 * program the AFE registers.
2087 * / @todo The AFE settings are supposed to be correct for the B0 but
2088 * / presently they seem to be wrong. */
Dan Williams89a73012011-06-30 19:14:33 -07002089 sci_controller_afe_initialization(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002090
Dan Williams7c78da32011-06-01 16:00:01 -07002091
2092 /* Take the hardware out of reset */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002093 writel(0, &ihost->smu_registers->soft_reset_control);
Dan Williams7c78da32011-06-01 16:00:01 -07002094
2095 /*
2096 * / @todo Provide meaningfull error code for hardware failure
2097 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2098 for (i = 100; i >= 1; i--) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002099 u32 status;
Dan Williamscc9203b2011-05-08 17:34:44 -07002100
Dan Williams7c78da32011-06-01 16:00:01 -07002101 /* Loop until the hardware reports success */
2102 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002103 status = readl(&ihost->smu_registers->control_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002104
Dan Williams7c78da32011-06-01 16:00:01 -07002105 if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED)
2106 break;
Dan Williamscc9203b2011-05-08 17:34:44 -07002107 }
Dan Williams7c78da32011-06-01 16:00:01 -07002108 if (i == 0)
2109 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002110
Dan Williams7c78da32011-06-01 16:00:01 -07002111 /*
2112 * Determine what are the actaul device capacities that the
2113 * hardware will support */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002114 val = readl(&ihost->smu_registers->device_context_capacity);
Dan Williamscc9203b2011-05-08 17:34:44 -07002115
Dan Williams7c78da32011-06-01 16:00:01 -07002116 /* Record the smaller of the two capacity values */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002117 ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS);
2118 ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS);
2119 ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES);
Dan Williamscc9203b2011-05-08 17:34:44 -07002120
Dan Williams7c78da32011-06-01 16:00:01 -07002121 /*
2122 * Make all PEs that are unassigned match up with the
2123 * logical ports
2124 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002125 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams7c78da32011-06-01 16:00:01 -07002126 struct scu_port_task_scheduler_group_registers __iomem
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002127 *ptsg = &ihost->scu_registers->peg0.ptsg;
Dan Williamscc9203b2011-05-08 17:34:44 -07002128
Dan Williams7c78da32011-06-01 16:00:01 -07002129 writel(i, &ptsg->protocol_engine[i]);
Dan Williamscc9203b2011-05-08 17:34:44 -07002130 }
2131
2132 /* Initialize hardware PCI Relaxed ordering in DMA engines */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002133 val = readl(&ihost->scu_registers->sdma.pdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002134 val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002135 writel(val, &ihost->scu_registers->sdma.pdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002136
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002137 val = readl(&ihost->scu_registers->sdma.cdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002138 val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002139 writel(val, &ihost->scu_registers->sdma.cdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002140
2141 /*
2142 * Initialize the PHYs before the PORTs because the PHY registers
2143 * are accessed during the port initialization.
2144 */
Dan Williams7c78da32011-06-01 16:00:01 -07002145 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002146 result = sci_phy_initialize(&ihost->phys[i],
2147 &ihost->scu_registers->peg0.pe[i].tl,
2148 &ihost->scu_registers->peg0.pe[i].ll);
Dan Williams7c78da32011-06-01 16:00:01 -07002149 if (result != SCI_SUCCESS)
2150 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002151 }
2152
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002153 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002154 struct isci_port *iport = &ihost->ports[i];
Dan Williams7c78da32011-06-01 16:00:01 -07002155
Dan Williams89a73012011-06-30 19:14:33 -07002156 iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i];
2157 iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0];
2158 iport->viit_registers = &ihost->scu_registers->peg0.viit[i];
Dan Williamscc9203b2011-05-08 17:34:44 -07002159 }
2160
Dan Williams89a73012011-06-30 19:14:33 -07002161 result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07002162
Dan Williams7c78da32011-06-01 16:00:01 -07002163 out:
Dan Williamscc9203b2011-05-08 17:34:44 -07002164 /* Advance the controller state machine */
2165 if (result == SCI_SUCCESS)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002166 state = SCIC_INITIALIZED;
Dan Williamscc9203b2011-05-08 17:34:44 -07002167 else
Edmund Nadolskie3013702011-06-02 00:10:43 +00002168 state = SCIC_FAILED;
2169 sci_change_state(sm, state);
Dan Williamscc9203b2011-05-08 17:34:44 -07002170
2171 return result;
2172}
2173
Dan Williams89a73012011-06-30 19:14:33 -07002174static enum sci_status sci_user_parameters_set(struct isci_host *ihost,
2175 struct sci_user_parameters *sci_parms)
Dan Williamscc9203b2011-05-08 17:34:44 -07002176{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002177 u32 state = ihost->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -07002178
Edmund Nadolskie3013702011-06-02 00:10:43 +00002179 if (state == SCIC_RESET ||
2180 state == SCIC_INITIALIZING ||
2181 state == SCIC_INITIALIZED) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002182 u16 index;
2183
2184 /*
2185 * Validate the user parameters. If they are not legal, then
2186 * return a failure.
2187 */
2188 for (index = 0; index < SCI_MAX_PHYS; index++) {
2189 struct sci_phy_user_params *user_phy;
2190
Dan Williams89a73012011-06-30 19:14:33 -07002191 user_phy = &sci_parms->phys[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07002192
2193 if (!((user_phy->max_speed_generation <=
2194 SCIC_SDS_PARM_MAX_SPEED) &&
2195 (user_phy->max_speed_generation >
2196 SCIC_SDS_PARM_NO_SPEED)))
2197 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2198
2199 if (user_phy->in_connection_align_insertion_frequency <
2200 3)
2201 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2202
2203 if ((user_phy->in_connection_align_insertion_frequency <
2204 3) ||
2205 (user_phy->align_insertion_frequency == 0) ||
2206 (user_phy->
2207 notify_enable_spin_up_insertion_frequency ==
2208 0))
2209 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2210 }
2211
Dan Williams89a73012011-06-30 19:14:33 -07002212 if ((sci_parms->stp_inactivity_timeout == 0) ||
2213 (sci_parms->ssp_inactivity_timeout == 0) ||
2214 (sci_parms->stp_max_occupancy_timeout == 0) ||
2215 (sci_parms->ssp_max_occupancy_timeout == 0) ||
2216 (sci_parms->no_outbound_task_timeout == 0))
Dan Williamscc9203b2011-05-08 17:34:44 -07002217 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2218
Dan Williams89a73012011-06-30 19:14:33 -07002219 memcpy(&ihost->user_parameters, sci_parms, sizeof(*sci_parms));
Dan Williamscc9203b2011-05-08 17:34:44 -07002220
2221 return SCI_SUCCESS;
2222 }
2223
2224 return SCI_FAILURE_INVALID_STATE;
2225}
2226
Dan Williams89a73012011-06-30 19:14:33 -07002227static int sci_controller_mem_init(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002228{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002229 struct device *dev = &ihost->pdev->dev;
Dan Williams7c78da32011-06-01 16:00:01 -07002230 dma_addr_t dma;
2231 size_t size;
2232 int err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002233
Dan Williams7c78da32011-06-01 16:00:01 -07002234 size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002235 ihost->completion_queue = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2236 if (!ihost->completion_queue)
Dan Williamscc9203b2011-05-08 17:34:44 -07002237 return -ENOMEM;
2238
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002239 writel(lower_32_bits(dma), &ihost->smu_registers->completion_queue_lower);
2240 writel(upper_32_bits(dma), &ihost->smu_registers->completion_queue_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002241
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002242 size = ihost->remote_node_entries * sizeof(union scu_remote_node_context);
2243 ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &dma,
Dan Williams89a73012011-06-30 19:14:33 -07002244 GFP_KERNEL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002245 if (!ihost->remote_node_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002246 return -ENOMEM;
2247
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002248 writel(lower_32_bits(dma), &ihost->smu_registers->remote_node_context_lower);
2249 writel(upper_32_bits(dma), &ihost->smu_registers->remote_node_context_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002250
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002251 size = ihost->task_context_entries * sizeof(struct scu_task_context),
2252 ihost->task_context_table = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2253 if (!ihost->task_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002254 return -ENOMEM;
2255
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002256 ihost->task_context_dma = dma;
2257 writel(lower_32_bits(dma), &ihost->smu_registers->host_task_table_lower);
2258 writel(upper_32_bits(dma), &ihost->smu_registers->host_task_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002259
Dan Williams89a73012011-06-30 19:14:33 -07002260 err = sci_unsolicited_frame_control_construct(ihost);
Dan Williams7c78da32011-06-01 16:00:01 -07002261 if (err)
2262 return err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002263
2264 /*
2265 * Inform the silicon as to the location of the UF headers and
2266 * address table.
2267 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002268 writel(lower_32_bits(ihost->uf_control.headers.physical_address),
2269 &ihost->scu_registers->sdma.uf_header_base_address_lower);
2270 writel(upper_32_bits(ihost->uf_control.headers.physical_address),
2271 &ihost->scu_registers->sdma.uf_header_base_address_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002272
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002273 writel(lower_32_bits(ihost->uf_control.address_table.physical_address),
2274 &ihost->scu_registers->sdma.uf_address_table_lower);
2275 writel(upper_32_bits(ihost->uf_control.address_table.physical_address),
2276 &ihost->scu_registers->sdma.uf_address_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002277
2278 return 0;
2279}
2280
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002281int isci_host_init(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07002282{
Dan Williamsd9c37392011-03-03 17:59:32 -08002283 int err = 0, i;
Dan Williams6f231dd2011-07-02 22:56:22 -07002284 enum sci_status status;
Dan Williams89a73012011-06-30 19:14:33 -07002285 struct sci_user_parameters sci_user_params;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002286 struct isci_pci_info *pci_info = to_pci_info(ihost->pdev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002287
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002288 spin_lock_init(&ihost->state_lock);
2289 spin_lock_init(&ihost->scic_lock);
2290 init_waitqueue_head(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07002291
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002292 isci_host_change_state(ihost, isci_starting);
Dan Williams6f231dd2011-07-02 22:56:22 -07002293
Dan Williams89a73012011-06-30 19:14:33 -07002294 status = sci_controller_construct(ihost, scu_base(ihost),
2295 smu_base(ihost));
Dan Williams6f231dd2011-07-02 22:56:22 -07002296
2297 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002298 dev_err(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002299 "%s: sci_controller_construct failed - status = %x\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002300 __func__,
2301 status);
Dave Jiang858d4aa2011-02-22 01:27:03 -08002302 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002303 }
2304
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002305 ihost->sas_ha.dev = &ihost->pdev->dev;
2306 ihost->sas_ha.lldd_ha = ihost;
Dan Williams6f231dd2011-07-02 22:56:22 -07002307
Dan Williamsd044af12011-03-08 09:52:49 -08002308 /*
2309 * grab initial values stored in the controller object for OEM and USER
2310 * parameters
2311 */
Dan Williams89a73012011-06-30 19:14:33 -07002312 isci_user_parameters_get(&sci_user_params);
2313 status = sci_user_parameters_set(ihost, &sci_user_params);
Dan Williamsd044af12011-03-08 09:52:49 -08002314 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002315 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002316 "%s: sci_user_parameters_set failed\n",
Dan Williamsd044af12011-03-08 09:52:49 -08002317 __func__);
2318 return -ENODEV;
2319 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002320
Dan Williamsd044af12011-03-08 09:52:49 -08002321 /* grab any OEM parameters specified in orom */
2322 if (pci_info->orom) {
Dan Williams89a73012011-06-30 19:14:33 -07002323 status = isci_parse_oem_parameters(&ihost->oem_parameters,
Dan Williamsd044af12011-03-08 09:52:49 -08002324 pci_info->orom,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002325 ihost->id);
Dan Williams6f231dd2011-07-02 22:56:22 -07002326 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002327 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002328 "parsing firmware oem parameters failed\n");
Dave Jiang858d4aa2011-02-22 01:27:03 -08002329 return -EINVAL;
Dan Williams6f231dd2011-07-02 22:56:22 -07002330 }
Dan Williams4711ba12011-03-11 10:43:57 -08002331 }
2332
Dan Williams89a73012011-06-30 19:14:33 -07002333 status = sci_oem_parameters_set(ihost);
Dan Williams4711ba12011-03-11 10:43:57 -08002334 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002335 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002336 "%s: sci_oem_parameters_set failed\n",
Dan Williams4711ba12011-03-11 10:43:57 -08002337 __func__);
2338 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002339 }
2340
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002341 tasklet_init(&ihost->completion_tasklet,
2342 isci_host_completion_routine, (unsigned long)ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002343
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002344 INIT_LIST_HEAD(&ihost->requests_to_complete);
2345 INIT_LIST_HEAD(&ihost->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002346
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002347 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07002348 status = sci_controller_initialize(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002349 spin_unlock_irq(&ihost->scic_lock);
Dan Williams7c40a802011-03-02 11:49:26 -08002350 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002351 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002352 "%s: sci_controller_initialize failed -"
Dan Williams7c40a802011-03-02 11:49:26 -08002353 " status = 0x%x\n",
2354 __func__, status);
2355 return -ENODEV;
2356 }
2357
Dan Williams89a73012011-06-30 19:14:33 -07002358 err = sci_controller_mem_init(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002359 if (err)
Dave Jiang858d4aa2011-02-22 01:27:03 -08002360 return err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002361
Dan Williamsd9c37392011-03-03 17:59:32 -08002362 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002363 isci_port_init(&ihost->ports[i], ihost, i);
Dan Williams6f231dd2011-07-02 22:56:22 -07002364
Dan Williamsd9c37392011-03-03 17:59:32 -08002365 for (i = 0; i < SCI_MAX_PHYS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002366 isci_phy_init(&ihost->phys[i], ihost, i);
Dan Williamsd9c37392011-03-03 17:59:32 -08002367
2368 for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002369 struct isci_remote_device *idev = &ihost->devices[i];
Dan Williamsd9c37392011-03-03 17:59:32 -08002370
2371 INIT_LIST_HEAD(&idev->reqs_in_process);
2372 INIT_LIST_HEAD(&idev->node);
Dan Williamsd9c37392011-03-03 17:59:32 -08002373 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002374
Dan Williamsdb056252011-06-17 14:18:39 -07002375 for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) {
2376 struct isci_request *ireq;
2377 dma_addr_t dma;
2378
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002379 ireq = dmam_alloc_coherent(&ihost->pdev->dev,
Dan Williamsdb056252011-06-17 14:18:39 -07002380 sizeof(struct isci_request), &dma,
2381 GFP_KERNEL);
2382 if (!ireq)
2383 return -ENOMEM;
2384
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002385 ireq->tc = &ihost->task_context_table[i];
2386 ireq->owning_controller = ihost;
Dan Williamsdb056252011-06-17 14:18:39 -07002387 spin_lock_init(&ireq->state_lock);
2388 ireq->request_daddr = dma;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002389 ireq->isci_host = ihost;
2390 ihost->reqs[i] = ireq;
Dan Williamsdb056252011-06-17 14:18:39 -07002391 }
2392
Dave Jiang858d4aa2011-02-22 01:27:03 -08002393 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -07002394}
Dan Williamscc9203b2011-05-08 17:34:44 -07002395
Dan Williams89a73012011-06-30 19:14:33 -07002396void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport,
2397 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002398{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002399 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002400 case SCIC_STARTING:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002401 sci_del_timer(&ihost->phy_timer);
2402 ihost->phy_startup_timer_pending = false;
2403 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002404 iport, iphy);
2405 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002406 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002407 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002408 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002409 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002410 break;
2411 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002412 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002413 "%s: SCIC Controller linkup event from phy %d in "
Dan Williams85280952011-06-28 15:05:53 -07002414 "unexpected state %d\n", __func__, iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002415 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002416 }
2417}
2418
Dan Williams89a73012011-06-30 19:14:33 -07002419void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport,
2420 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002421{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002422 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002423 case SCIC_STARTING:
2424 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002425 ihost->port_agent.link_down_handler(ihost, &ihost->port_agent,
Dan Williamsffe191c2011-06-29 13:09:25 -07002426 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002427 break;
2428 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002429 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002430 "%s: SCIC Controller linkdown event from phy %d in "
2431 "unexpected state %d\n",
2432 __func__,
Dan Williams85280952011-06-28 15:05:53 -07002433 iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002434 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002435 }
2436}
2437
Dan Williams89a73012011-06-30 19:14:33 -07002438static bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002439{
2440 u32 index;
2441
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002442 for (index = 0; index < ihost->remote_node_entries; index++) {
2443 if ((ihost->device_table[index] != NULL) &&
2444 (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING))
Dan Williamscc9203b2011-05-08 17:34:44 -07002445 return true;
2446 }
2447
2448 return false;
2449}
2450
Dan Williams89a73012011-06-30 19:14:33 -07002451void sci_controller_remote_device_stopped(struct isci_host *ihost,
2452 struct isci_remote_device *idev)
Dan Williamscc9203b2011-05-08 17:34:44 -07002453{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002454 if (ihost->sm.current_state_id != SCIC_STOPPING) {
2455 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002456 "SCIC Controller 0x%p remote device stopped event "
2457 "from device 0x%p in unexpected state %d\n",
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002458 ihost, idev,
2459 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002460 return;
2461 }
2462
Dan Williams89a73012011-06-30 19:14:33 -07002463 if (!sci_controller_has_remote_devices_stopping(ihost))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002464 sci_change_state(&ihost->sm, SCIC_STOPPED);
Dan Williamscc9203b2011-05-08 17:34:44 -07002465}
2466
Dan Williams89a73012011-06-30 19:14:33 -07002467void sci_controller_post_request(struct isci_host *ihost, u32 request)
Dan Williamscc9203b2011-05-08 17:34:44 -07002468{
Dan Williams89a73012011-06-30 19:14:33 -07002469 dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n",
2470 __func__, ihost->id, request);
Dan Williamscc9203b2011-05-08 17:34:44 -07002471
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002472 writel(request, &ihost->smu_registers->post_context_port);
Dan Williamscc9203b2011-05-08 17:34:44 -07002473}
2474
Dan Williams89a73012011-06-30 19:14:33 -07002475struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag)
Dan Williamscc9203b2011-05-08 17:34:44 -07002476{
2477 u16 task_index;
2478 u16 task_sequence;
2479
Dan Williamsdd047c82011-06-09 11:06:58 -07002480 task_index = ISCI_TAG_TCI(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002481
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002482 if (task_index < ihost->task_context_entries) {
2483 struct isci_request *ireq = ihost->reqs[task_index];
Dan Williamsdb056252011-06-17 14:18:39 -07002484
2485 if (test_bit(IREQ_ACTIVE, &ireq->flags)) {
Dan Williamsdd047c82011-06-09 11:06:58 -07002486 task_sequence = ISCI_TAG_SEQ(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002487
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002488 if (task_sequence == ihost->io_request_sequence[task_index])
Dan Williams5076a1a2011-06-27 14:57:03 -07002489 return ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002490 }
2491 }
2492
2493 return NULL;
2494}
2495
2496/**
2497 * This method allocates remote node index and the reserves the remote node
2498 * context space for use. This method can fail if there are no more remote
2499 * node index available.
2500 * @scic: This is the controller object which contains the set of
2501 * free remote node ids
2502 * @sci_dev: This is the device object which is requesting the a remote node
2503 * id
2504 * @node_id: This is the remote node id that is assinged to the device if one
2505 * is available
2506 *
2507 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2508 * node index available.
2509 */
Dan Williams89a73012011-06-30 19:14:33 -07002510enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost,
2511 struct isci_remote_device *idev,
2512 u16 *node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002513{
2514 u16 node_index;
Dan Williams89a73012011-06-30 19:14:33 -07002515 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002516
Dan Williams89a73012011-06-30 19:14:33 -07002517 node_index = sci_remote_node_table_allocate_remote_node(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002518 &ihost->available_remote_nodes, remote_node_count
Dan Williamscc9203b2011-05-08 17:34:44 -07002519 );
2520
2521 if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002522 ihost->device_table[node_index] = idev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002523
2524 *node_id = node_index;
2525
2526 return SCI_SUCCESS;
2527 }
2528
2529 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
2530}
2531
Dan Williams89a73012011-06-30 19:14:33 -07002532void sci_controller_free_remote_node_context(struct isci_host *ihost,
2533 struct isci_remote_device *idev,
2534 u16 node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002535{
Dan Williams89a73012011-06-30 19:14:33 -07002536 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002537
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002538 if (ihost->device_table[node_id] == idev) {
2539 ihost->device_table[node_id] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002540
Dan Williams89a73012011-06-30 19:14:33 -07002541 sci_remote_node_table_release_remote_node_index(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002542 &ihost->available_remote_nodes, remote_node_count, node_id
Dan Williamscc9203b2011-05-08 17:34:44 -07002543 );
2544 }
2545}
2546
Dan Williams89a73012011-06-30 19:14:33 -07002547void sci_controller_copy_sata_response(void *response_buffer,
2548 void *frame_header,
2549 void *frame_buffer)
Dan Williamscc9203b2011-05-08 17:34:44 -07002550{
Dan Williams89a73012011-06-30 19:14:33 -07002551 /* XXX type safety? */
Dan Williamscc9203b2011-05-08 17:34:44 -07002552 memcpy(response_buffer, frame_header, sizeof(u32));
2553
2554 memcpy(response_buffer + sizeof(u32),
2555 frame_buffer,
2556 sizeof(struct dev_to_host_fis) - sizeof(u32));
2557}
2558
Dan Williams89a73012011-06-30 19:14:33 -07002559void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index)
Dan Williamscc9203b2011-05-08 17:34:44 -07002560{
Dan Williams89a73012011-06-30 19:14:33 -07002561 if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002562 writel(ihost->uf_control.get,
2563 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07002564}
2565
Dan Williams312e0c22011-06-28 13:47:09 -07002566void isci_tci_free(struct isci_host *ihost, u16 tci)
2567{
2568 u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1);
2569
2570 ihost->tci_pool[tail] = tci;
2571 ihost->tci_tail = tail + 1;
2572}
2573
2574static u16 isci_tci_alloc(struct isci_host *ihost)
2575{
2576 u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1);
2577 u16 tci = ihost->tci_pool[head];
2578
2579 ihost->tci_head = head + 1;
2580 return tci;
2581}
2582
2583static u16 isci_tci_space(struct isci_host *ihost)
2584{
2585 return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
2586}
2587
2588u16 isci_alloc_tag(struct isci_host *ihost)
2589{
2590 if (isci_tci_space(ihost)) {
2591 u16 tci = isci_tci_alloc(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002592 u8 seq = ihost->io_request_sequence[tci];
Dan Williams312e0c22011-06-28 13:47:09 -07002593
2594 return ISCI_TAG(seq, tci);
2595 }
2596
2597 return SCI_CONTROLLER_INVALID_IO_TAG;
2598}
2599
2600enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag)
2601{
Dan Williams312e0c22011-06-28 13:47:09 -07002602 u16 tci = ISCI_TAG_TCI(io_tag);
2603 u16 seq = ISCI_TAG_SEQ(io_tag);
2604
2605 /* prevent tail from passing head */
2606 if (isci_tci_active(ihost) == 0)
2607 return SCI_FAILURE_INVALID_IO_TAG;
2608
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002609 if (seq == ihost->io_request_sequence[tci]) {
2610 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1);
Dan Williams312e0c22011-06-28 13:47:09 -07002611
2612 isci_tci_free(ihost, tci);
2613
2614 return SCI_SUCCESS;
2615 }
2616 return SCI_FAILURE_INVALID_IO_TAG;
2617}
2618
Dan Williams89a73012011-06-30 19:14:33 -07002619enum sci_status sci_controller_start_io(struct isci_host *ihost,
2620 struct isci_remote_device *idev,
2621 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002622{
2623 enum sci_status status;
2624
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002625 if (ihost->sm.current_state_id != SCIC_READY) {
2626 dev_warn(&ihost->pdev->dev, "invalid state to start I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002627 return SCI_FAILURE_INVALID_STATE;
2628 }
2629
Dan Williams89a73012011-06-30 19:14:33 -07002630 status = sci_remote_device_start_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002631 if (status != SCI_SUCCESS)
2632 return status;
2633
Dan Williams5076a1a2011-06-27 14:57:03 -07002634 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002635 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002636 return SCI_SUCCESS;
2637}
2638
Dan Williams89a73012011-06-30 19:14:33 -07002639enum sci_status sci_controller_terminate_request(struct isci_host *ihost,
2640 struct isci_remote_device *idev,
2641 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002642{
Dan Williams89a73012011-06-30 19:14:33 -07002643 /* terminate an ongoing (i.e. started) core IO request. This does not
2644 * abort the IO request at the target, but rather removes the IO
2645 * request from the host controller.
2646 */
Dan Williamscc9203b2011-05-08 17:34:44 -07002647 enum sci_status status;
2648
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002649 if (ihost->sm.current_state_id != SCIC_READY) {
2650 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002651 "invalid state to terminate request\n");
2652 return SCI_FAILURE_INVALID_STATE;
2653 }
2654
Dan Williams89a73012011-06-30 19:14:33 -07002655 status = sci_io_request_terminate(ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002656 if (status != SCI_SUCCESS)
2657 return status;
2658
2659 /*
2660 * Utilize the original post context command and or in the POST_TC_ABORT
2661 * request sub-type.
2662 */
Dan Williams89a73012011-06-30 19:14:33 -07002663 sci_controller_post_request(ihost,
2664 ireq->post_context | SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT);
Dan Williamscc9203b2011-05-08 17:34:44 -07002665 return SCI_SUCCESS;
2666}
2667
2668/**
Dan Williams89a73012011-06-30 19:14:33 -07002669 * sci_controller_complete_io() - This method will perform core specific
Dan Williamscc9203b2011-05-08 17:34:44 -07002670 * completion operations for an IO request. After this method is invoked,
2671 * the user should consider the IO request as invalid until it is properly
2672 * reused (i.e. re-constructed).
Dan Williams89a73012011-06-30 19:14:33 -07002673 * @ihost: The handle to the controller object for which to complete the
Dan Williamscc9203b2011-05-08 17:34:44 -07002674 * IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002675 * @idev: The handle to the remote device object for which to complete
Dan Williamscc9203b2011-05-08 17:34:44 -07002676 * the IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002677 * @ireq: the handle to the io request object to complete.
Dan Williamscc9203b2011-05-08 17:34:44 -07002678 */
Dan Williams89a73012011-06-30 19:14:33 -07002679enum sci_status sci_controller_complete_io(struct isci_host *ihost,
2680 struct isci_remote_device *idev,
2681 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002682{
2683 enum sci_status status;
2684 u16 index;
2685
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002686 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002687 case SCIC_STOPPING:
Dan Williamscc9203b2011-05-08 17:34:44 -07002688 /* XXX: Implement this function */
2689 return SCI_FAILURE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002690 case SCIC_READY:
Dan Williams89a73012011-06-30 19:14:33 -07002691 status = sci_remote_device_complete_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002692 if (status != SCI_SUCCESS)
2693 return status;
2694
Dan Williams5076a1a2011-06-27 14:57:03 -07002695 index = ISCI_TAG_TCI(ireq->io_tag);
2696 clear_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002697 return SCI_SUCCESS;
2698 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002699 dev_warn(&ihost->pdev->dev, "invalid state to complete I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002700 return SCI_FAILURE_INVALID_STATE;
2701 }
2702
2703}
2704
Dan Williams89a73012011-06-30 19:14:33 -07002705enum sci_status sci_controller_continue_io(struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002706{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002707 struct isci_host *ihost = ireq->owning_controller;
Dan Williamscc9203b2011-05-08 17:34:44 -07002708
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002709 if (ihost->sm.current_state_id != SCIC_READY) {
2710 dev_warn(&ihost->pdev->dev, "invalid state to continue I/O");
Dan Williamscc9203b2011-05-08 17:34:44 -07002711 return SCI_FAILURE_INVALID_STATE;
2712 }
2713
Dan Williams5076a1a2011-06-27 14:57:03 -07002714 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002715 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002716 return SCI_SUCCESS;
2717}
2718
2719/**
Dan Williams89a73012011-06-30 19:14:33 -07002720 * sci_controller_start_task() - This method is called by the SCIC user to
Dan Williamscc9203b2011-05-08 17:34:44 -07002721 * send/start a framework task management request.
2722 * @controller: the handle to the controller object for which to start the task
2723 * management request.
2724 * @remote_device: the handle to the remote device object for which to start
2725 * the task management request.
2726 * @task_request: the handle to the task request object to start.
Dan Williamscc9203b2011-05-08 17:34:44 -07002727 */
Dan Williams89a73012011-06-30 19:14:33 -07002728enum sci_task_status sci_controller_start_task(struct isci_host *ihost,
2729 struct isci_remote_device *idev,
2730 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002731{
2732 enum sci_status status;
2733
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002734 if (ihost->sm.current_state_id != SCIC_READY) {
2735 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002736 "%s: SCIC Controller starting task from invalid "
2737 "state\n",
2738 __func__);
2739 return SCI_TASK_FAILURE_INVALID_STATE;
2740 }
2741
Dan Williams89a73012011-06-30 19:14:33 -07002742 status = sci_remote_device_start_task(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002743 switch (status) {
2744 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002745 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002746
2747 /*
2748 * We will let framework know this task request started successfully,
2749 * although core is still woring on starting the request (to post tc when
2750 * RNC is resumed.)
2751 */
2752 return SCI_SUCCESS;
2753 case SCI_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002754 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002755 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002756 break;
2757 default:
2758 break;
2759 }
2760
2761 return status;
2762}