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