blob: 0fe372f93289cdbe3098ea90f5e36d3a74250917 [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 Williamsd044af12011-03-08 09:52:49 -080061#include "probe_roms.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070062#include "remote_device.h"
63#include "request.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070064#include "scu_completion_codes.h"
65#include "scu_event_codes.h"
Dan Williams63a3a152011-05-08 21:36:46 -070066#include "registers.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070067#include "scu_remote_node_context.h"
68#include "scu_task_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070069
Dan Williamscc9203b2011-05-08 17:34:44 -070070#define SCU_CONTEXT_RAM_INIT_STALL_TIME 200
71
Dan Williams7c78da32011-06-01 16:00:01 -070072#define smu_max_ports(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070073 (\
74 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_MASK) \
75 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_SHIFT) + 1 \
76 )
77
Dan Williams7c78da32011-06-01 16:00:01 -070078#define smu_max_task_contexts(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070079 (\
80 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_MASK) \
81 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT) + 1 \
82 )
83
Dan Williams7c78da32011-06-01 16:00:01 -070084#define smu_max_rncs(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070085 (\
86 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_MASK) \
87 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_SHIFT) + 1 \
88 )
89
Dan Williamscc9203b2011-05-08 17:34:44 -070090#define SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT 100
91
92/**
93 *
94 *
95 * The number of milliseconds to wait while a given phy is consuming power
96 * before allowing another set of phys to consume power. Ultimately, this will
97 * be specified by OEM parameter.
98 */
99#define SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL 500
100
101/**
102 * NORMALIZE_PUT_POINTER() -
103 *
104 * This macro will normalize the completion queue put pointer so its value can
105 * be used as an array inde
106 */
107#define NORMALIZE_PUT_POINTER(x) \
108 ((x) & SMU_COMPLETION_QUEUE_PUT_POINTER_MASK)
109
110
111/**
112 * NORMALIZE_EVENT_POINTER() -
113 *
114 * This macro will normalize the completion queue event entry so its value can
115 * be used as an index.
116 */
117#define NORMALIZE_EVENT_POINTER(x) \
118 (\
119 ((x) & SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_MASK) \
120 >> SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_SHIFT \
121 )
122
123/**
Dan Williamscc9203b2011-05-08 17:34:44 -0700124 * NORMALIZE_GET_POINTER() -
125 *
126 * This macro will normalize the completion queue get pointer so its value can
127 * be used as an index into an array
128 */
129#define NORMALIZE_GET_POINTER(x) \
130 ((x) & SMU_COMPLETION_QUEUE_GET_POINTER_MASK)
131
132/**
133 * NORMALIZE_GET_POINTER_CYCLE_BIT() -
134 *
135 * This macro will normalize the completion queue cycle pointer so it matches
136 * the completion queue cycle bit
137 */
138#define NORMALIZE_GET_POINTER_CYCLE_BIT(x) \
139 ((SMU_CQGR_CYCLE_BIT & (x)) << (31 - SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT))
140
141/**
142 * COMPLETION_QUEUE_CYCLE_BIT() -
143 *
144 * This macro will return the cycle bit of the completion queue entry
145 */
146#define COMPLETION_QUEUE_CYCLE_BIT(x) ((x) & 0x80000000)
147
Edmund Nadolski12ef6542011-06-02 00:10:50 +0000148/* Init the state machine and call the state entry function (if any) */
149void sci_init_sm(struct sci_base_state_machine *sm,
150 const struct sci_base_state *state_table, u32 initial_state)
151{
152 sci_state_transition_t handler;
153
154 sm->initial_state_id = initial_state;
155 sm->previous_state_id = initial_state;
156 sm->current_state_id = initial_state;
157 sm->state_table = state_table;
158
159 handler = sm->state_table[initial_state].enter_state;
160 if (handler)
161 handler(sm);
162}
163
164/* Call the state exit fn, update the current state, call the state entry fn */
165void sci_change_state(struct sci_base_state_machine *sm, u32 next_state)
166{
167 sci_state_transition_t handler;
168
169 handler = sm->state_table[sm->current_state_id].exit_state;
170 if (handler)
171 handler(sm);
172
173 sm->previous_state_id = sm->current_state_id;
174 sm->current_state_id = next_state;
175
176 handler = sm->state_table[sm->current_state_id].enter_state;
177 if (handler)
178 handler(sm);
179}
180
Dan Williams89a73012011-06-30 19:14:33 -0700181static bool sci_controller_completion_queue_has_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700182{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700183 u32 get_value = ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700184 u32 get_index = get_value & SMU_COMPLETION_QUEUE_GET_POINTER_MASK;
185
186 if (NORMALIZE_GET_POINTER_CYCLE_BIT(get_value) ==
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700187 COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index]))
Dan Williamscc9203b2011-05-08 17:34:44 -0700188 return true;
189
190 return false;
191}
192
Dan Williams89a73012011-06-30 19:14:33 -0700193static bool sci_controller_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700194{
Dan Williams89a73012011-06-30 19:14:33 -0700195 if (sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700196 return true;
197 } else {
198 /*
199 * we have a spurious interrupt it could be that we have already
200 * emptied the completion queue from a previous interrupt */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700201 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700202
203 /*
204 * There is a race in the hardware that could cause us not to be notified
205 * of an interrupt completion if we do not take this step. We will mask
206 * then unmask the interrupts so if there is another interrupt pending
207 * the clearing of the interrupt source we get the next interrupt message. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700208 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
209 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700210 }
211
212 return false;
213}
214
Dan Williamsc7ef4032011-02-18 09:25:05 -0800215irqreturn_t isci_msix_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700216{
Dan Williamsc7ef4032011-02-18 09:25:05 -0800217 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700218
Dan Williams89a73012011-06-30 19:14:33 -0700219 if (sci_controller_isr(ihost))
Dan Williams0cf89d12011-02-18 09:25:07 -0800220 tasklet_schedule(&ihost->completion_tasklet);
Dan Williams6f231dd2011-07-02 22:56:22 -0700221
Dan Williamsc7ef4032011-02-18 09:25:05 -0800222 return IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700223}
224
Dan Williams89a73012011-06-30 19:14:33 -0700225static bool sci_controller_error_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700226{
227 u32 interrupt_status;
228
229 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700230 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700231 interrupt_status &= (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND);
232
233 if (interrupt_status != 0) {
234 /*
235 * There is an error interrupt pending so let it through and handle
236 * in the callback */
237 return true;
238 }
239
240 /*
241 * There is a race in the hardware that could cause us not to be notified
242 * of an interrupt completion if we do not take this step. We will mask
243 * then unmask the error interrupts so if there was another interrupt
244 * pending we will be notified.
245 * Could we write the value of (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND)? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700246 writel(0xff, &ihost->smu_registers->interrupt_mask);
247 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700248
249 return false;
250}
251
Dan Williams89a73012011-06-30 19:14:33 -0700252static void sci_controller_task_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700253{
Dan Williams89a73012011-06-30 19:14:33 -0700254 u32 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamsdb056252011-06-17 14:18:39 -0700255 struct isci_request *ireq = ihost->reqs[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700256
257 /* Make sure that we really want to process this IO request */
Dan Williamsdb056252011-06-17 14:18:39 -0700258 if (test_bit(IREQ_ACTIVE, &ireq->flags) &&
Dan Williams5076a1a2011-06-27 14:57:03 -0700259 ireq->io_tag != SCI_CONTROLLER_INVALID_IO_TAG &&
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700260 ISCI_TAG_SEQ(ireq->io_tag) == ihost->io_request_sequence[index])
Dan Williams89a73012011-06-30 19:14:33 -0700261 /* Yep this is a valid io request pass it along to the
262 * io request handler
263 */
264 sci_io_request_tc_completion(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700265}
266
Dan Williams89a73012011-06-30 19:14:33 -0700267static void sci_controller_sdma_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700268{
269 u32 index;
Dan Williams5076a1a2011-06-27 14:57:03 -0700270 struct isci_request *ireq;
Dan Williams78a6f062011-06-30 16:31:37 -0700271 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700272
Dan Williams89a73012011-06-30 19:14:33 -0700273 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700274
Dan Williams89a73012011-06-30 19:14:33 -0700275 switch (scu_get_command_request_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700276 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC:
277 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700278 ireq = ihost->reqs[index];
279 dev_warn(&ihost->pdev->dev, "%s: %x for io request %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700280 __func__, ent, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -0700281 /* @todo For a post TC operation we need to fail the IO
282 * request
283 */
284 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700285 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_RNC:
286 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_OTHER_RNC:
287 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_RNC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700288 idev = ihost->device_table[index];
289 dev_warn(&ihost->pdev->dev, "%s: %x for device %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700290 __func__, ent, idev);
Dan Williamscc9203b2011-05-08 17:34:44 -0700291 /* @todo For a port RNC operation we need to fail the
292 * device
293 */
294 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700295 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700296 dev_warn(&ihost->pdev->dev, "%s: unknown completion type %x\n",
Dan Williams89a73012011-06-30 19:14:33 -0700297 __func__, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700298 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700299 }
300}
301
Dan Williams89a73012011-06-30 19:14:33 -0700302static void sci_controller_unsolicited_frame(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700303{
304 u32 index;
305 u32 frame_index;
306
Dan Williamscc9203b2011-05-08 17:34:44 -0700307 struct scu_unsolicited_frame_header *frame_header;
Dan Williams85280952011-06-28 15:05:53 -0700308 struct isci_phy *iphy;
Dan Williams78a6f062011-06-30 16:31:37 -0700309 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700310
311 enum sci_status result = SCI_FAILURE;
312
Dan Williams89a73012011-06-30 19:14:33 -0700313 frame_index = SCU_GET_FRAME_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700314
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700315 frame_header = ihost->uf_control.buffers.array[frame_index].header;
316 ihost->uf_control.buffers.array[frame_index].state = UNSOLICITED_FRAME_IN_USE;
Dan Williamscc9203b2011-05-08 17:34:44 -0700317
Dan Williams89a73012011-06-30 19:14:33 -0700318 if (SCU_GET_FRAME_ERROR(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700319 /*
320 * / @todo If the IAF frame or SIGNATURE FIS frame has an error will
321 * / this cause a problem? We expect the phy initialization will
322 * / fail if there is an error in the frame. */
Dan Williams89a73012011-06-30 19:14:33 -0700323 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700324 return;
325 }
326
327 if (frame_header->is_address_frame) {
Dan Williams89a73012011-06-30 19:14:33 -0700328 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700329 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700330 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700331 } else {
332
Dan Williams89a73012011-06-30 19:14:33 -0700333 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700334
335 if (index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
336 /*
337 * This is a signature fis or a frame from a direct attached SATA
338 * device that has not yet been created. In either case forwared
339 * the frame to the PE and let it take care of the frame data. */
Dan Williams89a73012011-06-30 19:14:33 -0700340 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700341 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700342 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700343 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700344 if (index < ihost->remote_node_entries)
345 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700346 else
Dan Williams78a6f062011-06-30 16:31:37 -0700347 idev = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -0700348
Dan Williams78a6f062011-06-30 16:31:37 -0700349 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700350 result = sci_remote_device_frame_handler(idev, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700351 else
Dan Williams89a73012011-06-30 19:14:33 -0700352 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700353 }
354 }
355
356 if (result != SCI_SUCCESS) {
357 /*
358 * / @todo Is there any reason to report some additional error message
359 * / when we get this failure notifiction? */
360 }
361}
362
Dan Williams89a73012011-06-30 19:14:33 -0700363static void sci_controller_event_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700364{
Dan Williams78a6f062011-06-30 16:31:37 -0700365 struct isci_remote_device *idev;
Dan Williams5076a1a2011-06-27 14:57:03 -0700366 struct isci_request *ireq;
Dan Williams85280952011-06-28 15:05:53 -0700367 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700368 u32 index;
369
Dan Williams89a73012011-06-30 19:14:33 -0700370 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700371
Dan Williams89a73012011-06-30 19:14:33 -0700372 switch (scu_get_event_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700373 case SCU_EVENT_TYPE_SMU_COMMAND_ERROR:
374 /* / @todo The driver did something wrong and we need to fix the condtion. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700375 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700376 "%s: SCIC Controller 0x%p received SMU command error "
377 "0x%x\n",
378 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700379 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700380 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700381 break;
382
383 case SCU_EVENT_TYPE_SMU_PCQ_ERROR:
384 case SCU_EVENT_TYPE_SMU_ERROR:
385 case SCU_EVENT_TYPE_FATAL_MEMORY_ERROR:
386 /*
387 * / @todo This is a hardware failure and its likely that we want to
388 * / reset the controller. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700389 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700390 "%s: SCIC Controller 0x%p received fatal controller "
391 "event 0x%x\n",
392 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700393 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700394 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700395 break;
396
397 case SCU_EVENT_TYPE_TRANSPORT_ERROR:
Dan Williams5076a1a2011-06-27 14:57:03 -0700398 ireq = ihost->reqs[index];
Dan Williams89a73012011-06-30 19:14:33 -0700399 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700400 break;
401
402 case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700403 switch (scu_get_event_specifier(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700404 case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE:
405 case SCU_EVENT_SPECIFIC_TASK_TIMEOUT:
Dan Williams5076a1a2011-06-27 14:57:03 -0700406 ireq = ihost->reqs[index];
407 if (ireq != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700408 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700409 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700410 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700411 "%s: SCIC Controller 0x%p received "
412 "event 0x%x for io request object "
413 "that doesnt exist.\n",
414 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700415 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700416 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700417
418 break;
419
420 case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700421 idev = ihost->device_table[index];
Dan Williams78a6f062011-06-30 16:31:37 -0700422 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700423 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700424 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700425 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700426 "%s: SCIC Controller 0x%p received "
427 "event 0x%x for remote device object "
428 "that doesnt exist.\n",
429 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700430 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700431 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700432
433 break;
434 }
435 break;
436
437 case SCU_EVENT_TYPE_BROADCAST_CHANGE:
438 /*
439 * direct the broadcast change event to the phy first and then let
440 * the phy redirect the broadcast change to the port object */
441 case SCU_EVENT_TYPE_ERR_CNT_EVENT:
442 /*
443 * direct error counter event to the phy object since that is where
444 * we get the event notification. This is a type 4 event. */
445 case SCU_EVENT_TYPE_OSSP_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700446 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700447 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700448 sci_phy_event_handler(iphy, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700449 break;
450
451 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
452 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
453 case SCU_EVENT_TYPE_RNC_OPS_MISC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700454 if (index < ihost->remote_node_entries) {
455 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700456
Dan Williams78a6f062011-06-30 16:31:37 -0700457 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700458 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700459 } else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700460 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700461 "%s: SCIC Controller 0x%p received event 0x%x "
462 "for remote device object 0x%0x that doesnt "
463 "exist.\n",
464 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700465 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700466 ent,
Dan Williamscc9203b2011-05-08 17:34:44 -0700467 index);
468
469 break;
470
471 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700472 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700473 "%s: SCIC Controller received unknown event code %x\n",
474 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700475 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700476 break;
477 }
478}
479
Dan Williams89a73012011-06-30 19:14:33 -0700480static void sci_controller_process_completions(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700481{
482 u32 completion_count = 0;
Dan Williams89a73012011-06-30 19:14:33 -0700483 u32 ent;
Dan Williamscc9203b2011-05-08 17:34:44 -0700484 u32 get_index;
485 u32 get_cycle;
Dan Williams994a9302011-06-09 16:04:28 -0700486 u32 event_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700487 u32 event_cycle;
488
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700489 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700490 "%s: completion queue begining get:0x%08x\n",
491 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700492 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700493
494 /* Get the component parts of the completion queue */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700495 get_index = NORMALIZE_GET_POINTER(ihost->completion_queue_get);
496 get_cycle = SMU_CQGR_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700497
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700498 event_get = NORMALIZE_EVENT_POINTER(ihost->completion_queue_get);
499 event_cycle = SMU_CQGR_EVENT_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700500
501 while (
502 NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700503 == COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index])
Dan Williamscc9203b2011-05-08 17:34:44 -0700504 ) {
505 completion_count++;
506
Dan Williams89a73012011-06-30 19:14:33 -0700507 ent = ihost->completion_queue[get_index];
Dan Williams994a9302011-06-09 16:04:28 -0700508
509 /* increment the get pointer and check for rollover to toggle the cycle bit */
510 get_cycle ^= ((get_index+1) & SCU_MAX_COMPLETION_QUEUE_ENTRIES) <<
511 (SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT - SCU_MAX_COMPLETION_QUEUE_SHIFT);
512 get_index = (get_index+1) & (SCU_MAX_COMPLETION_QUEUE_ENTRIES-1);
Dan Williamscc9203b2011-05-08 17:34:44 -0700513
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700514 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700515 "%s: completion queue entry:0x%08x\n",
516 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700517 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700518
Dan Williams89a73012011-06-30 19:14:33 -0700519 switch (SCU_GET_COMPLETION_TYPE(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700520 case SCU_COMPLETION_TYPE_TASK:
Dan Williams89a73012011-06-30 19:14:33 -0700521 sci_controller_task_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700522 break;
523
524 case SCU_COMPLETION_TYPE_SDMA:
Dan Williams89a73012011-06-30 19:14:33 -0700525 sci_controller_sdma_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700526 break;
527
528 case SCU_COMPLETION_TYPE_UFI:
Dan Williams89a73012011-06-30 19:14:33 -0700529 sci_controller_unsolicited_frame(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700530 break;
531
532 case SCU_COMPLETION_TYPE_EVENT:
Dan Williams77cd72a2011-07-29 17:17:16 -0700533 sci_controller_event_completion(ihost, ent);
534 break;
535
Dan Williams994a9302011-06-09 16:04:28 -0700536 case SCU_COMPLETION_TYPE_NOTIFY: {
537 event_cycle ^= ((event_get+1) & SCU_MAX_EVENTS) <<
538 (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT - SCU_MAX_EVENTS_SHIFT);
539 event_get = (event_get+1) & (SCU_MAX_EVENTS-1);
540
Dan Williams89a73012011-06-30 19:14:33 -0700541 sci_controller_event_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700542 break;
Dan Williams994a9302011-06-09 16:04:28 -0700543 }
Dan Williamscc9203b2011-05-08 17:34:44 -0700544 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700545 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700546 "%s: SCIC Controller received unknown "
547 "completion type %x\n",
548 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700549 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700550 break;
551 }
552 }
553
554 /* Update the get register if we completed one or more entries */
555 if (completion_count > 0) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700556 ihost->completion_queue_get =
Dan Williamscc9203b2011-05-08 17:34:44 -0700557 SMU_CQGR_GEN_BIT(ENABLE) |
558 SMU_CQGR_GEN_BIT(EVENT_ENABLE) |
559 event_cycle |
Dan Williams994a9302011-06-09 16:04:28 -0700560 SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700561 get_cycle |
562 SMU_CQGR_GEN_VAL(POINTER, get_index);
563
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700564 writel(ihost->completion_queue_get,
565 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700566
567 }
568
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700569 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700570 "%s: completion queue ending get:0x%08x\n",
571 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700572 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700573
574}
575
Dan Williams89a73012011-06-30 19:14:33 -0700576static void sci_controller_error_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700577{
578 u32 interrupt_status;
579
580 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700581 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700582
583 if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) &&
Dan Williams89a73012011-06-30 19:14:33 -0700584 sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700585
Dan Williams89a73012011-06-30 19:14:33 -0700586 sci_controller_process_completions(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700587 writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700588 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700589 dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__,
Dan Williamscc9203b2011-05-08 17:34:44 -0700590 interrupt_status);
591
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700592 sci_change_state(&ihost->sm, SCIC_FAILED);
Dan Williamscc9203b2011-05-08 17:34:44 -0700593
594 return;
595 }
596
597 /* If we dont process any completions I am not sure that we want to do this.
598 * We are in the middle of a hardware fault and should probably be reset.
599 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700600 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700601}
602
Dan Williamsc7ef4032011-02-18 09:25:05 -0800603irqreturn_t isci_intx_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700604{
Dan Williams6f231dd2011-07-02 22:56:22 -0700605 irqreturn_t ret = IRQ_NONE;
Dan Williams31e824e2011-04-19 12:32:51 -0700606 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700607
Dan Williams89a73012011-06-30 19:14:33 -0700608 if (sci_controller_isr(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700609 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williams31e824e2011-04-19 12:32:51 -0700610 tasklet_schedule(&ihost->completion_tasklet);
611 ret = IRQ_HANDLED;
Dan Williams89a73012011-06-30 19:14:33 -0700612 } else if (sci_controller_error_isr(ihost)) {
Dan Williams31e824e2011-04-19 12:32:51 -0700613 spin_lock(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -0700614 sci_controller_error_handler(ihost);
Dan Williams31e824e2011-04-19 12:32:51 -0700615 spin_unlock(&ihost->scic_lock);
616 ret = IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700617 }
Dan Williams92f4f0f2011-02-18 09:25:11 -0800618
Dan Williams6f231dd2011-07-02 22:56:22 -0700619 return ret;
620}
621
Dan Williams92f4f0f2011-02-18 09:25:11 -0800622irqreturn_t isci_error_isr(int vec, void *data)
623{
624 struct isci_host *ihost = data;
Dan Williams92f4f0f2011-02-18 09:25:11 -0800625
Dan Williams89a73012011-06-30 19:14:33 -0700626 if (sci_controller_error_isr(ihost))
627 sci_controller_error_handler(ihost);
Dan Williams92f4f0f2011-02-18 09:25:11 -0800628
629 return IRQ_HANDLED;
630}
Dan Williams6f231dd2011-07-02 22:56:22 -0700631
632/**
633 * isci_host_start_complete() - This function is called by the core library,
634 * through the ISCI Module, to indicate controller start status.
635 * @isci_host: This parameter specifies the ISCI host object
636 * @completion_status: This parameter specifies the completion status from the
637 * core library.
638 *
639 */
Dan Williamscc9203b2011-05-08 17:34:44 -0700640static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700641{
Dan Williams0cf89d12011-02-18 09:25:07 -0800642 if (completion_status != SCI_SUCCESS)
643 dev_info(&ihost->pdev->dev,
644 "controller start timed out, continuing...\n");
Dan Williams0cf89d12011-02-18 09:25:07 -0800645 clear_bit(IHOST_START_PENDING, &ihost->flags);
646 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700647}
648
Dan Williamsc7ef4032011-02-18 09:25:05 -0800649int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
Dan Williams6f231dd2011-07-02 22:56:22 -0700650{
Dan Williamsb1124cd2011-12-19 16:42:34 -0800651 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
652 struct isci_host *ihost = ha->lldd_ha;
Dan Williams6f231dd2011-07-02 22:56:22 -0700653
Edmund Nadolski77950f52011-02-18 09:25:09 -0800654 if (test_bit(IHOST_START_PENDING, &ihost->flags))
Dan Williams6f231dd2011-07-02 22:56:22 -0700655 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700656
Dan Williamsb1124cd2011-12-19 16:42:34 -0800657 sas_drain_work(ha);
Dan Williams6f231dd2011-07-02 22:56:22 -0700658
Dan Williams6f231dd2011-07-02 22:56:22 -0700659 return 1;
Dan Williams6f231dd2011-07-02 22:56:22 -0700660}
661
Dan Williamscc9203b2011-05-08 17:34:44 -0700662/**
Dan Williams89a73012011-06-30 19:14:33 -0700663 * sci_controller_get_suggested_start_timeout() - This method returns the
664 * suggested sci_controller_start() timeout amount. The user is free to
Dan Williamscc9203b2011-05-08 17:34:44 -0700665 * use any timeout value, but this method provides the suggested minimum
666 * start timeout value. The returned value is based upon empirical
667 * information determined as a result of interoperability testing.
668 * @controller: the handle to the controller object for which to return the
669 * suggested start timeout.
670 *
671 * This method returns the number of milliseconds for the suggested start
672 * operation timeout.
673 */
Dan Williams89a73012011-06-30 19:14:33 -0700674static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700675{
676 /* Validate the user supplied parameters. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700677 if (!ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700678 return 0;
679
680 /*
681 * The suggested minimum timeout value for a controller start operation:
682 *
683 * Signature FIS Timeout
684 * + Phy Start Timeout
685 * + Number of Phy Spin Up Intervals
686 * ---------------------------------
687 * Number of milliseconds for the controller start operation.
688 *
689 * NOTE: The number of phy spin up intervals will be equivalent
690 * to the number of phys divided by the number phys allowed
691 * per interval - 1 (once OEM parameters are supported).
692 * Currently we assume only 1 phy per interval. */
693
694 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
695 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
696 + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
697}
698
Dan Williams89a73012011-06-30 19:14:33 -0700699static void sci_controller_enable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700700{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700701 BUG_ON(ihost->smu_registers == NULL);
702 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700703}
704
Dan Williams89a73012011-06-30 19:14:33 -0700705void sci_controller_disable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700706{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700707 BUG_ON(ihost->smu_registers == NULL);
708 writel(0xffffffff, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700709}
710
Dan Williams89a73012011-06-30 19:14:33 -0700711static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700712{
713 u32 port_task_scheduler_value;
714
715 port_task_scheduler_value =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700716 readl(&ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700717 port_task_scheduler_value |=
718 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) |
719 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE));
720 writel(port_task_scheduler_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700721 &ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700722}
723
Dan Williams89a73012011-06-30 19:14:33 -0700724static void sci_controller_assign_task_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700725{
726 u32 task_assignment;
727
728 /*
729 * Assign all the TCs to function 0
730 * TODO: Do we actually need to read this register to write it back?
731 */
732
733 task_assignment =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700734 readl(&ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700735
736 task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) |
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700737 (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700738 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE));
739
740 writel(task_assignment,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700741 &ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700742
743}
744
Dan Williams89a73012011-06-30 19:14:33 -0700745static void sci_controller_initialize_completion_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700746{
747 u32 index;
748 u32 completion_queue_control_value;
749 u32 completion_queue_get_value;
750 u32 completion_queue_put_value;
751
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700752 ihost->completion_queue_get = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -0700753
Dan Williams7c78da32011-06-01 16:00:01 -0700754 completion_queue_control_value =
755 (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES - 1) |
756 SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS - 1));
Dan Williamscc9203b2011-05-08 17:34:44 -0700757
758 writel(completion_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700759 &ihost->smu_registers->completion_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700760
761
762 /* Set the completion queue get pointer and enable the queue */
763 completion_queue_get_value = (
764 (SMU_CQGR_GEN_VAL(POINTER, 0))
765 | (SMU_CQGR_GEN_VAL(EVENT_POINTER, 0))
766 | (SMU_CQGR_GEN_BIT(ENABLE))
767 | (SMU_CQGR_GEN_BIT(EVENT_ENABLE))
768 );
769
770 writel(completion_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700771 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700772
773 /* Set the completion queue put pointer */
774 completion_queue_put_value = (
775 (SMU_CQPR_GEN_VAL(POINTER, 0))
776 | (SMU_CQPR_GEN_VAL(EVENT_POINTER, 0))
777 );
778
779 writel(completion_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700780 &ihost->smu_registers->completion_queue_put);
Dan Williamscc9203b2011-05-08 17:34:44 -0700781
782 /* Initialize the cycle bit of the completion queue entries */
Dan Williams7c78da32011-06-01 16:00:01 -0700783 for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700784 /*
785 * If get.cycle_bit != completion_queue.cycle_bit
786 * its not a valid completion queue entry
787 * so at system start all entries are invalid */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700788 ihost->completion_queue[index] = 0x80000000;
Dan Williamscc9203b2011-05-08 17:34:44 -0700789 }
790}
791
Dan Williams89a73012011-06-30 19:14:33 -0700792static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700793{
794 u32 frame_queue_control_value;
795 u32 frame_queue_get_value;
796 u32 frame_queue_put_value;
797
798 /* Write the queue size */
799 frame_queue_control_value =
Dan Williams7c78da32011-06-01 16:00:01 -0700800 SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES);
Dan Williamscc9203b2011-05-08 17:34:44 -0700801
802 writel(frame_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700803 &ihost->scu_registers->sdma.unsolicited_frame_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700804
805 /* Setup the get pointer for the unsolicited frame queue */
806 frame_queue_get_value = (
807 SCU_UFQGP_GEN_VAL(POINTER, 0)
808 | SCU_UFQGP_GEN_BIT(ENABLE_BIT)
809 );
810
811 writel(frame_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700812 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700813 /* Setup the put pointer for the unsolicited frame queue */
814 frame_queue_put_value = SCU_UFQPP_GEN_VAL(POINTER, 0);
815 writel(frame_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700816 &ihost->scu_registers->sdma.unsolicited_frame_put_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700817}
818
Dan Williams89a73012011-06-30 19:14:33 -0700819static void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status)
Dan Williamscc9203b2011-05-08 17:34:44 -0700820{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700821 if (ihost->sm.current_state_id == SCIC_STARTING) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700822 /*
823 * We move into the ready state, because some of the phys/ports
824 * may be up and operational.
825 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700826 sci_change_state(&ihost->sm, SCIC_READY);
Dan Williamscc9203b2011-05-08 17:34:44 -0700827
828 isci_host_start_complete(ihost, status);
829 }
830}
831
Dan Williams85280952011-06-28 15:05:53 -0700832static bool is_phy_starting(struct isci_phy *iphy)
Adam Gruchala4a33c522011-05-10 23:54:23 +0000833{
Dan Williams89a73012011-06-30 19:14:33 -0700834 enum sci_phy_states state;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000835
Dan Williams85280952011-06-28 15:05:53 -0700836 state = iphy->sm.current_state_id;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000837 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000838 case SCI_PHY_STARTING:
839 case SCI_PHY_SUB_INITIAL:
840 case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN:
841 case SCI_PHY_SUB_AWAIT_IAF_UF:
842 case SCI_PHY_SUB_AWAIT_SAS_POWER:
843 case SCI_PHY_SUB_AWAIT_SATA_POWER:
844 case SCI_PHY_SUB_AWAIT_SATA_PHY_EN:
845 case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN:
846 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF:
847 case SCI_PHY_SUB_FINAL:
Adam Gruchala4a33c522011-05-10 23:54:23 +0000848 return true;
849 default:
850 return false;
851 }
852}
853
Dan Williamscc9203b2011-05-08 17:34:44 -0700854/**
Dan Williams89a73012011-06-30 19:14:33 -0700855 * sci_controller_start_next_phy - start phy
Dan Williamscc9203b2011-05-08 17:34:44 -0700856 * @scic: controller
857 *
858 * If all the phys have been started, then attempt to transition the
859 * controller to the READY state and inform the user
Dan Williams89a73012011-06-30 19:14:33 -0700860 * (sci_cb_controller_start_complete()).
Dan Williamscc9203b2011-05-08 17:34:44 -0700861 */
Dan Williams89a73012011-06-30 19:14:33 -0700862static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700863{
Dan Williams89a73012011-06-30 19:14:33 -0700864 struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williams85280952011-06-28 15:05:53 -0700865 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700866 enum sci_status status;
867
868 status = SCI_SUCCESS;
869
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700870 if (ihost->phy_startup_timer_pending)
Dan Williamscc9203b2011-05-08 17:34:44 -0700871 return status;
872
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700873 if (ihost->next_phy_to_start >= SCI_MAX_PHYS) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700874 bool is_controller_start_complete = true;
875 u32 state;
876 u8 index;
877
878 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams85280952011-06-28 15:05:53 -0700879 iphy = &ihost->phys[index];
880 state = iphy->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -0700881
Dan Williams85280952011-06-28 15:05:53 -0700882 if (!phy_get_non_dummy_port(iphy))
Dan Williamscc9203b2011-05-08 17:34:44 -0700883 continue;
884
885 /* The controller start operation is complete iff:
886 * - all links have been given an opportunity to start
887 * - have no indication of a connected device
888 * - have an indication of a connected device and it has
889 * finished the link training process.
890 */
Dan Williams85280952011-06-28 15:05:53 -0700891 if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) ||
892 (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) ||
Marcin Tomczakbe778342012-01-04 01:33:31 -0800893 (iphy->is_in_link_training == true && is_phy_starting(iphy)) ||
894 (ihost->port_agent.phy_ready_mask != ihost->port_agent.phy_configured_mask)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700895 is_controller_start_complete = false;
896 break;
897 }
898 }
899
900 /*
901 * The controller has successfully finished the start process.
902 * Inform the SCI Core user and transition to the READY state. */
903 if (is_controller_start_complete == true) {
Dan Williams89a73012011-06-30 19:14:33 -0700904 sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700905 sci_del_timer(&ihost->phy_timer);
906 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -0700907 }
908 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700909 iphy = &ihost->phys[ihost->next_phy_to_start];
Dan Williamscc9203b2011-05-08 17:34:44 -0700910
911 if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
Dan Williams85280952011-06-28 15:05:53 -0700912 if (phy_get_non_dummy_port(iphy) == NULL) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700913 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700914
915 /* Caution recursion ahead be forwarned
916 *
917 * The PHY was never added to a PORT in MPC mode
918 * so start the next phy in sequence This phy
919 * will never go link up and will not draw power
920 * the OEM parameters either configured the phy
921 * incorrectly for the PORT or it was never
922 * assigned to a PORT
923 */
Dan Williams89a73012011-06-30 19:14:33 -0700924 return sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -0700925 }
926 }
927
Dan Williams89a73012011-06-30 19:14:33 -0700928 status = sci_phy_start(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -0700929
930 if (status == SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700931 sci_mod_timer(&ihost->phy_timer,
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700932 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700933 ihost->phy_startup_timer_pending = true;
Dan Williamscc9203b2011-05-08 17:34:44 -0700934 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700935 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700936 "%s: Controller stop operation failed "
937 "to stop phy %d because of status "
938 "%d.\n",
939 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700940 ihost->phys[ihost->next_phy_to_start].phy_index,
Dan Williamscc9203b2011-05-08 17:34:44 -0700941 status);
942 }
943
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700944 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700945 }
946
947 return status;
948}
949
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700950static void phy_startup_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -0700951{
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700952 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700953 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700954 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -0700955 enum sci_status status;
956
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700957 spin_lock_irqsave(&ihost->scic_lock, flags);
958
959 if (tmr->cancel)
960 goto done;
961
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700962 ihost->phy_startup_timer_pending = false;
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700963
964 do {
Dan Williams89a73012011-06-30 19:14:33 -0700965 status = sci_controller_start_next_phy(ihost);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700966 } while (status != SCI_SUCCESS);
967
968done:
969 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -0700970}
971
Dan Williamsac668c62011-06-07 18:50:55 -0700972static u16 isci_tci_active(struct isci_host *ihost)
973{
974 return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
975}
976
Dan Williams89a73012011-06-30 19:14:33 -0700977static enum sci_status sci_controller_start(struct isci_host *ihost,
Dan Williamscc9203b2011-05-08 17:34:44 -0700978 u32 timeout)
979{
Dan Williamscc9203b2011-05-08 17:34:44 -0700980 enum sci_status result;
981 u16 index;
982
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700983 if (ihost->sm.current_state_id != SCIC_INITIALIZED) {
Dan Williams14e99b42012-02-10 01:05:43 -0800984 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
985 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -0700986 return SCI_FAILURE_INVALID_STATE;
987 }
988
989 /* Build the TCi free pool */
Dan Williamsac668c62011-06-07 18:50:55 -0700990 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8);
991 ihost->tci_head = 0;
992 ihost->tci_tail = 0;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700993 for (index = 0; index < ihost->task_context_entries; index++)
Dan Williamsac668c62011-06-07 18:50:55 -0700994 isci_tci_free(ihost, index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700995
996 /* Build the RNi free pool */
Dan Williams89a73012011-06-30 19:14:33 -0700997 sci_remote_node_table_initialize(&ihost->available_remote_nodes,
998 ihost->remote_node_entries);
Dan Williamscc9203b2011-05-08 17:34:44 -0700999
1000 /*
1001 * Before anything else lets make sure we will not be
1002 * interrupted by the hardware.
1003 */
Dan Williams89a73012011-06-30 19:14:33 -07001004 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001005
1006 /* Enable the port task scheduler */
Dan Williams89a73012011-06-30 19:14:33 -07001007 sci_controller_enable_port_task_scheduler(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001008
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001009 /* Assign all the task entries to ihost physical function */
Dan Williams89a73012011-06-30 19:14:33 -07001010 sci_controller_assign_task_entries(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001011
1012 /* Now initialize the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001013 sci_controller_initialize_completion_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001014
1015 /* Initialize the unsolicited frame queue for use */
Dan Williams89a73012011-06-30 19:14:33 -07001016 sci_controller_initialize_unsolicited_frame_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001017
1018 /* Start all of the ports on this controller */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001019 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001020 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001021
Dan Williams89a73012011-06-30 19:14:33 -07001022 result = sci_port_start(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001023 if (result)
1024 return result;
1025 }
1026
Dan Williams89a73012011-06-30 19:14:33 -07001027 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001028
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001029 sci_mod_timer(&ihost->timer, timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07001030
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001031 sci_change_state(&ihost->sm, SCIC_STARTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001032
1033 return SCI_SUCCESS;
1034}
1035
Dan Williams6f231dd2011-07-02 22:56:22 -07001036void isci_host_scan_start(struct Scsi_Host *shost)
1037{
Dan Williams4393aa42011-03-31 13:10:44 -07001038 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams89a73012011-06-30 19:14:33 -07001039 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07001040
Dan Williams0cf89d12011-02-18 09:25:07 -08001041 set_bit(IHOST_START_PENDING, &ihost->flags);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001042
1043 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001044 sci_controller_start(ihost, tmo);
1045 sci_controller_enable_interrupts(ihost);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001046 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001047}
1048
Dan Williamscc9203b2011-05-08 17:34:44 -07001049static void isci_host_stop_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07001050{
Dan Williams89a73012011-06-30 19:14:33 -07001051 sci_controller_disable_interrupts(ihost);
Dan Williams0cf89d12011-02-18 09:25:07 -08001052 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
1053 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07001054}
1055
Dan Williams89a73012011-06-30 19:14:33 -07001056static void sci_controller_completion_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001057{
1058 /* Empty out the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001059 if (sci_controller_completion_queue_has_entries(ihost))
1060 sci_controller_process_completions(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001061
1062 /* Clear the interrupt and enable all interrupts again */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001063 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001064 /* Could we write the value of SMU_ISR_COMPLETION? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001065 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
1066 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07001067}
1068
Dan Williams6f231dd2011-07-02 22:56:22 -07001069/**
1070 * isci_host_completion_routine() - This function is the delayed service
1071 * routine that calls the sci core library's completion handler. It's
1072 * scheduled as a tasklet from the interrupt service routine when interrupts
1073 * in use, or set as the timeout function in polled mode.
1074 * @data: This parameter specifies the ISCI host object
1075 *
1076 */
Dan Williamsabec9122012-02-15 13:58:42 -08001077void isci_host_completion_routine(unsigned long data)
Dan Williams6f231dd2011-07-02 22:56:22 -07001078{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001079 struct isci_host *ihost = (struct isci_host *)data;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001080 struct list_head completed_request_list;
1081 struct list_head errored_request_list;
1082 struct list_head *current_position;
1083 struct list_head *next_position;
Dan Williams6f231dd2011-07-02 22:56:22 -07001084 struct isci_request *request;
1085 struct isci_request *next_request;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001086 struct sas_task *task;
Dan Williams9b4be522011-07-29 17:17:10 -07001087 u16 active;
Dan Williams6f231dd2011-07-02 22:56:22 -07001088
1089 INIT_LIST_HEAD(&completed_request_list);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001090 INIT_LIST_HEAD(&errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001091
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001092 spin_lock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001093
Dan Williams89a73012011-06-30 19:14:33 -07001094 sci_controller_completion_handler(ihost);
Dan Williamsc7ef4032011-02-18 09:25:05 -08001095
Dan Williams6f231dd2011-07-02 22:56:22 -07001096 /* Take the lists of completed I/Os from the host. */
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001097
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001098 list_splice_init(&ihost->requests_to_complete,
Dan Williams6f231dd2011-07-02 22:56:22 -07001099 &completed_request_list);
1100
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001101 /* Take the list of errored I/Os from the host. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001102 list_splice_init(&ihost->requests_to_errorback,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001103 &errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001104
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001105 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001106
1107 /* Process any completions in the lists. */
1108 list_for_each_safe(current_position, next_position,
1109 &completed_request_list) {
1110
1111 request = list_entry(current_position, struct isci_request,
1112 completed_node);
1113 task = isci_request_access_task(request);
1114
1115 /* Normal notification (task_done) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001116 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001117 "%s: Normal - request/task = %p/%p\n",
1118 __func__,
1119 request,
1120 task);
1121
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001122 /* Return the task to libsas */
1123 if (task != NULL) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001124
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001125 task->lldd_task = NULL;
1126 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1127
1128 /* If the task is already in the abort path,
1129 * the task_done callback cannot be called.
1130 */
1131 task->task_done(task);
1132 }
1133 }
Dan Williams312e0c22011-06-28 13:47:09 -07001134
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001135 spin_lock_irq(&ihost->scic_lock);
1136 isci_free_tag(ihost, request->io_tag);
1137 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001138 }
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001139 list_for_each_entry_safe(request, next_request, &errored_request_list,
Dan Williams6f231dd2011-07-02 22:56:22 -07001140 completed_node) {
1141
1142 task = isci_request_access_task(request);
1143
1144 /* Use sas_task_abort */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001145 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001146 "%s: Error - request/task = %p/%p\n",
1147 __func__,
1148 request,
1149 task);
1150
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001151 if (task != NULL) {
1152
1153 /* Put the task into the abort path if it's not there
1154 * already.
1155 */
1156 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED))
1157 sas_task_abort(task);
1158
1159 } else {
1160 /* This is a case where the request has completed with a
1161 * status such that it needed further target servicing,
1162 * but the sas_task reference has already been removed
1163 * from the request. Since it was errored, it was not
1164 * being aborted, so there is nothing to do except free
1165 * it.
1166 */
1167
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001168 spin_lock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001169 /* Remove the request from the remote device's list
1170 * of pending requests.
1171 */
1172 list_del_init(&request->dev_node);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001173 isci_free_tag(ihost, request->io_tag);
1174 spin_unlock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001175 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001176 }
1177
Dan Williams9b4be522011-07-29 17:17:10 -07001178 /* the coalesence timeout doubles at each encoding step, so
1179 * update it based on the ilog2 value of the outstanding requests
1180 */
1181 active = isci_tci_active(ihost);
1182 writel(SMU_ICC_GEN_VAL(NUMBER, active) |
1183 SMU_ICC_GEN_VAL(TIMER, ISCI_COALESCE_BASE + ilog2(active)),
1184 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williams6f231dd2011-07-02 22:56:22 -07001185}
1186
Dan Williamscc9203b2011-05-08 17:34:44 -07001187/**
Dan Williams89a73012011-06-30 19:14:33 -07001188 * sci_controller_stop() - This method will stop an individual controller
Dan Williamscc9203b2011-05-08 17:34:44 -07001189 * object.This method will invoke the associated user callback upon
1190 * completion. The completion callback is called when the following
1191 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1192 * controller has been quiesced. This method will ensure that all IO
1193 * requests are quiesced, phys are stopped, and all additional operation by
1194 * the hardware is halted.
1195 * @controller: the handle to the controller object to stop.
1196 * @timeout: This parameter specifies the number of milliseconds in which the
1197 * stop operation should complete.
1198 *
1199 * The controller must be in the STARTED or STOPPED state. Indicate if the
1200 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1201 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1202 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1203 * controller is not either in the STARTED or STOPPED states.
1204 */
Dan Williams89a73012011-06-30 19:14:33 -07001205static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001206{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001207 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08001208 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1209 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07001210 return SCI_FAILURE_INVALID_STATE;
1211 }
1212
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001213 sci_mod_timer(&ihost->timer, timeout);
1214 sci_change_state(&ihost->sm, SCIC_STOPPING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001215 return SCI_SUCCESS;
1216}
1217
1218/**
Dan Williams89a73012011-06-30 19:14:33 -07001219 * sci_controller_reset() - This method will reset the supplied core
Dan Williamscc9203b2011-05-08 17:34:44 -07001220 * controller regardless of the state of said controller. This operation is
1221 * considered destructive. In other words, all current operations are wiped
1222 * out. No IO completions for outstanding devices occur. Outstanding IO
1223 * requests are not aborted or completed at the actual remote device.
1224 * @controller: the handle to the controller object to reset.
1225 *
1226 * Indicate if the controller reset method succeeded or failed in some way.
1227 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1228 * the controller reset operation is unable to complete.
1229 */
Dan Williams89a73012011-06-30 19:14:33 -07001230static enum sci_status sci_controller_reset(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001231{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001232 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001233 case SCIC_RESET:
1234 case SCIC_READY:
1235 case SCIC_STOPPED:
1236 case SCIC_FAILED:
Dan Williamscc9203b2011-05-08 17:34:44 -07001237 /*
1238 * The reset operation is not a graceful cleanup, just
1239 * perform the state transition.
1240 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001241 sci_change_state(&ihost->sm, SCIC_RESETTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001242 return SCI_SUCCESS;
1243 default:
Dan Williams14e99b42012-02-10 01:05:43 -08001244 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1245 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07001246 return SCI_FAILURE_INVALID_STATE;
1247 }
1248}
1249
Dan Williams0cf89d12011-02-18 09:25:07 -08001250void isci_host_deinit(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07001251{
1252 int i;
1253
Dan Williamsad4f4c12011-09-01 21:18:31 -07001254 /* disable output data selects */
1255 for (i = 0; i < isci_gpio_count(ihost); i++)
1256 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
1257
Dan Williams6f231dd2011-07-02 22:56:22 -07001258 for (i = 0; i < SCI_MAX_PORTS; i++) {
Dan Williamse5313812011-05-07 10:11:43 -07001259 struct isci_port *iport = &ihost->ports[i];
Dan Williams0cf89d12011-02-18 09:25:07 -08001260 struct isci_remote_device *idev, *d;
1261
Dan Williamse5313812011-05-07 10:11:43 -07001262 list_for_each_entry_safe(idev, d, &iport->remote_dev_list, node) {
Dan Williams209fae12011-06-13 17:39:44 -07001263 if (test_bit(IDEV_ALLOCATED, &idev->flags))
1264 isci_remote_device_stop(ihost, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001265 }
1266 }
1267
Dan Williams0cf89d12011-02-18 09:25:07 -08001268 set_bit(IHOST_STOP_PENDING, &ihost->flags);
Dan Williams7c40a802011-03-02 11:49:26 -08001269
1270 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001271 sci_controller_stop(ihost, SCIC_CONTROLLER_STOP_TIMEOUT);
Dan Williams7c40a802011-03-02 11:49:26 -08001272 spin_unlock_irq(&ihost->scic_lock);
1273
Dan Williams0cf89d12011-02-18 09:25:07 -08001274 wait_for_stop(ihost);
Dan Williamsad4f4c12011-09-01 21:18:31 -07001275
1276 /* disable sgpio: where the above wait should give time for the
1277 * enclosure to sample the gpios going inactive
1278 */
1279 writel(0, &ihost->scu_registers->peg0.sgpio.interface_control);
1280
Dan Williams89a73012011-06-30 19:14:33 -07001281 sci_controller_reset(ihost);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001282
1283 /* Cancel any/all outstanding port timers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001284 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001285 struct isci_port *iport = &ihost->ports[i];
1286 del_timer_sync(&iport->timer.timer);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001287 }
1288
Edmund Nadolskia628d472011-05-19 11:59:36 +00001289 /* Cancel any/all outstanding phy timers */
1290 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams85280952011-06-28 15:05:53 -07001291 struct isci_phy *iphy = &ihost->phys[i];
1292 del_timer_sync(&iphy->sata_timer.timer);
Edmund Nadolskia628d472011-05-19 11:59:36 +00001293 }
1294
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001295 del_timer_sync(&ihost->port_agent.timer.timer);
Edmund Nadolskiac0eeb42011-05-19 20:00:51 -07001296
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001297 del_timer_sync(&ihost->power_control.timer.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001298
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001299 del_timer_sync(&ihost->timer.timer);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001300
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001301 del_timer_sync(&ihost->phy_timer.timer);
Dan Williams6f231dd2011-07-02 22:56:22 -07001302}
1303
Dan Williams6f231dd2011-07-02 22:56:22 -07001304static void __iomem *scu_base(struct isci_host *isci_host)
1305{
1306 struct pci_dev *pdev = isci_host->pdev;
1307 int id = isci_host->id;
1308
1309 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
1310}
1311
1312static void __iomem *smu_base(struct isci_host *isci_host)
1313{
1314 struct pci_dev *pdev = isci_host->pdev;
1315 int id = isci_host->id;
1316
1317 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
1318}
1319
Dan Williams89a73012011-06-30 19:14:33 -07001320static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001321{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001322 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001323
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001324 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001325}
1326
Dan Williams89a73012011-06-30 19:14:33 -07001327static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001328{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001329 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001330
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001331 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001332}
1333
1334#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1335#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1336#define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1337#define INTERRUPT_COALESCE_NUMBER_MAX 256
1338#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1339#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1340
1341/**
Dan Williams89a73012011-06-30 19:14:33 -07001342 * sci_controller_set_interrupt_coalescence() - This method allows the user to
Dan Williamscc9203b2011-05-08 17:34:44 -07001343 * configure the interrupt coalescence.
1344 * @controller: This parameter represents the handle to the controller object
1345 * for which its interrupt coalesce register is overridden.
1346 * @coalesce_number: Used to control the number of entries in the Completion
1347 * Queue before an interrupt is generated. If the number of entries exceed
1348 * this number, an interrupt will be generated. The valid range of the input
1349 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1350 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1351 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1352 * interrupt coalescing timeout.
1353 *
1354 * Indicate if the user successfully set the interrupt coalesce parameters.
1355 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1356 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1357 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001358static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001359sci_controller_set_interrupt_coalescence(struct isci_host *ihost,
1360 u32 coalesce_number,
1361 u32 coalesce_timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001362{
1363 u8 timeout_encode = 0;
1364 u32 min = 0;
1365 u32 max = 0;
1366
1367 /* Check if the input parameters fall in the range. */
1368 if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX)
1369 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1370
1371 /*
1372 * Defined encoding for interrupt coalescing timeout:
1373 * Value Min Max Units
1374 * ----- --- --- -----
1375 * 0 - - Disabled
1376 * 1 13.3 20.0 ns
1377 * 2 26.7 40.0
1378 * 3 53.3 80.0
1379 * 4 106.7 160.0
1380 * 5 213.3 320.0
1381 * 6 426.7 640.0
1382 * 7 853.3 1280.0
1383 * 8 1.7 2.6 us
1384 * 9 3.4 5.1
1385 * 10 6.8 10.2
1386 * 11 13.7 20.5
1387 * 12 27.3 41.0
1388 * 13 54.6 81.9
1389 * 14 109.2 163.8
1390 * 15 218.5 327.7
1391 * 16 436.9 655.4
1392 * 17 873.8 1310.7
1393 * 18 1.7 2.6 ms
1394 * 19 3.5 5.2
1395 * 20 7.0 10.5
1396 * 21 14.0 21.0
1397 * 22 28.0 41.9
1398 * 23 55.9 83.9
1399 * 24 111.8 167.8
1400 * 25 223.7 335.5
1401 * 26 447.4 671.1
1402 * 27 894.8 1342.2
1403 * 28 1.8 2.7 s
1404 * Others Undefined */
1405
1406 /*
1407 * Use the table above to decide the encode of interrupt coalescing timeout
1408 * value for register writing. */
1409 if (coalesce_timeout == 0)
1410 timeout_encode = 0;
1411 else{
1412 /* make the timeout value in unit of (10 ns). */
1413 coalesce_timeout = coalesce_timeout * 100;
1414 min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10;
1415 max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10;
1416
1417 /* get the encode of timeout for register writing. */
1418 for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN;
1419 timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX;
1420 timeout_encode++) {
1421 if (min <= coalesce_timeout && max > coalesce_timeout)
1422 break;
1423 else if (coalesce_timeout >= max && coalesce_timeout < min * 2
1424 && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) {
1425 if ((coalesce_timeout - max) < (2 * min - coalesce_timeout))
1426 break;
1427 else{
1428 timeout_encode++;
1429 break;
1430 }
1431 } else {
1432 max = max * 2;
1433 min = min * 2;
1434 }
1435 }
1436
1437 if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1)
1438 /* the value is out of range. */
1439 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1440 }
1441
1442 writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) |
1443 SMU_ICC_GEN_VAL(TIMER, timeout_encode),
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001444 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001445
1446
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001447 ihost->interrupt_coalesce_number = (u16)coalesce_number;
1448 ihost->interrupt_coalesce_timeout = coalesce_timeout / 100;
Dan Williamscc9203b2011-05-08 17:34:44 -07001449
1450 return SCI_SUCCESS;
1451}
1452
1453
Dan Williams89a73012011-06-30 19:14:33 -07001454static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001455{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001456 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Marcin Tomczake5cc6aa2012-01-27 11:14:50 -08001457 u32 val;
1458
1459 /* enable clock gating for power control of the scu unit */
1460 val = readl(&ihost->smu_registers->clock_gating_control);
1461 val &= ~(SMU_CGUCR_GEN_BIT(REGCLK_ENABLE) |
1462 SMU_CGUCR_GEN_BIT(TXCLK_ENABLE) |
1463 SMU_CGUCR_GEN_BIT(XCLK_ENABLE));
1464 val |= SMU_CGUCR_GEN_BIT(IDLE_ENABLE);
1465 writel(val, &ihost->smu_registers->clock_gating_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001466
1467 /* set the default interrupt coalescence number and timeout value. */
Dan Williams9b4be522011-07-29 17:17:10 -07001468 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001469}
1470
Dan Williams89a73012011-06-30 19:14:33 -07001471static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001472{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001473 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001474
1475 /* disable interrupt coalescence. */
Dan Williams89a73012011-06-30 19:14:33 -07001476 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001477}
1478
Dan Williams89a73012011-06-30 19:14:33 -07001479static enum sci_status sci_controller_stop_phys(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001480{
1481 u32 index;
1482 enum sci_status status;
1483 enum sci_status phy_status;
Dan Williamscc9203b2011-05-08 17:34:44 -07001484
1485 status = SCI_SUCCESS;
1486
1487 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001488 phy_status = sci_phy_stop(&ihost->phys[index]);
Dan Williamscc9203b2011-05-08 17:34:44 -07001489
1490 if (phy_status != SCI_SUCCESS &&
1491 phy_status != SCI_FAILURE_INVALID_STATE) {
1492 status = SCI_FAILURE;
1493
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001494 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001495 "%s: Controller stop operation failed to stop "
1496 "phy %d because of status %d.\n",
1497 __func__,
Dan Williams85280952011-06-28 15:05:53 -07001498 ihost->phys[index].phy_index, phy_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001499 }
1500 }
1501
1502 return status;
1503}
1504
Dan Williams89a73012011-06-30 19:14:33 -07001505static enum sci_status sci_controller_stop_ports(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001506{
1507 u32 index;
1508 enum sci_status port_status;
1509 enum sci_status status = SCI_SUCCESS;
Dan Williamscc9203b2011-05-08 17:34:44 -07001510
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001511 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001512 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001513
Dan Williams89a73012011-06-30 19:14:33 -07001514 port_status = sci_port_stop(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001515
1516 if ((port_status != SCI_SUCCESS) &&
1517 (port_status != SCI_FAILURE_INVALID_STATE)) {
1518 status = SCI_FAILURE;
1519
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001520 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001521 "%s: Controller stop operation failed to "
1522 "stop port %d because of status %d.\n",
1523 __func__,
Dan Williamsffe191c2011-06-29 13:09:25 -07001524 iport->logical_port_index,
Dan Williamscc9203b2011-05-08 17:34:44 -07001525 port_status);
1526 }
1527 }
1528
1529 return status;
1530}
1531
Dan Williams89a73012011-06-30 19:14:33 -07001532static enum sci_status sci_controller_stop_devices(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001533{
1534 u32 index;
1535 enum sci_status status;
1536 enum sci_status device_status;
1537
1538 status = SCI_SUCCESS;
1539
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001540 for (index = 0; index < ihost->remote_node_entries; index++) {
1541 if (ihost->device_table[index] != NULL) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001542 /* / @todo What timeout value do we want to provide to this request? */
Dan Williams89a73012011-06-30 19:14:33 -07001543 device_status = sci_remote_device_stop(ihost->device_table[index], 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001544
1545 if ((device_status != SCI_SUCCESS) &&
1546 (device_status != SCI_FAILURE_INVALID_STATE)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001547 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001548 "%s: Controller stop operation failed "
1549 "to stop device 0x%p because of "
1550 "status %d.\n",
1551 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001552 ihost->device_table[index], device_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001553 }
1554 }
1555 }
1556
1557 return status;
1558}
1559
Dan Williams89a73012011-06-30 19:14:33 -07001560static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001561{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001562 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001563
1564 /* Stop all of the components for this controller */
Dan Williams89a73012011-06-30 19:14:33 -07001565 sci_controller_stop_phys(ihost);
1566 sci_controller_stop_ports(ihost);
1567 sci_controller_stop_devices(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001568}
1569
Dan Williams89a73012011-06-30 19:14:33 -07001570static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001571{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001572 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001573
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001574 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001575}
1576
Dan Williams89a73012011-06-30 19:14:33 -07001577static void sci_controller_reset_hardware(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001578{
1579 /* Disable interrupts so we dont take any spurious interrupts */
Dan Williams89a73012011-06-30 19:14:33 -07001580 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001581
1582 /* Reset the SCU */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001583 writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001584
1585 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1586 udelay(1000);
1587
1588 /* The write to the CQGR clears the CQP */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001589 writel(0x00000000, &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -07001590
1591 /* The write to the UFQGP clears the UFQPR */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001592 writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001593}
1594
Dan Williams89a73012011-06-30 19:14:33 -07001595static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001596{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001597 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001598
Dan Williams89a73012011-06-30 19:14:33 -07001599 sci_controller_reset_hardware(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001600 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001601}
1602
Dan Williams89a73012011-06-30 19:14:33 -07001603static const struct sci_base_state sci_controller_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001604 [SCIC_INITIAL] = {
Dan Williams89a73012011-06-30 19:14:33 -07001605 .enter_state = sci_controller_initial_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001606 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001607 [SCIC_RESET] = {},
1608 [SCIC_INITIALIZING] = {},
1609 [SCIC_INITIALIZED] = {},
1610 [SCIC_STARTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001611 .exit_state = sci_controller_starting_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001612 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001613 [SCIC_READY] = {
Dan Williams89a73012011-06-30 19:14:33 -07001614 .enter_state = sci_controller_ready_state_enter,
1615 .exit_state = sci_controller_ready_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001616 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001617 [SCIC_RESETTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001618 .enter_state = sci_controller_resetting_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001619 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001620 [SCIC_STOPPING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001621 .enter_state = sci_controller_stopping_state_enter,
1622 .exit_state = sci_controller_stopping_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001623 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001624 [SCIC_STOPPED] = {},
1625 [SCIC_FAILED] = {}
Dan Williamscc9203b2011-05-08 17:34:44 -07001626};
1627
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001628static void controller_timeout(unsigned long data)
1629{
1630 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001631 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer);
1632 struct sci_base_state_machine *sm = &ihost->sm;
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001633 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -07001634
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001635 spin_lock_irqsave(&ihost->scic_lock, flags);
1636
1637 if (tmr->cancel)
1638 goto done;
1639
Edmund Nadolskie3013702011-06-02 00:10:43 +00001640 if (sm->current_state_id == SCIC_STARTING)
Dan Williams89a73012011-06-30 19:14:33 -07001641 sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001642 else if (sm->current_state_id == SCIC_STOPPING) {
1643 sci_change_state(sm, SCIC_FAILED);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001644 isci_host_stop_complete(ihost, SCI_FAILURE_TIMEOUT);
1645 } else /* / @todo Now what do we want to do in this case? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001646 dev_err(&ihost->pdev->dev,
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001647 "%s: Controller timer fired when controller was not "
1648 "in a state being timed.\n",
1649 __func__);
1650
1651done:
1652 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1653}
Dan Williamscc9203b2011-05-08 17:34:44 -07001654
Dan Williams89a73012011-06-30 19:14:33 -07001655static enum sci_status sci_controller_construct(struct isci_host *ihost,
1656 void __iomem *scu_base,
1657 void __iomem *smu_base)
Dan Williamscc9203b2011-05-08 17:34:44 -07001658{
Dan Williamscc9203b2011-05-08 17:34:44 -07001659 u8 i;
1660
Dan Williams89a73012011-06-30 19:14:33 -07001661 sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001662
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001663 ihost->scu_registers = scu_base;
1664 ihost->smu_registers = smu_base;
Dan Williamscc9203b2011-05-08 17:34:44 -07001665
Dan Williams89a73012011-06-30 19:14:33 -07001666 sci_port_configuration_agent_construct(&ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07001667
1668 /* Construct the ports for this controller */
1669 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williams89a73012011-06-30 19:14:33 -07001670 sci_port_construct(&ihost->ports[i], i, ihost);
1671 sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001672
1673 /* Construct the phys for this controller */
1674 for (i = 0; i < SCI_MAX_PHYS; i++) {
1675 /* Add all the PHYs to the dummy port */
Dan Williams89a73012011-06-30 19:14:33 -07001676 sci_phy_construct(&ihost->phys[i],
1677 &ihost->ports[SCI_MAX_PORTS], i);
Dan Williamscc9203b2011-05-08 17:34:44 -07001678 }
1679
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001680 ihost->invalid_phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001681
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001682 sci_init_timer(&ihost->timer, controller_timeout);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001683
Dan Williams89a73012011-06-30 19:14:33 -07001684 return sci_controller_reset(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001685}
1686
Dave Jiang594e5662012-01-04 01:32:44 -08001687int sci_oem_parameters_validate(struct sci_oem_params *oem, u8 version)
Dan Williamscc9203b2011-05-08 17:34:44 -07001688{
1689 int i;
1690
1691 for (i = 0; i < SCI_MAX_PORTS; i++)
1692 if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX)
1693 return -EINVAL;
1694
1695 for (i = 0; i < SCI_MAX_PHYS; i++)
1696 if (oem->phys[i].sas_address.high == 0 &&
1697 oem->phys[i].sas_address.low == 0)
1698 return -EINVAL;
1699
1700 if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) {
1701 for (i = 0; i < SCI_MAX_PHYS; i++)
1702 if (oem->ports[i].phy_mask != 0)
1703 return -EINVAL;
1704 } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
1705 u8 phy_mask = 0;
1706
1707 for (i = 0; i < SCI_MAX_PHYS; i++)
1708 phy_mask |= oem->ports[i].phy_mask;
1709
1710 if (phy_mask == 0)
1711 return -EINVAL;
1712 } else
1713 return -EINVAL;
1714
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001715 if (oem->controller.max_concurr_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT ||
1716 oem->controller.max_concurr_spin_up < 1)
Dan Williamscc9203b2011-05-08 17:34:44 -07001717 return -EINVAL;
1718
Dave Jiang594e5662012-01-04 01:32:44 -08001719 if (oem->controller.do_enable_ssc) {
1720 if (version < ISCI_ROM_VER_1_1 && oem->controller.do_enable_ssc != 1)
1721 return -EINVAL;
1722
1723 if (version >= ISCI_ROM_VER_1_1) {
1724 u8 test = oem->controller.ssc_sata_tx_spread_level;
1725
1726 switch (test) {
1727 case 0:
1728 case 2:
1729 case 3:
1730 case 6:
1731 case 7:
1732 break;
1733 default:
1734 return -EINVAL;
1735 }
1736
1737 test = oem->controller.ssc_sas_tx_spread_level;
1738 if (oem->controller.ssc_sas_tx_type == 0) {
1739 switch (test) {
1740 case 0:
1741 case 2:
1742 case 3:
1743 break;
1744 default:
1745 return -EINVAL;
1746 }
1747 } else if (oem->controller.ssc_sas_tx_type == 1) {
1748 switch (test) {
1749 case 0:
1750 case 3:
1751 case 6:
1752 break;
1753 default:
1754 return -EINVAL;
1755 }
1756 }
1757 }
1758 }
1759
Dan Williamscc9203b2011-05-08 17:34:44 -07001760 return 0;
1761}
1762
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001763static u8 max_spin_up(struct isci_host *ihost)
1764{
1765 if (ihost->user_parameters.max_concurr_spinup)
1766 return min_t(u8, ihost->user_parameters.max_concurr_spinup,
1767 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1768 else
1769 return min_t(u8, ihost->oem_parameters.controller.max_concurr_spin_up,
1770 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1771}
1772
Edmund Nadolski04736612011-05-19 20:17:47 -07001773static void power_control_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -07001774{
Edmund Nadolski04736612011-05-19 20:17:47 -07001775 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001776 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer);
Dan Williams85280952011-06-28 15:05:53 -07001777 struct isci_phy *iphy;
Edmund Nadolski04736612011-05-19 20:17:47 -07001778 unsigned long flags;
1779 u8 i;
Dan Williamscc9203b2011-05-08 17:34:44 -07001780
Edmund Nadolski04736612011-05-19 20:17:47 -07001781 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001782
Edmund Nadolski04736612011-05-19 20:17:47 -07001783 if (tmr->cancel)
1784 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001785
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001786 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001787
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001788 if (ihost->power_control.phys_waiting == 0) {
1789 ihost->power_control.timer_started = false;
Edmund Nadolski04736612011-05-19 20:17:47 -07001790 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001791 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001792
1793 for (i = 0; i < SCI_MAX_PHYS; i++) {
1794
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001795 if (ihost->power_control.phys_waiting == 0)
Edmund Nadolski04736612011-05-19 20:17:47 -07001796 break;
1797
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001798 iphy = ihost->power_control.requesters[i];
Dan Williams85280952011-06-28 15:05:53 -07001799 if (iphy == NULL)
Edmund Nadolski04736612011-05-19 20:17:47 -07001800 continue;
1801
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001802 if (ihost->power_control.phys_granted_power >= max_spin_up(ihost))
Edmund Nadolski04736612011-05-19 20:17:47 -07001803 break;
1804
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001805 ihost->power_control.requesters[i] = NULL;
1806 ihost->power_control.phys_waiting--;
1807 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001808 sci_phy_consume_power_handler(iphy);
Marcin Tomczakbe778342012-01-04 01:33:31 -08001809
Dan Williamsc79dd802012-02-01 00:44:14 -08001810 if (iphy->protocol == SAS_PROTOCOL_SSP) {
Marcin Tomczakbe778342012-01-04 01:33:31 -08001811 u8 j;
1812
1813 for (j = 0; j < SCI_MAX_PHYS; j++) {
1814 struct isci_phy *requester = ihost->power_control.requesters[j];
1815
1816 /*
1817 * Search the power_control queue to see if there are other phys
1818 * attached to the same remote device. If found, take all of
1819 * them out of await_sas_power state.
1820 */
1821 if (requester != NULL && requester != iphy) {
1822 u8 other = memcmp(requester->frame_rcvd.iaf.sas_addr,
1823 iphy->frame_rcvd.iaf.sas_addr,
1824 sizeof(requester->frame_rcvd.iaf.sas_addr));
1825
1826 if (other == 0) {
1827 ihost->power_control.requesters[j] = NULL;
1828 ihost->power_control.phys_waiting--;
1829 sci_phy_consume_power_handler(requester);
1830 }
1831 }
1832 }
1833 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001834 }
1835
1836 /*
1837 * It doesn't matter if the power list is empty, we need to start the
1838 * timer in case another phy becomes ready.
1839 */
1840 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001841 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001842
1843done:
1844 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001845}
1846
Dan Williams89a73012011-06-30 19:14:33 -07001847void sci_controller_power_control_queue_insert(struct isci_host *ihost,
1848 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001849{
Dan Williams85280952011-06-28 15:05:53 -07001850 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001851
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001852 if (ihost->power_control.phys_granted_power < max_spin_up(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001853 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001854 sci_phy_consume_power_handler(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07001855
1856 /*
1857 * stop and start the power_control timer. When the timer fires, the
1858 * no_of_phys_granted_power will be set to 0
1859 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001860 if (ihost->power_control.timer_started)
1861 sci_del_timer(&ihost->power_control.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001862
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001863 sci_mod_timer(&ihost->power_control.timer,
Edmund Nadolski04736612011-05-19 20:17:47 -07001864 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001865 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001866
Dan Williamscc9203b2011-05-08 17:34:44 -07001867 } else {
Marcin Tomczakbe778342012-01-04 01:33:31 -08001868 /*
1869 * There are phys, attached to the same sas address as this phy, are
1870 * already in READY state, this phy don't need wait.
1871 */
1872 u8 i;
1873 struct isci_phy *current_phy;
1874
1875 for (i = 0; i < SCI_MAX_PHYS; i++) {
1876 u8 other;
1877 current_phy = &ihost->phys[i];
1878
1879 other = memcmp(current_phy->frame_rcvd.iaf.sas_addr,
1880 iphy->frame_rcvd.iaf.sas_addr,
1881 sizeof(current_phy->frame_rcvd.iaf.sas_addr));
1882
1883 if (current_phy->sm.current_state_id == SCI_PHY_READY &&
Dan Williamsc79dd802012-02-01 00:44:14 -08001884 current_phy->protocol == SAS_PROTOCOL_SSP &&
Marcin Tomczakbe778342012-01-04 01:33:31 -08001885 other == 0) {
1886 sci_phy_consume_power_handler(iphy);
1887 break;
1888 }
1889 }
1890
1891 if (i == SCI_MAX_PHYS) {
1892 /* Add the phy in the waiting list */
1893 ihost->power_control.requesters[iphy->phy_index] = iphy;
1894 ihost->power_control.phys_waiting++;
1895 }
Dan Williamscc9203b2011-05-08 17:34:44 -07001896 }
1897}
1898
Dan Williams89a73012011-06-30 19:14:33 -07001899void sci_controller_power_control_queue_remove(struct isci_host *ihost,
1900 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001901{
Dan Williams85280952011-06-28 15:05:53 -07001902 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001903
Dan Williams89a73012011-06-30 19:14:33 -07001904 if (ihost->power_control.requesters[iphy->phy_index])
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001905 ihost->power_control.phys_waiting--;
Dan Williamscc9203b2011-05-08 17:34:44 -07001906
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001907 ihost->power_control.requesters[iphy->phy_index] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07001908}
1909
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001910static int is_long_cable(int phy, unsigned char selection_byte)
1911{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001912 return !!(selection_byte & (1 << phy));
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001913}
1914
1915static int is_medium_cable(int phy, unsigned char selection_byte)
1916{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001917 return !!(selection_byte & (1 << (phy + 4)));
1918}
1919
1920static enum cable_selections decode_selection_byte(
1921 int phy,
1922 unsigned char selection_byte)
1923{
1924 return ((selection_byte & (1 << phy)) ? 1 : 0)
1925 + (selection_byte & (1 << (phy + 4)) ? 2 : 0);
1926}
1927
1928static unsigned char *to_cable_select(struct isci_host *ihost)
1929{
1930 if (is_cable_select_overridden())
1931 return ((unsigned char *)&cable_selection_override)
1932 + ihost->id;
1933 else
1934 return &ihost->oem_parameters.controller.cable_selection_mask;
1935}
1936
1937enum cable_selections decode_cable_selection(struct isci_host *ihost, int phy)
1938{
1939 return decode_selection_byte(phy, *to_cable_select(ihost));
1940}
1941
1942char *lookup_cable_names(enum cable_selections selection)
1943{
1944 static char *cable_names[] = {
1945 [short_cable] = "short",
1946 [long_cable] = "long",
1947 [medium_cable] = "medium",
1948 [undefined_cable] = "<undefined, assumed long>" /* bit 0==1 */
1949 };
1950 return (selection <= undefined_cable) ? cable_names[selection]
1951 : cable_names[undefined_cable];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001952}
1953
Dan Williamscc9203b2011-05-08 17:34:44 -07001954#define AFE_REGISTER_WRITE_DELAY 10
1955
Dan Williams89a73012011-06-30 19:14:33 -07001956static void sci_controller_afe_initialization(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001957{
Dan Williams2e5da882012-01-04 01:32:34 -08001958 struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe;
Dan Williams89a73012011-06-30 19:14:33 -07001959 const struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001960 struct pci_dev *pdev = ihost->pdev;
Dan Williamscc9203b2011-05-08 17:34:44 -07001961 u32 afe_status;
1962 u32 phy_id;
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001963 unsigned char cable_selection_mask = *to_cable_select(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001964
1965 /* Clear DFX Status registers */
Dan Williams2e5da882012-01-04 01:32:34 -08001966 writel(0x0081000f, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001967 udelay(AFE_REGISTER_WRITE_DELAY);
1968
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001969 if (is_b0(pdev) || is_c0(pdev) || is_c1(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001970 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
Dan Williams2e5da882012-01-04 01:32:34 -08001971 * Timer, PM Stagger Timer
1972 */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001973 writel(0x0007FFFF, &afe->afe_pmsn_master_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07001974 udelay(AFE_REGISTER_WRITE_DELAY);
1975 }
1976
1977 /* Configure bias currents to normal */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001978 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08001979 writel(0x00005A00, &afe->afe_bias_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001980 else if (is_b0(pdev) || is_c0(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08001981 writel(0x00005F00, &afe->afe_bias_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001982 else if (is_c1(pdev))
1983 writel(0x00005500, &afe->afe_bias_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001984
1985 udelay(AFE_REGISTER_WRITE_DELAY);
1986
1987 /* Enable PLL */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001988 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08001989 writel(0x80040908, &afe->afe_pll_control0);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001990 else if (is_b0(pdev) || is_c0(pdev))
1991 writel(0x80040A08, &afe->afe_pll_control0);
1992 else if (is_c1(pdev)) {
1993 writel(0x80000B08, &afe->afe_pll_control0);
1994 udelay(AFE_REGISTER_WRITE_DELAY);
1995 writel(0x00000B08, &afe->afe_pll_control0);
1996 udelay(AFE_REGISTER_WRITE_DELAY);
1997 writel(0x80000B08, &afe->afe_pll_control0);
1998 }
Dan Williamscc9203b2011-05-08 17:34:44 -07001999
2000 udelay(AFE_REGISTER_WRITE_DELAY);
2001
2002 /* Wait for the PLL to lock */
2003 do {
Dan Williams2e5da882012-01-04 01:32:34 -08002004 afe_status = readl(&afe->afe_common_block_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002005 udelay(AFE_REGISTER_WRITE_DELAY);
2006 } while ((afe_status & 0x00001000) == 0);
2007
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002008 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002009 /* Shorten SAS SNW lock time (RxLock timer value from 76
2010 * us to 50 us)
2011 */
2012 writel(0x7bcc96ad, &afe->afe_pmsn_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002013 udelay(AFE_REGISTER_WRITE_DELAY);
2014 }
2015
2016 for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) {
Dan Williams2e5da882012-01-04 01:32:34 -08002017 struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_id];
Dan Williamscc9203b2011-05-08 17:34:44 -07002018 const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002019 int cable_length_long =
2020 is_long_cable(phy_id, cable_selection_mask);
2021 int cable_length_medium =
2022 is_medium_cable(phy_id, cable_selection_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07002023
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002024 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002025 /* All defaults, except the Receive Word
2026 * Alignament/Comma Detect Enable....(0xe800)
2027 */
2028 writel(0x00004512, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002029 udelay(AFE_REGISTER_WRITE_DELAY);
2030
Dan Williams2e5da882012-01-04 01:32:34 -08002031 writel(0x0050100F, &xcvr->afe_xcvr_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002032 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002033 } else if (is_b0(pdev)) {
2034 /* Configure transmitter SSC parameters */
2035 writel(0x00030000, &xcvr->afe_tx_ssc_control);
2036 udelay(AFE_REGISTER_WRITE_DELAY);
2037 } else if (is_c0(pdev)) {
2038 /* Configure transmitter SSC parameters */
2039 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2040 udelay(AFE_REGISTER_WRITE_DELAY);
2041
2042 /* All defaults, except the Receive Word
2043 * Alignament/Comma Detect Enable....(0xe800)
2044 */
2045 writel(0x00014500, &xcvr->afe_xcvr_control0);
2046 udelay(AFE_REGISTER_WRITE_DELAY);
2047 } else if (is_c1(pdev)) {
2048 /* Configure transmitter SSC parameters */
2049 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2050 udelay(AFE_REGISTER_WRITE_DELAY);
2051
2052 /* All defaults, except the Receive Word
2053 * Alignament/Comma Detect Enable....(0xe800)
2054 */
2055 writel(0x0001C500, &xcvr->afe_xcvr_control0);
2056 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamscc9203b2011-05-08 17:34:44 -07002057 }
2058
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002059 /* Power up TX and RX out from power down (PWRDNTX and
2060 * PWRDNRX) & increase TX int & ext bias 20%....(0xe85c)
Dan Williams2e5da882012-01-04 01:32:34 -08002061 */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002062 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002063 writel(0x000003F0, &xcvr->afe_channel_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002064 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002065 writel(0x000003D7, &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002066 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002067
Dan Williams2e5da882012-01-04 01:32:34 -08002068 writel(0x000003D4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002069 } else if (is_c0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002070 writel(0x000001E7, &xcvr->afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002071 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002072
Dan Williams2e5da882012-01-04 01:32:34 -08002073 writel(0x000001E4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002074 } else if (is_c1(pdev)) {
2075 writel(cable_length_long ? 0x000002F7 : 0x000001F7,
2076 &xcvr->afe_channel_control);
2077 udelay(AFE_REGISTER_WRITE_DELAY);
2078
2079 writel(cable_length_long ? 0x000002F4 : 0x000001F4,
2080 &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002081 }
2082 udelay(AFE_REGISTER_WRITE_DELAY);
2083
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002084 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002085 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002086 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002087 udelay(AFE_REGISTER_WRITE_DELAY);
2088 }
2089
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002090 if (is_a2(pdev) || is_b0(pdev))
2091 /* RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0,
2092 * TPD=0x0(TX Power On), RDD=0x0(RX Detect
2093 * Enabled) ....(0xe800)
2094 */
2095 writel(0x00004100, &xcvr->afe_xcvr_control0);
2096 else if (is_c0(pdev))
2097 writel(0x00014100, &xcvr->afe_xcvr_control0);
2098 else if (is_c1(pdev))
2099 writel(0x0001C100, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002100 udelay(AFE_REGISTER_WRITE_DELAY);
2101
2102 /* Leave DFE/FFE on */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002103 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002104 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002105 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002106 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002107 udelay(AFE_REGISTER_WRITE_DELAY);
2108 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002109 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002110 } else if (is_c0(pdev)) {
2111 writel(0x01400C0F, &xcvr->afe_rx_ssc_control1);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002112 udelay(AFE_REGISTER_WRITE_DELAY);
2113
Dan Williams2e5da882012-01-04 01:32:34 -08002114 writel(0x3F6F103F, &xcvr->afe_rx_ssc_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002115 udelay(AFE_REGISTER_WRITE_DELAY);
2116
2117 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002118 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002119 } else if (is_c1(pdev)) {
2120 writel(cable_length_long ? 0x01500C0C :
2121 cable_length_medium ? 0x01400C0D : 0x02400C0D,
2122 &xcvr->afe_xcvr_control1);
2123 udelay(AFE_REGISTER_WRITE_DELAY);
2124
2125 writel(0x000003E0, &xcvr->afe_dfx_rx_control1);
2126 udelay(AFE_REGISTER_WRITE_DELAY);
2127
2128 writel(cable_length_long ? 0x33091C1F :
2129 cable_length_medium ? 0x3315181F : 0x2B17161F,
2130 &xcvr->afe_rx_ssc_control0);
2131 udelay(AFE_REGISTER_WRITE_DELAY);
2132
2133 /* Enable TX equalization (0xe824) */
2134 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002135 }
Adam Gruchaladbb07432011-06-01 22:31:03 +00002136
Dan Williamscc9203b2011-05-08 17:34:44 -07002137 udelay(AFE_REGISTER_WRITE_DELAY);
2138
Dan Williams2e5da882012-01-04 01:32:34 -08002139 writel(oem_phy->afe_tx_amp_control0, &xcvr->afe_tx_amp_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002140 udelay(AFE_REGISTER_WRITE_DELAY);
2141
Dan Williams2e5da882012-01-04 01:32:34 -08002142 writel(oem_phy->afe_tx_amp_control1, &xcvr->afe_tx_amp_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002143 udelay(AFE_REGISTER_WRITE_DELAY);
2144
Dan Williams2e5da882012-01-04 01:32:34 -08002145 writel(oem_phy->afe_tx_amp_control2, &xcvr->afe_tx_amp_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002146 udelay(AFE_REGISTER_WRITE_DELAY);
2147
Dan Williams2e5da882012-01-04 01:32:34 -08002148 writel(oem_phy->afe_tx_amp_control3, &xcvr->afe_tx_amp_control3);
Dan Williamscc9203b2011-05-08 17:34:44 -07002149 udelay(AFE_REGISTER_WRITE_DELAY);
2150 }
2151
2152 /* Transfer control to the PEs */
Dan Williams2e5da882012-01-04 01:32:34 -08002153 writel(0x00010f00, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002154 udelay(AFE_REGISTER_WRITE_DELAY);
2155}
2156
Dan Williams89a73012011-06-30 19:14:33 -07002157static void sci_controller_initialize_power_control(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002158{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002159 sci_init_timer(&ihost->power_control.timer, power_control_timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07002160
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002161 memset(ihost->power_control.requesters, 0,
2162 sizeof(ihost->power_control.requesters));
Dan Williamscc9203b2011-05-08 17:34:44 -07002163
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002164 ihost->power_control.phys_waiting = 0;
2165 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002166}
2167
Dan Williams89a73012011-06-30 19:14:33 -07002168static enum sci_status sci_controller_initialize(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002169{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002170 struct sci_base_state_machine *sm = &ihost->sm;
Dan Williams7c78da32011-06-01 16:00:01 -07002171 enum sci_status result = SCI_FAILURE;
2172 unsigned long i, state, val;
Dan Williamscc9203b2011-05-08 17:34:44 -07002173
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002174 if (ihost->sm.current_state_id != SCIC_RESET) {
Dan Williams14e99b42012-02-10 01:05:43 -08002175 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2176 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002177 return SCI_FAILURE_INVALID_STATE;
2178 }
2179
Edmund Nadolskie3013702011-06-02 00:10:43 +00002180 sci_change_state(sm, SCIC_INITIALIZING);
Dan Williamscc9203b2011-05-08 17:34:44 -07002181
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002182 sci_init_timer(&ihost->phy_timer, phy_startup_timeout);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -07002183
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002184 ihost->next_phy_to_start = 0;
2185 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07002186
Dan Williams89a73012011-06-30 19:14:33 -07002187 sci_controller_initialize_power_control(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002188
2189 /*
2190 * There is nothing to do here for B0 since we do not have to
2191 * program the AFE registers.
2192 * / @todo The AFE settings are supposed to be correct for the B0 but
2193 * / presently they seem to be wrong. */
Dan Williams89a73012011-06-30 19:14:33 -07002194 sci_controller_afe_initialization(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002195
Dan Williams7c78da32011-06-01 16:00:01 -07002196
2197 /* Take the hardware out of reset */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002198 writel(0, &ihost->smu_registers->soft_reset_control);
Dan Williams7c78da32011-06-01 16:00:01 -07002199
2200 /*
2201 * / @todo Provide meaningfull error code for hardware failure
2202 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2203 for (i = 100; i >= 1; i--) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002204 u32 status;
Dan Williamscc9203b2011-05-08 17:34:44 -07002205
Dan Williams7c78da32011-06-01 16:00:01 -07002206 /* Loop until the hardware reports success */
2207 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002208 status = readl(&ihost->smu_registers->control_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002209
Dan Williams7c78da32011-06-01 16:00:01 -07002210 if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED)
2211 break;
Dan Williamscc9203b2011-05-08 17:34:44 -07002212 }
Dan Williams7c78da32011-06-01 16:00:01 -07002213 if (i == 0)
2214 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002215
Dan Williams7c78da32011-06-01 16:00:01 -07002216 /*
2217 * Determine what are the actaul device capacities that the
2218 * hardware will support */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002219 val = readl(&ihost->smu_registers->device_context_capacity);
Dan Williamscc9203b2011-05-08 17:34:44 -07002220
Dan Williams7c78da32011-06-01 16:00:01 -07002221 /* Record the smaller of the two capacity values */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002222 ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS);
2223 ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS);
2224 ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES);
Dan Williamscc9203b2011-05-08 17:34:44 -07002225
Dan Williams7c78da32011-06-01 16:00:01 -07002226 /*
2227 * Make all PEs that are unassigned match up with the
2228 * logical ports
2229 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002230 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams7c78da32011-06-01 16:00:01 -07002231 struct scu_port_task_scheduler_group_registers __iomem
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002232 *ptsg = &ihost->scu_registers->peg0.ptsg;
Dan Williamscc9203b2011-05-08 17:34:44 -07002233
Dan Williams7c78da32011-06-01 16:00:01 -07002234 writel(i, &ptsg->protocol_engine[i]);
Dan Williamscc9203b2011-05-08 17:34:44 -07002235 }
2236
2237 /* Initialize hardware PCI Relaxed ordering in DMA engines */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002238 val = readl(&ihost->scu_registers->sdma.pdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002239 val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002240 writel(val, &ihost->scu_registers->sdma.pdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002241
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002242 val = readl(&ihost->scu_registers->sdma.cdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002243 val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002244 writel(val, &ihost->scu_registers->sdma.cdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002245
2246 /*
2247 * Initialize the PHYs before the PORTs because the PHY registers
2248 * are accessed during the port initialization.
2249 */
Dan Williams7c78da32011-06-01 16:00:01 -07002250 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002251 result = sci_phy_initialize(&ihost->phys[i],
2252 &ihost->scu_registers->peg0.pe[i].tl,
2253 &ihost->scu_registers->peg0.pe[i].ll);
Dan Williams7c78da32011-06-01 16:00:01 -07002254 if (result != SCI_SUCCESS)
2255 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002256 }
2257
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002258 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002259 struct isci_port *iport = &ihost->ports[i];
Dan Williams7c78da32011-06-01 16:00:01 -07002260
Dan Williams89a73012011-06-30 19:14:33 -07002261 iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i];
2262 iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0];
2263 iport->viit_registers = &ihost->scu_registers->peg0.viit[i];
Dan Williamscc9203b2011-05-08 17:34:44 -07002264 }
2265
Dan Williams89a73012011-06-30 19:14:33 -07002266 result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07002267
Dan Williams7c78da32011-06-01 16:00:01 -07002268 out:
Dan Williamscc9203b2011-05-08 17:34:44 -07002269 /* Advance the controller state machine */
2270 if (result == SCI_SUCCESS)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002271 state = SCIC_INITIALIZED;
Dan Williamscc9203b2011-05-08 17:34:44 -07002272 else
Edmund Nadolskie3013702011-06-02 00:10:43 +00002273 state = SCIC_FAILED;
2274 sci_change_state(sm, state);
Dan Williamscc9203b2011-05-08 17:34:44 -07002275
2276 return result;
2277}
2278
Dan Williamsabec9122012-02-15 13:58:42 -08002279static int sci_controller_dma_alloc(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002280{
Dan Williamsabec9122012-02-15 13:58:42 -08002281 struct device *dev = &ihost->pdev->dev;
2282 size_t size;
2283 int i;
Dan Williamscc9203b2011-05-08 17:34:44 -07002284
Dan Williamsabec9122012-02-15 13:58:42 -08002285 /* detect re-initialization */
2286 if (ihost->completion_queue)
2287 return 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002288
Dan Williamsabec9122012-02-15 13:58:42 -08002289 size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32);
2290 ihost->completion_queue = dmam_alloc_coherent(dev, size, &ihost->cq_dma,
2291 GFP_KERNEL);
2292 if (!ihost->completion_queue)
2293 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002294
Dan Williamsabec9122012-02-15 13:58:42 -08002295 size = ihost->remote_node_entries * sizeof(union scu_remote_node_context);
2296 ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &ihost->rnc_dma,
2297 GFP_KERNEL);
Dan Williamscc9203b2011-05-08 17:34:44 -07002298
Dan Williamsabec9122012-02-15 13:58:42 -08002299 if (!ihost->remote_node_context_table)
2300 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002301
Dan Williamsabec9122012-02-15 13:58:42 -08002302 size = ihost->task_context_entries * sizeof(struct scu_task_context),
2303 ihost->task_context_table = dmam_alloc_coherent(dev, size, &ihost->tc_dma,
2304 GFP_KERNEL);
2305 if (!ihost->task_context_table)
2306 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002307
Dan Williamsabec9122012-02-15 13:58:42 -08002308 size = SCI_UFI_TOTAL_SIZE;
2309 ihost->ufi_buf = dmam_alloc_coherent(dev, size, &ihost->ufi_dma, GFP_KERNEL);
2310 if (!ihost->ufi_buf)
2311 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002312
Dan Williamsabec9122012-02-15 13:58:42 -08002313 for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) {
2314 struct isci_request *ireq;
2315 dma_addr_t dma;
Dan Williamscc9203b2011-05-08 17:34:44 -07002316
Dan Williamsabec9122012-02-15 13:58:42 -08002317 ireq = dmam_alloc_coherent(dev, sizeof(*ireq), &dma, GFP_KERNEL);
2318 if (!ireq)
2319 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002320
Dan Williamsabec9122012-02-15 13:58:42 -08002321 ireq->tc = &ihost->task_context_table[i];
2322 ireq->owning_controller = ihost;
2323 spin_lock_init(&ireq->state_lock);
2324 ireq->request_daddr = dma;
2325 ireq->isci_host = ihost;
2326 ihost->reqs[i] = ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002327 }
2328
Dan Williamsabec9122012-02-15 13:58:42 -08002329 return 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002330}
2331
Dan Williams89a73012011-06-30 19:14:33 -07002332static int sci_controller_mem_init(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002333{
Dan Williamsabec9122012-02-15 13:58:42 -08002334 int err = sci_controller_dma_alloc(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002335
Dan Williams7c78da32011-06-01 16:00:01 -07002336 if (err)
2337 return err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002338
Dan Williamsabec9122012-02-15 13:58:42 -08002339 writel(lower_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_lower);
2340 writel(upper_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_upper);
2341
2342 writel(lower_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_lower);
2343 writel(upper_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_upper);
2344
2345 writel(lower_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_lower);
2346 writel(upper_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_upper);
2347
2348 sci_unsolicited_frame_control_construct(ihost);
2349
Dan Williamscc9203b2011-05-08 17:34:44 -07002350 /*
2351 * Inform the silicon as to the location of the UF headers and
2352 * address table.
2353 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002354 writel(lower_32_bits(ihost->uf_control.headers.physical_address),
2355 &ihost->scu_registers->sdma.uf_header_base_address_lower);
2356 writel(upper_32_bits(ihost->uf_control.headers.physical_address),
2357 &ihost->scu_registers->sdma.uf_header_base_address_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002358
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002359 writel(lower_32_bits(ihost->uf_control.address_table.physical_address),
2360 &ihost->scu_registers->sdma.uf_address_table_lower);
2361 writel(upper_32_bits(ihost->uf_control.address_table.physical_address),
2362 &ihost->scu_registers->sdma.uf_address_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002363
2364 return 0;
2365}
2366
Dan Williamsabec9122012-02-15 13:58:42 -08002367/**
2368 * isci_host_init - (re-)initialize hardware and internal (private) state
2369 * @ihost: host to init
2370 *
2371 * Any public facing objects (like asd_sas_port, and asd_sas_phys), or
2372 * one-time initialization objects like locks and waitqueues, are
2373 * not touched (they are initialized in isci_host_alloc)
2374 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002375int isci_host_init(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07002376{
Dan Williamsabec9122012-02-15 13:58:42 -08002377 int i, err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002378 enum sci_status status;
Dan Williams6f231dd2011-07-02 22:56:22 -07002379
Dan Williamsabec9122012-02-15 13:58:42 -08002380 status = sci_controller_construct(ihost, scu_base(ihost), smu_base(ihost));
Dan Williams6f231dd2011-07-02 22:56:22 -07002381 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002382 dev_err(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002383 "%s: sci_controller_construct failed - status = %x\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002384 __func__,
2385 status);
Dave Jiang858d4aa2011-02-22 01:27:03 -08002386 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002387 }
2388
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002389 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07002390 status = sci_controller_initialize(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002391 spin_unlock_irq(&ihost->scic_lock);
Dan Williams7c40a802011-03-02 11:49:26 -08002392 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002393 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002394 "%s: sci_controller_initialize failed -"
Dan Williams7c40a802011-03-02 11:49:26 -08002395 " status = 0x%x\n",
2396 __func__, status);
2397 return -ENODEV;
2398 }
2399
Dan Williams89a73012011-06-30 19:14:33 -07002400 err = sci_controller_mem_init(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002401 if (err)
Dave Jiang858d4aa2011-02-22 01:27:03 -08002402 return err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002403
Dan Williamsad4f4c12011-09-01 21:18:31 -07002404 /* enable sgpio */
2405 writel(1, &ihost->scu_registers->peg0.sgpio.interface_control);
2406 for (i = 0; i < isci_gpio_count(ihost); i++)
2407 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
2408 writel(0, &ihost->scu_registers->peg0.sgpio.vendor_specific_code);
2409
Dave Jiang858d4aa2011-02-22 01:27:03 -08002410 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -07002411}
Dan Williamscc9203b2011-05-08 17:34:44 -07002412
Dan Williams89a73012011-06-30 19:14:33 -07002413void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport,
2414 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002415{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002416 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002417 case SCIC_STARTING:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002418 sci_del_timer(&ihost->phy_timer);
2419 ihost->phy_startup_timer_pending = false;
2420 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002421 iport, iphy);
2422 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002423 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002424 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002425 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -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 linkup event from phy %d in "
Dan Williams85280952011-06-28 15:05:53 -07002431 "unexpected state %d\n", __func__, iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002432 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002433 }
2434}
2435
Dan Williams89a73012011-06-30 19:14:33 -07002436void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport,
2437 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002438{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002439 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002440 case SCIC_STARTING:
2441 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002442 ihost->port_agent.link_down_handler(ihost, &ihost->port_agent,
Dan Williamsffe191c2011-06-29 13:09:25 -07002443 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002444 break;
2445 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002446 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002447 "%s: SCIC Controller linkdown event from phy %d in "
2448 "unexpected state %d\n",
2449 __func__,
Dan Williams85280952011-06-28 15:05:53 -07002450 iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002451 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002452 }
2453}
2454
Dan Williams89a73012011-06-30 19:14:33 -07002455static bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002456{
2457 u32 index;
2458
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002459 for (index = 0; index < ihost->remote_node_entries; index++) {
2460 if ((ihost->device_table[index] != NULL) &&
2461 (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING))
Dan Williamscc9203b2011-05-08 17:34:44 -07002462 return true;
2463 }
2464
2465 return false;
2466}
2467
Dan Williams89a73012011-06-30 19:14:33 -07002468void sci_controller_remote_device_stopped(struct isci_host *ihost,
2469 struct isci_remote_device *idev)
Dan Williamscc9203b2011-05-08 17:34:44 -07002470{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002471 if (ihost->sm.current_state_id != SCIC_STOPPING) {
2472 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002473 "SCIC Controller 0x%p remote device stopped event "
2474 "from device 0x%p in unexpected state %d\n",
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002475 ihost, idev,
2476 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002477 return;
2478 }
2479
Dan Williams89a73012011-06-30 19:14:33 -07002480 if (!sci_controller_has_remote_devices_stopping(ihost))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002481 sci_change_state(&ihost->sm, SCIC_STOPPED);
Dan Williamscc9203b2011-05-08 17:34:44 -07002482}
2483
Dan Williams89a73012011-06-30 19:14:33 -07002484void sci_controller_post_request(struct isci_host *ihost, u32 request)
Dan Williamscc9203b2011-05-08 17:34:44 -07002485{
Dan Williams89a73012011-06-30 19:14:33 -07002486 dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n",
2487 __func__, ihost->id, request);
Dan Williamscc9203b2011-05-08 17:34:44 -07002488
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002489 writel(request, &ihost->smu_registers->post_context_port);
Dan Williamscc9203b2011-05-08 17:34:44 -07002490}
2491
Dan Williams89a73012011-06-30 19:14:33 -07002492struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag)
Dan Williamscc9203b2011-05-08 17:34:44 -07002493{
2494 u16 task_index;
2495 u16 task_sequence;
2496
Dan Williamsdd047c82011-06-09 11:06:58 -07002497 task_index = ISCI_TAG_TCI(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002498
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002499 if (task_index < ihost->task_context_entries) {
2500 struct isci_request *ireq = ihost->reqs[task_index];
Dan Williamsdb056252011-06-17 14:18:39 -07002501
2502 if (test_bit(IREQ_ACTIVE, &ireq->flags)) {
Dan Williamsdd047c82011-06-09 11:06:58 -07002503 task_sequence = ISCI_TAG_SEQ(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002504
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002505 if (task_sequence == ihost->io_request_sequence[task_index])
Dan Williams5076a1a2011-06-27 14:57:03 -07002506 return ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002507 }
2508 }
2509
2510 return NULL;
2511}
2512
2513/**
2514 * This method allocates remote node index and the reserves the remote node
2515 * context space for use. This method can fail if there are no more remote
2516 * node index available.
2517 * @scic: This is the controller object which contains the set of
2518 * free remote node ids
2519 * @sci_dev: This is the device object which is requesting the a remote node
2520 * id
2521 * @node_id: This is the remote node id that is assinged to the device if one
2522 * is available
2523 *
2524 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2525 * node index available.
2526 */
Dan Williams89a73012011-06-30 19:14:33 -07002527enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost,
2528 struct isci_remote_device *idev,
2529 u16 *node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002530{
2531 u16 node_index;
Dan Williams89a73012011-06-30 19:14:33 -07002532 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002533
Dan Williams89a73012011-06-30 19:14:33 -07002534 node_index = sci_remote_node_table_allocate_remote_node(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002535 &ihost->available_remote_nodes, remote_node_count
Dan Williamscc9203b2011-05-08 17:34:44 -07002536 );
2537
2538 if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002539 ihost->device_table[node_index] = idev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002540
2541 *node_id = node_index;
2542
2543 return SCI_SUCCESS;
2544 }
2545
2546 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
2547}
2548
Dan Williams89a73012011-06-30 19:14:33 -07002549void sci_controller_free_remote_node_context(struct isci_host *ihost,
2550 struct isci_remote_device *idev,
2551 u16 node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002552{
Dan Williams89a73012011-06-30 19:14:33 -07002553 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002554
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002555 if (ihost->device_table[node_id] == idev) {
2556 ihost->device_table[node_id] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002557
Dan Williams89a73012011-06-30 19:14:33 -07002558 sci_remote_node_table_release_remote_node_index(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002559 &ihost->available_remote_nodes, remote_node_count, node_id
Dan Williamscc9203b2011-05-08 17:34:44 -07002560 );
2561 }
2562}
2563
Dan Williams89a73012011-06-30 19:14:33 -07002564void sci_controller_copy_sata_response(void *response_buffer,
2565 void *frame_header,
2566 void *frame_buffer)
Dan Williamscc9203b2011-05-08 17:34:44 -07002567{
Dan Williams89a73012011-06-30 19:14:33 -07002568 /* XXX type safety? */
Dan Williamscc9203b2011-05-08 17:34:44 -07002569 memcpy(response_buffer, frame_header, sizeof(u32));
2570
2571 memcpy(response_buffer + sizeof(u32),
2572 frame_buffer,
2573 sizeof(struct dev_to_host_fis) - sizeof(u32));
2574}
2575
Dan Williams89a73012011-06-30 19:14:33 -07002576void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index)
Dan Williamscc9203b2011-05-08 17:34:44 -07002577{
Dan Williams89a73012011-06-30 19:14:33 -07002578 if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002579 writel(ihost->uf_control.get,
2580 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07002581}
2582
Dan Williams312e0c22011-06-28 13:47:09 -07002583void isci_tci_free(struct isci_host *ihost, u16 tci)
2584{
2585 u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1);
2586
2587 ihost->tci_pool[tail] = tci;
2588 ihost->tci_tail = tail + 1;
2589}
2590
2591static u16 isci_tci_alloc(struct isci_host *ihost)
2592{
2593 u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1);
2594 u16 tci = ihost->tci_pool[head];
2595
2596 ihost->tci_head = head + 1;
2597 return tci;
2598}
2599
2600static u16 isci_tci_space(struct isci_host *ihost)
2601{
2602 return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
2603}
2604
2605u16 isci_alloc_tag(struct isci_host *ihost)
2606{
2607 if (isci_tci_space(ihost)) {
2608 u16 tci = isci_tci_alloc(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002609 u8 seq = ihost->io_request_sequence[tci];
Dan Williams312e0c22011-06-28 13:47:09 -07002610
2611 return ISCI_TAG(seq, tci);
2612 }
2613
2614 return SCI_CONTROLLER_INVALID_IO_TAG;
2615}
2616
2617enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag)
2618{
Dan Williams312e0c22011-06-28 13:47:09 -07002619 u16 tci = ISCI_TAG_TCI(io_tag);
2620 u16 seq = ISCI_TAG_SEQ(io_tag);
2621
2622 /* prevent tail from passing head */
2623 if (isci_tci_active(ihost) == 0)
2624 return SCI_FAILURE_INVALID_IO_TAG;
2625
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002626 if (seq == ihost->io_request_sequence[tci]) {
2627 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1);
Dan Williams312e0c22011-06-28 13:47:09 -07002628
2629 isci_tci_free(ihost, tci);
2630
2631 return SCI_SUCCESS;
2632 }
2633 return SCI_FAILURE_INVALID_IO_TAG;
2634}
2635
Dan Williams89a73012011-06-30 19:14:33 -07002636enum sci_status sci_controller_start_io(struct isci_host *ihost,
2637 struct isci_remote_device *idev,
2638 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002639{
2640 enum sci_status status;
2641
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002642 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002643 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2644 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002645 return SCI_FAILURE_INVALID_STATE;
2646 }
2647
Dan Williams89a73012011-06-30 19:14:33 -07002648 status = sci_remote_device_start_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002649 if (status != SCI_SUCCESS)
2650 return status;
2651
Dan Williams5076a1a2011-06-27 14:57:03 -07002652 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002653 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002654 return SCI_SUCCESS;
2655}
2656
Dan Williams89a73012011-06-30 19:14:33 -07002657enum sci_status sci_controller_terminate_request(struct isci_host *ihost,
2658 struct isci_remote_device *idev,
2659 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002660{
Dan Williams89a73012011-06-30 19:14:33 -07002661 /* terminate an ongoing (i.e. started) core IO request. This does not
2662 * abort the IO request at the target, but rather removes the IO
2663 * request from the host controller.
2664 */
Dan Williamscc9203b2011-05-08 17:34:44 -07002665 enum sci_status status;
2666
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002667 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002668 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2669 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002670 return SCI_FAILURE_INVALID_STATE;
2671 }
2672
Dan Williams89a73012011-06-30 19:14:33 -07002673 status = sci_io_request_terminate(ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002674 if (status != SCI_SUCCESS)
2675 return status;
2676
2677 /*
2678 * Utilize the original post context command and or in the POST_TC_ABORT
2679 * request sub-type.
2680 */
Dan Williams89a73012011-06-30 19:14:33 -07002681 sci_controller_post_request(ihost,
2682 ireq->post_context | SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT);
Dan Williamscc9203b2011-05-08 17:34:44 -07002683 return SCI_SUCCESS;
2684}
2685
2686/**
Dan Williams89a73012011-06-30 19:14:33 -07002687 * sci_controller_complete_io() - This method will perform core specific
Dan Williamscc9203b2011-05-08 17:34:44 -07002688 * completion operations for an IO request. After this method is invoked,
2689 * the user should consider the IO request as invalid until it is properly
2690 * reused (i.e. re-constructed).
Dan Williams89a73012011-06-30 19:14:33 -07002691 * @ihost: The handle to the controller object for which to complete the
Dan Williamscc9203b2011-05-08 17:34:44 -07002692 * IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002693 * @idev: The handle to the remote device object for which to complete
Dan Williamscc9203b2011-05-08 17:34:44 -07002694 * the IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002695 * @ireq: the handle to the io request object to complete.
Dan Williamscc9203b2011-05-08 17:34:44 -07002696 */
Dan Williams89a73012011-06-30 19:14:33 -07002697enum sci_status sci_controller_complete_io(struct isci_host *ihost,
2698 struct isci_remote_device *idev,
2699 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002700{
2701 enum sci_status status;
2702 u16 index;
2703
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002704 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002705 case SCIC_STOPPING:
Dan Williamscc9203b2011-05-08 17:34:44 -07002706 /* XXX: Implement this function */
2707 return SCI_FAILURE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002708 case SCIC_READY:
Dan Williams89a73012011-06-30 19:14:33 -07002709 status = sci_remote_device_complete_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002710 if (status != SCI_SUCCESS)
2711 return status;
2712
Dan Williams5076a1a2011-06-27 14:57:03 -07002713 index = ISCI_TAG_TCI(ireq->io_tag);
2714 clear_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002715 return SCI_SUCCESS;
2716 default:
Dan Williams14e99b42012-02-10 01:05:43 -08002717 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2718 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002719 return SCI_FAILURE_INVALID_STATE;
2720 }
2721
2722}
2723
Dan Williams89a73012011-06-30 19:14:33 -07002724enum sci_status sci_controller_continue_io(struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002725{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002726 struct isci_host *ihost = ireq->owning_controller;
Dan Williamscc9203b2011-05-08 17:34:44 -07002727
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002728 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002729 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2730 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002731 return SCI_FAILURE_INVALID_STATE;
2732 }
2733
Dan Williams5076a1a2011-06-27 14:57:03 -07002734 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002735 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002736 return SCI_SUCCESS;
2737}
2738
2739/**
Dan Williams89a73012011-06-30 19:14:33 -07002740 * sci_controller_start_task() - This method is called by the SCIC user to
Dan Williamscc9203b2011-05-08 17:34:44 -07002741 * send/start a framework task management request.
2742 * @controller: the handle to the controller object for which to start the task
2743 * management request.
2744 * @remote_device: the handle to the remote device object for which to start
2745 * the task management request.
2746 * @task_request: the handle to the task request object to start.
Dan Williamscc9203b2011-05-08 17:34:44 -07002747 */
Dan Williams89a73012011-06-30 19:14:33 -07002748enum sci_task_status sci_controller_start_task(struct isci_host *ihost,
2749 struct isci_remote_device *idev,
2750 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002751{
2752 enum sci_status status;
2753
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002754 if (ihost->sm.current_state_id != SCIC_READY) {
2755 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002756 "%s: SCIC Controller starting task from invalid "
2757 "state\n",
2758 __func__);
2759 return SCI_TASK_FAILURE_INVALID_STATE;
2760 }
2761
Dan Williams89a73012011-06-30 19:14:33 -07002762 status = sci_remote_device_start_task(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002763 switch (status) {
2764 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002765 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002766
2767 /*
2768 * We will let framework know this task request started successfully,
2769 * although core is still woring on starting the request (to post tc when
2770 * RNC is resumed.)
2771 */
2772 return SCI_SUCCESS;
2773 case SCI_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002774 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002775 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002776 break;
2777 default:
2778 break;
2779 }
2780
2781 return status;
2782}
Dan Williamsad4f4c12011-09-01 21:18:31 -07002783
2784static int sci_write_gpio_tx_gp(struct isci_host *ihost, u8 reg_index, u8 reg_count, u8 *write_data)
2785{
2786 int d;
2787
2788 /* no support for TX_GP_CFG */
2789 if (reg_index == 0)
2790 return -EINVAL;
2791
2792 for (d = 0; d < isci_gpio_count(ihost); d++) {
2793 u32 val = 0x444; /* all ODx.n clear */
2794 int i;
2795
2796 for (i = 0; i < 3; i++) {
2797 int bit = (i << 2) + 2;
2798
2799 bit = try_test_sas_gpio_gp_bit(to_sas_gpio_od(d, i),
2800 write_data, reg_index,
2801 reg_count);
2802 if (bit < 0)
2803 break;
2804
2805 /* if od is set, clear the 'invert' bit */
2806 val &= ~(bit << ((i << 2) + 2));
2807 }
2808
2809 if (i < 3)
2810 break;
2811 writel(val, &ihost->scu_registers->peg0.sgpio.output_data_select[d]);
2812 }
2813
2814 /* unless reg_index is > 1, we should always be able to write at
2815 * least one register
2816 */
2817 return d > 0;
2818}
2819
2820int isci_gpio_write(struct sas_ha_struct *sas_ha, u8 reg_type, u8 reg_index,
2821 u8 reg_count, u8 *write_data)
2822{
2823 struct isci_host *ihost = sas_ha->lldd_ha;
2824 int written;
2825
2826 switch (reg_type) {
2827 case SAS_GPIO_REG_TX_GP:
2828 written = sci_write_gpio_tx_gp(ihost, reg_index, reg_count, write_data);
2829 break;
2830 default:
2831 written = -EINVAL;
2832 }
2833
2834 return written;
2835}