xref: /linux/drivers/scsi/isci/port.c (revision 1a38045ba88ed3bee6c57444670fb639c8b61be7)
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 /**
57  * This file contains the isci port implementation.
58  *
59  *
60  */
61 
62 
63 #include <linux/workqueue.h>
64 #include "isci.h"
65 #include "scic_io_request.h"
66 #include "scic_remote_device.h"
67 #include "scic_phy.h"
68 #include "scic_sds_phy.h"
69 #include "scic_port.h"
70 #include "port.h"
71 #include "request.h"
72 
73 static void isci_port_change_state(
74 	struct isci_port *isci_port,
75 	enum isci_status status);
76 
77 
78 
79 /**
80  * isci_port_init() - This function initializes the given isci_port object.
81  * @isci_port: This parameter specifies the port object to be initialized.
82  * @isci_host: This parameter specifies parent controller object for the port.
83  * @index: This parameter specifies which SCU port the isci_port associates
84  *    with. Generally, SCU port 0 relates to isci_port 0, etc.
85  *
86  */
87 void isci_port_init(
88 	struct isci_port *isci_port,
89 	struct isci_host *isci_host,
90 	int index)
91 {
92 	struct scic_sds_port *scic_port;
93 	struct scic_sds_controller *controller = isci_host->core_controller;
94 
95 	INIT_LIST_HEAD(&isci_port->remote_dev_list);
96 	INIT_LIST_HEAD(&isci_port->domain_dev_list);
97 	spin_lock_init(&isci_port->state_lock);
98 	init_completion(&isci_port->start_complete);
99 	isci_port->isci_host = isci_host;
100 	isci_port_change_state(isci_port, isci_freed);
101 
102 	(void)scic_controller_get_port_handle(controller, index, &scic_port);
103 	sci_object_set_association(scic_port, isci_port);
104 	isci_port->sci_port_handle = scic_port;
105 }
106 
107 
108 /**
109  * isci_port_get_state() - This function gets the status of the port object.
110  * @isci_port: This parameter points to the isci_port object
111  *
112  * status of the object as a isci_status enum.
113  */
114 enum isci_status isci_port_get_state(
115 	struct isci_port *isci_port)
116 {
117 	return isci_port->status;
118 }
119 
120 static void isci_port_change_state(
121 	struct isci_port *isci_port,
122 	enum isci_status status)
123 {
124 	unsigned long flags;
125 
126 	dev_dbg(&isci_port->isci_host->pdev->dev,
127 		"%s: isci_port = %p, state = 0x%x\n",
128 		__func__, isci_port, status);
129 
130 	spin_lock_irqsave(&isci_port->state_lock, flags);
131 	isci_port->status = status;
132 	spin_unlock_irqrestore(&isci_port->state_lock, flags);
133 }
134 
135 void isci_port_bc_change_received(
136 	struct isci_host *isci_host,
137 	struct scic_sds_port *port,
138 	struct scic_sds_phy *phy)
139 {
140 	struct isci_phy *isci_phy =
141 		(struct isci_phy *)sci_object_get_association(phy);
142 
143 	dev_dbg(&isci_host->pdev->dev,
144 		"%s: isci_phy = %p, sas_phy = %p\n",
145 		__func__,
146 		isci_phy,
147 		&isci_phy->sas_phy);
148 
149 	isci_host->sas_ha.notify_port_event(
150 		&isci_phy->sas_phy,
151 		PORTE_BROADCAST_RCVD
152 		);
153 
154 	scic_port_enable_broadcast_change_notification(port);
155 }
156 
157 /**
158  * isci_port_link_up() - This function is called by the sci core when a link
159  *    becomes active. the identify address frame is retrieved from the core and
160  *    a notify port event is sent to libsas.
161  * @isci_host: This parameter specifies the isci host object.
162  * @port: This parameter specifies the sci port with the active link.
163  * @phy: This parameter specifies the sci phy with the active link.
164  *
165  */
166 void isci_port_link_up(
167 	struct isci_host *isci_host,
168 	struct scic_sds_port *port,
169 	struct scic_sds_phy *phy)
170 {
171 	unsigned long flags;
172 	struct scic_port_properties properties;
173 	struct isci_phy *isci_phy
174 		= (struct isci_phy *)sci_object_get_association(phy);
175 	struct isci_port *isci_port
176 		= (struct isci_port *)sci_object_get_association(port);
177 	enum sci_status call_status;
178 	unsigned long success = true;
179 
180 	BUG_ON(isci_phy->isci_port != NULL);
181 	isci_phy->isci_port = isci_port;
182 
183 	dev_dbg(&isci_host->pdev->dev,
184 		"%s: isci_port = %p\n",
185 		__func__, isci_port);
186 
187 	spin_lock_irqsave(&isci_phy->sas_phy.frame_rcvd_lock, flags);
188 
189 	isci_port_change_state(isci_phy->isci_port, isci_starting);
190 
191 	scic_port_get_properties(port, &properties);
192 
193 	if (properties.remote.protocols.u.bits.stp_target) {
194 		u64 attached_sas_address;
195 
196 		struct scic_sata_phy_properties sata_phy_properties;
197 
198 		isci_phy->sas_phy.oob_mode = SATA_OOB_MODE;
199 
200 		/* Get a copy of the signature fis for libsas */
201 		call_status = scic_sata_phy_get_properties(phy,
202 							   &sata_phy_properties);
203 
204 		/*
205 		 * XXX I am concerned about this "assert". shouldn't we
206 		 * handle the return appropriately?
207 		 */
208 		BUG_ON(call_status != SCI_SUCCESS);
209 
210 		memcpy(isci_phy->frame_rcvd.fis,
211 		       &sata_phy_properties.signature_fis,
212 		       sizeof(struct sata_fis_reg_d2h));
213 
214 		isci_phy->sas_phy.frame_rcvd_size = sizeof(struct sata_fis_reg_d2h);
215 
216 		/*
217 		 * For direct-attached SATA devices, the SCI core will
218 		 * automagically assign a SAS address to the end device
219 		 * for the purpose of creating a port. This SAS address
220 		 * will not be the same as assigned to the PHY and needs
221 		 * to be obtained from struct scic_port_properties properties.
222 		 */
223 		attached_sas_address = properties.remote.sas_address.high;
224 		attached_sas_address <<= 32;
225 		attached_sas_address |= properties.remote.sas_address.low;
226 		swab64s(&attached_sas_address);
227 
228 		memcpy(&isci_phy->sas_phy.attached_sas_addr,
229 		       &attached_sas_address, sizeof(attached_sas_address));
230 
231 	} else if (properties.remote.protocols.u.bits.ssp_target ||
232 		   properties.remote.protocols.u.bits.smp_target) {
233 
234 		struct scic_sas_phy_properties sas_phy_properties;
235 
236 		isci_phy->sas_phy.oob_mode = SAS_OOB_MODE;
237 
238 		/* Get a copy of the identify address frame for libsas */
239 		call_status = scic_sas_phy_get_properties(phy,
240 							  &sas_phy_properties);
241 
242 		BUG_ON(call_status != SCI_SUCCESS);
243 
244 		memcpy(isci_phy->frame_rcvd.aif,
245 		       &(sas_phy_properties.received_iaf),
246 		       sizeof(struct sci_sas_identify_address_frame));
247 
248 		isci_phy->sas_phy.frame_rcvd_size
249 			= sizeof(struct sci_sas_identify_address_frame);
250 
251 		/* Copy the attached SAS address from the IAF */
252 		memcpy(isci_phy->sas_phy.attached_sas_addr,
253 		       ((struct sas_identify_frame *)
254 			(&isci_phy->frame_rcvd.aif))->sas_addr,
255 		       SAS_ADDR_SIZE);
256 
257 	} else {
258 		dev_err(&isci_host->pdev->dev, "%s: unkown target\n", __func__);
259 		success = false;
260 	}
261 
262 	isci_phy->sas_phy.phy->negotiated_linkrate = sci_phy_linkrate(phy);
263 
264 	spin_unlock_irqrestore(&isci_phy->sas_phy.frame_rcvd_lock, flags);
265 
266 	/* Notify libsas that we have an address frame, if indeed
267 	 * we've found an SSP, SMP, or STP target */
268 	if (success)
269 		isci_host->sas_ha.notify_port_event(&isci_phy->sas_phy,
270 						    PORTE_BYTES_DMAED);
271 }
272 
273 
274 /**
275  * isci_port_link_down() - This function is called by the sci core when a link
276  *    becomes inactive.
277  * @isci_host: This parameter specifies the isci host object.
278  * @phy: This parameter specifies the isci phy with the active link.
279  * @port: This parameter specifies the isci port with the active link.
280  *
281  */
282 void isci_port_link_down(
283 	struct isci_host *isci_host,
284 	struct isci_phy *isci_phy,
285 	struct isci_port *isci_port)
286 {
287 	struct isci_remote_device *isci_device;
288 
289 	dev_dbg(&isci_host->pdev->dev,
290 		"%s: isci_port = %p\n", __func__, isci_port);
291 
292 	if (isci_port) {
293 
294 		/* check to see if this is the last phy on this port. */
295 		if (isci_phy->sas_phy.port
296 		    && isci_phy->sas_phy.port->num_phys == 1) {
297 
298 			/* change the state for all devices on this port.
299 			 * The next task sent to this device will be returned
300 			 * as SAS_TASK_UNDELIVERED, and the scsi mid layer
301 			 * will remove the target
302 			 */
303 			list_for_each_entry(isci_device,
304 					    &isci_port->remote_dev_list,
305 					    node) {
306 				dev_dbg(&isci_host->pdev->dev,
307 					"%s: isci_device = %p\n",
308 					__func__, isci_device);
309 				isci_remote_device_change_state(isci_device,
310 								isci_stopping);
311 			}
312 		}
313 		isci_port_change_state(isci_port, isci_stopping);
314 	}
315 
316 	/* Notify libsas of the borken link, this will trigger calls to our
317 	 * isci_port_deformed and isci_dev_gone functions.
318 	 */
319 	sas_phy_disconnected(&isci_phy->sas_phy);
320 	isci_host->sas_ha.notify_phy_event(&isci_phy->sas_phy,
321 					   PHYE_LOSS_OF_SIGNAL);
322 
323 	isci_phy->isci_port = NULL;
324 
325 	dev_dbg(&isci_host->pdev->dev,
326 		"%s: isci_port = %p - Done\n", __func__, isci_port);
327 }
328 
329 
330 /**
331  * isci_port_deformed() - This function is called by libsas when a port becomes
332  *    inactive.
333  * @phy: This parameter specifies the libsas phy with the inactive port.
334  *
335  */
336 void isci_port_deformed(
337 	struct asd_sas_phy *phy)
338 {
339 	pr_debug("%s: sas_phy = %p\n", __func__, phy);
340 }
341 
342 /**
343  * isci_port_formed() - This function is called by libsas when a port becomes
344  *    active.
345  * @phy: This parameter specifies the libsas phy with the active port.
346  *
347  */
348 void isci_port_formed(
349 	struct asd_sas_phy *phy)
350 {
351 	pr_debug("%s: sas_phy = %p, sas_port = %p\n", __func__, phy, phy->port);
352 }
353 
354 /**
355  * isci_port_ready() - This function is called by the sci core when a link
356  *    becomes ready.
357  * @isci_host: This parameter specifies the isci host object.
358  * @port: This parameter specifies the sci port with the active link.
359  *
360  */
361 void isci_port_ready(
362 	struct isci_host *isci_host,
363 	struct isci_port *isci_port)
364 {
365 	dev_dbg(&isci_host->pdev->dev,
366 		"%s: isci_port = %p\n", __func__, isci_port);
367 
368 	complete_all(&isci_port->start_complete);
369 	isci_port_change_state(isci_port, isci_ready);
370 	return;
371 }
372 
373 /**
374  * isci_port_not_ready() - This function is called by the sci core when a link
375  *    is not ready. All remote devices on this link will be removed if they are
376  *    in the stopping state.
377  * @isci_host: This parameter specifies the isci host object.
378  * @port: This parameter specifies the sci port with the active link.
379  *
380  */
381 void isci_port_not_ready(
382 	struct isci_host *isci_host,
383 	struct isci_port *isci_port)
384 {
385 	dev_dbg(&isci_host->pdev->dev,
386 		"%s: isci_port = %p\n", __func__, isci_port);
387 }
388 
389 /**
390  * isci_port_hard_reset_complete() - This function is called by the sci core
391  *    when the hard reset complete notification has been received.
392  * @port: This parameter specifies the sci port with the active link.
393  * @completion_status: This parameter specifies the core status for the reset
394  *    process.
395  *
396  */
397 void isci_port_hard_reset_complete(
398 	struct isci_port *isci_port,
399 	enum sci_status completion_status)
400 {
401 	dev_dbg(&isci_port->isci_host->pdev->dev,
402 		"%s: isci_port = %p, completion_status=%x\n",
403 		     __func__, isci_port, completion_status);
404 
405 	/* Save the status of the hard reset from the port. */
406 	isci_port->hard_reset_status = completion_status;
407 
408 	complete_all(&isci_port->hard_reset_complete);
409 }
410 /**
411  * isci_port_perform_hard_reset() - This function is one of the SAS Domain
412  *    Template functions. This is a phy management function.
413  * @isci_port:
414  * @isci_phy:
415  *
416  * status, TMF_RESP_FUNC_COMPLETE indicates success.
417  */
418 int isci_port_perform_hard_reset(
419 	struct isci_port *isci_port,
420 	struct isci_phy *isci_phy)
421 {
422 	enum sci_status status;
423 	int ret = TMF_RESP_FUNC_COMPLETE;
424 	unsigned long flags;
425 
426 
427 	dev_dbg(&isci_port->isci_host->pdev->dev,
428 		"%s: isci_port = %p\n",
429 		__func__, isci_port);
430 
431 	BUG_ON(isci_port == NULL);
432 
433 	init_completion(&isci_port->hard_reset_complete);
434 
435 	spin_lock_irqsave(&isci_port->isci_host->scic_lock, flags);
436 
437 	#define ISCI_PORT_RESET_TIMEOUT SCIC_SDS_SIGNATURE_FIS_TIMEOUT
438 	status = scic_port_hard_reset(isci_port->sci_port_handle,
439 				      ISCI_PORT_RESET_TIMEOUT);
440 
441 	spin_unlock_irqrestore(&isci_port->isci_host->scic_lock, flags);
442 
443 	if (status == SCI_SUCCESS) {
444 		wait_for_completion(&isci_port->hard_reset_complete);
445 
446 		dev_dbg(&isci_port->isci_host->pdev->dev,
447 			"%s: isci_port = %p; hard reset completion\n",
448 			__func__, isci_port);
449 
450 		if (isci_port->hard_reset_status != SCI_SUCCESS)
451 			ret = TMF_RESP_FUNC_FAILED;
452 	} else {
453 		ret = TMF_RESP_FUNC_FAILED;
454 
455 		dev_err(&isci_port->isci_host->pdev->dev,
456 			"%s: isci_port = %p; scic_port_hard_reset call"
457 			" failed 0x%x\n",
458 			__func__, isci_port, status);
459 
460 	}
461 
462 	/* If the hard reset for the port has failed, consider this
463 	 * the same as link failures on all phys in the port.
464 	 */
465 	if (ret != TMF_RESP_FUNC_COMPLETE) {
466 		BUG_ON(isci_port->isci_host == NULL);
467 
468 		dev_err(&isci_port->isci_host->pdev->dev,
469 			"%s: isci_port = %p; hard reset failed "
470 			"(0x%x) - sending link down to libsas for phy %p\n",
471 			__func__,
472 			isci_port,
473 			isci_port->hard_reset_status,
474 			isci_phy);
475 
476 		isci_port_link_down(isci_port->isci_host,
477 				    isci_phy,
478 				    isci_port);
479 	}
480 
481 	return ret;
482 }
483