blob: 0e84e29335dd509f2c388882ed7b54acdd0da507 [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
55
Dan Williams6f231dd2011-07-02 22:56:22 -070056#include "isci.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070057#include "port.h"
58#include "request.h"
Dan Williamse2f8db52011-05-10 02:28:46 -070059
60#define SCIC_SDS_PORT_HARD_RESET_TIMEOUT (1000)
61#define SCU_DUMMY_INDEX (0xFFFF)
Dan Williams6f231dd2011-07-02 22:56:22 -070062
Dan Williamse5313812011-05-07 10:11:43 -070063static void isci_port_change_state(struct isci_port *iport, enum isci_status status)
64{
65 unsigned long flags;
Dan Williams6f231dd2011-07-02 22:56:22 -070066
Dan Williamse5313812011-05-07 10:11:43 -070067 dev_dbg(&iport->isci_host->pdev->dev,
68 "%s: iport = %p, state = 0x%x\n",
69 __func__, iport, status);
Dan Williams6f231dd2011-07-02 22:56:22 -070070
Dan Williamse5313812011-05-07 10:11:43 -070071 /* XXX pointless lock */
72 spin_lock_irqsave(&iport->state_lock, flags);
73 iport->status = status;
74 spin_unlock_irqrestore(&iport->state_lock, flags);
75}
Dan Williams6f231dd2011-07-02 22:56:22 -070076
Dan Williamse2f8db52011-05-10 02:28:46 -070077/*
78 * This function will indicate which protocols are supported by this port.
79 * @sci_port: a handle corresponding to the SAS port for which to return the
80 * supported protocols.
81 * @protocols: This parameter specifies a pointer to a data structure
82 * which the core will copy the protocol values for the port from the
83 * transmit_identification register.
84 */
85static void
86scic_sds_port_get_protocols(struct scic_sds_port *sci_port,
87 struct scic_phy_proto *protocols)
Dan Williams6f231dd2011-07-02 22:56:22 -070088{
Dan Williamse2f8db52011-05-10 02:28:46 -070089 u8 index;
90
91 protocols->all = 0;
92
93 for (index = 0; index < SCI_MAX_PHYS; index++) {
94 if (sci_port->phy_table[index] != NULL) {
95 scic_sds_phy_get_protocols(sci_port->phy_table[index],
96 protocols);
97 }
98 }
Dan Williams6f231dd2011-07-02 22:56:22 -070099}
100
Dan Williams6f231dd2011-07-02 22:56:22 -0700101/**
Dan Williamse2f8db52011-05-10 02:28:46 -0700102 * This method requests a list (mask) of the phys contained in the supplied SAS
103 * port.
104 * @sci_port: a handle corresponding to the SAS port for which to return the
105 * phy mask.
Dan Williams6f231dd2011-07-02 22:56:22 -0700106 *
Dan Williamse2f8db52011-05-10 02:28:46 -0700107 * Return a bit mask indicating which phys are a part of this port. Each bit
108 * corresponds to a phy identifier (e.g. bit 0 = phy id 0).
Dan Williams6f231dd2011-07-02 22:56:22 -0700109 */
Dan Williamse2f8db52011-05-10 02:28:46 -0700110static u32 scic_sds_port_get_phys(struct scic_sds_port *sci_port)
Dan Williams6f231dd2011-07-02 22:56:22 -0700111{
Dan Williamse2f8db52011-05-10 02:28:46 -0700112 u32 index;
113 u32 mask;
114
115 mask = 0;
116
117 for (index = 0; index < SCI_MAX_PHYS; index++) {
118 if (sci_port->phy_table[index] != NULL) {
119 mask |= (1 << index);
120 }
121 }
122
123 return mask;
Dan Williams6f231dd2011-07-02 22:56:22 -0700124}
125
Dan Williamse2f8db52011-05-10 02:28:46 -0700126/**
127 * scic_port_get_properties() - This method simply returns the properties
128 * regarding the port, such as: physical index, protocols, sas address, etc.
129 * @port: this parameter specifies the port for which to retrieve the physical
130 * index.
131 * @properties: This parameter specifies the properties structure into which to
132 * copy the requested information.
133 *
134 * Indicate if the user specified a valid port. SCI_SUCCESS This value is
135 * returned if the specified port was valid. SCI_FAILURE_INVALID_PORT This
136 * value is returned if the specified port is not valid. When this value is
137 * returned, no data is copied to the properties output parameter.
138 */
139static enum sci_status scic_port_get_properties(struct scic_sds_port *port,
140 struct scic_port_properties *prop)
Dan Williams6f231dd2011-07-02 22:56:22 -0700141{
Dan Williamse2f8db52011-05-10 02:28:46 -0700142 if ((port == NULL) ||
143 (port->logical_port_index == SCIC_SDS_DUMMY_PORT))
144 return SCI_FAILURE_INVALID_PORT;
Dan Williams6f231dd2011-07-02 22:56:22 -0700145
Dan Williamse2f8db52011-05-10 02:28:46 -0700146 prop->index = port->logical_port_index;
147 prop->phy_mask = scic_sds_port_get_phys(port);
148 scic_sds_port_get_sas_address(port, &prop->local.sas_address);
149 scic_sds_port_get_protocols(port, &prop->local.protocols);
150 scic_sds_port_get_attached_sas_address(port, &prop->remote.sas_address);
Dan Williams6f231dd2011-07-02 22:56:22 -0700151
Dan Williamse2f8db52011-05-10 02:28:46 -0700152 return SCI_SUCCESS;
Dan Williams6f231dd2011-07-02 22:56:22 -0700153}
154
Jeff Skirvin61aaff42011-06-21 12:16:33 -0700155static void scic_port_bcn_enable(struct scic_sds_port *sci_port)
156{
157 struct scic_sds_phy *sci_phy;
158 u32 val;
159 int i;
160
161 for (i = 0; i < ARRAY_SIZE(sci_port->phy_table); i++) {
162 sci_phy = sci_port->phy_table[i];
163 if (!sci_phy)
164 continue;
165 val = readl(&sci_phy->link_layer_registers->link_layer_control);
166 /* clear the bit by writing 1. */
167 writel(val, &sci_phy->link_layer_registers->link_layer_control);
168 }
169}
170
171/* called under scic_lock to stabilize phy:port associations */
172void isci_port_bcn_enable(struct isci_host *ihost, struct isci_port *iport)
173{
174 int i;
175
176 clear_bit(IPORT_BCN_BLOCKED, &iport->flags);
177 wake_up(&ihost->eventq);
178
179 if (!test_and_clear_bit(IPORT_BCN_PENDING, &iport->flags))
180 return;
181
182 for (i = 0; i < ARRAY_SIZE(iport->sci.phy_table); i++) {
183 struct scic_sds_phy *sci_phy = iport->sci.phy_table[i];
184 struct isci_phy *iphy = sci_phy_to_iphy(sci_phy);
185
186 if (!sci_phy)
187 continue;
188
189 ihost->sas_ha.notify_port_event(&iphy->sas_phy,
190 PORTE_BROADCAST_RCVD);
191 break;
192 }
193}
194
195void isci_port_bc_change_received(struct isci_host *ihost,
196 struct scic_sds_port *sci_port,
197 struct scic_sds_phy *sci_phy)
198{
199 struct isci_phy *iphy = sci_phy_to_iphy(sci_phy);
200 struct isci_port *iport = iphy->isci_port;
201
202 if (iport && test_bit(IPORT_BCN_BLOCKED, &iport->flags)) {
203 dev_dbg(&ihost->pdev->dev,
204 "%s: disabled BCN; isci_phy = %p, sas_phy = %p\n",
205 __func__, iphy, &iphy->sas_phy);
206 set_bit(IPORT_BCN_PENDING, &iport->flags);
207 atomic_inc(&iport->event);
208 wake_up(&ihost->eventq);
209 } else {
210 dev_dbg(&ihost->pdev->dev,
211 "%s: isci_phy = %p, sas_phy = %p\n",
212 __func__, iphy, &iphy->sas_phy);
213
214 ihost->sas_ha.notify_port_event(&iphy->sas_phy,
215 PORTE_BROADCAST_RCVD);
216 }
217 scic_port_bcn_enable(sci_port);
218}
219
Dan Williamse2f8db52011-05-10 02:28:46 -0700220static void isci_port_link_up(struct isci_host *isci_host,
221 struct scic_sds_port *port,
222 struct scic_sds_phy *phy)
Dan Williams6f231dd2011-07-02 22:56:22 -0700223{
224 unsigned long flags;
225 struct scic_port_properties properties;
Dan Williams4b339812011-05-06 17:36:38 -0700226 struct isci_phy *isci_phy = sci_phy_to_iphy(phy);
Dan Williamse5313812011-05-07 10:11:43 -0700227 struct isci_port *isci_port = sci_port_to_iport(port);
Dan Williams6f231dd2011-07-02 22:56:22 -0700228 unsigned long success = true;
229
230 BUG_ON(isci_phy->isci_port != NULL);
Bartosz Barcinski6cb4d6b2011-04-12 17:28:43 -0700231
Dan Williams6f231dd2011-07-02 22:56:22 -0700232 isci_phy->isci_port = isci_port;
233
234 dev_dbg(&isci_host->pdev->dev,
235 "%s: isci_port = %p\n",
236 __func__, isci_port);
237
238 spin_lock_irqsave(&isci_phy->sas_phy.frame_rcvd_lock, flags);
239
240 isci_port_change_state(isci_phy->isci_port, isci_starting);
241
242 scic_port_get_properties(port, &properties);
243
Dave Jiangd7b90fc2011-05-04 18:22:33 -0700244 if (phy->protocol == SCIC_SDS_PHY_PROTOCOL_SATA) {
Dan Williams150fc6f2011-02-25 10:25:21 -0800245 u64 attached_sas_address;
Dan Williams6f231dd2011-07-02 22:56:22 -0700246
Dan Williams6f231dd2011-07-02 22:56:22 -0700247 isci_phy->sas_phy.oob_mode = SATA_OOB_MODE;
Dave Jiangf2f30082011-05-04 15:02:02 -0700248 isci_phy->sas_phy.frame_rcvd_size = sizeof(struct dev_to_host_fis);
Dan Williams6f231dd2011-07-02 22:56:22 -0700249
250 /*
251 * For direct-attached SATA devices, the SCI core will
252 * automagically assign a SAS address to the end device
253 * for the purpose of creating a port. This SAS address
254 * will not be the same as assigned to the PHY and needs
255 * to be obtained from struct scic_port_properties properties.
256 */
Dan Williams150fc6f2011-02-25 10:25:21 -0800257 attached_sas_address = properties.remote.sas_address.high;
258 attached_sas_address <<= 32;
259 attached_sas_address |= properties.remote.sas_address.low;
260 swab64s(&attached_sas_address);
Dan Williams6f231dd2011-07-02 22:56:22 -0700261
Dan Williams150fc6f2011-02-25 10:25:21 -0800262 memcpy(&isci_phy->sas_phy.attached_sas_addr,
263 &attached_sas_address, sizeof(attached_sas_address));
Dave Jiangd7b90fc2011-05-04 18:22:33 -0700264 } else if (phy->protocol == SCIC_SDS_PHY_PROTOCOL_SAS) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700265 isci_phy->sas_phy.oob_mode = SAS_OOB_MODE;
Dave Jiang4b7ebd02011-05-04 15:37:52 -0700266 isci_phy->sas_phy.frame_rcvd_size = sizeof(struct sas_identify_frame);
Dan Williams6f231dd2011-07-02 22:56:22 -0700267
268 /* Copy the attached SAS address from the IAF */
269 memcpy(isci_phy->sas_phy.attached_sas_addr,
Dave Jiang4b7ebd02011-05-04 15:37:52 -0700270 isci_phy->frame_rcvd.iaf.sas_addr, SAS_ADDR_SIZE);
Dan Williams6f231dd2011-07-02 22:56:22 -0700271 } else {
272 dev_err(&isci_host->pdev->dev, "%s: unkown target\n", __func__);
273 success = false;
274 }
275
Dan Williams83e51432011-02-18 09:25:13 -0800276 isci_phy->sas_phy.phy->negotiated_linkrate = sci_phy_linkrate(phy);
277
Dan Williams6f231dd2011-07-02 22:56:22 -0700278 spin_unlock_irqrestore(&isci_phy->sas_phy.frame_rcvd_lock, flags);
279
280 /* Notify libsas that we have an address frame, if indeed
281 * we've found an SSP, SMP, or STP target */
282 if (success)
283 isci_host->sas_ha.notify_port_event(&isci_phy->sas_phy,
284 PORTE_BYTES_DMAED);
285}
286
287
288/**
289 * isci_port_link_down() - This function is called by the sci core when a link
290 * becomes inactive.
291 * @isci_host: This parameter specifies the isci host object.
292 * @phy: This parameter specifies the isci phy with the active link.
293 * @port: This parameter specifies the isci port with the active link.
294 *
295 */
Dan Williamse2f8db52011-05-10 02:28:46 -0700296static void isci_port_link_down(struct isci_host *isci_host,
297 struct isci_phy *isci_phy,
298 struct isci_port *isci_port)
Dan Williams6f231dd2011-07-02 22:56:22 -0700299{
300 struct isci_remote_device *isci_device;
301
302 dev_dbg(&isci_host->pdev->dev,
303 "%s: isci_port = %p\n", __func__, isci_port);
304
305 if (isci_port) {
306
307 /* check to see if this is the last phy on this port. */
Jeff Skirvin61aaff42011-06-21 12:16:33 -0700308 if (isci_phy->sas_phy.port &&
309 isci_phy->sas_phy.port->num_phys == 1) {
310 atomic_inc(&isci_port->event);
311 isci_port_bcn_enable(isci_host, isci_port);
Dan Williams6f231dd2011-07-02 22:56:22 -0700312
Jeff Skirvin61aaff42011-06-21 12:16:33 -0700313 /* change the state for all devices on this port. The
314 * next task sent to this device will be returned as
315 * SAS_TASK_UNDELIVERED, and the scsi mid layer will
316 * remove the target
Dan Williams6f231dd2011-07-02 22:56:22 -0700317 */
318 list_for_each_entry(isci_device,
319 &isci_port->remote_dev_list,
320 node) {
321 dev_dbg(&isci_host->pdev->dev,
322 "%s: isci_device = %p\n",
323 __func__, isci_device);
Dan Williams209fae12011-06-13 17:39:44 -0700324 set_bit(IDEV_GONE, &isci_device->flags);
Dan Williams6f231dd2011-07-02 22:56:22 -0700325 }
326 }
327 isci_port_change_state(isci_port, isci_stopping);
328 }
329
330 /* Notify libsas of the borken link, this will trigger calls to our
331 * isci_port_deformed and isci_dev_gone functions.
332 */
333 sas_phy_disconnected(&isci_phy->sas_phy);
334 isci_host->sas_ha.notify_phy_event(&isci_phy->sas_phy,
335 PHYE_LOSS_OF_SIGNAL);
336
337 isci_phy->isci_port = NULL;
338
339 dev_dbg(&isci_host->pdev->dev,
340 "%s: isci_port = %p - Done\n", __func__, isci_port);
341}
342
343
344/**
Dan Williams6f231dd2011-07-02 22:56:22 -0700345 * isci_port_ready() - This function is called by the sci core when a link
346 * becomes ready.
347 * @isci_host: This parameter specifies the isci host object.
348 * @port: This parameter specifies the sci port with the active link.
349 *
350 */
Dan Williamse2f8db52011-05-10 02:28:46 -0700351static void isci_port_ready(struct isci_host *isci_host, struct isci_port *isci_port)
Dan Williams6f231dd2011-07-02 22:56:22 -0700352{
353 dev_dbg(&isci_host->pdev->dev,
354 "%s: isci_port = %p\n", __func__, isci_port);
355
356 complete_all(&isci_port->start_complete);
357 isci_port_change_state(isci_port, isci_ready);
358 return;
359}
360
361/**
362 * isci_port_not_ready() - This function is called by the sci core when a link
363 * is not ready. All remote devices on this link will be removed if they are
364 * in the stopping state.
365 * @isci_host: This parameter specifies the isci host object.
366 * @port: This parameter specifies the sci port with the active link.
367 *
368 */
Dan Williamse2f8db52011-05-10 02:28:46 -0700369static void isci_port_not_ready(struct isci_host *isci_host, struct isci_port *isci_port)
Dan Williams6f231dd2011-07-02 22:56:22 -0700370{
371 dev_dbg(&isci_host->pdev->dev,
372 "%s: isci_port = %p\n", __func__, isci_port);
373}
374
Dan Williamse2f8db52011-05-10 02:28:46 -0700375static void isci_port_stop_complete(struct scic_sds_controller *scic,
376 struct scic_sds_port *sci_port,
377 enum sci_status completion_status)
378{
379 dev_dbg(&scic_to_ihost(scic)->pdev->dev, "Port stop complete\n");
380}
381
Dan Williams6f231dd2011-07-02 22:56:22 -0700382/**
383 * isci_port_hard_reset_complete() - This function is called by the sci core
384 * when the hard reset complete notification has been received.
385 * @port: This parameter specifies the sci port with the active link.
386 * @completion_status: This parameter specifies the core status for the reset
387 * process.
388 *
389 */
Dan Williamse2f8db52011-05-10 02:28:46 -0700390static void isci_port_hard_reset_complete(struct isci_port *isci_port,
391 enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700392{
393 dev_dbg(&isci_port->isci_host->pdev->dev,
394 "%s: isci_port = %p, completion_status=%x\n",
395 __func__, isci_port, completion_status);
396
397 /* Save the status of the hard reset from the port. */
398 isci_port->hard_reset_status = completion_status;
399
400 complete_all(&isci_port->hard_reset_complete);
401}
Dan Williams4393aa42011-03-31 13:10:44 -0700402
Dan Williamse2f8db52011-05-10 02:28:46 -0700403/* This method will return a true value if the specified phy can be assigned to
404 * this port The following is a list of phys for each port that are allowed: -
405 * Port 0 - 3 2 1 0 - Port 1 - 1 - Port 2 - 3 2 - Port 3 - 3 This method
406 * doesn't preclude all configurations. It merely ensures that a phy is part
407 * of the allowable set of phy identifiers for that port. For example, one
408 * could assign phy 3 to port 0 and no other phys. Please refer to
409 * scic_sds_port_is_phy_mask_valid() for information regarding whether the
410 * phy_mask for a port can be supported. bool true if this is a valid phy
411 * assignment for the port false if this is not a valid phy assignment for the
412 * port
413 */
414bool scic_sds_port_is_valid_phy_assignment(struct scic_sds_port *sci_port,
415 u32 phy_index)
416{
417 /* Initialize to invalid value. */
418 u32 existing_phy_index = SCI_MAX_PHYS;
419 u32 index;
420
421 if ((sci_port->physical_port_index == 1) && (phy_index != 1)) {
422 return false;
423 }
424
425 if (sci_port->physical_port_index == 3 && phy_index != 3) {
426 return false;
427 }
428
429 if (
430 (sci_port->physical_port_index == 2)
431 && ((phy_index == 0) || (phy_index == 1))
432 ) {
433 return false;
434 }
435
436 for (index = 0; index < SCI_MAX_PHYS; index++) {
437 if ((sci_port->phy_table[index] != NULL)
438 && (index != phy_index)) {
439 existing_phy_index = index;
440 }
441 }
442
443 /*
444 * Ensure that all of the phys in the port are capable of
445 * operating at the same maximum link rate. */
446 if (
447 (existing_phy_index < SCI_MAX_PHYS)
448 && (sci_port->owning_controller->user_parameters.sds1.phys[
449 phy_index].max_speed_generation !=
450 sci_port->owning_controller->user_parameters.sds1.phys[
451 existing_phy_index].max_speed_generation)
452 )
453 return false;
454
455 return true;
456}
457
458/**
459 *
460 * @sci_port: This is the port object for which to determine if the phy mask
461 * can be supported.
462 *
463 * This method will return a true value if the port's phy mask can be supported
464 * by the SCU. The following is a list of valid PHY mask configurations for
465 * each port: - Port 0 - [[3 2] 1] 0 - Port 1 - [1] - Port 2 - [[3] 2]
466 * - Port 3 - [3] This method returns a boolean indication specifying if the
467 * phy mask can be supported. true if this is a valid phy assignment for the
468 * port false if this is not a valid phy assignment for the port
469 */
470static bool scic_sds_port_is_phy_mask_valid(
471 struct scic_sds_port *sci_port,
472 u32 phy_mask)
473{
474 if (sci_port->physical_port_index == 0) {
475 if (((phy_mask & 0x0F) == 0x0F)
476 || ((phy_mask & 0x03) == 0x03)
477 || ((phy_mask & 0x01) == 0x01)
478 || (phy_mask == 0))
479 return true;
480 } else if (sci_port->physical_port_index == 1) {
481 if (((phy_mask & 0x02) == 0x02)
482 || (phy_mask == 0))
483 return true;
484 } else if (sci_port->physical_port_index == 2) {
485 if (((phy_mask & 0x0C) == 0x0C)
486 || ((phy_mask & 0x04) == 0x04)
487 || (phy_mask == 0))
488 return true;
489 } else if (sci_port->physical_port_index == 3) {
490 if (((phy_mask & 0x08) == 0x08)
491 || (phy_mask == 0))
492 return true;
493 }
494
495 return false;
496}
497
498/**
499 *
500 * @sci_port: This parameter specifies the port from which to return a
501 * connected phy.
502 *
503 * This method retrieves a currently active (i.e. connected) phy contained in
504 * the port. Currently, the lowest order phy that is connected is returned.
505 * This method returns a pointer to a SCIS_SDS_PHY object. NULL This value is
506 * returned if there are no currently active (i.e. connected to a remote end
507 * point) phys contained in the port. All other values specify a struct scic_sds_phy
508 * object that is active in the port.
509 */
510static struct scic_sds_phy *scic_sds_port_get_a_connected_phy(
511 struct scic_sds_port *sci_port
512 ) {
513 u32 index;
514 struct scic_sds_phy *phy;
515
516 for (index = 0; index < SCI_MAX_PHYS; index++) {
517 /*
518 * Ensure that the phy is both part of the port and currently
519 * connected to the remote end-point. */
520 phy = sci_port->phy_table[index];
521 if (
522 (phy != NULL)
523 && scic_sds_port_active_phy(sci_port, phy)
524 ) {
525 return phy;
526 }
527 }
528
529 return NULL;
530}
531
532/**
533 * scic_sds_port_set_phy() -
534 * @out]: port The port object to which the phy assignement is being made.
535 * @out]: phy The phy which is being assigned to the port.
536 *
537 * This method attempts to make the assignment of the phy to the port. If
538 * successful the phy is assigned to the ports phy table. bool true if the phy
539 * assignment can be made. false if the phy assignement can not be made. This
540 * is a functional test that only fails if the phy is currently assigned to a
541 * different port.
542 */
543static enum sci_status scic_sds_port_set_phy(
544 struct scic_sds_port *port,
545 struct scic_sds_phy *phy)
546{
547 /*
548 * Check to see if we can add this phy to a port
549 * that means that the phy is not part of a port and that the port does
550 * not already have a phy assinged to the phy index. */
551 if (
552 (port->phy_table[phy->phy_index] == NULL)
Dan Williams4f20ef42011-05-12 06:00:31 -0700553 && (phy_get_non_dummy_port(phy) == NULL)
Dan Williamse2f8db52011-05-10 02:28:46 -0700554 && scic_sds_port_is_valid_phy_assignment(port, phy->phy_index)
555 ) {
556 /*
557 * Phy is being added in the stopped state so we are in MPC mode
558 * make logical port index = physical port index */
559 port->logical_port_index = port->physical_port_index;
560 port->phy_table[phy->phy_index] = phy;
561 scic_sds_phy_set_port(phy, port);
562
563 return SCI_SUCCESS;
564 }
565
566 return SCI_FAILURE;
567}
568
569/**
570 * scic_sds_port_clear_phy() -
571 * @out]: port The port from which the phy is being cleared.
572 * @out]: phy The phy being cleared from the port.
573 *
574 * This method will clear the phy assigned to this port. This method fails if
575 * this phy is not currently assinged to this port. bool true if the phy is
576 * removed from the port. false if this phy is not assined to this port.
577 */
578static enum sci_status scic_sds_port_clear_phy(
579 struct scic_sds_port *port,
580 struct scic_sds_phy *phy)
581{
582 /* Make sure that this phy is part of this port */
583 if (port->phy_table[phy->phy_index] == phy &&
Dan Williams4f20ef42011-05-12 06:00:31 -0700584 phy_get_non_dummy_port(phy) == port) {
Dan Williamse2f8db52011-05-10 02:28:46 -0700585 struct scic_sds_controller *scic = port->owning_controller;
586 struct isci_host *ihost = scic_to_ihost(scic);
587
588 /* Yep it is assigned to this port so remove it */
589 scic_sds_phy_set_port(phy, &ihost->ports[SCI_MAX_PORTS].sci);
590 port->phy_table[phy->phy_index] = NULL;
591 return SCI_SUCCESS;
592 }
593
594 return SCI_FAILURE;
595}
596
Dan Williamse2f8db52011-05-10 02:28:46 -0700597
598/**
599 * This method requests the SAS address for the supplied SAS port from the SCI
600 * implementation.
601 * @sci_port: a handle corresponding to the SAS port for which to return the
602 * SAS address.
603 * @sas_address: This parameter specifies a pointer to a SAS address structure
604 * into which the core will copy the SAS address for the port.
605 *
606 */
607void scic_sds_port_get_sas_address(
608 struct scic_sds_port *sci_port,
609 struct sci_sas_address *sas_address)
610{
611 u32 index;
612
613 sas_address->high = 0;
614 sas_address->low = 0;
615
616 for (index = 0; index < SCI_MAX_PHYS; index++) {
617 if (sci_port->phy_table[index] != NULL) {
618 scic_sds_phy_get_sas_address(sci_port->phy_table[index], sas_address);
619 }
620 }
621}
622
623/*
624 * This function requests the SAS address for the device directly attached to
625 * this SAS port.
626 * @sci_port: a handle corresponding to the SAS port for which to return the
627 * SAS address.
628 * @sas_address: This parameter specifies a pointer to a SAS address structure
629 * into which the core will copy the SAS address for the device directly
630 * attached to the port.
631 *
632 */
633void scic_sds_port_get_attached_sas_address(
634 struct scic_sds_port *sci_port,
635 struct sci_sas_address *sas_address)
636{
637 struct scic_sds_phy *sci_phy;
638
639 /*
640 * Ensure that the phy is both part of the port and currently
641 * connected to the remote end-point.
642 */
643 sci_phy = scic_sds_port_get_a_connected_phy(sci_port);
644 if (sci_phy) {
645 if (sci_phy->protocol != SCIC_SDS_PHY_PROTOCOL_SATA) {
646 scic_sds_phy_get_attached_sas_address(sci_phy,
647 sas_address);
648 } else {
649 scic_sds_phy_get_sas_address(sci_phy, sas_address);
650 sas_address->low += sci_phy->phy_index;
651 }
652 } else {
653 sas_address->high = 0;
654 sas_address->low = 0;
655 }
656}
657
658/**
659 * scic_sds_port_construct_dummy_rnc() - create dummy rnc for si workaround
660 *
661 * @sci_port: logical port on which we need to create the remote node context
662 * @rni: remote node index for this remote node context.
663 *
664 * This routine will construct a dummy remote node context data structure
665 * This structure will be posted to the hardware to work around a scheduler
666 * error in the hardware.
667 */
668static void scic_sds_port_construct_dummy_rnc(struct scic_sds_port *sci_port, u16 rni)
669{
670 union scu_remote_node_context *rnc;
671
672 rnc = &sci_port->owning_controller->remote_node_context_table[rni];
673
674 memset(rnc, 0, sizeof(union scu_remote_node_context));
675
676 rnc->ssp.remote_sas_address_hi = 0;
677 rnc->ssp.remote_sas_address_lo = 0;
678
679 rnc->ssp.remote_node_index = rni;
680 rnc->ssp.remote_node_port_width = 1;
681 rnc->ssp.logical_port_index = sci_port->physical_port_index;
682
683 rnc->ssp.nexus_loss_timer_enable = false;
684 rnc->ssp.check_bit = false;
685 rnc->ssp.is_valid = true;
686 rnc->ssp.is_remote_node_context = true;
687 rnc->ssp.function_number = 0;
688 rnc->ssp.arbitration_wait_time = 0;
689}
690
Dan Williamsdd047c82011-06-09 11:06:58 -0700691/*
692 * construct a dummy task context data structure. This
Dan Williamse2f8db52011-05-10 02:28:46 -0700693 * structure will be posted to the hardwre to work around a scheduler error
694 * in the hardware.
Dan Williamse2f8db52011-05-10 02:28:46 -0700695 */
Dan Williamsdd047c82011-06-09 11:06:58 -0700696static void scic_sds_port_construct_dummy_task(struct scic_sds_port *sci_port, u16 tag)
Dan Williamse2f8db52011-05-10 02:28:46 -0700697{
Dan Williams312e0c22011-06-28 13:47:09 -0700698 struct scic_sds_controller *scic = sci_port->owning_controller;
Dan Williamse2f8db52011-05-10 02:28:46 -0700699 struct scu_task_context *task_context;
700
Dan Williams312e0c22011-06-28 13:47:09 -0700701 task_context = &scic->task_context_table[ISCI_TAG_TCI(tag)];
Dan Williamse2f8db52011-05-10 02:28:46 -0700702 memset(task_context, 0, sizeof(struct scu_task_context));
703
Dan Williamse2f8db52011-05-10 02:28:46 -0700704 task_context->initiator_request = 1;
705 task_context->connection_rate = 1;
Dan Williamse2f8db52011-05-10 02:28:46 -0700706 task_context->logical_port_index = sci_port->physical_port_index;
707 task_context->protocol_type = SCU_TASK_CONTEXT_PROTOCOL_SSP;
Dan Williamsdd047c82011-06-09 11:06:58 -0700708 task_context->task_index = ISCI_TAG_TCI(tag);
Dan Williamse2f8db52011-05-10 02:28:46 -0700709 task_context->valid = SCU_TASK_CONTEXT_VALID;
710 task_context->context_type = SCU_TASK_CONTEXT_TYPE;
Dan Williamse2f8db52011-05-10 02:28:46 -0700711 task_context->remote_node_index = sci_port->reserved_rni;
Dan Williamse2f8db52011-05-10 02:28:46 -0700712 task_context->do_not_dma_ssp_good_response = 1;
Dan Williamse2f8db52011-05-10 02:28:46 -0700713 task_context->task_phase = 0x01;
714}
715
716static void scic_sds_port_destroy_dummy_resources(struct scic_sds_port *sci_port)
717{
718 struct scic_sds_controller *scic = sci_port->owning_controller;
719
Dan Williams312e0c22011-06-28 13:47:09 -0700720 if (sci_port->reserved_tag != SCI_CONTROLLER_INVALID_IO_TAG)
721 isci_free_tag(scic_to_ihost(scic), sci_port->reserved_tag);
Dan Williamse2f8db52011-05-10 02:28:46 -0700722
723 if (sci_port->reserved_rni != SCU_DUMMY_INDEX)
724 scic_sds_remote_node_table_release_remote_node_index(&scic->available_remote_nodes,
725 1, sci_port->reserved_rni);
726
727 sci_port->reserved_rni = SCU_DUMMY_INDEX;
Dan Williams312e0c22011-06-28 13:47:09 -0700728 sci_port->reserved_tag = SCI_CONTROLLER_INVALID_IO_TAG;
Dan Williamse2f8db52011-05-10 02:28:46 -0700729}
730
731/**
732 * This method performs initialization of the supplied port. Initialization
733 * includes: - state machine initialization - member variable initialization
734 * - configuring the phy_mask
735 * @sci_port:
736 * @transport_layer_registers:
737 * @port_task_scheduler_registers:
738 * @port_configuration_regsiter:
739 *
740 * enum sci_status SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION This value is returned
741 * if the phy being added to the port
742 */
743enum sci_status scic_sds_port_initialize(
744 struct scic_sds_port *sci_port,
745 void __iomem *port_task_scheduler_registers,
746 void __iomem *port_configuration_regsiter,
747 void __iomem *viit_registers)
748{
749 sci_port->port_task_scheduler_registers = port_task_scheduler_registers;
750 sci_port->port_pe_configuration_register = port_configuration_regsiter;
751 sci_port->viit_registers = viit_registers;
752
753 return SCI_SUCCESS;
754}
755
Dan Williamse2f8db52011-05-10 02:28:46 -0700756
757/**
758 * This method assigns the direct attached device ID for this port.
759 *
760 * @param[in] sci_port The port for which the direct attached device id is to
761 * be assigned.
762 * @param[in] device_id The direct attached device ID to assign to the port.
763 * This will be the RNi for the device
764 */
765void scic_sds_port_setup_transports(
766 struct scic_sds_port *sci_port,
767 u32 device_id)
768{
769 u8 index;
770
771 for (index = 0; index < SCI_MAX_PHYS; index++) {
772 if (sci_port->active_phy_mask & (1 << index))
773 scic_sds_phy_setup_transport(sci_port->phy_table[index], device_id);
774 }
775}
776
777/**
778 *
779 * @sci_port: This is the port on which the phy should be enabled.
780 * @sci_phy: This is the specific phy which to enable.
781 * @do_notify_user: This parameter specifies whether to inform the user (via
782 * scic_cb_port_link_up()) as to the fact that a new phy as become ready.
783 *
784 * This function will activate the phy in the port.
785 * Activation includes: - adding
786 * the phy to the port - enabling the Protocol Engine in the silicon. -
787 * notifying the user that the link is up. none
788 */
789static void scic_sds_port_activate_phy(struct scic_sds_port *sci_port,
790 struct scic_sds_phy *sci_phy,
791 bool do_notify_user)
792{
793 struct scic_sds_controller *scic = sci_port->owning_controller;
794 struct isci_host *ihost = scic_to_ihost(scic);
795
796 if (sci_phy->protocol != SCIC_SDS_PHY_PROTOCOL_SATA)
797 scic_sds_phy_resume(sci_phy);
798
799 sci_port->active_phy_mask |= 1 << sci_phy->phy_index;
800
801 scic_sds_controller_clear_invalid_phy(scic, sci_phy);
802
803 if (do_notify_user == true)
804 isci_port_link_up(ihost, sci_port, sci_phy);
805}
806
807void scic_sds_port_deactivate_phy(struct scic_sds_port *sci_port,
808 struct scic_sds_phy *sci_phy,
809 bool do_notify_user)
810{
811 struct scic_sds_controller *scic = scic_sds_port_get_controller(sci_port);
812 struct isci_port *iport = sci_port_to_iport(sci_port);
813 struct isci_host *ihost = scic_to_ihost(scic);
814 struct isci_phy *iphy = sci_phy_to_iphy(sci_phy);
815
816 sci_port->active_phy_mask &= ~(1 << sci_phy->phy_index);
817
818 sci_phy->max_negotiated_speed = SAS_LINK_RATE_UNKNOWN;
819
820 /* Re-assign the phy back to the LP as if it were a narrow port */
821 writel(sci_phy->phy_index,
822 &sci_port->port_pe_configuration_register[sci_phy->phy_index]);
823
824 if (do_notify_user == true)
825 isci_port_link_down(ihost, iphy, iport);
826}
827
828/**
829 *
830 * @sci_port: This is the port on which the phy should be disabled.
831 * @sci_phy: This is the specific phy which to disabled.
832 *
833 * This function will disable the phy and report that the phy is not valid for
834 * this port object. None
835 */
836static void scic_sds_port_invalid_link_up(struct scic_sds_port *sci_port,
837 struct scic_sds_phy *sci_phy)
838{
839 struct scic_sds_controller *scic = sci_port->owning_controller;
840
841 /*
842 * Check to see if we have alreay reported this link as bad and if
843 * not go ahead and tell the SCI_USER that we have discovered an
844 * invalid link.
845 */
846 if ((scic->invalid_phy_mask & (1 << sci_phy->phy_index)) == 0) {
847 scic_sds_controller_set_invalid_phy(scic, sci_phy);
848 dev_warn(&scic_to_ihost(scic)->pdev->dev, "Invalid link up!\n");
849 }
850}
851
Piotr Sawickie91f41e2011-05-11 23:52:21 +0000852static bool is_port_ready_state(enum scic_sds_port_states state)
853{
854 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000855 case SCI_PORT_READY:
856 case SCI_PORT_SUB_WAITING:
857 case SCI_PORT_SUB_OPERATIONAL:
858 case SCI_PORT_SUB_CONFIGURING:
Piotr Sawickie91f41e2011-05-11 23:52:21 +0000859 return true;
860 default:
861 return false;
862 }
863}
864
865/* flag dummy rnc hanling when exiting a ready state */
866static void port_state_machine_change(struct scic_sds_port *sci_port,
867 enum scic_sds_port_states state)
868{
Edmund Nadolskie3013702011-06-02 00:10:43 +0000869 struct sci_base_state_machine *sm = &sci_port->sm;
Piotr Sawickie91f41e2011-05-11 23:52:21 +0000870 enum scic_sds_port_states old_state = sm->current_state_id;
871
872 if (is_port_ready_state(old_state) && !is_port_ready_state(state))
873 sci_port->ready_exit = true;
874
Edmund Nadolskie3013702011-06-02 00:10:43 +0000875 sci_change_state(sm, state);
Piotr Sawickie91f41e2011-05-11 23:52:21 +0000876 sci_port->ready_exit = false;
877}
878
Dan Williamse2f8db52011-05-10 02:28:46 -0700879/**
880 * scic_sds_port_general_link_up_handler - phy can be assigned to port?
881 * @sci_port: scic_sds_port object for which has a phy that has gone link up.
882 * @sci_phy: This is the struct scic_sds_phy object that has gone link up.
883 * @do_notify_user: This parameter specifies whether to inform the user (via
884 * scic_cb_port_link_up()) as to the fact that a new phy as become ready.
885 *
886 * Determine if this phy can be assigned to this
887 * port . If the phy is not a valid PHY for
888 * this port then the function will notify the user. A PHY can only be
889 * part of a port if it's attached SAS ADDRESS is the same as all other PHYs in
890 * the same port. none
891 */
892static void scic_sds_port_general_link_up_handler(struct scic_sds_port *sci_port,
893 struct scic_sds_phy *sci_phy,
894 bool do_notify_user)
895{
896 struct sci_sas_address port_sas_address;
897 struct sci_sas_address phy_sas_address;
898
899 scic_sds_port_get_attached_sas_address(sci_port, &port_sas_address);
900 scic_sds_phy_get_attached_sas_address(sci_phy, &phy_sas_address);
901
902 /* If the SAS address of the new phy matches the SAS address of
903 * other phys in the port OR this is the first phy in the port,
904 * then activate the phy and allow it to be used for operations
905 * in this port.
906 */
907 if ((phy_sas_address.high == port_sas_address.high &&
908 phy_sas_address.low == port_sas_address.low) ||
909 sci_port->active_phy_mask == 0) {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000910 struct sci_base_state_machine *sm = &sci_port->sm;
Dan Williamse2f8db52011-05-10 02:28:46 -0700911
912 scic_sds_port_activate_phy(sci_port, sci_phy, do_notify_user);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000913 if (sm->current_state_id == SCI_PORT_RESETTING)
914 port_state_machine_change(sci_port, SCI_PORT_READY);
Dan Williamse2f8db52011-05-10 02:28:46 -0700915 } else
916 scic_sds_port_invalid_link_up(sci_port, sci_phy);
917}
918
919
920
921/**
922 * This method returns false if the port only has a single phy object assigned.
923 * If there are no phys or more than one phy then the method will return
924 * true.
925 * @sci_port: The port for which the wide port condition is to be checked.
926 *
927 * bool true Is returned if this is a wide ported port. false Is returned if
928 * this is a narrow port.
929 */
930static bool scic_sds_port_is_wide(struct scic_sds_port *sci_port)
931{
932 u32 index;
933 u32 phy_count = 0;
934
935 for (index = 0; index < SCI_MAX_PHYS; index++) {
936 if (sci_port->phy_table[index] != NULL) {
937 phy_count++;
938 }
939 }
940
941 return phy_count != 1;
942}
943
944/**
945 * This method is called by the PHY object when the link is detected. if the
946 * port wants the PHY to continue on to the link up state then the port
947 * layer must return true. If the port object returns false the phy object
948 * must halt its attempt to go link up.
949 * @sci_port: The port associated with the phy object.
950 * @sci_phy: The phy object that is trying to go link up.
951 *
952 * true if the phy object can continue to the link up condition. true Is
953 * returned if this phy can continue to the ready state. false Is returned if
954 * can not continue on to the ready state. This notification is in place for
955 * wide ports and direct attached phys. Since there are no wide ported SATA
956 * devices this could become an invalid port configuration.
957 */
958bool scic_sds_port_link_detected(
959 struct scic_sds_port *sci_port,
960 struct scic_sds_phy *sci_phy)
961{
962 if ((sci_port->logical_port_index != SCIC_SDS_DUMMY_PORT) &&
963 (sci_phy->protocol == SCIC_SDS_PHY_PROTOCOL_SATA) &&
964 scic_sds_port_is_wide(sci_port)) {
965 scic_sds_port_invalid_link_up(sci_port, sci_phy);
966
967 return false;
968 }
969
970 return true;
971}
972
Edmund Nadolski5553ba22011-05-19 11:59:10 +0000973static void port_timeout(unsigned long data)
Dan Williamse2f8db52011-05-10 02:28:46 -0700974{
Edmund Nadolski5553ba22011-05-19 11:59:10 +0000975 struct sci_timer *tmr = (struct sci_timer *)data;
976 struct scic_sds_port *sci_port = container_of(tmr, typeof(*sci_port), timer);
977 struct isci_host *ihost = scic_to_ihost(sci_port->owning_controller);
978 unsigned long flags;
Dan Williamse2f8db52011-05-10 02:28:46 -0700979 u32 current_state;
980
Edmund Nadolski5553ba22011-05-19 11:59:10 +0000981 spin_lock_irqsave(&ihost->scic_lock, flags);
982
983 if (tmr->cancel)
984 goto done;
985
Edmund Nadolskie3013702011-06-02 00:10:43 +0000986 current_state = sci_port->sm.current_state_id;
Dan Williamse2f8db52011-05-10 02:28:46 -0700987
Edmund Nadolskie3013702011-06-02 00:10:43 +0000988 if (current_state == SCI_PORT_RESETTING) {
Piotr Sawickie91f41e2011-05-11 23:52:21 +0000989 /* if the port is still in the resetting state then the timeout
990 * fired before the reset completed.
Dan Williamse2f8db52011-05-10 02:28:46 -0700991 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000992 port_state_machine_change(sci_port, SCI_PORT_FAILED);
993 } else if (current_state == SCI_PORT_STOPPED) {
Piotr Sawickie91f41e2011-05-11 23:52:21 +0000994 /* if the port is stopped then the start request failed In this
995 * case stay in the stopped state.
Dan Williamse2f8db52011-05-10 02:28:46 -0700996 */
997 dev_err(sciport_to_dev(sci_port),
998 "%s: SCIC Port 0x%p failed to stop before tiemout.\n",
999 __func__,
1000 sci_port);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001001 } else if (current_state == SCI_PORT_STOPPING) {
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001002 /* if the port is still stopping then the stop has not completed */
1003 isci_port_stop_complete(sci_port->owning_controller,
1004 sci_port,
1005 SCI_FAILURE_TIMEOUT);
Dan Williamse2f8db52011-05-10 02:28:46 -07001006 } else {
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001007 /* The port is in the ready state and we have a timer
Dan Williamse2f8db52011-05-10 02:28:46 -07001008 * reporting a timeout this should not happen.
1009 */
1010 dev_err(sciport_to_dev(sci_port),
1011 "%s: SCIC Port 0x%p is processing a timeout operation "
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001012 "in state %d.\n", __func__, sci_port, current_state);
Dan Williamse2f8db52011-05-10 02:28:46 -07001013 }
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001014
1015done:
1016 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williamse2f8db52011-05-10 02:28:46 -07001017}
1018
1019/* --------------------------------------------------------------------------- */
1020
1021/**
1022 * This function updates the hardwares VIIT entry for this port.
1023 *
1024 *
1025 */
1026static void scic_sds_port_update_viit_entry(struct scic_sds_port *sci_port)
1027{
1028 struct sci_sas_address sas_address;
1029
1030 scic_sds_port_get_sas_address(sci_port, &sas_address);
1031
1032 writel(sas_address.high,
1033 &sci_port->viit_registers->initiator_sas_address_hi);
1034 writel(sas_address.low,
1035 &sci_port->viit_registers->initiator_sas_address_lo);
1036
1037 /* This value get cleared just in case its not already cleared */
1038 writel(0, &sci_port->viit_registers->reserved);
1039
1040 /* We are required to update the status register last */
1041 writel(SCU_VIIT_ENTRY_ID_VIIT |
1042 SCU_VIIT_IPPT_INITIATOR |
1043 ((1 << sci_port->physical_port_index) << SCU_VIIT_ENTRY_LPVIE_SHIFT) |
1044 SCU_VIIT_STATUS_ALL_VALID,
1045 &sci_port->viit_registers->status);
1046}
1047
1048/**
1049 * This method returns the maximum allowed speed for data transfers on this
1050 * port. This maximum allowed speed evaluates to the maximum speed of the
1051 * slowest phy in the port.
1052 * @sci_port: This parameter specifies the port for which to retrieve the
1053 * maximum allowed speed.
1054 *
1055 * This method returns the maximum negotiated speed of the slowest phy in the
1056 * port.
1057 */
1058enum sas_linkrate scic_sds_port_get_max_allowed_speed(
1059 struct scic_sds_port *sci_port)
1060{
1061 u16 index;
1062 enum sas_linkrate max_allowed_speed = SAS_LINK_RATE_6_0_GBPS;
1063 struct scic_sds_phy *phy = NULL;
1064
1065 /*
1066 * Loop through all of the phys in this port and find the phy with the
1067 * lowest maximum link rate. */
1068 for (index = 0; index < SCI_MAX_PHYS; index++) {
1069 phy = sci_port->phy_table[index];
1070 if (
1071 (phy != NULL)
1072 && (scic_sds_port_active_phy(sci_port, phy) == true)
1073 && (phy->max_negotiated_speed < max_allowed_speed)
1074 )
1075 max_allowed_speed = phy->max_negotiated_speed;
1076 }
1077
1078 return max_allowed_speed;
1079}
1080
Dan Williamse2f8db52011-05-10 02:28:46 -07001081/**
1082 *
1083 * @sci_port: This is the struct scic_sds_port object to suspend.
1084 *
1085 * This method will susped the port task scheduler for this port object. none
1086 */
1087static void
1088scic_sds_port_suspend_port_task_scheduler(struct scic_sds_port *port)
1089{
1090 u32 pts_control_value;
1091
1092 pts_control_value = readl(&port->port_task_scheduler_registers->control);
1093 pts_control_value |= SCU_PTSxCR_GEN_BIT(SUSPEND);
1094 writel(pts_control_value, &port->port_task_scheduler_registers->control);
1095}
1096
1097/**
1098 * scic_sds_port_post_dummy_request() - post dummy/workaround request
1099 * @sci_port: port to post task
1100 *
1101 * Prevent the hardware scheduler from posting new requests to the front
1102 * of the scheduler queue causing a starvation problem for currently
1103 * ongoing requests.
1104 *
1105 */
1106static void scic_sds_port_post_dummy_request(struct scic_sds_port *sci_port)
1107{
Dan Williamse2f8db52011-05-10 02:28:46 -07001108 struct scic_sds_controller *scic = sci_port->owning_controller;
Dan Williams312e0c22011-06-28 13:47:09 -07001109 u16 tag = sci_port->reserved_tag;
1110 struct scu_task_context *tc;
1111 u32 command;
Dan Williamse2f8db52011-05-10 02:28:46 -07001112
Dan Williams312e0c22011-06-28 13:47:09 -07001113 tc = &scic->task_context_table[ISCI_TAG_TCI(tag)];
1114 tc->abort = 0;
Dan Williamse2f8db52011-05-10 02:28:46 -07001115
1116 command = SCU_CONTEXT_COMMAND_REQUEST_TYPE_POST_TC |
1117 sci_port->physical_port_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT |
Dan Williams312e0c22011-06-28 13:47:09 -07001118 ISCI_TAG_TCI(tag);
Dan Williamse2f8db52011-05-10 02:28:46 -07001119
1120 scic_sds_controller_post_request(scic, command);
1121}
1122
1123/**
1124 * This routine will abort the dummy request. This will alow the hardware to
1125 * power down parts of the silicon to save power.
1126 *
1127 * @sci_port: The port on which the task must be aborted.
1128 *
1129 */
1130static void scic_sds_port_abort_dummy_request(struct scic_sds_port *sci_port)
1131{
1132 struct scic_sds_controller *scic = sci_port->owning_controller;
Dan Williams312e0c22011-06-28 13:47:09 -07001133 u16 tag = sci_port->reserved_tag;
Dan Williamse2f8db52011-05-10 02:28:46 -07001134 struct scu_task_context *tc;
1135 u32 command;
1136
Dan Williams312e0c22011-06-28 13:47:09 -07001137 tc = &scic->task_context_table[ISCI_TAG_TCI(tag)];
Dan Williamse2f8db52011-05-10 02:28:46 -07001138 tc->abort = 1;
1139
1140 command = SCU_CONTEXT_COMMAND_REQUEST_POST_TC_ABORT |
1141 sci_port->physical_port_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT |
Dan Williams312e0c22011-06-28 13:47:09 -07001142 ISCI_TAG_TCI(tag);
Dan Williamse2f8db52011-05-10 02:28:46 -07001143
1144 scic_sds_controller_post_request(scic, command);
1145}
1146
1147/**
1148 *
1149 * @sci_port: This is the struct scic_sds_port object to resume.
1150 *
1151 * This method will resume the port task scheduler for this port object. none
1152 */
1153static void
1154scic_sds_port_resume_port_task_scheduler(struct scic_sds_port *port)
1155{
1156 u32 pts_control_value;
1157
1158 pts_control_value = readl(&port->port_task_scheduler_registers->control);
1159 pts_control_value &= ~SCU_PTSxCR_GEN_BIT(SUSPEND);
1160 writel(pts_control_value, &port->port_task_scheduler_registers->control);
1161}
1162
Dan Williams9269e0e2011-05-12 07:42:17 -07001163static void scic_sds_port_ready_substate_waiting_enter(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001164{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001165 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001166
Dan Williamse2f8db52011-05-10 02:28:46 -07001167 scic_sds_port_suspend_port_task_scheduler(sci_port);
1168
1169 sci_port->not_ready_reason = SCIC_PORT_NOT_READY_NO_ACTIVE_PHYS;
1170
1171 if (sci_port->active_phy_mask != 0) {
1172 /* At least one of the phys on the port is ready */
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001173 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001174 SCI_PORT_SUB_OPERATIONAL);
Dan Williamse2f8db52011-05-10 02:28:46 -07001175 }
1176}
1177
Dan Williams9269e0e2011-05-12 07:42:17 -07001178static void scic_sds_port_ready_substate_operational_enter(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001179{
1180 u32 index;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001181 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001182 struct scic_sds_controller *scic = sci_port->owning_controller;
1183 struct isci_host *ihost = scic_to_ihost(scic);
1184 struct isci_port *iport = sci_port_to_iport(sci_port);
1185
Dan Williamse2f8db52011-05-10 02:28:46 -07001186 isci_port_ready(ihost, iport);
1187
1188 for (index = 0; index < SCI_MAX_PHYS; index++) {
1189 if (sci_port->phy_table[index]) {
1190 writel(sci_port->physical_port_index,
1191 &sci_port->port_pe_configuration_register[
1192 sci_port->phy_table[index]->phy_index]);
1193 }
1194 }
1195
1196 scic_sds_port_update_viit_entry(sci_port);
1197
1198 scic_sds_port_resume_port_task_scheduler(sci_port);
1199
1200 /*
1201 * Post the dummy task for the port so the hardware can schedule
1202 * io correctly
1203 */
1204 scic_sds_port_post_dummy_request(sci_port);
1205}
1206
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001207static void scic_sds_port_invalidate_dummy_remote_node(struct scic_sds_port *sci_port)
1208{
1209 struct scic_sds_controller *scic = sci_port->owning_controller;
1210 u8 phys_index = sci_port->physical_port_index;
1211 union scu_remote_node_context *rnc;
1212 u16 rni = sci_port->reserved_rni;
1213 u32 command;
1214
1215 rnc = &scic->remote_node_context_table[rni];
1216
1217 rnc->ssp.is_valid = false;
1218
1219 /* ensure the preceding tc abort request has reached the
1220 * controller and give it ample time to act before posting the rnc
1221 * invalidate
1222 */
1223 readl(&scic->smu_registers->interrupt_status); /* flush */
1224 udelay(10);
1225
1226 command = SCU_CONTEXT_COMMAND_POST_RNC_INVALIDATE |
1227 phys_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT | rni;
1228
1229 scic_sds_controller_post_request(scic, command);
1230}
1231
Dan Williamse2f8db52011-05-10 02:28:46 -07001232/**
1233 *
1234 * @object: This is the object which is cast to a struct scic_sds_port object.
1235 *
1236 * This method will perform the actions required by the struct scic_sds_port on
Edmund Nadolskie3013702011-06-02 00:10:43 +00001237 * exiting the SCI_PORT_SUB_OPERATIONAL. This function reports
Dan Williamse2f8db52011-05-10 02:28:46 -07001238 * the port not ready and suspends the port task scheduler. none
1239 */
Dan Williams9269e0e2011-05-12 07:42:17 -07001240static void scic_sds_port_ready_substate_operational_exit(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001241{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001242 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001243 struct scic_sds_controller *scic = sci_port->owning_controller;
1244 struct isci_host *ihost = scic_to_ihost(scic);
1245 struct isci_port *iport = sci_port_to_iport(sci_port);
1246
1247 /*
1248 * Kill the dummy task for this port if it has not yet posted
1249 * the hardware will treat this as a NOP and just return abort
1250 * complete.
1251 */
1252 scic_sds_port_abort_dummy_request(sci_port);
1253
1254 isci_port_not_ready(ihost, iport);
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001255
1256 if (sci_port->ready_exit)
1257 scic_sds_port_invalidate_dummy_remote_node(sci_port);
Dan Williamse2f8db52011-05-10 02:28:46 -07001258}
1259
Dan Williams9269e0e2011-05-12 07:42:17 -07001260static void scic_sds_port_ready_substate_configuring_enter(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001261{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001262 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001263 struct scic_sds_controller *scic = sci_port->owning_controller;
1264 struct isci_host *ihost = scic_to_ihost(scic);
1265 struct isci_port *iport = sci_port_to_iport(sci_port);
1266
Dan Williamse2f8db52011-05-10 02:28:46 -07001267 if (sci_port->active_phy_mask == 0) {
1268 isci_port_not_ready(ihost, iport);
1269
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001270 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001271 SCI_PORT_SUB_WAITING);
Dan Williamse2f8db52011-05-10 02:28:46 -07001272 } else if (sci_port->started_request_count == 0)
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001273 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001274 SCI_PORT_SUB_OPERATIONAL);
Dan Williamse2f8db52011-05-10 02:28:46 -07001275}
1276
Dan Williams9269e0e2011-05-12 07:42:17 -07001277static void scic_sds_port_ready_substate_configuring_exit(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001278{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001279 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001280
1281 scic_sds_port_suspend_port_task_scheduler(sci_port);
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001282 if (sci_port->ready_exit)
1283 scic_sds_port_invalidate_dummy_remote_node(sci_port);
Dan Williamse2f8db52011-05-10 02:28:46 -07001284}
1285
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001286enum sci_status scic_sds_port_start(struct scic_sds_port *sci_port)
1287{
1288 struct scic_sds_controller *scic = sci_port->owning_controller;
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001289 enum sci_status status = SCI_SUCCESS;
1290 enum scic_sds_port_states state;
1291 u32 phy_mask;
1292
Edmund Nadolskie3013702011-06-02 00:10:43 +00001293 state = sci_port->sm.current_state_id;
1294 if (state != SCI_PORT_STOPPED) {
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001295 dev_warn(sciport_to_dev(sci_port),
1296 "%s: in wrong state: %d\n", __func__, state);
1297 return SCI_FAILURE_INVALID_STATE;
1298 }
1299
1300 if (sci_port->assigned_device_count > 0) {
1301 /* TODO This is a start failure operation because
1302 * there are still devices assigned to this port.
1303 * There must be no devices assigned to a port on a
1304 * start operation.
1305 */
1306 return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
1307 }
1308
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001309 if (sci_port->reserved_rni == SCU_DUMMY_INDEX) {
1310 u16 rni = scic_sds_remote_node_table_allocate_remote_node(
1311 &scic->available_remote_nodes, 1);
1312
1313 if (rni != SCU_DUMMY_INDEX)
1314 scic_sds_port_construct_dummy_rnc(sci_port, rni);
1315 else
1316 status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
1317 sci_port->reserved_rni = rni;
1318 }
1319
Dan Williams312e0c22011-06-28 13:47:09 -07001320 if (sci_port->reserved_tag == SCI_CONTROLLER_INVALID_IO_TAG) {
1321 struct isci_host *ihost = scic_to_ihost(scic);
1322 u16 tag;
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001323
Dan Williams312e0c22011-06-28 13:47:09 -07001324 tag = isci_alloc_tag(ihost);
1325 if (tag == SCI_CONTROLLER_INVALID_IO_TAG)
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001326 status = SCI_FAILURE_INSUFFICIENT_RESOURCES;
Dan Williams312e0c22011-06-28 13:47:09 -07001327 else
1328 scic_sds_port_construct_dummy_task(sci_port, tag);
1329 sci_port->reserved_tag = tag;
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001330 }
1331
1332 if (status == SCI_SUCCESS) {
1333 phy_mask = scic_sds_port_get_phys(sci_port);
1334
1335 /*
1336 * There are one or more phys assigned to this port. Make sure
1337 * the port's phy mask is in fact legal and supported by the
1338 * silicon.
1339 */
1340 if (scic_sds_port_is_phy_mask_valid(sci_port, phy_mask) == true) {
1341 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001342 SCI_PORT_READY);
Piotr Sawickid76f71d2011-05-11 23:52:26 +00001343
1344 return SCI_SUCCESS;
1345 }
1346 status = SCI_FAILURE;
1347 }
1348
1349 if (status != SCI_SUCCESS)
1350 scic_sds_port_destroy_dummy_resources(sci_port);
1351
1352 return status;
1353}
1354
Piotr Sawicki8bc80d32011-05-11 23:52:31 +00001355enum sci_status scic_sds_port_stop(struct scic_sds_port *sci_port)
1356{
1357 enum scic_sds_port_states state;
1358
Edmund Nadolskie3013702011-06-02 00:10:43 +00001359 state = sci_port->sm.current_state_id;
Piotr Sawicki8bc80d32011-05-11 23:52:31 +00001360 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001361 case SCI_PORT_STOPPED:
Piotr Sawicki8bc80d32011-05-11 23:52:31 +00001362 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001363 case SCI_PORT_SUB_WAITING:
1364 case SCI_PORT_SUB_OPERATIONAL:
1365 case SCI_PORT_SUB_CONFIGURING:
1366 case SCI_PORT_RESETTING:
Piotr Sawicki8bc80d32011-05-11 23:52:31 +00001367 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001368 SCI_PORT_STOPPING);
Piotr Sawicki8bc80d32011-05-11 23:52:31 +00001369 return SCI_SUCCESS;
1370 default:
1371 dev_warn(sciport_to_dev(sci_port),
1372 "%s: in wrong state: %d\n", __func__, state);
1373 return SCI_FAILURE_INVALID_STATE;
1374 }
1375}
1376
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001377static enum sci_status scic_port_hard_reset(struct scic_sds_port *sci_port, u32 timeout)
1378{
1379 enum sci_status status = SCI_FAILURE_INVALID_PHY;
1380 struct scic_sds_phy *selected_phy = NULL;
1381 enum scic_sds_port_states state;
1382 u32 phy_index;
1383
Edmund Nadolskie3013702011-06-02 00:10:43 +00001384 state = sci_port->sm.current_state_id;
1385 if (state != SCI_PORT_SUB_OPERATIONAL) {
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001386 dev_warn(sciport_to_dev(sci_port),
1387 "%s: in wrong state: %d\n", __func__, state);
1388 return SCI_FAILURE_INVALID_STATE;
1389 }
1390
1391 /* Select a phy on which we can send the hard reset request. */
1392 for (phy_index = 0; phy_index < SCI_MAX_PHYS && !selected_phy; phy_index++) {
1393 selected_phy = sci_port->phy_table[phy_index];
1394 if (selected_phy &&
1395 !scic_sds_port_active_phy(sci_port, selected_phy)) {
1396 /*
1397 * We found a phy but it is not ready select
1398 * different phy
1399 */
1400 selected_phy = NULL;
1401 }
1402 }
1403
1404 /* If we have a phy then go ahead and start the reset procedure */
1405 if (!selected_phy)
1406 return status;
1407 status = scic_sds_phy_reset(selected_phy);
1408
1409 if (status != SCI_SUCCESS)
1410 return status;
1411
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001412 sci_mod_timer(&sci_port->timer, timeout);
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001413 sci_port->not_ready_reason = SCIC_PORT_NOT_READY_HARD_RESET_REQUESTED;
1414
1415 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001416 SCI_PORT_RESETTING);
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001417 return SCI_SUCCESS;
1418}
1419
1420/**
1421 * scic_sds_port_add_phy() -
1422 * @sci_port: This parameter specifies the port in which the phy will be added.
1423 * @sci_phy: This parameter is the phy which is to be added to the port.
1424 *
1425 * This method will add a PHY to the selected port. This method returns an
1426 * enum sci_status. SCI_SUCCESS the phy has been added to the port. Any other
1427 * status is a failure to add the phy to the port.
1428 */
1429enum sci_status scic_sds_port_add_phy(struct scic_sds_port *sci_port,
1430 struct scic_sds_phy *sci_phy)
1431{
1432 enum sci_status status;
1433 enum scic_sds_port_states state;
1434
Edmund Nadolskie3013702011-06-02 00:10:43 +00001435 state = sci_port->sm.current_state_id;
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001436 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001437 case SCI_PORT_STOPPED: {
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001438 struct sci_sas_address port_sas_address;
1439
1440 /* Read the port assigned SAS Address if there is one */
1441 scic_sds_port_get_sas_address(sci_port, &port_sas_address);
1442
1443 if (port_sas_address.high != 0 && port_sas_address.low != 0) {
1444 struct sci_sas_address phy_sas_address;
1445
1446 /* Make sure that the PHY SAS Address matches the SAS Address
1447 * for this port
1448 */
1449 scic_sds_phy_get_sas_address(sci_phy, &phy_sas_address);
1450
1451 if (port_sas_address.high != phy_sas_address.high ||
1452 port_sas_address.low != phy_sas_address.low)
1453 return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
1454 }
1455 return scic_sds_port_set_phy(sci_port, sci_phy);
1456 }
Edmund Nadolskie3013702011-06-02 00:10:43 +00001457 case SCI_PORT_SUB_WAITING:
1458 case SCI_PORT_SUB_OPERATIONAL:
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001459 status = scic_sds_port_set_phy(sci_port, sci_phy);
1460
1461 if (status != SCI_SUCCESS)
1462 return status;
1463
1464 scic_sds_port_general_link_up_handler(sci_port, sci_phy, true);
1465 sci_port->not_ready_reason = SCIC_PORT_NOT_READY_RECONFIGURING;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001466 port_state_machine_change(sci_port, SCI_PORT_SUB_CONFIGURING);
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001467
1468 return status;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001469 case SCI_PORT_SUB_CONFIGURING:
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001470 status = scic_sds_port_set_phy(sci_port, sci_phy);
1471
1472 if (status != SCI_SUCCESS)
1473 return status;
1474 scic_sds_port_general_link_up_handler(sci_port, sci_phy, true);
1475
1476 /* Re-enter the configuring state since this may be the last phy in
1477 * the port.
1478 */
1479 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001480 SCI_PORT_SUB_CONFIGURING);
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001481 return SCI_SUCCESS;
1482 default:
1483 dev_warn(sciport_to_dev(sci_port),
1484 "%s: in wrong state: %d\n", __func__, state);
1485 return SCI_FAILURE_INVALID_STATE;
1486 }
1487}
1488
1489/**
1490 * scic_sds_port_remove_phy() -
1491 * @sci_port: This parameter specifies the port in which the phy will be added.
1492 * @sci_phy: This parameter is the phy which is to be added to the port.
1493 *
1494 * This method will remove the PHY from the selected PORT. This method returns
1495 * an enum sci_status. SCI_SUCCESS the phy has been removed from the port. Any
1496 * other status is a failure to add the phy to the port.
1497 */
1498enum sci_status scic_sds_port_remove_phy(struct scic_sds_port *sci_port,
1499 struct scic_sds_phy *sci_phy)
1500{
1501 enum sci_status status;
1502 enum scic_sds_port_states state;
1503
Edmund Nadolskie3013702011-06-02 00:10:43 +00001504 state = sci_port->sm.current_state_id;
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001505
1506 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001507 case SCI_PORT_STOPPED:
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001508 return scic_sds_port_clear_phy(sci_port, sci_phy);
Edmund Nadolskie3013702011-06-02 00:10:43 +00001509 case SCI_PORT_SUB_OPERATIONAL:
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001510 status = scic_sds_port_clear_phy(sci_port, sci_phy);
1511 if (status != SCI_SUCCESS)
1512 return status;
1513
1514 scic_sds_port_deactivate_phy(sci_port, sci_phy, true);
1515 sci_port->not_ready_reason = SCIC_PORT_NOT_READY_RECONFIGURING;
1516 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001517 SCI_PORT_SUB_CONFIGURING);
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001518 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001519 case SCI_PORT_SUB_CONFIGURING:
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001520 status = scic_sds_port_clear_phy(sci_port, sci_phy);
1521
1522 if (status != SCI_SUCCESS)
1523 return status;
1524 scic_sds_port_deactivate_phy(sci_port, sci_phy, true);
1525
1526 /* Re-enter the configuring state since this may be the last phy in
1527 * the port
1528 */
1529 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001530 SCI_PORT_SUB_CONFIGURING);
Piotr Sawicki051266c2011-05-12 19:10:14 +00001531 return SCI_SUCCESS;
1532 default:
1533 dev_warn(sciport_to_dev(sci_port),
1534 "%s: in wrong state: %d\n", __func__, state);
1535 return SCI_FAILURE_INVALID_STATE;
1536 }
1537}
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001538
Piotr Sawicki051266c2011-05-12 19:10:14 +00001539enum sci_status scic_sds_port_link_up(struct scic_sds_port *sci_port,
1540 struct scic_sds_phy *sci_phy)
1541{
1542 enum scic_sds_port_states state;
1543
Edmund Nadolskie3013702011-06-02 00:10:43 +00001544 state = sci_port->sm.current_state_id;
Piotr Sawicki051266c2011-05-12 19:10:14 +00001545 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001546 case SCI_PORT_SUB_WAITING:
Piotr Sawicki051266c2011-05-12 19:10:14 +00001547 /* Since this is the first phy going link up for the port we
1548 * can just enable it and continue
1549 */
1550 scic_sds_port_activate_phy(sci_port, sci_phy, true);
1551
1552 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001553 SCI_PORT_SUB_OPERATIONAL);
Piotr Sawicki051266c2011-05-12 19:10:14 +00001554 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001555 case SCI_PORT_SUB_OPERATIONAL:
Piotr Sawicki051266c2011-05-12 19:10:14 +00001556 scic_sds_port_general_link_up_handler(sci_port, sci_phy, true);
1557 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001558 case SCI_PORT_RESETTING:
Piotr Sawicki051266c2011-05-12 19:10:14 +00001559 /* TODO We should make sure that the phy that has gone
1560 * link up is the same one on which we sent the reset. It is
1561 * possible that the phy on which we sent the reset is not the
1562 * one that has gone link up and we want to make sure that
1563 * phy being reset comes back. Consider the case where a
1564 * reset is sent but before the hardware processes the reset it
1565 * get a link up on the port because of a hot plug event.
1566 * because of the reset request this phy will go link down
1567 * almost immediately.
1568 */
1569
1570 /* In the resetting state we don't notify the user regarding
1571 * link up and link down notifications.
1572 */
1573 scic_sds_port_general_link_up_handler(sci_port, sci_phy, false);
1574 return SCI_SUCCESS;
1575 default:
1576 dev_warn(sciport_to_dev(sci_port),
1577 "%s: in wrong state: %d\n", __func__, state);
1578 return SCI_FAILURE_INVALID_STATE;
1579 }
1580}
1581
1582enum sci_status scic_sds_port_link_down(struct scic_sds_port *sci_port,
1583 struct scic_sds_phy *sci_phy)
1584{
1585 enum scic_sds_port_states state;
1586
Edmund Nadolskie3013702011-06-02 00:10:43 +00001587 state = sci_port->sm.current_state_id;
Piotr Sawicki051266c2011-05-12 19:10:14 +00001588 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001589 case SCI_PORT_SUB_OPERATIONAL:
Piotr Sawicki051266c2011-05-12 19:10:14 +00001590 scic_sds_port_deactivate_phy(sci_port, sci_phy, true);
1591
1592 /* If there are no active phys left in the port, then
1593 * transition the port to the WAITING state until such time
1594 * as a phy goes link up
1595 */
1596 if (sci_port->active_phy_mask == 0)
1597 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001598 SCI_PORT_SUB_WAITING);
Piotr Sawicki051266c2011-05-12 19:10:14 +00001599 return SCI_SUCCESS;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001600 case SCI_PORT_RESETTING:
Piotr Sawicki051266c2011-05-12 19:10:14 +00001601 /* In the resetting state we don't notify the user regarding
1602 * link up and link down notifications. */
1603 scic_sds_port_deactivate_phy(sci_port, sci_phy, false);
Piotr Sawickibd6713b2011-05-12 19:10:03 +00001604 return SCI_SUCCESS;
1605 default:
1606 dev_warn(sciport_to_dev(sci_port),
1607 "%s: in wrong state: %d\n", __func__, state);
1608 return SCI_FAILURE_INVALID_STATE;
1609 }
1610}
1611
Dan Williams68138202011-05-12 07:16:06 -07001612enum sci_status scic_sds_port_start_io(struct scic_sds_port *sci_port,
1613 struct scic_sds_remote_device *sci_dev,
1614 struct scic_sds_request *sci_req)
1615{
1616 enum scic_sds_port_states state;
Dan Williamse2f8db52011-05-10 02:28:46 -07001617
Edmund Nadolskie3013702011-06-02 00:10:43 +00001618 state = sci_port->sm.current_state_id;
Dan Williams68138202011-05-12 07:16:06 -07001619 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001620 case SCI_PORT_SUB_WAITING:
Dan Williams68138202011-05-12 07:16:06 -07001621 return SCI_FAILURE_INVALID_STATE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001622 case SCI_PORT_SUB_OPERATIONAL:
Dan Williams68138202011-05-12 07:16:06 -07001623 sci_port->started_request_count++;
1624 return SCI_SUCCESS;
1625 default:
1626 dev_warn(sciport_to_dev(sci_port),
1627 "%s: in wrong state: %d\n", __func__, state);
1628 return SCI_FAILURE_INVALID_STATE;
1629 }
1630}
1631
1632enum sci_status scic_sds_port_complete_io(struct scic_sds_port *sci_port,
1633 struct scic_sds_remote_device *sci_dev,
1634 struct scic_sds_request *sci_req)
1635{
1636 enum scic_sds_port_states state;
1637
Edmund Nadolskie3013702011-06-02 00:10:43 +00001638 state = sci_port->sm.current_state_id;
Dan Williams68138202011-05-12 07:16:06 -07001639 switch (state) {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001640 case SCI_PORT_STOPPED:
Dan Williams68138202011-05-12 07:16:06 -07001641 dev_warn(sciport_to_dev(sci_port),
1642 "%s: in wrong state: %d\n", __func__, state);
1643 return SCI_FAILURE_INVALID_STATE;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001644 case SCI_PORT_STOPPING:
Dan Williams68138202011-05-12 07:16:06 -07001645 scic_sds_port_decrement_request_count(sci_port);
1646
1647 if (sci_port->started_request_count == 0)
1648 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001649 SCI_PORT_STOPPED);
Dan Williams68138202011-05-12 07:16:06 -07001650 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001651 case SCI_PORT_READY:
1652 case SCI_PORT_RESETTING:
1653 case SCI_PORT_FAILED:
1654 case SCI_PORT_SUB_WAITING:
1655 case SCI_PORT_SUB_OPERATIONAL:
Dan Williams68138202011-05-12 07:16:06 -07001656 scic_sds_port_decrement_request_count(sci_port);
1657 break;
Edmund Nadolskie3013702011-06-02 00:10:43 +00001658 case SCI_PORT_SUB_CONFIGURING:
Dan Williams68138202011-05-12 07:16:06 -07001659 scic_sds_port_decrement_request_count(sci_port);
1660 if (sci_port->started_request_count == 0) {
1661 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001662 SCI_PORT_SUB_OPERATIONAL);
Dan Williams68138202011-05-12 07:16:06 -07001663 }
1664 break;
1665 }
1666 return SCI_SUCCESS;
1667}
Dan Williamse2f8db52011-05-10 02:28:46 -07001668
1669/**
1670 *
1671 * @sci_port: This is the port object which to suspend.
1672 *
1673 * This method will enable the SCU Port Task Scheduler for this port object but
1674 * will leave the port task scheduler in a suspended state. none
1675 */
1676static void
1677scic_sds_port_enable_port_task_scheduler(struct scic_sds_port *port)
1678{
1679 u32 pts_control_value;
1680
1681 pts_control_value = readl(&port->port_task_scheduler_registers->control);
1682 pts_control_value |= SCU_PTSxCR_GEN_BIT(ENABLE) | SCU_PTSxCR_GEN_BIT(SUSPEND);
1683 writel(pts_control_value, &port->port_task_scheduler_registers->control);
1684}
1685
1686/**
1687 *
1688 * @sci_port: This is the port object which to resume.
1689 *
1690 * This method will disable the SCU port task scheduler for this port object.
1691 * none
1692 */
1693static void
1694scic_sds_port_disable_port_task_scheduler(struct scic_sds_port *port)
1695{
1696 u32 pts_control_value;
1697
1698 pts_control_value = readl(&port->port_task_scheduler_registers->control);
1699 pts_control_value &=
1700 ~(SCU_PTSxCR_GEN_BIT(ENABLE) | SCU_PTSxCR_GEN_BIT(SUSPEND));
1701 writel(pts_control_value, &port->port_task_scheduler_registers->control);
1702}
1703
1704static void scic_sds_port_post_dummy_remote_node(struct scic_sds_port *sci_port)
1705{
1706 struct scic_sds_controller *scic = sci_port->owning_controller;
1707 u8 phys_index = sci_port->physical_port_index;
1708 union scu_remote_node_context *rnc;
1709 u16 rni = sci_port->reserved_rni;
1710 u32 command;
1711
1712 rnc = &scic->remote_node_context_table[rni];
1713 rnc->ssp.is_valid = true;
1714
1715 command = SCU_CONTEXT_COMMAND_POST_RNC_32 |
1716 phys_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT | rni;
1717
1718 scic_sds_controller_post_request(scic, command);
1719
1720 /* ensure hardware has seen the post rnc command and give it
1721 * ample time to act before sending the suspend
1722 */
1723 readl(&scic->smu_registers->interrupt_status); /* flush */
1724 udelay(10);
1725
1726 command = SCU_CONTEXT_COMMAND_POST_RNC_SUSPEND_TX_RX |
1727 phys_index << SCU_CONTEXT_COMMAND_LOGICAL_PORT_SHIFT | rni;
1728
1729 scic_sds_controller_post_request(scic, command);
1730}
1731
Dan Williams9269e0e2011-05-12 07:42:17 -07001732static void scic_sds_port_stopped_state_enter(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001733{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001734 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001735
Edmund Nadolskie3013702011-06-02 00:10:43 +00001736 if (sci_port->sm.previous_state_id == SCI_PORT_STOPPING) {
Dan Williamse2f8db52011-05-10 02:28:46 -07001737 /*
1738 * If we enter this state becasuse of a request to stop
1739 * the port then we want to disable the hardwares port
1740 * task scheduler. */
1741 scic_sds_port_disable_port_task_scheduler(sci_port);
1742 }
1743}
1744
Dan Williams9269e0e2011-05-12 07:42:17 -07001745static void scic_sds_port_stopped_state_exit(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001746{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001747 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001748
1749 /* Enable and suspend the port task scheduler */
1750 scic_sds_port_enable_port_task_scheduler(sci_port);
1751}
1752
Dan Williams9269e0e2011-05-12 07:42:17 -07001753static void scic_sds_port_ready_state_enter(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001754{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001755 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001756 struct scic_sds_controller *scic = sci_port->owning_controller;
1757 struct isci_host *ihost = scic_to_ihost(scic);
1758 struct isci_port *iport = sci_port_to_iport(sci_port);
1759 u32 prev_state;
1760
Edmund Nadolskie3013702011-06-02 00:10:43 +00001761 prev_state = sci_port->sm.previous_state_id;
1762 if (prev_state == SCI_PORT_RESETTING)
Dan Williamse2f8db52011-05-10 02:28:46 -07001763 isci_port_hard_reset_complete(iport, SCI_SUCCESS);
1764 else
1765 isci_port_not_ready(ihost, iport);
1766
1767 /* Post and suspend the dummy remote node context for this port. */
1768 scic_sds_port_post_dummy_remote_node(sci_port);
1769
1770 /* Start the ready substate machine */
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001771 port_state_machine_change(sci_port,
Edmund Nadolskie3013702011-06-02 00:10:43 +00001772 SCI_PORT_SUB_WAITING);
Dan Williamse2f8db52011-05-10 02:28:46 -07001773}
1774
Dan Williams9269e0e2011-05-12 07:42:17 -07001775static void scic_sds_port_resetting_state_exit(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001776{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001777 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001778
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001779 sci_del_timer(&sci_port->timer);
Dan Williamse2f8db52011-05-10 02:28:46 -07001780}
1781
Dan Williams9269e0e2011-05-12 07:42:17 -07001782static void scic_sds_port_stopping_state_exit(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001783{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001784 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001785
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001786 sci_del_timer(&sci_port->timer);
Dan Williamse2f8db52011-05-10 02:28:46 -07001787
1788 scic_sds_port_destroy_dummy_resources(sci_port);
1789}
1790
Dan Williams9269e0e2011-05-12 07:42:17 -07001791static void scic_sds_port_failed_state_enter(struct sci_base_state_machine *sm)
Dan Williamse2f8db52011-05-10 02:28:46 -07001792{
Edmund Nadolskie3013702011-06-02 00:10:43 +00001793 struct scic_sds_port *sci_port = container_of(sm, typeof(*sci_port), sm);
Dan Williamse2f8db52011-05-10 02:28:46 -07001794 struct isci_port *iport = sci_port_to_iport(sci_port);
1795
Dan Williamse2f8db52011-05-10 02:28:46 -07001796 isci_port_hard_reset_complete(iport, SCI_FAILURE_TIMEOUT);
1797}
1798
1799/* --------------------------------------------------------------------------- */
1800
1801static const struct sci_base_state scic_sds_port_state_table[] = {
Edmund Nadolskie3013702011-06-02 00:10:43 +00001802 [SCI_PORT_STOPPED] = {
Dan Williamse2f8db52011-05-10 02:28:46 -07001803 .enter_state = scic_sds_port_stopped_state_enter,
1804 .exit_state = scic_sds_port_stopped_state_exit
1805 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001806 [SCI_PORT_STOPPING] = {
Dan Williamse2f8db52011-05-10 02:28:46 -07001807 .exit_state = scic_sds_port_stopping_state_exit
1808 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001809 [SCI_PORT_READY] = {
Dan Williamse2f8db52011-05-10 02:28:46 -07001810 .enter_state = scic_sds_port_ready_state_enter,
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001811 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001812 [SCI_PORT_SUB_WAITING] = {
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001813 .enter_state = scic_sds_port_ready_substate_waiting_enter,
1814 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001815 [SCI_PORT_SUB_OPERATIONAL] = {
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001816 .enter_state = scic_sds_port_ready_substate_operational_enter,
1817 .exit_state = scic_sds_port_ready_substate_operational_exit
1818 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001819 [SCI_PORT_SUB_CONFIGURING] = {
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001820 .enter_state = scic_sds_port_ready_substate_configuring_enter,
1821 .exit_state = scic_sds_port_ready_substate_configuring_exit
Dan Williamse2f8db52011-05-10 02:28:46 -07001822 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001823 [SCI_PORT_RESETTING] = {
Dan Williamse2f8db52011-05-10 02:28:46 -07001824 .exit_state = scic_sds_port_resetting_state_exit
1825 },
Edmund Nadolskie3013702011-06-02 00:10:43 +00001826 [SCI_PORT_FAILED] = {
Dan Williamse2f8db52011-05-10 02:28:46 -07001827 .enter_state = scic_sds_port_failed_state_enter,
1828 }
1829};
1830
1831void scic_sds_port_construct(struct scic_sds_port *sci_port, u8 index,
1832 struct scic_sds_controller *scic)
1833{
Edmund Nadolski12ef6542011-06-02 00:10:50 +00001834 sci_init_sm(&sci_port->sm, scic_sds_port_state_table, SCI_PORT_STOPPED);
Dan Williamse2f8db52011-05-10 02:28:46 -07001835
Dan Williamse2f8db52011-05-10 02:28:46 -07001836 sci_port->logical_port_index = SCIC_SDS_DUMMY_PORT;
1837 sci_port->physical_port_index = index;
1838 sci_port->active_phy_mask = 0;
Piotr Sawickie91f41e2011-05-11 23:52:21 +00001839 sci_port->ready_exit = false;
Dan Williamse2f8db52011-05-10 02:28:46 -07001840
1841 sci_port->owning_controller = scic;
1842
1843 sci_port->started_request_count = 0;
1844 sci_port->assigned_device_count = 0;
1845
1846 sci_port->reserved_rni = SCU_DUMMY_INDEX;
Dan Williams312e0c22011-06-28 13:47:09 -07001847 sci_port->reserved_tag = SCI_CONTROLLER_INVALID_IO_TAG;
Dan Williamse2f8db52011-05-10 02:28:46 -07001848
Edmund Nadolski5553ba22011-05-19 11:59:10 +00001849 sci_init_timer(&sci_port->timer, port_timeout);
1850
Dan Williamse2f8db52011-05-10 02:28:46 -07001851 sci_port->port_task_scheduler_registers = NULL;
1852
1853 for (index = 0; index < SCI_MAX_PHYS; index++)
1854 sci_port->phy_table[index] = NULL;
1855}
1856
1857void isci_port_init(struct isci_port *iport, struct isci_host *ihost, int index)
1858{
1859 INIT_LIST_HEAD(&iport->remote_dev_list);
1860 INIT_LIST_HEAD(&iport->domain_dev_list);
1861 spin_lock_init(&iport->state_lock);
1862 init_completion(&iport->start_complete);
1863 iport->isci_host = ihost;
1864 isci_port_change_state(iport, isci_freed);
Jeff Skirvin61aaff42011-06-21 12:16:33 -07001865 atomic_set(&iport->event, 0);
Dan Williamse2f8db52011-05-10 02:28:46 -07001866}
1867
1868/**
1869 * isci_port_get_state() - This function gets the status of the port object.
1870 * @isci_port: This parameter points to the isci_port object
1871 *
1872 * status of the object as a isci_status enum.
1873 */
1874enum isci_status isci_port_get_state(
1875 struct isci_port *isci_port)
1876{
1877 return isci_port->status;
1878}
1879
Dan Williamse2f8db52011-05-10 02:28:46 -07001880void scic_sds_port_broadcast_change_received(
1881 struct scic_sds_port *sci_port,
1882 struct scic_sds_phy *sci_phy)
1883{
1884 struct scic_sds_controller *scic = sci_port->owning_controller;
1885 struct isci_host *ihost = scic_to_ihost(scic);
1886
1887 /* notify the user. */
1888 isci_port_bc_change_received(ihost, sci_port, sci_phy);
1889}
1890
Dan Williams4393aa42011-03-31 13:10:44 -07001891int isci_port_perform_hard_reset(struct isci_host *ihost, struct isci_port *iport,
1892 struct isci_phy *iphy)
Dan Williams6f231dd2011-07-02 22:56:22 -07001893{
Dan Williams4393aa42011-03-31 13:10:44 -07001894 unsigned long flags;
Dan Williams6f231dd2011-07-02 22:56:22 -07001895 enum sci_status status;
Jeff Skirvinfd0527a2011-06-20 14:09:26 -07001896 int idx, ret = TMF_RESP_FUNC_COMPLETE;
Dan Williams6f231dd2011-07-02 22:56:22 -07001897
Dan Williams4393aa42011-03-31 13:10:44 -07001898 dev_dbg(&ihost->pdev->dev, "%s: iport = %p\n",
1899 __func__, iport);
Dan Williams6f231dd2011-07-02 22:56:22 -07001900
Dan Williams4393aa42011-03-31 13:10:44 -07001901 init_completion(&iport->hard_reset_complete);
Dan Williams6f231dd2011-07-02 22:56:22 -07001902
Dan Williams4393aa42011-03-31 13:10:44 -07001903 spin_lock_irqsave(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001904
1905 #define ISCI_PORT_RESET_TIMEOUT SCIC_SDS_SIGNATURE_FIS_TIMEOUT
Dan Williamse5313812011-05-07 10:11:43 -07001906 status = scic_port_hard_reset(&iport->sci, ISCI_PORT_RESET_TIMEOUT);
Dan Williams6f231dd2011-07-02 22:56:22 -07001907
Dan Williams4393aa42011-03-31 13:10:44 -07001908 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001909
1910 if (status == SCI_SUCCESS) {
Dan Williams4393aa42011-03-31 13:10:44 -07001911 wait_for_completion(&iport->hard_reset_complete);
Dan Williams6f231dd2011-07-02 22:56:22 -07001912
Dan Williams4393aa42011-03-31 13:10:44 -07001913 dev_dbg(&ihost->pdev->dev,
1914 "%s: iport = %p; hard reset completion\n",
1915 __func__, iport);
Dan Williams6f231dd2011-07-02 22:56:22 -07001916
Dan Williams4393aa42011-03-31 13:10:44 -07001917 if (iport->hard_reset_status != SCI_SUCCESS)
Dan Williams6f231dd2011-07-02 22:56:22 -07001918 ret = TMF_RESP_FUNC_FAILED;
1919 } else {
1920 ret = TMF_RESP_FUNC_FAILED;
1921
Dan Williams4393aa42011-03-31 13:10:44 -07001922 dev_err(&ihost->pdev->dev,
1923 "%s: iport = %p; scic_port_hard_reset call"
Dan Williams6f231dd2011-07-02 22:56:22 -07001924 " failed 0x%x\n",
Dan Williams4393aa42011-03-31 13:10:44 -07001925 __func__, iport, status);
Dan Williams6f231dd2011-07-02 22:56:22 -07001926
1927 }
1928
1929 /* If the hard reset for the port has failed, consider this
1930 * the same as link failures on all phys in the port.
1931 */
1932 if (ret != TMF_RESP_FUNC_COMPLETE) {
Jeff Skirvinfd0527a2011-06-20 14:09:26 -07001933
Dan Williams4393aa42011-03-31 13:10:44 -07001934 dev_err(&ihost->pdev->dev,
1935 "%s: iport = %p; hard reset failed "
Jeff Skirvinfd0527a2011-06-20 14:09:26 -07001936 "(0x%x) - driving explicit link fail for all phys\n",
1937 __func__, iport, iport->hard_reset_status);
Dan Williams6f231dd2011-07-02 22:56:22 -07001938
Jeff Skirvinfd0527a2011-06-20 14:09:26 -07001939 /* Down all phys in the port. */
1940 spin_lock_irqsave(&ihost->scic_lock, flags);
1941 for (idx = 0; idx < SCI_MAX_PHYS; ++idx) {
1942
1943 if (iport->sci.phy_table[idx] != NULL) {
1944
1945 scic_sds_phy_stop(
1946 iport->sci.phy_table[idx]);
1947 scic_sds_phy_start(
1948 iport->sci.phy_table[idx]);
1949 }
1950 }
1951 spin_unlock_irqrestore(&ihost->scic_lock, flags);
Dan Williams6f231dd2011-07-02 22:56:22 -07001952 }
Dan Williams6f231dd2011-07-02 22:56:22 -07001953 return ret;
1954}
Dave Jiang09d7da12011-03-26 16:11:51 -07001955
Dan Williamse2f8db52011-05-10 02:28:46 -07001956/**
1957 * isci_port_deformed() - This function is called by libsas when a port becomes
1958 * inactive.
1959 * @phy: This parameter specifies the libsas phy with the inactive port.
1960 *
1961 */
1962void isci_port_deformed(struct asd_sas_phy *phy)
Dave Jiang09d7da12011-03-26 16:11:51 -07001963{
Dan Williamse2f8db52011-05-10 02:28:46 -07001964 pr_debug("%s: sas_phy = %p\n", __func__, phy);
1965}
1966
1967/**
1968 * isci_port_formed() - This function is called by libsas when a port becomes
1969 * active.
1970 * @phy: This parameter specifies the libsas phy with the active port.
1971 *
1972 */
1973void isci_port_formed(struct asd_sas_phy *phy)
1974{
1975 pr_debug("%s: sas_phy = %p, sas_port = %p\n", __func__, phy, phy->port);
Dave Jiang09d7da12011-03-26 16:11:51 -07001976}