blob: 25d537e2f5c43408db740345d6344ab8dc8363ac [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 Williams2396a2652012-03-01 17:06:24 -0800195 if (sci_controller_completion_queue_has_entries(ihost))
Dan Williamscc9203b2011-05-08 17:34:44 -0700196 return true;
Dan Williamscc9203b2011-05-08 17:34:44 -0700197
Dan Williams2396a2652012-03-01 17:06:24 -0800198 /* we have a spurious interrupt it could be that we have already
199 * emptied the completion queue from a previous interrupt
200 * FIXME: really!?
201 */
202 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
203
204 /* There is a race in the hardware that could cause us not to be
205 * notified of an interrupt completion if we do not take this
206 * step. We will mask then unmask the interrupts so if there is
207 * another interrupt pending the clearing of the interrupt
208 * source we get the next interrupt message.
209 */
210 spin_lock(&ihost->scic_lock);
211 if (test_bit(IHOST_IRQ_ENABLED, &ihost->flags)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700212 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
213 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700214 }
Dan Williams2396a2652012-03-01 17:06:24 -0800215 spin_unlock(&ihost->scic_lock);
Dan Williamscc9203b2011-05-08 17:34:44 -0700216
217 return false;
218}
219
Dan Williamsc7ef4032011-02-18 09:25:05 -0800220irqreturn_t isci_msix_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700221{
Dan Williamsc7ef4032011-02-18 09:25:05 -0800222 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700223
Dan Williams89a73012011-06-30 19:14:33 -0700224 if (sci_controller_isr(ihost))
Dan Williams0cf89d12011-02-18 09:25:07 -0800225 tasklet_schedule(&ihost->completion_tasklet);
Dan Williams6f231dd2011-07-02 22:56:22 -0700226
Dan Williamsc7ef4032011-02-18 09:25:05 -0800227 return IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700228}
229
Dan Williams89a73012011-06-30 19:14:33 -0700230static bool sci_controller_error_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700231{
232 u32 interrupt_status;
233
234 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700235 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700236 interrupt_status &= (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND);
237
238 if (interrupt_status != 0) {
239 /*
240 * There is an error interrupt pending so let it through and handle
241 * in the callback */
242 return true;
243 }
244
245 /*
246 * There is a race in the hardware that could cause us not to be notified
247 * of an interrupt completion if we do not take this step. We will mask
248 * then unmask the error interrupts so if there was another interrupt
249 * pending we will be notified.
250 * Could we write the value of (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND)? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700251 writel(0xff, &ihost->smu_registers->interrupt_mask);
252 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700253
254 return false;
255}
256
Dan Williams89a73012011-06-30 19:14:33 -0700257static void sci_controller_task_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700258{
Dan Williams89a73012011-06-30 19:14:33 -0700259 u32 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamsdb056252011-06-17 14:18:39 -0700260 struct isci_request *ireq = ihost->reqs[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700261
262 /* Make sure that we really want to process this IO request */
Dan Williamsdb056252011-06-17 14:18:39 -0700263 if (test_bit(IREQ_ACTIVE, &ireq->flags) &&
Dan Williams5076a1a2011-06-27 14:57:03 -0700264 ireq->io_tag != SCI_CONTROLLER_INVALID_IO_TAG &&
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700265 ISCI_TAG_SEQ(ireq->io_tag) == ihost->io_request_sequence[index])
Dan Williams89a73012011-06-30 19:14:33 -0700266 /* Yep this is a valid io request pass it along to the
267 * io request handler
268 */
269 sci_io_request_tc_completion(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700270}
271
Dan Williams89a73012011-06-30 19:14:33 -0700272static void sci_controller_sdma_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700273{
274 u32 index;
Dan Williams5076a1a2011-06-27 14:57:03 -0700275 struct isci_request *ireq;
Dan Williams78a6f062011-06-30 16:31:37 -0700276 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700277
Dan Williams89a73012011-06-30 19:14:33 -0700278 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700279
Dan Williams89a73012011-06-30 19:14:33 -0700280 switch (scu_get_command_request_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700281 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC:
282 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700283 ireq = ihost->reqs[index];
284 dev_warn(&ihost->pdev->dev, "%s: %x for io request %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700285 __func__, ent, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -0700286 /* @todo For a post TC operation we need to fail the IO
287 * request
288 */
289 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700290 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_RNC:
291 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_OTHER_RNC:
292 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_RNC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700293 idev = ihost->device_table[index];
294 dev_warn(&ihost->pdev->dev, "%s: %x for device %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700295 __func__, ent, idev);
Dan Williamscc9203b2011-05-08 17:34:44 -0700296 /* @todo For a port RNC operation we need to fail the
297 * device
298 */
299 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700300 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700301 dev_warn(&ihost->pdev->dev, "%s: unknown completion type %x\n",
Dan Williams89a73012011-06-30 19:14:33 -0700302 __func__, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700303 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700304 }
305}
306
Dan Williams89a73012011-06-30 19:14:33 -0700307static void sci_controller_unsolicited_frame(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700308{
309 u32 index;
310 u32 frame_index;
311
Dan Williamscc9203b2011-05-08 17:34:44 -0700312 struct scu_unsolicited_frame_header *frame_header;
Dan Williams85280952011-06-28 15:05:53 -0700313 struct isci_phy *iphy;
Dan Williams78a6f062011-06-30 16:31:37 -0700314 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700315
316 enum sci_status result = SCI_FAILURE;
317
Dan Williams89a73012011-06-30 19:14:33 -0700318 frame_index = SCU_GET_FRAME_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700319
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700320 frame_header = ihost->uf_control.buffers.array[frame_index].header;
321 ihost->uf_control.buffers.array[frame_index].state = UNSOLICITED_FRAME_IN_USE;
Dan Williamscc9203b2011-05-08 17:34:44 -0700322
Dan Williams89a73012011-06-30 19:14:33 -0700323 if (SCU_GET_FRAME_ERROR(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700324 /*
325 * / @todo If the IAF frame or SIGNATURE FIS frame has an error will
326 * / this cause a problem? We expect the phy initialization will
327 * / fail if there is an error in the frame. */
Dan Williams89a73012011-06-30 19:14:33 -0700328 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700329 return;
330 }
331
332 if (frame_header->is_address_frame) {
Dan Williams89a73012011-06-30 19:14:33 -0700333 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700334 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700335 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700336 } else {
337
Dan Williams89a73012011-06-30 19:14:33 -0700338 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700339
340 if (index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
341 /*
342 * This is a signature fis or a frame from a direct attached SATA
343 * device that has not yet been created. In either case forwared
344 * the frame to the PE and let it take care of the frame data. */
Dan Williams89a73012011-06-30 19:14:33 -0700345 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700346 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700347 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700348 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700349 if (index < ihost->remote_node_entries)
350 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700351 else
Dan Williams78a6f062011-06-30 16:31:37 -0700352 idev = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -0700353
Dan Williams78a6f062011-06-30 16:31:37 -0700354 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700355 result = sci_remote_device_frame_handler(idev, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700356 else
Dan Williams89a73012011-06-30 19:14:33 -0700357 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700358 }
359 }
360
361 if (result != SCI_SUCCESS) {
362 /*
363 * / @todo Is there any reason to report some additional error message
364 * / when we get this failure notifiction? */
365 }
366}
367
Dan Williams89a73012011-06-30 19:14:33 -0700368static void sci_controller_event_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700369{
Dan Williams78a6f062011-06-30 16:31:37 -0700370 struct isci_remote_device *idev;
Dan Williams5076a1a2011-06-27 14:57:03 -0700371 struct isci_request *ireq;
Dan Williams85280952011-06-28 15:05:53 -0700372 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700373 u32 index;
374
Dan Williams89a73012011-06-30 19:14:33 -0700375 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700376
Dan Williams89a73012011-06-30 19:14:33 -0700377 switch (scu_get_event_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700378 case SCU_EVENT_TYPE_SMU_COMMAND_ERROR:
379 /* / @todo The driver did something wrong and we need to fix the condtion. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700380 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700381 "%s: SCIC Controller 0x%p received SMU command error "
382 "0x%x\n",
383 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700384 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700385 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700386 break;
387
388 case SCU_EVENT_TYPE_SMU_PCQ_ERROR:
389 case SCU_EVENT_TYPE_SMU_ERROR:
390 case SCU_EVENT_TYPE_FATAL_MEMORY_ERROR:
391 /*
392 * / @todo This is a hardware failure and its likely that we want to
393 * / reset the controller. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700394 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700395 "%s: SCIC Controller 0x%p received fatal controller "
396 "event 0x%x\n",
397 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700398 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700399 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700400 break;
401
402 case SCU_EVENT_TYPE_TRANSPORT_ERROR:
Dan Williams5076a1a2011-06-27 14:57:03 -0700403 ireq = ihost->reqs[index];
Dan Williams89a73012011-06-30 19:14:33 -0700404 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700405 break;
406
407 case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700408 switch (scu_get_event_specifier(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700409 case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE:
410 case SCU_EVENT_SPECIFIC_TASK_TIMEOUT:
Dan Williams5076a1a2011-06-27 14:57:03 -0700411 ireq = ihost->reqs[index];
412 if (ireq != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700413 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700414 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700415 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700416 "%s: SCIC Controller 0x%p received "
417 "event 0x%x for io request object "
418 "that doesnt exist.\n",
419 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700420 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700421 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700422
423 break;
424
425 case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700426 idev = ihost->device_table[index];
Dan Williams78a6f062011-06-30 16:31:37 -0700427 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700428 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700429 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700430 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700431 "%s: SCIC Controller 0x%p received "
432 "event 0x%x for remote device object "
433 "that doesnt exist.\n",
434 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700435 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700436 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700437
438 break;
439 }
440 break;
441
442 case SCU_EVENT_TYPE_BROADCAST_CHANGE:
443 /*
444 * direct the broadcast change event to the phy first and then let
445 * the phy redirect the broadcast change to the port object */
446 case SCU_EVENT_TYPE_ERR_CNT_EVENT:
447 /*
448 * direct error counter event to the phy object since that is where
449 * we get the event notification. This is a type 4 event. */
450 case SCU_EVENT_TYPE_OSSP_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700451 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700452 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700453 sci_phy_event_handler(iphy, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700454 break;
455
456 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
457 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
458 case SCU_EVENT_TYPE_RNC_OPS_MISC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700459 if (index < ihost->remote_node_entries) {
460 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700461
Dan Williams78a6f062011-06-30 16:31:37 -0700462 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700463 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700464 } else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700465 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700466 "%s: SCIC Controller 0x%p received event 0x%x "
467 "for remote device object 0x%0x that doesnt "
468 "exist.\n",
469 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700470 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700471 ent,
Dan Williamscc9203b2011-05-08 17:34:44 -0700472 index);
473
474 break;
475
476 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700477 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700478 "%s: SCIC Controller received unknown event code %x\n",
479 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700480 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700481 break;
482 }
483}
484
Dan Williams89a73012011-06-30 19:14:33 -0700485static void sci_controller_process_completions(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700486{
487 u32 completion_count = 0;
Dan Williams89a73012011-06-30 19:14:33 -0700488 u32 ent;
Dan Williamscc9203b2011-05-08 17:34:44 -0700489 u32 get_index;
490 u32 get_cycle;
Dan Williams994a9302011-06-09 16:04:28 -0700491 u32 event_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700492 u32 event_cycle;
493
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700494 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700495 "%s: completion queue begining get:0x%08x\n",
496 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700497 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700498
499 /* Get the component parts of the completion queue */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700500 get_index = NORMALIZE_GET_POINTER(ihost->completion_queue_get);
501 get_cycle = SMU_CQGR_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700502
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700503 event_get = NORMALIZE_EVENT_POINTER(ihost->completion_queue_get);
504 event_cycle = SMU_CQGR_EVENT_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700505
506 while (
507 NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700508 == COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index])
Dan Williamscc9203b2011-05-08 17:34:44 -0700509 ) {
510 completion_count++;
511
Dan Williams89a73012011-06-30 19:14:33 -0700512 ent = ihost->completion_queue[get_index];
Dan Williams994a9302011-06-09 16:04:28 -0700513
514 /* increment the get pointer and check for rollover to toggle the cycle bit */
515 get_cycle ^= ((get_index+1) & SCU_MAX_COMPLETION_QUEUE_ENTRIES) <<
516 (SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT - SCU_MAX_COMPLETION_QUEUE_SHIFT);
517 get_index = (get_index+1) & (SCU_MAX_COMPLETION_QUEUE_ENTRIES-1);
Dan Williamscc9203b2011-05-08 17:34:44 -0700518
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700519 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700520 "%s: completion queue entry:0x%08x\n",
521 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700522 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700523
Dan Williams89a73012011-06-30 19:14:33 -0700524 switch (SCU_GET_COMPLETION_TYPE(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700525 case SCU_COMPLETION_TYPE_TASK:
Dan Williams89a73012011-06-30 19:14:33 -0700526 sci_controller_task_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700527 break;
528
529 case SCU_COMPLETION_TYPE_SDMA:
Dan Williams89a73012011-06-30 19:14:33 -0700530 sci_controller_sdma_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700531 break;
532
533 case SCU_COMPLETION_TYPE_UFI:
Dan Williams89a73012011-06-30 19:14:33 -0700534 sci_controller_unsolicited_frame(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700535 break;
536
537 case SCU_COMPLETION_TYPE_EVENT:
Dan Williams77cd72a2011-07-29 17:17:16 -0700538 sci_controller_event_completion(ihost, ent);
539 break;
540
Dan Williams994a9302011-06-09 16:04:28 -0700541 case SCU_COMPLETION_TYPE_NOTIFY: {
542 event_cycle ^= ((event_get+1) & SCU_MAX_EVENTS) <<
543 (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT - SCU_MAX_EVENTS_SHIFT);
544 event_get = (event_get+1) & (SCU_MAX_EVENTS-1);
545
Dan Williams89a73012011-06-30 19:14:33 -0700546 sci_controller_event_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700547 break;
Dan Williams994a9302011-06-09 16:04:28 -0700548 }
Dan Williamscc9203b2011-05-08 17:34:44 -0700549 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700550 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700551 "%s: SCIC Controller received unknown "
552 "completion type %x\n",
553 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700554 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700555 break;
556 }
557 }
558
559 /* Update the get register if we completed one or more entries */
560 if (completion_count > 0) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700561 ihost->completion_queue_get =
Dan Williamscc9203b2011-05-08 17:34:44 -0700562 SMU_CQGR_GEN_BIT(ENABLE) |
563 SMU_CQGR_GEN_BIT(EVENT_ENABLE) |
564 event_cycle |
Dan Williams994a9302011-06-09 16:04:28 -0700565 SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700566 get_cycle |
567 SMU_CQGR_GEN_VAL(POINTER, get_index);
568
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700569 writel(ihost->completion_queue_get,
570 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700571
572 }
573
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700574 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700575 "%s: completion queue ending get:0x%08x\n",
576 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700577 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700578
579}
580
Dan Williams89a73012011-06-30 19:14:33 -0700581static void sci_controller_error_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700582{
583 u32 interrupt_status;
584
585 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700586 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700587
588 if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) &&
Dan Williams89a73012011-06-30 19:14:33 -0700589 sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700590
Dan Williams89a73012011-06-30 19:14:33 -0700591 sci_controller_process_completions(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700592 writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700593 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700594 dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__,
Dan Williamscc9203b2011-05-08 17:34:44 -0700595 interrupt_status);
596
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700597 sci_change_state(&ihost->sm, SCIC_FAILED);
Dan Williamscc9203b2011-05-08 17:34:44 -0700598
599 return;
600 }
601
602 /* If we dont process any completions I am not sure that we want to do this.
603 * We are in the middle of a hardware fault and should probably be reset.
604 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700605 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700606}
607
Dan Williamsc7ef4032011-02-18 09:25:05 -0800608irqreturn_t isci_intx_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700609{
Dan Williams6f231dd2011-07-02 22:56:22 -0700610 irqreturn_t ret = IRQ_NONE;
Dan Williams31e824e2011-04-19 12:32:51 -0700611 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700612
Dan Williams89a73012011-06-30 19:14:33 -0700613 if (sci_controller_isr(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700614 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williams31e824e2011-04-19 12:32:51 -0700615 tasklet_schedule(&ihost->completion_tasklet);
616 ret = IRQ_HANDLED;
Dan Williams89a73012011-06-30 19:14:33 -0700617 } else if (sci_controller_error_isr(ihost)) {
Dan Williams31e824e2011-04-19 12:32:51 -0700618 spin_lock(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -0700619 sci_controller_error_handler(ihost);
Dan Williams31e824e2011-04-19 12:32:51 -0700620 spin_unlock(&ihost->scic_lock);
621 ret = IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700622 }
Dan Williams92f4f0f2011-02-18 09:25:11 -0800623
Dan Williams6f231dd2011-07-02 22:56:22 -0700624 return ret;
625}
626
Dan Williams92f4f0f2011-02-18 09:25:11 -0800627irqreturn_t isci_error_isr(int vec, void *data)
628{
629 struct isci_host *ihost = data;
Dan Williams92f4f0f2011-02-18 09:25:11 -0800630
Dan Williams89a73012011-06-30 19:14:33 -0700631 if (sci_controller_error_isr(ihost))
632 sci_controller_error_handler(ihost);
Dan Williams92f4f0f2011-02-18 09:25:11 -0800633
634 return IRQ_HANDLED;
635}
Dan Williams6f231dd2011-07-02 22:56:22 -0700636
637/**
638 * isci_host_start_complete() - This function is called by the core library,
639 * through the ISCI Module, to indicate controller start status.
640 * @isci_host: This parameter specifies the ISCI host object
641 * @completion_status: This parameter specifies the completion status from the
642 * core library.
643 *
644 */
Dan Williamscc9203b2011-05-08 17:34:44 -0700645static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700646{
Dan Williams0cf89d12011-02-18 09:25:07 -0800647 if (completion_status != SCI_SUCCESS)
648 dev_info(&ihost->pdev->dev,
649 "controller start timed out, continuing...\n");
Dan Williams0cf89d12011-02-18 09:25:07 -0800650 clear_bit(IHOST_START_PENDING, &ihost->flags);
651 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700652}
653
Dan Williamsc7ef4032011-02-18 09:25:05 -0800654int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
Dan Williams6f231dd2011-07-02 22:56:22 -0700655{
Dan Williamsb1124cd2011-12-19 16:42:34 -0800656 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
657 struct isci_host *ihost = ha->lldd_ha;
Dan Williams6f231dd2011-07-02 22:56:22 -0700658
Edmund Nadolski77950f52011-02-18 09:25:09 -0800659 if (test_bit(IHOST_START_PENDING, &ihost->flags))
Dan Williams6f231dd2011-07-02 22:56:22 -0700660 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700661
Dan Williamsb1124cd2011-12-19 16:42:34 -0800662 sas_drain_work(ha);
Dan Williams6f231dd2011-07-02 22:56:22 -0700663
Dan Williams6f231dd2011-07-02 22:56:22 -0700664 return 1;
Dan Williams6f231dd2011-07-02 22:56:22 -0700665}
666
Dan Williamscc9203b2011-05-08 17:34:44 -0700667/**
Dan Williams89a73012011-06-30 19:14:33 -0700668 * sci_controller_get_suggested_start_timeout() - This method returns the
669 * suggested sci_controller_start() timeout amount. The user is free to
Dan Williamscc9203b2011-05-08 17:34:44 -0700670 * use any timeout value, but this method provides the suggested minimum
671 * start timeout value. The returned value is based upon empirical
672 * information determined as a result of interoperability testing.
673 * @controller: the handle to the controller object for which to return the
674 * suggested start timeout.
675 *
676 * This method returns the number of milliseconds for the suggested start
677 * operation timeout.
678 */
Dan Williams89a73012011-06-30 19:14:33 -0700679static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700680{
681 /* Validate the user supplied parameters. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700682 if (!ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700683 return 0;
684
685 /*
686 * The suggested minimum timeout value for a controller start operation:
687 *
688 * Signature FIS Timeout
689 * + Phy Start Timeout
690 * + Number of Phy Spin Up Intervals
691 * ---------------------------------
692 * Number of milliseconds for the controller start operation.
693 *
694 * NOTE: The number of phy spin up intervals will be equivalent
695 * to the number of phys divided by the number phys allowed
696 * per interval - 1 (once OEM parameters are supported).
697 * Currently we assume only 1 phy per interval. */
698
699 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
700 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
701 + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
702}
703
Dan Williams89a73012011-06-30 19:14:33 -0700704static void sci_controller_enable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700705{
Dan Williams2396a2652012-03-01 17:06:24 -0800706 set_bit(IHOST_IRQ_ENABLED, &ihost->flags);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700707 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700708}
709
Dan Williams89a73012011-06-30 19:14:33 -0700710void sci_controller_disable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700711{
Dan Williams2396a2652012-03-01 17:06:24 -0800712 clear_bit(IHOST_IRQ_ENABLED, &ihost->flags);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700713 writel(0xffffffff, &ihost->smu_registers->interrupt_mask);
Dan Williams2396a2652012-03-01 17:06:24 -0800714 readl(&ihost->smu_registers->interrupt_mask); /* flush */
Dan Williamscc9203b2011-05-08 17:34:44 -0700715}
716
Dan Williams89a73012011-06-30 19:14:33 -0700717static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700718{
719 u32 port_task_scheduler_value;
720
721 port_task_scheduler_value =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700722 readl(&ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700723 port_task_scheduler_value |=
724 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) |
725 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE));
726 writel(port_task_scheduler_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700727 &ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700728}
729
Dan Williams89a73012011-06-30 19:14:33 -0700730static void sci_controller_assign_task_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700731{
732 u32 task_assignment;
733
734 /*
735 * Assign all the TCs to function 0
736 * TODO: Do we actually need to read this register to write it back?
737 */
738
739 task_assignment =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700740 readl(&ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700741
742 task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) |
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700743 (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700744 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE));
745
746 writel(task_assignment,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700747 &ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700748
749}
750
Dan Williams89a73012011-06-30 19:14:33 -0700751static void sci_controller_initialize_completion_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700752{
753 u32 index;
754 u32 completion_queue_control_value;
755 u32 completion_queue_get_value;
756 u32 completion_queue_put_value;
757
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700758 ihost->completion_queue_get = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -0700759
Dan Williams7c78da32011-06-01 16:00:01 -0700760 completion_queue_control_value =
761 (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES - 1) |
762 SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS - 1));
Dan Williamscc9203b2011-05-08 17:34:44 -0700763
764 writel(completion_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700765 &ihost->smu_registers->completion_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700766
767
768 /* Set the completion queue get pointer and enable the queue */
769 completion_queue_get_value = (
770 (SMU_CQGR_GEN_VAL(POINTER, 0))
771 | (SMU_CQGR_GEN_VAL(EVENT_POINTER, 0))
772 | (SMU_CQGR_GEN_BIT(ENABLE))
773 | (SMU_CQGR_GEN_BIT(EVENT_ENABLE))
774 );
775
776 writel(completion_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700777 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700778
779 /* Set the completion queue put pointer */
780 completion_queue_put_value = (
781 (SMU_CQPR_GEN_VAL(POINTER, 0))
782 | (SMU_CQPR_GEN_VAL(EVENT_POINTER, 0))
783 );
784
785 writel(completion_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700786 &ihost->smu_registers->completion_queue_put);
Dan Williamscc9203b2011-05-08 17:34:44 -0700787
788 /* Initialize the cycle bit of the completion queue entries */
Dan Williams7c78da32011-06-01 16:00:01 -0700789 for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700790 /*
791 * If get.cycle_bit != completion_queue.cycle_bit
792 * its not a valid completion queue entry
793 * so at system start all entries are invalid */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700794 ihost->completion_queue[index] = 0x80000000;
Dan Williamscc9203b2011-05-08 17:34:44 -0700795 }
796}
797
Dan Williams89a73012011-06-30 19:14:33 -0700798static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700799{
800 u32 frame_queue_control_value;
801 u32 frame_queue_get_value;
802 u32 frame_queue_put_value;
803
804 /* Write the queue size */
805 frame_queue_control_value =
Dan Williams7c78da32011-06-01 16:00:01 -0700806 SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES);
Dan Williamscc9203b2011-05-08 17:34:44 -0700807
808 writel(frame_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700809 &ihost->scu_registers->sdma.unsolicited_frame_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700810
811 /* Setup the get pointer for the unsolicited frame queue */
812 frame_queue_get_value = (
813 SCU_UFQGP_GEN_VAL(POINTER, 0)
814 | SCU_UFQGP_GEN_BIT(ENABLE_BIT)
815 );
816
817 writel(frame_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700818 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700819 /* Setup the put pointer for the unsolicited frame queue */
820 frame_queue_put_value = SCU_UFQPP_GEN_VAL(POINTER, 0);
821 writel(frame_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700822 &ihost->scu_registers->sdma.unsolicited_frame_put_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700823}
824
Dan Williams50a92d92012-02-29 01:07:56 -0800825void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status)
Dan Williamscc9203b2011-05-08 17:34:44 -0700826{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700827 if (ihost->sm.current_state_id == SCIC_STARTING) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700828 /*
829 * We move into the ready state, because some of the phys/ports
830 * may be up and operational.
831 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700832 sci_change_state(&ihost->sm, SCIC_READY);
Dan Williamscc9203b2011-05-08 17:34:44 -0700833
834 isci_host_start_complete(ihost, status);
835 }
836}
837
Dan Williams85280952011-06-28 15:05:53 -0700838static bool is_phy_starting(struct isci_phy *iphy)
Adam Gruchala4a33c522011-05-10 23:54:23 +0000839{
Dan Williams89a73012011-06-30 19:14:33 -0700840 enum sci_phy_states state;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000841
Dan Williams85280952011-06-28 15:05:53 -0700842 state = iphy->sm.current_state_id;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000843 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000844 case SCI_PHY_STARTING:
845 case SCI_PHY_SUB_INITIAL:
846 case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN:
847 case SCI_PHY_SUB_AWAIT_IAF_UF:
848 case SCI_PHY_SUB_AWAIT_SAS_POWER:
849 case SCI_PHY_SUB_AWAIT_SATA_POWER:
850 case SCI_PHY_SUB_AWAIT_SATA_PHY_EN:
851 case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN:
Dan Williams50a92d92012-02-29 01:07:56 -0800852 case SCI_PHY_SUB_AWAIT_OSSP_EN:
Edmund Nadolskie3013702011-06-02 00:10:43 +0000853 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF:
854 case SCI_PHY_SUB_FINAL:
Adam Gruchala4a33c522011-05-10 23:54:23 +0000855 return true;
856 default:
857 return false;
858 }
859}
860
Dan Williams50a92d92012-02-29 01:07:56 -0800861bool is_controller_start_complete(struct isci_host *ihost)
862{
863 int i;
864
865 for (i = 0; i < SCI_MAX_PHYS; i++) {
866 struct isci_phy *iphy = &ihost->phys[i];
867 u32 state = iphy->sm.current_state_id;
868
869 /* in apc mode we need to check every phy, in
870 * mpc mode we only need to check phys that have
871 * been configured into a port
872 */
873 if (is_port_config_apc(ihost))
874 /* pass */;
875 else if (!phy_get_non_dummy_port(iphy))
876 continue;
877
878 /* The controller start operation is complete iff:
879 * - all links have been given an opportunity to start
880 * - have no indication of a connected device
881 * - have an indication of a connected device and it has
882 * finished the link training process.
883 */
884 if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) ||
885 (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) ||
886 (iphy->is_in_link_training == true && is_phy_starting(iphy)) ||
887 (ihost->port_agent.phy_ready_mask != ihost->port_agent.phy_configured_mask))
888 return false;
889 }
890
891 return true;
892}
893
Dan Williamscc9203b2011-05-08 17:34:44 -0700894/**
Dan Williams89a73012011-06-30 19:14:33 -0700895 * sci_controller_start_next_phy - start phy
Dan Williamscc9203b2011-05-08 17:34:44 -0700896 * @scic: controller
897 *
898 * If all the phys have been started, then attempt to transition the
899 * controller to the READY state and inform the user
Dan Williams89a73012011-06-30 19:14:33 -0700900 * (sci_cb_controller_start_complete()).
Dan Williamscc9203b2011-05-08 17:34:44 -0700901 */
Dan Williams89a73012011-06-30 19:14:33 -0700902static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700903{
Dan Williams89a73012011-06-30 19:14:33 -0700904 struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williams85280952011-06-28 15:05:53 -0700905 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700906 enum sci_status status;
907
908 status = SCI_SUCCESS;
909
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700910 if (ihost->phy_startup_timer_pending)
Dan Williamscc9203b2011-05-08 17:34:44 -0700911 return status;
912
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700913 if (ihost->next_phy_to_start >= SCI_MAX_PHYS) {
Dan Williams50a92d92012-02-29 01:07:56 -0800914 if (is_controller_start_complete(ihost)) {
Dan Williams89a73012011-06-30 19:14:33 -0700915 sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700916 sci_del_timer(&ihost->phy_timer);
917 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -0700918 }
919 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700920 iphy = &ihost->phys[ihost->next_phy_to_start];
Dan Williamscc9203b2011-05-08 17:34:44 -0700921
922 if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
Dan Williams85280952011-06-28 15:05:53 -0700923 if (phy_get_non_dummy_port(iphy) == NULL) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700924 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700925
926 /* Caution recursion ahead be forwarned
927 *
928 * The PHY was never added to a PORT in MPC mode
929 * so start the next phy in sequence This phy
930 * will never go link up and will not draw power
931 * the OEM parameters either configured the phy
932 * incorrectly for the PORT or it was never
933 * assigned to a PORT
934 */
Dan Williams89a73012011-06-30 19:14:33 -0700935 return sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -0700936 }
937 }
938
Dan Williams89a73012011-06-30 19:14:33 -0700939 status = sci_phy_start(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -0700940
941 if (status == SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700942 sci_mod_timer(&ihost->phy_timer,
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700943 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700944 ihost->phy_startup_timer_pending = true;
Dan Williamscc9203b2011-05-08 17:34:44 -0700945 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700946 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700947 "%s: Controller stop operation failed "
948 "to stop phy %d because of status "
949 "%d.\n",
950 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700951 ihost->phys[ihost->next_phy_to_start].phy_index,
Dan Williamscc9203b2011-05-08 17:34:44 -0700952 status);
953 }
954
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700955 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700956 }
957
958 return status;
959}
960
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700961static void phy_startup_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -0700962{
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700963 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700964 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700965 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -0700966 enum sci_status status;
967
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700968 spin_lock_irqsave(&ihost->scic_lock, flags);
969
970 if (tmr->cancel)
971 goto done;
972
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700973 ihost->phy_startup_timer_pending = false;
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700974
975 do {
Dan Williams89a73012011-06-30 19:14:33 -0700976 status = sci_controller_start_next_phy(ihost);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700977 } while (status != SCI_SUCCESS);
978
979done:
980 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -0700981}
982
Dan Williamsac668c62011-06-07 18:50:55 -0700983static u16 isci_tci_active(struct isci_host *ihost)
984{
985 return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
986}
987
Dan Williams89a73012011-06-30 19:14:33 -0700988static enum sci_status sci_controller_start(struct isci_host *ihost,
Dan Williamscc9203b2011-05-08 17:34:44 -0700989 u32 timeout)
990{
Dan Williamscc9203b2011-05-08 17:34:44 -0700991 enum sci_status result;
992 u16 index;
993
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700994 if (ihost->sm.current_state_id != SCIC_INITIALIZED) {
Dan Williams14e99b42012-02-10 01:05:43 -0800995 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
996 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -0700997 return SCI_FAILURE_INVALID_STATE;
998 }
999
1000 /* Build the TCi free pool */
Dan Williamsac668c62011-06-07 18:50:55 -07001001 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8);
1002 ihost->tci_head = 0;
1003 ihost->tci_tail = 0;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001004 for (index = 0; index < ihost->task_context_entries; index++)
Dan Williamsac668c62011-06-07 18:50:55 -07001005 isci_tci_free(ihost, index);
Dan Williamscc9203b2011-05-08 17:34:44 -07001006
1007 /* Build the RNi free pool */
Dan Williams89a73012011-06-30 19:14:33 -07001008 sci_remote_node_table_initialize(&ihost->available_remote_nodes,
1009 ihost->remote_node_entries);
Dan Williamscc9203b2011-05-08 17:34:44 -07001010
1011 /*
1012 * Before anything else lets make sure we will not be
1013 * interrupted by the hardware.
1014 */
Dan Williams89a73012011-06-30 19:14:33 -07001015 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001016
1017 /* Enable the port task scheduler */
Dan Williams89a73012011-06-30 19:14:33 -07001018 sci_controller_enable_port_task_scheduler(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001019
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001020 /* Assign all the task entries to ihost physical function */
Dan Williams89a73012011-06-30 19:14:33 -07001021 sci_controller_assign_task_entries(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001022
1023 /* Now initialize the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001024 sci_controller_initialize_completion_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001025
1026 /* Initialize the unsolicited frame queue for use */
Dan Williams89a73012011-06-30 19:14:33 -07001027 sci_controller_initialize_unsolicited_frame_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001028
1029 /* Start all of the ports on this controller */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001030 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001031 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001032
Dan Williams89a73012011-06-30 19:14:33 -07001033 result = sci_port_start(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001034 if (result)
1035 return result;
1036 }
1037
Dan Williams89a73012011-06-30 19:14:33 -07001038 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001039
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001040 sci_mod_timer(&ihost->timer, timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07001041
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001042 sci_change_state(&ihost->sm, SCIC_STARTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001043
1044 return SCI_SUCCESS;
1045}
1046
Dan Williams6f231dd2011-07-02 22:56:22 -07001047void isci_host_scan_start(struct Scsi_Host *shost)
1048{
Dan Williams4393aa42011-03-31 13:10:44 -07001049 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams89a73012011-06-30 19:14:33 -07001050 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07001051
Dan Williams0cf89d12011-02-18 09:25:07 -08001052 set_bit(IHOST_START_PENDING, &ihost->flags);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001053
1054 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001055 sci_controller_start(ihost, tmo);
1056 sci_controller_enable_interrupts(ihost);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001057 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001058}
1059
Dan Williamseb608c32012-02-23 01:12:10 -08001060static void isci_host_stop_complete(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07001061{
Dan Williams89a73012011-06-30 19:14:33 -07001062 sci_controller_disable_interrupts(ihost);
Dan Williams0cf89d12011-02-18 09:25:07 -08001063 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
1064 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07001065}
1066
Dan Williams89a73012011-06-30 19:14:33 -07001067static void sci_controller_completion_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001068{
1069 /* Empty out the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001070 if (sci_controller_completion_queue_has_entries(ihost))
1071 sci_controller_process_completions(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001072
1073 /* Clear the interrupt and enable all interrupts again */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001074 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001075 /* Could we write the value of SMU_ISR_COMPLETION? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001076 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
1077 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07001078}
1079
Dan Williams6f231dd2011-07-02 22:56:22 -07001080/**
1081 * isci_host_completion_routine() - This function is the delayed service
1082 * routine that calls the sci core library's completion handler. It's
1083 * scheduled as a tasklet from the interrupt service routine when interrupts
1084 * in use, or set as the timeout function in polled mode.
1085 * @data: This parameter specifies the ISCI host object
1086 *
1087 */
Dan Williamsabec9122012-02-15 13:58:42 -08001088void isci_host_completion_routine(unsigned long data)
Dan Williams6f231dd2011-07-02 22:56:22 -07001089{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001090 struct isci_host *ihost = (struct isci_host *)data;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001091 struct list_head completed_request_list;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001092 struct list_head *current_position;
1093 struct list_head *next_position;
Dan Williams6f231dd2011-07-02 22:56:22 -07001094 struct isci_request *request;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001095 struct sas_task *task;
Dan Williams9b4be522011-07-29 17:17:10 -07001096 u16 active;
Dan Williams6f231dd2011-07-02 22:56:22 -07001097
1098 INIT_LIST_HEAD(&completed_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001099
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001100 spin_lock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001101
Dan Williams89a73012011-06-30 19:14:33 -07001102 sci_controller_completion_handler(ihost);
Dan Williamsc7ef4032011-02-18 09:25:05 -08001103
Dan Williams6f231dd2011-07-02 22:56:22 -07001104 /* Take the lists of completed I/Os from the host. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001105 list_splice_init(&ihost->requests_to_complete,
Dan Williams6f231dd2011-07-02 22:56:22 -07001106 &completed_request_list);
1107
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001108 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001109
Jeff Skirvin14aaa9f2012-03-08 22:41:54 -08001110 /* Process any completions in the list. */
Dan Williams6f231dd2011-07-02 22:56:22 -07001111 list_for_each_safe(current_position, next_position,
1112 &completed_request_list) {
1113
1114 request = list_entry(current_position, struct isci_request,
1115 completed_node);
1116 task = isci_request_access_task(request);
1117
Dan Williams6f231dd2011-07-02 22:56:22 -07001118
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001119 /* Return the task to libsas */
1120 if (task != NULL) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001121
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001122 task->lldd_task = NULL;
Jeff Skirvin14aaa9f2012-03-08 22:41:54 -08001123 if (!test_bit(IREQ_ABORT_PATH_ACTIVE, &request->flags) &&
1124 !(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1125 if (test_bit(IREQ_COMPLETE_IN_TARGET,
1126 &request->flags)) {
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001127
Jeff Skirvin14aaa9f2012-03-08 22:41:54 -08001128 /* Normal notification (task_done) */
1129 dev_dbg(&ihost->pdev->dev, "%s: Normal"
1130 " - request/task = %p/%p\n",
1131 __func__, request, task);
1132
1133 task->task_done(task);
1134 } else {
1135 dev_warn(&ihost->pdev->dev,
1136 "%s: Error - request/task"
1137 " = %p/%p\n",
1138 __func__, request, task);
1139
1140 sas_task_abort(task);
1141 }
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001142 }
1143 }
Dan Williams312e0c22011-06-28 13:47:09 -07001144
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001145 spin_lock_irq(&ihost->scic_lock);
1146 isci_free_tag(ihost, request->io_tag);
1147 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001148 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001149
Dan Williams9b4be522011-07-29 17:17:10 -07001150 /* the coalesence timeout doubles at each encoding step, so
1151 * update it based on the ilog2 value of the outstanding requests
1152 */
1153 active = isci_tci_active(ihost);
1154 writel(SMU_ICC_GEN_VAL(NUMBER, active) |
1155 SMU_ICC_GEN_VAL(TIMER, ISCI_COALESCE_BASE + ilog2(active)),
1156 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williams6f231dd2011-07-02 22:56:22 -07001157}
1158
Dan Williamscc9203b2011-05-08 17:34:44 -07001159/**
Dan Williams89a73012011-06-30 19:14:33 -07001160 * sci_controller_stop() - This method will stop an individual controller
Dan Williamscc9203b2011-05-08 17:34:44 -07001161 * object.This method will invoke the associated user callback upon
1162 * completion. The completion callback is called when the following
1163 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1164 * controller has been quiesced. This method will ensure that all IO
1165 * requests are quiesced, phys are stopped, and all additional operation by
1166 * the hardware is halted.
1167 * @controller: the handle to the controller object to stop.
1168 * @timeout: This parameter specifies the number of milliseconds in which the
1169 * stop operation should complete.
1170 *
1171 * The controller must be in the STARTED or STOPPED state. Indicate if the
1172 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1173 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1174 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1175 * controller is not either in the STARTED or STOPPED states.
1176 */
Dan Williams89a73012011-06-30 19:14:33 -07001177static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001178{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001179 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08001180 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1181 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07001182 return SCI_FAILURE_INVALID_STATE;
1183 }
1184
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001185 sci_mod_timer(&ihost->timer, timeout);
1186 sci_change_state(&ihost->sm, SCIC_STOPPING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001187 return SCI_SUCCESS;
1188}
1189
1190/**
Dan Williams89a73012011-06-30 19:14:33 -07001191 * sci_controller_reset() - This method will reset the supplied core
Dan Williamscc9203b2011-05-08 17:34:44 -07001192 * controller regardless of the state of said controller. This operation is
1193 * considered destructive. In other words, all current operations are wiped
1194 * out. No IO completions for outstanding devices occur. Outstanding IO
1195 * requests are not aborted or completed at the actual remote device.
1196 * @controller: the handle to the controller object to reset.
1197 *
1198 * Indicate if the controller reset method succeeded or failed in some way.
1199 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1200 * the controller reset operation is unable to complete.
1201 */
Dan Williams89a73012011-06-30 19:14:33 -07001202static enum sci_status sci_controller_reset(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001203{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001204 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001205 case SCIC_RESET:
1206 case SCIC_READY:
Dan Williamseb608c32012-02-23 01:12:10 -08001207 case SCIC_STOPPING:
Edmund Nadolskie3013702011-06-02 00:10:43 +00001208 case SCIC_FAILED:
Dan Williamscc9203b2011-05-08 17:34:44 -07001209 /*
1210 * The reset operation is not a graceful cleanup, just
1211 * perform the state transition.
1212 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001213 sci_change_state(&ihost->sm, SCIC_RESETTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001214 return SCI_SUCCESS;
1215 default:
Dan Williams14e99b42012-02-10 01:05:43 -08001216 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1217 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07001218 return SCI_FAILURE_INVALID_STATE;
1219 }
1220}
1221
Dan Williamseb608c32012-02-23 01:12:10 -08001222static enum sci_status sci_controller_stop_phys(struct isci_host *ihost)
1223{
1224 u32 index;
1225 enum sci_status status;
1226 enum sci_status phy_status;
1227
1228 status = SCI_SUCCESS;
1229
1230 for (index = 0; index < SCI_MAX_PHYS; index++) {
1231 phy_status = sci_phy_stop(&ihost->phys[index]);
1232
1233 if (phy_status != SCI_SUCCESS &&
1234 phy_status != SCI_FAILURE_INVALID_STATE) {
1235 status = SCI_FAILURE;
1236
1237 dev_warn(&ihost->pdev->dev,
1238 "%s: Controller stop operation failed to stop "
1239 "phy %d because of status %d.\n",
1240 __func__,
1241 ihost->phys[index].phy_index, phy_status);
1242 }
1243 }
1244
1245 return status;
1246}
1247
1248
1249/**
1250 * isci_host_deinit - shutdown frame reception and dma
1251 * @ihost: host to take down
1252 *
1253 * This is called in either the driver shutdown or the suspend path. In
1254 * the shutdown case libsas went through port teardown and normal device
1255 * removal (i.e. physical links stayed up to service scsi_device removal
1256 * commands). In the suspend case we disable the hardware without
1257 * notifying libsas of the link down events since we want libsas to
1258 * remember the domain across the suspend/resume cycle
1259 */
Dan Williams0cf89d12011-02-18 09:25:07 -08001260void isci_host_deinit(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07001261{
1262 int i;
1263
Dan Williamsad4f4c12011-09-01 21:18:31 -07001264 /* disable output data selects */
1265 for (i = 0; i < isci_gpio_count(ihost); i++)
1266 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
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
Dan Williamseb608c32012-02-23 01:12:10 -08001276 /* phy stop is after controller stop to allow port and device to
1277 * go idle before shutting down the phys, but the expectation is
1278 * that i/o has been shut off well before we reach this
1279 * function.
1280 */
1281 sci_controller_stop_phys(ihost);
1282
Dan Williamsad4f4c12011-09-01 21:18:31 -07001283 /* disable sgpio: where the above wait should give time for the
1284 * enclosure to sample the gpios going inactive
1285 */
1286 writel(0, &ihost->scu_registers->peg0.sgpio.interface_control);
1287
Dan Williams2396a2652012-03-01 17:06:24 -08001288 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001289 sci_controller_reset(ihost);
Dan Williams2396a2652012-03-01 17:06:24 -08001290 spin_unlock_irq(&ihost->scic_lock);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001291
1292 /* Cancel any/all outstanding port timers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001293 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001294 struct isci_port *iport = &ihost->ports[i];
1295 del_timer_sync(&iport->timer.timer);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001296 }
1297
Edmund Nadolskia628d472011-05-19 11:59:36 +00001298 /* Cancel any/all outstanding phy timers */
1299 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams85280952011-06-28 15:05:53 -07001300 struct isci_phy *iphy = &ihost->phys[i];
1301 del_timer_sync(&iphy->sata_timer.timer);
Edmund Nadolskia628d472011-05-19 11:59:36 +00001302 }
1303
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001304 del_timer_sync(&ihost->port_agent.timer.timer);
Edmund Nadolskiac0eeb42011-05-19 20:00:51 -07001305
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001306 del_timer_sync(&ihost->power_control.timer.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001307
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001308 del_timer_sync(&ihost->timer.timer);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001309
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001310 del_timer_sync(&ihost->phy_timer.timer);
Dan Williams6f231dd2011-07-02 22:56:22 -07001311}
1312
Dan Williams6f231dd2011-07-02 22:56:22 -07001313static void __iomem *scu_base(struct isci_host *isci_host)
1314{
1315 struct pci_dev *pdev = isci_host->pdev;
1316 int id = isci_host->id;
1317
1318 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
1319}
1320
1321static void __iomem *smu_base(struct isci_host *isci_host)
1322{
1323 struct pci_dev *pdev = isci_host->pdev;
1324 int id = isci_host->id;
1325
1326 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
1327}
1328
Dan Williams89a73012011-06-30 19:14:33 -07001329static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001330{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001331 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001332
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001333 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001334}
1335
Dan Williams89a73012011-06-30 19:14:33 -07001336static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001337{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001338 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001339
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001340 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001341}
1342
1343#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1344#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1345#define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1346#define INTERRUPT_COALESCE_NUMBER_MAX 256
1347#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1348#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1349
1350/**
Dan Williams89a73012011-06-30 19:14:33 -07001351 * sci_controller_set_interrupt_coalescence() - This method allows the user to
Dan Williamscc9203b2011-05-08 17:34:44 -07001352 * configure the interrupt coalescence.
1353 * @controller: This parameter represents the handle to the controller object
1354 * for which its interrupt coalesce register is overridden.
1355 * @coalesce_number: Used to control the number of entries in the Completion
1356 * Queue before an interrupt is generated. If the number of entries exceed
1357 * this number, an interrupt will be generated. The valid range of the input
1358 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1359 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1360 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1361 * interrupt coalescing timeout.
1362 *
1363 * Indicate if the user successfully set the interrupt coalesce parameters.
1364 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1365 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1366 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001367static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001368sci_controller_set_interrupt_coalescence(struct isci_host *ihost,
1369 u32 coalesce_number,
1370 u32 coalesce_timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001371{
1372 u8 timeout_encode = 0;
1373 u32 min = 0;
1374 u32 max = 0;
1375
1376 /* Check if the input parameters fall in the range. */
1377 if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX)
1378 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1379
1380 /*
1381 * Defined encoding for interrupt coalescing timeout:
1382 * Value Min Max Units
1383 * ----- --- --- -----
1384 * 0 - - Disabled
1385 * 1 13.3 20.0 ns
1386 * 2 26.7 40.0
1387 * 3 53.3 80.0
1388 * 4 106.7 160.0
1389 * 5 213.3 320.0
1390 * 6 426.7 640.0
1391 * 7 853.3 1280.0
1392 * 8 1.7 2.6 us
1393 * 9 3.4 5.1
1394 * 10 6.8 10.2
1395 * 11 13.7 20.5
1396 * 12 27.3 41.0
1397 * 13 54.6 81.9
1398 * 14 109.2 163.8
1399 * 15 218.5 327.7
1400 * 16 436.9 655.4
1401 * 17 873.8 1310.7
1402 * 18 1.7 2.6 ms
1403 * 19 3.5 5.2
1404 * 20 7.0 10.5
1405 * 21 14.0 21.0
1406 * 22 28.0 41.9
1407 * 23 55.9 83.9
1408 * 24 111.8 167.8
1409 * 25 223.7 335.5
1410 * 26 447.4 671.1
1411 * 27 894.8 1342.2
1412 * 28 1.8 2.7 s
1413 * Others Undefined */
1414
1415 /*
1416 * Use the table above to decide the encode of interrupt coalescing timeout
1417 * value for register writing. */
1418 if (coalesce_timeout == 0)
1419 timeout_encode = 0;
1420 else{
1421 /* make the timeout value in unit of (10 ns). */
1422 coalesce_timeout = coalesce_timeout * 100;
1423 min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10;
1424 max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10;
1425
1426 /* get the encode of timeout for register writing. */
1427 for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN;
1428 timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX;
1429 timeout_encode++) {
1430 if (min <= coalesce_timeout && max > coalesce_timeout)
1431 break;
1432 else if (coalesce_timeout >= max && coalesce_timeout < min * 2
1433 && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) {
1434 if ((coalesce_timeout - max) < (2 * min - coalesce_timeout))
1435 break;
1436 else{
1437 timeout_encode++;
1438 break;
1439 }
1440 } else {
1441 max = max * 2;
1442 min = min * 2;
1443 }
1444 }
1445
1446 if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1)
1447 /* the value is out of range. */
1448 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1449 }
1450
1451 writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) |
1452 SMU_ICC_GEN_VAL(TIMER, timeout_encode),
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001453 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001454
1455
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001456 ihost->interrupt_coalesce_number = (u16)coalesce_number;
1457 ihost->interrupt_coalesce_timeout = coalesce_timeout / 100;
Dan Williamscc9203b2011-05-08 17:34:44 -07001458
1459 return SCI_SUCCESS;
1460}
1461
1462
Dan Williams89a73012011-06-30 19:14:33 -07001463static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001464{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001465 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Marcin Tomczake5cc6aa2012-01-27 11:14:50 -08001466 u32 val;
1467
1468 /* enable clock gating for power control of the scu unit */
1469 val = readl(&ihost->smu_registers->clock_gating_control);
1470 val &= ~(SMU_CGUCR_GEN_BIT(REGCLK_ENABLE) |
1471 SMU_CGUCR_GEN_BIT(TXCLK_ENABLE) |
1472 SMU_CGUCR_GEN_BIT(XCLK_ENABLE));
1473 val |= SMU_CGUCR_GEN_BIT(IDLE_ENABLE);
1474 writel(val, &ihost->smu_registers->clock_gating_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001475
1476 /* set the default interrupt coalescence number and timeout value. */
Dan Williams9b4be522011-07-29 17:17:10 -07001477 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001478}
1479
Dan Williams89a73012011-06-30 19:14:33 -07001480static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001481{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001482 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001483
1484 /* disable interrupt coalescence. */
Dan Williams89a73012011-06-30 19:14:33 -07001485 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001486}
1487
Dan Williams89a73012011-06-30 19:14:33 -07001488static enum sci_status sci_controller_stop_ports(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001489{
1490 u32 index;
1491 enum sci_status port_status;
1492 enum sci_status status = SCI_SUCCESS;
Dan Williamscc9203b2011-05-08 17:34:44 -07001493
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001494 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001495 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001496
Dan Williams89a73012011-06-30 19:14:33 -07001497 port_status = sci_port_stop(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001498
1499 if ((port_status != SCI_SUCCESS) &&
1500 (port_status != SCI_FAILURE_INVALID_STATE)) {
1501 status = SCI_FAILURE;
1502
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001503 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001504 "%s: Controller stop operation failed to "
1505 "stop port %d because of status %d.\n",
1506 __func__,
Dan Williamsffe191c2011-06-29 13:09:25 -07001507 iport->logical_port_index,
Dan Williamscc9203b2011-05-08 17:34:44 -07001508 port_status);
1509 }
1510 }
1511
1512 return status;
1513}
1514
Dan Williams89a73012011-06-30 19:14:33 -07001515static enum sci_status sci_controller_stop_devices(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001516{
1517 u32 index;
1518 enum sci_status status;
1519 enum sci_status device_status;
1520
1521 status = SCI_SUCCESS;
1522
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001523 for (index = 0; index < ihost->remote_node_entries; index++) {
1524 if (ihost->device_table[index] != NULL) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001525 /* / @todo What timeout value do we want to provide to this request? */
Dan Williams89a73012011-06-30 19:14:33 -07001526 device_status = sci_remote_device_stop(ihost->device_table[index], 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001527
1528 if ((device_status != SCI_SUCCESS) &&
1529 (device_status != SCI_FAILURE_INVALID_STATE)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001530 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001531 "%s: Controller stop operation failed "
1532 "to stop device 0x%p because of "
1533 "status %d.\n",
1534 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001535 ihost->device_table[index], device_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001536 }
1537 }
1538 }
1539
1540 return status;
1541}
1542
Dan Williams89a73012011-06-30 19:14:33 -07001543static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001544{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001545 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001546
Dan Williams89a73012011-06-30 19:14:33 -07001547 sci_controller_stop_devices(ihost);
Dan Williamseb608c32012-02-23 01:12:10 -08001548 sci_controller_stop_ports(ihost);
1549
1550 if (!sci_controller_has_remote_devices_stopping(ihost))
1551 isci_host_stop_complete(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001552}
1553
Dan Williams89a73012011-06-30 19:14:33 -07001554static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001555{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001556 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001557
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001558 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001559}
1560
Dan Williams89a73012011-06-30 19:14:33 -07001561static void sci_controller_reset_hardware(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001562{
1563 /* Disable interrupts so we dont take any spurious interrupts */
Dan Williams89a73012011-06-30 19:14:33 -07001564 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001565
1566 /* Reset the SCU */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001567 writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001568
1569 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1570 udelay(1000);
1571
1572 /* The write to the CQGR clears the CQP */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001573 writel(0x00000000, &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -07001574
1575 /* The write to the UFQGP clears the UFQPR */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001576 writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williams2396a2652012-03-01 17:06:24 -08001577
1578 /* clear all interrupts */
1579 writel(~SMU_INTERRUPT_STATUS_RESERVED_MASK, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001580}
1581
Dan Williams89a73012011-06-30 19:14:33 -07001582static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001583{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001584 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001585
Dan Williams89a73012011-06-30 19:14:33 -07001586 sci_controller_reset_hardware(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001587 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001588}
1589
Dan Williams89a73012011-06-30 19:14:33 -07001590static const struct sci_base_state sci_controller_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001591 [SCIC_INITIAL] = {
Dan Williams89a73012011-06-30 19:14:33 -07001592 .enter_state = sci_controller_initial_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001593 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001594 [SCIC_RESET] = {},
1595 [SCIC_INITIALIZING] = {},
1596 [SCIC_INITIALIZED] = {},
1597 [SCIC_STARTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001598 .exit_state = sci_controller_starting_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001599 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001600 [SCIC_READY] = {
Dan Williams89a73012011-06-30 19:14:33 -07001601 .enter_state = sci_controller_ready_state_enter,
1602 .exit_state = sci_controller_ready_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001603 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001604 [SCIC_RESETTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001605 .enter_state = sci_controller_resetting_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001606 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001607 [SCIC_STOPPING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001608 .enter_state = sci_controller_stopping_state_enter,
1609 .exit_state = sci_controller_stopping_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001610 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001611 [SCIC_FAILED] = {}
Dan Williamscc9203b2011-05-08 17:34:44 -07001612};
1613
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001614static void controller_timeout(unsigned long data)
1615{
1616 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001617 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer);
1618 struct sci_base_state_machine *sm = &ihost->sm;
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001619 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -07001620
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001621 spin_lock_irqsave(&ihost->scic_lock, flags);
1622
1623 if (tmr->cancel)
1624 goto done;
1625
Edmund Nadolskie3013702011-06-02 00:10:43 +00001626 if (sm->current_state_id == SCIC_STARTING)
Dan Williams89a73012011-06-30 19:14:33 -07001627 sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001628 else if (sm->current_state_id == SCIC_STOPPING) {
1629 sci_change_state(sm, SCIC_FAILED);
Dan Williamseb608c32012-02-23 01:12:10 -08001630 isci_host_stop_complete(ihost);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001631 } else /* / @todo Now what do we want to do in this case? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001632 dev_err(&ihost->pdev->dev,
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001633 "%s: Controller timer fired when controller was not "
1634 "in a state being timed.\n",
1635 __func__);
1636
1637done:
1638 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1639}
Dan Williamscc9203b2011-05-08 17:34:44 -07001640
Dan Williams89a73012011-06-30 19:14:33 -07001641static enum sci_status sci_controller_construct(struct isci_host *ihost,
1642 void __iomem *scu_base,
1643 void __iomem *smu_base)
Dan Williamscc9203b2011-05-08 17:34:44 -07001644{
Dan Williamscc9203b2011-05-08 17:34:44 -07001645 u8 i;
1646
Dan Williams89a73012011-06-30 19:14:33 -07001647 sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001648
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001649 ihost->scu_registers = scu_base;
1650 ihost->smu_registers = smu_base;
Dan Williamscc9203b2011-05-08 17:34:44 -07001651
Dan Williams89a73012011-06-30 19:14:33 -07001652 sci_port_configuration_agent_construct(&ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07001653
1654 /* Construct the ports for this controller */
1655 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williams89a73012011-06-30 19:14:33 -07001656 sci_port_construct(&ihost->ports[i], i, ihost);
1657 sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001658
1659 /* Construct the phys for this controller */
1660 for (i = 0; i < SCI_MAX_PHYS; i++) {
1661 /* Add all the PHYs to the dummy port */
Dan Williams89a73012011-06-30 19:14:33 -07001662 sci_phy_construct(&ihost->phys[i],
1663 &ihost->ports[SCI_MAX_PORTS], i);
Dan Williamscc9203b2011-05-08 17:34:44 -07001664 }
1665
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001666 ihost->invalid_phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001667
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001668 sci_init_timer(&ihost->timer, controller_timeout);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001669
Dan Williams89a73012011-06-30 19:14:33 -07001670 return sci_controller_reset(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001671}
1672
Dave Jiang594e5662012-01-04 01:32:44 -08001673int sci_oem_parameters_validate(struct sci_oem_params *oem, u8 version)
Dan Williamscc9203b2011-05-08 17:34:44 -07001674{
1675 int i;
1676
1677 for (i = 0; i < SCI_MAX_PORTS; i++)
1678 if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX)
1679 return -EINVAL;
1680
1681 for (i = 0; i < SCI_MAX_PHYS; i++)
1682 if (oem->phys[i].sas_address.high == 0 &&
1683 oem->phys[i].sas_address.low == 0)
1684 return -EINVAL;
1685
1686 if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) {
1687 for (i = 0; i < SCI_MAX_PHYS; i++)
1688 if (oem->ports[i].phy_mask != 0)
1689 return -EINVAL;
1690 } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
1691 u8 phy_mask = 0;
1692
1693 for (i = 0; i < SCI_MAX_PHYS; i++)
1694 phy_mask |= oem->ports[i].phy_mask;
1695
1696 if (phy_mask == 0)
1697 return -EINVAL;
1698 } else
1699 return -EINVAL;
1700
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001701 if (oem->controller.max_concurr_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT ||
1702 oem->controller.max_concurr_spin_up < 1)
Dan Williamscc9203b2011-05-08 17:34:44 -07001703 return -EINVAL;
1704
Dave Jiang594e5662012-01-04 01:32:44 -08001705 if (oem->controller.do_enable_ssc) {
1706 if (version < ISCI_ROM_VER_1_1 && oem->controller.do_enable_ssc != 1)
1707 return -EINVAL;
1708
1709 if (version >= ISCI_ROM_VER_1_1) {
1710 u8 test = oem->controller.ssc_sata_tx_spread_level;
1711
1712 switch (test) {
1713 case 0:
1714 case 2:
1715 case 3:
1716 case 6:
1717 case 7:
1718 break;
1719 default:
1720 return -EINVAL;
1721 }
1722
1723 test = oem->controller.ssc_sas_tx_spread_level;
1724 if (oem->controller.ssc_sas_tx_type == 0) {
1725 switch (test) {
1726 case 0:
1727 case 2:
1728 case 3:
1729 break;
1730 default:
1731 return -EINVAL;
1732 }
1733 } else if (oem->controller.ssc_sas_tx_type == 1) {
1734 switch (test) {
1735 case 0:
1736 case 3:
1737 case 6:
1738 break;
1739 default:
1740 return -EINVAL;
1741 }
1742 }
1743 }
1744 }
1745
Dan Williamscc9203b2011-05-08 17:34:44 -07001746 return 0;
1747}
1748
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001749static u8 max_spin_up(struct isci_host *ihost)
1750{
1751 if (ihost->user_parameters.max_concurr_spinup)
1752 return min_t(u8, ihost->user_parameters.max_concurr_spinup,
1753 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1754 else
1755 return min_t(u8, ihost->oem_parameters.controller.max_concurr_spin_up,
1756 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1757}
1758
Edmund Nadolski04736612011-05-19 20:17:47 -07001759static void power_control_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -07001760{
Edmund Nadolski04736612011-05-19 20:17:47 -07001761 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001762 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer);
Dan Williams85280952011-06-28 15:05:53 -07001763 struct isci_phy *iphy;
Edmund Nadolski04736612011-05-19 20:17:47 -07001764 unsigned long flags;
1765 u8 i;
Dan Williamscc9203b2011-05-08 17:34:44 -07001766
Edmund Nadolski04736612011-05-19 20:17:47 -07001767 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001768
Edmund Nadolski04736612011-05-19 20:17:47 -07001769 if (tmr->cancel)
1770 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001771
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001772 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001773
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001774 if (ihost->power_control.phys_waiting == 0) {
1775 ihost->power_control.timer_started = false;
Edmund Nadolski04736612011-05-19 20:17:47 -07001776 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001777 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001778
1779 for (i = 0; i < SCI_MAX_PHYS; i++) {
1780
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001781 if (ihost->power_control.phys_waiting == 0)
Edmund Nadolski04736612011-05-19 20:17:47 -07001782 break;
1783
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001784 iphy = ihost->power_control.requesters[i];
Dan Williams85280952011-06-28 15:05:53 -07001785 if (iphy == NULL)
Edmund Nadolski04736612011-05-19 20:17:47 -07001786 continue;
1787
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001788 if (ihost->power_control.phys_granted_power >= max_spin_up(ihost))
Edmund Nadolski04736612011-05-19 20:17:47 -07001789 break;
1790
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001791 ihost->power_control.requesters[i] = NULL;
1792 ihost->power_control.phys_waiting--;
1793 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001794 sci_phy_consume_power_handler(iphy);
Marcin Tomczakbe778342012-01-04 01:33:31 -08001795
Dan Williamsc79dd802012-02-01 00:44:14 -08001796 if (iphy->protocol == SAS_PROTOCOL_SSP) {
Marcin Tomczakbe778342012-01-04 01:33:31 -08001797 u8 j;
1798
1799 for (j = 0; j < SCI_MAX_PHYS; j++) {
1800 struct isci_phy *requester = ihost->power_control.requesters[j];
1801
1802 /*
1803 * Search the power_control queue to see if there are other phys
1804 * attached to the same remote device. If found, take all of
1805 * them out of await_sas_power state.
1806 */
1807 if (requester != NULL && requester != iphy) {
1808 u8 other = memcmp(requester->frame_rcvd.iaf.sas_addr,
1809 iphy->frame_rcvd.iaf.sas_addr,
1810 sizeof(requester->frame_rcvd.iaf.sas_addr));
1811
1812 if (other == 0) {
1813 ihost->power_control.requesters[j] = NULL;
1814 ihost->power_control.phys_waiting--;
1815 sci_phy_consume_power_handler(requester);
1816 }
1817 }
1818 }
1819 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001820 }
1821
1822 /*
1823 * It doesn't matter if the power list is empty, we need to start the
1824 * timer in case another phy becomes ready.
1825 */
1826 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001827 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001828
1829done:
1830 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001831}
1832
Dan Williams89a73012011-06-30 19:14:33 -07001833void sci_controller_power_control_queue_insert(struct isci_host *ihost,
1834 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001835{
Dan Williams85280952011-06-28 15:05:53 -07001836 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001837
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001838 if (ihost->power_control.phys_granted_power < max_spin_up(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001839 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001840 sci_phy_consume_power_handler(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07001841
1842 /*
1843 * stop and start the power_control timer. When the timer fires, the
1844 * no_of_phys_granted_power will be set to 0
1845 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001846 if (ihost->power_control.timer_started)
1847 sci_del_timer(&ihost->power_control.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001848
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001849 sci_mod_timer(&ihost->power_control.timer,
Edmund Nadolski04736612011-05-19 20:17:47 -07001850 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001851 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001852
Dan Williamscc9203b2011-05-08 17:34:44 -07001853 } else {
Marcin Tomczakbe778342012-01-04 01:33:31 -08001854 /*
1855 * There are phys, attached to the same sas address as this phy, are
1856 * already in READY state, this phy don't need wait.
1857 */
1858 u8 i;
1859 struct isci_phy *current_phy;
1860
1861 for (i = 0; i < SCI_MAX_PHYS; i++) {
1862 u8 other;
1863 current_phy = &ihost->phys[i];
1864
1865 other = memcmp(current_phy->frame_rcvd.iaf.sas_addr,
1866 iphy->frame_rcvd.iaf.sas_addr,
1867 sizeof(current_phy->frame_rcvd.iaf.sas_addr));
1868
1869 if (current_phy->sm.current_state_id == SCI_PHY_READY &&
Dan Williamsc79dd802012-02-01 00:44:14 -08001870 current_phy->protocol == SAS_PROTOCOL_SSP &&
Marcin Tomczakbe778342012-01-04 01:33:31 -08001871 other == 0) {
1872 sci_phy_consume_power_handler(iphy);
1873 break;
1874 }
1875 }
1876
1877 if (i == SCI_MAX_PHYS) {
1878 /* Add the phy in the waiting list */
1879 ihost->power_control.requesters[iphy->phy_index] = iphy;
1880 ihost->power_control.phys_waiting++;
1881 }
Dan Williamscc9203b2011-05-08 17:34:44 -07001882 }
1883}
1884
Dan Williams89a73012011-06-30 19:14:33 -07001885void sci_controller_power_control_queue_remove(struct isci_host *ihost,
1886 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001887{
Dan Williams85280952011-06-28 15:05:53 -07001888 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001889
Dan Williams89a73012011-06-30 19:14:33 -07001890 if (ihost->power_control.requesters[iphy->phy_index])
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001891 ihost->power_control.phys_waiting--;
Dan Williamscc9203b2011-05-08 17:34:44 -07001892
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001893 ihost->power_control.requesters[iphy->phy_index] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07001894}
1895
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001896static int is_long_cable(int phy, unsigned char selection_byte)
1897{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001898 return !!(selection_byte & (1 << phy));
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001899}
1900
1901static int is_medium_cable(int phy, unsigned char selection_byte)
1902{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001903 return !!(selection_byte & (1 << (phy + 4)));
1904}
1905
1906static enum cable_selections decode_selection_byte(
1907 int phy,
1908 unsigned char selection_byte)
1909{
1910 return ((selection_byte & (1 << phy)) ? 1 : 0)
1911 + (selection_byte & (1 << (phy + 4)) ? 2 : 0);
1912}
1913
1914static unsigned char *to_cable_select(struct isci_host *ihost)
1915{
1916 if (is_cable_select_overridden())
1917 return ((unsigned char *)&cable_selection_override)
1918 + ihost->id;
1919 else
1920 return &ihost->oem_parameters.controller.cable_selection_mask;
1921}
1922
1923enum cable_selections decode_cable_selection(struct isci_host *ihost, int phy)
1924{
1925 return decode_selection_byte(phy, *to_cable_select(ihost));
1926}
1927
1928char *lookup_cable_names(enum cable_selections selection)
1929{
1930 static char *cable_names[] = {
1931 [short_cable] = "short",
1932 [long_cable] = "long",
1933 [medium_cable] = "medium",
1934 [undefined_cable] = "<undefined, assumed long>" /* bit 0==1 */
1935 };
1936 return (selection <= undefined_cable) ? cable_names[selection]
1937 : cable_names[undefined_cable];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001938}
1939
Dan Williamscc9203b2011-05-08 17:34:44 -07001940#define AFE_REGISTER_WRITE_DELAY 10
1941
Dan Williams89a73012011-06-30 19:14:33 -07001942static void sci_controller_afe_initialization(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001943{
Dan Williams2e5da882012-01-04 01:32:34 -08001944 struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe;
Dan Williams89a73012011-06-30 19:14:33 -07001945 const struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001946 struct pci_dev *pdev = ihost->pdev;
Dan Williamscc9203b2011-05-08 17:34:44 -07001947 u32 afe_status;
1948 u32 phy_id;
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001949 unsigned char cable_selection_mask = *to_cable_select(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001950
1951 /* Clear DFX Status registers */
Dan Williams2e5da882012-01-04 01:32:34 -08001952 writel(0x0081000f, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001953 udelay(AFE_REGISTER_WRITE_DELAY);
1954
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001955 if (is_b0(pdev) || is_c0(pdev) || is_c1(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001956 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
Dan Williams2e5da882012-01-04 01:32:34 -08001957 * Timer, PM Stagger Timer
1958 */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001959 writel(0x0007FFFF, &afe->afe_pmsn_master_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07001960 udelay(AFE_REGISTER_WRITE_DELAY);
1961 }
1962
1963 /* Configure bias currents to normal */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001964 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08001965 writel(0x00005A00, &afe->afe_bias_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001966 else if (is_b0(pdev) || is_c0(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08001967 writel(0x00005F00, &afe->afe_bias_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001968 else if (is_c1(pdev))
1969 writel(0x00005500, &afe->afe_bias_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001970
1971 udelay(AFE_REGISTER_WRITE_DELAY);
1972
1973 /* Enable PLL */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001974 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08001975 writel(0x80040908, &afe->afe_pll_control0);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08001976 else if (is_b0(pdev) || is_c0(pdev))
1977 writel(0x80040A08, &afe->afe_pll_control0);
1978 else if (is_c1(pdev)) {
1979 writel(0x80000B08, &afe->afe_pll_control0);
1980 udelay(AFE_REGISTER_WRITE_DELAY);
1981 writel(0x00000B08, &afe->afe_pll_control0);
1982 udelay(AFE_REGISTER_WRITE_DELAY);
1983 writel(0x80000B08, &afe->afe_pll_control0);
1984 }
Dan Williamscc9203b2011-05-08 17:34:44 -07001985
1986 udelay(AFE_REGISTER_WRITE_DELAY);
1987
1988 /* Wait for the PLL to lock */
1989 do {
Dan Williams2e5da882012-01-04 01:32:34 -08001990 afe_status = readl(&afe->afe_common_block_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001991 udelay(AFE_REGISTER_WRITE_DELAY);
1992 } while ((afe_status & 0x00001000) == 0);
1993
Dan Williamsdc00c8b2011-07-01 11:41:21 -07001994 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08001995 /* Shorten SAS SNW lock time (RxLock timer value from 76
1996 * us to 50 us)
1997 */
1998 writel(0x7bcc96ad, &afe->afe_pmsn_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001999 udelay(AFE_REGISTER_WRITE_DELAY);
2000 }
2001
2002 for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) {
Dan Williams2e5da882012-01-04 01:32:34 -08002003 struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_id];
Dan Williamscc9203b2011-05-08 17:34:44 -07002004 const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002005 int cable_length_long =
2006 is_long_cable(phy_id, cable_selection_mask);
2007 int cable_length_medium =
2008 is_medium_cable(phy_id, cable_selection_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07002009
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002010 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002011 /* All defaults, except the Receive Word
2012 * Alignament/Comma Detect Enable....(0xe800)
2013 */
2014 writel(0x00004512, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002015 udelay(AFE_REGISTER_WRITE_DELAY);
2016
Dan Williams2e5da882012-01-04 01:32:34 -08002017 writel(0x0050100F, &xcvr->afe_xcvr_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002018 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002019 } else if (is_b0(pdev)) {
2020 /* Configure transmitter SSC parameters */
2021 writel(0x00030000, &xcvr->afe_tx_ssc_control);
2022 udelay(AFE_REGISTER_WRITE_DELAY);
2023 } else if (is_c0(pdev)) {
2024 /* Configure transmitter SSC parameters */
2025 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2026 udelay(AFE_REGISTER_WRITE_DELAY);
2027
2028 /* All defaults, except the Receive Word
2029 * Alignament/Comma Detect Enable....(0xe800)
2030 */
2031 writel(0x00014500, &xcvr->afe_xcvr_control0);
2032 udelay(AFE_REGISTER_WRITE_DELAY);
2033 } else if (is_c1(pdev)) {
2034 /* Configure transmitter SSC parameters */
2035 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2036 udelay(AFE_REGISTER_WRITE_DELAY);
2037
2038 /* All defaults, except the Receive Word
2039 * Alignament/Comma Detect Enable....(0xe800)
2040 */
2041 writel(0x0001C500, &xcvr->afe_xcvr_control0);
2042 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamscc9203b2011-05-08 17:34:44 -07002043 }
2044
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002045 /* Power up TX and RX out from power down (PWRDNTX and
2046 * PWRDNRX) & increase TX int & ext bias 20%....(0xe85c)
Dan Williams2e5da882012-01-04 01:32:34 -08002047 */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002048 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002049 writel(0x000003F0, &xcvr->afe_channel_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002050 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002051 writel(0x000003D7, &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002052 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002053
Dan Williams2e5da882012-01-04 01:32:34 -08002054 writel(0x000003D4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002055 } else if (is_c0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002056 writel(0x000001E7, &xcvr->afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002057 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002058
Dan Williams2e5da882012-01-04 01:32:34 -08002059 writel(0x000001E4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002060 } else if (is_c1(pdev)) {
2061 writel(cable_length_long ? 0x000002F7 : 0x000001F7,
2062 &xcvr->afe_channel_control);
2063 udelay(AFE_REGISTER_WRITE_DELAY);
2064
2065 writel(cable_length_long ? 0x000002F4 : 0x000001F4,
2066 &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002067 }
2068 udelay(AFE_REGISTER_WRITE_DELAY);
2069
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002070 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002071 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002072 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002073 udelay(AFE_REGISTER_WRITE_DELAY);
2074 }
2075
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002076 if (is_a2(pdev) || is_b0(pdev))
2077 /* RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0,
2078 * TPD=0x0(TX Power On), RDD=0x0(RX Detect
2079 * Enabled) ....(0xe800)
2080 */
2081 writel(0x00004100, &xcvr->afe_xcvr_control0);
2082 else if (is_c0(pdev))
2083 writel(0x00014100, &xcvr->afe_xcvr_control0);
2084 else if (is_c1(pdev))
2085 writel(0x0001C100, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002086 udelay(AFE_REGISTER_WRITE_DELAY);
2087
2088 /* Leave DFE/FFE on */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002089 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002090 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002091 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002092 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002093 udelay(AFE_REGISTER_WRITE_DELAY);
2094 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002095 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002096 } else if (is_c0(pdev)) {
2097 writel(0x01400C0F, &xcvr->afe_rx_ssc_control1);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002098 udelay(AFE_REGISTER_WRITE_DELAY);
2099
Dan Williams2e5da882012-01-04 01:32:34 -08002100 writel(0x3F6F103F, &xcvr->afe_rx_ssc_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002101 udelay(AFE_REGISTER_WRITE_DELAY);
2102
2103 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002104 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002105 } else if (is_c1(pdev)) {
2106 writel(cable_length_long ? 0x01500C0C :
2107 cable_length_medium ? 0x01400C0D : 0x02400C0D,
2108 &xcvr->afe_xcvr_control1);
2109 udelay(AFE_REGISTER_WRITE_DELAY);
2110
2111 writel(0x000003E0, &xcvr->afe_dfx_rx_control1);
2112 udelay(AFE_REGISTER_WRITE_DELAY);
2113
2114 writel(cable_length_long ? 0x33091C1F :
2115 cable_length_medium ? 0x3315181F : 0x2B17161F,
2116 &xcvr->afe_rx_ssc_control0);
2117 udelay(AFE_REGISTER_WRITE_DELAY);
2118
2119 /* Enable TX equalization (0xe824) */
2120 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002121 }
Adam Gruchaladbb07432011-06-01 22:31:03 +00002122
Dan Williamscc9203b2011-05-08 17:34:44 -07002123 udelay(AFE_REGISTER_WRITE_DELAY);
2124
Dan Williams2e5da882012-01-04 01:32:34 -08002125 writel(oem_phy->afe_tx_amp_control0, &xcvr->afe_tx_amp_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002126 udelay(AFE_REGISTER_WRITE_DELAY);
2127
Dan Williams2e5da882012-01-04 01:32:34 -08002128 writel(oem_phy->afe_tx_amp_control1, &xcvr->afe_tx_amp_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002129 udelay(AFE_REGISTER_WRITE_DELAY);
2130
Dan Williams2e5da882012-01-04 01:32:34 -08002131 writel(oem_phy->afe_tx_amp_control2, &xcvr->afe_tx_amp_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002132 udelay(AFE_REGISTER_WRITE_DELAY);
2133
Dan Williams2e5da882012-01-04 01:32:34 -08002134 writel(oem_phy->afe_tx_amp_control3, &xcvr->afe_tx_amp_control3);
Dan Williamscc9203b2011-05-08 17:34:44 -07002135 udelay(AFE_REGISTER_WRITE_DELAY);
2136 }
2137
2138 /* Transfer control to the PEs */
Dan Williams2e5da882012-01-04 01:32:34 -08002139 writel(0x00010f00, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002140 udelay(AFE_REGISTER_WRITE_DELAY);
2141}
2142
Dan Williams89a73012011-06-30 19:14:33 -07002143static void sci_controller_initialize_power_control(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002144{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002145 sci_init_timer(&ihost->power_control.timer, power_control_timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07002146
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002147 memset(ihost->power_control.requesters, 0,
2148 sizeof(ihost->power_control.requesters));
Dan Williamscc9203b2011-05-08 17:34:44 -07002149
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002150 ihost->power_control.phys_waiting = 0;
2151 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002152}
2153
Dan Williams89a73012011-06-30 19:14:33 -07002154static enum sci_status sci_controller_initialize(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002155{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002156 struct sci_base_state_machine *sm = &ihost->sm;
Dan Williams7c78da32011-06-01 16:00:01 -07002157 enum sci_status result = SCI_FAILURE;
2158 unsigned long i, state, val;
Dan Williamscc9203b2011-05-08 17:34:44 -07002159
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002160 if (ihost->sm.current_state_id != SCIC_RESET) {
Dan Williams14e99b42012-02-10 01:05:43 -08002161 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2162 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002163 return SCI_FAILURE_INVALID_STATE;
2164 }
2165
Edmund Nadolskie3013702011-06-02 00:10:43 +00002166 sci_change_state(sm, SCIC_INITIALIZING);
Dan Williamscc9203b2011-05-08 17:34:44 -07002167
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002168 sci_init_timer(&ihost->phy_timer, phy_startup_timeout);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -07002169
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002170 ihost->next_phy_to_start = 0;
2171 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07002172
Dan Williams89a73012011-06-30 19:14:33 -07002173 sci_controller_initialize_power_control(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002174
2175 /*
2176 * There is nothing to do here for B0 since we do not have to
2177 * program the AFE registers.
2178 * / @todo The AFE settings are supposed to be correct for the B0 but
2179 * / presently they seem to be wrong. */
Dan Williams89a73012011-06-30 19:14:33 -07002180 sci_controller_afe_initialization(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002181
Dan Williams7c78da32011-06-01 16:00:01 -07002182
2183 /* Take the hardware out of reset */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002184 writel(0, &ihost->smu_registers->soft_reset_control);
Dan Williams7c78da32011-06-01 16:00:01 -07002185
2186 /*
2187 * / @todo Provide meaningfull error code for hardware failure
2188 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2189 for (i = 100; i >= 1; i--) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002190 u32 status;
Dan Williamscc9203b2011-05-08 17:34:44 -07002191
Dan Williams7c78da32011-06-01 16:00:01 -07002192 /* Loop until the hardware reports success */
2193 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002194 status = readl(&ihost->smu_registers->control_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002195
Dan Williams7c78da32011-06-01 16:00:01 -07002196 if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED)
2197 break;
Dan Williamscc9203b2011-05-08 17:34:44 -07002198 }
Dan Williams7c78da32011-06-01 16:00:01 -07002199 if (i == 0)
2200 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002201
Dan Williams7c78da32011-06-01 16:00:01 -07002202 /*
2203 * Determine what are the actaul device capacities that the
2204 * hardware will support */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002205 val = readl(&ihost->smu_registers->device_context_capacity);
Dan Williamscc9203b2011-05-08 17:34:44 -07002206
Dan Williams7c78da32011-06-01 16:00:01 -07002207 /* Record the smaller of the two capacity values */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002208 ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS);
2209 ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS);
2210 ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES);
Dan Williamscc9203b2011-05-08 17:34:44 -07002211
Dan Williams7c78da32011-06-01 16:00:01 -07002212 /*
2213 * Make all PEs that are unassigned match up with the
2214 * logical ports
2215 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002216 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams7c78da32011-06-01 16:00:01 -07002217 struct scu_port_task_scheduler_group_registers __iomem
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002218 *ptsg = &ihost->scu_registers->peg0.ptsg;
Dan Williamscc9203b2011-05-08 17:34:44 -07002219
Dan Williams7c78da32011-06-01 16:00:01 -07002220 writel(i, &ptsg->protocol_engine[i]);
Dan Williamscc9203b2011-05-08 17:34:44 -07002221 }
2222
2223 /* Initialize hardware PCI Relaxed ordering in DMA engines */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002224 val = readl(&ihost->scu_registers->sdma.pdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002225 val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002226 writel(val, &ihost->scu_registers->sdma.pdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002227
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002228 val = readl(&ihost->scu_registers->sdma.cdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002229 val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002230 writel(val, &ihost->scu_registers->sdma.cdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002231
2232 /*
2233 * Initialize the PHYs before the PORTs because the PHY registers
2234 * are accessed during the port initialization.
2235 */
Dan Williams7c78da32011-06-01 16:00:01 -07002236 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002237 result = sci_phy_initialize(&ihost->phys[i],
2238 &ihost->scu_registers->peg0.pe[i].tl,
2239 &ihost->scu_registers->peg0.pe[i].ll);
Dan Williams7c78da32011-06-01 16:00:01 -07002240 if (result != SCI_SUCCESS)
2241 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002242 }
2243
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002244 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002245 struct isci_port *iport = &ihost->ports[i];
Dan Williams7c78da32011-06-01 16:00:01 -07002246
Dan Williams89a73012011-06-30 19:14:33 -07002247 iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i];
2248 iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0];
2249 iport->viit_registers = &ihost->scu_registers->peg0.viit[i];
Dan Williamscc9203b2011-05-08 17:34:44 -07002250 }
2251
Dan Williams89a73012011-06-30 19:14:33 -07002252 result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07002253
Dan Williams7c78da32011-06-01 16:00:01 -07002254 out:
Dan Williamscc9203b2011-05-08 17:34:44 -07002255 /* Advance the controller state machine */
2256 if (result == SCI_SUCCESS)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002257 state = SCIC_INITIALIZED;
Dan Williamscc9203b2011-05-08 17:34:44 -07002258 else
Edmund Nadolskie3013702011-06-02 00:10:43 +00002259 state = SCIC_FAILED;
2260 sci_change_state(sm, state);
Dan Williamscc9203b2011-05-08 17:34:44 -07002261
2262 return result;
2263}
2264
Dan Williamsabec9122012-02-15 13:58:42 -08002265static int sci_controller_dma_alloc(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002266{
Dan Williamsabec9122012-02-15 13:58:42 -08002267 struct device *dev = &ihost->pdev->dev;
2268 size_t size;
2269 int i;
Dan Williamscc9203b2011-05-08 17:34:44 -07002270
Dan Williamsabec9122012-02-15 13:58:42 -08002271 /* detect re-initialization */
2272 if (ihost->completion_queue)
2273 return 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002274
Dan Williamsabec9122012-02-15 13:58:42 -08002275 size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32);
2276 ihost->completion_queue = dmam_alloc_coherent(dev, size, &ihost->cq_dma,
2277 GFP_KERNEL);
2278 if (!ihost->completion_queue)
2279 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002280
Dan Williamsabec9122012-02-15 13:58:42 -08002281 size = ihost->remote_node_entries * sizeof(union scu_remote_node_context);
2282 ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &ihost->rnc_dma,
2283 GFP_KERNEL);
Dan Williamscc9203b2011-05-08 17:34:44 -07002284
Dan Williamsabec9122012-02-15 13:58:42 -08002285 if (!ihost->remote_node_context_table)
2286 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002287
Dan Williamsabec9122012-02-15 13:58:42 -08002288 size = ihost->task_context_entries * sizeof(struct scu_task_context),
2289 ihost->task_context_table = dmam_alloc_coherent(dev, size, &ihost->tc_dma,
2290 GFP_KERNEL);
2291 if (!ihost->task_context_table)
2292 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002293
Dan Williamsabec9122012-02-15 13:58:42 -08002294 size = SCI_UFI_TOTAL_SIZE;
2295 ihost->ufi_buf = dmam_alloc_coherent(dev, size, &ihost->ufi_dma, GFP_KERNEL);
2296 if (!ihost->ufi_buf)
2297 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002298
Dan Williamsabec9122012-02-15 13:58:42 -08002299 for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) {
2300 struct isci_request *ireq;
2301 dma_addr_t dma;
Dan Williamscc9203b2011-05-08 17:34:44 -07002302
Dan Williamsabec9122012-02-15 13:58:42 -08002303 ireq = dmam_alloc_coherent(dev, sizeof(*ireq), &dma, GFP_KERNEL);
2304 if (!ireq)
2305 return -ENOMEM;
Dan Williamscc9203b2011-05-08 17:34:44 -07002306
Dan Williamsabec9122012-02-15 13:58:42 -08002307 ireq->tc = &ihost->task_context_table[i];
2308 ireq->owning_controller = ihost;
Dan Williamsabec9122012-02-15 13:58:42 -08002309 ireq->request_daddr = dma;
2310 ireq->isci_host = ihost;
2311 ihost->reqs[i] = ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002312 }
2313
Dan Williamsabec9122012-02-15 13:58:42 -08002314 return 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002315}
2316
Dan Williams89a73012011-06-30 19:14:33 -07002317static int sci_controller_mem_init(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002318{
Dan Williamsabec9122012-02-15 13:58:42 -08002319 int err = sci_controller_dma_alloc(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002320
Dan Williams7c78da32011-06-01 16:00:01 -07002321 if (err)
2322 return err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002323
Dan Williamsabec9122012-02-15 13:58:42 -08002324 writel(lower_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_lower);
2325 writel(upper_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_upper);
2326
2327 writel(lower_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_lower);
2328 writel(upper_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_upper);
2329
2330 writel(lower_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_lower);
2331 writel(upper_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_upper);
2332
2333 sci_unsolicited_frame_control_construct(ihost);
2334
Dan Williamscc9203b2011-05-08 17:34:44 -07002335 /*
2336 * Inform the silicon as to the location of the UF headers and
2337 * address table.
2338 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002339 writel(lower_32_bits(ihost->uf_control.headers.physical_address),
2340 &ihost->scu_registers->sdma.uf_header_base_address_lower);
2341 writel(upper_32_bits(ihost->uf_control.headers.physical_address),
2342 &ihost->scu_registers->sdma.uf_header_base_address_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002343
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002344 writel(lower_32_bits(ihost->uf_control.address_table.physical_address),
2345 &ihost->scu_registers->sdma.uf_address_table_lower);
2346 writel(upper_32_bits(ihost->uf_control.address_table.physical_address),
2347 &ihost->scu_registers->sdma.uf_address_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002348
2349 return 0;
2350}
2351
Dan Williamsabec9122012-02-15 13:58:42 -08002352/**
2353 * isci_host_init - (re-)initialize hardware and internal (private) state
2354 * @ihost: host to init
2355 *
2356 * Any public facing objects (like asd_sas_port, and asd_sas_phys), or
2357 * one-time initialization objects like locks and waitqueues, are
2358 * not touched (they are initialized in isci_host_alloc)
2359 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002360int isci_host_init(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07002361{
Dan Williamsabec9122012-02-15 13:58:42 -08002362 int i, err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002363 enum sci_status status;
Dan Williams6f231dd2011-07-02 22:56:22 -07002364
Dan Williams2396a2652012-03-01 17:06:24 -08002365 spin_lock_irq(&ihost->scic_lock);
Dan Williamsabec9122012-02-15 13:58:42 -08002366 status = sci_controller_construct(ihost, scu_base(ihost), smu_base(ihost));
Dan Williams2396a2652012-03-01 17:06:24 -08002367 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07002368 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002369 dev_err(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002370 "%s: sci_controller_construct failed - status = %x\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002371 __func__,
2372 status);
Dave Jiang858d4aa2011-02-22 01:27:03 -08002373 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002374 }
2375
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002376 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07002377 status = sci_controller_initialize(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002378 spin_unlock_irq(&ihost->scic_lock);
Dan Williams7c40a802011-03-02 11:49:26 -08002379 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002380 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002381 "%s: sci_controller_initialize failed -"
Dan Williams7c40a802011-03-02 11:49:26 -08002382 " status = 0x%x\n",
2383 __func__, status);
2384 return -ENODEV;
2385 }
2386
Dan Williams89a73012011-06-30 19:14:33 -07002387 err = sci_controller_mem_init(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002388 if (err)
Dave Jiang858d4aa2011-02-22 01:27:03 -08002389 return err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002390
Dan Williamsad4f4c12011-09-01 21:18:31 -07002391 /* enable sgpio */
2392 writel(1, &ihost->scu_registers->peg0.sgpio.interface_control);
2393 for (i = 0; i < isci_gpio_count(ihost); i++)
2394 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
2395 writel(0, &ihost->scu_registers->peg0.sgpio.vendor_specific_code);
2396
Dave Jiang858d4aa2011-02-22 01:27:03 -08002397 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -07002398}
Dan Williamscc9203b2011-05-08 17:34:44 -07002399
Dan Williams89a73012011-06-30 19:14:33 -07002400void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport,
2401 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002402{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002403 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002404 case SCIC_STARTING:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002405 sci_del_timer(&ihost->phy_timer);
2406 ihost->phy_startup_timer_pending = false;
2407 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002408 iport, iphy);
2409 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002410 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002411 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002412 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002413 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002414 break;
2415 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002416 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002417 "%s: SCIC Controller linkup event from phy %d in "
Dan Williams85280952011-06-28 15:05:53 -07002418 "unexpected state %d\n", __func__, iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002419 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002420 }
2421}
2422
Dan Williams89a73012011-06-30 19:14:33 -07002423void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport,
2424 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002425{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002426 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002427 case SCIC_STARTING:
2428 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002429 ihost->port_agent.link_down_handler(ihost, &ihost->port_agent,
Dan Williamsffe191c2011-06-29 13:09:25 -07002430 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002431 break;
2432 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002433 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002434 "%s: SCIC Controller linkdown event from phy %d in "
2435 "unexpected state %d\n",
2436 __func__,
Dan Williams85280952011-06-28 15:05:53 -07002437 iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002438 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002439 }
2440}
2441
Dan Williamseb608c32012-02-23 01:12:10 -08002442bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002443{
2444 u32 index;
2445
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002446 for (index = 0; index < ihost->remote_node_entries; index++) {
2447 if ((ihost->device_table[index] != NULL) &&
2448 (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING))
Dan Williamscc9203b2011-05-08 17:34:44 -07002449 return true;
2450 }
2451
2452 return false;
2453}
2454
Dan Williams89a73012011-06-30 19:14:33 -07002455void sci_controller_remote_device_stopped(struct isci_host *ihost,
2456 struct isci_remote_device *idev)
Dan Williamscc9203b2011-05-08 17:34:44 -07002457{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002458 if (ihost->sm.current_state_id != SCIC_STOPPING) {
2459 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002460 "SCIC Controller 0x%p remote device stopped event "
2461 "from device 0x%p in unexpected state %d\n",
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002462 ihost, idev,
2463 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002464 return;
2465 }
2466
Dan Williams89a73012011-06-30 19:14:33 -07002467 if (!sci_controller_has_remote_devices_stopping(ihost))
Dan Williamseb608c32012-02-23 01:12:10 -08002468 isci_host_stop_complete(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002469}
2470
Dan Williams89a73012011-06-30 19:14:33 -07002471void sci_controller_post_request(struct isci_host *ihost, u32 request)
Dan Williamscc9203b2011-05-08 17:34:44 -07002472{
Dan Williams89a73012011-06-30 19:14:33 -07002473 dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n",
2474 __func__, ihost->id, request);
Dan Williamscc9203b2011-05-08 17:34:44 -07002475
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002476 writel(request, &ihost->smu_registers->post_context_port);
Dan Williamscc9203b2011-05-08 17:34:44 -07002477}
2478
Dan Williams89a73012011-06-30 19:14:33 -07002479struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag)
Dan Williamscc9203b2011-05-08 17:34:44 -07002480{
2481 u16 task_index;
2482 u16 task_sequence;
2483
Dan Williamsdd047c82011-06-09 11:06:58 -07002484 task_index = ISCI_TAG_TCI(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002485
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002486 if (task_index < ihost->task_context_entries) {
2487 struct isci_request *ireq = ihost->reqs[task_index];
Dan Williamsdb056252011-06-17 14:18:39 -07002488
2489 if (test_bit(IREQ_ACTIVE, &ireq->flags)) {
Dan Williamsdd047c82011-06-09 11:06:58 -07002490 task_sequence = ISCI_TAG_SEQ(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002491
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002492 if (task_sequence == ihost->io_request_sequence[task_index])
Dan Williams5076a1a2011-06-27 14:57:03 -07002493 return ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002494 }
2495 }
2496
2497 return NULL;
2498}
2499
2500/**
2501 * This method allocates remote node index and the reserves the remote node
2502 * context space for use. This method can fail if there are no more remote
2503 * node index available.
2504 * @scic: This is the controller object which contains the set of
2505 * free remote node ids
2506 * @sci_dev: This is the device object which is requesting the a remote node
2507 * id
2508 * @node_id: This is the remote node id that is assinged to the device if one
2509 * is available
2510 *
2511 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2512 * node index available.
2513 */
Dan Williams89a73012011-06-30 19:14:33 -07002514enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost,
2515 struct isci_remote_device *idev,
2516 u16 *node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002517{
2518 u16 node_index;
Dan Williams89a73012011-06-30 19:14:33 -07002519 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002520
Dan Williams89a73012011-06-30 19:14:33 -07002521 node_index = sci_remote_node_table_allocate_remote_node(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002522 &ihost->available_remote_nodes, remote_node_count
Dan Williamscc9203b2011-05-08 17:34:44 -07002523 );
2524
2525 if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002526 ihost->device_table[node_index] = idev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002527
2528 *node_id = node_index;
2529
2530 return SCI_SUCCESS;
2531 }
2532
2533 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
2534}
2535
Dan Williams89a73012011-06-30 19:14:33 -07002536void sci_controller_free_remote_node_context(struct isci_host *ihost,
2537 struct isci_remote_device *idev,
2538 u16 node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002539{
Dan Williams89a73012011-06-30 19:14:33 -07002540 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002541
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002542 if (ihost->device_table[node_id] == idev) {
2543 ihost->device_table[node_id] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002544
Dan Williams89a73012011-06-30 19:14:33 -07002545 sci_remote_node_table_release_remote_node_index(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002546 &ihost->available_remote_nodes, remote_node_count, node_id
Dan Williamscc9203b2011-05-08 17:34:44 -07002547 );
2548 }
2549}
2550
Dan Williams89a73012011-06-30 19:14:33 -07002551void sci_controller_copy_sata_response(void *response_buffer,
2552 void *frame_header,
2553 void *frame_buffer)
Dan Williamscc9203b2011-05-08 17:34:44 -07002554{
Dan Williams89a73012011-06-30 19:14:33 -07002555 /* XXX type safety? */
Dan Williamscc9203b2011-05-08 17:34:44 -07002556 memcpy(response_buffer, frame_header, sizeof(u32));
2557
2558 memcpy(response_buffer + sizeof(u32),
2559 frame_buffer,
2560 sizeof(struct dev_to_host_fis) - sizeof(u32));
2561}
2562
Dan Williams89a73012011-06-30 19:14:33 -07002563void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index)
Dan Williamscc9203b2011-05-08 17:34:44 -07002564{
Dan Williams89a73012011-06-30 19:14:33 -07002565 if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002566 writel(ihost->uf_control.get,
2567 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07002568}
2569
Dan Williams312e0c22011-06-28 13:47:09 -07002570void isci_tci_free(struct isci_host *ihost, u16 tci)
2571{
2572 u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1);
2573
2574 ihost->tci_pool[tail] = tci;
2575 ihost->tci_tail = tail + 1;
2576}
2577
2578static u16 isci_tci_alloc(struct isci_host *ihost)
2579{
2580 u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1);
2581 u16 tci = ihost->tci_pool[head];
2582
2583 ihost->tci_head = head + 1;
2584 return tci;
2585}
2586
2587static u16 isci_tci_space(struct isci_host *ihost)
2588{
2589 return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
2590}
2591
2592u16 isci_alloc_tag(struct isci_host *ihost)
2593{
2594 if (isci_tci_space(ihost)) {
2595 u16 tci = isci_tci_alloc(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002596 u8 seq = ihost->io_request_sequence[tci];
Dan Williams312e0c22011-06-28 13:47:09 -07002597
2598 return ISCI_TAG(seq, tci);
2599 }
2600
2601 return SCI_CONTROLLER_INVALID_IO_TAG;
2602}
2603
2604enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag)
2605{
Dan Williams312e0c22011-06-28 13:47:09 -07002606 u16 tci = ISCI_TAG_TCI(io_tag);
2607 u16 seq = ISCI_TAG_SEQ(io_tag);
2608
2609 /* prevent tail from passing head */
2610 if (isci_tci_active(ihost) == 0)
2611 return SCI_FAILURE_INVALID_IO_TAG;
2612
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002613 if (seq == ihost->io_request_sequence[tci]) {
2614 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1);
Dan Williams312e0c22011-06-28 13:47:09 -07002615
2616 isci_tci_free(ihost, tci);
2617
2618 return SCI_SUCCESS;
2619 }
2620 return SCI_FAILURE_INVALID_IO_TAG;
2621}
2622
Dan Williams89a73012011-06-30 19:14:33 -07002623enum sci_status sci_controller_start_io(struct isci_host *ihost,
2624 struct isci_remote_device *idev,
2625 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002626{
2627 enum sci_status status;
2628
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002629 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002630 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2631 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002632 return SCI_FAILURE_INVALID_STATE;
2633 }
2634
Dan Williams89a73012011-06-30 19:14:33 -07002635 status = sci_remote_device_start_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002636 if (status != SCI_SUCCESS)
2637 return status;
2638
Dan Williams5076a1a2011-06-27 14:57:03 -07002639 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002640 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002641 return SCI_SUCCESS;
2642}
2643
Dan Williams89a73012011-06-30 19:14:33 -07002644enum sci_status sci_controller_terminate_request(struct isci_host *ihost,
2645 struct isci_remote_device *idev,
2646 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002647{
Dan Williams89a73012011-06-30 19:14:33 -07002648 /* terminate an ongoing (i.e. started) core IO request. This does not
2649 * abort the IO request at the target, but rather removes the IO
2650 * request from the host controller.
2651 */
Dan Williamscc9203b2011-05-08 17:34:44 -07002652 enum sci_status status;
2653
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002654 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002655 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2656 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002657 return SCI_FAILURE_INVALID_STATE;
2658 }
Dan Williams89a73012011-06-30 19:14:33 -07002659 status = sci_io_request_terminate(ireq);
Jeff Skirvin14aaa9f2012-03-08 22:41:54 -08002660
2661 dev_dbg(&ihost->pdev->dev, "%s: status=%d; ireq=%p; flags=%lx\n",
2662 __func__, status, ireq, ireq->flags);
2663
Jeff Skirvin726980d2012-03-08 22:41:50 -08002664 if ((status == SCI_SUCCESS) &&
2665 !test_bit(IREQ_PENDING_ABORT, &ireq->flags) &&
2666 !test_and_set_bit(IREQ_TC_ABORT_POSTED, &ireq->flags)) {
2667 /* Utilize the original post context command and or in the
2668 * POST_TC_ABORT request sub-type.
2669 */
2670 sci_controller_post_request(
2671 ihost, ireq->post_context |
2672 SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT);
2673 }
2674 return status;
Dan Williamscc9203b2011-05-08 17:34:44 -07002675}
2676
2677/**
Dan Williams89a73012011-06-30 19:14:33 -07002678 * sci_controller_complete_io() - This method will perform core specific
Dan Williamscc9203b2011-05-08 17:34:44 -07002679 * completion operations for an IO request. After this method is invoked,
2680 * the user should consider the IO request as invalid until it is properly
2681 * reused (i.e. re-constructed).
Dan Williams89a73012011-06-30 19:14:33 -07002682 * @ihost: The handle to the controller object for which to complete the
Dan Williamscc9203b2011-05-08 17:34:44 -07002683 * IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002684 * @idev: The handle to the remote device object for which to complete
Dan Williamscc9203b2011-05-08 17:34:44 -07002685 * the IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002686 * @ireq: the handle to the io request object to complete.
Dan Williamscc9203b2011-05-08 17:34:44 -07002687 */
Dan Williams89a73012011-06-30 19:14:33 -07002688enum sci_status sci_controller_complete_io(struct isci_host *ihost,
2689 struct isci_remote_device *idev,
2690 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002691{
2692 enum sci_status status;
2693 u16 index;
2694
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002695 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002696 case SCIC_STOPPING:
Dan Williamscc9203b2011-05-08 17:34:44 -07002697 /* XXX: Implement this function */
2698 return SCI_FAILURE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002699 case SCIC_READY:
Dan Williams89a73012011-06-30 19:14:33 -07002700 status = sci_remote_device_complete_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002701 if (status != SCI_SUCCESS)
2702 return status;
2703
Dan Williams5076a1a2011-06-27 14:57:03 -07002704 index = ISCI_TAG_TCI(ireq->io_tag);
2705 clear_bit(IREQ_ACTIVE, &ireq->flags);
Jeff Skirvin14aaa9f2012-03-08 22:41:54 -08002706 if (test_bit(IREQ_ABORT_PATH_ACTIVE, &ireq->flags))
2707 wake_up_all(&ihost->eventq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002708 return SCI_SUCCESS;
2709 default:
Dan Williams14e99b42012-02-10 01:05:43 -08002710 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2711 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002712 return SCI_FAILURE_INVALID_STATE;
2713 }
2714
2715}
2716
Dan Williams89a73012011-06-30 19:14:33 -07002717enum sci_status sci_controller_continue_io(struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002718{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002719 struct isci_host *ihost = ireq->owning_controller;
Dan Williamscc9203b2011-05-08 17:34:44 -07002720
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002721 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002722 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2723 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002724 return SCI_FAILURE_INVALID_STATE;
2725 }
2726
Dan Williams5076a1a2011-06-27 14:57:03 -07002727 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002728 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002729 return SCI_SUCCESS;
2730}
2731
2732/**
Dan Williams89a73012011-06-30 19:14:33 -07002733 * sci_controller_start_task() - This method is called by the SCIC user to
Dan Williamscc9203b2011-05-08 17:34:44 -07002734 * send/start a framework task management request.
2735 * @controller: the handle to the controller object for which to start the task
2736 * management request.
2737 * @remote_device: the handle to the remote device object for which to start
2738 * the task management request.
2739 * @task_request: the handle to the task request object to start.
Dan Williamscc9203b2011-05-08 17:34:44 -07002740 */
Dan Williams89a73012011-06-30 19:14:33 -07002741enum sci_task_status sci_controller_start_task(struct isci_host *ihost,
2742 struct isci_remote_device *idev,
2743 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002744{
2745 enum sci_status status;
2746
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002747 if (ihost->sm.current_state_id != SCIC_READY) {
2748 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002749 "%s: SCIC Controller starting task from invalid "
2750 "state\n",
2751 __func__);
2752 return SCI_TASK_FAILURE_INVALID_STATE;
2753 }
2754
Dan Williams89a73012011-06-30 19:14:33 -07002755 status = sci_remote_device_start_task(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002756 switch (status) {
2757 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002758 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002759
2760 /*
2761 * We will let framework know this task request started successfully,
2762 * although core is still woring on starting the request (to post tc when
2763 * RNC is resumed.)
2764 */
2765 return SCI_SUCCESS;
2766 case SCI_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002767 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002768 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002769 break;
2770 default:
2771 break;
2772 }
2773
2774 return status;
2775}
Dan Williamsad4f4c12011-09-01 21:18:31 -07002776
2777static int sci_write_gpio_tx_gp(struct isci_host *ihost, u8 reg_index, u8 reg_count, u8 *write_data)
2778{
2779 int d;
2780
2781 /* no support for TX_GP_CFG */
2782 if (reg_index == 0)
2783 return -EINVAL;
2784
2785 for (d = 0; d < isci_gpio_count(ihost); d++) {
2786 u32 val = 0x444; /* all ODx.n clear */
2787 int i;
2788
2789 for (i = 0; i < 3; i++) {
2790 int bit = (i << 2) + 2;
2791
2792 bit = try_test_sas_gpio_gp_bit(to_sas_gpio_od(d, i),
2793 write_data, reg_index,
2794 reg_count);
2795 if (bit < 0)
2796 break;
2797
2798 /* if od is set, clear the 'invert' bit */
2799 val &= ~(bit << ((i << 2) + 2));
2800 }
2801
2802 if (i < 3)
2803 break;
2804 writel(val, &ihost->scu_registers->peg0.sgpio.output_data_select[d]);
2805 }
2806
2807 /* unless reg_index is > 1, we should always be able to write at
2808 * least one register
2809 */
2810 return d > 0;
2811}
2812
2813int isci_gpio_write(struct sas_ha_struct *sas_ha, u8 reg_type, u8 reg_index,
2814 u8 reg_count, u8 *write_data)
2815{
2816 struct isci_host *ihost = sas_ha->lldd_ha;
2817 int written;
2818
2819 switch (reg_type) {
2820 case SAS_GPIO_REG_TX_GP:
2821 written = sci_write_gpio_tx_gp(ihost, reg_index, reg_count, write_data);
2822 break;
2823 default:
2824 written = -EINVAL;
2825 }
2826
2827 return written;
2828}