isci: unify phy reset handlers
[deliverable/linux.git] / drivers / scsi / isci / phy.c
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 */
55
56 #include "isci.h"
57 #include "host.h"
58 #include "phy.h"
59 #include "scu_event_codes.h"
60 #include "timers.h"
61 #include "probe_roms.h"
62
63 /* Maximum arbitration wait time in micro-seconds */
64 #define SCIC_SDS_PHY_MAX_ARBITRATION_WAIT_TIME (700)
65
66 enum sas_linkrate sci_phy_linkrate(struct scic_sds_phy *sci_phy)
67 {
68 return sci_phy->max_negotiated_speed;
69 }
70
71 /*
72 * *****************************************************************************
73 * * SCIC SDS PHY Internal Methods
74 * ***************************************************************************** */
75
76 /**
77 * This method will initialize the phy transport layer registers
78 * @sci_phy:
79 * @transport_layer_registers
80 *
81 * enum sci_status
82 */
83 static enum sci_status scic_sds_phy_transport_layer_initialization(
84 struct scic_sds_phy *sci_phy,
85 struct scu_transport_layer_registers __iomem *transport_layer_registers)
86 {
87 u32 tl_control;
88
89 sci_phy->transport_layer_registers = transport_layer_registers;
90
91 writel(SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX,
92 &sci_phy->transport_layer_registers->stp_rni);
93
94 /*
95 * Hardware team recommends that we enable the STP prefetch for all
96 * transports
97 */
98 tl_control = readl(&sci_phy->transport_layer_registers->control);
99 tl_control |= SCU_TLCR_GEN_BIT(STP_WRITE_DATA_PREFETCH);
100 writel(tl_control, &sci_phy->transport_layer_registers->control);
101
102 return SCI_SUCCESS;
103 }
104
105 /**
106 * This method will initialize the phy link layer registers
107 * @sci_phy:
108 * @link_layer_registers:
109 *
110 * enum sci_status
111 */
112 static enum sci_status
113 scic_sds_phy_link_layer_initialization(struct scic_sds_phy *sci_phy,
114 struct scu_link_layer_registers __iomem *link_layer_registers)
115 {
116 struct scic_sds_controller *scic =
117 sci_phy->owning_port->owning_controller;
118 int phy_idx = sci_phy->phy_index;
119 struct sci_phy_user_params *phy_user =
120 &scic->user_parameters.sds1.phys[phy_idx];
121 struct sci_phy_oem_params *phy_oem =
122 &scic->oem_parameters.sds1.phys[phy_idx];
123 u32 phy_configuration;
124 struct scic_phy_cap phy_cap;
125 u32 parity_check = 0;
126 u32 parity_count = 0;
127 u32 llctl, link_rate;
128 u32 clksm_value = 0;
129
130 sci_phy->link_layer_registers = link_layer_registers;
131
132 /* Set our IDENTIFY frame data */
133 #define SCI_END_DEVICE 0x01
134
135 writel(SCU_SAS_TIID_GEN_BIT(SMP_INITIATOR) |
136 SCU_SAS_TIID_GEN_BIT(SSP_INITIATOR) |
137 SCU_SAS_TIID_GEN_BIT(STP_INITIATOR) |
138 SCU_SAS_TIID_GEN_BIT(DA_SATA_HOST) |
139 SCU_SAS_TIID_GEN_VAL(DEVICE_TYPE, SCI_END_DEVICE),
140 &sci_phy->link_layer_registers->transmit_identification);
141
142 /* Write the device SAS Address */
143 writel(0xFEDCBA98,
144 &sci_phy->link_layer_registers->sas_device_name_high);
145 writel(phy_idx, &sci_phy->link_layer_registers->sas_device_name_low);
146
147 /* Write the source SAS Address */
148 writel(phy_oem->sas_address.high,
149 &sci_phy->link_layer_registers->source_sas_address_high);
150 writel(phy_oem->sas_address.low,
151 &sci_phy->link_layer_registers->source_sas_address_low);
152
153 /* Clear and Set the PHY Identifier */
154 writel(0, &sci_phy->link_layer_registers->identify_frame_phy_id);
155 writel(SCU_SAS_TIPID_GEN_VALUE(ID, phy_idx),
156 &sci_phy->link_layer_registers->identify_frame_phy_id);
157
158 /* Change the initial state of the phy configuration register */
159 phy_configuration =
160 readl(&sci_phy->link_layer_registers->phy_configuration);
161
162 /* Hold OOB state machine in reset */
163 phy_configuration |= SCU_SAS_PCFG_GEN_BIT(OOB_RESET);
164 writel(phy_configuration,
165 &sci_phy->link_layer_registers->phy_configuration);
166
167 /* Configure the SNW capabilities */
168 phy_cap.all = 0;
169 phy_cap.start = 1;
170 phy_cap.gen3_no_ssc = 1;
171 phy_cap.gen2_no_ssc = 1;
172 phy_cap.gen1_no_ssc = 1;
173 if (scic->oem_parameters.sds1.controller.do_enable_ssc == true) {
174 phy_cap.gen3_ssc = 1;
175 phy_cap.gen2_ssc = 1;
176 phy_cap.gen1_ssc = 1;
177 }
178
179 /*
180 * The SAS specification indicates that the phy_capabilities that
181 * are transmitted shall have an even parity. Calculate the parity. */
182 parity_check = phy_cap.all;
183 while (parity_check != 0) {
184 if (parity_check & 0x1)
185 parity_count++;
186 parity_check >>= 1;
187 }
188
189 /*
190 * If parity indicates there are an odd number of bits set, then
191 * set the parity bit to 1 in the phy capabilities. */
192 if ((parity_count % 2) != 0)
193 phy_cap.parity = 1;
194
195 writel(phy_cap.all, &sci_phy->link_layer_registers->phy_capabilities);
196
197 /* Set the enable spinup period but disable the ability to send
198 * notify enable spinup
199 */
200 writel(SCU_ENSPINUP_GEN_VAL(COUNT,
201 phy_user->notify_enable_spin_up_insertion_frequency),
202 &sci_phy->link_layer_registers->notify_enable_spinup_control);
203
204 /* Write the ALIGN Insertion Ferequency for connected phy and
205 * inpendent of connected state
206 */
207 clksm_value = SCU_ALIGN_INSERTION_FREQUENCY_GEN_VAL(CONNECTED,
208 phy_user->in_connection_align_insertion_frequency);
209
210 clksm_value |= SCU_ALIGN_INSERTION_FREQUENCY_GEN_VAL(GENERAL,
211 phy_user->align_insertion_frequency);
212
213 writel(clksm_value, &sci_phy->link_layer_registers->clock_skew_management);
214
215 /* @todo Provide a way to write this register correctly */
216 writel(0x02108421,
217 &sci_phy->link_layer_registers->afe_lookup_table_control);
218
219 llctl = SCU_SAS_LLCTL_GEN_VAL(NO_OUTBOUND_TASK_TIMEOUT,
220 (u8)scic->user_parameters.sds1.no_outbound_task_timeout);
221
222 switch(phy_user->max_speed_generation) {
223 case SCIC_SDS_PARM_GEN3_SPEED:
224 link_rate = SCU_SAS_LINK_LAYER_CONTROL_MAX_LINK_RATE_GEN3;
225 break;
226 case SCIC_SDS_PARM_GEN2_SPEED:
227 link_rate = SCU_SAS_LINK_LAYER_CONTROL_MAX_LINK_RATE_GEN2;
228 break;
229 default:
230 link_rate = SCU_SAS_LINK_LAYER_CONTROL_MAX_LINK_RATE_GEN1;
231 break;
232 }
233 llctl |= SCU_SAS_LLCTL_GEN_VAL(MAX_LINK_RATE, link_rate);
234 writel(llctl, &sci_phy->link_layer_registers->link_layer_control);
235
236 if (is_a0() || is_a2()) {
237 /* Program the max ARB time for the PHY to 700us so we inter-operate with
238 * the PMC expander which shuts down PHYs if the expander PHY generates too
239 * many breaks. This time value will guarantee that the initiator PHY will
240 * generate the break.
241 */
242 writel(SCIC_SDS_PHY_MAX_ARBITRATION_WAIT_TIME,
243 &sci_phy->link_layer_registers->maximum_arbitration_wait_timer_timeout);
244 }
245
246 /*
247 * Set the link layer hang detection to 500ms (0x1F4) from its default
248 * value of 128ms. Max value is 511 ms.
249 */
250 writel(0x1F4, &sci_phy->link_layer_registers->link_layer_hang_detection_timeout);
251
252 /* We can exit the initial state to the stopped state */
253 sci_base_state_machine_change_state(&sci_phy->state_machine,
254 SCI_BASE_PHY_STATE_STOPPED);
255
256 return SCI_SUCCESS;
257 }
258
259 /**
260 * This function will handle the sata SIGNATURE FIS timeout condition. It will
261 * restart the starting substate machine since we dont know what has actually
262 * happening.
263 */
264 static void scic_sds_phy_sata_timeout(void *phy)
265 {
266 struct scic_sds_phy *sci_phy = phy;
267
268 dev_dbg(sciphy_to_dev(sci_phy),
269 "%s: SCIC SDS Phy 0x%p did not receive signature fis before "
270 "timeout.\n",
271 __func__,
272 sci_phy);
273
274 sci_base_state_machine_change_state(&sci_phy->state_machine,
275 SCI_BASE_PHY_STATE_STARTING);
276 }
277
278 /**
279 * This method returns the port currently containing this phy. If the phy is
280 * currently contained by the dummy port, then the phy is considered to not
281 * be part of a port.
282 * @sci_phy: This parameter specifies the phy for which to retrieve the
283 * containing port.
284 *
285 * This method returns a handle to a port that contains the supplied phy.
286 * NULL This value is returned if the phy is not part of a real
287 * port (i.e. it's contained in the dummy port). !NULL All other
288 * values indicate a handle/pointer to the port containing the phy.
289 */
290 struct scic_sds_port *scic_sds_phy_get_port(
291 struct scic_sds_phy *sci_phy)
292 {
293 if (scic_sds_port_get_index(sci_phy->owning_port) == SCIC_SDS_DUMMY_PORT)
294 return NULL;
295
296 return sci_phy->owning_port;
297 }
298
299 /**
300 * This method will assign a port to the phy object.
301 * @out]: sci_phy This parameter specifies the phy for which to assign a port
302 * object.
303 *
304 *
305 */
306 void scic_sds_phy_set_port(
307 struct scic_sds_phy *sci_phy,
308 struct scic_sds_port *sci_port)
309 {
310 sci_phy->owning_port = sci_port;
311
312 if (sci_phy->bcn_received_while_port_unassigned) {
313 sci_phy->bcn_received_while_port_unassigned = false;
314 scic_sds_port_broadcast_change_received(sci_phy->owning_port, sci_phy);
315 }
316 }
317
318 /**
319 * This method will initialize the constructed phy
320 * @sci_phy:
321 * @link_layer_registers:
322 *
323 * enum sci_status
324 */
325 enum sci_status scic_sds_phy_initialize(
326 struct scic_sds_phy *sci_phy,
327 struct scu_transport_layer_registers __iomem *transport_layer_registers,
328 struct scu_link_layer_registers __iomem *link_layer_registers)
329 {
330 struct scic_sds_controller *scic = scic_sds_phy_get_controller(sci_phy);
331 struct isci_host *ihost = scic_to_ihost(scic);
332
333 /* Create the SIGNATURE FIS Timeout timer for this phy */
334 sci_phy->sata_timeout_timer =
335 isci_timer_create(
336 ihost,
337 sci_phy,
338 scic_sds_phy_sata_timeout);
339
340 /* Perfrom the initialization of the TL hardware */
341 scic_sds_phy_transport_layer_initialization(
342 sci_phy,
343 transport_layer_registers);
344
345 /* Perofrm the initialization of the PE hardware */
346 scic_sds_phy_link_layer_initialization(sci_phy, link_layer_registers);
347
348 /*
349 * There is nothing that needs to be done in this state just
350 * transition to the stopped state. */
351 sci_base_state_machine_change_state(&sci_phy->state_machine,
352 SCI_BASE_PHY_STATE_STOPPED);
353
354 return SCI_SUCCESS;
355 }
356
357 /**
358 * This method assigns the direct attached device ID for this phy.
359 *
360 * @sci_phy The phy for which the direct attached device id is to
361 * be assigned.
362 * @device_id The direct attached device ID to assign to the phy.
363 * This will either be the RNi for the device or an invalid RNi if there
364 * is no current device assigned to the phy.
365 */
366 void scic_sds_phy_setup_transport(
367 struct scic_sds_phy *sci_phy,
368 u32 device_id)
369 {
370 u32 tl_control;
371
372 writel(device_id, &sci_phy->transport_layer_registers->stp_rni);
373
374 /*
375 * The read should guarantee that the first write gets posted
376 * before the next write
377 */
378 tl_control = readl(&sci_phy->transport_layer_registers->control);
379 tl_control |= SCU_TLCR_GEN_BIT(CLEAR_TCI_NCQ_MAPPING_TABLE);
380 writel(tl_control, &sci_phy->transport_layer_registers->control);
381 }
382
383 /**
384 *
385 * @sci_phy: The phy object to be suspended.
386 *
387 * This function will perform the register reads/writes to suspend the SCU
388 * hardware protocol engine. none
389 */
390 static void scic_sds_phy_suspend(
391 struct scic_sds_phy *sci_phy)
392 {
393 u32 scu_sas_pcfg_value;
394
395 scu_sas_pcfg_value =
396 readl(&sci_phy->link_layer_registers->phy_configuration);
397 scu_sas_pcfg_value |= SCU_SAS_PCFG_GEN_BIT(SUSPEND_PROTOCOL_ENGINE);
398 writel(scu_sas_pcfg_value,
399 &sci_phy->link_layer_registers->phy_configuration);
400
401 scic_sds_phy_setup_transport(
402 sci_phy,
403 SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX);
404 }
405
406 void scic_sds_phy_resume(struct scic_sds_phy *sci_phy)
407 {
408 u32 scu_sas_pcfg_value;
409
410 scu_sas_pcfg_value =
411 readl(&sci_phy->link_layer_registers->phy_configuration);
412 scu_sas_pcfg_value &= ~SCU_SAS_PCFG_GEN_BIT(SUSPEND_PROTOCOL_ENGINE);
413 writel(scu_sas_pcfg_value,
414 &sci_phy->link_layer_registers->phy_configuration);
415 }
416
417 void scic_sds_phy_get_sas_address(struct scic_sds_phy *sci_phy,
418 struct sci_sas_address *sas_address)
419 {
420 sas_address->high = readl(&sci_phy->link_layer_registers->source_sas_address_high);
421 sas_address->low = readl(&sci_phy->link_layer_registers->source_sas_address_low);
422 }
423
424 void scic_sds_phy_get_attached_sas_address(struct scic_sds_phy *sci_phy,
425 struct sci_sas_address *sas_address)
426 {
427 struct sas_identify_frame *iaf;
428 struct isci_phy *iphy = sci_phy_to_iphy(sci_phy);
429
430 iaf = &iphy->frame_rcvd.iaf;
431 memcpy(sas_address, iaf->sas_addr, SAS_ADDR_SIZE);
432 }
433
434 void scic_sds_phy_get_protocols(struct scic_sds_phy *sci_phy,
435 struct scic_phy_proto *protocols)
436 {
437 protocols->all =
438 (u16)(readl(&sci_phy->
439 link_layer_registers->transmit_identification) &
440 0x0000FFFF);
441 }
442
443 enum sci_status scic_sds_phy_start(struct scic_sds_phy *sci_phy)
444 {
445 struct scic_sds_controller *scic = sci_phy->owning_port->owning_controller;
446 enum scic_sds_phy_states state = sci_phy->state_machine.current_state_id;
447 struct isci_host *ihost = scic_to_ihost(scic);
448
449 if (state != SCI_BASE_PHY_STATE_STOPPED) {
450 dev_dbg(sciphy_to_dev(sci_phy),
451 "%s: in wrong state: %d\n", __func__, state);
452 return SCI_FAILURE_INVALID_STATE;
453 }
454
455 /* Create the SIGNATURE FIS Timeout timer for this phy */
456 sci_phy->sata_timeout_timer = isci_timer_create(ihost, sci_phy,
457 scic_sds_phy_sata_timeout);
458
459 if (sci_phy->sata_timeout_timer)
460 sci_base_state_machine_change_state(&sci_phy->state_machine,
461 SCI_BASE_PHY_STATE_STARTING);
462
463 return SCI_SUCCESS;
464 }
465
466 enum sci_status scic_sds_phy_stop(struct scic_sds_phy *sci_phy)
467 {
468 enum scic_sds_phy_states state = sci_phy->state_machine.current_state_id;
469
470 switch (state) {
471 case SCIC_SDS_PHY_STARTING_SUBSTATE_INITIAL:
472 case SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_OSSP_EN:
473 case SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_SPEED_EN:
474 case SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_POWER:
475 case SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER:
476 case SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN:
477 case SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN:
478 case SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF:
479 case SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL:
480 case SCI_BASE_PHY_STATE_READY:
481 break;
482 default:
483 dev_dbg(sciphy_to_dev(sci_phy),
484 "%s: in wrong state: %d\n", __func__, state);
485 return SCI_FAILURE_INVALID_STATE;
486 }
487
488 sci_base_state_machine_change_state(&sci_phy->state_machine,
489 SCI_BASE_PHY_STATE_STOPPED);
490 return SCI_SUCCESS;
491 }
492
493 enum sci_status scic_sds_phy_reset(struct scic_sds_phy *sci_phy)
494 {
495 enum scic_sds_phy_states state = sci_phy->state_machine.current_state_id;
496
497 if (state != SCI_BASE_PHY_STATE_READY) {
498 dev_dbg(sciphy_to_dev(sci_phy),
499 "%s: in wrong state: %d\n", __func__, state);
500 return SCI_FAILURE_INVALID_STATE;
501 }
502
503 sci_base_state_machine_change_state(&sci_phy->state_machine,
504 SCI_BASE_PHY_STATE_RESETTING);
505 return SCI_SUCCESS;
506 }
507
508 /**
509 * This method will process the event code received.
510 * @sci_phy:
511 * @event_code:
512 *
513 * enum sci_status
514 */
515 enum sci_status scic_sds_phy_event_handler(
516 struct scic_sds_phy *sci_phy,
517 u32 event_code)
518 {
519 return sci_phy->state_handlers->event_handler(sci_phy, event_code);
520 }
521
522 /**
523 * This method will process the frame index received.
524 * @sci_phy:
525 * @frame_index:
526 *
527 * enum sci_status
528 */
529 enum sci_status scic_sds_phy_frame_handler(
530 struct scic_sds_phy *sci_phy,
531 u32 frame_index)
532 {
533 return sci_phy->state_handlers->frame_handler(sci_phy, frame_index);
534 }
535
536 /**
537 * This method will give the phy permission to consume power
538 * @sci_phy:
539 *
540 * enum sci_status
541 */
542 enum sci_status scic_sds_phy_consume_power_handler(
543 struct scic_sds_phy *sci_phy)
544 {
545 return sci_phy->state_handlers->consume_power_handler(sci_phy);
546 }
547
548 /*
549 * *****************************************************************************
550 * * SCIC SDS PHY HELPER FUNCTIONS
551 * ***************************************************************************** */
552
553
554 /**
555 *
556 * @sci_phy: The phy object that received SAS PHY DETECTED.
557 *
558 * This method continues the link training for the phy as if it were a SAS PHY
559 * instead of a SATA PHY. This is done because the completion queue had a SAS
560 * PHY DETECTED event when the state machine was expecting a SATA PHY event.
561 * none
562 */
563 static void scic_sds_phy_start_sas_link_training(
564 struct scic_sds_phy *sci_phy)
565 {
566 u32 phy_control;
567
568 phy_control =
569 readl(&sci_phy->link_layer_registers->phy_configuration);
570 phy_control |= SCU_SAS_PCFG_GEN_BIT(SATA_SPINUP_HOLD);
571 writel(phy_control,
572 &sci_phy->link_layer_registers->phy_configuration);
573
574 sci_base_state_machine_change_state(
575 &sci_phy->state_machine,
576 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_SPEED_EN
577 );
578
579 sci_phy->protocol = SCIC_SDS_PHY_PROTOCOL_SAS;
580 }
581
582 /**
583 *
584 * @sci_phy: The phy object that received a SATA SPINUP HOLD event
585 *
586 * This method continues the link training for the phy as if it were a SATA PHY
587 * instead of a SAS PHY. This is done because the completion queue had a SATA
588 * SPINUP HOLD event when the state machine was expecting a SAS PHY event. none
589 */
590 static void scic_sds_phy_start_sata_link_training(
591 struct scic_sds_phy *sci_phy)
592 {
593 sci_base_state_machine_change_state(
594 &sci_phy->state_machine,
595 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER
596 );
597
598 sci_phy->protocol = SCIC_SDS_PHY_PROTOCOL_SATA;
599 }
600
601 /**
602 * scic_sds_phy_complete_link_training - perform processing common to
603 * all protocols upon completion of link training.
604 * @sci_phy: This parameter specifies the phy object for which link training
605 * has completed.
606 * @max_link_rate: This parameter specifies the maximum link rate to be
607 * associated with this phy.
608 * @next_state: This parameter specifies the next state for the phy's starting
609 * sub-state machine.
610 *
611 */
612 static void scic_sds_phy_complete_link_training(
613 struct scic_sds_phy *sci_phy,
614 enum sas_linkrate max_link_rate,
615 u32 next_state)
616 {
617 sci_phy->max_negotiated_speed = max_link_rate;
618
619 sci_base_state_machine_change_state(&sci_phy->state_machine,
620 next_state);
621 }
622
623 static void scic_sds_phy_restart_starting_state(
624 struct scic_sds_phy *sci_phy)
625 {
626 /* Re-enter the base state machine starting state */
627 sci_base_state_machine_change_state(&sci_phy->state_machine,
628 SCI_BASE_PHY_STATE_STARTING);
629 }
630
631 /**
632 *
633 * @phy: This struct scic_sds_phy object which has received an event.
634 * @event_code: This is the event code which the phy object is to decode.
635 *
636 * This method is called when an event notification is received for the phy
637 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SPEED_EN. -
638 * decode the event - sas phy detected causes a state transition to the wait
639 * for speed event notification. - any other events log a warning message and
640 * set a failure status enum sci_status SCI_SUCCESS on any valid event notification
641 * SCI_FAILURE on any unexpected event notifation
642 */
643 static enum sci_status scic_sds_phy_starting_substate_await_ossp_event_handler(
644 struct scic_sds_phy *sci_phy,
645 u32 event_code)
646 {
647 u32 result = SCI_SUCCESS;
648
649 switch (scu_get_event_code(event_code)) {
650 case SCU_EVENT_SAS_PHY_DETECTED:
651 scic_sds_phy_start_sas_link_training(sci_phy);
652 sci_phy->is_in_link_training = true;
653 break;
654
655 case SCU_EVENT_SATA_SPINUP_HOLD:
656 scic_sds_phy_start_sata_link_training(sci_phy);
657 sci_phy->is_in_link_training = true;
658 break;
659
660 default:
661 dev_dbg(sciphy_to_dev(sci_phy),
662 "%s: PHY starting substate machine received "
663 "unexpected event_code %x\n",
664 __func__,
665 event_code);
666
667 result = SCI_FAILURE;
668 break;
669 }
670
671 return result;
672 }
673
674 /**
675 *
676 * @phy: This struct scic_sds_phy object which has received an event.
677 * @event_code: This is the event code which the phy object is to decode.
678 *
679 * This method is called when an event notification is received for the phy
680 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SPEED_EN. -
681 * decode the event - sas phy detected returns us back to this state. - speed
682 * event detected causes a state transition to the wait for iaf. - identify
683 * timeout is an un-expected event and the state machine is restarted. - link
684 * failure events restart the starting state machine - any other events log a
685 * warning message and set a failure status enum sci_status SCI_SUCCESS on any valid
686 * event notification SCI_FAILURE on any unexpected event notifation
687 */
688 static enum sci_status scic_sds_phy_starting_substate_await_sas_phy_speed_event_handler(
689 struct scic_sds_phy *sci_phy,
690 u32 event_code)
691 {
692 u32 result = SCI_SUCCESS;
693
694 switch (scu_get_event_code(event_code)) {
695 case SCU_EVENT_SAS_PHY_DETECTED:
696 /*
697 * Why is this being reported again by the controller?
698 * We would re-enter this state so just stay here */
699 break;
700
701 case SCU_EVENT_SAS_15:
702 case SCU_EVENT_SAS_15_SSC:
703 scic_sds_phy_complete_link_training(
704 sci_phy,
705 SAS_LINK_RATE_1_5_GBPS,
706 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF);
707 break;
708
709 case SCU_EVENT_SAS_30:
710 case SCU_EVENT_SAS_30_SSC:
711 scic_sds_phy_complete_link_training(
712 sci_phy,
713 SAS_LINK_RATE_3_0_GBPS,
714 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF);
715 break;
716
717 case SCU_EVENT_SAS_60:
718 case SCU_EVENT_SAS_60_SSC:
719 scic_sds_phy_complete_link_training(
720 sci_phy,
721 SAS_LINK_RATE_6_0_GBPS,
722 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF);
723 break;
724
725 case SCU_EVENT_SATA_SPINUP_HOLD:
726 /*
727 * We were doing SAS PHY link training and received a SATA PHY event
728 * continue OOB/SN as if this were a SATA PHY */
729 scic_sds_phy_start_sata_link_training(sci_phy);
730 break;
731
732 case SCU_EVENT_LINK_FAILURE:
733 /* Link failure change state back to the starting state */
734 scic_sds_phy_restart_starting_state(sci_phy);
735 break;
736
737 default:
738 dev_warn(sciphy_to_dev(sci_phy),
739 "%s: PHY starting substate machine received "
740 "unexpected event_code %x\n",
741 __func__,
742 event_code);
743
744 result = SCI_FAILURE;
745 break;
746 }
747
748 return result;
749 }
750
751 /**
752 *
753 * @phy: This struct scic_sds_phy object which has received an event.
754 * @event_code: This is the event code which the phy object is to decode.
755 *
756 * This method is called when an event notification is received for the phy
757 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF. -
758 * decode the event - sas phy detected event backs up the state machine to the
759 * await speed notification. - identify timeout is an un-expected event and the
760 * state machine is restarted. - link failure events restart the starting state
761 * machine - any other events log a warning message and set a failure status
762 * enum sci_status SCI_SUCCESS on any valid event notification SCI_FAILURE on any
763 * unexpected event notifation
764 */
765 static enum sci_status scic_sds_phy_starting_substate_await_iaf_uf_event_handler(
766 struct scic_sds_phy *sci_phy,
767 u32 event_code)
768 {
769 u32 result = SCI_SUCCESS;
770
771 switch (scu_get_event_code(event_code)) {
772 case SCU_EVENT_SAS_PHY_DETECTED:
773 /* Backup the state machine */
774 scic_sds_phy_start_sas_link_training(sci_phy);
775 break;
776
777 case SCU_EVENT_SATA_SPINUP_HOLD:
778 /*
779 * We were doing SAS PHY link training and received a SATA PHY event
780 * continue OOB/SN as if this were a SATA PHY */
781 scic_sds_phy_start_sata_link_training(sci_phy);
782 break;
783
784 case SCU_EVENT_RECEIVED_IDENTIFY_TIMEOUT:
785 case SCU_EVENT_LINK_FAILURE:
786 case SCU_EVENT_HARD_RESET_RECEIVED:
787 /* Start the oob/sn state machine over again */
788 scic_sds_phy_restart_starting_state(sci_phy);
789 break;
790
791 default:
792 dev_warn(sciphy_to_dev(sci_phy),
793 "%s: PHY starting substate machine received "
794 "unexpected event_code %x\n",
795 __func__,
796 event_code);
797
798 result = SCI_FAILURE;
799 break;
800 }
801
802 return result;
803 }
804
805 /**
806 *
807 * @phy: This struct scic_sds_phy object which has received an event.
808 * @event_code: This is the event code which the phy object is to decode.
809 *
810 * This method is called when an event notification is received for the phy
811 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_POWER. -
812 * decode the event - link failure events restart the starting state machine -
813 * any other events log a warning message and set a failure status enum sci_status
814 * SCI_SUCCESS on a link failure event SCI_FAILURE on any unexpected event
815 * notifation
816 */
817 static enum sci_status scic_sds_phy_starting_substate_await_sas_power_event_handler(
818 struct scic_sds_phy *sci_phy,
819 u32 event_code)
820 {
821 u32 result = SCI_SUCCESS;
822
823 switch (scu_get_event_code(event_code)) {
824 case SCU_EVENT_LINK_FAILURE:
825 /* Link failure change state back to the starting state */
826 scic_sds_phy_restart_starting_state(sci_phy);
827 break;
828
829 default:
830 dev_warn(sciphy_to_dev(sci_phy),
831 "%s: PHY starting substate machine received unexpected "
832 "event_code %x\n",
833 __func__,
834 event_code);
835
836 result = SCI_FAILURE;
837 break;
838 }
839
840 return result;
841 }
842
843 /**
844 *
845 * @phy: This struct scic_sds_phy object which has received an event.
846 * @event_code: This is the event code which the phy object is to decode.
847 *
848 * This method is called when an event notification is received for the phy
849 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER. -
850 * decode the event - link failure events restart the starting state machine -
851 * sata spinup hold events are ignored since they are expected - any other
852 * events log a warning message and set a failure status enum sci_status SCI_SUCCESS
853 * on a link failure event SCI_FAILURE on any unexpected event notifation
854 */
855 static enum sci_status scic_sds_phy_starting_substate_await_sata_power_event_handler(
856 struct scic_sds_phy *sci_phy,
857 u32 event_code)
858 {
859 u32 result = SCI_SUCCESS;
860
861 switch (scu_get_event_code(event_code)) {
862 case SCU_EVENT_LINK_FAILURE:
863 /* Link failure change state back to the starting state */
864 scic_sds_phy_restart_starting_state(sci_phy);
865 break;
866
867 case SCU_EVENT_SATA_SPINUP_HOLD:
868 /* These events are received every 10ms and are expected while in this state */
869 break;
870
871 case SCU_EVENT_SAS_PHY_DETECTED:
872 /*
873 * There has been a change in the phy type before OOB/SN for the
874 * SATA finished start down the SAS link traning path. */
875 scic_sds_phy_start_sas_link_training(sci_phy);
876 break;
877
878 default:
879 dev_warn(sciphy_to_dev(sci_phy),
880 "%s: PHY starting substate machine received "
881 "unexpected event_code %x\n",
882 __func__,
883 event_code);
884
885 result = SCI_FAILURE;
886 break;
887 }
888
889 return result;
890 }
891
892 /**
893 * scic_sds_phy_starting_substate_await_sata_phy_event_handler -
894 * @phy: This struct scic_sds_phy object which has received an event.
895 * @event_code: This is the event code which the phy object is to decode.
896 *
897 * This method is called when an event notification is received for the phy
898 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN. -
899 * decode the event - link failure events restart the starting state machine -
900 * sata spinup hold events are ignored since they are expected - sata phy
901 * detected event change to the wait speed event - any other events log a
902 * warning message and set a failure status enum sci_status SCI_SUCCESS on a link
903 * failure event SCI_FAILURE on any unexpected event notifation
904 */
905 static enum sci_status scic_sds_phy_starting_substate_await_sata_phy_event_handler(
906 struct scic_sds_phy *sci_phy, u32 event_code)
907 {
908 u32 result = SCI_SUCCESS;
909
910 switch (scu_get_event_code(event_code)) {
911 case SCU_EVENT_LINK_FAILURE:
912 /* Link failure change state back to the starting state */
913 scic_sds_phy_restart_starting_state(sci_phy);
914 break;
915
916 case SCU_EVENT_SATA_SPINUP_HOLD:
917 /* These events might be received since we dont know how many may be in
918 * the completion queue while waiting for power
919 */
920 break;
921
922 case SCU_EVENT_SATA_PHY_DETECTED:
923 sci_phy->protocol = SCIC_SDS_PHY_PROTOCOL_SATA;
924
925 /* We have received the SATA PHY notification change state */
926 sci_base_state_machine_change_state(&sci_phy->state_machine,
927 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN);
928 break;
929
930 case SCU_EVENT_SAS_PHY_DETECTED:
931 /* There has been a change in the phy type before OOB/SN for the
932 * SATA finished start down the SAS link traning path.
933 */
934 scic_sds_phy_start_sas_link_training(sci_phy);
935 break;
936
937 default:
938 dev_warn(sciphy_to_dev(sci_phy),
939 "%s: PHY starting substate machine received "
940 "unexpected event_code %x\n",
941 __func__,
942 event_code);
943
944 result = SCI_FAILURE;
945 break;
946 }
947
948 return result;
949 }
950
951 /**
952 *
953 * @phy: This struct scic_sds_phy object which has received an event.
954 * @event_code: This is the event code which the phy object is to decode.
955 *
956 * This method is called when an event notification is received for the phy
957 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN.
958 * - decode the event - sata phy detected returns us back to this state. -
959 * speed event detected causes a state transition to the wait for signature. -
960 * link failure events restart the starting state machine - any other events
961 * log a warning message and set a failure status enum sci_status SCI_SUCCESS on any
962 * valid event notification SCI_FAILURE on any unexpected event notifation
963 */
964 static enum sci_status scic_sds_phy_starting_substate_await_sata_speed_event_handler(
965 struct scic_sds_phy *sci_phy,
966 u32 event_code)
967 {
968 u32 result = SCI_SUCCESS;
969
970 switch (scu_get_event_code(event_code)) {
971 case SCU_EVENT_SATA_PHY_DETECTED:
972 /*
973 * The hardware reports multiple SATA PHY detected events
974 * ignore the extras */
975 break;
976
977 case SCU_EVENT_SATA_15:
978 case SCU_EVENT_SATA_15_SSC:
979 scic_sds_phy_complete_link_training(
980 sci_phy,
981 SAS_LINK_RATE_1_5_GBPS,
982 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF);
983 break;
984
985 case SCU_EVENT_SATA_30:
986 case SCU_EVENT_SATA_30_SSC:
987 scic_sds_phy_complete_link_training(
988 sci_phy,
989 SAS_LINK_RATE_3_0_GBPS,
990 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF);
991 break;
992
993 case SCU_EVENT_SATA_60:
994 case SCU_EVENT_SATA_60_SSC:
995 scic_sds_phy_complete_link_training(
996 sci_phy,
997 SAS_LINK_RATE_6_0_GBPS,
998 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF);
999 break;
1000
1001 case SCU_EVENT_LINK_FAILURE:
1002 /* Link failure change state back to the starting state */
1003 scic_sds_phy_restart_starting_state(sci_phy);
1004 break;
1005
1006 case SCU_EVENT_SAS_PHY_DETECTED:
1007 /*
1008 * There has been a change in the phy type before OOB/SN for the
1009 * SATA finished start down the SAS link traning path. */
1010 scic_sds_phy_start_sas_link_training(sci_phy);
1011 break;
1012
1013 default:
1014 dev_warn(sciphy_to_dev(sci_phy),
1015 "%s: PHY starting substate machine received "
1016 "unexpected event_code %x\n",
1017 __func__,
1018 event_code);
1019
1020 result = SCI_FAILURE;
1021 break;
1022 }
1023
1024 return result;
1025 }
1026
1027 /**
1028 * scic_sds_phy_starting_substate_await_sig_fis_event_handler -
1029 * @phy: This struct scic_sds_phy object which has received an event.
1030 * @event_code: This is the event code which the phy object is to decode.
1031 *
1032 * This method is called when an event notification is received for the phy
1033 * object when in the state SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF. -
1034 * decode the event - sas phy detected event backs up the state machine to the
1035 * await speed notification. - identify timeout is an un-expected event and the
1036 * state machine is restarted. - link failure events restart the starting state
1037 * machine - any other events log a warning message and set a failure status
1038 * enum sci_status SCI_SUCCESS on any valid event notification SCI_FAILURE on any
1039 * unexpected event notifation
1040 */
1041 static enum sci_status scic_sds_phy_starting_substate_await_sig_fis_event_handler(
1042 struct scic_sds_phy *sci_phy, u32 event_code)
1043 {
1044 u32 result = SCI_SUCCESS;
1045
1046 switch (scu_get_event_code(event_code)) {
1047 case SCU_EVENT_SATA_PHY_DETECTED:
1048 /* Backup the state machine */
1049 sci_base_state_machine_change_state(&sci_phy->state_machine,
1050 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN);
1051 break;
1052
1053 case SCU_EVENT_LINK_FAILURE:
1054 /* Link failure change state back to the starting state */
1055 scic_sds_phy_restart_starting_state(sci_phy);
1056 break;
1057
1058 default:
1059 dev_warn(sciphy_to_dev(sci_phy),
1060 "%s: PHY starting substate machine received "
1061 "unexpected event_code %x\n",
1062 __func__,
1063 event_code);
1064
1065 result = SCI_FAILURE;
1066 break;
1067 }
1068
1069 return result;
1070 }
1071
1072
1073 /*
1074 * *****************************************************************************
1075 * * SCIC SDS PHY FRAME_HANDLERS
1076 * ***************************************************************************** */
1077
1078 /**
1079 *
1080 * @phy: This is struct scic_sds_phy object which is being requested to decode the
1081 * frame data.
1082 * @frame_index: This is the index of the unsolicited frame which was received
1083 * for this phy.
1084 *
1085 * This method decodes the unsolicited frame when the struct scic_sds_phy is in the
1086 * SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF. - Get the UF Header - If the UF
1087 * is an IAF - Copy IAF data to local phy object IAF data buffer. - Change
1088 * starting substate to wait power. - else - log warning message of unexpected
1089 * unsolicted frame - release frame buffer enum sci_status SCI_SUCCESS
1090 */
1091 static enum sci_status scic_sds_phy_starting_substate_await_iaf_uf_frame_handler(
1092 struct scic_sds_phy *sci_phy, u32 frame_index)
1093 {
1094 enum sci_status result;
1095 u32 *frame_words;
1096 struct sas_identify_frame iaf;
1097 struct isci_phy *iphy = sci_phy_to_iphy(sci_phy);
1098
1099 result = scic_sds_unsolicited_frame_control_get_header(
1100 &(scic_sds_phy_get_controller(sci_phy)->uf_control),
1101 frame_index,
1102 (void **)&frame_words);
1103
1104 if (result != SCI_SUCCESS)
1105 return result;
1106
1107 sci_swab32_cpy(&iaf, frame_words, sizeof(iaf) / sizeof(u32));
1108 if (iaf.frame_type == 0) {
1109 u32 state;
1110
1111 memcpy(&iphy->frame_rcvd.iaf, &iaf, sizeof(iaf));
1112 if (iaf.smp_tport) {
1113 /* We got the IAF for an expander PHY go to the final
1114 * state since there are no power requirements for
1115 * expander phys.
1116 */
1117 state = SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL;
1118 } else {
1119 /* We got the IAF we can now go to the await spinup
1120 * semaphore state
1121 */
1122 state = SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_POWER;
1123 }
1124 sci_base_state_machine_change_state(
1125 &sci_phy->state_machine,
1126 state);
1127 result = SCI_SUCCESS;
1128 } else
1129 dev_warn(sciphy_to_dev(sci_phy),
1130 "%s: PHY starting substate machine received "
1131 "unexpected frame id %x\n",
1132 __func__,
1133 frame_index);
1134
1135 scic_sds_controller_release_frame(scic_sds_phy_get_controller(sci_phy),
1136 frame_index);
1137
1138 return result;
1139 }
1140
1141 /**
1142 *
1143 * @phy: This is struct scic_sds_phy object which is being requested to decode the
1144 * frame data.
1145 * @frame_index: This is the index of the unsolicited frame which was received
1146 * for this phy.
1147 *
1148 * This method decodes the unsolicited frame when the struct scic_sds_phy is in the
1149 * SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF. - Get the UF Header - If
1150 * the UF is an SIGNATURE FIS - Copy IAF data to local phy object SIGNATURE FIS
1151 * data buffer. - else - log warning message of unexpected unsolicted frame -
1152 * release frame buffer enum sci_status SCI_SUCCESS Must decode the SIGNATURE FIS
1153 * data
1154 */
1155 static enum sci_status scic_sds_phy_starting_substate_await_sig_fis_frame_handler(
1156 struct scic_sds_phy *sci_phy,
1157 u32 frame_index)
1158 {
1159 enum sci_status result;
1160 struct dev_to_host_fis *frame_header;
1161 u32 *fis_frame_data;
1162 struct isci_phy *iphy = sci_phy_to_iphy(sci_phy);
1163
1164 result = scic_sds_unsolicited_frame_control_get_header(
1165 &(scic_sds_phy_get_controller(sci_phy)->uf_control),
1166 frame_index,
1167 (void **)&frame_header);
1168
1169 if (result != SCI_SUCCESS)
1170 return result;
1171
1172 if ((frame_header->fis_type == FIS_REGD2H) &&
1173 !(frame_header->status & ATA_BUSY)) {
1174 scic_sds_unsolicited_frame_control_get_buffer(
1175 &(scic_sds_phy_get_controller(sci_phy)->uf_control),
1176 frame_index,
1177 (void **)&fis_frame_data);
1178
1179 scic_sds_controller_copy_sata_response(&iphy->frame_rcvd.fis,
1180 frame_header,
1181 fis_frame_data);
1182
1183 /* got IAF we can now go to the await spinup semaphore state */
1184 sci_base_state_machine_change_state(&sci_phy->state_machine,
1185 SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL);
1186
1187 result = SCI_SUCCESS;
1188 } else
1189 dev_warn(sciphy_to_dev(sci_phy),
1190 "%s: PHY starting substate machine received "
1191 "unexpected frame id %x\n",
1192 __func__,
1193 frame_index);
1194
1195 /* Regardless of the result we are done with this frame with it */
1196 scic_sds_controller_release_frame(scic_sds_phy_get_controller(sci_phy),
1197 frame_index);
1198
1199 return result;
1200 }
1201
1202 /*
1203 * *****************************************************************************
1204 * * SCIC SDS PHY POWER_HANDLERS
1205 * ***************************************************************************** */
1206
1207 /*
1208 * This method is called by the struct scic_sds_controller when the phy object is
1209 * granted power. - The notify enable spinups are turned on for this phy object
1210 * - The phy state machine is transitioned to the
1211 * SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL. enum sci_status SCI_SUCCESS
1212 */
1213 static enum sci_status scic_sds_phy_starting_substate_await_sas_power_consume_power_handler(
1214 struct scic_sds_phy *sci_phy)
1215 {
1216 u32 enable_spinup;
1217
1218 enable_spinup = readl(&sci_phy->link_layer_registers->notify_enable_spinup_control);
1219 enable_spinup |= SCU_ENSPINUP_GEN_BIT(ENABLE);
1220 writel(enable_spinup, &sci_phy->link_layer_registers->notify_enable_spinup_control);
1221
1222 /* Change state to the final state this substate machine has run to completion */
1223 sci_base_state_machine_change_state(&sci_phy->state_machine,
1224 SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL);
1225
1226 return SCI_SUCCESS;
1227 }
1228
1229 /*
1230 * This method is called by the struct scic_sds_controller when the phy object is
1231 * granted power. - The phy state machine is transitioned to the
1232 * SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN. enum sci_status SCI_SUCCESS
1233 */
1234 static enum sci_status scic_sds_phy_starting_substate_await_sata_power_consume_power_handler(
1235 struct scic_sds_phy *sci_phy)
1236 {
1237 u32 scu_sas_pcfg_value;
1238
1239 /* Release the spinup hold state and reset the OOB state machine */
1240 scu_sas_pcfg_value =
1241 readl(&sci_phy->link_layer_registers->phy_configuration);
1242 scu_sas_pcfg_value &=
1243 ~(SCU_SAS_PCFG_GEN_BIT(SATA_SPINUP_HOLD) | SCU_SAS_PCFG_GEN_BIT(OOB_ENABLE));
1244 scu_sas_pcfg_value |= SCU_SAS_PCFG_GEN_BIT(OOB_RESET);
1245 writel(scu_sas_pcfg_value,
1246 &sci_phy->link_layer_registers->phy_configuration);
1247
1248 /* Now restart the OOB operation */
1249 scu_sas_pcfg_value &= ~SCU_SAS_PCFG_GEN_BIT(OOB_RESET);
1250 scu_sas_pcfg_value |= SCU_SAS_PCFG_GEN_BIT(OOB_ENABLE);
1251 writel(scu_sas_pcfg_value,
1252 &sci_phy->link_layer_registers->phy_configuration);
1253
1254 /* Change state to the final state this substate machine has run to completion */
1255 sci_base_state_machine_change_state(&sci_phy->state_machine,
1256 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN);
1257
1258 return SCI_SUCCESS;
1259 }
1260
1261 static enum sci_status default_phy_handler(struct scic_sds_phy *sci_phy,
1262 const char *func)
1263 {
1264 dev_dbg(sciphy_to_dev(sci_phy),
1265 "%s: in wrong state: %d\n", func,
1266 sci_base_state_machine_get_state(&sci_phy->state_machine));
1267 return SCI_FAILURE_INVALID_STATE;
1268 }
1269
1270 static enum sci_status
1271 scic_sds_phy_default_destroy_handler(struct scic_sds_phy *sci_phy)
1272 {
1273 return default_phy_handler(sci_phy, __func__);
1274 }
1275
1276 static enum sci_status
1277 scic_sds_phy_default_frame_handler(struct scic_sds_phy *sci_phy,
1278 u32 frame_index)
1279 {
1280 struct scic_sds_controller *scic = scic_sds_phy_get_controller(sci_phy);
1281
1282 default_phy_handler(sci_phy, __func__);
1283 scic_sds_controller_release_frame(scic, frame_index);
1284
1285 return SCI_FAILURE_INVALID_STATE;
1286 }
1287
1288 static enum sci_status
1289 scic_sds_phy_default_event_handler(struct scic_sds_phy *sci_phy,
1290 u32 event_code)
1291 {
1292 return default_phy_handler(sci_phy, __func__);
1293 }
1294
1295 static enum sci_status
1296 scic_sds_phy_default_consume_power_handler(struct scic_sds_phy *sci_phy)
1297 {
1298 return default_phy_handler(sci_phy, __func__);
1299 }
1300
1301 static enum sci_status
1302 scic_sds_phy_stopped_state_destroy_handler(struct scic_sds_phy *sci_phy)
1303 {
1304 return SCI_SUCCESS;
1305 }
1306
1307 /**
1308 * scic_sds_phy_ready_state_event_handler -
1309 * @phy: This is the struct scic_sds_phy object which has received the event.
1310 *
1311 * This method request the struct scic_sds_phy handle the received event. The only
1312 * event that we are interested in while in the ready state is the link failure
1313 * event. - decoded event is a link failure - transition the struct scic_sds_phy back
1314 * to the SCI_BASE_PHY_STATE_STARTING state. - any other event received will
1315 * report a warning message enum sci_status SCI_SUCCESS if the event received is a
1316 * link failure SCI_FAILURE_INVALID_STATE for any other event received.
1317 */
1318 static enum sci_status scic_sds_phy_ready_state_event_handler(struct scic_sds_phy *sci_phy,
1319 u32 event_code)
1320 {
1321 enum sci_status result = SCI_FAILURE;
1322
1323 switch (scu_get_event_code(event_code)) {
1324 case SCU_EVENT_LINK_FAILURE:
1325 /* Link failure change state back to the starting state */
1326 sci_base_state_machine_change_state(&sci_phy->state_machine,
1327 SCI_BASE_PHY_STATE_STARTING);
1328 result = SCI_SUCCESS;
1329 break;
1330
1331 case SCU_EVENT_BROADCAST_CHANGE:
1332 /* Broadcast change received. Notify the port. */
1333 if (scic_sds_phy_get_port(sci_phy) != NULL)
1334 scic_sds_port_broadcast_change_received(sci_phy->owning_port, sci_phy);
1335 else
1336 sci_phy->bcn_received_while_port_unassigned = true;
1337 break;
1338
1339 default:
1340 dev_warn(sciphy_to_dev(sci_phy),
1341 "%sP SCIC PHY 0x%p ready state machine received "
1342 "unexpected event_code %x\n",
1343 __func__, sci_phy, event_code);
1344
1345 result = SCI_FAILURE_INVALID_STATE;
1346 break;
1347 }
1348
1349 return result;
1350 }
1351
1352 static enum sci_status scic_sds_phy_resetting_state_event_handler(struct scic_sds_phy *sci_phy,
1353 u32 event_code)
1354 {
1355 enum sci_status result = SCI_FAILURE;
1356
1357 switch (scu_get_event_code(event_code)) {
1358 case SCU_EVENT_HARD_RESET_TRANSMITTED:
1359 /* Link failure change state back to the starting state */
1360 sci_base_state_machine_change_state(&sci_phy->state_machine,
1361 SCI_BASE_PHY_STATE_STARTING);
1362 result = SCI_SUCCESS;
1363 break;
1364
1365 default:
1366 dev_warn(sciphy_to_dev(sci_phy),
1367 "%s: SCIC PHY 0x%p resetting state machine received "
1368 "unexpected event_code %x\n",
1369 __func__, sci_phy, event_code);
1370
1371 result = SCI_FAILURE_INVALID_STATE;
1372 break;
1373 }
1374
1375 return result;
1376 }
1377
1378 /* --------------------------------------------------------------------------- */
1379
1380 static const struct scic_sds_phy_state_handler scic_sds_phy_state_handler_table[] = {
1381 [SCI_BASE_PHY_STATE_INITIAL] = {
1382 .destruct_handler = scic_sds_phy_default_destroy_handler,
1383 .frame_handler = scic_sds_phy_default_frame_handler,
1384 .event_handler = scic_sds_phy_default_event_handler,
1385 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1386 },
1387 [SCI_BASE_PHY_STATE_STOPPED] = {
1388 .destruct_handler = scic_sds_phy_stopped_state_destroy_handler,
1389 .frame_handler = scic_sds_phy_default_frame_handler,
1390 .event_handler = scic_sds_phy_default_event_handler,
1391 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1392 },
1393 [SCI_BASE_PHY_STATE_STARTING] = {
1394 .destruct_handler = scic_sds_phy_default_destroy_handler,
1395 .frame_handler = scic_sds_phy_default_frame_handler,
1396 .event_handler = scic_sds_phy_default_event_handler,
1397 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1398 },
1399 [SCIC_SDS_PHY_STARTING_SUBSTATE_INITIAL] = {
1400 .destruct_handler = scic_sds_phy_default_destroy_handler,
1401 .frame_handler = scic_sds_phy_default_frame_handler,
1402 .event_handler = scic_sds_phy_default_event_handler,
1403 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1404 },
1405 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_OSSP_EN] = {
1406 .destruct_handler = scic_sds_phy_default_destroy_handler,
1407 .frame_handler = scic_sds_phy_default_frame_handler,
1408 .event_handler = scic_sds_phy_starting_substate_await_ossp_event_handler,
1409 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1410 },
1411 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_SPEED_EN] = {
1412 .destruct_handler = scic_sds_phy_default_destroy_handler,
1413 .frame_handler = scic_sds_phy_default_frame_handler,
1414 .event_handler = scic_sds_phy_starting_substate_await_sas_phy_speed_event_handler,
1415 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1416 },
1417 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF] = {
1418 .destruct_handler = scic_sds_phy_default_destroy_handler,
1419 .frame_handler = scic_sds_phy_starting_substate_await_iaf_uf_frame_handler,
1420 .event_handler = scic_sds_phy_starting_substate_await_iaf_uf_event_handler,
1421 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1422 },
1423 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_POWER] = {
1424 .destruct_handler = scic_sds_phy_default_destroy_handler,
1425 .frame_handler = scic_sds_phy_default_frame_handler,
1426 .event_handler = scic_sds_phy_starting_substate_await_sas_power_event_handler,
1427 .consume_power_handler = scic_sds_phy_starting_substate_await_sas_power_consume_power_handler
1428 },
1429 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER] = {
1430 .destruct_handler = scic_sds_phy_default_destroy_handler,
1431 .frame_handler = scic_sds_phy_default_frame_handler,
1432 .event_handler = scic_sds_phy_starting_substate_await_sata_power_event_handler,
1433 .consume_power_handler = scic_sds_phy_starting_substate_await_sata_power_consume_power_handler
1434 },
1435 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN] = {
1436 .destruct_handler = scic_sds_phy_default_destroy_handler,
1437 .frame_handler = scic_sds_phy_default_frame_handler,
1438 .event_handler = scic_sds_phy_starting_substate_await_sata_phy_event_handler,
1439 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1440 },
1441 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN] = {
1442 .destruct_handler = scic_sds_phy_default_destroy_handler,
1443 .frame_handler = scic_sds_phy_default_frame_handler,
1444 .event_handler = scic_sds_phy_starting_substate_await_sata_speed_event_handler,
1445 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1446 },
1447 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF] = {
1448 .destruct_handler = scic_sds_phy_default_destroy_handler,
1449 .frame_handler = scic_sds_phy_starting_substate_await_sig_fis_frame_handler,
1450 .event_handler = scic_sds_phy_starting_substate_await_sig_fis_event_handler,
1451 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1452 },
1453 [SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL] = {
1454 .destruct_handler = scic_sds_phy_default_destroy_handler,
1455 .frame_handler = scic_sds_phy_default_frame_handler,
1456 .event_handler = scic_sds_phy_default_event_handler,
1457 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1458 },
1459 [SCI_BASE_PHY_STATE_READY] = {
1460 .destruct_handler = scic_sds_phy_default_destroy_handler,
1461 .frame_handler = scic_sds_phy_default_frame_handler,
1462 .event_handler = scic_sds_phy_ready_state_event_handler,
1463 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1464 },
1465 [SCI_BASE_PHY_STATE_RESETTING] = {
1466 .destruct_handler = scic_sds_phy_default_destroy_handler,
1467 .frame_handler = scic_sds_phy_default_frame_handler,
1468 .event_handler = scic_sds_phy_resetting_state_event_handler,
1469 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1470 },
1471 [SCI_BASE_PHY_STATE_FINAL] = {
1472 .destruct_handler = scic_sds_phy_default_destroy_handler,
1473 .frame_handler = scic_sds_phy_default_frame_handler,
1474 .event_handler = scic_sds_phy_default_event_handler,
1475 .consume_power_handler = scic_sds_phy_default_consume_power_handler
1476 }
1477 };
1478
1479 /*
1480 * ****************************************************************************
1481 * * PHY STARTING SUBSTATE METHODS
1482 * **************************************************************************** */
1483
1484 /**
1485 * scic_sds_phy_starting_initial_substate_enter -
1486 * @object: This is the object which is cast to a struct scic_sds_phy object.
1487 *
1488 * This method will perform the actions required by the struct scic_sds_phy on
1489 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_INITIAL. - The initial state
1490 * handlers are put in place for the struct scic_sds_phy object. - The state is
1491 * changed to the wait phy type event notification. none
1492 */
1493 static void scic_sds_phy_starting_initial_substate_enter(void *object)
1494 {
1495 struct scic_sds_phy *sci_phy = object;
1496
1497 scic_sds_phy_set_base_state_handlers(
1498 sci_phy, SCIC_SDS_PHY_STARTING_SUBSTATE_INITIAL);
1499
1500 /* This is just an temporary state go off to the starting state */
1501 sci_base_state_machine_change_state(&sci_phy->state_machine,
1502 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_OSSP_EN);
1503 }
1504
1505 /**
1506 *
1507 * @object: This is the object which is cast to a struct scic_sds_phy object.
1508 *
1509 * This method will perform the actions required by the struct scic_sds_phy on
1510 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_PHY_TYPE_EN. - Set the
1511 * struct scic_sds_phy object state handlers for this state. none
1512 */
1513 static void scic_sds_phy_starting_await_ossp_en_substate_enter(void *object)
1514 {
1515 struct scic_sds_phy *sci_phy = object;
1516
1517 scic_sds_phy_set_base_state_handlers(
1518 sci_phy, SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_OSSP_EN
1519 );
1520 }
1521
1522 /**
1523 *
1524 * @object: This is the object which is cast to a struct scic_sds_phy object.
1525 *
1526 * This method will perform the actions required by the struct scic_sds_phy on
1527 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SPEED_EN. - Set the
1528 * struct scic_sds_phy object state handlers for this state. none
1529 */
1530 static void scic_sds_phy_starting_await_sas_speed_en_substate_enter(
1531 void *object)
1532 {
1533 struct scic_sds_phy *sci_phy = object;
1534
1535 scic_sds_phy_set_base_state_handlers(
1536 sci_phy, SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_SPEED_EN
1537 );
1538 }
1539
1540 /**
1541 *
1542 * @object: This is the object which is cast to a struct scic_sds_phy object.
1543 *
1544 * This method will perform the actions required by the struct scic_sds_phy on
1545 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF. - Set the
1546 * struct scic_sds_phy object state handlers for this state. none
1547 */
1548 static void scic_sds_phy_starting_await_iaf_uf_substate_enter(void *object)
1549 {
1550 struct scic_sds_phy *sci_phy = object;
1551
1552 scic_sds_phy_set_base_state_handlers(
1553 sci_phy, SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF
1554 );
1555 }
1556
1557 /**
1558 *
1559 * @object: This is the object which is cast to a struct scic_sds_phy object.
1560 *
1561 * This method will perform the actions required by the struct scic_sds_phy on
1562 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_POWER. - Set the
1563 * struct scic_sds_phy object state handlers for this state. - Add this phy object to
1564 * the power control queue none
1565 */
1566 static void scic_sds_phy_starting_await_sas_power_substate_enter(void *object)
1567 {
1568 struct scic_sds_phy *sci_phy = object;
1569
1570 scic_sds_phy_set_base_state_handlers(
1571 sci_phy, SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_POWER
1572 );
1573
1574 scic_sds_controller_power_control_queue_insert(
1575 scic_sds_phy_get_controller(sci_phy),
1576 sci_phy
1577 );
1578 }
1579
1580 /**
1581 *
1582 * @object: This is the object which is cast to a struct scic_sds_phy object.
1583 *
1584 * This method will perform the actions required by the struct scic_sds_phy on exiting
1585 * the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_POWER. - Remove the
1586 * struct scic_sds_phy object from the power control queue. none
1587 */
1588 static void scic_sds_phy_starting_await_sas_power_substate_exit(void *object)
1589 {
1590 struct scic_sds_phy *sci_phy = object;
1591
1592 scic_sds_controller_power_control_queue_remove(
1593 scic_sds_phy_get_controller(sci_phy), sci_phy
1594 );
1595 }
1596
1597 /**
1598 *
1599 * @object: This is the object which is cast to a struct scic_sds_phy object.
1600 *
1601 * This method will perform the actions required by the struct scic_sds_phy on
1602 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER. - Set the
1603 * struct scic_sds_phy object state handlers for this state. - Add this phy object to
1604 * the power control queue none
1605 */
1606 static void scic_sds_phy_starting_await_sata_power_substate_enter(void *object)
1607 {
1608 struct scic_sds_phy *sci_phy = object;
1609
1610 scic_sds_phy_set_base_state_handlers(
1611 sci_phy, SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER
1612 );
1613
1614 scic_sds_controller_power_control_queue_insert(
1615 scic_sds_phy_get_controller(sci_phy),
1616 sci_phy
1617 );
1618 }
1619
1620 /**
1621 *
1622 * @object: This is the object which is cast to a struct scic_sds_phy object.
1623 *
1624 * This method will perform the actions required by the struct scic_sds_phy on exiting
1625 * the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER. - Remove the
1626 * struct scic_sds_phy object from the power control queue. none
1627 */
1628 static void scic_sds_phy_starting_await_sata_power_substate_exit(void *object)
1629 {
1630 struct scic_sds_phy *sci_phy = object;
1631
1632 scic_sds_controller_power_control_queue_remove(
1633 scic_sds_phy_get_controller(sci_phy),
1634 sci_phy
1635 );
1636 }
1637
1638 /**
1639 *
1640 * @object: This is the object which is cast to a struct scic_sds_phy object.
1641 *
1642 * This function will perform the actions required by the struct scic_sds_phy on
1643 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN. - Set the
1644 * struct scic_sds_phy object state handlers for this state. none
1645 */
1646 static void scic_sds_phy_starting_await_sata_phy_substate_enter(void *object)
1647 {
1648 struct scic_sds_phy *sci_phy = object;
1649
1650 scic_sds_phy_set_base_state_handlers(
1651 sci_phy,
1652 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN);
1653
1654 isci_timer_start(sci_phy->sata_timeout_timer,
1655 SCIC_SDS_SATA_LINK_TRAINING_TIMEOUT);
1656 }
1657
1658 /**
1659 *
1660 * @object: This is the object which is cast to a struct scic_sds_phy object.
1661 *
1662 * This method will perform the actions required by the struct scic_sds_phy
1663 * on exiting
1664 * the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN. - stop the timer
1665 * that was started on entry to await sata phy event notification none
1666 */
1667 static inline void scic_sds_phy_starting_await_sata_phy_substate_exit(
1668 void *object)
1669 {
1670 struct scic_sds_phy *sci_phy = object;
1671
1672 isci_timer_stop(sci_phy->sata_timeout_timer);
1673 }
1674
1675 /**
1676 *
1677 * @object: This is the object which is cast to a struct scic_sds_phy object.
1678 *
1679 * This method will perform the actions required by the struct scic_sds_phy on
1680 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN. - Set the
1681 * struct scic_sds_phy object state handlers for this state. none
1682 */
1683 static void scic_sds_phy_starting_await_sata_speed_substate_enter(void *object)
1684 {
1685 struct scic_sds_phy *sci_phy = object;
1686
1687 scic_sds_phy_set_base_state_handlers(
1688 sci_phy,
1689 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN);
1690
1691 isci_timer_start(sci_phy->sata_timeout_timer,
1692 SCIC_SDS_SATA_LINK_TRAINING_TIMEOUT);
1693 }
1694
1695 /**
1696 *
1697 * @object: This is the object which is cast to a struct scic_sds_phy object.
1698 *
1699 * This function will perform the actions required by the
1700 * struct scic_sds_phy on exiting
1701 * the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN. - stop the timer
1702 * that was started on entry to await sata phy event notification none
1703 */
1704 static inline void scic_sds_phy_starting_await_sata_speed_substate_exit(
1705 void *object)
1706 {
1707 struct scic_sds_phy *sci_phy = object;
1708
1709 isci_timer_stop(sci_phy->sata_timeout_timer);
1710 }
1711
1712 /**
1713 *
1714 * @object: This is the object which is cast to a struct scic_sds_phy object.
1715 *
1716 * This function will perform the actions required by the struct scic_sds_phy on
1717 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF. - Set the
1718 * struct scic_sds_phy object state handlers for this state.
1719 * - Start the SIGNATURE FIS
1720 * timeout timer none
1721 */
1722 static void scic_sds_phy_starting_await_sig_fis_uf_substate_enter(void *object)
1723 {
1724 bool continue_to_ready_state;
1725 struct scic_sds_phy *sci_phy = object;
1726
1727 scic_sds_phy_set_base_state_handlers(
1728 sci_phy,
1729 SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF);
1730
1731 continue_to_ready_state = scic_sds_port_link_detected(
1732 sci_phy->owning_port,
1733 sci_phy);
1734
1735 if (continue_to_ready_state) {
1736 /*
1737 * Clear the PE suspend condition so we can actually
1738 * receive SIG FIS
1739 * The hardware will not respond to the XRDY until the PE
1740 * suspend condition is cleared.
1741 */
1742 scic_sds_phy_resume(sci_phy);
1743
1744 isci_timer_start(sci_phy->sata_timeout_timer,
1745 SCIC_SDS_SIGNATURE_FIS_TIMEOUT);
1746 } else
1747 sci_phy->is_in_link_training = false;
1748 }
1749
1750 /**
1751 *
1752 * @object: This is the object which is cast to a struct scic_sds_phy object.
1753 *
1754 * This function will perform the actions required by the
1755 * struct scic_sds_phy on exiting
1756 * the SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF. - Stop the SIGNATURE
1757 * FIS timeout timer. none
1758 */
1759 static inline void scic_sds_phy_starting_await_sig_fis_uf_substate_exit(
1760 void *object)
1761 {
1762 struct scic_sds_phy *sci_phy = object;
1763
1764 isci_timer_stop(sci_phy->sata_timeout_timer);
1765 }
1766
1767 /**
1768 *
1769 * @object: This is the object which is cast to a struct scic_sds_phy object.
1770 *
1771 * This method will perform the actions required by the struct scic_sds_phy on
1772 * entering the SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL. - Set the struct scic_sds_phy
1773 * object state handlers for this state. - Change base state machine to the
1774 * ready state. none
1775 */
1776 static void scic_sds_phy_starting_final_substate_enter(void *object)
1777 {
1778 struct scic_sds_phy *sci_phy = object;
1779
1780 scic_sds_phy_set_base_state_handlers(sci_phy,
1781 SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL);
1782
1783 /* State machine has run to completion so exit out and change
1784 * the base state machine to the ready state
1785 */
1786 sci_base_state_machine_change_state(&sci_phy->state_machine,
1787 SCI_BASE_PHY_STATE_READY);
1788 }
1789
1790 /*
1791 * ****************************************************************************
1792 * * PHY STATE PRIVATE METHODS
1793 * **************************************************************************** */
1794
1795 /**
1796 *
1797 * @sci_phy: This is the struct scic_sds_phy object to stop.
1798 *
1799 * This method will stop the struct scic_sds_phy object. This does not reset the
1800 * protocol engine it just suspends it and places it in a state where it will
1801 * not cause the end device to power up. none
1802 */
1803 static void scu_link_layer_stop_protocol_engine(
1804 struct scic_sds_phy *sci_phy)
1805 {
1806 u32 scu_sas_pcfg_value;
1807 u32 enable_spinup_value;
1808
1809 /* Suspend the protocol engine and place it in a sata spinup hold state */
1810 scu_sas_pcfg_value =
1811 readl(&sci_phy->link_layer_registers->phy_configuration);
1812 scu_sas_pcfg_value |=
1813 (SCU_SAS_PCFG_GEN_BIT(OOB_RESET) |
1814 SCU_SAS_PCFG_GEN_BIT(SUSPEND_PROTOCOL_ENGINE) |
1815 SCU_SAS_PCFG_GEN_BIT(SATA_SPINUP_HOLD));
1816 writel(scu_sas_pcfg_value,
1817 &sci_phy->link_layer_registers->phy_configuration);
1818
1819 /* Disable the notify enable spinup primitives */
1820 enable_spinup_value = readl(&sci_phy->link_layer_registers->notify_enable_spinup_control);
1821 enable_spinup_value &= ~SCU_ENSPINUP_GEN_BIT(ENABLE);
1822 writel(enable_spinup_value, &sci_phy->link_layer_registers->notify_enable_spinup_control);
1823 }
1824
1825 /**
1826 *
1827 *
1828 * This method will start the OOB/SN state machine for this struct scic_sds_phy object.
1829 */
1830 static void scu_link_layer_start_oob(
1831 struct scic_sds_phy *sci_phy)
1832 {
1833 u32 scu_sas_pcfg_value;
1834
1835 scu_sas_pcfg_value =
1836 readl(&sci_phy->link_layer_registers->phy_configuration);
1837 scu_sas_pcfg_value |= SCU_SAS_PCFG_GEN_BIT(OOB_ENABLE);
1838 scu_sas_pcfg_value &=
1839 ~(SCU_SAS_PCFG_GEN_BIT(OOB_RESET) |
1840 SCU_SAS_PCFG_GEN_BIT(HARD_RESET));
1841 writel(scu_sas_pcfg_value,
1842 &sci_phy->link_layer_registers->phy_configuration);
1843 }
1844
1845 /**
1846 *
1847 *
1848 * This method will transmit a hard reset request on the specified phy. The SCU
1849 * hardware requires that we reset the OOB state machine and set the hard reset
1850 * bit in the phy configuration register. We then must start OOB over with the
1851 * hard reset bit set.
1852 */
1853 static void scu_link_layer_tx_hard_reset(
1854 struct scic_sds_phy *sci_phy)
1855 {
1856 u32 phy_configuration_value;
1857
1858 /*
1859 * SAS Phys must wait for the HARD_RESET_TX event notification to transition
1860 * to the starting state. */
1861 phy_configuration_value =
1862 readl(&sci_phy->link_layer_registers->phy_configuration);
1863 phy_configuration_value |=
1864 (SCU_SAS_PCFG_GEN_BIT(HARD_RESET) |
1865 SCU_SAS_PCFG_GEN_BIT(OOB_RESET));
1866 writel(phy_configuration_value,
1867 &sci_phy->link_layer_registers->phy_configuration);
1868
1869 /* Now take the OOB state machine out of reset */
1870 phy_configuration_value |= SCU_SAS_PCFG_GEN_BIT(OOB_ENABLE);
1871 phy_configuration_value &= ~SCU_SAS_PCFG_GEN_BIT(OOB_RESET);
1872 writel(phy_configuration_value,
1873 &sci_phy->link_layer_registers->phy_configuration);
1874 }
1875
1876 /*
1877 * ****************************************************************************
1878 * * PHY BASE STATE METHODS
1879 * **************************************************************************** */
1880
1881 /**
1882 *
1883 * @object: This is the object which is cast to a struct scic_sds_phy object.
1884 *
1885 * This method will perform the actions required by the struct scic_sds_phy on
1886 * entering the SCI_BASE_PHY_STATE_INITIAL. - This function sets the state
1887 * handlers for the phy object base state machine initial state. none
1888 */
1889 static void scic_sds_phy_initial_state_enter(void *object)
1890 {
1891 struct scic_sds_phy *sci_phy = object;
1892
1893 scic_sds_phy_set_base_state_handlers(sci_phy, SCI_BASE_PHY_STATE_INITIAL);
1894 }
1895
1896 /**
1897 *
1898 * @object: This is the object which is cast to a struct scic_sds_phy object.
1899 *
1900 * This function will perform the actions required by the struct scic_sds_phy on
1901 * entering the SCI_BASE_PHY_STATE_INITIAL. - This function sets the state
1902 * handlers for the phy object base state machine initial state. - The SCU
1903 * hardware is requested to stop the protocol engine. none
1904 */
1905 static void scic_sds_phy_stopped_state_enter(void *object)
1906 {
1907 struct scic_sds_phy *sci_phy = object;
1908 struct scic_sds_controller *scic = scic_sds_phy_get_controller(sci_phy);
1909 struct isci_host *ihost = scic_to_ihost(scic);
1910
1911 /*
1912 * @todo We need to get to the controller to place this PE in a
1913 * reset state
1914 */
1915
1916 scic_sds_phy_set_base_state_handlers(sci_phy,
1917 SCI_BASE_PHY_STATE_STOPPED);
1918
1919 if (sci_phy->sata_timeout_timer != NULL) {
1920 isci_del_timer(ihost, sci_phy->sata_timeout_timer);
1921
1922 sci_phy->sata_timeout_timer = NULL;
1923 }
1924
1925 scu_link_layer_stop_protocol_engine(sci_phy);
1926
1927 if (sci_phy->state_machine.previous_state_id !=
1928 SCI_BASE_PHY_STATE_INITIAL)
1929 scic_sds_controller_link_down(
1930 scic_sds_phy_get_controller(sci_phy),
1931 scic_sds_phy_get_port(sci_phy),
1932 sci_phy);
1933 }
1934
1935 /**
1936 *
1937 * @object: This is the object which is cast to a struct scic_sds_phy object.
1938 *
1939 * This method will perform the actions required by the struct scic_sds_phy on
1940 * entering the SCI_BASE_PHY_STATE_STARTING. - This function sets the state
1941 * handlers for the phy object base state machine starting state. - The SCU
1942 * hardware is requested to start OOB/SN on this protocl engine. - The phy
1943 * starting substate machine is started. - If the previous state was the ready
1944 * state then the struct scic_sds_controller is informed that the phy has gone link
1945 * down. none
1946 */
1947 static void scic_sds_phy_starting_state_enter(void *object)
1948 {
1949 struct scic_sds_phy *sci_phy = object;
1950
1951 scic_sds_phy_set_base_state_handlers(sci_phy, SCI_BASE_PHY_STATE_STARTING);
1952
1953 scu_link_layer_stop_protocol_engine(sci_phy);
1954 scu_link_layer_start_oob(sci_phy);
1955
1956 /* We don't know what kind of phy we are going to be just yet */
1957 sci_phy->protocol = SCIC_SDS_PHY_PROTOCOL_UNKNOWN;
1958 sci_phy->bcn_received_while_port_unassigned = false;
1959
1960 if (sci_phy->state_machine.previous_state_id
1961 == SCI_BASE_PHY_STATE_READY) {
1962 scic_sds_controller_link_down(
1963 scic_sds_phy_get_controller(sci_phy),
1964 scic_sds_phy_get_port(sci_phy),
1965 sci_phy
1966 );
1967 }
1968
1969 sci_base_state_machine_change_state(&sci_phy->state_machine,
1970 SCIC_SDS_PHY_STARTING_SUBSTATE_INITIAL);
1971 }
1972
1973 /**
1974 *
1975 * @object: This is the object which is cast to a struct scic_sds_phy object.
1976 *
1977 * This method will perform the actions required by the struct scic_sds_phy on
1978 * entering the SCI_BASE_PHY_STATE_READY. - This function sets the state
1979 * handlers for the phy object base state machine ready state. - The SCU
1980 * hardware protocol engine is resumed. - The struct scic_sds_controller is informed
1981 * that the phy object has gone link up. none
1982 */
1983 static void scic_sds_phy_ready_state_enter(void *object)
1984 {
1985 struct scic_sds_phy *sci_phy = object;
1986
1987 scic_sds_phy_set_base_state_handlers(sci_phy, SCI_BASE_PHY_STATE_READY);
1988
1989 scic_sds_controller_link_up(
1990 scic_sds_phy_get_controller(sci_phy),
1991 scic_sds_phy_get_port(sci_phy),
1992 sci_phy
1993 );
1994 }
1995
1996 /**
1997 *
1998 * @object: This is the object which is cast to a struct scic_sds_phy object.
1999 *
2000 * This method will perform the actions required by the struct scic_sds_phy on exiting
2001 * the SCI_BASE_PHY_STATE_INITIAL. This function suspends the SCU hardware
2002 * protocol engine represented by this struct scic_sds_phy object. none
2003 */
2004 static void scic_sds_phy_ready_state_exit(void *object)
2005 {
2006 struct scic_sds_phy *sci_phy = object;
2007
2008 scic_sds_phy_suspend(sci_phy);
2009 }
2010
2011 /**
2012 *
2013 * @object: This is the object which is cast to a struct scic_sds_phy object.
2014 *
2015 * This method will perform the actions required by the struct scic_sds_phy on
2016 * entering the SCI_BASE_PHY_STATE_RESETTING. - This function sets the state
2017 * handlers for the phy object base state machine resetting state. none
2018 */
2019 static void scic_sds_phy_resetting_state_enter(void *object)
2020 {
2021 struct scic_sds_phy *sci_phy = object;
2022
2023 scic_sds_phy_set_base_state_handlers(sci_phy, SCI_BASE_PHY_STATE_RESETTING);
2024
2025 /*
2026 * The phy is being reset, therefore deactivate it from the port.
2027 * In the resetting state we don't notify the user regarding
2028 * link up and link down notifications. */
2029 scic_sds_port_deactivate_phy(sci_phy->owning_port, sci_phy, false);
2030
2031 if (sci_phy->protocol == SCIC_SDS_PHY_PROTOCOL_SAS) {
2032 scu_link_layer_tx_hard_reset(sci_phy);
2033 } else {
2034 /*
2035 * The SCU does not need to have a discrete reset state so
2036 * just go back to the starting state.
2037 */
2038 sci_base_state_machine_change_state(
2039 &sci_phy->state_machine,
2040 SCI_BASE_PHY_STATE_STARTING);
2041 }
2042 }
2043
2044 /**
2045 *
2046 * @object: This is the object which is cast to a struct scic_sds_phy object.
2047 *
2048 * This method will perform the actions required by the struct scic_sds_phy on
2049 * entering the SCI_BASE_PHY_STATE_FINAL. - This function sets the state
2050 * handlers for the phy object base state machine final state. none
2051 */
2052 static void scic_sds_phy_final_state_enter(void *object)
2053 {
2054 struct scic_sds_phy *sci_phy = object;
2055
2056 scic_sds_phy_set_base_state_handlers(sci_phy, SCI_BASE_PHY_STATE_FINAL);
2057
2058 /* Nothing to do here */
2059 }
2060
2061 /* --------------------------------------------------------------------------- */
2062
2063 static const struct sci_base_state scic_sds_phy_state_table[] = {
2064 [SCI_BASE_PHY_STATE_INITIAL] = {
2065 .enter_state = scic_sds_phy_initial_state_enter,
2066 },
2067 [SCI_BASE_PHY_STATE_STOPPED] = {
2068 .enter_state = scic_sds_phy_stopped_state_enter,
2069 },
2070 [SCI_BASE_PHY_STATE_STARTING] = {
2071 .enter_state = scic_sds_phy_starting_state_enter,
2072 },
2073 [SCIC_SDS_PHY_STARTING_SUBSTATE_INITIAL] = {
2074 .enter_state = scic_sds_phy_starting_initial_substate_enter,
2075 },
2076 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_OSSP_EN] = {
2077 .enter_state = scic_sds_phy_starting_await_ossp_en_substate_enter,
2078 },
2079 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_SPEED_EN] = {
2080 .enter_state = scic_sds_phy_starting_await_sas_speed_en_substate_enter,
2081 },
2082 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_IAF_UF] = {
2083 .enter_state = scic_sds_phy_starting_await_iaf_uf_substate_enter,
2084 },
2085 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SAS_POWER] = {
2086 .enter_state = scic_sds_phy_starting_await_sas_power_substate_enter,
2087 .exit_state = scic_sds_phy_starting_await_sas_power_substate_exit,
2088 },
2089 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_POWER] = {
2090 .enter_state = scic_sds_phy_starting_await_sata_power_substate_enter,
2091 .exit_state = scic_sds_phy_starting_await_sata_power_substate_exit
2092 },
2093 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_PHY_EN] = {
2094 .enter_state = scic_sds_phy_starting_await_sata_phy_substate_enter,
2095 .exit_state = scic_sds_phy_starting_await_sata_phy_substate_exit
2096 },
2097 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SATA_SPEED_EN] = {
2098 .enter_state = scic_sds_phy_starting_await_sata_speed_substate_enter,
2099 .exit_state = scic_sds_phy_starting_await_sata_speed_substate_exit
2100 },
2101 [SCIC_SDS_PHY_STARTING_SUBSTATE_AWAIT_SIG_FIS_UF] = {
2102 .enter_state = scic_sds_phy_starting_await_sig_fis_uf_substate_enter,
2103 .exit_state = scic_sds_phy_starting_await_sig_fis_uf_substate_exit
2104 },
2105 [SCIC_SDS_PHY_STARTING_SUBSTATE_FINAL] = {
2106 .enter_state = scic_sds_phy_starting_final_substate_enter,
2107 },
2108 [SCI_BASE_PHY_STATE_READY] = {
2109 .enter_state = scic_sds_phy_ready_state_enter,
2110 .exit_state = scic_sds_phy_ready_state_exit,
2111 },
2112 [SCI_BASE_PHY_STATE_RESETTING] = {
2113 .enter_state = scic_sds_phy_resetting_state_enter,
2114 },
2115 [SCI_BASE_PHY_STATE_FINAL] = {
2116 .enter_state = scic_sds_phy_final_state_enter,
2117 },
2118 };
2119
2120 void scic_sds_phy_construct(struct scic_sds_phy *sci_phy,
2121 struct scic_sds_port *owning_port, u8 phy_index)
2122 {
2123 sci_base_state_machine_construct(&sci_phy->state_machine,
2124 sci_phy,
2125 scic_sds_phy_state_table,
2126 SCI_BASE_PHY_STATE_INITIAL);
2127
2128 sci_base_state_machine_start(&sci_phy->state_machine);
2129
2130 /* Copy the rest of the input data to our locals */
2131 sci_phy->owning_port = owning_port;
2132 sci_phy->phy_index = phy_index;
2133 sci_phy->bcn_received_while_port_unassigned = false;
2134 sci_phy->protocol = SCIC_SDS_PHY_PROTOCOL_UNKNOWN;
2135 sci_phy->link_layer_registers = NULL;
2136 sci_phy->max_negotiated_speed = SAS_LINK_RATE_UNKNOWN;
2137 sci_phy->sata_timeout_timer = NULL;
2138 }
2139
2140 void isci_phy_init(struct isci_phy *iphy, struct isci_host *ihost, int index)
2141 {
2142 union scic_oem_parameters oem;
2143 u64 sci_sas_addr;
2144 __be64 sas_addr;
2145
2146 scic_oem_parameters_get(&ihost->sci, &oem);
2147 sci_sas_addr = oem.sds1.phys[index].sas_address.high;
2148 sci_sas_addr <<= 32;
2149 sci_sas_addr |= oem.sds1.phys[index].sas_address.low;
2150 sas_addr = cpu_to_be64(sci_sas_addr);
2151 memcpy(iphy->sas_addr, &sas_addr, sizeof(sas_addr));
2152
2153 iphy->isci_port = NULL;
2154 iphy->sas_phy.enabled = 0;
2155 iphy->sas_phy.id = index;
2156 iphy->sas_phy.sas_addr = &iphy->sas_addr[0];
2157 iphy->sas_phy.frame_rcvd = (u8 *)&iphy->frame_rcvd;
2158 iphy->sas_phy.ha = &ihost->sas_ha;
2159 iphy->sas_phy.lldd_phy = iphy;
2160 iphy->sas_phy.enabled = 1;
2161 iphy->sas_phy.class = SAS;
2162 iphy->sas_phy.iproto = SAS_PROTOCOL_ALL;
2163 iphy->sas_phy.tproto = 0;
2164 iphy->sas_phy.type = PHY_TYPE_PHYSICAL;
2165 iphy->sas_phy.role = PHY_ROLE_INITIATOR;
2166 iphy->sas_phy.oob_mode = OOB_NOT_CONNECTED;
2167 iphy->sas_phy.linkrate = SAS_LINK_RATE_UNKNOWN;
2168 memset(&iphy->frame_rcvd, 0, sizeof(iphy->frame_rcvd));
2169 }
2170
2171
2172 /**
2173 * isci_phy_control() - This function is one of the SAS Domain Template
2174 * functions. This is a phy management function.
2175 * @phy: This parameter specifies the sphy being controlled.
2176 * @func: This parameter specifies the phy control function being invoked.
2177 * @buf: This parameter is specific to the phy function being invoked.
2178 *
2179 * status, zero indicates success.
2180 */
2181 int isci_phy_control(struct asd_sas_phy *sas_phy,
2182 enum phy_func func,
2183 void *buf)
2184 {
2185 int ret = 0;
2186 struct isci_phy *iphy = sas_phy->lldd_phy;
2187 struct isci_port *iport = iphy->isci_port;
2188 struct isci_host *ihost = sas_phy->ha->lldd_ha;
2189 unsigned long flags;
2190
2191 dev_dbg(&ihost->pdev->dev,
2192 "%s: phy %p; func %d; buf %p; isci phy %p, port %p\n",
2193 __func__, sas_phy, func, buf, iphy, iport);
2194
2195 switch (func) {
2196 case PHY_FUNC_DISABLE:
2197 spin_lock_irqsave(&ihost->scic_lock, flags);
2198 scic_sds_phy_stop(&iphy->sci);
2199 spin_unlock_irqrestore(&ihost->scic_lock, flags);
2200 break;
2201
2202 case PHY_FUNC_LINK_RESET:
2203 spin_lock_irqsave(&ihost->scic_lock, flags);
2204 scic_sds_phy_stop(&iphy->sci);
2205 scic_sds_phy_start(&iphy->sci);
2206 spin_unlock_irqrestore(&ihost->scic_lock, flags);
2207 break;
2208
2209 case PHY_FUNC_HARD_RESET:
2210 if (!iport)
2211 return -ENODEV;
2212
2213 /* Perform the port reset. */
2214 ret = isci_port_perform_hard_reset(ihost, iport, iphy);
2215
2216 break;
2217
2218 default:
2219 dev_dbg(&ihost->pdev->dev,
2220 "%s: phy %p; func %d NOT IMPLEMENTED!\n",
2221 __func__, sas_phy, func);
2222 ret = -ENOSYS;
2223 break;
2224 }
2225 return ret;
2226 }
This page took 0.11385 seconds and 5 git commands to generate.