blob: 3822ffb71cafe971b96c7e45aa8cf0d7dd7aacc5 [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
Dan Williamsac668c62011-06-07 18:50:55 -070055#include <linux/circ_buf.h>
Dan Williamscc9203b2011-05-08 17:34:44 -070056#include <linux/device.h>
57#include <scsi/sas.h>
58#include "host.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070059#include "isci.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070060#include "port.h"
Dan Williamsd044af12011-03-08 09:52:49 -080061#include "probe_roms.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070062#include "remote_device.h"
63#include "request.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070064#include "scu_completion_codes.h"
65#include "scu_event_codes.h"
Dan Williams63a3a152011-05-08 21:36:46 -070066#include "registers.h"
Dan Williamscc9203b2011-05-08 17:34:44 -070067#include "scu_remote_node_context.h"
68#include "scu_task_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070069
Dan Williamscc9203b2011-05-08 17:34:44 -070070#define SCU_CONTEXT_RAM_INIT_STALL_TIME 200
71
Dan Williams7c78da32011-06-01 16:00:01 -070072#define smu_max_ports(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070073 (\
74 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_MASK) \
75 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_SHIFT) + 1 \
76 )
77
Dan Williams7c78da32011-06-01 16:00:01 -070078#define smu_max_task_contexts(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070079 (\
80 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_MASK) \
81 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT) + 1 \
82 )
83
Dan Williams7c78da32011-06-01 16:00:01 -070084#define smu_max_rncs(dcc_value) \
Dan Williamscc9203b2011-05-08 17:34:44 -070085 (\
86 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_MASK) \
87 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_SHIFT) + 1 \
88 )
89
Dan Williamscc9203b2011-05-08 17:34:44 -070090#define SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT 100
91
92/**
93 *
94 *
95 * The number of milliseconds to wait while a given phy is consuming power
96 * before allowing another set of phys to consume power. Ultimately, this will
97 * be specified by OEM parameter.
98 */
99#define SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL 500
100
101/**
102 * NORMALIZE_PUT_POINTER() -
103 *
104 * This macro will normalize the completion queue put pointer so its value can
105 * be used as an array inde
106 */
107#define NORMALIZE_PUT_POINTER(x) \
108 ((x) & SMU_COMPLETION_QUEUE_PUT_POINTER_MASK)
109
110
111/**
112 * NORMALIZE_EVENT_POINTER() -
113 *
114 * This macro will normalize the completion queue event entry so its value can
115 * be used as an index.
116 */
117#define NORMALIZE_EVENT_POINTER(x) \
118 (\
119 ((x) & SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_MASK) \
120 >> SMU_COMPLETION_QUEUE_GET_EVENT_POINTER_SHIFT \
121 )
122
123/**
Dan Williamscc9203b2011-05-08 17:34:44 -0700124 * NORMALIZE_GET_POINTER() -
125 *
126 * This macro will normalize the completion queue get pointer so its value can
127 * be used as an index into an array
128 */
129#define NORMALIZE_GET_POINTER(x) \
130 ((x) & SMU_COMPLETION_QUEUE_GET_POINTER_MASK)
131
132/**
133 * NORMALIZE_GET_POINTER_CYCLE_BIT() -
134 *
135 * This macro will normalize the completion queue cycle pointer so it matches
136 * the completion queue cycle bit
137 */
138#define NORMALIZE_GET_POINTER_CYCLE_BIT(x) \
139 ((SMU_CQGR_CYCLE_BIT & (x)) << (31 - SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT))
140
141/**
142 * COMPLETION_QUEUE_CYCLE_BIT() -
143 *
144 * This macro will return the cycle bit of the completion queue entry
145 */
146#define COMPLETION_QUEUE_CYCLE_BIT(x) ((x) & 0x80000000)
147
Edmund Nadolski12ef6542011-06-02 00:10:50 +0000148/* Init the state machine and call the state entry function (if any) */
149void sci_init_sm(struct sci_base_state_machine *sm,
150 const struct sci_base_state *state_table, u32 initial_state)
151{
152 sci_state_transition_t handler;
153
154 sm->initial_state_id = initial_state;
155 sm->previous_state_id = initial_state;
156 sm->current_state_id = initial_state;
157 sm->state_table = state_table;
158
159 handler = sm->state_table[initial_state].enter_state;
160 if (handler)
161 handler(sm);
162}
163
164/* Call the state exit fn, update the current state, call the state entry fn */
165void sci_change_state(struct sci_base_state_machine *sm, u32 next_state)
166{
167 sci_state_transition_t handler;
168
169 handler = sm->state_table[sm->current_state_id].exit_state;
170 if (handler)
171 handler(sm);
172
173 sm->previous_state_id = sm->current_state_id;
174 sm->current_state_id = next_state;
175
176 handler = sm->state_table[sm->current_state_id].enter_state;
177 if (handler)
178 handler(sm);
179}
180
Dan Williams89a73012011-06-30 19:14:33 -0700181static bool sci_controller_completion_queue_has_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700182{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700183 u32 get_value = ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700184 u32 get_index = get_value & SMU_COMPLETION_QUEUE_GET_POINTER_MASK;
185
186 if (NORMALIZE_GET_POINTER_CYCLE_BIT(get_value) ==
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700187 COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index]))
Dan Williamscc9203b2011-05-08 17:34:44 -0700188 return true;
189
190 return false;
191}
192
Dan Williams89a73012011-06-30 19:14:33 -0700193static bool sci_controller_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700194{
Dan Williams89a73012011-06-30 19:14:33 -0700195 if (sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700196 return true;
197 } else {
198 /*
199 * we have a spurious interrupt it could be that we have already
200 * emptied the completion queue from a previous interrupt */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700201 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700202
203 /*
204 * There is a race in the hardware that could cause us not to be notified
205 * of an interrupt completion if we do not take this step. We will mask
206 * then unmask the interrupts so if there is another interrupt pending
207 * the clearing of the interrupt source we get the next interrupt message. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700208 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
209 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700210 }
211
212 return false;
213}
214
Dan Williamsc7ef4032011-02-18 09:25:05 -0800215irqreturn_t isci_msix_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700216{
Dan Williamsc7ef4032011-02-18 09:25:05 -0800217 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700218
Dan Williams89a73012011-06-30 19:14:33 -0700219 if (sci_controller_isr(ihost))
Dan Williams0cf89d12011-02-18 09:25:07 -0800220 tasklet_schedule(&ihost->completion_tasklet);
Dan Williams6f231dd2011-07-02 22:56:22 -0700221
Dan Williamsc7ef4032011-02-18 09:25:05 -0800222 return IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700223}
224
Dan Williams89a73012011-06-30 19:14:33 -0700225static bool sci_controller_error_isr(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700226{
227 u32 interrupt_status;
228
229 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700230 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700231 interrupt_status &= (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND);
232
233 if (interrupt_status != 0) {
234 /*
235 * There is an error interrupt pending so let it through and handle
236 * in the callback */
237 return true;
238 }
239
240 /*
241 * There is a race in the hardware that could cause us not to be notified
242 * of an interrupt completion if we do not take this step. We will mask
243 * then unmask the error interrupts so if there was another interrupt
244 * pending we will be notified.
245 * Could we write the value of (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND)? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700246 writel(0xff, &ihost->smu_registers->interrupt_mask);
247 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700248
249 return false;
250}
251
Dan Williams89a73012011-06-30 19:14:33 -0700252static void sci_controller_task_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700253{
Dan Williams89a73012011-06-30 19:14:33 -0700254 u32 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamsdb056252011-06-17 14:18:39 -0700255 struct isci_request *ireq = ihost->reqs[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700256
257 /* Make sure that we really want to process this IO request */
Dan Williamsdb056252011-06-17 14:18:39 -0700258 if (test_bit(IREQ_ACTIVE, &ireq->flags) &&
Dan Williams5076a1a2011-06-27 14:57:03 -0700259 ireq->io_tag != SCI_CONTROLLER_INVALID_IO_TAG &&
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700260 ISCI_TAG_SEQ(ireq->io_tag) == ihost->io_request_sequence[index])
Dan Williams89a73012011-06-30 19:14:33 -0700261 /* Yep this is a valid io request pass it along to the
262 * io request handler
263 */
264 sci_io_request_tc_completion(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700265}
266
Dan Williams89a73012011-06-30 19:14:33 -0700267static void sci_controller_sdma_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700268{
269 u32 index;
Dan Williams5076a1a2011-06-27 14:57:03 -0700270 struct isci_request *ireq;
Dan Williams78a6f062011-06-30 16:31:37 -0700271 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700272
Dan Williams89a73012011-06-30 19:14:33 -0700273 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700274
Dan Williams89a73012011-06-30 19:14:33 -0700275 switch (scu_get_command_request_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700276 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC:
277 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700278 ireq = ihost->reqs[index];
279 dev_warn(&ihost->pdev->dev, "%s: %x for io request %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700280 __func__, ent, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -0700281 /* @todo For a post TC operation we need to fail the IO
282 * request
283 */
284 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700285 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_RNC:
286 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_OTHER_RNC:
287 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_RNC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700288 idev = ihost->device_table[index];
289 dev_warn(&ihost->pdev->dev, "%s: %x for device %p\n",
Dan Williams89a73012011-06-30 19:14:33 -0700290 __func__, ent, idev);
Dan Williamscc9203b2011-05-08 17:34:44 -0700291 /* @todo For a port RNC operation we need to fail the
292 * device
293 */
294 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700295 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700296 dev_warn(&ihost->pdev->dev, "%s: unknown completion type %x\n",
Dan Williams89a73012011-06-30 19:14:33 -0700297 __func__, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700298 break;
Dan Williamscc9203b2011-05-08 17:34:44 -0700299 }
300}
301
Dan Williams89a73012011-06-30 19:14:33 -0700302static void sci_controller_unsolicited_frame(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700303{
304 u32 index;
305 u32 frame_index;
306
Dan Williamscc9203b2011-05-08 17:34:44 -0700307 struct scu_unsolicited_frame_header *frame_header;
Dan Williams85280952011-06-28 15:05:53 -0700308 struct isci_phy *iphy;
Dan Williams78a6f062011-06-30 16:31:37 -0700309 struct isci_remote_device *idev;
Dan Williamscc9203b2011-05-08 17:34:44 -0700310
311 enum sci_status result = SCI_FAILURE;
312
Dan Williams89a73012011-06-30 19:14:33 -0700313 frame_index = SCU_GET_FRAME_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700314
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700315 frame_header = ihost->uf_control.buffers.array[frame_index].header;
316 ihost->uf_control.buffers.array[frame_index].state = UNSOLICITED_FRAME_IN_USE;
Dan Williamscc9203b2011-05-08 17:34:44 -0700317
Dan Williams89a73012011-06-30 19:14:33 -0700318 if (SCU_GET_FRAME_ERROR(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700319 /*
320 * / @todo If the IAF frame or SIGNATURE FIS frame has an error will
321 * / this cause a problem? We expect the phy initialization will
322 * / fail if there is an error in the frame. */
Dan Williams89a73012011-06-30 19:14:33 -0700323 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700324 return;
325 }
326
327 if (frame_header->is_address_frame) {
Dan Williams89a73012011-06-30 19:14:33 -0700328 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700329 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700330 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700331 } else {
332
Dan Williams89a73012011-06-30 19:14:33 -0700333 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700334
335 if (index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
336 /*
337 * This is a signature fis or a frame from a direct attached SATA
338 * device that has not yet been created. In either case forwared
339 * the frame to the PE and let it take care of the frame data. */
Dan Williams89a73012011-06-30 19:14:33 -0700340 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700341 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700342 result = sci_phy_frame_handler(iphy, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700343 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700344 if (index < ihost->remote_node_entries)
345 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700346 else
Dan Williams78a6f062011-06-30 16:31:37 -0700347 idev = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -0700348
Dan Williams78a6f062011-06-30 16:31:37 -0700349 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700350 result = sci_remote_device_frame_handler(idev, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700351 else
Dan Williams89a73012011-06-30 19:14:33 -0700352 sci_controller_release_frame(ihost, frame_index);
Dan Williamscc9203b2011-05-08 17:34:44 -0700353 }
354 }
355
356 if (result != SCI_SUCCESS) {
357 /*
358 * / @todo Is there any reason to report some additional error message
359 * / when we get this failure notifiction? */
360 }
361}
362
Dan Williams89a73012011-06-30 19:14:33 -0700363static void sci_controller_event_completion(struct isci_host *ihost, u32 ent)
Dan Williamscc9203b2011-05-08 17:34:44 -0700364{
Dan Williams78a6f062011-06-30 16:31:37 -0700365 struct isci_remote_device *idev;
Dan Williams5076a1a2011-06-27 14:57:03 -0700366 struct isci_request *ireq;
Dan Williams85280952011-06-28 15:05:53 -0700367 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700368 u32 index;
369
Dan Williams89a73012011-06-30 19:14:33 -0700370 index = SCU_GET_COMPLETION_INDEX(ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700371
Dan Williams89a73012011-06-30 19:14:33 -0700372 switch (scu_get_event_type(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700373 case SCU_EVENT_TYPE_SMU_COMMAND_ERROR:
374 /* / @todo The driver did something wrong and we need to fix the condtion. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700375 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700376 "%s: SCIC Controller 0x%p received SMU command error "
377 "0x%x\n",
378 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700379 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700380 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700381 break;
382
383 case SCU_EVENT_TYPE_SMU_PCQ_ERROR:
384 case SCU_EVENT_TYPE_SMU_ERROR:
385 case SCU_EVENT_TYPE_FATAL_MEMORY_ERROR:
386 /*
387 * / @todo This is a hardware failure and its likely that we want to
388 * / reset the controller. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700389 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700390 "%s: SCIC Controller 0x%p received fatal controller "
391 "event 0x%x\n",
392 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700393 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700394 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700395 break;
396
397 case SCU_EVENT_TYPE_TRANSPORT_ERROR:
Dan Williams5076a1a2011-06-27 14:57:03 -0700398 ireq = ihost->reqs[index];
Dan Williams89a73012011-06-30 19:14:33 -0700399 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700400 break;
401
402 case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700403 switch (scu_get_event_specifier(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700404 case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE:
405 case SCU_EVENT_SPECIFIC_TASK_TIMEOUT:
Dan Williams5076a1a2011-06-27 14:57:03 -0700406 ireq = ihost->reqs[index];
407 if (ireq != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700408 sci_io_request_event_handler(ireq, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700409 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700410 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700411 "%s: SCIC Controller 0x%p received "
412 "event 0x%x for io request object "
413 "that doesnt exist.\n",
414 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700415 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700416 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700417
418 break;
419
420 case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700421 idev = ihost->device_table[index];
Dan Williams78a6f062011-06-30 16:31:37 -0700422 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700423 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700424 else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700425 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700426 "%s: SCIC Controller 0x%p received "
427 "event 0x%x for remote device object "
428 "that doesnt exist.\n",
429 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700430 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700431 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700432
433 break;
434 }
435 break;
436
437 case SCU_EVENT_TYPE_BROADCAST_CHANGE:
438 /*
439 * direct the broadcast change event to the phy first and then let
440 * the phy redirect the broadcast change to the port object */
441 case SCU_EVENT_TYPE_ERR_CNT_EVENT:
442 /*
443 * direct error counter event to the phy object since that is where
444 * we get the event notification. This is a type 4 event. */
445 case SCU_EVENT_TYPE_OSSP_EVENT:
Dan Williams89a73012011-06-30 19:14:33 -0700446 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
Dan Williams85280952011-06-28 15:05:53 -0700447 iphy = &ihost->phys[index];
Dan Williams89a73012011-06-30 19:14:33 -0700448 sci_phy_event_handler(iphy, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700449 break;
450
451 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
452 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
453 case SCU_EVENT_TYPE_RNC_OPS_MISC:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700454 if (index < ihost->remote_node_entries) {
455 idev = ihost->device_table[index];
Dan Williamscc9203b2011-05-08 17:34:44 -0700456
Dan Williams78a6f062011-06-30 16:31:37 -0700457 if (idev != NULL)
Dan Williams89a73012011-06-30 19:14:33 -0700458 sci_remote_device_event_handler(idev, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700459 } else
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700460 dev_err(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700461 "%s: SCIC Controller 0x%p received event 0x%x "
462 "for remote device object 0x%0x that doesnt "
463 "exist.\n",
464 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700465 ihost,
Dan Williams89a73012011-06-30 19:14:33 -0700466 ent,
Dan Williamscc9203b2011-05-08 17:34:44 -0700467 index);
468
469 break;
470
471 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700472 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700473 "%s: SCIC Controller received unknown event code %x\n",
474 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700475 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700476 break;
477 }
478}
479
Dan Williams89a73012011-06-30 19:14:33 -0700480static void sci_controller_process_completions(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700481{
482 u32 completion_count = 0;
Dan Williams89a73012011-06-30 19:14:33 -0700483 u32 ent;
Dan Williamscc9203b2011-05-08 17:34:44 -0700484 u32 get_index;
485 u32 get_cycle;
Dan Williams994a9302011-06-09 16:04:28 -0700486 u32 event_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700487 u32 event_cycle;
488
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700489 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700490 "%s: completion queue begining get:0x%08x\n",
491 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700492 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700493
494 /* Get the component parts of the completion queue */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700495 get_index = NORMALIZE_GET_POINTER(ihost->completion_queue_get);
496 get_cycle = SMU_CQGR_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700497
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700498 event_get = NORMALIZE_EVENT_POINTER(ihost->completion_queue_get);
499 event_cycle = SMU_CQGR_EVENT_CYCLE_BIT & ihost->completion_queue_get;
Dan Williamscc9203b2011-05-08 17:34:44 -0700500
501 while (
502 NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700503 == COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index])
Dan Williamscc9203b2011-05-08 17:34:44 -0700504 ) {
505 completion_count++;
506
Dan Williams89a73012011-06-30 19:14:33 -0700507 ent = ihost->completion_queue[get_index];
Dan Williams994a9302011-06-09 16:04:28 -0700508
509 /* increment the get pointer and check for rollover to toggle the cycle bit */
510 get_cycle ^= ((get_index+1) & SCU_MAX_COMPLETION_QUEUE_ENTRIES) <<
511 (SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT - SCU_MAX_COMPLETION_QUEUE_SHIFT);
512 get_index = (get_index+1) & (SCU_MAX_COMPLETION_QUEUE_ENTRIES-1);
Dan Williamscc9203b2011-05-08 17:34:44 -0700513
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700514 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700515 "%s: completion queue entry:0x%08x\n",
516 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700517 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700518
Dan Williams89a73012011-06-30 19:14:33 -0700519 switch (SCU_GET_COMPLETION_TYPE(ent)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700520 case SCU_COMPLETION_TYPE_TASK:
Dan Williams89a73012011-06-30 19:14:33 -0700521 sci_controller_task_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700522 break;
523
524 case SCU_COMPLETION_TYPE_SDMA:
Dan Williams89a73012011-06-30 19:14:33 -0700525 sci_controller_sdma_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700526 break;
527
528 case SCU_COMPLETION_TYPE_UFI:
Dan Williams89a73012011-06-30 19:14:33 -0700529 sci_controller_unsolicited_frame(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700530 break;
531
532 case SCU_COMPLETION_TYPE_EVENT:
Dan Williams77cd72a2011-07-29 17:17:16 -0700533 sci_controller_event_completion(ihost, ent);
534 break;
535
Dan Williams994a9302011-06-09 16:04:28 -0700536 case SCU_COMPLETION_TYPE_NOTIFY: {
537 event_cycle ^= ((event_get+1) & SCU_MAX_EVENTS) <<
538 (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT - SCU_MAX_EVENTS_SHIFT);
539 event_get = (event_get+1) & (SCU_MAX_EVENTS-1);
540
Dan Williams89a73012011-06-30 19:14:33 -0700541 sci_controller_event_completion(ihost, ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700542 break;
Dan Williams994a9302011-06-09 16:04:28 -0700543 }
Dan Williamscc9203b2011-05-08 17:34:44 -0700544 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700545 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700546 "%s: SCIC Controller received unknown "
547 "completion type %x\n",
548 __func__,
Dan Williams89a73012011-06-30 19:14:33 -0700549 ent);
Dan Williamscc9203b2011-05-08 17:34:44 -0700550 break;
551 }
552 }
553
554 /* Update the get register if we completed one or more entries */
555 if (completion_count > 0) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700556 ihost->completion_queue_get =
Dan Williamscc9203b2011-05-08 17:34:44 -0700557 SMU_CQGR_GEN_BIT(ENABLE) |
558 SMU_CQGR_GEN_BIT(EVENT_ENABLE) |
559 event_cycle |
Dan Williams994a9302011-06-09 16:04:28 -0700560 SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700561 get_cycle |
562 SMU_CQGR_GEN_VAL(POINTER, get_index);
563
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700564 writel(ihost->completion_queue_get,
565 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700566
567 }
568
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700569 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700570 "%s: completion queue ending get:0x%08x\n",
571 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700572 ihost->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700573
574}
575
Dan Williams89a73012011-06-30 19:14:33 -0700576static void sci_controller_error_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700577{
578 u32 interrupt_status;
579
580 interrupt_status =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700581 readl(&ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700582
583 if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) &&
Dan Williams89a73012011-06-30 19:14:33 -0700584 sci_controller_completion_queue_has_entries(ihost)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700585
Dan Williams89a73012011-06-30 19:14:33 -0700586 sci_controller_process_completions(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700587 writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -0700588 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700589 dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__,
Dan Williamscc9203b2011-05-08 17:34:44 -0700590 interrupt_status);
591
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700592 sci_change_state(&ihost->sm, SCIC_FAILED);
Dan Williamscc9203b2011-05-08 17:34:44 -0700593
594 return;
595 }
596
597 /* If we dont process any completions I am not sure that we want to do this.
598 * We are in the middle of a hardware fault and should probably be reset.
599 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700600 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700601}
602
Dan Williamsc7ef4032011-02-18 09:25:05 -0800603irqreturn_t isci_intx_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -0700604{
Dan Williams6f231dd2011-07-02 22:56:22 -0700605 irqreturn_t ret = IRQ_NONE;
Dan Williams31e824e2011-04-19 12:32:51 -0700606 struct isci_host *ihost = data;
Dan Williams6f231dd2011-07-02 22:56:22 -0700607
Dan Williams89a73012011-06-30 19:14:33 -0700608 if (sci_controller_isr(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700609 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williams31e824e2011-04-19 12:32:51 -0700610 tasklet_schedule(&ihost->completion_tasklet);
611 ret = IRQ_HANDLED;
Dan Williams89a73012011-06-30 19:14:33 -0700612 } else if (sci_controller_error_isr(ihost)) {
Dan Williams31e824e2011-04-19 12:32:51 -0700613 spin_lock(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -0700614 sci_controller_error_handler(ihost);
Dan Williams31e824e2011-04-19 12:32:51 -0700615 spin_unlock(&ihost->scic_lock);
616 ret = IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -0700617 }
Dan Williams92f4f0f2011-02-18 09:25:11 -0800618
Dan Williams6f231dd2011-07-02 22:56:22 -0700619 return ret;
620}
621
Dan Williams92f4f0f2011-02-18 09:25:11 -0800622irqreturn_t isci_error_isr(int vec, void *data)
623{
624 struct isci_host *ihost = data;
Dan Williams92f4f0f2011-02-18 09:25:11 -0800625
Dan Williams89a73012011-06-30 19:14:33 -0700626 if (sci_controller_error_isr(ihost))
627 sci_controller_error_handler(ihost);
Dan Williams92f4f0f2011-02-18 09:25:11 -0800628
629 return IRQ_HANDLED;
630}
Dan Williams6f231dd2011-07-02 22:56:22 -0700631
632/**
633 * isci_host_start_complete() - This function is called by the core library,
634 * through the ISCI Module, to indicate controller start status.
635 * @isci_host: This parameter specifies the ISCI host object
636 * @completion_status: This parameter specifies the completion status from the
637 * core library.
638 *
639 */
Dan Williamscc9203b2011-05-08 17:34:44 -0700640static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700641{
Dan Williams0cf89d12011-02-18 09:25:07 -0800642 if (completion_status != SCI_SUCCESS)
643 dev_info(&ihost->pdev->dev,
644 "controller start timed out, continuing...\n");
645 isci_host_change_state(ihost, isci_ready);
646 clear_bit(IHOST_START_PENDING, &ihost->flags);
647 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700648}
649
Dan Williamsc7ef4032011-02-18 09:25:05 -0800650int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
Dan Williams6f231dd2011-07-02 22:56:22 -0700651{
Dan Williamsb1124cd2011-12-19 16:42:34 -0800652 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
653 struct isci_host *ihost = ha->lldd_ha;
Dan Williams6f231dd2011-07-02 22:56:22 -0700654
Edmund Nadolski77950f52011-02-18 09:25:09 -0800655 if (test_bit(IHOST_START_PENDING, &ihost->flags))
Dan Williams6f231dd2011-07-02 22:56:22 -0700656 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700657
Dan Williamsb1124cd2011-12-19 16:42:34 -0800658 sas_drain_work(ha);
Dan Williams6f231dd2011-07-02 22:56:22 -0700659
Dan Williams0cf89d12011-02-18 09:25:07 -0800660 dev_dbg(&ihost->pdev->dev,
661 "%s: ihost->status = %d, time = %ld\n",
662 __func__, isci_host_get_state(ihost), time);
Dan Williams6f231dd2011-07-02 22:56:22 -0700663
Dan Williams6f231dd2011-07-02 22:56:22 -0700664 return 1;
665
666}
667
Dan Williamscc9203b2011-05-08 17:34:44 -0700668/**
Dan Williams89a73012011-06-30 19:14:33 -0700669 * sci_controller_get_suggested_start_timeout() - This method returns the
670 * suggested sci_controller_start() timeout amount. The user is free to
Dan Williamscc9203b2011-05-08 17:34:44 -0700671 * use any timeout value, but this method provides the suggested minimum
672 * start timeout value. The returned value is based upon empirical
673 * information determined as a result of interoperability testing.
674 * @controller: the handle to the controller object for which to return the
675 * suggested start timeout.
676 *
677 * This method returns the number of milliseconds for the suggested start
678 * operation timeout.
679 */
Dan Williams89a73012011-06-30 19:14:33 -0700680static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700681{
682 /* Validate the user supplied parameters. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700683 if (!ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700684 return 0;
685
686 /*
687 * The suggested minimum timeout value for a controller start operation:
688 *
689 * Signature FIS Timeout
690 * + Phy Start Timeout
691 * + Number of Phy Spin Up Intervals
692 * ---------------------------------
693 * Number of milliseconds for the controller start operation.
694 *
695 * NOTE: The number of phy spin up intervals will be equivalent
696 * to the number of phys divided by the number phys allowed
697 * per interval - 1 (once OEM parameters are supported).
698 * Currently we assume only 1 phy per interval. */
699
700 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
701 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
702 + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
703}
704
Dan Williams89a73012011-06-30 19:14:33 -0700705static void sci_controller_enable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700706{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700707 BUG_ON(ihost->smu_registers == NULL);
708 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700709}
710
Dan Williams89a73012011-06-30 19:14:33 -0700711void sci_controller_disable_interrupts(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700712{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700713 BUG_ON(ihost->smu_registers == NULL);
714 writel(0xffffffff, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -0700715}
716
Dan Williams89a73012011-06-30 19:14:33 -0700717static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700718{
719 u32 port_task_scheduler_value;
720
721 port_task_scheduler_value =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700722 readl(&ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700723 port_task_scheduler_value |=
724 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) |
725 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE));
726 writel(port_task_scheduler_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700727 &ihost->scu_registers->peg0.ptsg.control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700728}
729
Dan Williams89a73012011-06-30 19:14:33 -0700730static void sci_controller_assign_task_entries(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700731{
732 u32 task_assignment;
733
734 /*
735 * Assign all the TCs to function 0
736 * TODO: Do we actually need to read this register to write it back?
737 */
738
739 task_assignment =
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700740 readl(&ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700741
742 task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) |
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700743 (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) |
Dan Williamscc9203b2011-05-08 17:34:44 -0700744 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE));
745
746 writel(task_assignment,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700747 &ihost->smu_registers->task_context_assignment[0]);
Dan Williamscc9203b2011-05-08 17:34:44 -0700748
749}
750
Dan Williams89a73012011-06-30 19:14:33 -0700751static void sci_controller_initialize_completion_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700752{
753 u32 index;
754 u32 completion_queue_control_value;
755 u32 completion_queue_get_value;
756 u32 completion_queue_put_value;
757
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700758 ihost->completion_queue_get = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -0700759
Dan Williams7c78da32011-06-01 16:00:01 -0700760 completion_queue_control_value =
761 (SMU_CQC_QUEUE_LIMIT_SET(SCU_MAX_COMPLETION_QUEUE_ENTRIES - 1) |
762 SMU_CQC_EVENT_LIMIT_SET(SCU_MAX_EVENTS - 1));
Dan Williamscc9203b2011-05-08 17:34:44 -0700763
764 writel(completion_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700765 &ihost->smu_registers->completion_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700766
767
768 /* Set the completion queue get pointer and enable the queue */
769 completion_queue_get_value = (
770 (SMU_CQGR_GEN_VAL(POINTER, 0))
771 | (SMU_CQGR_GEN_VAL(EVENT_POINTER, 0))
772 | (SMU_CQGR_GEN_BIT(ENABLE))
773 | (SMU_CQGR_GEN_BIT(EVENT_ENABLE))
774 );
775
776 writel(completion_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700777 &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -0700778
779 /* Set the completion queue put pointer */
780 completion_queue_put_value = (
781 (SMU_CQPR_GEN_VAL(POINTER, 0))
782 | (SMU_CQPR_GEN_VAL(EVENT_POINTER, 0))
783 );
784
785 writel(completion_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700786 &ihost->smu_registers->completion_queue_put);
Dan Williamscc9203b2011-05-08 17:34:44 -0700787
788 /* Initialize the cycle bit of the completion queue entries */
Dan Williams7c78da32011-06-01 16:00:01 -0700789 for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700790 /*
791 * If get.cycle_bit != completion_queue.cycle_bit
792 * its not a valid completion queue entry
793 * so at system start all entries are invalid */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700794 ihost->completion_queue[index] = 0x80000000;
Dan Williamscc9203b2011-05-08 17:34:44 -0700795 }
796}
797
Dan Williams89a73012011-06-30 19:14:33 -0700798static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700799{
800 u32 frame_queue_control_value;
801 u32 frame_queue_get_value;
802 u32 frame_queue_put_value;
803
804 /* Write the queue size */
805 frame_queue_control_value =
Dan Williams7c78da32011-06-01 16:00:01 -0700806 SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES);
Dan Williamscc9203b2011-05-08 17:34:44 -0700807
808 writel(frame_queue_control_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700809 &ihost->scu_registers->sdma.unsolicited_frame_queue_control);
Dan Williamscc9203b2011-05-08 17:34:44 -0700810
811 /* Setup the get pointer for the unsolicited frame queue */
812 frame_queue_get_value = (
813 SCU_UFQGP_GEN_VAL(POINTER, 0)
814 | SCU_UFQGP_GEN_BIT(ENABLE_BIT)
815 );
816
817 writel(frame_queue_get_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700818 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700819 /* Setup the put pointer for the unsolicited frame queue */
820 frame_queue_put_value = SCU_UFQPP_GEN_VAL(POINTER, 0);
821 writel(frame_queue_put_value,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700822 &ihost->scu_registers->sdma.unsolicited_frame_put_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -0700823}
824
Dan Williams89a73012011-06-30 19:14:33 -0700825static void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status)
Dan Williamscc9203b2011-05-08 17:34:44 -0700826{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700827 if (ihost->sm.current_state_id == SCIC_STARTING) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700828 /*
829 * We move into the ready state, because some of the phys/ports
830 * may be up and operational.
831 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700832 sci_change_state(&ihost->sm, SCIC_READY);
Dan Williamscc9203b2011-05-08 17:34:44 -0700833
834 isci_host_start_complete(ihost, status);
835 }
836}
837
Dan Williams85280952011-06-28 15:05:53 -0700838static bool is_phy_starting(struct isci_phy *iphy)
Adam Gruchala4a33c522011-05-10 23:54:23 +0000839{
Dan Williams89a73012011-06-30 19:14:33 -0700840 enum sci_phy_states state;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000841
Dan Williams85280952011-06-28 15:05:53 -0700842 state = iphy->sm.current_state_id;
Adam Gruchala4a33c522011-05-10 23:54:23 +0000843 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000844 case SCI_PHY_STARTING:
845 case SCI_PHY_SUB_INITIAL:
846 case SCI_PHY_SUB_AWAIT_SAS_SPEED_EN:
847 case SCI_PHY_SUB_AWAIT_IAF_UF:
848 case SCI_PHY_SUB_AWAIT_SAS_POWER:
849 case SCI_PHY_SUB_AWAIT_SATA_POWER:
850 case SCI_PHY_SUB_AWAIT_SATA_PHY_EN:
851 case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN:
852 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF:
853 case SCI_PHY_SUB_FINAL:
Adam Gruchala4a33c522011-05-10 23:54:23 +0000854 return true;
855 default:
856 return false;
857 }
858}
859
Dan Williamscc9203b2011-05-08 17:34:44 -0700860/**
Dan Williams89a73012011-06-30 19:14:33 -0700861 * sci_controller_start_next_phy - start phy
Dan Williamscc9203b2011-05-08 17:34:44 -0700862 * @scic: controller
863 *
864 * If all the phys have been started, then attempt to transition the
865 * controller to the READY state and inform the user
Dan Williams89a73012011-06-30 19:14:33 -0700866 * (sci_cb_controller_start_complete()).
Dan Williamscc9203b2011-05-08 17:34:44 -0700867 */
Dan Williams89a73012011-06-30 19:14:33 -0700868static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -0700869{
Dan Williams89a73012011-06-30 19:14:33 -0700870 struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williams85280952011-06-28 15:05:53 -0700871 struct isci_phy *iphy;
Dan Williamscc9203b2011-05-08 17:34:44 -0700872 enum sci_status status;
873
874 status = SCI_SUCCESS;
875
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700876 if (ihost->phy_startup_timer_pending)
Dan Williamscc9203b2011-05-08 17:34:44 -0700877 return status;
878
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700879 if (ihost->next_phy_to_start >= SCI_MAX_PHYS) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700880 bool is_controller_start_complete = true;
881 u32 state;
882 u8 index;
883
884 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams85280952011-06-28 15:05:53 -0700885 iphy = &ihost->phys[index];
886 state = iphy->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -0700887
Dan Williams85280952011-06-28 15:05:53 -0700888 if (!phy_get_non_dummy_port(iphy))
Dan Williamscc9203b2011-05-08 17:34:44 -0700889 continue;
890
891 /* The controller start operation is complete iff:
892 * - all links have been given an opportunity to start
893 * - have no indication of a connected device
894 * - have an indication of a connected device and it has
895 * finished the link training process.
896 */
Dan Williams85280952011-06-28 15:05:53 -0700897 if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) ||
898 (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) ||
Marcin Tomczakbe778342012-01-04 01:33:31 -0800899 (iphy->is_in_link_training == true && is_phy_starting(iphy)) ||
900 (ihost->port_agent.phy_ready_mask != ihost->port_agent.phy_configured_mask)) {
Dan Williamscc9203b2011-05-08 17:34:44 -0700901 is_controller_start_complete = false;
902 break;
903 }
904 }
905
906 /*
907 * The controller has successfully finished the start process.
908 * Inform the SCI Core user and transition to the READY state. */
909 if (is_controller_start_complete == true) {
Dan Williams89a73012011-06-30 19:14:33 -0700910 sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700911 sci_del_timer(&ihost->phy_timer);
912 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -0700913 }
914 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700915 iphy = &ihost->phys[ihost->next_phy_to_start];
Dan Williamscc9203b2011-05-08 17:34:44 -0700916
917 if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
Dan Williams85280952011-06-28 15:05:53 -0700918 if (phy_get_non_dummy_port(iphy) == NULL) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700919 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700920
921 /* Caution recursion ahead be forwarned
922 *
923 * The PHY was never added to a PORT in MPC mode
924 * so start the next phy in sequence This phy
925 * will never go link up and will not draw power
926 * the OEM parameters either configured the phy
927 * incorrectly for the PORT or it was never
928 * assigned to a PORT
929 */
Dan Williams89a73012011-06-30 19:14:33 -0700930 return sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -0700931 }
932 }
933
Dan Williams89a73012011-06-30 19:14:33 -0700934 status = sci_phy_start(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -0700935
936 if (status == SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700937 sci_mod_timer(&ihost->phy_timer,
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700938 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700939 ihost->phy_startup_timer_pending = true;
Dan Williamscc9203b2011-05-08 17:34:44 -0700940 } else {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700941 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -0700942 "%s: Controller stop operation failed "
943 "to stop phy %d because of status "
944 "%d.\n",
945 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700946 ihost->phys[ihost->next_phy_to_start].phy_index,
Dan Williamscc9203b2011-05-08 17:34:44 -0700947 status);
948 }
949
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700950 ihost->next_phy_to_start++;
Dan Williamscc9203b2011-05-08 17:34:44 -0700951 }
952
953 return status;
954}
955
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700956static void phy_startup_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -0700957{
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700958 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700959 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700960 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -0700961 enum sci_status status;
962
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700963 spin_lock_irqsave(&ihost->scic_lock, flags);
964
965 if (tmr->cancel)
966 goto done;
967
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700968 ihost->phy_startup_timer_pending = false;
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700969
970 do {
Dan Williams89a73012011-06-30 19:14:33 -0700971 status = sci_controller_start_next_phy(ihost);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -0700972 } while (status != SCI_SUCCESS);
973
974done:
975 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -0700976}
977
Dan Williamsac668c62011-06-07 18:50:55 -0700978static u16 isci_tci_active(struct isci_host *ihost)
979{
980 return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
981}
982
Dan Williams89a73012011-06-30 19:14:33 -0700983static enum sci_status sci_controller_start(struct isci_host *ihost,
Dan Williamscc9203b2011-05-08 17:34:44 -0700984 u32 timeout)
985{
Dan Williamscc9203b2011-05-08 17:34:44 -0700986 enum sci_status result;
987 u16 index;
988
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700989 if (ihost->sm.current_state_id != SCIC_INITIALIZED) {
Dan Williams14e99b42012-02-10 01:05:43 -0800990 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
991 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -0700992 return SCI_FAILURE_INVALID_STATE;
993 }
994
995 /* Build the TCi free pool */
Dan Williamsac668c62011-06-07 18:50:55 -0700996 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8);
997 ihost->tci_head = 0;
998 ihost->tci_tail = 0;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700999 for (index = 0; index < ihost->task_context_entries; index++)
Dan Williamsac668c62011-06-07 18:50:55 -07001000 isci_tci_free(ihost, index);
Dan Williamscc9203b2011-05-08 17:34:44 -07001001
1002 /* Build the RNi free pool */
Dan Williams89a73012011-06-30 19:14:33 -07001003 sci_remote_node_table_initialize(&ihost->available_remote_nodes,
1004 ihost->remote_node_entries);
Dan Williamscc9203b2011-05-08 17:34:44 -07001005
1006 /*
1007 * Before anything else lets make sure we will not be
1008 * interrupted by the hardware.
1009 */
Dan Williams89a73012011-06-30 19:14:33 -07001010 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001011
1012 /* Enable the port task scheduler */
Dan Williams89a73012011-06-30 19:14:33 -07001013 sci_controller_enable_port_task_scheduler(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001014
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001015 /* Assign all the task entries to ihost physical function */
Dan Williams89a73012011-06-30 19:14:33 -07001016 sci_controller_assign_task_entries(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001017
1018 /* Now initialize the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001019 sci_controller_initialize_completion_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001020
1021 /* Initialize the unsolicited frame queue for use */
Dan Williams89a73012011-06-30 19:14:33 -07001022 sci_controller_initialize_unsolicited_frame_queue(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001023
1024 /* Start all of the ports on this controller */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001025 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001026 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001027
Dan Williams89a73012011-06-30 19:14:33 -07001028 result = sci_port_start(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001029 if (result)
1030 return result;
1031 }
1032
Dan Williams89a73012011-06-30 19:14:33 -07001033 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001034
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001035 sci_mod_timer(&ihost->timer, timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07001036
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001037 sci_change_state(&ihost->sm, SCIC_STARTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001038
1039 return SCI_SUCCESS;
1040}
1041
Dan Williams6f231dd2011-07-02 22:56:22 -07001042void isci_host_scan_start(struct Scsi_Host *shost)
1043{
Dan Williams4393aa42011-03-31 13:10:44 -07001044 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams89a73012011-06-30 19:14:33 -07001045 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07001046
Dan Williams0cf89d12011-02-18 09:25:07 -08001047 set_bit(IHOST_START_PENDING, &ihost->flags);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001048
1049 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001050 sci_controller_start(ihost, tmo);
1051 sci_controller_enable_interrupts(ihost);
Edmund Nadolski77950f52011-02-18 09:25:09 -08001052 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001053}
1054
Dan Williamscc9203b2011-05-08 17:34:44 -07001055static void isci_host_stop_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -07001056{
Dan Williams0cf89d12011-02-18 09:25:07 -08001057 isci_host_change_state(ihost, isci_stopped);
Dan Williams89a73012011-06-30 19:14:33 -07001058 sci_controller_disable_interrupts(ihost);
Dan Williams0cf89d12011-02-18 09:25:07 -08001059 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
1060 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07001061}
1062
Dan Williams89a73012011-06-30 19:14:33 -07001063static void sci_controller_completion_handler(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001064{
1065 /* Empty out the completion queue */
Dan Williams89a73012011-06-30 19:14:33 -07001066 if (sci_controller_completion_queue_has_entries(ihost))
1067 sci_controller_process_completions(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001068
1069 /* Clear the interrupt and enable all interrupts again */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001070 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001071 /* Could we write the value of SMU_ISR_COMPLETION? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001072 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
1073 writel(0, &ihost->smu_registers->interrupt_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07001074}
1075
Dan Williams6f231dd2011-07-02 22:56:22 -07001076/**
1077 * isci_host_completion_routine() - This function is the delayed service
1078 * routine that calls the sci core library's completion handler. It's
1079 * scheduled as a tasklet from the interrupt service routine when interrupts
1080 * in use, or set as the timeout function in polled mode.
1081 * @data: This parameter specifies the ISCI host object
1082 *
1083 */
1084static void isci_host_completion_routine(unsigned long data)
1085{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001086 struct isci_host *ihost = (struct isci_host *)data;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001087 struct list_head completed_request_list;
1088 struct list_head errored_request_list;
1089 struct list_head *current_position;
1090 struct list_head *next_position;
Dan Williams6f231dd2011-07-02 22:56:22 -07001091 struct isci_request *request;
1092 struct isci_request *next_request;
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001093 struct sas_task *task;
Dan Williams9b4be522011-07-29 17:17:10 -07001094 u16 active;
Dan Williams6f231dd2011-07-02 22:56:22 -07001095
1096 INIT_LIST_HEAD(&completed_request_list);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001097 INIT_LIST_HEAD(&errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001098
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001099 spin_lock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001100
Dan Williams89a73012011-06-30 19:14:33 -07001101 sci_controller_completion_handler(ihost);
Dan Williamsc7ef4032011-02-18 09:25:05 -08001102
Dan Williams6f231dd2011-07-02 22:56:22 -07001103 /* Take the lists of completed I/Os from the host. */
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001104
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
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001108 /* Take the list of errored I/Os from the host. */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001109 list_splice_init(&ihost->requests_to_errorback,
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001110 &errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -07001111
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001112 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001113
1114 /* Process any completions in the lists. */
1115 list_for_each_safe(current_position, next_position,
1116 &completed_request_list) {
1117
1118 request = list_entry(current_position, struct isci_request,
1119 completed_node);
1120 task = isci_request_access_task(request);
1121
1122 /* Normal notification (task_done) */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001123 dev_dbg(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001124 "%s: Normal - request/task = %p/%p\n",
1125 __func__,
1126 request,
1127 task);
1128
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001129 /* Return the task to libsas */
1130 if (task != NULL) {
Dan Williams6f231dd2011-07-02 22:56:22 -07001131
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001132 task->lldd_task = NULL;
1133 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1134
1135 /* If the task is already in the abort path,
1136 * the task_done callback cannot be called.
1137 */
1138 task->task_done(task);
1139 }
1140 }
Dan Williams312e0c22011-06-28 13:47:09 -07001141
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001142 spin_lock_irq(&ihost->scic_lock);
1143 isci_free_tag(ihost, request->io_tag);
1144 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -07001145 }
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001146 list_for_each_entry_safe(request, next_request, &errored_request_list,
Dan Williams6f231dd2011-07-02 22:56:22 -07001147 completed_node) {
1148
1149 task = isci_request_access_task(request);
1150
1151 /* Use sas_task_abort */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001152 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07001153 "%s: Error - request/task = %p/%p\n",
1154 __func__,
1155 request,
1156 task);
1157
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001158 if (task != NULL) {
1159
1160 /* Put the task into the abort path if it's not there
1161 * already.
1162 */
1163 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED))
1164 sas_task_abort(task);
1165
1166 } else {
1167 /* This is a case where the request has completed with a
1168 * status such that it needed further target servicing,
1169 * but the sas_task reference has already been removed
1170 * from the request. Since it was errored, it was not
1171 * being aborted, so there is nothing to do except free
1172 * it.
1173 */
1174
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001175 spin_lock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001176 /* Remove the request from the remote device's list
1177 * of pending requests.
1178 */
1179 list_del_init(&request->dev_node);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001180 isci_free_tag(ihost, request->io_tag);
1181 spin_unlock_irq(&ihost->scic_lock);
Jeff Skirvin11b00c12011-03-04 14:06:40 -08001182 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001183 }
1184
Dan Williams9b4be522011-07-29 17:17:10 -07001185 /* the coalesence timeout doubles at each encoding step, so
1186 * update it based on the ilog2 value of the outstanding requests
1187 */
1188 active = isci_tci_active(ihost);
1189 writel(SMU_ICC_GEN_VAL(NUMBER, active) |
1190 SMU_ICC_GEN_VAL(TIMER, ISCI_COALESCE_BASE + ilog2(active)),
1191 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williams6f231dd2011-07-02 22:56:22 -07001192}
1193
Dan Williamscc9203b2011-05-08 17:34:44 -07001194/**
Dan Williams89a73012011-06-30 19:14:33 -07001195 * sci_controller_stop() - This method will stop an individual controller
Dan Williamscc9203b2011-05-08 17:34:44 -07001196 * object.This method will invoke the associated user callback upon
1197 * completion. The completion callback is called when the following
1198 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1199 * controller has been quiesced. This method will ensure that all IO
1200 * requests are quiesced, phys are stopped, and all additional operation by
1201 * the hardware is halted.
1202 * @controller: the handle to the controller object to stop.
1203 * @timeout: This parameter specifies the number of milliseconds in which the
1204 * stop operation should complete.
1205 *
1206 * The controller must be in the STARTED or STOPPED state. Indicate if the
1207 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1208 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1209 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1210 * controller is not either in the STARTED or STOPPED states.
1211 */
Dan Williams89a73012011-06-30 19:14:33 -07001212static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001213{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001214 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08001215 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1216 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07001217 return SCI_FAILURE_INVALID_STATE;
1218 }
1219
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001220 sci_mod_timer(&ihost->timer, timeout);
1221 sci_change_state(&ihost->sm, SCIC_STOPPING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001222 return SCI_SUCCESS;
1223}
1224
1225/**
Dan Williams89a73012011-06-30 19:14:33 -07001226 * sci_controller_reset() - This method will reset the supplied core
Dan Williamscc9203b2011-05-08 17:34:44 -07001227 * controller regardless of the state of said controller. This operation is
1228 * considered destructive. In other words, all current operations are wiped
1229 * out. No IO completions for outstanding devices occur. Outstanding IO
1230 * requests are not aborted or completed at the actual remote device.
1231 * @controller: the handle to the controller object to reset.
1232 *
1233 * Indicate if the controller reset method succeeded or failed in some way.
1234 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1235 * the controller reset operation is unable to complete.
1236 */
Dan Williams89a73012011-06-30 19:14:33 -07001237static enum sci_status sci_controller_reset(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001238{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001239 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001240 case SCIC_RESET:
1241 case SCIC_READY:
1242 case SCIC_STOPPED:
1243 case SCIC_FAILED:
Dan Williamscc9203b2011-05-08 17:34:44 -07001244 /*
1245 * The reset operation is not a graceful cleanup, just
1246 * perform the state transition.
1247 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001248 sci_change_state(&ihost->sm, SCIC_RESETTING);
Dan Williamscc9203b2011-05-08 17:34:44 -07001249 return SCI_SUCCESS;
1250 default:
Dan Williams14e99b42012-02-10 01:05:43 -08001251 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1252 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07001253 return SCI_FAILURE_INVALID_STATE;
1254 }
1255}
1256
Dan Williams0cf89d12011-02-18 09:25:07 -08001257void isci_host_deinit(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07001258{
1259 int i;
1260
Dan Williamsad4f4c12011-09-01 21:18:31 -07001261 /* disable output data selects */
1262 for (i = 0; i < isci_gpio_count(ihost); i++)
1263 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
1264
Dan Williams0cf89d12011-02-18 09:25:07 -08001265 isci_host_change_state(ihost, isci_stopping);
Dan Williams6f231dd2011-07-02 22:56:22 -07001266 for (i = 0; i < SCI_MAX_PORTS; i++) {
Dan Williamse5313812011-05-07 10:11:43 -07001267 struct isci_port *iport = &ihost->ports[i];
Dan Williams0cf89d12011-02-18 09:25:07 -08001268 struct isci_remote_device *idev, *d;
1269
Dan Williamse5313812011-05-07 10:11:43 -07001270 list_for_each_entry_safe(idev, d, &iport->remote_dev_list, node) {
Dan Williams209fae12011-06-13 17:39:44 -07001271 if (test_bit(IDEV_ALLOCATED, &idev->flags))
1272 isci_remote_device_stop(ihost, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -07001273 }
1274 }
1275
Dan Williams0cf89d12011-02-18 09:25:07 -08001276 set_bit(IHOST_STOP_PENDING, &ihost->flags);
Dan Williams7c40a802011-03-02 11:49:26 -08001277
1278 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07001279 sci_controller_stop(ihost, SCIC_CONTROLLER_STOP_TIMEOUT);
Dan Williams7c40a802011-03-02 11:49:26 -08001280 spin_unlock_irq(&ihost->scic_lock);
1281
Dan Williams0cf89d12011-02-18 09:25:07 -08001282 wait_for_stop(ihost);
Dan Williamsad4f4c12011-09-01 21:18:31 -07001283
1284 /* disable sgpio: where the above wait should give time for the
1285 * enclosure to sample the gpios going inactive
1286 */
1287 writel(0, &ihost->scu_registers->peg0.sgpio.interface_control);
1288
Dan Williams89a73012011-06-30 19:14:33 -07001289 sci_controller_reset(ihost);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001290
1291 /* Cancel any/all outstanding port timers */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001292 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001293 struct isci_port *iport = &ihost->ports[i];
1294 del_timer_sync(&iport->timer.timer);
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001295 }
1296
Edmund Nadolskia628d472011-05-19 11:59:36 +00001297 /* Cancel any/all outstanding phy timers */
1298 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams85280952011-06-28 15:05:53 -07001299 struct isci_phy *iphy = &ihost->phys[i];
1300 del_timer_sync(&iphy->sata_timer.timer);
Edmund Nadolskia628d472011-05-19 11:59:36 +00001301 }
1302
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001303 del_timer_sync(&ihost->port_agent.timer.timer);
Edmund Nadolskiac0eeb42011-05-19 20:00:51 -07001304
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001305 del_timer_sync(&ihost->power_control.timer.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001306
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001307 del_timer_sync(&ihost->timer.timer);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001308
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001309 del_timer_sync(&ihost->phy_timer.timer);
Dan Williams6f231dd2011-07-02 22:56:22 -07001310}
1311
Dan Williams6f231dd2011-07-02 22:56:22 -07001312static void __iomem *scu_base(struct isci_host *isci_host)
1313{
1314 struct pci_dev *pdev = isci_host->pdev;
1315 int id = isci_host->id;
1316
1317 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
1318}
1319
1320static void __iomem *smu_base(struct isci_host *isci_host)
1321{
1322 struct pci_dev *pdev = isci_host->pdev;
1323 int id = isci_host->id;
1324
1325 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
1326}
1327
Dan Williams89a73012011-06-30 19:14:33 -07001328static void isci_user_parameters_get(struct sci_user_parameters *u)
Dave Jiangb5f18a22011-03-16 14:57:23 -07001329{
Dave Jiangb5f18a22011-03-16 14:57:23 -07001330 int i;
1331
1332 for (i = 0; i < SCI_MAX_PHYS; i++) {
1333 struct sci_phy_user_params *u_phy = &u->phys[i];
1334
1335 u_phy->max_speed_generation = phy_gen;
1336
1337 /* we are not exporting these for now */
1338 u_phy->align_insertion_frequency = 0x7f;
1339 u_phy->in_connection_align_insertion_frequency = 0xff;
1340 u_phy->notify_enable_spin_up_insertion_frequency = 0x33;
1341 }
1342
1343 u->stp_inactivity_timeout = stp_inactive_to;
1344 u->ssp_inactivity_timeout = ssp_inactive_to;
1345 u->stp_max_occupancy_timeout = stp_max_occ_to;
1346 u->ssp_max_occupancy_timeout = ssp_max_occ_to;
1347 u->no_outbound_task_timeout = no_outbound_task_to;
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001348 u->max_concurr_spinup = max_concurr_spinup;
Dave Jiangb5f18a22011-03-16 14:57:23 -07001349}
1350
Dan Williams89a73012011-06-30 19:14:33 -07001351static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001352{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001353 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001354
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001355 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001356}
1357
Dan Williams89a73012011-06-30 19:14:33 -07001358static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001359{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001360 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001361
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001362 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001363}
1364
1365#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1366#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1367#define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1368#define INTERRUPT_COALESCE_NUMBER_MAX 256
1369#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1370#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1371
1372/**
Dan Williams89a73012011-06-30 19:14:33 -07001373 * sci_controller_set_interrupt_coalescence() - This method allows the user to
Dan Williamscc9203b2011-05-08 17:34:44 -07001374 * configure the interrupt coalescence.
1375 * @controller: This parameter represents the handle to the controller object
1376 * for which its interrupt coalesce register is overridden.
1377 * @coalesce_number: Used to control the number of entries in the Completion
1378 * Queue before an interrupt is generated. If the number of entries exceed
1379 * this number, an interrupt will be generated. The valid range of the input
1380 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1381 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1382 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1383 * interrupt coalescing timeout.
1384 *
1385 * Indicate if the user successfully set the interrupt coalesce parameters.
1386 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1387 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1388 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001389static enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -07001390sci_controller_set_interrupt_coalescence(struct isci_host *ihost,
1391 u32 coalesce_number,
1392 u32 coalesce_timeout)
Dan Williamscc9203b2011-05-08 17:34:44 -07001393{
1394 u8 timeout_encode = 0;
1395 u32 min = 0;
1396 u32 max = 0;
1397
1398 /* Check if the input parameters fall in the range. */
1399 if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX)
1400 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1401
1402 /*
1403 * Defined encoding for interrupt coalescing timeout:
1404 * Value Min Max Units
1405 * ----- --- --- -----
1406 * 0 - - Disabled
1407 * 1 13.3 20.0 ns
1408 * 2 26.7 40.0
1409 * 3 53.3 80.0
1410 * 4 106.7 160.0
1411 * 5 213.3 320.0
1412 * 6 426.7 640.0
1413 * 7 853.3 1280.0
1414 * 8 1.7 2.6 us
1415 * 9 3.4 5.1
1416 * 10 6.8 10.2
1417 * 11 13.7 20.5
1418 * 12 27.3 41.0
1419 * 13 54.6 81.9
1420 * 14 109.2 163.8
1421 * 15 218.5 327.7
1422 * 16 436.9 655.4
1423 * 17 873.8 1310.7
1424 * 18 1.7 2.6 ms
1425 * 19 3.5 5.2
1426 * 20 7.0 10.5
1427 * 21 14.0 21.0
1428 * 22 28.0 41.9
1429 * 23 55.9 83.9
1430 * 24 111.8 167.8
1431 * 25 223.7 335.5
1432 * 26 447.4 671.1
1433 * 27 894.8 1342.2
1434 * 28 1.8 2.7 s
1435 * Others Undefined */
1436
1437 /*
1438 * Use the table above to decide the encode of interrupt coalescing timeout
1439 * value for register writing. */
1440 if (coalesce_timeout == 0)
1441 timeout_encode = 0;
1442 else{
1443 /* make the timeout value in unit of (10 ns). */
1444 coalesce_timeout = coalesce_timeout * 100;
1445 min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10;
1446 max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10;
1447
1448 /* get the encode of timeout for register writing. */
1449 for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN;
1450 timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX;
1451 timeout_encode++) {
1452 if (min <= coalesce_timeout && max > coalesce_timeout)
1453 break;
1454 else if (coalesce_timeout >= max && coalesce_timeout < min * 2
1455 && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) {
1456 if ((coalesce_timeout - max) < (2 * min - coalesce_timeout))
1457 break;
1458 else{
1459 timeout_encode++;
1460 break;
1461 }
1462 } else {
1463 max = max * 2;
1464 min = min * 2;
1465 }
1466 }
1467
1468 if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1)
1469 /* the value is out of range. */
1470 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1471 }
1472
1473 writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) |
1474 SMU_ICC_GEN_VAL(TIMER, timeout_encode),
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001475 &ihost->smu_registers->interrupt_coalesce_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001476
1477
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001478 ihost->interrupt_coalesce_number = (u16)coalesce_number;
1479 ihost->interrupt_coalesce_timeout = coalesce_timeout / 100;
Dan Williamscc9203b2011-05-08 17:34:44 -07001480
1481 return SCI_SUCCESS;
1482}
1483
1484
Dan Williams89a73012011-06-30 19:14:33 -07001485static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001486{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001487 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Marcin Tomczake5cc6aa2012-01-27 11:14:50 -08001488 u32 val;
1489
1490 /* enable clock gating for power control of the scu unit */
1491 val = readl(&ihost->smu_registers->clock_gating_control);
1492 val &= ~(SMU_CGUCR_GEN_BIT(REGCLK_ENABLE) |
1493 SMU_CGUCR_GEN_BIT(TXCLK_ENABLE) |
1494 SMU_CGUCR_GEN_BIT(XCLK_ENABLE));
1495 val |= SMU_CGUCR_GEN_BIT(IDLE_ENABLE);
1496 writel(val, &ihost->smu_registers->clock_gating_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001497
1498 /* set the default interrupt coalescence number and timeout value. */
Dan Williams9b4be522011-07-29 17:17:10 -07001499 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001500}
1501
Dan Williams89a73012011-06-30 19:14:33 -07001502static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001503{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001504 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001505
1506 /* disable interrupt coalescence. */
Dan Williams89a73012011-06-30 19:14:33 -07001507 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001508}
1509
Dan Williams89a73012011-06-30 19:14:33 -07001510static enum sci_status sci_controller_stop_phys(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001511{
1512 u32 index;
1513 enum sci_status status;
1514 enum sci_status phy_status;
Dan Williamscc9203b2011-05-08 17:34:44 -07001515
1516 status = SCI_SUCCESS;
1517
1518 for (index = 0; index < SCI_MAX_PHYS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001519 phy_status = sci_phy_stop(&ihost->phys[index]);
Dan Williamscc9203b2011-05-08 17:34:44 -07001520
1521 if (phy_status != SCI_SUCCESS &&
1522 phy_status != SCI_FAILURE_INVALID_STATE) {
1523 status = SCI_FAILURE;
1524
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001525 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001526 "%s: Controller stop operation failed to stop "
1527 "phy %d because of status %d.\n",
1528 __func__,
Dan Williams85280952011-06-28 15:05:53 -07001529 ihost->phys[index].phy_index, phy_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001530 }
1531 }
1532
1533 return status;
1534}
1535
Dan Williams89a73012011-06-30 19:14:33 -07001536static enum sci_status sci_controller_stop_ports(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001537{
1538 u32 index;
1539 enum sci_status port_status;
1540 enum sci_status status = SCI_SUCCESS;
Dan Williamscc9203b2011-05-08 17:34:44 -07001541
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001542 for (index = 0; index < ihost->logical_port_entries; index++) {
Dan Williamsffe191c2011-06-29 13:09:25 -07001543 struct isci_port *iport = &ihost->ports[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07001544
Dan Williams89a73012011-06-30 19:14:33 -07001545 port_status = sci_port_stop(iport);
Dan Williamscc9203b2011-05-08 17:34:44 -07001546
1547 if ((port_status != SCI_SUCCESS) &&
1548 (port_status != SCI_FAILURE_INVALID_STATE)) {
1549 status = SCI_FAILURE;
1550
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001551 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001552 "%s: Controller stop operation failed to "
1553 "stop port %d because of status %d.\n",
1554 __func__,
Dan Williamsffe191c2011-06-29 13:09:25 -07001555 iport->logical_port_index,
Dan Williamscc9203b2011-05-08 17:34:44 -07001556 port_status);
1557 }
1558 }
1559
1560 return status;
1561}
1562
Dan Williams89a73012011-06-30 19:14:33 -07001563static enum sci_status sci_controller_stop_devices(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001564{
1565 u32 index;
1566 enum sci_status status;
1567 enum sci_status device_status;
1568
1569 status = SCI_SUCCESS;
1570
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001571 for (index = 0; index < ihost->remote_node_entries; index++) {
1572 if (ihost->device_table[index] != NULL) {
Dan Williamscc9203b2011-05-08 17:34:44 -07001573 /* / @todo What timeout value do we want to provide to this request? */
Dan Williams89a73012011-06-30 19:14:33 -07001574 device_status = sci_remote_device_stop(ihost->device_table[index], 0);
Dan Williamscc9203b2011-05-08 17:34:44 -07001575
1576 if ((device_status != SCI_SUCCESS) &&
1577 (device_status != SCI_FAILURE_INVALID_STATE)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001578 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07001579 "%s: Controller stop operation failed "
1580 "to stop device 0x%p because of "
1581 "status %d.\n",
1582 __func__,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001583 ihost->device_table[index], device_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07001584 }
1585 }
1586 }
1587
1588 return status;
1589}
1590
Dan Williams89a73012011-06-30 19:14:33 -07001591static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001592{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001593 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001594
1595 /* Stop all of the components for this controller */
Dan Williams89a73012011-06-30 19:14:33 -07001596 sci_controller_stop_phys(ihost);
1597 sci_controller_stop_ports(ihost);
1598 sci_controller_stop_devices(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001599}
1600
Dan Williams89a73012011-06-30 19:14:33 -07001601static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001602{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001603 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001604
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001605 sci_del_timer(&ihost->timer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001606}
1607
Dan Williams89a73012011-06-30 19:14:33 -07001608static void sci_controller_reset_hardware(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001609{
1610 /* Disable interrupts so we dont take any spurious interrupts */
Dan Williams89a73012011-06-30 19:14:33 -07001611 sci_controller_disable_interrupts(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001612
1613 /* Reset the SCU */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001614 writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07001615
1616 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1617 udelay(1000);
1618
1619 /* The write to the CQGR clears the CQP */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001620 writel(0x00000000, &ihost->smu_registers->completion_queue_get);
Dan Williamscc9203b2011-05-08 17:34:44 -07001621
1622 /* The write to the UFQGP clears the UFQPR */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001623 writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07001624}
1625
Dan Williams89a73012011-06-30 19:14:33 -07001626static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm)
Dan Williamscc9203b2011-05-08 17:34:44 -07001627{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001628 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
Dan Williamscc9203b2011-05-08 17:34:44 -07001629
Dan Williams89a73012011-06-30 19:14:33 -07001630 sci_controller_reset_hardware(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001631 sci_change_state(&ihost->sm, SCIC_RESET);
Dan Williamscc9203b2011-05-08 17:34:44 -07001632}
1633
Dan Williams89a73012011-06-30 19:14:33 -07001634static const struct sci_base_state sci_controller_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001635 [SCIC_INITIAL] = {
Dan Williams89a73012011-06-30 19:14:33 -07001636 .enter_state = sci_controller_initial_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001637 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001638 [SCIC_RESET] = {},
1639 [SCIC_INITIALIZING] = {},
1640 [SCIC_INITIALIZED] = {},
1641 [SCIC_STARTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001642 .exit_state = sci_controller_starting_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001643 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001644 [SCIC_READY] = {
Dan Williams89a73012011-06-30 19:14:33 -07001645 .enter_state = sci_controller_ready_state_enter,
1646 .exit_state = sci_controller_ready_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001647 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001648 [SCIC_RESETTING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001649 .enter_state = sci_controller_resetting_state_enter,
Dan Williamscc9203b2011-05-08 17:34:44 -07001650 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001651 [SCIC_STOPPING] = {
Dan Williams89a73012011-06-30 19:14:33 -07001652 .enter_state = sci_controller_stopping_state_enter,
1653 .exit_state = sci_controller_stopping_state_exit,
Dan Williamscc9203b2011-05-08 17:34:44 -07001654 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001655 [SCIC_STOPPED] = {},
1656 [SCIC_FAILED] = {}
Dan Williamscc9203b2011-05-08 17:34:44 -07001657};
1658
Dan Williams89a73012011-06-30 19:14:33 -07001659static void sci_controller_set_default_config_parameters(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001660{
1661 /* these defaults are overridden by the platform / firmware */
Dan Williamscc9203b2011-05-08 17:34:44 -07001662 u16 index;
1663
1664 /* Default to APC mode. */
Dan Williams89a73012011-06-30 19:14:33 -07001665 ihost->oem_parameters.controller.mode_type = SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001666
1667 /* Default to APC mode. */
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001668 ihost->oem_parameters.controller.max_concurr_spin_up = 1;
Dan Williamscc9203b2011-05-08 17:34:44 -07001669
1670 /* Default to no SSC operation. */
Dan Williams89a73012011-06-30 19:14:33 -07001671 ihost->oem_parameters.controller.do_enable_ssc = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07001672
Jeff Skirvin9fee6072012-01-04 01:32:49 -08001673 /* Default to short cables on all phys. */
1674 ihost->oem_parameters.controller.cable_selection_mask = 0;
1675
Dan Williamscc9203b2011-05-08 17:34:44 -07001676 /* Initialize all of the port parameter information to narrow ports. */
1677 for (index = 0; index < SCI_MAX_PORTS; index++) {
Dan Williams89a73012011-06-30 19:14:33 -07001678 ihost->oem_parameters.ports[index].phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001679 }
1680
1681 /* Initialize all of the phy parameter information. */
1682 for (index = 0; index < SCI_MAX_PHYS; index++) {
Jeff Skirvinbe168a32012-01-04 01:33:00 -08001683 /* Default to 3G (i.e. Gen 2). */
1684 ihost->user_parameters.phys[index].max_speed_generation =
1685 SCIC_SDS_PARM_GEN2_SPEED;
Dan Williamscc9203b2011-05-08 17:34:44 -07001686
1687 /* the frequencies cannot be 0 */
Dan Williams89a73012011-06-30 19:14:33 -07001688 ihost->user_parameters.phys[index].align_insertion_frequency = 0x7f;
1689 ihost->user_parameters.phys[index].in_connection_align_insertion_frequency = 0xff;
1690 ihost->user_parameters.phys[index].notify_enable_spin_up_insertion_frequency = 0x33;
Dan Williamscc9203b2011-05-08 17:34:44 -07001691
1692 /*
1693 * Previous Vitesse based expanders had a arbitration issue that
1694 * is worked around by having the upper 32-bits of SAS address
1695 * with a value greater then the Vitesse company identifier.
1696 * Hence, usage of 0x5FCFFFFF. */
Dan Williams89a73012011-06-30 19:14:33 -07001697 ihost->oem_parameters.phys[index].sas_address.low = 0x1 + ihost->id;
1698 ihost->oem_parameters.phys[index].sas_address.high = 0x5FCFFFFF;
Dan Williamscc9203b2011-05-08 17:34:44 -07001699 }
1700
Dan Williams89a73012011-06-30 19:14:33 -07001701 ihost->user_parameters.stp_inactivity_timeout = 5;
1702 ihost->user_parameters.ssp_inactivity_timeout = 5;
1703 ihost->user_parameters.stp_max_occupancy_timeout = 5;
1704 ihost->user_parameters.ssp_max_occupancy_timeout = 20;
Marcin Tomczak6024d382012-01-04 01:32:54 -08001705 ihost->user_parameters.no_outbound_task_timeout = 2;
Dan Williamscc9203b2011-05-08 17:34:44 -07001706}
1707
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001708static void controller_timeout(unsigned long data)
1709{
1710 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001711 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer);
1712 struct sci_base_state_machine *sm = &ihost->sm;
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001713 unsigned long flags;
Dan Williamscc9203b2011-05-08 17:34:44 -07001714
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001715 spin_lock_irqsave(&ihost->scic_lock, flags);
1716
1717 if (tmr->cancel)
1718 goto done;
1719
Edmund Nadolskie3013702011-06-02 00:10:43 +00001720 if (sm->current_state_id == SCIC_STARTING)
Dan Williams89a73012011-06-30 19:14:33 -07001721 sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001722 else if (sm->current_state_id == SCIC_STOPPING) {
1723 sci_change_state(sm, SCIC_FAILED);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001724 isci_host_stop_complete(ihost, SCI_FAILURE_TIMEOUT);
1725 } else /* / @todo Now what do we want to do in this case? */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001726 dev_err(&ihost->pdev->dev,
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001727 "%s: Controller timer fired when controller was not "
1728 "in a state being timed.\n",
1729 __func__);
1730
1731done:
1732 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1733}
Dan Williamscc9203b2011-05-08 17:34:44 -07001734
Dan Williams89a73012011-06-30 19:14:33 -07001735static enum sci_status sci_controller_construct(struct isci_host *ihost,
1736 void __iomem *scu_base,
1737 void __iomem *smu_base)
Dan Williamscc9203b2011-05-08 17:34:44 -07001738{
Dan Williamscc9203b2011-05-08 17:34:44 -07001739 u8 i;
1740
Dan Williams89a73012011-06-30 19:14:33 -07001741 sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001742
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001743 ihost->scu_registers = scu_base;
1744 ihost->smu_registers = smu_base;
Dan Williamscc9203b2011-05-08 17:34:44 -07001745
Dan Williams89a73012011-06-30 19:14:33 -07001746 sci_port_configuration_agent_construct(&ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07001747
1748 /* Construct the ports for this controller */
1749 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williams89a73012011-06-30 19:14:33 -07001750 sci_port_construct(&ihost->ports[i], i, ihost);
1751 sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001752
1753 /* Construct the phys for this controller */
1754 for (i = 0; i < SCI_MAX_PHYS; i++) {
1755 /* Add all the PHYs to the dummy port */
Dan Williams89a73012011-06-30 19:14:33 -07001756 sci_phy_construct(&ihost->phys[i],
1757 &ihost->ports[SCI_MAX_PORTS], i);
Dan Williamscc9203b2011-05-08 17:34:44 -07001758 }
1759
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001760 ihost->invalid_phy_mask = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001761
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001762 sci_init_timer(&ihost->timer, controller_timeout);
Edmund Nadolski6cb58532011-05-19 11:59:56 +00001763
Dan Williamscc9203b2011-05-08 17:34:44 -07001764 /* Initialize the User and OEM parameters to default values. */
Dan Williams89a73012011-06-30 19:14:33 -07001765 sci_controller_set_default_config_parameters(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001766
Dan Williams89a73012011-06-30 19:14:33 -07001767 return sci_controller_reset(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07001768}
1769
Dave Jiang594e566a2012-01-04 01:32:44 -08001770int sci_oem_parameters_validate(struct sci_oem_params *oem, u8 version)
Dan Williamscc9203b2011-05-08 17:34:44 -07001771{
1772 int i;
1773
1774 for (i = 0; i < SCI_MAX_PORTS; i++)
1775 if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX)
1776 return -EINVAL;
1777
1778 for (i = 0; i < SCI_MAX_PHYS; i++)
1779 if (oem->phys[i].sas_address.high == 0 &&
1780 oem->phys[i].sas_address.low == 0)
1781 return -EINVAL;
1782
1783 if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) {
1784 for (i = 0; i < SCI_MAX_PHYS; i++)
1785 if (oem->ports[i].phy_mask != 0)
1786 return -EINVAL;
1787 } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
1788 u8 phy_mask = 0;
1789
1790 for (i = 0; i < SCI_MAX_PHYS; i++)
1791 phy_mask |= oem->ports[i].phy_mask;
1792
1793 if (phy_mask == 0)
1794 return -EINVAL;
1795 } else
1796 return -EINVAL;
1797
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001798 if (oem->controller.max_concurr_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT ||
1799 oem->controller.max_concurr_spin_up < 1)
Dan Williamscc9203b2011-05-08 17:34:44 -07001800 return -EINVAL;
1801
Dave Jiang594e566a2012-01-04 01:32:44 -08001802 if (oem->controller.do_enable_ssc) {
1803 if (version < ISCI_ROM_VER_1_1 && oem->controller.do_enable_ssc != 1)
1804 return -EINVAL;
1805
1806 if (version >= ISCI_ROM_VER_1_1) {
1807 u8 test = oem->controller.ssc_sata_tx_spread_level;
1808
1809 switch (test) {
1810 case 0:
1811 case 2:
1812 case 3:
1813 case 6:
1814 case 7:
1815 break;
1816 default:
1817 return -EINVAL;
1818 }
1819
1820 test = oem->controller.ssc_sas_tx_spread_level;
1821 if (oem->controller.ssc_sas_tx_type == 0) {
1822 switch (test) {
1823 case 0:
1824 case 2:
1825 case 3:
1826 break;
1827 default:
1828 return -EINVAL;
1829 }
1830 } else if (oem->controller.ssc_sas_tx_type == 1) {
1831 switch (test) {
1832 case 0:
1833 case 3:
1834 case 6:
1835 break;
1836 default:
1837 return -EINVAL;
1838 }
1839 }
1840 }
1841 }
1842
Dan Williamscc9203b2011-05-08 17:34:44 -07001843 return 0;
1844}
1845
Dan Williams89a73012011-06-30 19:14:33 -07001846static enum sci_status sci_oem_parameters_set(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07001847{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001848 u32 state = ihost->sm.current_state_id;
Dave Jiang594e566a2012-01-04 01:32:44 -08001849 struct isci_pci_info *pci_info = to_pci_info(ihost->pdev);
Dan Williamscc9203b2011-05-08 17:34:44 -07001850
Edmund Nadolskie3013702011-06-02 00:10:43 +00001851 if (state == SCIC_RESET ||
1852 state == SCIC_INITIALIZING ||
1853 state == SCIC_INITIALIZED) {
Dave Jiang6d7938f2012-01-27 11:17:37 -08001854 u8 oem_version = pci_info->orom ? pci_info->orom->hdr.version :
1855 ISCI_ROM_VER_1_0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001856
Dave Jiang594e566a2012-01-04 01:32:44 -08001857 if (sci_oem_parameters_validate(&ihost->oem_parameters,
Dave Jiang6d7938f2012-01-27 11:17:37 -08001858 oem_version))
Dan Williamscc9203b2011-05-08 17:34:44 -07001859 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
Dan Williamscc9203b2011-05-08 17:34:44 -07001860
1861 return SCI_SUCCESS;
1862 }
1863
1864 return SCI_FAILURE_INVALID_STATE;
1865}
1866
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001867static u8 max_spin_up(struct isci_host *ihost)
1868{
1869 if (ihost->user_parameters.max_concurr_spinup)
1870 return min_t(u8, ihost->user_parameters.max_concurr_spinup,
1871 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1872 else
1873 return min_t(u8, ihost->oem_parameters.controller.max_concurr_spin_up,
1874 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1875}
1876
Edmund Nadolski04736612011-05-19 20:17:47 -07001877static void power_control_timeout(unsigned long data)
Dan Williamscc9203b2011-05-08 17:34:44 -07001878{
Edmund Nadolski04736612011-05-19 20:17:47 -07001879 struct sci_timer *tmr = (struct sci_timer *)data;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001880 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer);
Dan Williams85280952011-06-28 15:05:53 -07001881 struct isci_phy *iphy;
Edmund Nadolski04736612011-05-19 20:17:47 -07001882 unsigned long flags;
1883 u8 i;
Dan Williamscc9203b2011-05-08 17:34:44 -07001884
Edmund Nadolski04736612011-05-19 20:17:47 -07001885 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001886
Edmund Nadolski04736612011-05-19 20:17:47 -07001887 if (tmr->cancel)
1888 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001889
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001890 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07001891
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001892 if (ihost->power_control.phys_waiting == 0) {
1893 ihost->power_control.timer_started = false;
Edmund Nadolski04736612011-05-19 20:17:47 -07001894 goto done;
Dan Williamscc9203b2011-05-08 17:34:44 -07001895 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001896
1897 for (i = 0; i < SCI_MAX_PHYS; i++) {
1898
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001899 if (ihost->power_control.phys_waiting == 0)
Edmund Nadolski04736612011-05-19 20:17:47 -07001900 break;
1901
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001902 iphy = ihost->power_control.requesters[i];
Dan Williams85280952011-06-28 15:05:53 -07001903 if (iphy == NULL)
Edmund Nadolski04736612011-05-19 20:17:47 -07001904 continue;
1905
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001906 if (ihost->power_control.phys_granted_power >= max_spin_up(ihost))
Edmund Nadolski04736612011-05-19 20:17:47 -07001907 break;
1908
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001909 ihost->power_control.requesters[i] = NULL;
1910 ihost->power_control.phys_waiting--;
1911 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001912 sci_phy_consume_power_handler(iphy);
Marcin Tomczakbe778342012-01-04 01:33:31 -08001913
1914 if (iphy->protocol == SCIC_SDS_PHY_PROTOCOL_SAS) {
1915 u8 j;
1916
1917 for (j = 0; j < SCI_MAX_PHYS; j++) {
1918 struct isci_phy *requester = ihost->power_control.requesters[j];
1919
1920 /*
1921 * Search the power_control queue to see if there are other phys
1922 * attached to the same remote device. If found, take all of
1923 * them out of await_sas_power state.
1924 */
1925 if (requester != NULL && requester != iphy) {
1926 u8 other = memcmp(requester->frame_rcvd.iaf.sas_addr,
1927 iphy->frame_rcvd.iaf.sas_addr,
1928 sizeof(requester->frame_rcvd.iaf.sas_addr));
1929
1930 if (other == 0) {
1931 ihost->power_control.requesters[j] = NULL;
1932 ihost->power_control.phys_waiting--;
1933 sci_phy_consume_power_handler(requester);
1934 }
1935 }
1936 }
1937 }
Edmund Nadolski04736612011-05-19 20:17:47 -07001938 }
1939
1940 /*
1941 * It doesn't matter if the power list is empty, we need to start the
1942 * timer in case another phy becomes ready.
1943 */
1944 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001945 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001946
1947done:
1948 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07001949}
1950
Dan Williams89a73012011-06-30 19:14:33 -07001951void sci_controller_power_control_queue_insert(struct isci_host *ihost,
1952 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07001953{
Dan Williams85280952011-06-28 15:05:53 -07001954 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07001955
Andrzej Jakowski7000f7c2011-10-27 15:05:42 -07001956 if (ihost->power_control.phys_granted_power < max_spin_up(ihost)) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001957 ihost->power_control.phys_granted_power++;
Dan Williams89a73012011-06-30 19:14:33 -07001958 sci_phy_consume_power_handler(iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07001959
1960 /*
1961 * stop and start the power_control timer. When the timer fires, the
1962 * no_of_phys_granted_power will be set to 0
1963 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001964 if (ihost->power_control.timer_started)
1965 sci_del_timer(&ihost->power_control.timer);
Edmund Nadolski04736612011-05-19 20:17:47 -07001966
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001967 sci_mod_timer(&ihost->power_control.timer,
Edmund Nadolski04736612011-05-19 20:17:47 -07001968 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07001969 ihost->power_control.timer_started = true;
Edmund Nadolski04736612011-05-19 20:17:47 -07001970
Dan Williamscc9203b2011-05-08 17:34:44 -07001971 } else {
Marcin Tomczakbe778342012-01-04 01:33:31 -08001972 /*
1973 * There are phys, attached to the same sas address as this phy, are
1974 * already in READY state, this phy don't need wait.
1975 */
1976 u8 i;
1977 struct isci_phy *current_phy;
1978
1979 for (i = 0; i < SCI_MAX_PHYS; i++) {
1980 u8 other;
1981 current_phy = &ihost->phys[i];
1982
1983 other = memcmp(current_phy->frame_rcvd.iaf.sas_addr,
1984 iphy->frame_rcvd.iaf.sas_addr,
1985 sizeof(current_phy->frame_rcvd.iaf.sas_addr));
1986
1987 if (current_phy->sm.current_state_id == SCI_PHY_READY &&
1988 current_phy->protocol == SCIC_SDS_PHY_PROTOCOL_SAS &&
1989 other == 0) {
1990 sci_phy_consume_power_handler(iphy);
1991 break;
1992 }
1993 }
1994
1995 if (i == SCI_MAX_PHYS) {
1996 /* Add the phy in the waiting list */
1997 ihost->power_control.requesters[iphy->phy_index] = iphy;
1998 ihost->power_control.phys_waiting++;
1999 }
Dan Williamscc9203b2011-05-08 17:34:44 -07002000 }
2001}
2002
Dan Williams89a73012011-06-30 19:14:33 -07002003void sci_controller_power_control_queue_remove(struct isci_host *ihost,
2004 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002005{
Dan Williams85280952011-06-28 15:05:53 -07002006 BUG_ON(iphy == NULL);
Dan Williamscc9203b2011-05-08 17:34:44 -07002007
Dan Williams89a73012011-06-30 19:14:33 -07002008 if (ihost->power_control.requesters[iphy->phy_index])
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002009 ihost->power_control.phys_waiting--;
Dan Williamscc9203b2011-05-08 17:34:44 -07002010
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002011 ihost->power_control.requesters[iphy->phy_index] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002012}
2013
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002014static int is_long_cable(int phy, unsigned char selection_byte)
2015{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08002016 return !!(selection_byte & (1 << phy));
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002017}
2018
2019static int is_medium_cable(int phy, unsigned char selection_byte)
2020{
Jeff Skirvin9fee6072012-01-04 01:32:49 -08002021 return !!(selection_byte & (1 << (phy + 4)));
2022}
2023
2024static enum cable_selections decode_selection_byte(
2025 int phy,
2026 unsigned char selection_byte)
2027{
2028 return ((selection_byte & (1 << phy)) ? 1 : 0)
2029 + (selection_byte & (1 << (phy + 4)) ? 2 : 0);
2030}
2031
2032static unsigned char *to_cable_select(struct isci_host *ihost)
2033{
2034 if (is_cable_select_overridden())
2035 return ((unsigned char *)&cable_selection_override)
2036 + ihost->id;
2037 else
2038 return &ihost->oem_parameters.controller.cable_selection_mask;
2039}
2040
2041enum cable_selections decode_cable_selection(struct isci_host *ihost, int phy)
2042{
2043 return decode_selection_byte(phy, *to_cable_select(ihost));
2044}
2045
2046char *lookup_cable_names(enum cable_selections selection)
2047{
2048 static char *cable_names[] = {
2049 [short_cable] = "short",
2050 [long_cable] = "long",
2051 [medium_cable] = "medium",
2052 [undefined_cable] = "<undefined, assumed long>" /* bit 0==1 */
2053 };
2054 return (selection <= undefined_cable) ? cable_names[selection]
2055 : cable_names[undefined_cable];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002056}
2057
Dan Williamscc9203b2011-05-08 17:34:44 -07002058#define AFE_REGISTER_WRITE_DELAY 10
2059
Dan Williams89a73012011-06-30 19:14:33 -07002060static void sci_controller_afe_initialization(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002061{
Dan Williams2e5da882012-01-04 01:32:34 -08002062 struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe;
Dan Williams89a73012011-06-30 19:14:33 -07002063 const struct sci_oem_params *oem = &ihost->oem_parameters;
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002064 struct pci_dev *pdev = ihost->pdev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002065 u32 afe_status;
2066 u32 phy_id;
Jeff Skirvin9fee6072012-01-04 01:32:49 -08002067 unsigned char cable_selection_mask = *to_cable_select(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002068
2069 /* Clear DFX Status registers */
Dan Williams2e5da882012-01-04 01:32:34 -08002070 writel(0x0081000f, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002071 udelay(AFE_REGISTER_WRITE_DELAY);
2072
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002073 if (is_b0(pdev) || is_c0(pdev) || is_c1(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002074 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
Dan Williams2e5da882012-01-04 01:32:34 -08002075 * Timer, PM Stagger Timer
2076 */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002077 writel(0x0007FFFF, &afe->afe_pmsn_master_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002078 udelay(AFE_REGISTER_WRITE_DELAY);
2079 }
2080
2081 /* Configure bias currents to normal */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002082 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002083 writel(0x00005A00, &afe->afe_bias_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002084 else if (is_b0(pdev) || is_c0(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002085 writel(0x00005F00, &afe->afe_bias_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002086 else if (is_c1(pdev))
2087 writel(0x00005500, &afe->afe_bias_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002088
2089 udelay(AFE_REGISTER_WRITE_DELAY);
2090
2091 /* Enable PLL */
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002092 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002093 writel(0x80040908, &afe->afe_pll_control0);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002094 else if (is_b0(pdev) || is_c0(pdev))
2095 writel(0x80040A08, &afe->afe_pll_control0);
2096 else if (is_c1(pdev)) {
2097 writel(0x80000B08, &afe->afe_pll_control0);
2098 udelay(AFE_REGISTER_WRITE_DELAY);
2099 writel(0x00000B08, &afe->afe_pll_control0);
2100 udelay(AFE_REGISTER_WRITE_DELAY);
2101 writel(0x80000B08, &afe->afe_pll_control0);
2102 }
Dan Williamscc9203b2011-05-08 17:34:44 -07002103
2104 udelay(AFE_REGISTER_WRITE_DELAY);
2105
2106 /* Wait for the PLL to lock */
2107 do {
Dan Williams2e5da882012-01-04 01:32:34 -08002108 afe_status = readl(&afe->afe_common_block_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002109 udelay(AFE_REGISTER_WRITE_DELAY);
2110 } while ((afe_status & 0x00001000) == 0);
2111
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002112 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002113 /* Shorten SAS SNW lock time (RxLock timer value from 76
2114 * us to 50 us)
2115 */
2116 writel(0x7bcc96ad, &afe->afe_pmsn_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002117 udelay(AFE_REGISTER_WRITE_DELAY);
2118 }
2119
2120 for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) {
Dan Williams2e5da882012-01-04 01:32:34 -08002121 struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_id];
Dan Williamscc9203b2011-05-08 17:34:44 -07002122 const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id];
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002123 int cable_length_long =
2124 is_long_cable(phy_id, cable_selection_mask);
2125 int cable_length_medium =
2126 is_medium_cable(phy_id, cable_selection_mask);
Dan Williamscc9203b2011-05-08 17:34:44 -07002127
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002128 if (is_a2(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002129 /* All defaults, except the Receive Word
2130 * Alignament/Comma Detect Enable....(0xe800)
2131 */
2132 writel(0x00004512, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002133 udelay(AFE_REGISTER_WRITE_DELAY);
2134
Dan Williams2e5da882012-01-04 01:32:34 -08002135 writel(0x0050100F, &xcvr->afe_xcvr_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002136 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002137 } else if (is_b0(pdev)) {
2138 /* Configure transmitter SSC parameters */
2139 writel(0x00030000, &xcvr->afe_tx_ssc_control);
2140 udelay(AFE_REGISTER_WRITE_DELAY);
2141 } else if (is_c0(pdev)) {
2142 /* Configure transmitter SSC parameters */
2143 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2144 udelay(AFE_REGISTER_WRITE_DELAY);
2145
2146 /* All defaults, except the Receive Word
2147 * Alignament/Comma Detect Enable....(0xe800)
2148 */
2149 writel(0x00014500, &xcvr->afe_xcvr_control0);
2150 udelay(AFE_REGISTER_WRITE_DELAY);
2151 } else if (is_c1(pdev)) {
2152 /* Configure transmitter SSC parameters */
2153 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2154 udelay(AFE_REGISTER_WRITE_DELAY);
2155
2156 /* All defaults, except the Receive Word
2157 * Alignament/Comma Detect Enable....(0xe800)
2158 */
2159 writel(0x0001C500, &xcvr->afe_xcvr_control0);
2160 udelay(AFE_REGISTER_WRITE_DELAY);
Dan Williamscc9203b2011-05-08 17:34:44 -07002161 }
2162
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002163 /* Power up TX and RX out from power down (PWRDNTX and
2164 * PWRDNRX) & increase TX int & ext bias 20%....(0xe85c)
Dan Williams2e5da882012-01-04 01:32:34 -08002165 */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002166 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002167 writel(0x000003F0, &xcvr->afe_channel_control);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002168 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002169 writel(0x000003D7, &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002170 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002171
Dan Williams2e5da882012-01-04 01:32:34 -08002172 writel(0x000003D4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002173 } else if (is_c0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002174 writel(0x000001E7, &xcvr->afe_channel_control);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002175 udelay(AFE_REGISTER_WRITE_DELAY);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002176
Dan Williams2e5da882012-01-04 01:32:34 -08002177 writel(0x000001E4, &xcvr->afe_channel_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002178 } else if (is_c1(pdev)) {
2179 writel(cable_length_long ? 0x000002F7 : 0x000001F7,
2180 &xcvr->afe_channel_control);
2181 udelay(AFE_REGISTER_WRITE_DELAY);
2182
2183 writel(cable_length_long ? 0x000002F4 : 0x000001F4,
2184 &xcvr->afe_channel_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002185 }
2186 udelay(AFE_REGISTER_WRITE_DELAY);
2187
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002188 if (is_a2(pdev)) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002189 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002190 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002191 udelay(AFE_REGISTER_WRITE_DELAY);
2192 }
2193
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002194 if (is_a2(pdev) || is_b0(pdev))
2195 /* RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0,
2196 * TPD=0x0(TX Power On), RDD=0x0(RX Detect
2197 * Enabled) ....(0xe800)
2198 */
2199 writel(0x00004100, &xcvr->afe_xcvr_control0);
2200 else if (is_c0(pdev))
2201 writel(0x00014100, &xcvr->afe_xcvr_control0);
2202 else if (is_c1(pdev))
2203 writel(0x0001C100, &xcvr->afe_xcvr_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002204 udelay(AFE_REGISTER_WRITE_DELAY);
2205
2206 /* Leave DFE/FFE on */
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002207 if (is_a2(pdev))
Dan Williams2e5da882012-01-04 01:32:34 -08002208 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamsdc00c8b2011-07-01 11:41:21 -07002209 else if (is_b0(pdev)) {
Dan Williams2e5da882012-01-04 01:32:34 -08002210 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002211 udelay(AFE_REGISTER_WRITE_DELAY);
2212 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002213 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002214 } else if (is_c0(pdev)) {
2215 writel(0x01400C0F, &xcvr->afe_rx_ssc_control1);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002216 udelay(AFE_REGISTER_WRITE_DELAY);
2217
Dan Williams2e5da882012-01-04 01:32:34 -08002218 writel(0x3F6F103F, &xcvr->afe_rx_ssc_control0);
Adam Gruchaladbb07432011-06-01 22:31:03 +00002219 udelay(AFE_REGISTER_WRITE_DELAY);
2220
2221 /* Enable TX equalization (0xe824) */
Dan Williams2e5da882012-01-04 01:32:34 -08002222 writel(0x00040000, &xcvr->afe_tx_control);
Jeff Skirvinafd13a12012-01-04 01:32:39 -08002223 } else if (is_c1(pdev)) {
2224 writel(cable_length_long ? 0x01500C0C :
2225 cable_length_medium ? 0x01400C0D : 0x02400C0D,
2226 &xcvr->afe_xcvr_control1);
2227 udelay(AFE_REGISTER_WRITE_DELAY);
2228
2229 writel(0x000003E0, &xcvr->afe_dfx_rx_control1);
2230 udelay(AFE_REGISTER_WRITE_DELAY);
2231
2232 writel(cable_length_long ? 0x33091C1F :
2233 cable_length_medium ? 0x3315181F : 0x2B17161F,
2234 &xcvr->afe_rx_ssc_control0);
2235 udelay(AFE_REGISTER_WRITE_DELAY);
2236
2237 /* Enable TX equalization (0xe824) */
2238 writel(0x00040000, &xcvr->afe_tx_control);
Dan Williamscc9203b2011-05-08 17:34:44 -07002239 }
Adam Gruchaladbb07432011-06-01 22:31:03 +00002240
Dan Williamscc9203b2011-05-08 17:34:44 -07002241 udelay(AFE_REGISTER_WRITE_DELAY);
2242
Dan Williams2e5da882012-01-04 01:32:34 -08002243 writel(oem_phy->afe_tx_amp_control0, &xcvr->afe_tx_amp_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002244 udelay(AFE_REGISTER_WRITE_DELAY);
2245
Dan Williams2e5da882012-01-04 01:32:34 -08002246 writel(oem_phy->afe_tx_amp_control1, &xcvr->afe_tx_amp_control1);
Dan Williamscc9203b2011-05-08 17:34:44 -07002247 udelay(AFE_REGISTER_WRITE_DELAY);
2248
Dan Williams2e5da882012-01-04 01:32:34 -08002249 writel(oem_phy->afe_tx_amp_control2, &xcvr->afe_tx_amp_control2);
Dan Williamscc9203b2011-05-08 17:34:44 -07002250 udelay(AFE_REGISTER_WRITE_DELAY);
2251
Dan Williams2e5da882012-01-04 01:32:34 -08002252 writel(oem_phy->afe_tx_amp_control3, &xcvr->afe_tx_amp_control3);
Dan Williamscc9203b2011-05-08 17:34:44 -07002253 udelay(AFE_REGISTER_WRITE_DELAY);
2254 }
2255
2256 /* Transfer control to the PEs */
Dan Williams2e5da882012-01-04 01:32:34 -08002257 writel(0x00010f00, &afe->afe_dfx_master_control0);
Dan Williamscc9203b2011-05-08 17:34:44 -07002258 udelay(AFE_REGISTER_WRITE_DELAY);
2259}
2260
Dan Williams89a73012011-06-30 19:14:33 -07002261static void sci_controller_initialize_power_control(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002262{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002263 sci_init_timer(&ihost->power_control.timer, power_control_timeout);
Dan Williamscc9203b2011-05-08 17:34:44 -07002264
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002265 memset(ihost->power_control.requesters, 0,
2266 sizeof(ihost->power_control.requesters));
Dan Williamscc9203b2011-05-08 17:34:44 -07002267
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002268 ihost->power_control.phys_waiting = 0;
2269 ihost->power_control.phys_granted_power = 0;
Dan Williamscc9203b2011-05-08 17:34:44 -07002270}
2271
Dan Williams89a73012011-06-30 19:14:33 -07002272static enum sci_status sci_controller_initialize(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002273{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002274 struct sci_base_state_machine *sm = &ihost->sm;
Dan Williams7c78da32011-06-01 16:00:01 -07002275 enum sci_status result = SCI_FAILURE;
2276 unsigned long i, state, val;
Dan Williamscc9203b2011-05-08 17:34:44 -07002277
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002278 if (ihost->sm.current_state_id != SCIC_RESET) {
Dan Williams14e99b42012-02-10 01:05:43 -08002279 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2280 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002281 return SCI_FAILURE_INVALID_STATE;
2282 }
2283
Edmund Nadolskie3013702011-06-02 00:10:43 +00002284 sci_change_state(sm, SCIC_INITIALIZING);
Dan Williamscc9203b2011-05-08 17:34:44 -07002285
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002286 sci_init_timer(&ihost->phy_timer, phy_startup_timeout);
Edmund Nadolskibb3dbdf2011-05-19 20:26:02 -07002287
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002288 ihost->next_phy_to_start = 0;
2289 ihost->phy_startup_timer_pending = false;
Dan Williamscc9203b2011-05-08 17:34:44 -07002290
Dan Williams89a73012011-06-30 19:14:33 -07002291 sci_controller_initialize_power_control(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002292
2293 /*
2294 * There is nothing to do here for B0 since we do not have to
2295 * program the AFE registers.
2296 * / @todo The AFE settings are supposed to be correct for the B0 but
2297 * / presently they seem to be wrong. */
Dan Williams89a73012011-06-30 19:14:33 -07002298 sci_controller_afe_initialization(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002299
Dan Williams7c78da32011-06-01 16:00:01 -07002300
2301 /* Take the hardware out of reset */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002302 writel(0, &ihost->smu_registers->soft_reset_control);
Dan Williams7c78da32011-06-01 16:00:01 -07002303
2304 /*
2305 * / @todo Provide meaningfull error code for hardware failure
2306 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2307 for (i = 100; i >= 1; i--) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002308 u32 status;
Dan Williamscc9203b2011-05-08 17:34:44 -07002309
Dan Williams7c78da32011-06-01 16:00:01 -07002310 /* Loop until the hardware reports success */
2311 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002312 status = readl(&ihost->smu_registers->control_status);
Dan Williamscc9203b2011-05-08 17:34:44 -07002313
Dan Williams7c78da32011-06-01 16:00:01 -07002314 if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED)
2315 break;
Dan Williamscc9203b2011-05-08 17:34:44 -07002316 }
Dan Williams7c78da32011-06-01 16:00:01 -07002317 if (i == 0)
2318 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002319
Dan Williams7c78da32011-06-01 16:00:01 -07002320 /*
2321 * Determine what are the actaul device capacities that the
2322 * hardware will support */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002323 val = readl(&ihost->smu_registers->device_context_capacity);
Dan Williamscc9203b2011-05-08 17:34:44 -07002324
Dan Williams7c78da32011-06-01 16:00:01 -07002325 /* Record the smaller of the two capacity values */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002326 ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS);
2327 ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS);
2328 ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES);
Dan Williamscc9203b2011-05-08 17:34:44 -07002329
Dan Williams7c78da32011-06-01 16:00:01 -07002330 /*
2331 * Make all PEs that are unassigned match up with the
2332 * logical ports
2333 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002334 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams7c78da32011-06-01 16:00:01 -07002335 struct scu_port_task_scheduler_group_registers __iomem
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002336 *ptsg = &ihost->scu_registers->peg0.ptsg;
Dan Williamscc9203b2011-05-08 17:34:44 -07002337
Dan Williams7c78da32011-06-01 16:00:01 -07002338 writel(i, &ptsg->protocol_engine[i]);
Dan Williamscc9203b2011-05-08 17:34:44 -07002339 }
2340
2341 /* Initialize hardware PCI Relaxed ordering in DMA engines */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002342 val = readl(&ihost->scu_registers->sdma.pdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002343 val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002344 writel(val, &ihost->scu_registers->sdma.pdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002345
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002346 val = readl(&ihost->scu_registers->sdma.cdma_configuration);
Dan Williams7c78da32011-06-01 16:00:01 -07002347 val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002348 writel(val, &ihost->scu_registers->sdma.cdma_configuration);
Dan Williamscc9203b2011-05-08 17:34:44 -07002349
2350 /*
2351 * Initialize the PHYs before the PORTs because the PHY registers
2352 * are accessed during the port initialization.
2353 */
Dan Williams7c78da32011-06-01 16:00:01 -07002354 for (i = 0; i < SCI_MAX_PHYS; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002355 result = sci_phy_initialize(&ihost->phys[i],
2356 &ihost->scu_registers->peg0.pe[i].tl,
2357 &ihost->scu_registers->peg0.pe[i].ll);
Dan Williams7c78da32011-06-01 16:00:01 -07002358 if (result != SCI_SUCCESS)
2359 goto out;
Dan Williamscc9203b2011-05-08 17:34:44 -07002360 }
2361
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002362 for (i = 0; i < ihost->logical_port_entries; i++) {
Dan Williams89a73012011-06-30 19:14:33 -07002363 struct isci_port *iport = &ihost->ports[i];
Dan Williams7c78da32011-06-01 16:00:01 -07002364
Dan Williams89a73012011-06-30 19:14:33 -07002365 iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i];
2366 iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0];
2367 iport->viit_registers = &ihost->scu_registers->peg0.viit[i];
Dan Williamscc9203b2011-05-08 17:34:44 -07002368 }
2369
Dan Williams89a73012011-06-30 19:14:33 -07002370 result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent);
Dan Williamscc9203b2011-05-08 17:34:44 -07002371
Dan Williams7c78da32011-06-01 16:00:01 -07002372 out:
Dan Williamscc9203b2011-05-08 17:34:44 -07002373 /* Advance the controller state machine */
2374 if (result == SCI_SUCCESS)
Edmund Nadolskie3013702011-06-02 00:10:43 +00002375 state = SCIC_INITIALIZED;
Dan Williamscc9203b2011-05-08 17:34:44 -07002376 else
Edmund Nadolskie3013702011-06-02 00:10:43 +00002377 state = SCIC_FAILED;
2378 sci_change_state(sm, state);
Dan Williamscc9203b2011-05-08 17:34:44 -07002379
2380 return result;
2381}
2382
Dan Williams89a73012011-06-30 19:14:33 -07002383static enum sci_status sci_user_parameters_set(struct isci_host *ihost,
2384 struct sci_user_parameters *sci_parms)
Dan Williamscc9203b2011-05-08 17:34:44 -07002385{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002386 u32 state = ihost->sm.current_state_id;
Dan Williamscc9203b2011-05-08 17:34:44 -07002387
Edmund Nadolskie3013702011-06-02 00:10:43 +00002388 if (state == SCIC_RESET ||
2389 state == SCIC_INITIALIZING ||
2390 state == SCIC_INITIALIZED) {
Dan Williamscc9203b2011-05-08 17:34:44 -07002391 u16 index;
2392
2393 /*
2394 * Validate the user parameters. If they are not legal, then
2395 * return a failure.
2396 */
2397 for (index = 0; index < SCI_MAX_PHYS; index++) {
2398 struct sci_phy_user_params *user_phy;
2399
Dan Williams89a73012011-06-30 19:14:33 -07002400 user_phy = &sci_parms->phys[index];
Dan Williamscc9203b2011-05-08 17:34:44 -07002401
2402 if (!((user_phy->max_speed_generation <=
2403 SCIC_SDS_PARM_MAX_SPEED) &&
2404 (user_phy->max_speed_generation >
2405 SCIC_SDS_PARM_NO_SPEED)))
2406 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2407
2408 if (user_phy->in_connection_align_insertion_frequency <
2409 3)
2410 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2411
2412 if ((user_phy->in_connection_align_insertion_frequency <
2413 3) ||
2414 (user_phy->align_insertion_frequency == 0) ||
2415 (user_phy->
2416 notify_enable_spin_up_insertion_frequency ==
2417 0))
2418 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2419 }
2420
Dan Williams89a73012011-06-30 19:14:33 -07002421 if ((sci_parms->stp_inactivity_timeout == 0) ||
2422 (sci_parms->ssp_inactivity_timeout == 0) ||
2423 (sci_parms->stp_max_occupancy_timeout == 0) ||
2424 (sci_parms->ssp_max_occupancy_timeout == 0) ||
2425 (sci_parms->no_outbound_task_timeout == 0))
Dan Williamscc9203b2011-05-08 17:34:44 -07002426 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
2427
Dan Williams89a73012011-06-30 19:14:33 -07002428 memcpy(&ihost->user_parameters, sci_parms, sizeof(*sci_parms));
Dan Williamscc9203b2011-05-08 17:34:44 -07002429
2430 return SCI_SUCCESS;
2431 }
2432
2433 return SCI_FAILURE_INVALID_STATE;
2434}
2435
Dan Williams89a73012011-06-30 19:14:33 -07002436static int sci_controller_mem_init(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002437{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002438 struct device *dev = &ihost->pdev->dev;
Dan Williams7c78da32011-06-01 16:00:01 -07002439 dma_addr_t dma;
2440 size_t size;
2441 int err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002442
Dan Williams7c78da32011-06-01 16:00:01 -07002443 size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002444 ihost->completion_queue = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2445 if (!ihost->completion_queue)
Dan Williamscc9203b2011-05-08 17:34:44 -07002446 return -ENOMEM;
2447
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002448 writel(lower_32_bits(dma), &ihost->smu_registers->completion_queue_lower);
2449 writel(upper_32_bits(dma), &ihost->smu_registers->completion_queue_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002450
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002451 size = ihost->remote_node_entries * sizeof(union scu_remote_node_context);
2452 ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &dma,
Dan Williams89a73012011-06-30 19:14:33 -07002453 GFP_KERNEL);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002454 if (!ihost->remote_node_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002455 return -ENOMEM;
2456
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002457 writel(lower_32_bits(dma), &ihost->smu_registers->remote_node_context_lower);
2458 writel(upper_32_bits(dma), &ihost->smu_registers->remote_node_context_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002459
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002460 size = ihost->task_context_entries * sizeof(struct scu_task_context),
2461 ihost->task_context_table = dmam_alloc_coherent(dev, size, &dma, GFP_KERNEL);
2462 if (!ihost->task_context_table)
Dan Williamscc9203b2011-05-08 17:34:44 -07002463 return -ENOMEM;
2464
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002465 ihost->task_context_dma = dma;
2466 writel(lower_32_bits(dma), &ihost->smu_registers->host_task_table_lower);
2467 writel(upper_32_bits(dma), &ihost->smu_registers->host_task_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002468
Dan Williams89a73012011-06-30 19:14:33 -07002469 err = sci_unsolicited_frame_control_construct(ihost);
Dan Williams7c78da32011-06-01 16:00:01 -07002470 if (err)
2471 return err;
Dan Williamscc9203b2011-05-08 17:34:44 -07002472
2473 /*
2474 * Inform the silicon as to the location of the UF headers and
2475 * address table.
2476 */
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002477 writel(lower_32_bits(ihost->uf_control.headers.physical_address),
2478 &ihost->scu_registers->sdma.uf_header_base_address_lower);
2479 writel(upper_32_bits(ihost->uf_control.headers.physical_address),
2480 &ihost->scu_registers->sdma.uf_header_base_address_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002481
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002482 writel(lower_32_bits(ihost->uf_control.address_table.physical_address),
2483 &ihost->scu_registers->sdma.uf_address_table_lower);
2484 writel(upper_32_bits(ihost->uf_control.address_table.physical_address),
2485 &ihost->scu_registers->sdma.uf_address_table_upper);
Dan Williamscc9203b2011-05-08 17:34:44 -07002486
2487 return 0;
2488}
2489
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002490int isci_host_init(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -07002491{
Dan Williamsd9c37392011-03-03 17:59:32 -08002492 int err = 0, i;
Dan Williams6f231dd2011-07-02 22:56:22 -07002493 enum sci_status status;
Dan Williams89a73012011-06-30 19:14:33 -07002494 struct sci_user_parameters sci_user_params;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002495 struct isci_pci_info *pci_info = to_pci_info(ihost->pdev);
Dan Williams6f231dd2011-07-02 22:56:22 -07002496
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002497 spin_lock_init(&ihost->state_lock);
2498 spin_lock_init(&ihost->scic_lock);
2499 init_waitqueue_head(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -07002500
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002501 isci_host_change_state(ihost, isci_starting);
Dan Williams6f231dd2011-07-02 22:56:22 -07002502
Dan Williams89a73012011-06-30 19:14:33 -07002503 status = sci_controller_construct(ihost, scu_base(ihost),
2504 smu_base(ihost));
Dan Williams6f231dd2011-07-02 22:56:22 -07002505
2506 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002507 dev_err(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002508 "%s: sci_controller_construct failed - status = %x\n",
Dan Williams6f231dd2011-07-02 22:56:22 -07002509 __func__,
2510 status);
Dave Jiang858d4aa2011-02-22 01:27:03 -08002511 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002512 }
2513
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002514 ihost->sas_ha.dev = &ihost->pdev->dev;
2515 ihost->sas_ha.lldd_ha = ihost;
Dan Williams6f231dd2011-07-02 22:56:22 -07002516
Dan Williamsd044af12011-03-08 09:52:49 -08002517 /*
2518 * grab initial values stored in the controller object for OEM and USER
2519 * parameters
2520 */
Dan Williams89a73012011-06-30 19:14:33 -07002521 isci_user_parameters_get(&sci_user_params);
2522 status = sci_user_parameters_set(ihost, &sci_user_params);
Dan Williamsd044af12011-03-08 09:52:49 -08002523 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002524 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002525 "%s: sci_user_parameters_set failed\n",
Dan Williamsd044af12011-03-08 09:52:49 -08002526 __func__);
2527 return -ENODEV;
2528 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002529
Dan Williamsd044af12011-03-08 09:52:49 -08002530 /* grab any OEM parameters specified in orom */
2531 if (pci_info->orom) {
Dan Williams89a73012011-06-30 19:14:33 -07002532 status = isci_parse_oem_parameters(&ihost->oem_parameters,
Dan Williamsd044af12011-03-08 09:52:49 -08002533 pci_info->orom,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002534 ihost->id);
Dan Williams6f231dd2011-07-02 22:56:22 -07002535 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002536 dev_warn(&ihost->pdev->dev,
Dan Williams6f231dd2011-07-02 22:56:22 -07002537 "parsing firmware oem parameters failed\n");
Dave Jiang858d4aa2011-02-22 01:27:03 -08002538 return -EINVAL;
Dan Williams6f231dd2011-07-02 22:56:22 -07002539 }
Dan Williams4711ba12011-03-11 10:43:57 -08002540 }
2541
Dan Williams89a73012011-06-30 19:14:33 -07002542 status = sci_oem_parameters_set(ihost);
Dan Williams4711ba12011-03-11 10:43:57 -08002543 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002544 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002545 "%s: sci_oem_parameters_set failed\n",
Dan Williams4711ba12011-03-11 10:43:57 -08002546 __func__);
2547 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -07002548 }
2549
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002550 tasklet_init(&ihost->completion_tasklet,
2551 isci_host_completion_routine, (unsigned long)ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002552
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002553 INIT_LIST_HEAD(&ihost->requests_to_complete);
2554 INIT_LIST_HEAD(&ihost->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -07002555
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002556 spin_lock_irq(&ihost->scic_lock);
Dan Williams89a73012011-06-30 19:14:33 -07002557 status = sci_controller_initialize(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002558 spin_unlock_irq(&ihost->scic_lock);
Dan Williams7c40a802011-03-02 11:49:26 -08002559 if (status != SCI_SUCCESS) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002560 dev_warn(&ihost->pdev->dev,
Dan Williams89a73012011-06-30 19:14:33 -07002561 "%s: sci_controller_initialize failed -"
Dan Williams7c40a802011-03-02 11:49:26 -08002562 " status = 0x%x\n",
2563 __func__, status);
2564 return -ENODEV;
2565 }
2566
Dan Williams89a73012011-06-30 19:14:33 -07002567 err = sci_controller_mem_init(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -07002568 if (err)
Dave Jiang858d4aa2011-02-22 01:27:03 -08002569 return err;
Dan Williams6f231dd2011-07-02 22:56:22 -07002570
Dan Williamsd9c37392011-03-03 17:59:32 -08002571 for (i = 0; i < SCI_MAX_PORTS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002572 isci_port_init(&ihost->ports[i], ihost, i);
Dan Williams6f231dd2011-07-02 22:56:22 -07002573
Dan Williamsd9c37392011-03-03 17:59:32 -08002574 for (i = 0; i < SCI_MAX_PHYS; i++)
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002575 isci_phy_init(&ihost->phys[i], ihost, i);
Dan Williamsd9c37392011-03-03 17:59:32 -08002576
Dan Williamsad4f4c12011-09-01 21:18:31 -07002577 /* enable sgpio */
2578 writel(1, &ihost->scu_registers->peg0.sgpio.interface_control);
2579 for (i = 0; i < isci_gpio_count(ihost); i++)
2580 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
2581 writel(0, &ihost->scu_registers->peg0.sgpio.vendor_specific_code);
2582
Dan Williamsd9c37392011-03-03 17:59:32 -08002583 for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002584 struct isci_remote_device *idev = &ihost->devices[i];
Dan Williamsd9c37392011-03-03 17:59:32 -08002585
2586 INIT_LIST_HEAD(&idev->reqs_in_process);
2587 INIT_LIST_HEAD(&idev->node);
Dan Williamsd9c37392011-03-03 17:59:32 -08002588 }
Dan Williams6f231dd2011-07-02 22:56:22 -07002589
Dan Williamsdb056252011-06-17 14:18:39 -07002590 for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) {
2591 struct isci_request *ireq;
2592 dma_addr_t dma;
2593
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002594 ireq = dmam_alloc_coherent(&ihost->pdev->dev,
Dan Williamsdb056252011-06-17 14:18:39 -07002595 sizeof(struct isci_request), &dma,
2596 GFP_KERNEL);
2597 if (!ireq)
2598 return -ENOMEM;
2599
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002600 ireq->tc = &ihost->task_context_table[i];
2601 ireq->owning_controller = ihost;
Dan Williamsdb056252011-06-17 14:18:39 -07002602 spin_lock_init(&ireq->state_lock);
2603 ireq->request_daddr = dma;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002604 ireq->isci_host = ihost;
2605 ihost->reqs[i] = ireq;
Dan Williamsdb056252011-06-17 14:18:39 -07002606 }
2607
Dave Jiang858d4aa2011-02-22 01:27:03 -08002608 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -07002609}
Dan Williamscc9203b2011-05-08 17:34:44 -07002610
Dan Williams89a73012011-06-30 19:14:33 -07002611void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport,
2612 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002613{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002614 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002615 case SCIC_STARTING:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002616 sci_del_timer(&ihost->phy_timer);
2617 ihost->phy_startup_timer_pending = false;
2618 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002619 iport, iphy);
2620 sci_controller_start_next_phy(ihost);
Dan Williamscc9203b2011-05-08 17:34:44 -07002621 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002622 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002623 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
Dan Williams89a73012011-06-30 19:14:33 -07002624 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002625 break;
2626 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002627 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002628 "%s: SCIC Controller linkup event from phy %d in "
Dan Williams85280952011-06-28 15:05:53 -07002629 "unexpected state %d\n", __func__, iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002630 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002631 }
2632}
2633
Dan Williams89a73012011-06-30 19:14:33 -07002634void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport,
2635 struct isci_phy *iphy)
Dan Williamscc9203b2011-05-08 17:34:44 -07002636{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002637 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002638 case SCIC_STARTING:
2639 case SCIC_READY:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002640 ihost->port_agent.link_down_handler(ihost, &ihost->port_agent,
Dan Williamsffe191c2011-06-29 13:09:25 -07002641 iport, iphy);
Dan Williamscc9203b2011-05-08 17:34:44 -07002642 break;
2643 default:
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002644 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002645 "%s: SCIC Controller linkdown event from phy %d in "
2646 "unexpected state %d\n",
2647 __func__,
Dan Williams85280952011-06-28 15:05:53 -07002648 iphy->phy_index,
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002649 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002650 }
2651}
2652
Dan Williams89a73012011-06-30 19:14:33 -07002653static bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost)
Dan Williamscc9203b2011-05-08 17:34:44 -07002654{
2655 u32 index;
2656
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002657 for (index = 0; index < ihost->remote_node_entries; index++) {
2658 if ((ihost->device_table[index] != NULL) &&
2659 (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING))
Dan Williamscc9203b2011-05-08 17:34:44 -07002660 return true;
2661 }
2662
2663 return false;
2664}
2665
Dan Williams89a73012011-06-30 19:14:33 -07002666void sci_controller_remote_device_stopped(struct isci_host *ihost,
2667 struct isci_remote_device *idev)
Dan Williamscc9203b2011-05-08 17:34:44 -07002668{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002669 if (ihost->sm.current_state_id != SCIC_STOPPING) {
2670 dev_dbg(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002671 "SCIC Controller 0x%p remote device stopped event "
2672 "from device 0x%p in unexpected state %d\n",
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002673 ihost, idev,
2674 ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002675 return;
2676 }
2677
Dan Williams89a73012011-06-30 19:14:33 -07002678 if (!sci_controller_has_remote_devices_stopping(ihost))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002679 sci_change_state(&ihost->sm, SCIC_STOPPED);
Dan Williamscc9203b2011-05-08 17:34:44 -07002680}
2681
Dan Williams89a73012011-06-30 19:14:33 -07002682void sci_controller_post_request(struct isci_host *ihost, u32 request)
Dan Williamscc9203b2011-05-08 17:34:44 -07002683{
Dan Williams89a73012011-06-30 19:14:33 -07002684 dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n",
2685 __func__, ihost->id, request);
Dan Williamscc9203b2011-05-08 17:34:44 -07002686
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002687 writel(request, &ihost->smu_registers->post_context_port);
Dan Williamscc9203b2011-05-08 17:34:44 -07002688}
2689
Dan Williams89a73012011-06-30 19:14:33 -07002690struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag)
Dan Williamscc9203b2011-05-08 17:34:44 -07002691{
2692 u16 task_index;
2693 u16 task_sequence;
2694
Dan Williamsdd047c82011-06-09 11:06:58 -07002695 task_index = ISCI_TAG_TCI(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002696
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002697 if (task_index < ihost->task_context_entries) {
2698 struct isci_request *ireq = ihost->reqs[task_index];
Dan Williamsdb056252011-06-17 14:18:39 -07002699
2700 if (test_bit(IREQ_ACTIVE, &ireq->flags)) {
Dan Williamsdd047c82011-06-09 11:06:58 -07002701 task_sequence = ISCI_TAG_SEQ(io_tag);
Dan Williamscc9203b2011-05-08 17:34:44 -07002702
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002703 if (task_sequence == ihost->io_request_sequence[task_index])
Dan Williams5076a1a2011-06-27 14:57:03 -07002704 return ireq;
Dan Williamscc9203b2011-05-08 17:34:44 -07002705 }
2706 }
2707
2708 return NULL;
2709}
2710
2711/**
2712 * This method allocates remote node index and the reserves the remote node
2713 * context space for use. This method can fail if there are no more remote
2714 * node index available.
2715 * @scic: This is the controller object which contains the set of
2716 * free remote node ids
2717 * @sci_dev: This is the device object which is requesting the a remote node
2718 * id
2719 * @node_id: This is the remote node id that is assinged to the device if one
2720 * is available
2721 *
2722 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2723 * node index available.
2724 */
Dan Williams89a73012011-06-30 19:14:33 -07002725enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost,
2726 struct isci_remote_device *idev,
2727 u16 *node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002728{
2729 u16 node_index;
Dan Williams89a73012011-06-30 19:14:33 -07002730 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002731
Dan Williams89a73012011-06-30 19:14:33 -07002732 node_index = sci_remote_node_table_allocate_remote_node(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002733 &ihost->available_remote_nodes, remote_node_count
Dan Williamscc9203b2011-05-08 17:34:44 -07002734 );
2735
2736 if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002737 ihost->device_table[node_index] = idev;
Dan Williamscc9203b2011-05-08 17:34:44 -07002738
2739 *node_id = node_index;
2740
2741 return SCI_SUCCESS;
2742 }
2743
2744 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
2745}
2746
Dan Williams89a73012011-06-30 19:14:33 -07002747void sci_controller_free_remote_node_context(struct isci_host *ihost,
2748 struct isci_remote_device *idev,
2749 u16 node_id)
Dan Williamscc9203b2011-05-08 17:34:44 -07002750{
Dan Williams89a73012011-06-30 19:14:33 -07002751 u32 remote_node_count = sci_remote_device_node_count(idev);
Dan Williamscc9203b2011-05-08 17:34:44 -07002752
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002753 if (ihost->device_table[node_id] == idev) {
2754 ihost->device_table[node_id] = NULL;
Dan Williamscc9203b2011-05-08 17:34:44 -07002755
Dan Williams89a73012011-06-30 19:14:33 -07002756 sci_remote_node_table_release_remote_node_index(
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002757 &ihost->available_remote_nodes, remote_node_count, node_id
Dan Williamscc9203b2011-05-08 17:34:44 -07002758 );
2759 }
2760}
2761
Dan Williams89a73012011-06-30 19:14:33 -07002762void sci_controller_copy_sata_response(void *response_buffer,
2763 void *frame_header,
2764 void *frame_buffer)
Dan Williamscc9203b2011-05-08 17:34:44 -07002765{
Dan Williams89a73012011-06-30 19:14:33 -07002766 /* XXX type safety? */
Dan Williamscc9203b2011-05-08 17:34:44 -07002767 memcpy(response_buffer, frame_header, sizeof(u32));
2768
2769 memcpy(response_buffer + sizeof(u32),
2770 frame_buffer,
2771 sizeof(struct dev_to_host_fis) - sizeof(u32));
2772}
2773
Dan Williams89a73012011-06-30 19:14:33 -07002774void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index)
Dan Williamscc9203b2011-05-08 17:34:44 -07002775{
Dan Williams89a73012011-06-30 19:14:33 -07002776 if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index))
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002777 writel(ihost->uf_control.get,
2778 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
Dan Williamscc9203b2011-05-08 17:34:44 -07002779}
2780
Dan Williams312e0c22011-06-28 13:47:09 -07002781void isci_tci_free(struct isci_host *ihost, u16 tci)
2782{
2783 u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1);
2784
2785 ihost->tci_pool[tail] = tci;
2786 ihost->tci_tail = tail + 1;
2787}
2788
2789static u16 isci_tci_alloc(struct isci_host *ihost)
2790{
2791 u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1);
2792 u16 tci = ihost->tci_pool[head];
2793
2794 ihost->tci_head = head + 1;
2795 return tci;
2796}
2797
2798static u16 isci_tci_space(struct isci_host *ihost)
2799{
2800 return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
2801}
2802
2803u16 isci_alloc_tag(struct isci_host *ihost)
2804{
2805 if (isci_tci_space(ihost)) {
2806 u16 tci = isci_tci_alloc(ihost);
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002807 u8 seq = ihost->io_request_sequence[tci];
Dan Williams312e0c22011-06-28 13:47:09 -07002808
2809 return ISCI_TAG(seq, tci);
2810 }
2811
2812 return SCI_CONTROLLER_INVALID_IO_TAG;
2813}
2814
2815enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag)
2816{
Dan Williams312e0c22011-06-28 13:47:09 -07002817 u16 tci = ISCI_TAG_TCI(io_tag);
2818 u16 seq = ISCI_TAG_SEQ(io_tag);
2819
2820 /* prevent tail from passing head */
2821 if (isci_tci_active(ihost) == 0)
2822 return SCI_FAILURE_INVALID_IO_TAG;
2823
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002824 if (seq == ihost->io_request_sequence[tci]) {
2825 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1);
Dan Williams312e0c22011-06-28 13:47:09 -07002826
2827 isci_tci_free(ihost, tci);
2828
2829 return SCI_SUCCESS;
2830 }
2831 return SCI_FAILURE_INVALID_IO_TAG;
2832}
2833
Dan Williams89a73012011-06-30 19:14:33 -07002834enum sci_status sci_controller_start_io(struct isci_host *ihost,
2835 struct isci_remote_device *idev,
2836 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002837{
2838 enum sci_status status;
2839
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002840 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002841 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2842 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002843 return SCI_FAILURE_INVALID_STATE;
2844 }
2845
Dan Williams89a73012011-06-30 19:14:33 -07002846 status = sci_remote_device_start_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002847 if (status != SCI_SUCCESS)
2848 return status;
2849
Dan Williams5076a1a2011-06-27 14:57:03 -07002850 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002851 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002852 return SCI_SUCCESS;
2853}
2854
Dan Williams89a73012011-06-30 19:14:33 -07002855enum sci_status sci_controller_terminate_request(struct isci_host *ihost,
2856 struct isci_remote_device *idev,
2857 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002858{
Dan Williams89a73012011-06-30 19:14:33 -07002859 /* terminate an ongoing (i.e. started) core IO request. This does not
2860 * abort the IO request at the target, but rather removes the IO
2861 * request from the host controller.
2862 */
Dan Williamscc9203b2011-05-08 17:34:44 -07002863 enum sci_status status;
2864
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002865 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002866 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2867 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002868 return SCI_FAILURE_INVALID_STATE;
2869 }
2870
Dan Williams89a73012011-06-30 19:14:33 -07002871 status = sci_io_request_terminate(ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002872 if (status != SCI_SUCCESS)
2873 return status;
2874
2875 /*
2876 * Utilize the original post context command and or in the POST_TC_ABORT
2877 * request sub-type.
2878 */
Dan Williams89a73012011-06-30 19:14:33 -07002879 sci_controller_post_request(ihost,
2880 ireq->post_context | SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT);
Dan Williamscc9203b2011-05-08 17:34:44 -07002881 return SCI_SUCCESS;
2882}
2883
2884/**
Dan Williams89a73012011-06-30 19:14:33 -07002885 * sci_controller_complete_io() - This method will perform core specific
Dan Williamscc9203b2011-05-08 17:34:44 -07002886 * completion operations for an IO request. After this method is invoked,
2887 * the user should consider the IO request as invalid until it is properly
2888 * reused (i.e. re-constructed).
Dan Williams89a73012011-06-30 19:14:33 -07002889 * @ihost: The handle to the controller object for which to complete the
Dan Williamscc9203b2011-05-08 17:34:44 -07002890 * IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002891 * @idev: The handle to the remote device object for which to complete
Dan Williamscc9203b2011-05-08 17:34:44 -07002892 * the IO request.
Dan Williams89a73012011-06-30 19:14:33 -07002893 * @ireq: the handle to the io request object to complete.
Dan Williamscc9203b2011-05-08 17:34:44 -07002894 */
Dan Williams89a73012011-06-30 19:14:33 -07002895enum sci_status sci_controller_complete_io(struct isci_host *ihost,
2896 struct isci_remote_device *idev,
2897 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002898{
2899 enum sci_status status;
2900 u16 index;
2901
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002902 switch (ihost->sm.current_state_id) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00002903 case SCIC_STOPPING:
Dan Williamscc9203b2011-05-08 17:34:44 -07002904 /* XXX: Implement this function */
2905 return SCI_FAILURE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00002906 case SCIC_READY:
Dan Williams89a73012011-06-30 19:14:33 -07002907 status = sci_remote_device_complete_io(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002908 if (status != SCI_SUCCESS)
2909 return status;
2910
Dan Williams5076a1a2011-06-27 14:57:03 -07002911 index = ISCI_TAG_TCI(ireq->io_tag);
2912 clear_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002913 return SCI_SUCCESS;
2914 default:
Dan Williams14e99b42012-02-10 01:05:43 -08002915 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2916 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002917 return SCI_FAILURE_INVALID_STATE;
2918 }
2919
2920}
2921
Dan Williams89a73012011-06-30 19:14:33 -07002922enum sci_status sci_controller_continue_io(struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002923{
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002924 struct isci_host *ihost = ireq->owning_controller;
Dan Williamscc9203b2011-05-08 17:34:44 -07002925
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002926 if (ihost->sm.current_state_id != SCIC_READY) {
Dan Williams14e99b42012-02-10 01:05:43 -08002927 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2928 __func__, ihost->sm.current_state_id);
Dan Williamscc9203b2011-05-08 17:34:44 -07002929 return SCI_FAILURE_INVALID_STATE;
2930 }
2931
Dan Williams5076a1a2011-06-27 14:57:03 -07002932 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002933 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002934 return SCI_SUCCESS;
2935}
2936
2937/**
Dan Williams89a73012011-06-30 19:14:33 -07002938 * sci_controller_start_task() - This method is called by the SCIC user to
Dan Williamscc9203b2011-05-08 17:34:44 -07002939 * send/start a framework task management request.
2940 * @controller: the handle to the controller object for which to start the task
2941 * management request.
2942 * @remote_device: the handle to the remote device object for which to start
2943 * the task management request.
2944 * @task_request: the handle to the task request object to start.
Dan Williamscc9203b2011-05-08 17:34:44 -07002945 */
Dan Williams89a73012011-06-30 19:14:33 -07002946enum sci_task_status sci_controller_start_task(struct isci_host *ihost,
2947 struct isci_remote_device *idev,
2948 struct isci_request *ireq)
Dan Williamscc9203b2011-05-08 17:34:44 -07002949{
2950 enum sci_status status;
2951
Dan Williamsd9dcb4b2011-06-30 17:38:32 -07002952 if (ihost->sm.current_state_id != SCIC_READY) {
2953 dev_warn(&ihost->pdev->dev,
Dan Williamscc9203b2011-05-08 17:34:44 -07002954 "%s: SCIC Controller starting task from invalid "
2955 "state\n",
2956 __func__);
2957 return SCI_TASK_FAILURE_INVALID_STATE;
2958 }
2959
Dan Williams89a73012011-06-30 19:14:33 -07002960 status = sci_remote_device_start_task(ihost, idev, ireq);
Dan Williamscc9203b2011-05-08 17:34:44 -07002961 switch (status) {
2962 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002963 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williamscc9203b2011-05-08 17:34:44 -07002964
2965 /*
2966 * We will let framework know this task request started successfully,
2967 * although core is still woring on starting the request (to post tc when
2968 * RNC is resumed.)
2969 */
2970 return SCI_SUCCESS;
2971 case SCI_SUCCESS:
Dan Williamsdb056252011-06-17 14:18:39 -07002972 set_bit(IREQ_ACTIVE, &ireq->flags);
Dan Williams34a99152011-07-01 02:25:15 -07002973 sci_controller_post_request(ihost, ireq->post_context);
Dan Williamscc9203b2011-05-08 17:34:44 -07002974 break;
2975 default:
2976 break;
2977 }
2978
2979 return status;
2980}
Dan Williamsad4f4c12011-09-01 21:18:31 -07002981
2982static int sci_write_gpio_tx_gp(struct isci_host *ihost, u8 reg_index, u8 reg_count, u8 *write_data)
2983{
2984 int d;
2985
2986 /* no support for TX_GP_CFG */
2987 if (reg_index == 0)
2988 return -EINVAL;
2989
2990 for (d = 0; d < isci_gpio_count(ihost); d++) {
2991 u32 val = 0x444; /* all ODx.n clear */
2992 int i;
2993
2994 for (i = 0; i < 3; i++) {
2995 int bit = (i << 2) + 2;
2996
2997 bit = try_test_sas_gpio_gp_bit(to_sas_gpio_od(d, i),
2998 write_data, reg_index,
2999 reg_count);
3000 if (bit < 0)
3001 break;
3002
3003 /* if od is set, clear the 'invert' bit */
3004 val &= ~(bit << ((i << 2) + 2));
3005 }
3006
3007 if (i < 3)
3008 break;
3009 writel(val, &ihost->scu_registers->peg0.sgpio.output_data_select[d]);
3010 }
3011
3012 /* unless reg_index is > 1, we should always be able to write at
3013 * least one register
3014 */
3015 return d > 0;
3016}
3017
3018int isci_gpio_write(struct sas_ha_struct *sas_ha, u8 reg_type, u8 reg_index,
3019 u8 reg_count, u8 *write_data)
3020{
3021 struct isci_host *ihost = sas_ha->lldd_ha;
3022 int written;
3023
3024 switch (reg_type) {
3025 case SAS_GPIO_REG_TX_GP:
3026 written = sci_write_gpio_tx_gp(ihost, reg_index, reg_count, write_data);
3027 break;
3028 default:
3029 written = -EINVAL;
3030 }
3031
3032 return written;
3033}