isci: uplevel register hardware data structures and unsolicited frame handling
[pandora-kernel.git] / drivers / scsi / isci / core / scic_sds_port.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 "host.h"
57 #include "scic_phy.h"
58 #include "scic_port.h"
59 #include "scic_sds_phy.h"
60 #include "scic_sds_port.h"
61 #include "remote_device.h"
62 #include "remote_node_context.h"
63 #include "scic_sds_request.h"
64 #include "registers.h"
65 #include "timers.h"
66
67 #define SCIC_SDS_PORT_MIN_TIMER_COUNT  (SCI_MAX_PORTS)
68 #define SCIC_SDS_PORT_MAX_TIMER_COUNT  (SCI_MAX_PORTS)
69
70 #define SCIC_SDS_PORT_HARD_RESET_TIMEOUT  (1000)
71 #define SCU_DUMMY_INDEX    (0xFFFF)
72
73
74 /**
75  *
76  * @sci_port: This is the port object to which the phy is being assigned.
77  * @phy_index: This is the phy index that is being assigned to the port.
78  *
79  * This method will return a true value if the specified phy can be assigned to
80  * this port The following is a list of phys for each port that are allowed: -
81  * Port 0 - 3 2 1 0 - Port 1 -     1 - Port 2 - 3 2 - Port 3 - 3 This method
82  * doesn't preclude all configurations.  It merely ensures that a phy is part
83  * of the allowable set of phy identifiers for that port.  For example, one
84  * could assign phy 3 to port 0 and no other phys.  Please refer to
85  * scic_sds_port_is_phy_mask_valid() for information regarding whether the
86  * phy_mask for a port can be supported. bool true if this is a valid phy
87  * assignment for the port false if this is not a valid phy assignment for the
88  * port
89  */
90 bool scic_sds_port_is_valid_phy_assignment(
91         struct scic_sds_port *sci_port,
92         u32 phy_index)
93 {
94         /* Initialize to invalid value. */
95         u32 existing_phy_index = SCI_MAX_PHYS;
96         u32 index;
97
98         if ((sci_port->physical_port_index == 1) && (phy_index != 1)) {
99                 return false;
100         }
101
102         if (sci_port->physical_port_index == 3 && phy_index != 3) {
103                 return false;
104         }
105
106         if (
107                 (sci_port->physical_port_index == 2)
108                 && ((phy_index == 0) || (phy_index == 1))
109                 ) {
110                 return false;
111         }
112
113         for (index = 0; index < SCI_MAX_PHYS; index++) {
114                 if ((sci_port->phy_table[index] != NULL)
115                     && (index != phy_index)) {
116                         existing_phy_index = index;
117                 }
118         }
119
120         /*
121          * Ensure that all of the phys in the port are capable of
122          * operating at the same maximum link rate. */
123         if (
124                 (existing_phy_index < SCI_MAX_PHYS)
125                 && (sci_port->owning_controller->user_parameters.sds1.phys[
126                             phy_index].max_speed_generation !=
127                     sci_port->owning_controller->user_parameters.sds1.phys[
128                             existing_phy_index].max_speed_generation)
129                 )
130                 return false;
131
132         return true;
133 }
134
135 /**
136  * This method requests a list (mask) of the phys contained in the supplied SAS
137  *    port.
138  * @sci_port: a handle corresponding to the SAS port for which to return the
139  *    phy mask.
140  *
141  * Return a bit mask indicating which phys are a part of this port. Each bit
142  * corresponds to a phy identifier (e.g. bit 0 = phy id 0).
143  */
144 static u32 scic_sds_port_get_phys(struct scic_sds_port *sci_port)
145 {
146         u32 index;
147         u32 mask;
148
149         mask = 0;
150
151         for (index = 0; index < SCI_MAX_PHYS; index++) {
152                 if (sci_port->phy_table[index] != NULL) {
153                         mask |= (1 << index);
154                 }
155         }
156
157         return mask;
158 }
159
160 /**
161  *
162  * @sci_port: This is the port object for which to determine if the phy mask
163  *    can be supported.
164  *
165  * This method will return a true value if the port's phy mask can be supported
166  * by the SCU. The following is a list of valid PHY mask configurations for
167  * each port: - Port 0 - [[3  2] 1] 0 - Port 1 -        [1] - Port 2 - [[3] 2]
168  * - Port 3 -  [3] This method returns a boolean indication specifying if the
169  * phy mask can be supported. true if this is a valid phy assignment for the
170  * port false if this is not a valid phy assignment for the port
171  */
172 static bool scic_sds_port_is_phy_mask_valid(
173         struct scic_sds_port *sci_port,
174         u32 phy_mask)
175 {
176         if (sci_port->physical_port_index == 0) {
177                 if (((phy_mask & 0x0F) == 0x0F)
178                     || ((phy_mask & 0x03) == 0x03)
179                     || ((phy_mask & 0x01) == 0x01)
180                     || (phy_mask == 0))
181                         return true;
182         } else if (sci_port->physical_port_index == 1) {
183                 if (((phy_mask & 0x02) == 0x02)
184                     || (phy_mask == 0))
185                         return true;
186         } else if (sci_port->physical_port_index == 2) {
187                 if (((phy_mask & 0x0C) == 0x0C)
188                     || ((phy_mask & 0x04) == 0x04)
189                     || (phy_mask == 0))
190                         return true;
191         } else if (sci_port->physical_port_index == 3) {
192                 if (((phy_mask & 0x08) == 0x08)
193                     || (phy_mask == 0))
194                         return true;
195         }
196
197         return false;
198 }
199
200 /**
201  *
202  * @sci_port: This parameter specifies the port from which to return a
203  *    connected phy.
204  *
205  * This method retrieves a currently active (i.e. connected) phy contained in
206  * the port.  Currently, the lowest order phy that is connected is returned.
207  * This method returns a pointer to a SCIS_SDS_PHY object. NULL This value is
208  * returned if there are no currently active (i.e. connected to a remote end
209  * point) phys contained in the port. All other values specify a struct scic_sds_phy
210  * object that is active in the port.
211  */
212 static struct scic_sds_phy *scic_sds_port_get_a_connected_phy(
213         struct scic_sds_port *sci_port
214         ) {
215         u32 index;
216         struct scic_sds_phy *phy;
217
218         for (index = 0; index < SCI_MAX_PHYS; index++) {
219                 /*
220                  * Ensure that the phy is both part of the port and currently
221                  * connected to the remote end-point. */
222                 phy = sci_port->phy_table[index];
223                 if (
224                         (phy != NULL)
225                         && scic_sds_port_active_phy(sci_port, phy)
226                         ) {
227                         return phy;
228                 }
229         }
230
231         return NULL;
232 }
233
234 /**
235  * scic_sds_port_set_phy() -
236  * @out]: port The port object to which the phy assignement is being made.
237  * @out]: phy The phy which is being assigned to the port.
238  *
239  * This method attempts to make the assignment of the phy to the port. If
240  * successful the phy is assigned to the ports phy table. bool true if the phy
241  * assignment can be made. false if the phy assignement can not be made. This
242  * is a functional test that only fails if the phy is currently assigned to a
243  * different port.
244  */
245 static enum sci_status scic_sds_port_set_phy(
246         struct scic_sds_port *port,
247         struct scic_sds_phy *phy)
248 {
249         /*
250          * Check to see if we can add this phy to a port
251          * that means that the phy is not part of a port and that the port does
252          * not already have a phy assinged to the phy index. */
253         if (
254                 (port->phy_table[phy->phy_index] == NULL)
255                 && (scic_sds_phy_get_port(phy) == NULL)
256                 && scic_sds_port_is_valid_phy_assignment(port, phy->phy_index)
257                 ) {
258                 /*
259                  * Phy is being added in the stopped state so we are in MPC mode
260                  * make logical port index = physical port index */
261                 port->logical_port_index = port->physical_port_index;
262                 port->phy_table[phy->phy_index] = phy;
263                 scic_sds_phy_set_port(phy, port);
264
265                 return SCI_SUCCESS;
266         }
267
268         return SCI_FAILURE;
269 }
270
271 /**
272  * scic_sds_port_clear_phy() -
273  * @out]: port The port from which the phy is being cleared.
274  * @out]: phy The phy being cleared from the port.
275  *
276  * This method will clear the phy assigned to this port.  This method fails if
277  * this phy is not currently assinged to this port. bool true if the phy is
278  * removed from the port. false if this phy is not assined to this port.
279  */
280 static enum sci_status scic_sds_port_clear_phy(
281         struct scic_sds_port *port,
282         struct scic_sds_phy *phy)
283 {
284         /* Make sure that this phy is part of this port */
285         if (port->phy_table[phy->phy_index] == phy &&
286             scic_sds_phy_get_port(phy) == port) {
287                 struct scic_sds_controller *scic = port->owning_controller;
288                 struct isci_host *ihost = scic_to_ihost(scic);
289
290                 /* Yep it is assigned to this port so remove it */
291                 scic_sds_phy_set_port(phy, &ihost->ports[SCI_MAX_PORTS].sci);
292                 port->phy_table[phy->phy_index] = NULL;
293                 return SCI_SUCCESS;
294         }
295
296         return SCI_FAILURE;
297 }
298
299 /**
300  * scic_sds_port_add_phy() -
301  * @sci_port: This parameter specifies the port in which the phy will be added.
302  * @sci_phy: This parameter is the phy which is to be added to the port.
303  *
304  * This method will add a PHY to the selected port. This method returns an
305  * enum sci_status. SCI_SUCCESS the phy has been added to the port. Any other status
306  * is failre to add the phy to the port.
307  */
308 enum sci_status scic_sds_port_add_phy(
309         struct scic_sds_port *sci_port,
310         struct scic_sds_phy *sci_phy)
311 {
312         return sci_port->state_handlers->add_phy_handler(
313                        sci_port, sci_phy);
314 }
315
316
317 /**
318  * scic_sds_port_remove_phy() -
319  * @sci_port: This parameter specifies the port in which the phy will be added.
320  * @sci_phy: This parameter is the phy which is to be added to the port.
321  *
322  * This method will remove the PHY from the selected PORT. This method returns
323  * an enum sci_status. SCI_SUCCESS the phy has been removed from the port. Any other
324  * status is failre to add the phy to the port.
325  */
326 enum sci_status scic_sds_port_remove_phy(
327         struct scic_sds_port *sci_port,
328         struct scic_sds_phy *sci_phy)
329 {
330         return sci_port->state_handlers->remove_phy_handler(
331                        sci_port, sci_phy);
332 }
333
334 /**
335  * This method requests the SAS address for the supplied SAS port from the SCI
336  *    implementation.
337  * @sci_port: a handle corresponding to the SAS port for which to return the
338  *    SAS address.
339  * @sas_address: This parameter specifies a pointer to a SAS address structure
340  *    into which the core will copy the SAS address for the port.
341  *
342  */
343 void scic_sds_port_get_sas_address(
344         struct scic_sds_port *sci_port,
345         struct sci_sas_address *sas_address)
346 {
347         u32 index;
348
349         sas_address->high = 0;
350         sas_address->low  = 0;
351
352         for (index = 0; index < SCI_MAX_PHYS; index++) {
353                 if (sci_port->phy_table[index] != NULL) {
354                         scic_sds_phy_get_sas_address(sci_port->phy_table[index], sas_address);
355                 }
356         }
357 }
358
359 /*
360  * This function will indicate which protocols are supported by this port.
361  * @sci_port: a handle corresponding to the SAS port for which to return the
362  *    supported protocols.
363  * @protocols: This parameter specifies a pointer to a data structure
364  *    which the core will copy the protocol values for the port from the
365  *    transmit_identification register.
366  */
367 static void
368 scic_sds_port_get_protocols(struct scic_sds_port *sci_port,
369                             struct scic_phy_proto *protocols)
370 {
371         u8 index;
372
373         protocols->all = 0;
374
375         for (index = 0; index < SCI_MAX_PHYS; index++) {
376                 if (sci_port->phy_table[index] != NULL) {
377                         scic_sds_phy_get_protocols(sci_port->phy_table[index],
378                                                    protocols);
379                 }
380         }
381 }
382
383 /*
384  * This function requests the SAS address for the device directly attached to
385  *    this SAS port.
386  * @sci_port: a handle corresponding to the SAS port for which to return the
387  *    SAS address.
388  * @sas_address: This parameter specifies a pointer to a SAS address structure
389  *    into which the core will copy the SAS address for the device directly
390  *    attached to the port.
391  *
392  */
393 void scic_sds_port_get_attached_sas_address(
394         struct scic_sds_port *sci_port,
395         struct sci_sas_address *sas_address)
396 {
397         struct scic_sds_phy *sci_phy;
398
399         /*
400          * Ensure that the phy is both part of the port and currently
401          * connected to the remote end-point.
402          */
403         sci_phy = scic_sds_port_get_a_connected_phy(sci_port);
404         if (sci_phy) {
405                 if (sci_phy->protocol != SCIC_SDS_PHY_PROTOCOL_SATA) {
406                         scic_sds_phy_get_attached_sas_address(sci_phy,
407                                                               sas_address);
408                 } else {
409                         scic_sds_phy_get_sas_address(sci_phy, sas_address);
410                         sas_address->low += sci_phy->phy_index;
411                 }
412         } else {
413                 sas_address->high = 0;
414                 sas_address->low  = 0;
415         }
416 }
417
418 /**
419  * scic_sds_port_construct_dummy_rnc() - create dummy rnc for si workaround
420  *
421  * @sci_port: logical port on which we need to create the remote node context
422  * @rni: remote node index for this remote node context.
423  *
424  * This routine will construct a dummy remote node context data structure
425  * This structure will be posted to the hardware to work around a scheduler
426  * error in the hardware.
427  */
428 static void scic_sds_port_construct_dummy_rnc(struct scic_sds_port *sci_port, u16 rni)
429 {
430         union scu_remote_node_context *rnc;
431
432         rnc = &sci_port->owning_controller->remote_node_context_table[rni];
433
434         memset(rnc, 0, sizeof(union scu_remote_node_context));
435
436         rnc->ssp.remote_sas_address_hi = 0;
437         rnc->ssp.remote_sas_address_lo = 0;
438
439         rnc->ssp.remote_node_index = rni;
440         rnc->ssp.remote_node_port_width = 1;
441         rnc->ssp.logical_port_index = sci_port->physical_port_index;
442
443         rnc->ssp.nexus_loss_timer_enable = false;
444         rnc->ssp.check_bit = false;
445         rnc->ssp.is_valid = true;
446         rnc->ssp.is_remote_node_context = true;
447         rnc->ssp.function_number = 0;
448         rnc->ssp.arbitration_wait_time = 0;
449 }
450
451 /**
452  * scic_sds_port_construct_dummy_task() - create dummy task for si workaround
453  * @sci_port The logical port on which we need to create the
454  *            remote node context.
455  *            context.
456  * @tci The remote node index for this remote node context.
457  *
458  * This routine will construct a dummy task context data structure.  This
459  * structure will be posted to the hardwre to work around a scheduler error
460  * in the hardware.
461  *
462  */
463 static void scic_sds_port_construct_dummy_task(struct scic_sds_port *sci_port, u16 tci)
464 {
465         struct scu_task_context *task_context;
466
467         task_context = scic_sds_controller_get_task_context_buffer(sci_port->owning_controller, tci);
468
469         memset(task_context, 0, sizeof(struct scu_task_context));
470
471         task_context->abort = 0;
472         task_context->priority = 0;
473         task_context->initiator_request = 1;
474         task_context->connection_rate = 1;
475         task_context->protocol_engine_index = 0;
476         task_context->logical_port_index = sci_port->physical_port_index;
477         task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_SSP;
478         task_context->task_index = scic_sds_io_tag_get_index(tci);
479         task_context->valid = SCU_TASK_CONTEXT_VALID;
480         task_context->context_type = SCU_TASK_CONTEXT_TYPE;
481
482         task_context->remote_node_index = sci_port->reserved_rni;
483         task_context->command_code = 0;
484
485         task_context->link_layer_control = 0;
486         task_context->do_not_dma_ssp_good_response = 1;
487         task_context->strict_ordering = 0;
488         task_context->control_frame = 0;
489         task_context->timeout_enable = 0;
490         task_context->block_guard_enable = 0;
491
492         task_context->address_modifier = 0;
493
494         task_context->task_phase = 0x01;
495 }
496
497 static void scic_sds_port_destroy_dummy_resources(struct scic_sds_port *sci_port)
498 {
499         struct scic_sds_controller *scic = sci_port->owning_controller;
500
501         if (sci_port->reserved_tci != SCU_DUMMY_INDEX)
502                 scic_controller_free_io_tag(scic, sci_port->reserved_tci);
503
504         if (sci_port->reserved_rni != SCU_DUMMY_INDEX)
505                 scic_sds_remote_node_table_release_remote_node_index(&scic->available_remote_nodes,
506                                                                      1, sci_port->reserved_rni);
507
508         sci_port->reserved_rni = SCU_DUMMY_INDEX;
509         sci_port->reserved_tci = SCU_DUMMY_INDEX;
510 }
511
512 /**
513  * This method performs initialization of the supplied port. Initialization
514  *    includes: - state machine initialization - member variable initialization
515  *    - configuring the phy_mask
516  * @sci_port:
517  * @transport_layer_registers:
518  * @port_task_scheduler_registers:
519  * @port_configuration_regsiter:
520  *
521  * enum sci_status SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION This value is returned
522  * if the phy being added to the port
523  */
524 enum sci_status scic_sds_port_initialize(
525         struct scic_sds_port *sci_port,
526         void __iomem *port_task_scheduler_registers,
527         void __iomem *port_configuration_regsiter,
528         void __iomem *viit_registers)
529 {
530         sci_port->port_task_scheduler_registers  = port_task_scheduler_registers;
531         sci_port->port_pe_configuration_register = port_configuration_regsiter;
532         sci_port->viit_registers                 = viit_registers;
533
534         return SCI_SUCCESS;
535 }
536
537 /**
538  * scic_port_get_properties() - This method simply returns the properties
539  *    regarding the port, such as: physical index, protocols, sas address, etc.
540  * @port: this parameter specifies the port for which to retrieve the physical
541  *    index.
542  * @properties: This parameter specifies the properties structure into which to
543  *    copy the requested information.
544  *
545  * Indicate if the user specified a valid port. SCI_SUCCESS This value is
546  * returned if the specified port was valid. SCI_FAILURE_INVALID_PORT This
547  * value is returned if the specified port is not valid.  When this value is
548  * returned, no data is copied to the properties output parameter.
549  */
550 enum sci_status scic_port_get_properties(
551         struct scic_sds_port *port,
552         struct scic_port_properties *prop)
553 {
554         if ((port == NULL) ||
555             (port->logical_port_index == SCIC_SDS_DUMMY_PORT))
556                 return SCI_FAILURE_INVALID_PORT;
557
558         prop->index    = port->logical_port_index;
559         prop->phy_mask = scic_sds_port_get_phys(port);
560         scic_sds_port_get_sas_address(port, &prop->local.sas_address);
561         scic_sds_port_get_protocols(port, &prop->local.protocols);
562         scic_sds_port_get_attached_sas_address(port, &prop->remote.sas_address);
563
564         return SCI_SUCCESS;
565 }
566
567 /**
568  * scic_port_hard_reset() - perform port hard reset
569  * @port: a handle corresponding to the SAS port to be hard reset.
570  * @reset_timeout: This parameter specifies the number of milliseconds in which
571  *    the port reset operation should complete.
572  *
573  * The SCI User callback in scic_user_callbacks_t will only be called once for
574  * each phy in the SAS Port at completion of the hard reset sequence. Return a
575  * status indicating whether the hard reset started successfully. SCI_SUCCESS
576  * This value is returned if the hard reset operation started successfully.
577  */
578 enum sci_status scic_port_hard_reset(
579         struct scic_sds_port *port,
580         u32 reset_timeout)
581 {
582         return port->state_handlers->reset_handler(
583                        port, reset_timeout);
584 }
585
586 /**
587  * This method assigns the direct attached device ID for this port.
588  *
589  * @param[in] sci_port The port for which the direct attached device id is to
590  *       be assigned.
591  * @param[in] device_id The direct attached device ID to assign to the port.
592  *       This will be the RNi for the device
593  */
594 void scic_sds_port_setup_transports(
595         struct scic_sds_port *sci_port,
596         u32 device_id)
597 {
598         u8 index;
599
600         for (index = 0; index < SCI_MAX_PHYS; index++) {
601                 if (sci_port->active_phy_mask & (1 << index))
602                         scic_sds_phy_setup_transport(sci_port->phy_table[index], device_id);
603         }
604 }
605
606 /**
607  *
608  * @sci_port: This is the port on which the phy should be enabled.
609  * @sci_phy: This is the specific phy which to enable.
610  * @do_notify_user: This parameter specifies whether to inform the user (via
611  *    scic_cb_port_link_up()) as to the fact that a new phy as become ready.
612  *
613  * This function will activate the phy in the port.
614  * Activation includes: - adding
615  * the phy to the port - enabling the Protocol Engine in the silicon. -
616  * notifying the user that the link is up. none
617  */
618 static void scic_sds_port_activate_phy(struct scic_sds_port *sci_port,
619                                        struct scic_sds_phy *sci_phy,
620                                        bool do_notify_user)
621 {
622         struct scic_sds_controller *scic = sci_port->owning_controller;
623         struct isci_host *ihost = scic_to_ihost(scic);
624
625         if (sci_phy->protocol != SCIC_SDS_PHY_PROTOCOL_SATA)
626                 scic_sds_phy_resume(sci_phy);
627
628         sci_port->active_phy_mask |= 1 << sci_phy->phy_index;
629
630         scic_sds_controller_clear_invalid_phy(scic, sci_phy);
631
632         if (do_notify_user == true)
633                 isci_port_link_up(ihost, sci_port, sci_phy);
634 }
635
636 void scic_sds_port_deactivate_phy(struct scic_sds_port *sci_port,
637                                   struct scic_sds_phy *sci_phy,
638                                   bool do_notify_user)
639 {
640         struct scic_sds_controller *scic = scic_sds_port_get_controller(sci_port);
641         struct isci_port *iport = sci_port_to_iport(sci_port);
642         struct isci_host *ihost = scic_to_ihost(scic);
643         struct isci_phy *iphy = sci_phy_to_iphy(sci_phy);
644
645         sci_port->active_phy_mask &= ~(1 << sci_phy->phy_index);
646
647         sci_phy->max_negotiated_speed = SAS_LINK_RATE_UNKNOWN;
648
649         /* Re-assign the phy back to the LP as if it were a narrow port */
650         writel(sci_phy->phy_index,
651                 &sci_port->port_pe_configuration_register[sci_phy->phy_index]);
652
653         if (do_notify_user == true)
654                 isci_port_link_down(ihost, iphy, iport);
655 }
656
657 /**
658  *
659  * @sci_port: This is the port on which the phy should be disabled.
660  * @sci_phy: This is the specific phy which to disabled.
661  *
662  * This function will disable the phy and report that the phy is not valid for
663  * this port object. None
664  */
665 static void scic_sds_port_invalid_link_up(struct scic_sds_port *sci_port,
666                                           struct scic_sds_phy *sci_phy)
667 {
668         struct scic_sds_controller *scic = sci_port->owning_controller;
669
670         /*
671          * Check to see if we have alreay reported this link as bad and if
672          * not go ahead and tell the SCI_USER that we have discovered an
673          * invalid link.
674          */
675         if ((scic->invalid_phy_mask & (1 << sci_phy->phy_index)) == 0) {
676                 scic_sds_controller_set_invalid_phy(scic, sci_phy);
677                 dev_warn(&scic_to_ihost(scic)->pdev->dev, "Invalid link up!\n");
678         }
679 }
680
681 /**
682  * scic_sds_port_general_link_up_handler - phy can be assigned to port?
683  * @sci_port: scic_sds_port object for which has a phy that has gone link up.
684  * @sci_phy: This is the struct scic_sds_phy object that has gone link up.
685  * @do_notify_user: This parameter specifies whether to inform the user (via
686  *    scic_cb_port_link_up()) as to the fact that a new phy as become ready.
687  *
688  * Determine if this phy can be assigned to this
689  * port . If the phy is not a valid PHY for
690  * this port then the function will notify the user. A PHY can only be
691  * part of a port if it's attached SAS ADDRESS is the same as all other PHYs in
692  * the same port. none
693  */
694 static void scic_sds_port_general_link_up_handler(struct scic_sds_port *sci_port,
695                                                   struct scic_sds_phy *sci_phy,
696                                                   bool do_notify_user)
697 {
698         struct sci_sas_address port_sas_address;
699         struct sci_sas_address phy_sas_address;
700
701         scic_sds_port_get_attached_sas_address(sci_port, &port_sas_address);
702         scic_sds_phy_get_attached_sas_address(sci_phy, &phy_sas_address);
703
704         /* If the SAS address of the new phy matches the SAS address of
705          * other phys in the port OR this is the first phy in the port,
706          * then activate the phy and allow it to be used for operations
707          * in this port.
708          */
709         if ((phy_sas_address.high == port_sas_address.high &&
710              phy_sas_address.low  == port_sas_address.low) ||
711             sci_port->active_phy_mask == 0) {
712                 struct sci_base_state_machine *sm = &sci_port->state_machine;
713
714                 scic_sds_port_activate_phy(sci_port, sci_phy, do_notify_user);
715                 if (sm->current_state_id == SCI_BASE_PORT_STATE_RESETTING)
716                         sci_base_state_machine_change_state(sm, SCI_BASE_PORT_STATE_READY);
717         } else
718                 scic_sds_port_invalid_link_up(sci_port, sci_phy);
719 }
720
721
722
723 /**
724  * This method returns false if the port only has a single phy object assigned.
725  *     If there are no phys or more than one phy then the method will return
726  *    true.
727  * @sci_port: The port for which the wide port condition is to be checked.
728  *
729  * bool true Is returned if this is a wide ported port. false Is returned if
730  * this is a narrow port.
731  */
732 static bool scic_sds_port_is_wide(struct scic_sds_port *sci_port)
733 {
734         u32 index;
735         u32 phy_count = 0;
736
737         for (index = 0; index < SCI_MAX_PHYS; index++) {
738                 if (sci_port->phy_table[index] != NULL) {
739                         phy_count++;
740                 }
741         }
742
743         return phy_count != 1;
744 }
745
746 /**
747  * This method is called by the PHY object when the link is detected. if the
748  *    port wants the PHY to continue on to the link up state then the port
749  *    layer must return true.  If the port object returns false the phy object
750  *    must halt its attempt to go link up.
751  * @sci_port: The port associated with the phy object.
752  * @sci_phy: The phy object that is trying to go link up.
753  *
754  * true if the phy object can continue to the link up condition. true Is
755  * returned if this phy can continue to the ready state. false Is returned if
756  * can not continue on to the ready state. This notification is in place for
757  * wide ports and direct attached phys.  Since there are no wide ported SATA
758  * devices this could become an invalid port configuration.
759  */
760 bool scic_sds_port_link_detected(
761         struct scic_sds_port *sci_port,
762         struct scic_sds_phy *sci_phy)
763 {
764         if ((sci_port->logical_port_index != SCIC_SDS_DUMMY_PORT) &&
765             (sci_phy->protocol == SCIC_SDS_PHY_PROTOCOL_SATA) &&
766             scic_sds_port_is_wide(sci_port)) {
767                 scic_sds_port_invalid_link_up(sci_port, sci_phy);
768
769                 return false;
770         }
771
772         return true;
773 }
774
775 /**
776  * This method is the entry point for the phy to inform the port that it is now
777  *    in a ready state
778  * @sci_port:
779  *
780  *
781  */
782 void scic_sds_port_link_up(
783         struct scic_sds_port *sci_port,
784         struct scic_sds_phy *sci_phy)
785 {
786         sci_phy->is_in_link_training = false;
787
788         sci_port->state_handlers->link_up_handler(sci_port, sci_phy);
789 }
790
791 /**
792  * This method is the entry point for the phy to inform the port that it is no
793  *    longer in a ready state
794  * @sci_port:
795  *
796  *
797  */
798 void scic_sds_port_link_down(
799         struct scic_sds_port *sci_port,
800         struct scic_sds_phy *sci_phy)
801 {
802         sci_port->state_handlers->link_down_handler(sci_port, sci_phy);
803 }
804
805 /**
806  * This method is called to start an IO request on this port.
807  * @sci_port:
808  * @sci_dev:
809  * @sci_req:
810  *
811  * enum sci_status
812  */
813 enum sci_status scic_sds_port_start_io(
814         struct scic_sds_port *sci_port,
815         struct scic_sds_remote_device *sci_dev,
816         struct scic_sds_request *sci_req)
817 {
818         return sci_port->state_handlers->start_io_handler(
819                        sci_port, sci_dev, sci_req);
820 }
821
822 /**
823  * This method is called to complete an IO request to the port.
824  * @sci_port:
825  * @sci_dev:
826  * @sci_req:
827  *
828  * enum sci_status
829  */
830 enum sci_status scic_sds_port_complete_io(
831         struct scic_sds_port *sci_port,
832         struct scic_sds_remote_device *sci_dev,
833         struct scic_sds_request *sci_req)
834 {
835         return sci_port->state_handlers->complete_io_handler(
836                        sci_port, sci_dev, sci_req);
837 }
838
839 /**
840  * This method is provided to timeout requests for port operations. Mostly its
841  *    for the port reset operation.
842  *
843  *
844  */
845 static void scic_sds_port_timeout_handler(void *port)
846 {
847         struct scic_sds_port *sci_port = port;
848         u32 current_state;
849
850         current_state = sci_base_state_machine_get_state(
851                 &sci_port->state_machine);
852
853         if (current_state == SCI_BASE_PORT_STATE_RESETTING) {
854                 /*
855                  * if the port is still in the resetting state then the
856                  * timeout fired before the reset completed.
857                  */
858                 sci_base_state_machine_change_state(
859                         &sci_port->state_machine,
860                         SCI_BASE_PORT_STATE_FAILED);
861         } else if (current_state == SCI_BASE_PORT_STATE_STOPPED) {
862                 /*
863                  * if the port is stopped then the start request failed
864                  * In this case stay in the stopped state.
865                  */
866                 dev_err(sciport_to_dev(sci_port),
867                         "%s: SCIC Port 0x%p failed to stop before tiemout.\n",
868                         __func__,
869                         sci_port);
870         } else if (current_state == SCI_BASE_PORT_STATE_STOPPING) {
871                 /*
872                  * if the port is still stopping then the stop has not
873                  * completed
874                  */
875                 isci_port_stop_complete(
876                                 scic_sds_port_get_controller(sci_port),
877                                 sci_port,
878                                 SCI_FAILURE_TIMEOUT);
879         } else {
880                 /*
881                  * The port is in the ready state and we have a timer
882                  * reporting a timeout this should not happen.
883                  */
884                 dev_err(sciport_to_dev(sci_port),
885                         "%s: SCIC Port 0x%p is processing a timeout operation "
886                         "in state %d.\n",
887                         __func__,
888                         sci_port,
889                         current_state);
890         }
891 }
892
893 /* --------------------------------------------------------------------------- */
894
895 /**
896  * This function updates the hardwares VIIT entry for this port.
897  *
898  *
899  */
900 static void scic_sds_port_update_viit_entry(struct scic_sds_port *sci_port)
901 {
902         struct sci_sas_address sas_address;
903
904         scic_sds_port_get_sas_address(sci_port, &sas_address);
905
906         writel(sas_address.high,
907                 &sci_port->viit_registers->initiator_sas_address_hi);
908         writel(sas_address.low,
909                 &sci_port->viit_registers->initiator_sas_address_lo);
910
911         /* This value get cleared just in case its not already cleared */
912         writel(0, &sci_port->viit_registers->reserved);
913
914         /* We are required to update the status register last */
915         writel(SCU_VIIT_ENTRY_ID_VIIT |
916                SCU_VIIT_IPPT_INITIATOR |
917                ((1 << sci_port->physical_port_index) << SCU_VIIT_ENTRY_LPVIE_SHIFT) |
918                SCU_VIIT_STATUS_ALL_VALID,
919                &sci_port->viit_registers->status);
920 }
921
922 /**
923  * This method returns the maximum allowed speed for data transfers on this
924  *    port.  This maximum allowed speed evaluates to the maximum speed of the
925  *    slowest phy in the port.
926  * @sci_port: This parameter specifies the port for which to retrieve the
927  *    maximum allowed speed.
928  *
929  * This method returns the maximum negotiated speed of the slowest phy in the
930  * port.
931  */
932 enum sas_linkrate scic_sds_port_get_max_allowed_speed(
933         struct scic_sds_port *sci_port)
934 {
935         u16 index;
936         enum sas_linkrate max_allowed_speed = SAS_LINK_RATE_6_0_GBPS;
937         struct scic_sds_phy *phy = NULL;
938
939         /*
940          * Loop through all of the phys in this port and find the phy with the
941          * lowest maximum link rate. */
942         for (index = 0; index < SCI_MAX_PHYS; index++) {
943                 phy = sci_port->phy_table[index];
944                 if (
945                         (phy != NULL)
946                         && (scic_sds_port_active_phy(sci_port, phy) == true)
947                         && (phy->max_negotiated_speed < max_allowed_speed)
948                         )
949                         max_allowed_speed = phy->max_negotiated_speed;
950         }
951
952         return max_allowed_speed;
953 }
954
955
956 /**
957  * This method passes the event to core user.
958  * @sci_port: The port that a BCN happens.
959  * @sci_phy: The phy that receives BCN.
960  *
961  */
962 void scic_sds_port_broadcast_change_received(
963         struct scic_sds_port *sci_port,
964         struct scic_sds_phy *sci_phy)
965 {
966         struct scic_sds_controller *scic = sci_port->owning_controller;
967         struct isci_host *ihost = scic_to_ihost(scic);
968
969         /* notify the user. */
970         isci_port_bc_change_received(ihost, sci_port, sci_phy);
971 }
972
973
974 /**
975  * This API methhod enables the broadcast change notification from underneath
976  *    hardware.
977  * @sci_port: The port that a BCN had been disabled from.
978  *
979  */
980 void scic_port_enable_broadcast_change_notification(
981         struct scic_sds_port *port)
982 {
983         struct scic_sds_phy *phy;
984         u32 register_value;
985         u8 index;
986
987         /* Loop through all of the phys to enable BCN. */
988         for (index = 0; index < SCI_MAX_PHYS; index++) {
989                 phy = port->phy_table[index];
990                 if (phy != NULL) {
991                         register_value =
992                                 readl(&phy->link_layer_registers->link_layer_control);
993
994                         /* clear the bit by writing 1. */
995                         writel(register_value,
996                                 &phy->link_layer_registers->link_layer_control);
997                 }
998         }
999 }
1000
1001 /*
1002  * ****************************************************************************
1003  * *  READY SUBSTATE HANDLERS
1004  * **************************************************************************** */
1005
1006 /*
1007  * This method is the general ready state stop handler for the struct scic_sds_port
1008  * object.  This function will transition the ready substate machine to its
1009  * final state. enum sci_status SCI_SUCCESS
1010  */
1011 static enum sci_status scic_sds_port_ready_substate_stop_handler(
1012         struct scic_sds_port *port)
1013 {
1014         sci_base_state_machine_change_state(
1015                 &port->state_machine,
1016                 SCI_BASE_PORT_STATE_STOPPING
1017                 );
1018
1019         return SCI_SUCCESS;
1020 }
1021
1022 /*
1023  * This method is the general ready substate complete io handler for the
1024  * struct scic_sds_port object.  This function decrments the outstanding request count
1025  * for this port object. enum sci_status SCI_SUCCESS
1026  */
1027 static enum sci_status scic_sds_port_ready_substate_complete_io_handler(
1028         struct scic_sds_port *port,
1029         struct scic_sds_remote_device *device,
1030         struct scic_sds_request *io_request)
1031 {
1032         scic_sds_port_decrement_request_count(port);
1033
1034         return SCI_SUCCESS;
1035 }
1036
1037 static enum sci_status scic_sds_port_ready_substate_add_phy_handler(
1038         struct scic_sds_port *port,
1039         struct scic_sds_phy *phy)
1040 {
1041         enum sci_status status;
1042
1043         status = scic_sds_port_set_phy(port, phy);
1044
1045         if (status == SCI_SUCCESS) {
1046                 scic_sds_port_general_link_up_handler(port, phy, true);
1047
1048                 port->not_ready_reason = SCIC_PORT_NOT_READY_RECONFIGURING;
1049
1050                 sci_base_state_machine_change_state(
1051                         &port->ready_substate_machine,
1052                         SCIC_SDS_PORT_READY_SUBSTATE_CONFIGURING
1053                         );
1054         }
1055
1056         return status;
1057 }
1058
1059
1060 static enum sci_status scic_sds_port_ready_substate_remove_phy_handler(
1061         struct scic_sds_port *port,
1062         struct scic_sds_phy *phy)
1063 {
1064         enum sci_status status;
1065
1066         status = scic_sds_port_clear_phy(port, phy);
1067
1068         if (status == SCI_SUCCESS) {
1069                 scic_sds_port_deactivate_phy(port, phy, true);
1070
1071                 port->not_ready_reason = SCIC_PORT_NOT_READY_RECONFIGURING;
1072
1073                 sci_base_state_machine_change_state(
1074                         &port->ready_substate_machine,
1075                         SCIC_SDS_PORT_READY_SUBSTATE_CONFIGURING
1076                         );
1077         }
1078
1079         return status;
1080 }
1081
1082 /*
1083  * ****************************************************************************
1084  * *  READY SUBSTATE WAITING HANDLERS
1085  * **************************************************************************** */
1086
1087 /**
1088  *
1089  * @sci_port: This is the struct scic_sds_port object that which has a phy that has
1090  *    gone link up.
1091  * @sci_phy: This is the struct scic_sds_phy object that has gone link up.
1092  *
1093  * This method is the ready waiting substate link up handler for the
1094  * struct scic_sds_port object.  This methos will report the link up condition for
1095  * this port and will transition to the ready operational substate. none
1096  */
1097 static void scic_sds_port_ready_waiting_substate_link_up_handler(
1098         struct scic_sds_port *sci_port,
1099         struct scic_sds_phy *sci_phy)
1100 {
1101         /*
1102          * Since this is the first phy going link up for the port we can just enable
1103          * it and continue. */
1104         scic_sds_port_activate_phy(sci_port, sci_phy, true);
1105
1106         sci_base_state_machine_change_state(
1107                 &sci_port->ready_substate_machine,
1108                 SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL
1109                 );
1110 }
1111
1112 /*
1113  * This method is the ready waiting substate start io handler for the
1114  * struct scic_sds_port object. The port object can not accept new requests so the
1115  * request is failed. enum sci_status SCI_FAILURE_INVALID_STATE
1116  */
1117 static enum sci_status scic_sds_port_ready_waiting_substate_start_io_handler(
1118         struct scic_sds_port *port,
1119         struct scic_sds_remote_device *device,
1120         struct scic_sds_request *io_request)
1121 {
1122         return SCI_FAILURE_INVALID_STATE;
1123 }
1124
1125 /*
1126  * ****************************************************************************
1127  * *  READY SUBSTATE OPERATIONAL HANDLERS
1128  * **************************************************************************** */
1129
1130 /*
1131  * This method will casue the port to reset. enum sci_status SCI_SUCCESS
1132  */
1133 static enum
1134 sci_status scic_sds_port_ready_operational_substate_reset_handler(
1135                 struct scic_sds_port *port,
1136                 u32 timeout)
1137 {
1138         enum sci_status status = SCI_FAILURE_INVALID_PHY;
1139         u32 phy_index;
1140         struct scic_sds_phy *selected_phy = NULL;
1141
1142
1143         /* Select a phy on which we can send the hard reset request. */
1144         for (phy_index = 0;
1145              (phy_index < SCI_MAX_PHYS) && (selected_phy == NULL);
1146              phy_index++) {
1147                 selected_phy = port->phy_table[phy_index];
1148
1149                 if ((selected_phy != NULL) &&
1150                     !scic_sds_port_active_phy(port, selected_phy)) {
1151                         /*
1152                          * We found a phy but it is not ready select
1153                          * different phy
1154                          */
1155                         selected_phy = NULL;
1156                 }
1157         }
1158
1159         /* If we have a phy then go ahead and start the reset procedure */
1160         if (selected_phy != NULL) {
1161                 status = scic_sds_phy_reset(selected_phy);
1162
1163                 if (status == SCI_SUCCESS) {
1164                         isci_timer_start(port->timer_handle, timeout);
1165                         port->not_ready_reason =
1166                                 SCIC_PORT_NOT_READY_HARD_RESET_REQUESTED;
1167
1168                         sci_base_state_machine_change_state(
1169                                         &port->state_machine,
1170                                         SCI_BASE_PORT_STATE_RESETTING);
1171                 }
1172         }
1173
1174         return status;
1175 }
1176
1177 /**
1178  * scic_sds_port_ready_operational_substate_link_up_handler() -
1179  * @sci_port: This is the struct scic_sds_port object that which has a phy that has
1180  *    gone link up.
1181  * @sci_phy: This is the struct scic_sds_phy object that has gone link up.
1182  *
1183  * This method is the ready operational substate link up handler for the
1184  * struct scic_sds_port object. This function notifies the SCI User that the phy has
1185  * gone link up. none
1186  */
1187 static void scic_sds_port_ready_operational_substate_link_up_handler(
1188         struct scic_sds_port *sci_port,
1189         struct scic_sds_phy *sci_phy)
1190 {
1191         scic_sds_port_general_link_up_handler(sci_port, sci_phy, true);
1192 }
1193
1194 /**
1195  * scic_sds_port_ready_operational_substate_link_down_handler() -
1196  * @sci_port: This is the struct scic_sds_port object that which has a phy that has
1197  *    gone link down.
1198  * @sci_phy: This is the struct scic_sds_phy object that has gone link down.
1199  *
1200  * This method is the ready operational substate link down handler for the
1201  * struct scic_sds_port object. This function notifies the SCI User that the phy has
1202  * gone link down and if this is the last phy in the port the port will change
1203  * state to the ready waiting substate. none
1204  */
1205 static void scic_sds_port_ready_operational_substate_link_down_handler(
1206         struct scic_sds_port *sci_port,
1207         struct scic_sds_phy *sci_phy)
1208 {
1209         scic_sds_port_deactivate_phy(sci_port, sci_phy, true);
1210
1211         /*
1212          * If there are no active phys left in the port, then transition
1213          * the port to the WAITING state until such time as a phy goes
1214          * link up. */
1215         if (sci_port->active_phy_mask == 0)
1216                 sci_base_state_machine_change_state(&sci_port->ready_substate_machine,
1217                                                     SCIC_SDS_PORT_READY_SUBSTATE_WAITING);
1218 }
1219
1220 /*
1221  * This method is the ready operational substate start io handler for the
1222  * struct scic_sds_port object.  This function incremetns the outstanding request
1223  * count for this port object. enum sci_status SCI_SUCCESS
1224  */
1225 static enum sci_status scic_sds_port_ready_operational_substate_start_io_handler(
1226         struct scic_sds_port *port,
1227         struct scic_sds_remote_device *device,
1228         struct scic_sds_request *io_request)
1229 {
1230         port->started_request_count++;
1231         return SCI_SUCCESS;
1232 }
1233
1234 /*
1235  * ****************************************************************************
1236  * *  READY SUBSTATE OPERATIONAL HANDLERS
1237  * **************************************************************************** */
1238
1239 /*
1240  * This is the default method for a port add phy request.  It will report a
1241  * warning and exit. enum sci_status SCI_FAILURE_INVALID_STATE
1242  */
1243 static enum sci_status scic_sds_port_ready_configuring_substate_add_phy_handler(
1244         struct scic_sds_port *port,
1245         struct scic_sds_phy *phy)
1246 {
1247         enum sci_status status;
1248
1249         status = scic_sds_port_set_phy(port, phy);
1250
1251         if (status == SCI_SUCCESS) {
1252                 scic_sds_port_general_link_up_handler(port, phy, true);
1253
1254                 /*
1255                  * Re-enter the configuring state since this may be the last phy in
1256                  * the port. */
1257                 sci_base_state_machine_change_state(
1258                         &port->ready_substate_machine,
1259                         SCIC_SDS_PORT_READY_SUBSTATE_CONFIGURING
1260                         );
1261         }
1262
1263         return status;
1264 }
1265
1266 /*
1267  * This is the default method for a port remove phy request.  It will report a
1268  * warning and exit. enum sci_status SCI_FAILURE_INVALID_STATE
1269  */
1270 static enum sci_status scic_sds_port_ready_configuring_substate_remove_phy_handler(
1271         struct scic_sds_port *port,
1272         struct scic_sds_phy *phy)
1273 {
1274         enum sci_status status;
1275
1276         status = scic_sds_port_clear_phy(port, phy);
1277
1278         if (status == SCI_SUCCESS) {
1279                 scic_sds_port_deactivate_phy(port, phy, true);
1280
1281                 /*
1282                  * Re-enter the configuring state since this may be the last phy in
1283                  * the port. */
1284                 sci_base_state_machine_change_state(
1285                         &port->ready_substate_machine,
1286                         SCIC_SDS_PORT_READY_SUBSTATE_CONFIGURING
1287                         );
1288         }
1289
1290         return status;
1291 }
1292
1293 /**
1294  * scic_sds_port_ready_configuring_substate_complete_io_handler() -
1295  * @port: This is the port that is being requested to complete the io request.
1296  * @device: This is the device on which the io is completing.
1297  *
1298  * This method will decrement the outstanding request count for this port. If
1299  * the request count goes to 0 then the port can be reprogrammed with its new
1300  * phy data.
1301  */
1302 static enum sci_status
1303 scic_sds_port_ready_configuring_substate_complete_io_handler(
1304         struct scic_sds_port *port,
1305         struct scic_sds_remote_device *device,
1306         struct scic_sds_request *io_request)
1307 {
1308         scic_sds_port_decrement_request_count(port);
1309
1310         if (port->started_request_count == 0) {
1311                 sci_base_state_machine_change_state(
1312                         &port->ready_substate_machine,
1313                         SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL
1314                         );
1315         }
1316
1317         return SCI_SUCCESS;
1318 }
1319
1320 static enum sci_status default_port_handler(struct scic_sds_port *sci_port,
1321                                             const char *func)
1322 {
1323         dev_warn(sciport_to_dev(sci_port),
1324                  "%s: in wrong state: %d\n", func,
1325                  sci_base_state_machine_get_state(&sci_port->state_machine));
1326         return SCI_FAILURE_INVALID_STATE;
1327 }
1328
1329 static enum sci_status
1330 scic_sds_port_default_start_handler(struct scic_sds_port *sci_port)
1331 {
1332         return default_port_handler(sci_port, __func__);
1333 }
1334
1335 static enum sci_status
1336 scic_sds_port_default_stop_handler(struct scic_sds_port *sci_port)
1337 {
1338         return default_port_handler(sci_port, __func__);
1339 }
1340
1341 static enum sci_status
1342 scic_sds_port_default_destruct_handler(struct scic_sds_port *sci_port)
1343 {
1344         return default_port_handler(sci_port, __func__);
1345 }
1346
1347 static enum sci_status
1348 scic_sds_port_default_reset_handler(struct scic_sds_port *sci_port,
1349                                     u32 timeout)
1350 {
1351         return default_port_handler(sci_port, __func__);
1352 }
1353
1354 static enum sci_status
1355 scic_sds_port_default_add_phy_handler(struct scic_sds_port *sci_port,
1356                                       struct scic_sds_phy *base_phy)
1357 {
1358         return default_port_handler(sci_port, __func__);
1359 }
1360
1361 static enum sci_status
1362 scic_sds_port_default_remove_phy_handler(struct scic_sds_port *sci_port,
1363                                          struct scic_sds_phy *base_phy)
1364 {
1365         return default_port_handler(sci_port, __func__);
1366 }
1367
1368 /*
1369  * This is the default method for a port unsolicited frame request.  It will
1370  * report a warning and exit. enum sci_status SCI_FAILURE_INVALID_STATE Is it even
1371  * possible to receive an unsolicited frame directed to a port object?  It
1372  * seems possible if we implementing virtual functions but until then?
1373  */
1374 static enum sci_status
1375 scic_sds_port_default_frame_handler(struct scic_sds_port *sci_port,
1376                                     u32 frame_index)
1377 {
1378         struct scic_sds_controller *scic = scic_sds_port_get_controller(sci_port);
1379
1380         default_port_handler(sci_port, __func__);
1381         scic_sds_controller_release_frame(scic, frame_index);
1382
1383         return SCI_FAILURE_INVALID_STATE;
1384 }
1385
1386 static enum sci_status scic_sds_port_default_event_handler(struct scic_sds_port *sci_port,
1387                                                     u32 event_code)
1388 {
1389         return default_port_handler(sci_port, __func__);
1390 }
1391
1392 static void scic_sds_port_default_link_up_handler(struct scic_sds_port *sci_port,
1393                                            struct scic_sds_phy *sci_phy)
1394 {
1395         default_port_handler(sci_port, __func__);
1396 }
1397
1398 static void scic_sds_port_default_link_down_handler(struct scic_sds_port *sci_port,
1399                                              struct scic_sds_phy *sci_phy)
1400 {
1401         default_port_handler(sci_port, __func__);
1402 }
1403
1404 static enum sci_status scic_sds_port_default_start_io_handler(struct scic_sds_port *sci_port,
1405                                                        struct scic_sds_remote_device *sci_dev,
1406                                                        struct scic_sds_request *sci_req)
1407 {
1408         return default_port_handler(sci_port, __func__);
1409 }
1410
1411 static enum sci_status scic_sds_port_default_complete_io_handler(struct scic_sds_port *sci_port,
1412                                                                  struct scic_sds_remote_device *sci_dev,
1413                                                                  struct scic_sds_request *sci_req)
1414 {
1415         return default_port_handler(sci_port, __func__);
1416 }
1417
1418
1419
1420 static struct scic_sds_port_state_handler
1421 scic_sds_port_ready_substate_handler_table[SCIC_SDS_PORT_READY_MAX_SUBSTATES] = {
1422         {
1423                 /* SCIC_SDS_PORT_READY_SUBSTATE_WAITING */
1424                 scic_sds_port_default_start_handler,
1425                 scic_sds_port_ready_substate_stop_handler,
1426                 scic_sds_port_default_destruct_handler,
1427                 scic_sds_port_default_reset_handler,
1428                 scic_sds_port_ready_substate_add_phy_handler,
1429                 scic_sds_port_default_remove_phy_handler,
1430                 scic_sds_port_default_frame_handler,
1431                 scic_sds_port_default_event_handler,
1432                 scic_sds_port_ready_waiting_substate_link_up_handler,
1433                 scic_sds_port_default_link_down_handler,
1434                 scic_sds_port_ready_waiting_substate_start_io_handler,
1435                 scic_sds_port_ready_substate_complete_io_handler,
1436         },
1437
1438         {
1439                 /* SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL */
1440                 scic_sds_port_default_start_handler,
1441                 scic_sds_port_ready_substate_stop_handler,
1442                 scic_sds_port_default_destruct_handler,
1443                 scic_sds_port_ready_operational_substate_reset_handler,
1444                 scic_sds_port_ready_substate_add_phy_handler,
1445                 scic_sds_port_ready_substate_remove_phy_handler,
1446                 scic_sds_port_default_frame_handler,
1447                 scic_sds_port_default_event_handler,
1448                 scic_sds_port_ready_operational_substate_link_up_handler,
1449                 scic_sds_port_ready_operational_substate_link_down_handler,
1450                 scic_sds_port_ready_operational_substate_start_io_handler,
1451                 scic_sds_port_ready_substate_complete_io_handler,
1452         },
1453
1454         {
1455                 /* SCIC_SDS_PORT_READY_SUBSTATE_CONFIGURING */
1456                 scic_sds_port_default_start_handler,
1457                 scic_sds_port_ready_substate_stop_handler,
1458                 scic_sds_port_default_destruct_handler,
1459                 scic_sds_port_default_reset_handler,
1460                 scic_sds_port_ready_configuring_substate_add_phy_handler,
1461                 scic_sds_port_ready_configuring_substate_remove_phy_handler,
1462                 scic_sds_port_default_frame_handler,
1463                 scic_sds_port_default_event_handler,
1464                 scic_sds_port_default_link_up_handler,
1465                 scic_sds_port_default_link_down_handler,
1466                 scic_sds_port_default_start_io_handler,
1467                 scic_sds_port_ready_configuring_substate_complete_io_handler
1468         }
1469 };
1470
1471 /**
1472  * scic_sds_port_set_ready_state_handlers() -
1473  *
1474  * This macro sets the port ready substate handlers.
1475  */
1476 #define scic_sds_port_set_ready_state_handlers(port, state_id) \
1477         scic_sds_port_set_state_handlers(\
1478                 port, &scic_sds_port_ready_substate_handler_table[(state_id)] \
1479                 )
1480
1481 /*
1482  * ******************************************************************************
1483  * *  PORT STATE PRIVATE METHODS
1484  * ****************************************************************************** */
1485
1486 /**
1487  *
1488  * @sci_port: This is the struct scic_sds_port object to suspend.
1489  *
1490  * This method will susped the port task scheduler for this port object. none
1491  */
1492 static void
1493 scic_sds_port_suspend_port_task_scheduler(struct scic_sds_port *port)
1494 {
1495         u32 pts_control_value;
1496
1497         pts_control_value = readl(&port->port_task_scheduler_registers->control);
1498         pts_control_value |= SCU_PTSxCR_GEN_BIT(SUSPEND);
1499         writel(pts_control_value, &port->port_task_scheduler_registers->control);
1500 }
1501
1502 /**
1503  * scic_sds_port_post_dummy_request() - post dummy/workaround request
1504  * @sci_port: port to post task
1505  *
1506  * Prevent the hardware scheduler from posting new requests to the front
1507  * of the scheduler queue causing a starvation problem for currently
1508  * ongoing requests.
1509  *
1510  */
1511 static void scic_sds_port_post_dummy_request(struct scic_sds_port *sci_port)
1512 {
1513         u32 command;
1514         struct scu_task_context *task_context;
1515         struct scic_sds_controller *scic = sci_port->owning_controller;
1516         u16 tci = sci_port->reserved_tci;
1517
1518         task_context = scic_sds_controller_get_task_context_buffer(scic, tci);
1519
1520         task_context->abort = 0;
1521
1522         command = SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
1523                   sci_port->physical_port_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT |
1524                   tci;
1525
1526         scic_sds_controller_post_request(scic, command);
1527 }
1528
1529 /**
1530  * This routine will abort the dummy request.  This will alow the hardware to
1531  * power down parts of the silicon to save power.
1532  *
1533  * @sci_port: The port on which the task must be aborted.
1534  *
1535  */
1536 static void scic_sds_port_abort_dummy_request(struct scic_sds_port *sci_port)
1537 {
1538         struct scic_sds_controller *scic = sci_port->owning_controller;
1539         u16 tci = sci_port->reserved_tci;
1540         struct scu_task_context *tc;
1541         u32 command;
1542
1543         tc = scic_sds_controller_get_task_context_buffer(scic, tci);
1544
1545         tc->abort = 1;
1546
1547         command = SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT |
1548                   sci_port->physical_port_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT |
1549                   tci;
1550
1551         scic_sds_controller_post_request(scic, command);
1552 }
1553
1554 /**
1555  *
1556  * @sci_port: This is the struct scic_sds_port object to resume.
1557  *
1558  * This method will resume the port task scheduler for this port object. none
1559  */
1560 static void
1561 scic_sds_port_resume_port_task_scheduler(struct scic_sds_port *port)
1562 {
1563         u32 pts_control_value;
1564
1565         pts_control_value = readl(&port->port_task_scheduler_registers->control);
1566         pts_control_value &= ~SCU_PTSxCR_GEN_BIT(SUSPEND);
1567         writel(pts_control_value, &port->port_task_scheduler_registers->control);
1568 }
1569
1570 /*
1571  * ******************************************************************************
1572  * *  PORT READY SUBSTATE METHODS
1573  * ****************************************************************************** */
1574
1575 /**
1576  *
1577  * @object: This is the object which is cast to a struct scic_sds_port object.
1578  *
1579  * This method will perform the actions required by the struct scic_sds_port on
1580  * entering the SCIC_SDS_PORT_READY_SUBSTATE_WAITING. This function checks the
1581  * port for any ready phys.  If there is at least one phy in a ready state then
1582  * the port transitions to the ready operational substate. none
1583  */
1584 static void scic_sds_port_ready_substate_waiting_enter(void *object)
1585 {
1586         struct scic_sds_port *sci_port = object;
1587
1588         scic_sds_port_set_ready_state_handlers(
1589                 sci_port, SCIC_SDS_PORT_READY_SUBSTATE_WAITING
1590                 );
1591
1592         scic_sds_port_suspend_port_task_scheduler(sci_port);
1593
1594         sci_port->not_ready_reason = SCIC_PORT_NOT_READY_NO_ACTIVE_PHYS;
1595
1596         if (sci_port->active_phy_mask != 0) {
1597                 /* At least one of the phys on the port is ready */
1598                 sci_base_state_machine_change_state(
1599                         &sci_port->ready_substate_machine,
1600                         SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL
1601                         );
1602         }
1603 }
1604
1605 /**
1606  *
1607  * @object: This is the object which is cast to a struct scic_sds_port object.
1608  *
1609  * This function will perform the actions required by the struct scic_sds_port
1610  * on entering the SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL. This function sets
1611  * the state handlers for the port object, notifies the SCI User that the port
1612  * is ready, and resumes port operations. none
1613  */
1614 static void scic_sds_port_ready_substate_operational_enter(void *object)
1615 {
1616         u32 index;
1617         struct scic_sds_port *sci_port = object;
1618         struct scic_sds_controller *scic = sci_port->owning_controller;
1619         struct isci_host *ihost = scic_to_ihost(scic);
1620         struct isci_port *iport = sci_port_to_iport(sci_port);
1621
1622         scic_sds_port_set_ready_state_handlers(
1623                         sci_port,
1624                         SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL);
1625
1626         isci_port_ready(ihost, iport);
1627
1628         for (index = 0; index < SCI_MAX_PHYS; index++) {
1629                 if (sci_port->phy_table[index]) {
1630                         writel(sci_port->physical_port_index,
1631                                 &sci_port->port_pe_configuration_register[
1632                                         sci_port->phy_table[index]->phy_index]);
1633                 }
1634         }
1635
1636         scic_sds_port_update_viit_entry(sci_port);
1637
1638         scic_sds_port_resume_port_task_scheduler(sci_port);
1639
1640         /*
1641          * Post the dummy task for the port so the hardware can schedule
1642          * io correctly
1643          */
1644         scic_sds_port_post_dummy_request(sci_port);
1645 }
1646
1647 /**
1648  *
1649  * @object: This is the object which is cast to a struct scic_sds_port object.
1650  *
1651  * This method will perform the actions required by the struct scic_sds_port on
1652  * exiting the SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL. This function reports
1653  * the port not ready and suspends the port task scheduler. none
1654  */
1655 static void scic_sds_port_ready_substate_operational_exit(void *object)
1656 {
1657         struct scic_sds_port *sci_port = object;
1658         struct scic_sds_controller *scic = sci_port->owning_controller;
1659         struct isci_host *ihost = scic_to_ihost(scic);
1660         struct isci_port *iport = sci_port_to_iport(sci_port);
1661
1662         /*
1663          * Kill the dummy task for this port if it has not yet posted
1664          * the hardware will treat this as a NOP and just return abort
1665          * complete.
1666          */
1667         scic_sds_port_abort_dummy_request(sci_port);
1668
1669         isci_port_not_ready(ihost, iport);
1670 }
1671
1672 /*
1673  * ******************************************************************************
1674  * *  PORT READY CONFIGURING METHODS
1675  * ****************************************************************************** */
1676
1677 /**
1678  * scic_sds_port_ready_substate_configuring_enter() -
1679  * @object: This is the object which is cast to a struct scic_sds_port object.
1680  *
1681  * This method will perform the actions required by the struct scic_sds_port on
1682  * exiting the SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL. This function reports
1683  * the port not ready and suspends the port task scheduler. none
1684  */
1685 static void scic_sds_port_ready_substate_configuring_enter(void *object)
1686 {
1687         struct scic_sds_port *sci_port = object;
1688         struct scic_sds_controller *scic = sci_port->owning_controller;
1689         struct isci_host *ihost = scic_to_ihost(scic);
1690         struct isci_port *iport = sci_port_to_iport(sci_port);
1691
1692         scic_sds_port_set_ready_state_handlers(
1693                         sci_port,
1694                         SCIC_SDS_PORT_READY_SUBSTATE_CONFIGURING);
1695
1696         if (sci_port->active_phy_mask == 0) {
1697                 isci_port_not_ready(ihost, iport);
1698
1699                 sci_base_state_machine_change_state(
1700                                 &sci_port->ready_substate_machine,
1701                                 SCIC_SDS_PORT_READY_SUBSTATE_WAITING);
1702         } else if (sci_port->started_request_count == 0)
1703                 sci_base_state_machine_change_state(
1704                                 &sci_port->ready_substate_machine,
1705                                 SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL);
1706 }
1707
1708 static void scic_sds_port_ready_substate_configuring_exit(void *object)
1709 {
1710         struct scic_sds_port *sci_port = object;
1711
1712         scic_sds_port_suspend_port_task_scheduler(sci_port);
1713 }
1714
1715 /* --------------------------------------------------------------------------- */
1716
1717 static const struct sci_base_state scic_sds_port_ready_substate_table[] = {
1718         [SCIC_SDS_PORT_READY_SUBSTATE_WAITING] = {
1719                 .enter_state = scic_sds_port_ready_substate_waiting_enter,
1720         },
1721         [SCIC_SDS_PORT_READY_SUBSTATE_OPERATIONAL] = {
1722                 .enter_state = scic_sds_port_ready_substate_operational_enter,
1723                 .exit_state  = scic_sds_port_ready_substate_operational_exit
1724         },
1725         [SCIC_SDS_PORT_READY_SUBSTATE_CONFIGURING] = {
1726                 .enter_state = scic_sds_port_ready_substate_configuring_enter,
1727                 .exit_state  = scic_sds_port_ready_substate_configuring_exit
1728         },
1729 };
1730
1731 /**
1732  *
1733  * @port: This is the struct scic_sds_port object on which the io request count will
1734  *    be decremented.
1735  * @device: This is the struct scic_sds_remote_device object to which the io request
1736  *    is being directed.  This parameter is not required to complete this
1737  *    operation.
1738  * @io_request: This is the request that is being completed on this port
1739  *    object.  This parameter is not required to complete this operation.
1740  *
1741  * This is a general complete io request handler for the struct scic_sds_port object.
1742  * enum sci_status SCI_SUCCESS
1743  */
1744 static enum sci_status scic_sds_port_general_complete_io_handler(
1745         struct scic_sds_port *port,
1746         struct scic_sds_remote_device *device,
1747         struct scic_sds_request *io_request)
1748 {
1749         scic_sds_port_decrement_request_count(port);
1750
1751         return SCI_SUCCESS;
1752 }
1753
1754 /**
1755  * scic_sds_port_stopped_state_start_handler() - stop a port from "started"
1756  *
1757  * @port: This is the struct scic_sds_port object which is cast into a
1758  * struct scic_sds_port object.
1759  *
1760  * This function takes the struct scic_sds_port from a stopped state and
1761  * attempts to start it.  To start a port it must have no assiged devices and
1762  * it must have at least one phy assigned to it.  If those conditions are
1763  * met then the port can transition to the ready state.
1764  * enum sci_status
1765  * SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION
1766  * This struct scic_sds_port object could not be started because the port
1767  * configuration is not valid.
1768  * SCI_SUCCESS
1769  * the start request is successful and the struct scic_sds_port object
1770  * has transitioned to the SCI_BASE_PORT_STATE_READY.
1771  */
1772 static enum sci_status
1773 scic_sds_port_stopped_state_start_handler(struct scic_sds_port *sci_port)
1774 {
1775         struct scic_sds_controller *scic = sci_port->owning_controller;
1776         struct isci_host *ihost = scic_to_ihost(scic);
1777         enum sci_status status = SCI_SUCCESS;
1778         u32 phy_mask;
1779
1780         if (sci_port->assigned_device_count > 0) {
1781                 /*
1782                  * @todo This is a start failure operation because
1783                  * there are still devices assigned to this port.
1784                  * There must be no devices assigned to a port on a
1785                  * start operation.
1786                  */
1787                 return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
1788         }
1789
1790         sci_port->timer_handle =
1791                 isci_timer_create(ihost,
1792                                   sci_port,
1793                                   scic_sds_port_timeout_handler);
1794
1795         if (!sci_port->timer_handle)
1796                 return SCI_FAILURE_INSUFFICIENT_RESOURCES;
1797
1798         if (sci_port->reserved_rni == SCU_DUMMY_INDEX) {
1799                 u16 rni = scic_sds_remote_node_table_allocate_remote_node(
1800                                 &scic->available_remote_nodes, 1);
1801
1802                 if (rni != SCU_DUMMY_INDEX)
1803                         scic_sds_port_construct_dummy_rnc(sci_port, rni);
1804                 else
1805                         status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
1806                 sci_port->reserved_rni = rni;
1807         }
1808
1809         if (sci_port->reserved_tci == SCU_DUMMY_INDEX) {
1810                 /* Allocate a TCI and remove the sequence nibble */
1811                 u16 tci = scic_controller_allocate_io_tag(scic);
1812
1813                 if (tci != SCU_DUMMY_INDEX)
1814                         scic_sds_port_construct_dummy_task(sci_port, tci);
1815                 else
1816                         status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
1817                 sci_port->reserved_tci = tci;
1818         }
1819
1820         if (status == SCI_SUCCESS) {
1821                 phy_mask = scic_sds_port_get_phys(sci_port);
1822
1823                 /*
1824                  * There are one or more phys assigned to this port.  Make sure
1825                  * the port's phy mask is in fact legal and supported by the
1826                  * silicon.
1827                  */
1828                 if (scic_sds_port_is_phy_mask_valid(sci_port, phy_mask) == true) {
1829                         sci_base_state_machine_change_state(
1830                                 &sci_port->state_machine,
1831                                 SCI_BASE_PORT_STATE_READY);
1832
1833                         return SCI_SUCCESS;
1834                 } else
1835                         status = SCI_FAILURE;
1836         }
1837
1838         if (status != SCI_SUCCESS)
1839                 scic_sds_port_destroy_dummy_resources(sci_port);
1840
1841         return status;
1842 }
1843
1844 /*
1845  * This method takes the struct scic_sds_port that is in a stopped state and handles a
1846  * stop request.  This function takes no action. enum sci_status SCI_SUCCESS the
1847  * stop request is successful as the struct scic_sds_port object is already stopped.
1848  */
1849 static enum sci_status scic_sds_port_stopped_state_stop_handler(
1850         struct scic_sds_port *port)
1851 {
1852         /* We are already stopped so there is nothing to do here */
1853         return SCI_SUCCESS;
1854 }
1855
1856 /*
1857  * This method takes the struct scic_sds_port that is in a stopped state and handles
1858  * the destruct request.  The stopped state is the only state in which the
1859  * struct scic_sds_port can be destroyed.  This function causes the port object to
1860  * transition to the SCI_BASE_PORT_STATE_FINAL. enum sci_status SCI_SUCCESS
1861  */
1862 static enum sci_status scic_sds_port_stopped_state_destruct_handler(
1863         struct scic_sds_port *port)
1864 {
1865         sci_base_state_machine_stop(&port->state_machine);
1866
1867         return SCI_SUCCESS;
1868 }
1869
1870 /*
1871  * This method takes the struct scic_sds_port that is in a stopped state and handles
1872  * the add phy request.  In MPC mode the only time a phy can be added to a port
1873  * is in the SCI_BASE_PORT_STATE_STOPPED. enum sci_status
1874  * SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION is returned when the phy can not
1875  * be added to the port. SCI_SUCCESS if the phy is added to the port.
1876  */
1877 static enum sci_status scic_sds_port_stopped_state_add_phy_handler(
1878         struct scic_sds_port *port,
1879         struct scic_sds_phy *phy)
1880 {
1881         struct sci_sas_address port_sas_address;
1882
1883         /* Read the port assigned SAS Address if there is one */
1884         scic_sds_port_get_sas_address(port, &port_sas_address);
1885
1886         if (port_sas_address.high != 0 && port_sas_address.low != 0) {
1887                 struct sci_sas_address phy_sas_address;
1888
1889                 /*
1890                  * Make sure that the PHY SAS Address matches the SAS Address
1891                  * for this port. */
1892                 scic_sds_phy_get_sas_address(phy, &phy_sas_address);
1893
1894                 if (
1895                         (port_sas_address.high != phy_sas_address.high)
1896                         || (port_sas_address.low  != phy_sas_address.low)
1897                         ) {
1898                         return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
1899                 }
1900         }
1901
1902         return scic_sds_port_set_phy(port, phy);
1903 }
1904
1905 /*
1906  * This method takes the struct scic_sds_port that is in a stopped state and handles
1907  * the remove phy request.  In MPC mode the only time a phy can be removed from
1908  * a port is in the SCI_BASE_PORT_STATE_STOPPED. enum sci_status
1909  * SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION is returned when the phy can not
1910  * be added to the port. SCI_SUCCESS if the phy is added to the port.
1911  */
1912 static enum sci_status scic_sds_port_stopped_state_remove_phy_handler(
1913         struct scic_sds_port *port,
1914         struct scic_sds_phy *phy)
1915 {
1916         return scic_sds_port_clear_phy(port, phy);
1917 }
1918
1919 /*
1920  * ****************************************************************************
1921  * *  READY STATE HANDLERS
1922  * **************************************************************************** */
1923
1924 /*
1925  * ****************************************************************************
1926  * *  RESETTING STATE HANDLERS
1927  * **************************************************************************** */
1928
1929 /*
1930  * ****************************************************************************
1931  * *  STOPPING STATE HANDLERS
1932  * **************************************************************************** */
1933
1934 /*
1935  * This method takes the struct scic_sds_port that is in a stopping state and handles
1936  * the complete io request. Should the request count reach 0 then the port
1937  * object will transition to the stopped state. enum sci_status SCI_SUCCESS
1938  */
1939 static enum sci_status scic_sds_port_stopping_state_complete_io_handler(
1940         struct scic_sds_port *sci_port,
1941         struct scic_sds_remote_device *device,
1942         struct scic_sds_request *io_request)
1943 {
1944         scic_sds_port_decrement_request_count(sci_port);
1945
1946         if (sci_port->started_request_count == 0) {
1947                 sci_base_state_machine_change_state(&sci_port->state_machine,
1948                                                     SCI_BASE_PORT_STATE_STOPPED);
1949         }
1950
1951         return SCI_SUCCESS;
1952 }
1953
1954 /*
1955  * ****************************************************************************
1956  * *  RESETTING STATE HANDLERS
1957  * **************************************************************************** */
1958
1959 /**
1960  *
1961  * @port: This is the port object which is being requested to stop.
1962  *
1963  * This method will stop a failed port.  This causes a transition to the
1964  * stopping state. enum sci_status SCI_SUCCESS
1965  */
1966 static enum sci_status scic_sds_port_reset_state_stop_handler(
1967         struct scic_sds_port *port)
1968 {
1969         sci_base_state_machine_change_state(
1970                 &port->state_machine,
1971                 SCI_BASE_PORT_STATE_STOPPING
1972                 );
1973
1974         return SCI_SUCCESS;
1975 }
1976
1977 /*
1978  * This method will transition a failed port to its ready state.  The port
1979  * failed because a hard reset request timed out but at some time later one or
1980  * more phys in the port became ready. enum sci_status SCI_SUCCESS
1981  */
1982 static void scic_sds_port_reset_state_link_up_handler(
1983         struct scic_sds_port *port,
1984         struct scic_sds_phy *phy)
1985 {
1986         /*
1987          * / @todo We should make sure that the phy that has gone link up is the same
1988          * /       one on which we sent the reset.  It is possible that the phy on
1989          * /       which we sent the reset is not the one that has gone link up and we
1990          * /       want to make sure that phy being reset comes back.  Consider the
1991          * /       case where a reset is sent but before the hardware processes the
1992          * /       reset it get a link up on the port because of a hot plug event.
1993          * /       because of the reset request this phy will go link down almost
1994          * /       immediately. */
1995
1996         /*
1997          * In the resetting state we don't notify the user regarding
1998          * link up and link down notifications. */
1999         scic_sds_port_general_link_up_handler(port, phy, false);
2000 }
2001
2002 /*
2003  * This method process link down notifications that occur during a port reset
2004  * operation. Link downs can occur during the reset operation. enum sci_status
2005  * SCI_SUCCESS
2006  */
2007 static void scic_sds_port_reset_state_link_down_handler(
2008         struct scic_sds_port *port,
2009         struct scic_sds_phy *phy)
2010 {
2011         /*
2012          * In the resetting state we don't notify the user regarding
2013          * link up and link down notifications. */
2014         scic_sds_port_deactivate_phy(port, phy, false);
2015 }
2016
2017 static struct scic_sds_port_state_handler
2018 scic_sds_port_state_handler_table[SCI_BASE_PORT_MAX_STATES] =
2019 {
2020         /* SCI_BASE_PORT_STATE_STOPPED */
2021         {
2022                 scic_sds_port_stopped_state_start_handler,
2023                 scic_sds_port_stopped_state_stop_handler,
2024                 scic_sds_port_stopped_state_destruct_handler,
2025                 scic_sds_port_default_reset_handler,
2026                 scic_sds_port_stopped_state_add_phy_handler,
2027                 scic_sds_port_stopped_state_remove_phy_handler,
2028                 scic_sds_port_default_frame_handler,
2029                 scic_sds_port_default_event_handler,
2030                 scic_sds_port_default_link_up_handler,
2031                 scic_sds_port_default_link_down_handler,
2032                 scic_sds_port_default_start_io_handler,
2033                 scic_sds_port_default_complete_io_handler
2034         },
2035         /* SCI_BASE_PORT_STATE_STOPPING */
2036         {
2037                 scic_sds_port_default_start_handler,
2038                 scic_sds_port_default_stop_handler,
2039                 scic_sds_port_default_destruct_handler,
2040                 scic_sds_port_default_reset_handler,
2041                 scic_sds_port_default_add_phy_handler,
2042                 scic_sds_port_default_remove_phy_handler,
2043                 scic_sds_port_default_frame_handler,
2044                 scic_sds_port_default_event_handler,
2045                 scic_sds_port_default_link_up_handler,
2046                 scic_sds_port_default_link_down_handler,
2047                 scic_sds_port_default_start_io_handler,
2048                 scic_sds_port_stopping_state_complete_io_handler
2049         },
2050         /* SCI_BASE_PORT_STATE_READY */
2051         {
2052                 scic_sds_port_default_start_handler,
2053                 scic_sds_port_default_stop_handler,
2054                 scic_sds_port_default_destruct_handler,
2055                 scic_sds_port_default_reset_handler,
2056                 scic_sds_port_default_add_phy_handler,
2057                 scic_sds_port_default_remove_phy_handler,
2058                 scic_sds_port_default_frame_handler,
2059                 scic_sds_port_default_event_handler,
2060                 scic_sds_port_default_link_up_handler,
2061                 scic_sds_port_default_link_down_handler,
2062                 scic_sds_port_default_start_io_handler,
2063                 scic_sds_port_general_complete_io_handler
2064         },
2065         /* SCI_BASE_PORT_STATE_RESETTING */
2066         {
2067                 scic_sds_port_default_start_handler,
2068                 scic_sds_port_reset_state_stop_handler,
2069                 scic_sds_port_default_destruct_handler,
2070                 scic_sds_port_default_reset_handler,
2071                 scic_sds_port_default_add_phy_handler,
2072                 scic_sds_port_default_remove_phy_handler,
2073                 scic_sds_port_default_frame_handler,
2074                 scic_sds_port_default_event_handler,
2075                 scic_sds_port_reset_state_link_up_handler,
2076                 scic_sds_port_reset_state_link_down_handler,
2077                 scic_sds_port_default_start_io_handler,
2078                 scic_sds_port_general_complete_io_handler
2079         },
2080         /* SCI_BASE_PORT_STATE_FAILED */
2081         {
2082                 scic_sds_port_default_start_handler,
2083                 scic_sds_port_default_stop_handler,
2084                 scic_sds_port_default_destruct_handler,
2085                 scic_sds_port_default_reset_handler,
2086                 scic_sds_port_default_add_phy_handler,
2087                 scic_sds_port_default_remove_phy_handler,
2088                 scic_sds_port_default_frame_handler,
2089                 scic_sds_port_default_event_handler,
2090                 scic_sds_port_default_link_up_handler,
2091                 scic_sds_port_default_link_down_handler,
2092                 scic_sds_port_default_start_io_handler,
2093                 scic_sds_port_general_complete_io_handler
2094         }
2095 };
2096
2097 /*
2098  * ******************************************************************************
2099  * *  PORT STATE PRIVATE METHODS
2100  * ****************************************************************************** */
2101
2102 /**
2103  *
2104  * @sci_port: This is the port object which to suspend.
2105  *
2106  * This method will enable the SCU Port Task Scheduler for this port object but
2107  * will leave the port task scheduler in a suspended state. none
2108  */
2109 static void
2110 scic_sds_port_enable_port_task_scheduler(struct scic_sds_port *port)
2111 {
2112         u32 pts_control_value;
2113
2114         pts_control_value = readl(&port->port_task_scheduler_registers->control);
2115         pts_control_value |= SCU_PTSxCR_GEN_BIT(ENABLE) | SCU_PTSxCR_GEN_BIT(SUSPEND);
2116         writel(pts_control_value, &port->port_task_scheduler_registers->control);
2117 }
2118
2119 /**
2120  *
2121  * @sci_port: This is the port object which to resume.
2122  *
2123  * This method will disable the SCU port task scheduler for this port object.
2124  * none
2125  */
2126 static void
2127 scic_sds_port_disable_port_task_scheduler(struct scic_sds_port *port)
2128 {
2129         u32 pts_control_value;
2130
2131         pts_control_value = readl(&port->port_task_scheduler_registers->control);
2132         pts_control_value &=
2133                 ~(SCU_PTSxCR_GEN_BIT(ENABLE) | SCU_PTSxCR_GEN_BIT(SUSPEND));
2134         writel(pts_control_value, &port->port_task_scheduler_registers->control);
2135 }
2136
2137 static void scic_sds_port_post_dummy_remote_node(struct scic_sds_port *sci_port)
2138 {
2139         struct scic_sds_controller *scic = sci_port->owning_controller;
2140         u8 phys_index = sci_port->physical_port_index;
2141         union scu_remote_node_context *rnc;
2142         u16 rni = sci_port->reserved_rni;
2143         u32 command;
2144
2145         rnc = &scic->remote_node_context_table[rni];
2146         rnc->ssp.is_valid = true;
2147
2148         command = SCU_CONTEXT_COMMAND_POST_RNC_32 |
2149                   phys_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT | rni;
2150
2151         scic_sds_controller_post_request(scic, command);
2152
2153         /* ensure hardware has seen the post rnc command and give it
2154          * ample time to act before sending the suspend
2155          */
2156         readl(&scic->smu_registers->interrupt_status); /* flush */
2157         udelay(10);
2158
2159         command = SCU_CONTEXT_COMMAND_POST_RNC_SUSPEND_TX_RX |
2160                   phys_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT | rni;
2161
2162         scic_sds_controller_post_request(scic, command);
2163 }
2164
2165 static void scic_sds_port_invalidate_dummy_remote_node(struct scic_sds_port *sci_port)
2166 {
2167         struct scic_sds_controller *scic = sci_port->owning_controller;
2168         u8 phys_index = sci_port->physical_port_index;
2169         union scu_remote_node_context *rnc;
2170         u16 rni = sci_port->reserved_rni;
2171         u32 command;
2172
2173         rnc = &scic->remote_node_context_table[rni];
2174
2175         rnc->ssp.is_valid = false;
2176
2177         /* ensure the preceding tc abort request has reached the
2178          * controller and give it ample time to act before posting the rnc
2179          * invalidate
2180          */
2181         readl(&scic->smu_registers->interrupt_status); /* flush */
2182         udelay(10);
2183
2184         command = SCU_CONTEXT_COMMAND_POST_RNC_INVALIDATE |
2185                   phys_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT | rni;
2186
2187         scic_sds_controller_post_request(scic, command);
2188 }
2189
2190 /*
2191  * ******************************************************************************
2192  * *  PORT STATE METHODS
2193  * ****************************************************************************** */
2194
2195 /**
2196  *
2197  * @object: This is the object which is cast to a struct scic_sds_port object.
2198  *
2199  * This method will perform the actions required by the struct scic_sds_port on
2200  * entering the SCI_BASE_PORT_STATE_STOPPED. This function sets the stopped
2201  * state handlers for the struct scic_sds_port object and disables the port task
2202  * scheduler in the hardware. none
2203  */
2204 static void scic_sds_port_stopped_state_enter(void *object)
2205 {
2206         struct scic_sds_port *sci_port = object;
2207
2208         scic_sds_port_set_base_state_handlers(
2209                 sci_port, SCI_BASE_PORT_STATE_STOPPED
2210                 );
2211
2212         if (
2213                 SCI_BASE_PORT_STATE_STOPPING
2214                 == sci_port->state_machine.previous_state_id
2215                 ) {
2216                 /*
2217                  * If we enter this state becasuse of a request to stop
2218                  * the port then we want to disable the hardwares port
2219                  * task scheduler. */
2220                 scic_sds_port_disable_port_task_scheduler(sci_port);
2221         }
2222 }
2223
2224 /**
2225  *
2226  * @object: This is the object which is cast to a struct scic_sds_port object.
2227  *
2228  * This method will perform the actions required by the struct scic_sds_port on
2229  * exiting the SCI_BASE_STATE_STOPPED. This function enables the SCU hardware
2230  * port task scheduler. none
2231  */
2232 static void scic_sds_port_stopped_state_exit(void *object)
2233 {
2234         struct scic_sds_port *sci_port = object;
2235
2236         /* Enable and suspend the port task scheduler */
2237         scic_sds_port_enable_port_task_scheduler(sci_port);
2238 }
2239
2240 /**
2241  * scic_sds_port_ready_state_enter -
2242  * @object: This is the object which is cast to a struct scic_sds_port object.
2243  *
2244  * This method will perform the actions required by the struct scic_sds_port on
2245  * entering the SCI_BASE_PORT_STATE_READY. This function sets the ready state
2246  * handlers for the struct scic_sds_port object, reports the port object as
2247  * not ready and starts the ready substate machine. none
2248  */
2249 static void scic_sds_port_ready_state_enter(void *object)
2250 {
2251         struct scic_sds_port *sci_port = object;
2252         struct scic_sds_controller *scic = sci_port->owning_controller;
2253         struct isci_host *ihost = scic_to_ihost(scic);
2254         struct isci_port *iport = sci_port_to_iport(sci_port);
2255         u32 prev_state;
2256
2257         /* Put the ready state handlers in place though they will not be there long */
2258         scic_sds_port_set_base_state_handlers(sci_port, SCI_BASE_PORT_STATE_READY);
2259
2260         prev_state = sci_port->state_machine.previous_state_id;
2261         if (prev_state  == SCI_BASE_PORT_STATE_RESETTING)
2262                 isci_port_hard_reset_complete(iport, SCI_SUCCESS);
2263         else
2264                 isci_port_not_ready(ihost, iport);
2265
2266         /* Post and suspend the dummy remote node context for this port. */
2267         scic_sds_port_post_dummy_remote_node(sci_port);
2268
2269         /* Start the ready substate machine */
2270         sci_base_state_machine_start(&sci_port->ready_substate_machine);
2271 }
2272
2273 static void scic_sds_port_ready_state_exit(void *object)
2274 {
2275         struct scic_sds_port *sci_port = object;
2276
2277         sci_base_state_machine_stop(&sci_port->ready_substate_machine);
2278         scic_sds_port_invalidate_dummy_remote_node(sci_port);
2279 }
2280
2281 /**
2282  *
2283  * @object: This is the object which is cast to a struct scic_sds_port object.
2284  *
2285  * This method will perform the actions required by the struct scic_sds_port on
2286  * entering the SCI_BASE_PORT_STATE_RESETTING. This function sets the resetting
2287  * state handlers for the struct scic_sds_port object. none
2288  */
2289 static void scic_sds_port_resetting_state_enter(void *object)
2290 {
2291         struct scic_sds_port *sci_port = object;
2292
2293         scic_sds_port_set_base_state_handlers(
2294                 sci_port, SCI_BASE_PORT_STATE_RESETTING
2295                 );
2296 }
2297
2298 /**
2299  *
2300  * @object: This is the object which is cast to a struct scic_sds_port object.
2301  *
2302  * This function will perform the actions required by the
2303  * struct scic_sds_port on
2304  * exiting the SCI_BASE_STATE_RESETTING. This function does nothing. none
2305  */
2306 static inline void scic_sds_port_resetting_state_exit(void *object)
2307 {
2308         struct scic_sds_port *sci_port = object;
2309
2310         isci_timer_stop(sci_port->timer_handle);
2311 }
2312
2313 /**
2314  *
2315  * @object: This is the void object which is cast to a
2316  * struct scic_sds_port object.
2317  *
2318  * This method will perform the actions required by the struct scic_sds_port on
2319  * entering the SCI_BASE_PORT_STATE_STOPPING. This function sets the stopping
2320  * state handlers for the struct scic_sds_port object. none
2321  */
2322 static void scic_sds_port_stopping_state_enter(void *object)
2323 {
2324         struct scic_sds_port *sci_port = object;
2325
2326         scic_sds_port_set_base_state_handlers(
2327                 sci_port, SCI_BASE_PORT_STATE_STOPPING
2328                 );
2329 }
2330
2331 /**
2332  *
2333  * @object: This is the object which is cast to a struct scic_sds_port object.
2334  *
2335  * This function will perform the actions required by the
2336  * struct scic_sds_port on
2337  * exiting the SCI_BASE_STATE_STOPPING. This function does nothing. none
2338  */
2339 static inline void
2340 scic_sds_port_stopping_state_exit(void *object)
2341 {
2342         struct scic_sds_port *sci_port = object;
2343
2344         isci_timer_stop(sci_port->timer_handle);
2345
2346         scic_sds_port_destroy_dummy_resources(sci_port);
2347 }
2348
2349 /**
2350  *
2351  * @object: This is the object which is cast to a struct scic_sds_port object.
2352  *
2353  * This function will perform the actions required by the
2354  * struct scic_sds_port on
2355  * entering the SCI_BASE_PORT_STATE_STOPPING. This function sets the stopping
2356  * state handlers for the struct scic_sds_port object. none
2357  */
2358 static void scic_sds_port_failed_state_enter(void *object)
2359 {
2360         struct scic_sds_port *sci_port = object;
2361         struct isci_port *iport = sci_port_to_iport(sci_port);
2362
2363         scic_sds_port_set_base_state_handlers(sci_port,
2364                                               SCI_BASE_PORT_STATE_FAILED);
2365
2366         isci_port_hard_reset_complete(iport, SCI_FAILURE_TIMEOUT);
2367 }
2368
2369 /* --------------------------------------------------------------------------- */
2370
2371 static const struct sci_base_state scic_sds_port_state_table[] = {
2372         [SCI_BASE_PORT_STATE_STOPPED] = {
2373                 .enter_state = scic_sds_port_stopped_state_enter,
2374                 .exit_state  = scic_sds_port_stopped_state_exit
2375         },
2376         [SCI_BASE_PORT_STATE_STOPPING] = {
2377                 .enter_state = scic_sds_port_stopping_state_enter,
2378                 .exit_state  = scic_sds_port_stopping_state_exit
2379         },
2380         [SCI_BASE_PORT_STATE_READY] = {
2381                 .enter_state = scic_sds_port_ready_state_enter,
2382                 .exit_state  = scic_sds_port_ready_state_exit
2383         },
2384         [SCI_BASE_PORT_STATE_RESETTING] = {
2385                 .enter_state = scic_sds_port_resetting_state_enter,
2386                 .exit_state  = scic_sds_port_resetting_state_exit
2387         },
2388         [SCI_BASE_PORT_STATE_FAILED] = {
2389                 .enter_state = scic_sds_port_failed_state_enter,
2390         }
2391 };
2392
2393 void scic_sds_port_construct(struct scic_sds_port *sci_port, u8 index,
2394                              struct scic_sds_controller *scic)
2395 {
2396         sci_base_state_machine_construct(&sci_port->state_machine,
2397                                          sci_port,
2398                                          scic_sds_port_state_table,
2399                                          SCI_BASE_PORT_STATE_STOPPED);
2400
2401         sci_base_state_machine_start(&sci_port->state_machine);
2402
2403         sci_base_state_machine_construct(&sci_port->ready_substate_machine,
2404                                          sci_port,
2405                                          scic_sds_port_ready_substate_table,
2406                                          SCIC_SDS_PORT_READY_SUBSTATE_WAITING);
2407
2408         sci_port->logical_port_index  = SCIC_SDS_DUMMY_PORT;
2409         sci_port->physical_port_index = index;
2410         sci_port->active_phy_mask     = 0;
2411
2412         sci_port->owning_controller = scic;
2413
2414         sci_port->started_request_count = 0;
2415         sci_port->assigned_device_count = 0;
2416
2417         sci_port->reserved_rni = SCU_DUMMY_INDEX;
2418         sci_port->reserved_tci = SCU_DUMMY_INDEX;
2419
2420         sci_port->timer_handle = NULL;
2421         sci_port->port_task_scheduler_registers = NULL;
2422
2423         for (index = 0; index < SCI_MAX_PHYS; index++)
2424                 sci_port->phy_table[index] = NULL;
2425 }