Merge git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac
[deliverable/linux.git] / drivers / scsi / isci / host.c
CommitLineData
6f231dda
DW
1/*
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 */
ac668c69 55#include <linux/circ_buf.h>
cc9203bf
DW
56#include <linux/device.h>
57#include <scsi/sas.h>
58#include "host.h"
6f231dda 59#include "isci.h"
6f231dda 60#include "port.h"
d044af17 61#include "probe_roms.h"
cc9203bf
DW
62#include "remote_device.h"
63#include "request.h"
cc9203bf
DW
64#include "scu_completion_codes.h"
65#include "scu_event_codes.h"
63a3a15f 66#include "registers.h"
cc9203bf
DW
67#include "scu_remote_node_context.h"
68#include "scu_task_context.h"
6f231dda 69
cc9203bf
DW
70#define SCU_CONTEXT_RAM_INIT_STALL_TIME 200
71
7c78da31 72#define smu_max_ports(dcc_value) \
cc9203bf
DW
73 (\
74 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_MASK) \
75 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_LP_SHIFT) + 1 \
76 )
77
7c78da31 78#define smu_max_task_contexts(dcc_value) \
cc9203bf
DW
79 (\
80 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_MASK) \
81 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_TC_SHIFT) + 1 \
82 )
83
7c78da31 84#define smu_max_rncs(dcc_value) \
cc9203bf
DW
85 (\
86 (((dcc_value) & SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_MASK) \
87 >> SMU_DEVICE_CONTEXT_CAPACITY_MAX_RNC_SHIFT) + 1 \
88 )
89
cc9203bf
DW
90#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
cc9203bf
DW
123/**
124 * 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
12ef6544
EN
148/* 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
89a7301f 181static bool sci_controller_completion_queue_has_entries(struct isci_host *ihost)
cc9203bf 182{
d9dcb4ba 183 u32 get_value = ihost->completion_queue_get;
cc9203bf
DW
184 u32 get_index = get_value & SMU_COMPLETION_QUEUE_GET_POINTER_MASK;
185
186 if (NORMALIZE_GET_POINTER_CYCLE_BIT(get_value) ==
d9dcb4ba 187 COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index]))
cc9203bf
DW
188 return true;
189
190 return false;
191}
192
89a7301f 193static bool sci_controller_isr(struct isci_host *ihost)
cc9203bf 194{
2396a265 195 if (sci_controller_completion_queue_has_entries(ihost))
cc9203bf 196 return true;
cc9203bf 197
2396a265
DW
198 /* we have a spurious interrupt it could be that we have already
199 * emptied the completion queue from a previous interrupt
200 * FIXME: really!?
201 */
202 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
203
204 /* There is a race in the hardware that could cause us not to be
205 * notified of an interrupt completion if we do not take this
206 * step. We will mask then unmask the interrupts so if there is
207 * another interrupt pending the clearing of the interrupt
208 * source we get the next interrupt message.
209 */
210 spin_lock(&ihost->scic_lock);
211 if (test_bit(IHOST_IRQ_ENABLED, &ihost->flags)) {
d9dcb4ba
DW
212 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
213 writel(0, &ihost->smu_registers->interrupt_mask);
cc9203bf 214 }
2396a265 215 spin_unlock(&ihost->scic_lock);
cc9203bf
DW
216
217 return false;
218}
219
c7ef4031 220irqreturn_t isci_msix_isr(int vec, void *data)
6f231dda 221{
c7ef4031 222 struct isci_host *ihost = data;
c7ef4031 223
89a7301f 224 if (sci_controller_isr(ihost))
0cf89d1d 225 tasklet_schedule(&ihost->completion_tasklet);
6f231dda 226
c7ef4031 227 return IRQ_HANDLED;
6f231dda
DW
228}
229
89a7301f 230static bool sci_controller_error_isr(struct isci_host *ihost)
cc9203bf
DW
231{
232 u32 interrupt_status;
233
234 interrupt_status =
d9dcb4ba 235 readl(&ihost->smu_registers->interrupt_status);
cc9203bf
DW
236 interrupt_status &= (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND);
237
238 if (interrupt_status != 0) {
239 /*
240 * There is an error interrupt pending so let it through and handle
241 * in the callback */
242 return true;
243 }
244
245 /*
246 * There is a race in the hardware that could cause us not to be notified
247 * of an interrupt completion if we do not take this step. We will mask
248 * then unmask the error interrupts so if there was another interrupt
249 * pending we will be notified.
250 * Could we write the value of (SMU_ISR_QUEUE_ERROR | SMU_ISR_QUEUE_SUSPEND)? */
d9dcb4ba
DW
251 writel(0xff, &ihost->smu_registers->interrupt_mask);
252 writel(0, &ihost->smu_registers->interrupt_mask);
cc9203bf
DW
253
254 return false;
255}
256
89a7301f 257static void sci_controller_task_completion(struct isci_host *ihost, u32 ent)
cc9203bf 258{
89a7301f 259 u32 index = SCU_GET_COMPLETION_INDEX(ent);
db056250 260 struct isci_request *ireq = ihost->reqs[index];
cc9203bf
DW
261
262 /* Make sure that we really want to process this IO request */
db056250 263 if (test_bit(IREQ_ACTIVE, &ireq->flags) &&
5076a1a9 264 ireq->io_tag != SCI_CONTROLLER_INVALID_IO_TAG &&
d9dcb4ba 265 ISCI_TAG_SEQ(ireq->io_tag) == ihost->io_request_sequence[index])
89a7301f
DW
266 /* Yep this is a valid io request pass it along to the
267 * io request handler
268 */
269 sci_io_request_tc_completion(ireq, ent);
cc9203bf
DW
270}
271
89a7301f 272static void sci_controller_sdma_completion(struct isci_host *ihost, u32 ent)
cc9203bf
DW
273{
274 u32 index;
5076a1a9 275 struct isci_request *ireq;
78a6f06e 276 struct isci_remote_device *idev;
cc9203bf 277
89a7301f 278 index = SCU_GET_COMPLETION_INDEX(ent);
cc9203bf 279
89a7301f 280 switch (scu_get_command_request_type(ent)) {
cc9203bf
DW
281 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC:
282 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_TC:
d9dcb4ba
DW
283 ireq = ihost->reqs[index];
284 dev_warn(&ihost->pdev->dev, "%s: %x for io request %p\n",
89a7301f 285 __func__, ent, ireq);
cc9203bf
DW
286 /* @todo For a post TC operation we need to fail the IO
287 * request
288 */
289 break;
cc9203bf
DW
290 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_DUMP_RNC:
291 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_OTHER_RNC:
292 case SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_RNC:
d9dcb4ba
DW
293 idev = ihost->device_table[index];
294 dev_warn(&ihost->pdev->dev, "%s: %x for device %p\n",
89a7301f 295 __func__, ent, idev);
cc9203bf
DW
296 /* @todo For a port RNC operation we need to fail the
297 * device
298 */
299 break;
cc9203bf 300 default:
d9dcb4ba 301 dev_warn(&ihost->pdev->dev, "%s: unknown completion type %x\n",
89a7301f 302 __func__, ent);
cc9203bf 303 break;
cc9203bf
DW
304 }
305}
306
89a7301f 307static void sci_controller_unsolicited_frame(struct isci_host *ihost, u32 ent)
cc9203bf
DW
308{
309 u32 index;
310 u32 frame_index;
311
cc9203bf 312 struct scu_unsolicited_frame_header *frame_header;
85280955 313 struct isci_phy *iphy;
78a6f06e 314 struct isci_remote_device *idev;
cc9203bf
DW
315
316 enum sci_status result = SCI_FAILURE;
317
89a7301f 318 frame_index = SCU_GET_FRAME_INDEX(ent);
cc9203bf 319
d9dcb4ba
DW
320 frame_header = ihost->uf_control.buffers.array[frame_index].header;
321 ihost->uf_control.buffers.array[frame_index].state = UNSOLICITED_FRAME_IN_USE;
cc9203bf 322
89a7301f 323 if (SCU_GET_FRAME_ERROR(ent)) {
cc9203bf
DW
324 /*
325 * / @todo If the IAF frame or SIGNATURE FIS frame has an error will
326 * / this cause a problem? We expect the phy initialization will
327 * / fail if there is an error in the frame. */
89a7301f 328 sci_controller_release_frame(ihost, frame_index);
cc9203bf
DW
329 return;
330 }
331
332 if (frame_header->is_address_frame) {
89a7301f 333 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
85280955 334 iphy = &ihost->phys[index];
89a7301f 335 result = sci_phy_frame_handler(iphy, frame_index);
cc9203bf
DW
336 } else {
337
89a7301f 338 index = SCU_GET_COMPLETION_INDEX(ent);
cc9203bf
DW
339
340 if (index == SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
341 /*
342 * This is a signature fis or a frame from a direct attached SATA
343 * device that has not yet been created. In either case forwared
344 * the frame to the PE and let it take care of the frame data. */
89a7301f 345 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
85280955 346 iphy = &ihost->phys[index];
89a7301f 347 result = sci_phy_frame_handler(iphy, frame_index);
cc9203bf 348 } else {
d9dcb4ba
DW
349 if (index < ihost->remote_node_entries)
350 idev = ihost->device_table[index];
cc9203bf 351 else
78a6f06e 352 idev = NULL;
cc9203bf 353
78a6f06e 354 if (idev != NULL)
89a7301f 355 result = sci_remote_device_frame_handler(idev, frame_index);
cc9203bf 356 else
89a7301f 357 sci_controller_release_frame(ihost, frame_index);
cc9203bf
DW
358 }
359 }
360
361 if (result != SCI_SUCCESS) {
362 /*
363 * / @todo Is there any reason to report some additional error message
364 * / when we get this failure notifiction? */
365 }
366}
367
89a7301f 368static void sci_controller_event_completion(struct isci_host *ihost, u32 ent)
cc9203bf 369{
78a6f06e 370 struct isci_remote_device *idev;
5076a1a9 371 struct isci_request *ireq;
85280955 372 struct isci_phy *iphy;
cc9203bf
DW
373 u32 index;
374
89a7301f 375 index = SCU_GET_COMPLETION_INDEX(ent);
cc9203bf 376
89a7301f 377 switch (scu_get_event_type(ent)) {
cc9203bf
DW
378 case SCU_EVENT_TYPE_SMU_COMMAND_ERROR:
379 /* / @todo The driver did something wrong and we need to fix the condtion. */
d9dcb4ba 380 dev_err(&ihost->pdev->dev,
cc9203bf
DW
381 "%s: SCIC Controller 0x%p received SMU command error "
382 "0x%x\n",
383 __func__,
d9dcb4ba 384 ihost,
89a7301f 385 ent);
cc9203bf
DW
386 break;
387
388 case SCU_EVENT_TYPE_SMU_PCQ_ERROR:
389 case SCU_EVENT_TYPE_SMU_ERROR:
390 case SCU_EVENT_TYPE_FATAL_MEMORY_ERROR:
391 /*
392 * / @todo This is a hardware failure and its likely that we want to
393 * / reset the controller. */
d9dcb4ba 394 dev_err(&ihost->pdev->dev,
cc9203bf
DW
395 "%s: SCIC Controller 0x%p received fatal controller "
396 "event 0x%x\n",
397 __func__,
d9dcb4ba 398 ihost,
89a7301f 399 ent);
cc9203bf
DW
400 break;
401
402 case SCU_EVENT_TYPE_TRANSPORT_ERROR:
5076a1a9 403 ireq = ihost->reqs[index];
89a7301f 404 sci_io_request_event_handler(ireq, ent);
cc9203bf
DW
405 break;
406
407 case SCU_EVENT_TYPE_PTX_SCHEDULE_EVENT:
89a7301f 408 switch (scu_get_event_specifier(ent)) {
cc9203bf
DW
409 case SCU_EVENT_SPECIFIC_SMP_RESPONSE_NO_PE:
410 case SCU_EVENT_SPECIFIC_TASK_TIMEOUT:
5076a1a9
DW
411 ireq = ihost->reqs[index];
412 if (ireq != NULL)
89a7301f 413 sci_io_request_event_handler(ireq, ent);
cc9203bf 414 else
d9dcb4ba 415 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
416 "%s: SCIC Controller 0x%p received "
417 "event 0x%x for io request object "
418 "that doesnt exist.\n",
419 __func__,
d9dcb4ba 420 ihost,
89a7301f 421 ent);
cc9203bf
DW
422
423 break;
424
425 case SCU_EVENT_SPECIFIC_IT_NEXUS_TIMEOUT:
d9dcb4ba 426 idev = ihost->device_table[index];
78a6f06e 427 if (idev != NULL)
89a7301f 428 sci_remote_device_event_handler(idev, ent);
cc9203bf 429 else
d9dcb4ba 430 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
431 "%s: SCIC Controller 0x%p received "
432 "event 0x%x for remote device object "
433 "that doesnt exist.\n",
434 __func__,
d9dcb4ba 435 ihost,
89a7301f 436 ent);
cc9203bf
DW
437
438 break;
439 }
440 break;
441
442 case SCU_EVENT_TYPE_BROADCAST_CHANGE:
443 /*
444 * direct the broadcast change event to the phy first and then let
445 * the phy redirect the broadcast change to the port object */
446 case SCU_EVENT_TYPE_ERR_CNT_EVENT:
447 /*
448 * direct error counter event to the phy object since that is where
449 * we get the event notification. This is a type 4 event. */
450 case SCU_EVENT_TYPE_OSSP_EVENT:
89a7301f 451 index = SCU_GET_PROTOCOL_ENGINE_INDEX(ent);
85280955 452 iphy = &ihost->phys[index];
89a7301f 453 sci_phy_event_handler(iphy, ent);
cc9203bf
DW
454 break;
455
456 case SCU_EVENT_TYPE_RNC_SUSPEND_TX:
457 case SCU_EVENT_TYPE_RNC_SUSPEND_TX_RX:
458 case SCU_EVENT_TYPE_RNC_OPS_MISC:
d9dcb4ba
DW
459 if (index < ihost->remote_node_entries) {
460 idev = ihost->device_table[index];
cc9203bf 461
78a6f06e 462 if (idev != NULL)
89a7301f 463 sci_remote_device_event_handler(idev, ent);
cc9203bf 464 } else
d9dcb4ba 465 dev_err(&ihost->pdev->dev,
cc9203bf
DW
466 "%s: SCIC Controller 0x%p received event 0x%x "
467 "for remote device object 0x%0x that doesnt "
468 "exist.\n",
469 __func__,
d9dcb4ba 470 ihost,
89a7301f 471 ent,
cc9203bf
DW
472 index);
473
474 break;
475
476 default:
d9dcb4ba 477 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
478 "%s: SCIC Controller received unknown event code %x\n",
479 __func__,
89a7301f 480 ent);
cc9203bf
DW
481 break;
482 }
483}
484
89a7301f 485static void sci_controller_process_completions(struct isci_host *ihost)
cc9203bf
DW
486{
487 u32 completion_count = 0;
89a7301f 488 u32 ent;
cc9203bf
DW
489 u32 get_index;
490 u32 get_cycle;
994a9303 491 u32 event_get;
cc9203bf
DW
492 u32 event_cycle;
493
d9dcb4ba 494 dev_dbg(&ihost->pdev->dev,
cc9203bf
DW
495 "%s: completion queue begining get:0x%08x\n",
496 __func__,
d9dcb4ba 497 ihost->completion_queue_get);
cc9203bf
DW
498
499 /* Get the component parts of the completion queue */
d9dcb4ba
DW
500 get_index = NORMALIZE_GET_POINTER(ihost->completion_queue_get);
501 get_cycle = SMU_CQGR_CYCLE_BIT & ihost->completion_queue_get;
cc9203bf 502
d9dcb4ba
DW
503 event_get = NORMALIZE_EVENT_POINTER(ihost->completion_queue_get);
504 event_cycle = SMU_CQGR_EVENT_CYCLE_BIT & ihost->completion_queue_get;
cc9203bf
DW
505
506 while (
507 NORMALIZE_GET_POINTER_CYCLE_BIT(get_cycle)
d9dcb4ba 508 == COMPLETION_QUEUE_CYCLE_BIT(ihost->completion_queue[get_index])
cc9203bf
DW
509 ) {
510 completion_count++;
511
89a7301f 512 ent = ihost->completion_queue[get_index];
994a9303
DW
513
514 /* increment the get pointer and check for rollover to toggle the cycle bit */
515 get_cycle ^= ((get_index+1) & SCU_MAX_COMPLETION_QUEUE_ENTRIES) <<
516 (SMU_COMPLETION_QUEUE_GET_CYCLE_BIT_SHIFT - SCU_MAX_COMPLETION_QUEUE_SHIFT);
517 get_index = (get_index+1) & (SCU_MAX_COMPLETION_QUEUE_ENTRIES-1);
cc9203bf 518
d9dcb4ba 519 dev_dbg(&ihost->pdev->dev,
cc9203bf
DW
520 "%s: completion queue entry:0x%08x\n",
521 __func__,
89a7301f 522 ent);
cc9203bf 523
89a7301f 524 switch (SCU_GET_COMPLETION_TYPE(ent)) {
cc9203bf 525 case SCU_COMPLETION_TYPE_TASK:
89a7301f 526 sci_controller_task_completion(ihost, ent);
cc9203bf
DW
527 break;
528
529 case SCU_COMPLETION_TYPE_SDMA:
89a7301f 530 sci_controller_sdma_completion(ihost, ent);
cc9203bf
DW
531 break;
532
533 case SCU_COMPLETION_TYPE_UFI:
89a7301f 534 sci_controller_unsolicited_frame(ihost, ent);
cc9203bf
DW
535 break;
536
537 case SCU_COMPLETION_TYPE_EVENT:
77cd72a5
DW
538 sci_controller_event_completion(ihost, ent);
539 break;
540
994a9303
DW
541 case SCU_COMPLETION_TYPE_NOTIFY: {
542 event_cycle ^= ((event_get+1) & SCU_MAX_EVENTS) <<
543 (SMU_COMPLETION_QUEUE_GET_EVENT_CYCLE_BIT_SHIFT - SCU_MAX_EVENTS_SHIFT);
544 event_get = (event_get+1) & (SCU_MAX_EVENTS-1);
cc9203bf 545
89a7301f 546 sci_controller_event_completion(ihost, ent);
cc9203bf 547 break;
994a9303 548 }
cc9203bf 549 default:
d9dcb4ba 550 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
551 "%s: SCIC Controller received unknown "
552 "completion type %x\n",
553 __func__,
89a7301f 554 ent);
cc9203bf
DW
555 break;
556 }
557 }
558
559 /* Update the get register if we completed one or more entries */
560 if (completion_count > 0) {
d9dcb4ba 561 ihost->completion_queue_get =
cc9203bf
DW
562 SMU_CQGR_GEN_BIT(ENABLE) |
563 SMU_CQGR_GEN_BIT(EVENT_ENABLE) |
564 event_cycle |
994a9303 565 SMU_CQGR_GEN_VAL(EVENT_POINTER, event_get) |
cc9203bf
DW
566 get_cycle |
567 SMU_CQGR_GEN_VAL(POINTER, get_index);
568
d9dcb4ba
DW
569 writel(ihost->completion_queue_get,
570 &ihost->smu_registers->completion_queue_get);
cc9203bf
DW
571
572 }
573
d9dcb4ba 574 dev_dbg(&ihost->pdev->dev,
cc9203bf
DW
575 "%s: completion queue ending get:0x%08x\n",
576 __func__,
d9dcb4ba 577 ihost->completion_queue_get);
cc9203bf
DW
578
579}
580
89a7301f 581static void sci_controller_error_handler(struct isci_host *ihost)
cc9203bf
DW
582{
583 u32 interrupt_status;
584
585 interrupt_status =
d9dcb4ba 586 readl(&ihost->smu_registers->interrupt_status);
cc9203bf
DW
587
588 if ((interrupt_status & SMU_ISR_QUEUE_SUSPEND) &&
89a7301f 589 sci_controller_completion_queue_has_entries(ihost)) {
cc9203bf 590
89a7301f 591 sci_controller_process_completions(ihost);
d9dcb4ba 592 writel(SMU_ISR_QUEUE_SUSPEND, &ihost->smu_registers->interrupt_status);
cc9203bf 593 } else {
d9dcb4ba 594 dev_err(&ihost->pdev->dev, "%s: status: %#x\n", __func__,
cc9203bf
DW
595 interrupt_status);
596
d9dcb4ba 597 sci_change_state(&ihost->sm, SCIC_FAILED);
cc9203bf
DW
598
599 return;
600 }
601
602 /* If we dont process any completions I am not sure that we want to do this.
603 * We are in the middle of a hardware fault and should probably be reset.
604 */
d9dcb4ba 605 writel(0, &ihost->smu_registers->interrupt_mask);
cc9203bf
DW
606}
607
c7ef4031 608irqreturn_t isci_intx_isr(int vec, void *data)
6f231dda 609{
6f231dda 610 irqreturn_t ret = IRQ_NONE;
31e824ed 611 struct isci_host *ihost = data;
c7ef4031 612
89a7301f 613 if (sci_controller_isr(ihost)) {
d9dcb4ba 614 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
31e824ed
DW
615 tasklet_schedule(&ihost->completion_tasklet);
616 ret = IRQ_HANDLED;
89a7301f 617 } else if (sci_controller_error_isr(ihost)) {
31e824ed 618 spin_lock(&ihost->scic_lock);
89a7301f 619 sci_controller_error_handler(ihost);
31e824ed
DW
620 spin_unlock(&ihost->scic_lock);
621 ret = IRQ_HANDLED;
6f231dda 622 }
92f4f0f5 623
6f231dda
DW
624 return ret;
625}
626
92f4f0f5
DW
627irqreturn_t isci_error_isr(int vec, void *data)
628{
629 struct isci_host *ihost = data;
92f4f0f5 630
89a7301f
DW
631 if (sci_controller_error_isr(ihost))
632 sci_controller_error_handler(ihost);
92f4f0f5
DW
633
634 return IRQ_HANDLED;
635}
6f231dda
DW
636
637/**
638 * isci_host_start_complete() - This function is called by the core library,
639 * through the ISCI Module, to indicate controller start status.
640 * @isci_host: This parameter specifies the ISCI host object
641 * @completion_status: This parameter specifies the completion status from the
642 * core library.
643 *
644 */
cc9203bf 645static void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
6f231dda 646{
0cf89d1d
DW
647 if (completion_status != SCI_SUCCESS)
648 dev_info(&ihost->pdev->dev,
649 "controller start timed out, continuing...\n");
0cf89d1d
DW
650 clear_bit(IHOST_START_PENDING, &ihost->flags);
651 wake_up(&ihost->eventq);
6f231dda
DW
652}
653
c7ef4031 654int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
6f231dda 655{
b1124cd3
DW
656 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
657 struct isci_host *ihost = ha->lldd_ha;
6f231dda 658
77950f51 659 if (test_bit(IHOST_START_PENDING, &ihost->flags))
6f231dda 660 return 0;
6f231dda 661
b1124cd3 662 sas_drain_work(ha);
6f231dda 663
6f231dda 664 return 1;
6f231dda
DW
665}
666
cc9203bf 667/**
89a7301f
DW
668 * sci_controller_get_suggested_start_timeout() - This method returns the
669 * suggested sci_controller_start() timeout amount. The user is free to
cc9203bf
DW
670 * use any timeout value, but this method provides the suggested minimum
671 * start timeout value. The returned value is based upon empirical
672 * information determined as a result of interoperability testing.
673 * @controller: the handle to the controller object for which to return the
674 * suggested start timeout.
675 *
676 * This method returns the number of milliseconds for the suggested start
677 * operation timeout.
678 */
89a7301f 679static u32 sci_controller_get_suggested_start_timeout(struct isci_host *ihost)
cc9203bf
DW
680{
681 /* Validate the user supplied parameters. */
d9dcb4ba 682 if (!ihost)
cc9203bf
DW
683 return 0;
684
685 /*
686 * The suggested minimum timeout value for a controller start operation:
687 *
688 * Signature FIS Timeout
689 * + Phy Start Timeout
690 * + Number of Phy Spin Up Intervals
691 * ---------------------------------
692 * Number of milliseconds for the controller start operation.
693 *
694 * NOTE: The number of phy spin up intervals will be equivalent
695 * to the number of phys divided by the number phys allowed
696 * per interval - 1 (once OEM parameters are supported).
697 * Currently we assume only 1 phy per interval. */
698
699 return SCIC_SDS_SIGNATURE_FIS_TIMEOUT
700 + SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT
701 + ((SCI_MAX_PHYS - 1) * SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
702}
703
89a7301f 704static void sci_controller_enable_interrupts(struct isci_host *ihost)
cc9203bf 705{
2396a265 706 set_bit(IHOST_IRQ_ENABLED, &ihost->flags);
d9dcb4ba 707 writel(0, &ihost->smu_registers->interrupt_mask);
cc9203bf
DW
708}
709
89a7301f 710void sci_controller_disable_interrupts(struct isci_host *ihost)
cc9203bf 711{
2396a265 712 clear_bit(IHOST_IRQ_ENABLED, &ihost->flags);
d9dcb4ba 713 writel(0xffffffff, &ihost->smu_registers->interrupt_mask);
2396a265 714 readl(&ihost->smu_registers->interrupt_mask); /* flush */
cc9203bf
DW
715}
716
89a7301f 717static void sci_controller_enable_port_task_scheduler(struct isci_host *ihost)
cc9203bf
DW
718{
719 u32 port_task_scheduler_value;
720
721 port_task_scheduler_value =
d9dcb4ba 722 readl(&ihost->scu_registers->peg0.ptsg.control);
cc9203bf
DW
723 port_task_scheduler_value |=
724 (SCU_PTSGCR_GEN_BIT(ETM_ENABLE) |
725 SCU_PTSGCR_GEN_BIT(PTSG_ENABLE));
726 writel(port_task_scheduler_value,
d9dcb4ba 727 &ihost->scu_registers->peg0.ptsg.control);
cc9203bf
DW
728}
729
89a7301f 730static void sci_controller_assign_task_entries(struct isci_host *ihost)
cc9203bf
DW
731{
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 =
d9dcb4ba 740 readl(&ihost->smu_registers->task_context_assignment[0]);
cc9203bf
DW
741
742 task_assignment |= (SMU_TCA_GEN_VAL(STARTING, 0)) |
d9dcb4ba 743 (SMU_TCA_GEN_VAL(ENDING, ihost->task_context_entries - 1)) |
cc9203bf
DW
744 (SMU_TCA_GEN_BIT(RANGE_CHECK_ENABLE));
745
746 writel(task_assignment,
d9dcb4ba 747 &ihost->smu_registers->task_context_assignment[0]);
cc9203bf
DW
748
749}
750
89a7301f 751static void sci_controller_initialize_completion_queue(struct isci_host *ihost)
cc9203bf
DW
752{
753 u32 index;
754 u32 completion_queue_control_value;
755 u32 completion_queue_get_value;
756 u32 completion_queue_put_value;
757
d9dcb4ba 758 ihost->completion_queue_get = 0;
cc9203bf 759
7c78da31
DW
760 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));
cc9203bf
DW
763
764 writel(completion_queue_control_value,
d9dcb4ba 765 &ihost->smu_registers->completion_queue_control);
cc9203bf
DW
766
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,
d9dcb4ba 777 &ihost->smu_registers->completion_queue_get);
cc9203bf
DW
778
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,
d9dcb4ba 786 &ihost->smu_registers->completion_queue_put);
cc9203bf
DW
787
788 /* Initialize the cycle bit of the completion queue entries */
7c78da31 789 for (index = 0; index < SCU_MAX_COMPLETION_QUEUE_ENTRIES; index++) {
cc9203bf
DW
790 /*
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 */
d9dcb4ba 794 ihost->completion_queue[index] = 0x80000000;
cc9203bf
DW
795 }
796}
797
89a7301f 798static void sci_controller_initialize_unsolicited_frame_queue(struct isci_host *ihost)
cc9203bf
DW
799{
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 =
7c78da31 806 SCU_UFQC_GEN_VAL(QUEUE_SIZE, SCU_MAX_UNSOLICITED_FRAMES);
cc9203bf
DW
807
808 writel(frame_queue_control_value,
d9dcb4ba 809 &ihost->scu_registers->sdma.unsolicited_frame_queue_control);
cc9203bf
DW
810
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,
d9dcb4ba 818 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
cc9203bf
DW
819 /* 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,
d9dcb4ba 822 &ihost->scu_registers->sdma.unsolicited_frame_put_pointer);
cc9203bf
DW
823}
824
50a92d93 825void sci_controller_transition_to_ready(struct isci_host *ihost, enum sci_status status)
cc9203bf 826{
d9dcb4ba 827 if (ihost->sm.current_state_id == SCIC_STARTING) {
cc9203bf
DW
828 /*
829 * We move into the ready state, because some of the phys/ports
830 * may be up and operational.
831 */
d9dcb4ba 832 sci_change_state(&ihost->sm, SCIC_READY);
cc9203bf
DW
833
834 isci_host_start_complete(ihost, status);
835 }
836}
837
85280955 838static bool is_phy_starting(struct isci_phy *iphy)
4a33c525 839{
89a7301f 840 enum sci_phy_states state;
4a33c525 841
85280955 842 state = iphy->sm.current_state_id;
4a33c525 843 switch (state) {
e301370a
EN
844 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:
50a92d93 852 case SCI_PHY_SUB_AWAIT_OSSP_EN:
e301370a
EN
853 case SCI_PHY_SUB_AWAIT_SIG_FIS_UF:
854 case SCI_PHY_SUB_FINAL:
4a33c525
AG
855 return true;
856 default:
857 return false;
858 }
859}
860
50a92d93
DW
861bool is_controller_start_complete(struct isci_host *ihost)
862{
863 int i;
864
865 for (i = 0; i < SCI_MAX_PHYS; i++) {
866 struct isci_phy *iphy = &ihost->phys[i];
867 u32 state = iphy->sm.current_state_id;
868
869 /* in apc mode we need to check every phy, in
870 * mpc mode we only need to check phys that have
871 * been configured into a port
872 */
873 if (is_port_config_apc(ihost))
874 /* pass */;
875 else if (!phy_get_non_dummy_port(iphy))
876 continue;
877
878 /* The controller start operation is complete iff:
879 * - all links have been given an opportunity to start
880 * - have no indication of a connected device
881 * - have an indication of a connected device and it has
882 * finished the link training process.
883 */
884 if ((iphy->is_in_link_training == false && state == SCI_PHY_INITIAL) ||
885 (iphy->is_in_link_training == false && state == SCI_PHY_STOPPED) ||
886 (iphy->is_in_link_training == true && is_phy_starting(iphy)) ||
887 (ihost->port_agent.phy_ready_mask != ihost->port_agent.phy_configured_mask))
888 return false;
889 }
890
891 return true;
892}
893
cc9203bf 894/**
89a7301f 895 * sci_controller_start_next_phy - start phy
cc9203bf
DW
896 * @scic: controller
897 *
898 * If all the phys have been started, then attempt to transition the
899 * controller to the READY state and inform the user
89a7301f 900 * (sci_cb_controller_start_complete()).
cc9203bf 901 */
89a7301f 902static enum sci_status sci_controller_start_next_phy(struct isci_host *ihost)
cc9203bf 903{
89a7301f 904 struct sci_oem_params *oem = &ihost->oem_parameters;
85280955 905 struct isci_phy *iphy;
cc9203bf
DW
906 enum sci_status status;
907
908 status = SCI_SUCCESS;
909
d9dcb4ba 910 if (ihost->phy_startup_timer_pending)
cc9203bf
DW
911 return status;
912
d9dcb4ba 913 if (ihost->next_phy_to_start >= SCI_MAX_PHYS) {
50a92d93 914 if (is_controller_start_complete(ihost)) {
89a7301f 915 sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
d9dcb4ba
DW
916 sci_del_timer(&ihost->phy_timer);
917 ihost->phy_startup_timer_pending = false;
cc9203bf
DW
918 }
919 } else {
d9dcb4ba 920 iphy = &ihost->phys[ihost->next_phy_to_start];
cc9203bf
DW
921
922 if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
85280955 923 if (phy_get_non_dummy_port(iphy) == NULL) {
d9dcb4ba 924 ihost->next_phy_to_start++;
cc9203bf
DW
925
926 /* Caution recursion ahead be forwarned
927 *
928 * The PHY was never added to a PORT in MPC mode
929 * so start the next phy in sequence This phy
930 * will never go link up and will not draw power
931 * the OEM parameters either configured the phy
932 * incorrectly for the PORT or it was never
933 * assigned to a PORT
934 */
89a7301f 935 return sci_controller_start_next_phy(ihost);
cc9203bf
DW
936 }
937 }
938
89a7301f 939 status = sci_phy_start(iphy);
cc9203bf
DW
940
941 if (status == SCI_SUCCESS) {
d9dcb4ba 942 sci_mod_timer(&ihost->phy_timer,
bb3dbdf6 943 SCIC_SDS_CONTROLLER_PHY_START_TIMEOUT);
d9dcb4ba 944 ihost->phy_startup_timer_pending = true;
cc9203bf 945 } else {
d9dcb4ba 946 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
947 "%s: Controller stop operation failed "
948 "to stop phy %d because of status "
949 "%d.\n",
950 __func__,
d9dcb4ba 951 ihost->phys[ihost->next_phy_to_start].phy_index,
cc9203bf
DW
952 status);
953 }
954
d9dcb4ba 955 ihost->next_phy_to_start++;
cc9203bf
DW
956 }
957
958 return status;
959}
960
bb3dbdf6 961static void phy_startup_timeout(unsigned long data)
cc9203bf 962{
bb3dbdf6 963 struct sci_timer *tmr = (struct sci_timer *)data;
d9dcb4ba 964 struct isci_host *ihost = container_of(tmr, typeof(*ihost), phy_timer);
bb3dbdf6 965 unsigned long flags;
cc9203bf
DW
966 enum sci_status status;
967
bb3dbdf6
EN
968 spin_lock_irqsave(&ihost->scic_lock, flags);
969
970 if (tmr->cancel)
971 goto done;
972
d9dcb4ba 973 ihost->phy_startup_timer_pending = false;
bb3dbdf6
EN
974
975 do {
89a7301f 976 status = sci_controller_start_next_phy(ihost);
bb3dbdf6
EN
977 } while (status != SCI_SUCCESS);
978
979done:
980 spin_unlock_irqrestore(&ihost->scic_lock, flags);
cc9203bf
DW
981}
982
ac668c69
DW
983static u16 isci_tci_active(struct isci_host *ihost)
984{
985 return CIRC_CNT(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
986}
987
89a7301f 988static enum sci_status sci_controller_start(struct isci_host *ihost,
cc9203bf
DW
989 u32 timeout)
990{
cc9203bf
DW
991 enum sci_status result;
992 u16 index;
993
d9dcb4ba 994 if (ihost->sm.current_state_id != SCIC_INITIALIZED) {
14e99b4a
DW
995 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
996 __func__, ihost->sm.current_state_id);
cc9203bf
DW
997 return SCI_FAILURE_INVALID_STATE;
998 }
999
1000 /* Build the TCi free pool */
ac668c69
DW
1001 BUILD_BUG_ON(SCI_MAX_IO_REQUESTS > 1 << sizeof(ihost->tci_pool[0]) * 8);
1002 ihost->tci_head = 0;
1003 ihost->tci_tail = 0;
d9dcb4ba 1004 for (index = 0; index < ihost->task_context_entries; index++)
ac668c69 1005 isci_tci_free(ihost, index);
cc9203bf
DW
1006
1007 /* Build the RNi free pool */
89a7301f
DW
1008 sci_remote_node_table_initialize(&ihost->available_remote_nodes,
1009 ihost->remote_node_entries);
cc9203bf
DW
1010
1011 /*
1012 * Before anything else lets make sure we will not be
1013 * interrupted by the hardware.
1014 */
89a7301f 1015 sci_controller_disable_interrupts(ihost);
cc9203bf
DW
1016
1017 /* Enable the port task scheduler */
89a7301f 1018 sci_controller_enable_port_task_scheduler(ihost);
cc9203bf 1019
d9dcb4ba 1020 /* Assign all the task entries to ihost physical function */
89a7301f 1021 sci_controller_assign_task_entries(ihost);
cc9203bf
DW
1022
1023 /* Now initialize the completion queue */
89a7301f 1024 sci_controller_initialize_completion_queue(ihost);
cc9203bf
DW
1025
1026 /* Initialize the unsolicited frame queue for use */
89a7301f 1027 sci_controller_initialize_unsolicited_frame_queue(ihost);
cc9203bf
DW
1028
1029 /* Start all of the ports on this controller */
d9dcb4ba 1030 for (index = 0; index < ihost->logical_port_entries; index++) {
ffe191c9 1031 struct isci_port *iport = &ihost->ports[index];
cc9203bf 1032
89a7301f 1033 result = sci_port_start(iport);
cc9203bf
DW
1034 if (result)
1035 return result;
1036 }
1037
89a7301f 1038 sci_controller_start_next_phy(ihost);
cc9203bf 1039
d9dcb4ba 1040 sci_mod_timer(&ihost->timer, timeout);
cc9203bf 1041
d9dcb4ba 1042 sci_change_state(&ihost->sm, SCIC_STARTING);
cc9203bf
DW
1043
1044 return SCI_SUCCESS;
1045}
1046
6f231dda
DW
1047void isci_host_scan_start(struct Scsi_Host *shost)
1048{
4393aa4e 1049 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
89a7301f 1050 unsigned long tmo = sci_controller_get_suggested_start_timeout(ihost);
6f231dda 1051
0cf89d1d 1052 set_bit(IHOST_START_PENDING, &ihost->flags);
77950f51
EN
1053
1054 spin_lock_irq(&ihost->scic_lock);
89a7301f
DW
1055 sci_controller_start(ihost, tmo);
1056 sci_controller_enable_interrupts(ihost);
77950f51 1057 spin_unlock_irq(&ihost->scic_lock);
6f231dda
DW
1058}
1059
eb608c3c 1060static void isci_host_stop_complete(struct isci_host *ihost)
6f231dda 1061{
89a7301f 1062 sci_controller_disable_interrupts(ihost);
0cf89d1d
DW
1063 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
1064 wake_up(&ihost->eventq);
6f231dda
DW
1065}
1066
89a7301f 1067static void sci_controller_completion_handler(struct isci_host *ihost)
cc9203bf
DW
1068{
1069 /* Empty out the completion queue */
89a7301f
DW
1070 if (sci_controller_completion_queue_has_entries(ihost))
1071 sci_controller_process_completions(ihost);
cc9203bf
DW
1072
1073 /* Clear the interrupt and enable all interrupts again */
d9dcb4ba 1074 writel(SMU_ISR_COMPLETION, &ihost->smu_registers->interrupt_status);
cc9203bf 1075 /* Could we write the value of SMU_ISR_COMPLETION? */
d9dcb4ba
DW
1076 writel(0xFF000000, &ihost->smu_registers->interrupt_mask);
1077 writel(0, &ihost->smu_registers->interrupt_mask);
cc9203bf
DW
1078}
1079
f8381807
JS
1080void ireq_done(struct isci_host *ihost, struct isci_request *ireq, struct sas_task *task)
1081{
1082 task->lldd_task = NULL;
1083 if (!test_bit(IREQ_ABORT_PATH_ACTIVE, &ireq->flags) &&
1084 !(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
1085 if (test_bit(IREQ_COMPLETE_IN_TARGET, &ireq->flags)) {
1086 /* Normal notification (task_done) */
1087 dev_dbg(&ihost->pdev->dev,
1088 "%s: Normal - ireq/task = %p/%p\n",
1089 __func__, ireq, task);
1090
1091 task->task_done(task);
1092 } else {
1093 dev_dbg(&ihost->pdev->dev,
1094 "%s: Error - ireq/task = %p/%p\n",
1095 __func__, ireq, task);
1096
1097 sas_task_abort(task);
1098 }
1099 }
1100 if (test_and_clear_bit(IREQ_ABORT_PATH_ACTIVE, &ireq->flags))
1101 wake_up_all(&ihost->eventq);
1102
1103 if (!test_bit(IREQ_NO_AUTO_FREE_TAG, &ireq->flags))
1104 isci_free_tag(ihost, ireq->io_tag);
1105}
6f231dda
DW
1106/**
1107 * isci_host_completion_routine() - This function is the delayed service
1108 * routine that calls the sci core library's completion handler. It's
1109 * scheduled as a tasklet from the interrupt service routine when interrupts
1110 * in use, or set as the timeout function in polled mode.
1111 * @data: This parameter specifies the ISCI host object
1112 *
1113 */
abec912d 1114void isci_host_completion_routine(unsigned long data)
6f231dda 1115{
d9dcb4ba 1116 struct isci_host *ihost = (struct isci_host *)data;
9b4be528 1117 u16 active;
6f231dda 1118
d9dcb4ba 1119 spin_lock_irq(&ihost->scic_lock);
89a7301f 1120 sci_controller_completion_handler(ihost);
033d19d2 1121 spin_unlock_irq(&ihost->scic_lock);
6f231dda 1122
9b4be528
DW
1123 /* the coalesence timeout doubles at each encoding step, so
1124 * update it based on the ilog2 value of the outstanding requests
1125 */
1126 active = isci_tci_active(ihost);
1127 writel(SMU_ICC_GEN_VAL(NUMBER, active) |
1128 SMU_ICC_GEN_VAL(TIMER, ISCI_COALESCE_BASE + ilog2(active)),
1129 &ihost->smu_registers->interrupt_coalesce_control);
6f231dda
DW
1130}
1131
cc9203bf 1132/**
89a7301f 1133 * sci_controller_stop() - This method will stop an individual controller
cc9203bf
DW
1134 * object.This method will invoke the associated user callback upon
1135 * completion. The completion callback is called when the following
1136 * conditions are met: -# the method return status is SCI_SUCCESS. -# the
1137 * controller has been quiesced. This method will ensure that all IO
1138 * requests are quiesced, phys are stopped, and all additional operation by
1139 * the hardware is halted.
1140 * @controller: the handle to the controller object to stop.
1141 * @timeout: This parameter specifies the number of milliseconds in which the
1142 * stop operation should complete.
1143 *
1144 * The controller must be in the STARTED or STOPPED state. Indicate if the
1145 * controller stop method succeeded or failed in some way. SCI_SUCCESS if the
1146 * stop operation successfully began. SCI_WARNING_ALREADY_IN_STATE if the
1147 * controller is already in the STOPPED state. SCI_FAILURE_INVALID_STATE if the
1148 * controller is not either in the STARTED or STOPPED states.
1149 */
89a7301f 1150static enum sci_status sci_controller_stop(struct isci_host *ihost, u32 timeout)
6f231dda 1151{
d9dcb4ba 1152 if (ihost->sm.current_state_id != SCIC_READY) {
14e99b4a
DW
1153 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1154 __func__, ihost->sm.current_state_id);
cc9203bf
DW
1155 return SCI_FAILURE_INVALID_STATE;
1156 }
6f231dda 1157
d9dcb4ba
DW
1158 sci_mod_timer(&ihost->timer, timeout);
1159 sci_change_state(&ihost->sm, SCIC_STOPPING);
cc9203bf
DW
1160 return SCI_SUCCESS;
1161}
1162
1163/**
89a7301f 1164 * sci_controller_reset() - This method will reset the supplied core
cc9203bf
DW
1165 * controller regardless of the state of said controller. This operation is
1166 * considered destructive. In other words, all current operations are wiped
1167 * out. No IO completions for outstanding devices occur. Outstanding IO
1168 * requests are not aborted or completed at the actual remote device.
1169 * @controller: the handle to the controller object to reset.
1170 *
1171 * Indicate if the controller reset method succeeded or failed in some way.
1172 * SCI_SUCCESS if the reset operation successfully started. SCI_FATAL_ERROR if
1173 * the controller reset operation is unable to complete.
1174 */
89a7301f 1175static enum sci_status sci_controller_reset(struct isci_host *ihost)
cc9203bf 1176{
d9dcb4ba 1177 switch (ihost->sm.current_state_id) {
e301370a
EN
1178 case SCIC_RESET:
1179 case SCIC_READY:
eb608c3c 1180 case SCIC_STOPPING:
e301370a 1181 case SCIC_FAILED:
cc9203bf
DW
1182 /*
1183 * The reset operation is not a graceful cleanup, just
1184 * perform the state transition.
1185 */
d9dcb4ba 1186 sci_change_state(&ihost->sm, SCIC_RESETTING);
cc9203bf
DW
1187 return SCI_SUCCESS;
1188 default:
14e99b4a
DW
1189 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
1190 __func__, ihost->sm.current_state_id);
cc9203bf
DW
1191 return SCI_FAILURE_INVALID_STATE;
1192 }
1193}
1194
eb608c3c
DW
1195static enum sci_status sci_controller_stop_phys(struct isci_host *ihost)
1196{
1197 u32 index;
1198 enum sci_status status;
1199 enum sci_status phy_status;
1200
1201 status = SCI_SUCCESS;
1202
1203 for (index = 0; index < SCI_MAX_PHYS; index++) {
1204 phy_status = sci_phy_stop(&ihost->phys[index]);
1205
1206 if (phy_status != SCI_SUCCESS &&
1207 phy_status != SCI_FAILURE_INVALID_STATE) {
1208 status = SCI_FAILURE;
1209
1210 dev_warn(&ihost->pdev->dev,
1211 "%s: Controller stop operation failed to stop "
1212 "phy %d because of status %d.\n",
1213 __func__,
1214 ihost->phys[index].phy_index, phy_status);
1215 }
1216 }
1217
1218 return status;
1219}
1220
1221
1222/**
1223 * isci_host_deinit - shutdown frame reception and dma
1224 * @ihost: host to take down
1225 *
1226 * This is called in either the driver shutdown or the suspend path. In
1227 * the shutdown case libsas went through port teardown and normal device
1228 * removal (i.e. physical links stayed up to service scsi_device removal
1229 * commands). In the suspend case we disable the hardware without
1230 * notifying libsas of the link down events since we want libsas to
1231 * remember the domain across the suspend/resume cycle
1232 */
cc9203bf
DW
1233void isci_host_deinit(struct isci_host *ihost)
1234{
1235 int i;
1236
ad4f4c1d
DW
1237 /* disable output data selects */
1238 for (i = 0; i < isci_gpio_count(ihost); i++)
1239 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
1240
0cf89d1d 1241 set_bit(IHOST_STOP_PENDING, &ihost->flags);
7c40a803
DW
1242
1243 spin_lock_irq(&ihost->scic_lock);
89a7301f 1244 sci_controller_stop(ihost, SCIC_CONTROLLER_STOP_TIMEOUT);
7c40a803
DW
1245 spin_unlock_irq(&ihost->scic_lock);
1246
0cf89d1d 1247 wait_for_stop(ihost);
ad4f4c1d 1248
eb608c3c
DW
1249 /* phy stop is after controller stop to allow port and device to
1250 * go idle before shutting down the phys, but the expectation is
1251 * that i/o has been shut off well before we reach this
1252 * function.
1253 */
1254 sci_controller_stop_phys(ihost);
1255
ad4f4c1d
DW
1256 /* disable sgpio: where the above wait should give time for the
1257 * enclosure to sample the gpios going inactive
1258 */
1259 writel(0, &ihost->scu_registers->peg0.sgpio.interface_control);
1260
2396a265 1261 spin_lock_irq(&ihost->scic_lock);
89a7301f 1262 sci_controller_reset(ihost);
2396a265 1263 spin_unlock_irq(&ihost->scic_lock);
5553ba2b
EN
1264
1265 /* Cancel any/all outstanding port timers */
d9dcb4ba 1266 for (i = 0; i < ihost->logical_port_entries; i++) {
ffe191c9
DW
1267 struct isci_port *iport = &ihost->ports[i];
1268 del_timer_sync(&iport->timer.timer);
5553ba2b
EN
1269 }
1270
a628d478
EN
1271 /* Cancel any/all outstanding phy timers */
1272 for (i = 0; i < SCI_MAX_PHYS; i++) {
85280955
DW
1273 struct isci_phy *iphy = &ihost->phys[i];
1274 del_timer_sync(&iphy->sata_timer.timer);
a628d478
EN
1275 }
1276
d9dcb4ba 1277 del_timer_sync(&ihost->port_agent.timer.timer);
ac0eeb4f 1278
d9dcb4ba 1279 del_timer_sync(&ihost->power_control.timer.timer);
0473661a 1280
d9dcb4ba 1281 del_timer_sync(&ihost->timer.timer);
6cb5853d 1282
d9dcb4ba 1283 del_timer_sync(&ihost->phy_timer.timer);
6f231dda
DW
1284}
1285
6f231dda
DW
1286static void __iomem *scu_base(struct isci_host *isci_host)
1287{
1288 struct pci_dev *pdev = isci_host->pdev;
1289 int id = isci_host->id;
1290
1291 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
1292}
1293
1294static void __iomem *smu_base(struct isci_host *isci_host)
1295{
1296 struct pci_dev *pdev = isci_host->pdev;
1297 int id = isci_host->id;
1298
1299 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
1300}
1301
89a7301f 1302static void sci_controller_initial_state_enter(struct sci_base_state_machine *sm)
cc9203bf 1303{
d9dcb4ba 1304 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
cc9203bf 1305
d9dcb4ba 1306 sci_change_state(&ihost->sm, SCIC_RESET);
cc9203bf
DW
1307}
1308
89a7301f 1309static inline void sci_controller_starting_state_exit(struct sci_base_state_machine *sm)
cc9203bf 1310{
d9dcb4ba 1311 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
cc9203bf 1312
d9dcb4ba 1313 sci_del_timer(&ihost->timer);
cc9203bf
DW
1314}
1315
1316#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS 853
1317#define INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS 1280
1318#define INTERRUPT_COALESCE_TIMEOUT_MAX_US 2700000
1319#define INTERRUPT_COALESCE_NUMBER_MAX 256
1320#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN 7
1321#define INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX 28
1322
1323/**
89a7301f 1324 * sci_controller_set_interrupt_coalescence() - This method allows the user to
cc9203bf
DW
1325 * configure the interrupt coalescence.
1326 * @controller: This parameter represents the handle to the controller object
1327 * for which its interrupt coalesce register is overridden.
1328 * @coalesce_number: Used to control the number of entries in the Completion
1329 * Queue before an interrupt is generated. If the number of entries exceed
1330 * this number, an interrupt will be generated. The valid range of the input
1331 * is [0, 256]. A setting of 0 results in coalescing being disabled.
1332 * @coalesce_timeout: Timeout value in microseconds. The valid range of the
1333 * input is [0, 2700000] . A setting of 0 is allowed and results in no
1334 * interrupt coalescing timeout.
1335 *
1336 * Indicate if the user successfully set the interrupt coalesce parameters.
1337 * SCI_SUCCESS The user successfully updated the interrutp coalescence.
1338 * SCI_FAILURE_INVALID_PARAMETER_VALUE The user input value is out of range.
1339 */
d9dcb4ba 1340static enum sci_status
89a7301f
DW
1341sci_controller_set_interrupt_coalescence(struct isci_host *ihost,
1342 u32 coalesce_number,
1343 u32 coalesce_timeout)
cc9203bf
DW
1344{
1345 u8 timeout_encode = 0;
1346 u32 min = 0;
1347 u32 max = 0;
1348
1349 /* Check if the input parameters fall in the range. */
1350 if (coalesce_number > INTERRUPT_COALESCE_NUMBER_MAX)
1351 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1352
1353 /*
1354 * Defined encoding for interrupt coalescing timeout:
1355 * Value Min Max Units
1356 * ----- --- --- -----
1357 * 0 - - Disabled
1358 * 1 13.3 20.0 ns
1359 * 2 26.7 40.0
1360 * 3 53.3 80.0
1361 * 4 106.7 160.0
1362 * 5 213.3 320.0
1363 * 6 426.7 640.0
1364 * 7 853.3 1280.0
1365 * 8 1.7 2.6 us
1366 * 9 3.4 5.1
1367 * 10 6.8 10.2
1368 * 11 13.7 20.5
1369 * 12 27.3 41.0
1370 * 13 54.6 81.9
1371 * 14 109.2 163.8
1372 * 15 218.5 327.7
1373 * 16 436.9 655.4
1374 * 17 873.8 1310.7
1375 * 18 1.7 2.6 ms
1376 * 19 3.5 5.2
1377 * 20 7.0 10.5
1378 * 21 14.0 21.0
1379 * 22 28.0 41.9
1380 * 23 55.9 83.9
1381 * 24 111.8 167.8
1382 * 25 223.7 335.5
1383 * 26 447.4 671.1
1384 * 27 894.8 1342.2
1385 * 28 1.8 2.7 s
1386 * Others Undefined */
1387
1388 /*
1389 * Use the table above to decide the encode of interrupt coalescing timeout
1390 * value for register writing. */
1391 if (coalesce_timeout == 0)
1392 timeout_encode = 0;
1393 else{
1394 /* make the timeout value in unit of (10 ns). */
1395 coalesce_timeout = coalesce_timeout * 100;
1396 min = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_LOWER_BOUND_NS / 10;
1397 max = INTERRUPT_COALESCE_TIMEOUT_BASE_RANGE_UPPER_BOUND_NS / 10;
1398
1399 /* get the encode of timeout for register writing. */
1400 for (timeout_encode = INTERRUPT_COALESCE_TIMEOUT_ENCODE_MIN;
1401 timeout_encode <= INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX;
1402 timeout_encode++) {
1403 if (min <= coalesce_timeout && max > coalesce_timeout)
1404 break;
1405 else if (coalesce_timeout >= max && coalesce_timeout < min * 2
1406 && coalesce_timeout <= INTERRUPT_COALESCE_TIMEOUT_MAX_US * 100) {
1407 if ((coalesce_timeout - max) < (2 * min - coalesce_timeout))
1408 break;
1409 else{
1410 timeout_encode++;
1411 break;
1412 }
1413 } else {
1414 max = max * 2;
1415 min = min * 2;
1416 }
1417 }
1418
1419 if (timeout_encode == INTERRUPT_COALESCE_TIMEOUT_ENCODE_MAX + 1)
1420 /* the value is out of range. */
1421 return SCI_FAILURE_INVALID_PARAMETER_VALUE;
1422 }
1423
1424 writel(SMU_ICC_GEN_VAL(NUMBER, coalesce_number) |
1425 SMU_ICC_GEN_VAL(TIMER, timeout_encode),
d9dcb4ba 1426 &ihost->smu_registers->interrupt_coalesce_control);
cc9203bf
DW
1427
1428
d9dcb4ba
DW
1429 ihost->interrupt_coalesce_number = (u16)coalesce_number;
1430 ihost->interrupt_coalesce_timeout = coalesce_timeout / 100;
cc9203bf
DW
1431
1432 return SCI_SUCCESS;
1433}
1434
1435
89a7301f 1436static void sci_controller_ready_state_enter(struct sci_base_state_machine *sm)
cc9203bf 1437{
d9dcb4ba 1438 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
e5cc6aa4
MT
1439 u32 val;
1440
1441 /* enable clock gating for power control of the scu unit */
1442 val = readl(&ihost->smu_registers->clock_gating_control);
1443 val &= ~(SMU_CGUCR_GEN_BIT(REGCLK_ENABLE) |
1444 SMU_CGUCR_GEN_BIT(TXCLK_ENABLE) |
1445 SMU_CGUCR_GEN_BIT(XCLK_ENABLE));
1446 val |= SMU_CGUCR_GEN_BIT(IDLE_ENABLE);
1447 writel(val, &ihost->smu_registers->clock_gating_control);
cc9203bf
DW
1448
1449 /* set the default interrupt coalescence number and timeout value. */
9b4be528 1450 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
cc9203bf
DW
1451}
1452
89a7301f 1453static void sci_controller_ready_state_exit(struct sci_base_state_machine *sm)
cc9203bf 1454{
d9dcb4ba 1455 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
cc9203bf
DW
1456
1457 /* disable interrupt coalescence. */
89a7301f 1458 sci_controller_set_interrupt_coalescence(ihost, 0, 0);
cc9203bf
DW
1459}
1460
89a7301f 1461static enum sci_status sci_controller_stop_ports(struct isci_host *ihost)
cc9203bf
DW
1462{
1463 u32 index;
1464 enum sci_status port_status;
1465 enum sci_status status = SCI_SUCCESS;
cc9203bf 1466
d9dcb4ba 1467 for (index = 0; index < ihost->logical_port_entries; index++) {
ffe191c9 1468 struct isci_port *iport = &ihost->ports[index];
cc9203bf 1469
89a7301f 1470 port_status = sci_port_stop(iport);
cc9203bf
DW
1471
1472 if ((port_status != SCI_SUCCESS) &&
1473 (port_status != SCI_FAILURE_INVALID_STATE)) {
1474 status = SCI_FAILURE;
1475
d9dcb4ba 1476 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
1477 "%s: Controller stop operation failed to "
1478 "stop port %d because of status %d.\n",
1479 __func__,
ffe191c9 1480 iport->logical_port_index,
cc9203bf
DW
1481 port_status);
1482 }
1483 }
1484
1485 return status;
1486}
1487
89a7301f 1488static enum sci_status sci_controller_stop_devices(struct isci_host *ihost)
cc9203bf
DW
1489{
1490 u32 index;
1491 enum sci_status status;
1492 enum sci_status device_status;
1493
1494 status = SCI_SUCCESS;
1495
d9dcb4ba
DW
1496 for (index = 0; index < ihost->remote_node_entries; index++) {
1497 if (ihost->device_table[index] != NULL) {
cc9203bf 1498 /* / @todo What timeout value do we want to provide to this request? */
89a7301f 1499 device_status = sci_remote_device_stop(ihost->device_table[index], 0);
cc9203bf
DW
1500
1501 if ((device_status != SCI_SUCCESS) &&
1502 (device_status != SCI_FAILURE_INVALID_STATE)) {
d9dcb4ba 1503 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
1504 "%s: Controller stop operation failed "
1505 "to stop device 0x%p because of "
1506 "status %d.\n",
1507 __func__,
d9dcb4ba 1508 ihost->device_table[index], device_status);
cc9203bf
DW
1509 }
1510 }
1511 }
1512
1513 return status;
1514}
1515
89a7301f 1516static void sci_controller_stopping_state_enter(struct sci_base_state_machine *sm)
cc9203bf 1517{
d9dcb4ba 1518 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
cc9203bf 1519
89a7301f 1520 sci_controller_stop_devices(ihost);
eb608c3c
DW
1521 sci_controller_stop_ports(ihost);
1522
1523 if (!sci_controller_has_remote_devices_stopping(ihost))
1524 isci_host_stop_complete(ihost);
cc9203bf
DW
1525}
1526
89a7301f 1527static void sci_controller_stopping_state_exit(struct sci_base_state_machine *sm)
cc9203bf 1528{
d9dcb4ba 1529 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
cc9203bf 1530
d9dcb4ba 1531 sci_del_timer(&ihost->timer);
cc9203bf
DW
1532}
1533
89a7301f 1534static void sci_controller_reset_hardware(struct isci_host *ihost)
cc9203bf
DW
1535{
1536 /* Disable interrupts so we dont take any spurious interrupts */
89a7301f 1537 sci_controller_disable_interrupts(ihost);
cc9203bf
DW
1538
1539 /* Reset the SCU */
d9dcb4ba 1540 writel(0xFFFFFFFF, &ihost->smu_registers->soft_reset_control);
cc9203bf
DW
1541
1542 /* Delay for 1ms to before clearing the CQP and UFQPR. */
1543 udelay(1000);
1544
1545 /* The write to the CQGR clears the CQP */
d9dcb4ba 1546 writel(0x00000000, &ihost->smu_registers->completion_queue_get);
cc9203bf
DW
1547
1548 /* The write to the UFQGP clears the UFQPR */
d9dcb4ba 1549 writel(0, &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
2396a265
DW
1550
1551 /* clear all interrupts */
1552 writel(~SMU_INTERRUPT_STATUS_RESERVED_MASK, &ihost->smu_registers->interrupt_status);
cc9203bf
DW
1553}
1554
89a7301f 1555static void sci_controller_resetting_state_enter(struct sci_base_state_machine *sm)
cc9203bf 1556{
d9dcb4ba 1557 struct isci_host *ihost = container_of(sm, typeof(*ihost), sm);
cc9203bf 1558
89a7301f 1559 sci_controller_reset_hardware(ihost);
d9dcb4ba 1560 sci_change_state(&ihost->sm, SCIC_RESET);
cc9203bf
DW
1561}
1562
89a7301f 1563static const struct sci_base_state sci_controller_state_table[] = {
e301370a 1564 [SCIC_INITIAL] = {
89a7301f 1565 .enter_state = sci_controller_initial_state_enter,
cc9203bf 1566 },
e301370a
EN
1567 [SCIC_RESET] = {},
1568 [SCIC_INITIALIZING] = {},
1569 [SCIC_INITIALIZED] = {},
1570 [SCIC_STARTING] = {
89a7301f 1571 .exit_state = sci_controller_starting_state_exit,
cc9203bf 1572 },
e301370a 1573 [SCIC_READY] = {
89a7301f
DW
1574 .enter_state = sci_controller_ready_state_enter,
1575 .exit_state = sci_controller_ready_state_exit,
cc9203bf 1576 },
e301370a 1577 [SCIC_RESETTING] = {
89a7301f 1578 .enter_state = sci_controller_resetting_state_enter,
cc9203bf 1579 },
e301370a 1580 [SCIC_STOPPING] = {
89a7301f
DW
1581 .enter_state = sci_controller_stopping_state_enter,
1582 .exit_state = sci_controller_stopping_state_exit,
cc9203bf 1583 },
e301370a 1584 [SCIC_FAILED] = {}
cc9203bf
DW
1585};
1586
6cb5853d
EN
1587static void controller_timeout(unsigned long data)
1588{
1589 struct sci_timer *tmr = (struct sci_timer *)data;
d9dcb4ba
DW
1590 struct isci_host *ihost = container_of(tmr, typeof(*ihost), timer);
1591 struct sci_base_state_machine *sm = &ihost->sm;
6cb5853d
EN
1592 unsigned long flags;
1593
1594 spin_lock_irqsave(&ihost->scic_lock, flags);
1595
1596 if (tmr->cancel)
1597 goto done;
1598
e301370a 1599 if (sm->current_state_id == SCIC_STARTING)
89a7301f 1600 sci_controller_transition_to_ready(ihost, SCI_FAILURE_TIMEOUT);
e301370a
EN
1601 else if (sm->current_state_id == SCIC_STOPPING) {
1602 sci_change_state(sm, SCIC_FAILED);
eb608c3c 1603 isci_host_stop_complete(ihost);
6cb5853d 1604 } else /* / @todo Now what do we want to do in this case? */
d9dcb4ba 1605 dev_err(&ihost->pdev->dev,
6cb5853d
EN
1606 "%s: Controller timer fired when controller was not "
1607 "in a state being timed.\n",
1608 __func__);
cc9203bf 1609
6cb5853d
EN
1610done:
1611 spin_unlock_irqrestore(&ihost->scic_lock, flags);
1612}
cc9203bf 1613
89a7301f
DW
1614static enum sci_status sci_controller_construct(struct isci_host *ihost,
1615 void __iomem *scu_base,
1616 void __iomem *smu_base)
cc9203bf 1617{
cc9203bf
DW
1618 u8 i;
1619
89a7301f 1620 sci_init_sm(&ihost->sm, sci_controller_state_table, SCIC_INITIAL);
cc9203bf 1621
d9dcb4ba
DW
1622 ihost->scu_registers = scu_base;
1623 ihost->smu_registers = smu_base;
cc9203bf 1624
89a7301f 1625 sci_port_configuration_agent_construct(&ihost->port_agent);
cc9203bf
DW
1626
1627 /* Construct the ports for this controller */
1628 for (i = 0; i < SCI_MAX_PORTS; i++)
89a7301f
DW
1629 sci_port_construct(&ihost->ports[i], i, ihost);
1630 sci_port_construct(&ihost->ports[i], SCIC_SDS_DUMMY_PORT, ihost);
cc9203bf
DW
1631
1632 /* Construct the phys for this controller */
1633 for (i = 0; i < SCI_MAX_PHYS; i++) {
1634 /* Add all the PHYs to the dummy port */
89a7301f
DW
1635 sci_phy_construct(&ihost->phys[i],
1636 &ihost->ports[SCI_MAX_PORTS], i);
cc9203bf
DW
1637 }
1638
d9dcb4ba 1639 ihost->invalid_phy_mask = 0;
cc9203bf 1640
d9dcb4ba 1641 sci_init_timer(&ihost->timer, controller_timeout);
6cb5853d 1642
89a7301f 1643 return sci_controller_reset(ihost);
cc9203bf
DW
1644}
1645
594e566a 1646int sci_oem_parameters_validate(struct sci_oem_params *oem, u8 version)
cc9203bf
DW
1647{
1648 int i;
1649
1650 for (i = 0; i < SCI_MAX_PORTS; i++)
1651 if (oem->ports[i].phy_mask > SCIC_SDS_PARM_PHY_MASK_MAX)
1652 return -EINVAL;
1653
1654 for (i = 0; i < SCI_MAX_PHYS; i++)
1655 if (oem->phys[i].sas_address.high == 0 &&
1656 oem->phys[i].sas_address.low == 0)
1657 return -EINVAL;
1658
1659 if (oem->controller.mode_type == SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE) {
1660 for (i = 0; i < SCI_MAX_PHYS; i++)
1661 if (oem->ports[i].phy_mask != 0)
1662 return -EINVAL;
1663 } else if (oem->controller.mode_type == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
1664 u8 phy_mask = 0;
1665
1666 for (i = 0; i < SCI_MAX_PHYS; i++)
1667 phy_mask |= oem->ports[i].phy_mask;
1668
1669 if (phy_mask == 0)
1670 return -EINVAL;
1671 } else
1672 return -EINVAL;
1673
7000f7c7
AJ
1674 if (oem->controller.max_concurr_spin_up > MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT ||
1675 oem->controller.max_concurr_spin_up < 1)
cc9203bf
DW
1676 return -EINVAL;
1677
594e566a
DJ
1678 if (oem->controller.do_enable_ssc) {
1679 if (version < ISCI_ROM_VER_1_1 && oem->controller.do_enable_ssc != 1)
1680 return -EINVAL;
1681
1682 if (version >= ISCI_ROM_VER_1_1) {
1683 u8 test = oem->controller.ssc_sata_tx_spread_level;
1684
1685 switch (test) {
1686 case 0:
1687 case 2:
1688 case 3:
1689 case 6:
1690 case 7:
1691 break;
1692 default:
1693 return -EINVAL;
1694 }
1695
1696 test = oem->controller.ssc_sas_tx_spread_level;
1697 if (oem->controller.ssc_sas_tx_type == 0) {
1698 switch (test) {
1699 case 0:
1700 case 2:
1701 case 3:
1702 break;
1703 default:
1704 return -EINVAL;
1705 }
1706 } else if (oem->controller.ssc_sas_tx_type == 1) {
1707 switch (test) {
1708 case 0:
1709 case 3:
1710 case 6:
1711 break;
1712 default:
1713 return -EINVAL;
1714 }
1715 }
1716 }
1717 }
1718
cc9203bf
DW
1719 return 0;
1720}
1721
7000f7c7
AJ
1722static u8 max_spin_up(struct isci_host *ihost)
1723{
1724 if (ihost->user_parameters.max_concurr_spinup)
1725 return min_t(u8, ihost->user_parameters.max_concurr_spinup,
1726 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1727 else
1728 return min_t(u8, ihost->oem_parameters.controller.max_concurr_spin_up,
1729 MAX_CONCURRENT_DEVICE_SPIN_UP_COUNT);
1730}
1731
0473661a 1732static void power_control_timeout(unsigned long data)
cc9203bf 1733{
0473661a 1734 struct sci_timer *tmr = (struct sci_timer *)data;
d9dcb4ba 1735 struct isci_host *ihost = container_of(tmr, typeof(*ihost), power_control.timer);
85280955 1736 struct isci_phy *iphy;
0473661a
EN
1737 unsigned long flags;
1738 u8 i;
cc9203bf 1739
0473661a 1740 spin_lock_irqsave(&ihost->scic_lock, flags);
cc9203bf 1741
0473661a
EN
1742 if (tmr->cancel)
1743 goto done;
1744
d9dcb4ba 1745 ihost->power_control.phys_granted_power = 0;
0473661a 1746
d9dcb4ba
DW
1747 if (ihost->power_control.phys_waiting == 0) {
1748 ihost->power_control.timer_started = false;
0473661a 1749 goto done;
cc9203bf 1750 }
cc9203bf 1751
0473661a 1752 for (i = 0; i < SCI_MAX_PHYS; i++) {
cc9203bf 1753
d9dcb4ba 1754 if (ihost->power_control.phys_waiting == 0)
0473661a 1755 break;
cc9203bf 1756
d9dcb4ba 1757 iphy = ihost->power_control.requesters[i];
85280955 1758 if (iphy == NULL)
0473661a 1759 continue;
cc9203bf 1760
7000f7c7 1761 if (ihost->power_control.phys_granted_power >= max_spin_up(ihost))
0473661a 1762 break;
cc9203bf 1763
d9dcb4ba
DW
1764 ihost->power_control.requesters[i] = NULL;
1765 ihost->power_control.phys_waiting--;
1766 ihost->power_control.phys_granted_power++;
89a7301f 1767 sci_phy_consume_power_handler(iphy);
be778341 1768
c79dd80d 1769 if (iphy->protocol == SAS_PROTOCOL_SSP) {
be778341
MT
1770 u8 j;
1771
1772 for (j = 0; j < SCI_MAX_PHYS; j++) {
1773 struct isci_phy *requester = ihost->power_control.requesters[j];
1774
1775 /*
1776 * Search the power_control queue to see if there are other phys
1777 * attached to the same remote device. If found, take all of
1778 * them out of await_sas_power state.
1779 */
1780 if (requester != NULL && requester != iphy) {
1781 u8 other = memcmp(requester->frame_rcvd.iaf.sas_addr,
1782 iphy->frame_rcvd.iaf.sas_addr,
1783 sizeof(requester->frame_rcvd.iaf.sas_addr));
1784
1785 if (other == 0) {
1786 ihost->power_control.requesters[j] = NULL;
1787 ihost->power_control.phys_waiting--;
1788 sci_phy_consume_power_handler(requester);
1789 }
1790 }
1791 }
1792 }
cc9203bf 1793 }
0473661a
EN
1794
1795 /*
1796 * It doesn't matter if the power list is empty, we need to start the
1797 * timer in case another phy becomes ready.
1798 */
1799 sci_mod_timer(tmr, SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
d9dcb4ba 1800 ihost->power_control.timer_started = true;
0473661a
EN
1801
1802done:
1803 spin_unlock_irqrestore(&ihost->scic_lock, flags);
cc9203bf
DW
1804}
1805
89a7301f
DW
1806void sci_controller_power_control_queue_insert(struct isci_host *ihost,
1807 struct isci_phy *iphy)
cc9203bf 1808{
85280955 1809 BUG_ON(iphy == NULL);
cc9203bf 1810
7000f7c7 1811 if (ihost->power_control.phys_granted_power < max_spin_up(ihost)) {
d9dcb4ba 1812 ihost->power_control.phys_granted_power++;
89a7301f 1813 sci_phy_consume_power_handler(iphy);
cc9203bf
DW
1814
1815 /*
1816 * stop and start the power_control timer. When the timer fires, the
1817 * no_of_phys_granted_power will be set to 0
1818 */
d9dcb4ba
DW
1819 if (ihost->power_control.timer_started)
1820 sci_del_timer(&ihost->power_control.timer);
0473661a 1821
d9dcb4ba 1822 sci_mod_timer(&ihost->power_control.timer,
0473661a 1823 SCIC_SDS_CONTROLLER_POWER_CONTROL_INTERVAL);
d9dcb4ba 1824 ihost->power_control.timer_started = true;
0473661a 1825
cc9203bf 1826 } else {
be778341
MT
1827 /*
1828 * There are phys, attached to the same sas address as this phy, are
1829 * already in READY state, this phy don't need wait.
1830 */
1831 u8 i;
1832 struct isci_phy *current_phy;
1833
1834 for (i = 0; i < SCI_MAX_PHYS; i++) {
1835 u8 other;
1836 current_phy = &ihost->phys[i];
1837
1838 other = memcmp(current_phy->frame_rcvd.iaf.sas_addr,
1839 iphy->frame_rcvd.iaf.sas_addr,
1840 sizeof(current_phy->frame_rcvd.iaf.sas_addr));
1841
1842 if (current_phy->sm.current_state_id == SCI_PHY_READY &&
c79dd80d 1843 current_phy->protocol == SAS_PROTOCOL_SSP &&
be778341
MT
1844 other == 0) {
1845 sci_phy_consume_power_handler(iphy);
1846 break;
1847 }
1848 }
1849
1850 if (i == SCI_MAX_PHYS) {
1851 /* Add the phy in the waiting list */
1852 ihost->power_control.requesters[iphy->phy_index] = iphy;
1853 ihost->power_control.phys_waiting++;
1854 }
cc9203bf
DW
1855 }
1856}
1857
89a7301f
DW
1858void sci_controller_power_control_queue_remove(struct isci_host *ihost,
1859 struct isci_phy *iphy)
cc9203bf 1860{
85280955 1861 BUG_ON(iphy == NULL);
cc9203bf 1862
89a7301f 1863 if (ihost->power_control.requesters[iphy->phy_index])
d9dcb4ba 1864 ihost->power_control.phys_waiting--;
cc9203bf 1865
d9dcb4ba 1866 ihost->power_control.requesters[iphy->phy_index] = NULL;
cc9203bf
DW
1867}
1868
afd13a1f
JS
1869static int is_long_cable(int phy, unsigned char selection_byte)
1870{
9fee607f 1871 return !!(selection_byte & (1 << phy));
afd13a1f
JS
1872}
1873
1874static int is_medium_cable(int phy, unsigned char selection_byte)
1875{
9fee607f
JS
1876 return !!(selection_byte & (1 << (phy + 4)));
1877}
1878
1879static enum cable_selections decode_selection_byte(
1880 int phy,
1881 unsigned char selection_byte)
1882{
1883 return ((selection_byte & (1 << phy)) ? 1 : 0)
1884 + (selection_byte & (1 << (phy + 4)) ? 2 : 0);
1885}
1886
1887static unsigned char *to_cable_select(struct isci_host *ihost)
1888{
1889 if (is_cable_select_overridden())
1890 return ((unsigned char *)&cable_selection_override)
1891 + ihost->id;
1892 else
1893 return &ihost->oem_parameters.controller.cable_selection_mask;
1894}
1895
1896enum cable_selections decode_cable_selection(struct isci_host *ihost, int phy)
1897{
1898 return decode_selection_byte(phy, *to_cable_select(ihost));
1899}
1900
1901char *lookup_cable_names(enum cable_selections selection)
1902{
1903 static char *cable_names[] = {
1904 [short_cable] = "short",
1905 [long_cable] = "long",
1906 [medium_cable] = "medium",
1907 [undefined_cable] = "<undefined, assumed long>" /* bit 0==1 */
1908 };
1909 return (selection <= undefined_cable) ? cable_names[selection]
1910 : cable_names[undefined_cable];
afd13a1f
JS
1911}
1912
cc9203bf
DW
1913#define AFE_REGISTER_WRITE_DELAY 10
1914
89a7301f 1915static void sci_controller_afe_initialization(struct isci_host *ihost)
cc9203bf 1916{
2e5da889 1917 struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe;
89a7301f 1918 const struct sci_oem_params *oem = &ihost->oem_parameters;
dc00c8b6 1919 struct pci_dev *pdev = ihost->pdev;
cc9203bf
DW
1920 u32 afe_status;
1921 u32 phy_id;
9fee607f 1922 unsigned char cable_selection_mask = *to_cable_select(ihost);
cc9203bf
DW
1923
1924 /* Clear DFX Status registers */
2e5da889 1925 writel(0x0081000f, &afe->afe_dfx_master_control0);
cc9203bf
DW
1926 udelay(AFE_REGISTER_WRITE_DELAY);
1927
afd13a1f 1928 if (is_b0(pdev) || is_c0(pdev) || is_c1(pdev)) {
cc9203bf 1929 /* PM Rx Equalization Save, PM SPhy Rx Acknowledgement
2e5da889
DW
1930 * Timer, PM Stagger Timer
1931 */
afd13a1f 1932 writel(0x0007FFFF, &afe->afe_pmsn_master_control2);
cc9203bf
DW
1933 udelay(AFE_REGISTER_WRITE_DELAY);
1934 }
1935
1936 /* Configure bias currents to normal */
dc00c8b6 1937 if (is_a2(pdev))
2e5da889 1938 writel(0x00005A00, &afe->afe_bias_control);
dc00c8b6 1939 else if (is_b0(pdev) || is_c0(pdev))
2e5da889 1940 writel(0x00005F00, &afe->afe_bias_control);
afd13a1f
JS
1941 else if (is_c1(pdev))
1942 writel(0x00005500, &afe->afe_bias_control);
cc9203bf
DW
1943
1944 udelay(AFE_REGISTER_WRITE_DELAY);
1945
1946 /* Enable PLL */
afd13a1f 1947 if (is_a2(pdev))
2e5da889 1948 writel(0x80040908, &afe->afe_pll_control0);
afd13a1f
JS
1949 else if (is_b0(pdev) || is_c0(pdev))
1950 writel(0x80040A08, &afe->afe_pll_control0);
1951 else if (is_c1(pdev)) {
1952 writel(0x80000B08, &afe->afe_pll_control0);
1953 udelay(AFE_REGISTER_WRITE_DELAY);
1954 writel(0x00000B08, &afe->afe_pll_control0);
1955 udelay(AFE_REGISTER_WRITE_DELAY);
1956 writel(0x80000B08, &afe->afe_pll_control0);
1957 }
cc9203bf
DW
1958
1959 udelay(AFE_REGISTER_WRITE_DELAY);
1960
1961 /* Wait for the PLL to lock */
1962 do {
2e5da889 1963 afe_status = readl(&afe->afe_common_block_status);
cc9203bf
DW
1964 udelay(AFE_REGISTER_WRITE_DELAY);
1965 } while ((afe_status & 0x00001000) == 0);
1966
dc00c8b6 1967 if (is_a2(pdev)) {
2e5da889
DW
1968 /* Shorten SAS SNW lock time (RxLock timer value from 76
1969 * us to 50 us)
1970 */
1971 writel(0x7bcc96ad, &afe->afe_pmsn_master_control0);
cc9203bf
DW
1972 udelay(AFE_REGISTER_WRITE_DELAY);
1973 }
1974
1975 for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) {
2e5da889 1976 struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_id];
cc9203bf 1977 const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id];
afd13a1f
JS
1978 int cable_length_long =
1979 is_long_cable(phy_id, cable_selection_mask);
1980 int cable_length_medium =
1981 is_medium_cable(phy_id, cable_selection_mask);
1982
1983 if (is_a2(pdev)) {
1984 /* All defaults, except the Receive Word
1985 * Alignament/Comma Detect Enable....(0xe800)
1986 */
1987 writel(0x00004512, &xcvr->afe_xcvr_control0);
1988 udelay(AFE_REGISTER_WRITE_DELAY);
cc9203bf 1989
afd13a1f
JS
1990 writel(0x0050100F, &xcvr->afe_xcvr_control1);
1991 udelay(AFE_REGISTER_WRITE_DELAY);
1992 } else if (is_b0(pdev)) {
1993 /* Configure transmitter SSC parameters */
2e5da889 1994 writel(0x00030000, &xcvr->afe_tx_ssc_control);
cc9203bf 1995 udelay(AFE_REGISTER_WRITE_DELAY);
dc00c8b6 1996 } else if (is_c0(pdev)) {
afd13a1f
JS
1997 /* Configure transmitter SSC parameters */
1998 writel(0x00010202, &xcvr->afe_tx_ssc_control);
dbb0743a
AG
1999 udelay(AFE_REGISTER_WRITE_DELAY);
2000
2e5da889
DW
2001 /* All defaults, except the Receive Word
2002 * Alignament/Comma Detect Enable....(0xe800)
2003 */
afd13a1f 2004 writel(0x00014500, &xcvr->afe_xcvr_control0);
dbb0743a 2005 udelay(AFE_REGISTER_WRITE_DELAY);
afd13a1f
JS
2006 } else if (is_c1(pdev)) {
2007 /* Configure transmitter SSC parameters */
2008 writel(0x00010202, &xcvr->afe_tx_ssc_control);
2009 udelay(AFE_REGISTER_WRITE_DELAY);
2010
2e5da889
DW
2011 /* All defaults, except the Receive Word
2012 * Alignament/Comma Detect Enable....(0xe800)
2013 */
afd13a1f 2014 writel(0x0001C500, &xcvr->afe_xcvr_control0);
cc9203bf
DW
2015 udelay(AFE_REGISTER_WRITE_DELAY);
2016 }
2017
afd13a1f
JS
2018 /* Power up TX and RX out from power down (PWRDNTX and
2019 * PWRDNRX) & increase TX int & ext bias 20%....(0xe85c)
2e5da889 2020 */
dc00c8b6 2021 if (is_a2(pdev))
2e5da889 2022 writel(0x000003F0, &xcvr->afe_channel_control);
dc00c8b6 2023 else if (is_b0(pdev)) {
2e5da889 2024 writel(0x000003D7, &xcvr->afe_channel_control);
dbb0743a 2025 udelay(AFE_REGISTER_WRITE_DELAY);
afd13a1f 2026
2e5da889 2027 writel(0x000003D4, &xcvr->afe_channel_control);
afd13a1f 2028 } else if (is_c0(pdev)) {
2e5da889 2029 writel(0x000001E7, &xcvr->afe_channel_control);
cc9203bf 2030 udelay(AFE_REGISTER_WRITE_DELAY);
afd13a1f 2031
2e5da889 2032 writel(0x000001E4, &xcvr->afe_channel_control);
afd13a1f
JS
2033 } else if (is_c1(pdev)) {
2034 writel(cable_length_long ? 0x000002F7 : 0x000001F7,
2035 &xcvr->afe_channel_control);
2036 udelay(AFE_REGISTER_WRITE_DELAY);
2037
2038 writel(cable_length_long ? 0x000002F4 : 0x000001F4,
2039 &xcvr->afe_channel_control);
cc9203bf
DW
2040 }
2041 udelay(AFE_REGISTER_WRITE_DELAY);
2042
dc00c8b6 2043 if (is_a2(pdev)) {
cc9203bf 2044 /* Enable TX equalization (0xe824) */
2e5da889 2045 writel(0x00040000, &xcvr->afe_tx_control);
cc9203bf
DW
2046 udelay(AFE_REGISTER_WRITE_DELAY);
2047 }
2048
afd13a1f
JS
2049 if (is_a2(pdev) || is_b0(pdev))
2050 /* RDPI=0x0(RX Power On), RXOOBDETPDNC=0x0,
2051 * TPD=0x0(TX Power On), RDD=0x0(RX Detect
2052 * Enabled) ....(0xe800)
2053 */
2054 writel(0x00004100, &xcvr->afe_xcvr_control0);
2055 else if (is_c0(pdev))
2056 writel(0x00014100, &xcvr->afe_xcvr_control0);
2057 else if (is_c1(pdev))
2058 writel(0x0001C100, &xcvr->afe_xcvr_control0);
cc9203bf
DW
2059 udelay(AFE_REGISTER_WRITE_DELAY);
2060
2061 /* Leave DFE/FFE on */
dc00c8b6 2062 if (is_a2(pdev))
2e5da889 2063 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
dc00c8b6 2064 else if (is_b0(pdev)) {
2e5da889 2065 writel(0x3F11103F, &xcvr->afe_rx_ssc_control0);
cc9203bf 2066 udelay(AFE_REGISTER_WRITE_DELAY);
dbb0743a 2067 /* Enable TX equalization (0xe824) */
2e5da889 2068 writel(0x00040000, &xcvr->afe_tx_control);
afd13a1f
JS
2069 } else if (is_c0(pdev)) {
2070 writel(0x01400C0F, &xcvr->afe_rx_ssc_control1);
dbb0743a
AG
2071 udelay(AFE_REGISTER_WRITE_DELAY);
2072
2e5da889 2073 writel(0x3F6F103F, &xcvr->afe_rx_ssc_control0);
dbb0743a 2074 udelay(AFE_REGISTER_WRITE_DELAY);
afd13a1f
JS
2075
2076 /* Enable TX equalization (0xe824) */
2077 writel(0x00040000, &xcvr->afe_tx_control);
2078 } else if (is_c1(pdev)) {
2079 writel(cable_length_long ? 0x01500C0C :
2080 cable_length_medium ? 0x01400C0D : 0x02400C0D,
2081 &xcvr->afe_xcvr_control1);
2082 udelay(AFE_REGISTER_WRITE_DELAY);
2083
2084 writel(0x000003E0, &xcvr->afe_dfx_rx_control1);
2085 udelay(AFE_REGISTER_WRITE_DELAY);
2086
2087 writel(cable_length_long ? 0x33091C1F :
2088 cable_length_medium ? 0x3315181F : 0x2B17161F,
2089 &xcvr->afe_rx_ssc_control0);
2090 udelay(AFE_REGISTER_WRITE_DELAY);
dbb0743a 2091
cc9203bf 2092 /* Enable TX equalization (0xe824) */
2e5da889 2093 writel(0x00040000, &xcvr->afe_tx_control);
cc9203bf 2094 }
dbb0743a 2095
cc9203bf
DW
2096 udelay(AFE_REGISTER_WRITE_DELAY);
2097
2e5da889 2098 writel(oem_phy->afe_tx_amp_control0, &xcvr->afe_tx_amp_control0);
cc9203bf
DW
2099 udelay(AFE_REGISTER_WRITE_DELAY);
2100
2e5da889 2101 writel(oem_phy->afe_tx_amp_control1, &xcvr->afe_tx_amp_control1);
cc9203bf
DW
2102 udelay(AFE_REGISTER_WRITE_DELAY);
2103
2e5da889 2104 writel(oem_phy->afe_tx_amp_control2, &xcvr->afe_tx_amp_control2);
cc9203bf
DW
2105 udelay(AFE_REGISTER_WRITE_DELAY);
2106
2e5da889 2107 writel(oem_phy->afe_tx_amp_control3, &xcvr->afe_tx_amp_control3);
cc9203bf
DW
2108 udelay(AFE_REGISTER_WRITE_DELAY);
2109 }
2110
2111 /* Transfer control to the PEs */
2e5da889 2112 writel(0x00010f00, &afe->afe_dfx_master_control0);
cc9203bf
DW
2113 udelay(AFE_REGISTER_WRITE_DELAY);
2114}
2115
89a7301f 2116static void sci_controller_initialize_power_control(struct isci_host *ihost)
cc9203bf 2117{
d9dcb4ba 2118 sci_init_timer(&ihost->power_control.timer, power_control_timeout);
cc9203bf 2119
d9dcb4ba
DW
2120 memset(ihost->power_control.requesters, 0,
2121 sizeof(ihost->power_control.requesters));
cc9203bf 2122
d9dcb4ba
DW
2123 ihost->power_control.phys_waiting = 0;
2124 ihost->power_control.phys_granted_power = 0;
cc9203bf
DW
2125}
2126
89a7301f 2127static enum sci_status sci_controller_initialize(struct isci_host *ihost)
cc9203bf 2128{
d9dcb4ba 2129 struct sci_base_state_machine *sm = &ihost->sm;
7c78da31
DW
2130 enum sci_status result = SCI_FAILURE;
2131 unsigned long i, state, val;
cc9203bf 2132
d9dcb4ba 2133 if (ihost->sm.current_state_id != SCIC_RESET) {
14e99b4a
DW
2134 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2135 __func__, ihost->sm.current_state_id);
cc9203bf
DW
2136 return SCI_FAILURE_INVALID_STATE;
2137 }
2138
e301370a 2139 sci_change_state(sm, SCIC_INITIALIZING);
cc9203bf 2140
d9dcb4ba 2141 sci_init_timer(&ihost->phy_timer, phy_startup_timeout);
bb3dbdf6 2142
d9dcb4ba
DW
2143 ihost->next_phy_to_start = 0;
2144 ihost->phy_startup_timer_pending = false;
cc9203bf 2145
89a7301f 2146 sci_controller_initialize_power_control(ihost);
cc9203bf
DW
2147
2148 /*
2149 * There is nothing to do here for B0 since we do not have to
2150 * program the AFE registers.
2151 * / @todo The AFE settings are supposed to be correct for the B0 but
2152 * / presently they seem to be wrong. */
89a7301f 2153 sci_controller_afe_initialization(ihost);
cc9203bf 2154
cc9203bf 2155
7c78da31 2156 /* Take the hardware out of reset */
d9dcb4ba 2157 writel(0, &ihost->smu_registers->soft_reset_control);
cc9203bf 2158
7c78da31
DW
2159 /*
2160 * / @todo Provide meaningfull error code for hardware failure
2161 * result = SCI_FAILURE_CONTROLLER_HARDWARE; */
2162 for (i = 100; i >= 1; i--) {
2163 u32 status;
cc9203bf 2164
7c78da31
DW
2165 /* Loop until the hardware reports success */
2166 udelay(SCU_CONTEXT_RAM_INIT_STALL_TIME);
d9dcb4ba 2167 status = readl(&ihost->smu_registers->control_status);
cc9203bf 2168
7c78da31
DW
2169 if ((status & SCU_RAM_INIT_COMPLETED) == SCU_RAM_INIT_COMPLETED)
2170 break;
2171 }
2172 if (i == 0)
2173 goto out;
cc9203bf 2174
7c78da31
DW
2175 /*
2176 * Determine what are the actaul device capacities that the
2177 * hardware will support */
d9dcb4ba 2178 val = readl(&ihost->smu_registers->device_context_capacity);
cc9203bf 2179
7c78da31 2180 /* Record the smaller of the two capacity values */
d9dcb4ba
DW
2181 ihost->logical_port_entries = min(smu_max_ports(val), SCI_MAX_PORTS);
2182 ihost->task_context_entries = min(smu_max_task_contexts(val), SCI_MAX_IO_REQUESTS);
2183 ihost->remote_node_entries = min(smu_max_rncs(val), SCI_MAX_REMOTE_DEVICES);
cc9203bf 2184
7c78da31
DW
2185 /*
2186 * Make all PEs that are unassigned match up with the
2187 * logical ports
2188 */
d9dcb4ba 2189 for (i = 0; i < ihost->logical_port_entries; i++) {
7c78da31 2190 struct scu_port_task_scheduler_group_registers __iomem
d9dcb4ba 2191 *ptsg = &ihost->scu_registers->peg0.ptsg;
cc9203bf 2192
7c78da31 2193 writel(i, &ptsg->protocol_engine[i]);
cc9203bf
DW
2194 }
2195
2196 /* Initialize hardware PCI Relaxed ordering in DMA engines */
d9dcb4ba 2197 val = readl(&ihost->scu_registers->sdma.pdma_configuration);
7c78da31 2198 val |= SCU_PDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
d9dcb4ba 2199 writel(val, &ihost->scu_registers->sdma.pdma_configuration);
7c78da31 2200
d9dcb4ba 2201 val = readl(&ihost->scu_registers->sdma.cdma_configuration);
7c78da31 2202 val |= SCU_CDMACR_GEN_BIT(PCI_RELAXED_ORDERING_ENABLE);
d9dcb4ba 2203 writel(val, &ihost->scu_registers->sdma.cdma_configuration);
cc9203bf
DW
2204
2205 /*
2206 * Initialize the PHYs before the PORTs because the PHY registers
2207 * are accessed during the port initialization.
2208 */
7c78da31 2209 for (i = 0; i < SCI_MAX_PHYS; i++) {
89a7301f
DW
2210 result = sci_phy_initialize(&ihost->phys[i],
2211 &ihost->scu_registers->peg0.pe[i].tl,
2212 &ihost->scu_registers->peg0.pe[i].ll);
7c78da31
DW
2213 if (result != SCI_SUCCESS)
2214 goto out;
cc9203bf
DW
2215 }
2216
d9dcb4ba 2217 for (i = 0; i < ihost->logical_port_entries; i++) {
89a7301f 2218 struct isci_port *iport = &ihost->ports[i];
7c78da31 2219
89a7301f
DW
2220 iport->port_task_scheduler_registers = &ihost->scu_registers->peg0.ptsg.port[i];
2221 iport->port_pe_configuration_register = &ihost->scu_registers->peg0.ptsg.protocol_engine[0];
2222 iport->viit_registers = &ihost->scu_registers->peg0.viit[i];
cc9203bf
DW
2223 }
2224
89a7301f 2225 result = sci_port_configuration_agent_initialize(ihost, &ihost->port_agent);
cc9203bf 2226
7c78da31 2227 out:
cc9203bf
DW
2228 /* Advance the controller state machine */
2229 if (result == SCI_SUCCESS)
e301370a 2230 state = SCIC_INITIALIZED;
cc9203bf 2231 else
e301370a
EN
2232 state = SCIC_FAILED;
2233 sci_change_state(sm, state);
cc9203bf
DW
2234
2235 return result;
2236}
2237
abec912d 2238static int sci_controller_dma_alloc(struct isci_host *ihost)
cc9203bf 2239{
d9dcb4ba 2240 struct device *dev = &ihost->pdev->dev;
7c78da31 2241 size_t size;
abec912d
DW
2242 int i;
2243
2244 /* detect re-initialization */
2245 if (ihost->completion_queue)
2246 return 0;
cc9203bf 2247
7c78da31 2248 size = SCU_MAX_COMPLETION_QUEUE_ENTRIES * sizeof(u32);
abec912d
DW
2249 ihost->completion_queue = dmam_alloc_coherent(dev, size, &ihost->cq_dma,
2250 GFP_KERNEL);
d9dcb4ba 2251 if (!ihost->completion_queue)
cc9203bf
DW
2252 return -ENOMEM;
2253
d9dcb4ba 2254 size = ihost->remote_node_entries * sizeof(union scu_remote_node_context);
abec912d 2255 ihost->remote_node_context_table = dmam_alloc_coherent(dev, size, &ihost->rnc_dma,
89a7301f 2256 GFP_KERNEL);
abec912d 2257
d9dcb4ba 2258 if (!ihost->remote_node_context_table)
cc9203bf
DW
2259 return -ENOMEM;
2260
d9dcb4ba 2261 size = ihost->task_context_entries * sizeof(struct scu_task_context),
abec912d
DW
2262 ihost->task_context_table = dmam_alloc_coherent(dev, size, &ihost->tc_dma,
2263 GFP_KERNEL);
d9dcb4ba 2264 if (!ihost->task_context_table)
cc9203bf
DW
2265 return -ENOMEM;
2266
abec912d
DW
2267 size = SCI_UFI_TOTAL_SIZE;
2268 ihost->ufi_buf = dmam_alloc_coherent(dev, size, &ihost->ufi_dma, GFP_KERNEL);
2269 if (!ihost->ufi_buf)
2270 return -ENOMEM;
2271
2272 for (i = 0; i < SCI_MAX_IO_REQUESTS; i++) {
2273 struct isci_request *ireq;
2274 dma_addr_t dma;
2275
2276 ireq = dmam_alloc_coherent(dev, sizeof(*ireq), &dma, GFP_KERNEL);
2277 if (!ireq)
2278 return -ENOMEM;
2279
2280 ireq->tc = &ihost->task_context_table[i];
2281 ireq->owning_controller = ihost;
abec912d
DW
2282 ireq->request_daddr = dma;
2283 ireq->isci_host = ihost;
2284 ihost->reqs[i] = ireq;
2285 }
2286
2287 return 0;
2288}
2289
2290static int sci_controller_mem_init(struct isci_host *ihost)
2291{
2292 int err = sci_controller_dma_alloc(ihost);
cc9203bf 2293
7c78da31
DW
2294 if (err)
2295 return err;
cc9203bf 2296
abec912d
DW
2297 writel(lower_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_lower);
2298 writel(upper_32_bits(ihost->cq_dma), &ihost->smu_registers->completion_queue_upper);
2299
2300 writel(lower_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_lower);
2301 writel(upper_32_bits(ihost->rnc_dma), &ihost->smu_registers->remote_node_context_upper);
2302
2303 writel(lower_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_lower);
2304 writel(upper_32_bits(ihost->tc_dma), &ihost->smu_registers->host_task_table_upper);
2305
2306 sci_unsolicited_frame_control_construct(ihost);
2307
cc9203bf
DW
2308 /*
2309 * Inform the silicon as to the location of the UF headers and
2310 * address table.
2311 */
d9dcb4ba
DW
2312 writel(lower_32_bits(ihost->uf_control.headers.physical_address),
2313 &ihost->scu_registers->sdma.uf_header_base_address_lower);
2314 writel(upper_32_bits(ihost->uf_control.headers.physical_address),
2315 &ihost->scu_registers->sdma.uf_header_base_address_upper);
cc9203bf 2316
d9dcb4ba
DW
2317 writel(lower_32_bits(ihost->uf_control.address_table.physical_address),
2318 &ihost->scu_registers->sdma.uf_address_table_lower);
2319 writel(upper_32_bits(ihost->uf_control.address_table.physical_address),
2320 &ihost->scu_registers->sdma.uf_address_table_upper);
cc9203bf
DW
2321
2322 return 0;
2323}
2324
abec912d
DW
2325/**
2326 * isci_host_init - (re-)initialize hardware and internal (private) state
2327 * @ihost: host to init
2328 *
2329 * Any public facing objects (like asd_sas_port, and asd_sas_phys), or
2330 * one-time initialization objects like locks and waitqueues, are
2331 * not touched (they are initialized in isci_host_alloc)
2332 */
d9dcb4ba 2333int isci_host_init(struct isci_host *ihost)
6f231dda 2334{
abec912d 2335 int i, err;
6f231dda 2336 enum sci_status status;
6f231dda 2337
2396a265 2338 spin_lock_irq(&ihost->scic_lock);
abec912d 2339 status = sci_controller_construct(ihost, scu_base(ihost), smu_base(ihost));
2396a265 2340 spin_unlock_irq(&ihost->scic_lock);
6f231dda 2341 if (status != SCI_SUCCESS) {
d9dcb4ba 2342 dev_err(&ihost->pdev->dev,
89a7301f 2343 "%s: sci_controller_construct failed - status = %x\n",
6f231dda
DW
2344 __func__,
2345 status);
858d4aa7 2346 return -ENODEV;
6f231dda
DW
2347 }
2348
d9dcb4ba 2349 spin_lock_irq(&ihost->scic_lock);
89a7301f 2350 status = sci_controller_initialize(ihost);
d9dcb4ba 2351 spin_unlock_irq(&ihost->scic_lock);
6f231dda 2352 if (status != SCI_SUCCESS) {
d9dcb4ba 2353 dev_warn(&ihost->pdev->dev,
89a7301f 2354 "%s: sci_controller_initialize failed -"
6f231dda
DW
2355 " status = 0x%x\n",
2356 __func__, status);
858d4aa7 2357 return -ENODEV;
6f231dda
DW
2358 }
2359
89a7301f 2360 err = sci_controller_mem_init(ihost);
6f231dda 2361 if (err)
858d4aa7 2362 return err;
6f231dda 2363
ad4f4c1d
DW
2364 /* enable sgpio */
2365 writel(1, &ihost->scu_registers->peg0.sgpio.interface_control);
2366 for (i = 0; i < isci_gpio_count(ihost); i++)
2367 writel(SGPIO_HW_CONTROL, &ihost->scu_registers->peg0.sgpio.output_data_select[i]);
2368 writel(0, &ihost->scu_registers->peg0.sgpio.vendor_specific_code);
2369
858d4aa7 2370 return 0;
6f231dda 2371}
cc9203bf 2372
89a7301f
DW
2373void sci_controller_link_up(struct isci_host *ihost, struct isci_port *iport,
2374 struct isci_phy *iphy)
cc9203bf 2375{
d9dcb4ba 2376 switch (ihost->sm.current_state_id) {
e301370a 2377 case SCIC_STARTING:
d9dcb4ba
DW
2378 sci_del_timer(&ihost->phy_timer);
2379 ihost->phy_startup_timer_pending = false;
2380 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
89a7301f
DW
2381 iport, iphy);
2382 sci_controller_start_next_phy(ihost);
cc9203bf 2383 break;
e301370a 2384 case SCIC_READY:
d9dcb4ba 2385 ihost->port_agent.link_up_handler(ihost, &ihost->port_agent,
89a7301f 2386 iport, iphy);
cc9203bf
DW
2387 break;
2388 default:
d9dcb4ba 2389 dev_dbg(&ihost->pdev->dev,
cc9203bf 2390 "%s: SCIC Controller linkup event from phy %d in "
85280955 2391 "unexpected state %d\n", __func__, iphy->phy_index,
d9dcb4ba 2392 ihost->sm.current_state_id);
cc9203bf
DW
2393 }
2394}
2395
89a7301f
DW
2396void sci_controller_link_down(struct isci_host *ihost, struct isci_port *iport,
2397 struct isci_phy *iphy)
cc9203bf 2398{
d9dcb4ba 2399 switch (ihost->sm.current_state_id) {
e301370a
EN
2400 case SCIC_STARTING:
2401 case SCIC_READY:
d9dcb4ba 2402 ihost->port_agent.link_down_handler(ihost, &ihost->port_agent,
ffe191c9 2403 iport, iphy);
cc9203bf
DW
2404 break;
2405 default:
d9dcb4ba 2406 dev_dbg(&ihost->pdev->dev,
cc9203bf
DW
2407 "%s: SCIC Controller linkdown event from phy %d in "
2408 "unexpected state %d\n",
2409 __func__,
85280955 2410 iphy->phy_index,
d9dcb4ba 2411 ihost->sm.current_state_id);
cc9203bf
DW
2412 }
2413}
2414
eb608c3c 2415bool sci_controller_has_remote_devices_stopping(struct isci_host *ihost)
cc9203bf
DW
2416{
2417 u32 index;
2418
d9dcb4ba
DW
2419 for (index = 0; index < ihost->remote_node_entries; index++) {
2420 if ((ihost->device_table[index] != NULL) &&
2421 (ihost->device_table[index]->sm.current_state_id == SCI_DEV_STOPPING))
cc9203bf
DW
2422 return true;
2423 }
2424
2425 return false;
2426}
2427
89a7301f
DW
2428void sci_controller_remote_device_stopped(struct isci_host *ihost,
2429 struct isci_remote_device *idev)
cc9203bf 2430{
d9dcb4ba
DW
2431 if (ihost->sm.current_state_id != SCIC_STOPPING) {
2432 dev_dbg(&ihost->pdev->dev,
cc9203bf
DW
2433 "SCIC Controller 0x%p remote device stopped event "
2434 "from device 0x%p in unexpected state %d\n",
d9dcb4ba
DW
2435 ihost, idev,
2436 ihost->sm.current_state_id);
cc9203bf
DW
2437 return;
2438 }
2439
89a7301f 2440 if (!sci_controller_has_remote_devices_stopping(ihost))
eb608c3c 2441 isci_host_stop_complete(ihost);
cc9203bf
DW
2442}
2443
89a7301f 2444void sci_controller_post_request(struct isci_host *ihost, u32 request)
cc9203bf 2445{
89a7301f
DW
2446 dev_dbg(&ihost->pdev->dev, "%s[%d]: %#x\n",
2447 __func__, ihost->id, request);
cc9203bf 2448
d9dcb4ba 2449 writel(request, &ihost->smu_registers->post_context_port);
cc9203bf
DW
2450}
2451
89a7301f 2452struct isci_request *sci_request_by_tag(struct isci_host *ihost, u16 io_tag)
cc9203bf
DW
2453{
2454 u16 task_index;
2455 u16 task_sequence;
2456
dd047c8e 2457 task_index = ISCI_TAG_TCI(io_tag);
cc9203bf 2458
d9dcb4ba
DW
2459 if (task_index < ihost->task_context_entries) {
2460 struct isci_request *ireq = ihost->reqs[task_index];
db056250
DW
2461
2462 if (test_bit(IREQ_ACTIVE, &ireq->flags)) {
dd047c8e 2463 task_sequence = ISCI_TAG_SEQ(io_tag);
cc9203bf 2464
d9dcb4ba 2465 if (task_sequence == ihost->io_request_sequence[task_index])
5076a1a9 2466 return ireq;
cc9203bf
DW
2467 }
2468 }
2469
2470 return NULL;
2471}
2472
2473/**
2474 * This method allocates remote node index and the reserves the remote node
2475 * context space for use. This method can fail if there are no more remote
2476 * node index available.
2477 * @scic: This is the controller object which contains the set of
2478 * free remote node ids
2479 * @sci_dev: This is the device object which is requesting the a remote node
2480 * id
2481 * @node_id: This is the remote node id that is assinged to the device if one
2482 * is available
2483 *
2484 * enum sci_status SCI_FAILURE_OUT_OF_RESOURCES if there are no available remote
2485 * node index available.
2486 */
89a7301f
DW
2487enum sci_status sci_controller_allocate_remote_node_context(struct isci_host *ihost,
2488 struct isci_remote_device *idev,
2489 u16 *node_id)
cc9203bf
DW
2490{
2491 u16 node_index;
89a7301f 2492 u32 remote_node_count = sci_remote_device_node_count(idev);
cc9203bf 2493
89a7301f 2494 node_index = sci_remote_node_table_allocate_remote_node(
d9dcb4ba 2495 &ihost->available_remote_nodes, remote_node_count
cc9203bf
DW
2496 );
2497
2498 if (node_index != SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX) {
d9dcb4ba 2499 ihost->device_table[node_index] = idev;
cc9203bf
DW
2500
2501 *node_id = node_index;
2502
2503 return SCI_SUCCESS;
2504 }
2505
2506 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
2507}
2508
89a7301f
DW
2509void sci_controller_free_remote_node_context(struct isci_host *ihost,
2510 struct isci_remote_device *idev,
2511 u16 node_id)
cc9203bf 2512{
89a7301f 2513 u32 remote_node_count = sci_remote_device_node_count(idev);
cc9203bf 2514
d9dcb4ba
DW
2515 if (ihost->device_table[node_id] == idev) {
2516 ihost->device_table[node_id] = NULL;
cc9203bf 2517
89a7301f 2518 sci_remote_node_table_release_remote_node_index(
d9dcb4ba 2519 &ihost->available_remote_nodes, remote_node_count, node_id
cc9203bf
DW
2520 );
2521 }
2522}
2523
89a7301f
DW
2524void sci_controller_copy_sata_response(void *response_buffer,
2525 void *frame_header,
2526 void *frame_buffer)
cc9203bf 2527{
89a7301f 2528 /* XXX type safety? */
cc9203bf
DW
2529 memcpy(response_buffer, frame_header, sizeof(u32));
2530
2531 memcpy(response_buffer + sizeof(u32),
2532 frame_buffer,
2533 sizeof(struct dev_to_host_fis) - sizeof(u32));
2534}
2535
89a7301f 2536void sci_controller_release_frame(struct isci_host *ihost, u32 frame_index)
cc9203bf 2537{
89a7301f 2538 if (sci_unsolicited_frame_control_release_frame(&ihost->uf_control, frame_index))
d9dcb4ba
DW
2539 writel(ihost->uf_control.get,
2540 &ihost->scu_registers->sdma.unsolicited_frame_get_pointer);
cc9203bf
DW
2541}
2542
312e0c24
DW
2543void isci_tci_free(struct isci_host *ihost, u16 tci)
2544{
2545 u16 tail = ihost->tci_tail & (SCI_MAX_IO_REQUESTS-1);
2546
2547 ihost->tci_pool[tail] = tci;
2548 ihost->tci_tail = tail + 1;
2549}
2550
2551static u16 isci_tci_alloc(struct isci_host *ihost)
2552{
2553 u16 head = ihost->tci_head & (SCI_MAX_IO_REQUESTS-1);
2554 u16 tci = ihost->tci_pool[head];
2555
2556 ihost->tci_head = head + 1;
2557 return tci;
2558}
2559
2560static u16 isci_tci_space(struct isci_host *ihost)
2561{
2562 return CIRC_SPACE(ihost->tci_head, ihost->tci_tail, SCI_MAX_IO_REQUESTS);
2563}
2564
2565u16 isci_alloc_tag(struct isci_host *ihost)
2566{
2567 if (isci_tci_space(ihost)) {
2568 u16 tci = isci_tci_alloc(ihost);
d9dcb4ba 2569 u8 seq = ihost->io_request_sequence[tci];
312e0c24
DW
2570
2571 return ISCI_TAG(seq, tci);
2572 }
2573
2574 return SCI_CONTROLLER_INVALID_IO_TAG;
2575}
2576
2577enum sci_status isci_free_tag(struct isci_host *ihost, u16 io_tag)
2578{
312e0c24
DW
2579 u16 tci = ISCI_TAG_TCI(io_tag);
2580 u16 seq = ISCI_TAG_SEQ(io_tag);
2581
2582 /* prevent tail from passing head */
2583 if (isci_tci_active(ihost) == 0)
2584 return SCI_FAILURE_INVALID_IO_TAG;
2585
d9dcb4ba
DW
2586 if (seq == ihost->io_request_sequence[tci]) {
2587 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1);
312e0c24
DW
2588
2589 isci_tci_free(ihost, tci);
2590
2591 return SCI_SUCCESS;
2592 }
2593 return SCI_FAILURE_INVALID_IO_TAG;
2594}
2595
89a7301f
DW
2596enum sci_status sci_controller_start_io(struct isci_host *ihost,
2597 struct isci_remote_device *idev,
2598 struct isci_request *ireq)
cc9203bf
DW
2599{
2600 enum sci_status status;
2601
d9dcb4ba 2602 if (ihost->sm.current_state_id != SCIC_READY) {
14e99b4a
DW
2603 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2604 __func__, ihost->sm.current_state_id);
cc9203bf
DW
2605 return SCI_FAILURE_INVALID_STATE;
2606 }
2607
89a7301f 2608 status = sci_remote_device_start_io(ihost, idev, ireq);
cc9203bf
DW
2609 if (status != SCI_SUCCESS)
2610 return status;
2611
5076a1a9 2612 set_bit(IREQ_ACTIVE, &ireq->flags);
34a99158 2613 sci_controller_post_request(ihost, ireq->post_context);
cc9203bf
DW
2614 return SCI_SUCCESS;
2615}
2616
89a7301f
DW
2617enum sci_status sci_controller_terminate_request(struct isci_host *ihost,
2618 struct isci_remote_device *idev,
2619 struct isci_request *ireq)
cc9203bf 2620{
89a7301f
DW
2621 /* terminate an ongoing (i.e. started) core IO request. This does not
2622 * abort the IO request at the target, but rather removes the IO
2623 * request from the host controller.
2624 */
cc9203bf
DW
2625 enum sci_status status;
2626
d9dcb4ba 2627 if (ihost->sm.current_state_id != SCIC_READY) {
14e99b4a
DW
2628 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2629 __func__, ihost->sm.current_state_id);
cc9203bf
DW
2630 return SCI_FAILURE_INVALID_STATE;
2631 }
89a7301f 2632 status = sci_io_request_terminate(ireq);
14aaa9f0
JS
2633
2634 dev_dbg(&ihost->pdev->dev, "%s: status=%d; ireq=%p; flags=%lx\n",
2635 __func__, status, ireq, ireq->flags);
2636
726980d5
JS
2637 if ((status == SCI_SUCCESS) &&
2638 !test_bit(IREQ_PENDING_ABORT, &ireq->flags) &&
2639 !test_and_set_bit(IREQ_TC_ABORT_POSTED, &ireq->flags)) {
2640 /* Utilize the original post context command and or in the
2641 * POST_TC_ABORT request sub-type.
2642 */
2643 sci_controller_post_request(
2644 ihost, ireq->post_context |
2645 SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT);
2646 }
2647 return status;
cc9203bf
DW
2648}
2649
2650/**
89a7301f 2651 * sci_controller_complete_io() - This method will perform core specific
cc9203bf
DW
2652 * completion operations for an IO request. After this method is invoked,
2653 * the user should consider the IO request as invalid until it is properly
2654 * reused (i.e. re-constructed).
89a7301f 2655 * @ihost: The handle to the controller object for which to complete the
cc9203bf 2656 * IO request.
89a7301f 2657 * @idev: The handle to the remote device object for which to complete
cc9203bf 2658 * the IO request.
89a7301f 2659 * @ireq: the handle to the io request object to complete.
cc9203bf 2660 */
89a7301f
DW
2661enum sci_status sci_controller_complete_io(struct isci_host *ihost,
2662 struct isci_remote_device *idev,
2663 struct isci_request *ireq)
cc9203bf
DW
2664{
2665 enum sci_status status;
2666 u16 index;
2667
d9dcb4ba 2668 switch (ihost->sm.current_state_id) {
e301370a 2669 case SCIC_STOPPING:
cc9203bf
DW
2670 /* XXX: Implement this function */
2671 return SCI_FAILURE;
e301370a 2672 case SCIC_READY:
89a7301f 2673 status = sci_remote_device_complete_io(ihost, idev, ireq);
cc9203bf
DW
2674 if (status != SCI_SUCCESS)
2675 return status;
2676
5076a1a9
DW
2677 index = ISCI_TAG_TCI(ireq->io_tag);
2678 clear_bit(IREQ_ACTIVE, &ireq->flags);
cc9203bf
DW
2679 return SCI_SUCCESS;
2680 default:
14e99b4a
DW
2681 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2682 __func__, ihost->sm.current_state_id);
cc9203bf
DW
2683 return SCI_FAILURE_INVALID_STATE;
2684 }
2685
2686}
2687
89a7301f 2688enum sci_status sci_controller_continue_io(struct isci_request *ireq)
cc9203bf 2689{
d9dcb4ba 2690 struct isci_host *ihost = ireq->owning_controller;
cc9203bf 2691
d9dcb4ba 2692 if (ihost->sm.current_state_id != SCIC_READY) {
14e99b4a
DW
2693 dev_warn(&ihost->pdev->dev, "%s invalid state: %d\n",
2694 __func__, ihost->sm.current_state_id);
cc9203bf
DW
2695 return SCI_FAILURE_INVALID_STATE;
2696 }
2697
5076a1a9 2698 set_bit(IREQ_ACTIVE, &ireq->flags);
34a99158 2699 sci_controller_post_request(ihost, ireq->post_context);
cc9203bf
DW
2700 return SCI_SUCCESS;
2701}
2702
2703/**
89a7301f 2704 * sci_controller_start_task() - This method is called by the SCIC user to
cc9203bf
DW
2705 * send/start a framework task management request.
2706 * @controller: the handle to the controller object for which to start the task
2707 * management request.
2708 * @remote_device: the handle to the remote device object for which to start
2709 * the task management request.
2710 * @task_request: the handle to the task request object to start.
cc9203bf 2711 */
89a7301f
DW
2712enum sci_task_status sci_controller_start_task(struct isci_host *ihost,
2713 struct isci_remote_device *idev,
2714 struct isci_request *ireq)
cc9203bf
DW
2715{
2716 enum sci_status status;
2717
d9dcb4ba
DW
2718 if (ihost->sm.current_state_id != SCIC_READY) {
2719 dev_warn(&ihost->pdev->dev,
cc9203bf
DW
2720 "%s: SCIC Controller starting task from invalid "
2721 "state\n",
2722 __func__);
2723 return SCI_TASK_FAILURE_INVALID_STATE;
2724 }
2725
89a7301f 2726 status = sci_remote_device_start_task(ihost, idev, ireq);
cc9203bf
DW
2727 switch (status) {
2728 case SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS:
db056250 2729 set_bit(IREQ_ACTIVE, &ireq->flags);
cc9203bf
DW
2730
2731 /*
2732 * We will let framework know this task request started successfully,
2733 * although core is still woring on starting the request (to post tc when
2734 * RNC is resumed.)
2735 */
2736 return SCI_SUCCESS;
2737 case SCI_SUCCESS:
db056250 2738 set_bit(IREQ_ACTIVE, &ireq->flags);
34a99158 2739 sci_controller_post_request(ihost, ireq->post_context);
cc9203bf
DW
2740 break;
2741 default:
2742 break;
2743 }
2744
2745 return status;
2746}
ad4f4c1d
DW
2747
2748static int sci_write_gpio_tx_gp(struct isci_host *ihost, u8 reg_index, u8 reg_count, u8 *write_data)
2749{
2750 int d;
2751
2752 /* no support for TX_GP_CFG */
2753 if (reg_index == 0)
2754 return -EINVAL;
2755
2756 for (d = 0; d < isci_gpio_count(ihost); d++) {
2757 u32 val = 0x444; /* all ODx.n clear */
2758 int i;
2759
2760 for (i = 0; i < 3; i++) {
2761 int bit = (i << 2) + 2;
2762
2763 bit = try_test_sas_gpio_gp_bit(to_sas_gpio_od(d, i),
2764 write_data, reg_index,
2765 reg_count);
2766 if (bit < 0)
2767 break;
2768
2769 /* if od is set, clear the 'invert' bit */
2770 val &= ~(bit << ((i << 2) + 2));
2771 }
2772
2773 if (i < 3)
2774 break;
2775 writel(val, &ihost->scu_registers->peg0.sgpio.output_data_select[d]);
2776 }
2777
2778 /* unless reg_index is > 1, we should always be able to write at
2779 * least one register
2780 */
2781 return d > 0;
2782}
2783
2784int isci_gpio_write(struct sas_ha_struct *sas_ha, u8 reg_type, u8 reg_index,
2785 u8 reg_count, u8 *write_data)
2786{
2787 struct isci_host *ihost = sas_ha->lldd_ha;
2788 int written;
2789
2790 switch (reg_type) {
2791 case SAS_GPIO_REG_TX_GP:
2792 written = sci_write_gpio_tx_gp(ihost, reg_index, reg_count, write_data);
2793 break;
2794 default:
2795 written = -EINVAL;
2796 }
2797
2798 return written;
2799}
This page took 0.248156 seconds and 5 git commands to generate.