blob: 4b2ecd35dc5ada1172200eca57e24b260a7c5f33 [file] [log] [blame]
James Bottomley2908d772006-08-29 09:22:51 -05001/*
2 * Serial Attached SCSI (SAS) Expander discovery and configuration
3 *
4 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
5 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
6 *
7 * This file is licensed under GPLv2.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 *
23 */
24
James Bottomley2908d772006-08-29 09:22:51 -050025#include <linux/scatterlist.h>
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +090026#include <linux/blkdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
James Bottomley2908d772006-08-29 09:22:51 -050028
29#include "sas_internal.h"
30
Dan Williamsb52df412011-11-30 23:23:33 -080031#include <scsi/sas_ata.h>
James Bottomley2908d772006-08-29 09:22:51 -050032#include <scsi/scsi_transport.h>
33#include <scsi/scsi_transport_sas.h>
34#include "../scsi_sas_internal.h"
35
36static int sas_discover_expander(struct domain_device *dev);
37static int sas_configure_routing(struct domain_device *dev, u8 *sas_addr);
38static int sas_configure_phy(struct domain_device *dev, int phy_id,
39 u8 *sas_addr, int include);
40static int sas_disable_routing(struct domain_device *dev, u8 *sas_addr);
41
James Bottomley2908d772006-08-29 09:22:51 -050042/* ---------- SMP task management ---------- */
43
44static void smp_task_timedout(unsigned long _task)
45{
46 struct sas_task *task = (void *) _task;
47 unsigned long flags;
48
49 spin_lock_irqsave(&task->task_state_lock, flags);
50 if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
51 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
52 spin_unlock_irqrestore(&task->task_state_lock, flags);
53
54 complete(&task->completion);
55}
56
57static void smp_task_done(struct sas_task *task)
58{
59 if (!del_timer(&task->timer))
60 return;
61 complete(&task->completion);
62}
63
64/* Give it some long enough timeout. In seconds. */
65#define SMP_TIMEOUT 10
66
67static int smp_execute_task(struct domain_device *dev, void *req, int req_size,
68 void *resp, int resp_size)
69{
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070070 int res, retry;
71 struct sas_task *task = NULL;
James Bottomley2908d772006-08-29 09:22:51 -050072 struct sas_internal *i =
73 to_sas_internal(dev->port->ha->core.shost->transportt);
74
Jeff Skirvin89d3cf62011-11-16 09:44:13 +000075 mutex_lock(&dev->ex_dev.cmd_mutex);
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070076 for (retry = 0; retry < 3; retry++) {
Dan Williams3a9c5562011-12-21 15:19:56 -080077 if (test_bit(SAS_DEV_GONE, &dev->state)) {
78 res = -ECOMM;
79 break;
80 }
81
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070082 task = sas_alloc_task(GFP_KERNEL);
Jeff Skirvin89d3cf62011-11-16 09:44:13 +000083 if (!task) {
84 res = -ENOMEM;
85 break;
86 }
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070087 task->dev = dev;
88 task->task_proto = dev->tproto;
89 sg_init_one(&task->smp_task.smp_req, req, req_size);
90 sg_init_one(&task->smp_task.smp_resp, resp, resp_size);
James Bottomley2908d772006-08-29 09:22:51 -050091
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070092 task->task_done = smp_task_done;
James Bottomley2908d772006-08-29 09:22:51 -050093
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070094 task->timer.data = (unsigned long) task;
95 task->timer.function = smp_task_timedout;
96 task->timer.expires = jiffies + SMP_TIMEOUT*HZ;
97 add_timer(&task->timer);
James Bottomley2908d772006-08-29 09:22:51 -050098
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070099 res = i->dft->lldd_execute_task(task, 1, GFP_KERNEL);
James Bottomley2908d772006-08-29 09:22:51 -0500100
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700101 if (res) {
102 del_timer(&task->timer);
103 SAS_DPRINTK("executing SMP task failed:%d\n", res);
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000104 break;
James Bottomley2908d772006-08-29 09:22:51 -0500105 }
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700106
107 wait_for_completion(&task->completion);
James Bottomley32e8ae32007-12-30 12:37:31 -0600108 res = -ECOMM;
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700109 if ((task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
110 SAS_DPRINTK("smp task timed out or aborted\n");
111 i->dft->lldd_abort_task(task);
112 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
113 SAS_DPRINTK("SMP task aborted and not done\n");
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000114 break;
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700115 }
116 }
117 if (task->task_status.resp == SAS_TASK_COMPLETE &&
James Bottomleydf64d3c2010-07-27 15:51:13 -0500118 task->task_status.stat == SAM_STAT_GOOD) {
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700119 res = 0;
120 break;
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000121 }
122 if (task->task_status.resp == SAS_TASK_COMPLETE &&
123 task->task_status.stat == SAS_DATA_UNDERRUN) {
James Bottomley2d4b63e2007-12-29 11:49:53 -0600124 /* no error, but return the number of bytes of
125 * underrun */
126 res = task->task_status.residual;
127 break;
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000128 }
129 if (task->task_status.resp == SAS_TASK_COMPLETE &&
130 task->task_status.stat == SAS_DATA_OVERRUN) {
James Bottomley2d4b63e2007-12-29 11:49:53 -0600131 res = -EMSGSIZE;
132 break;
Dan Williams36a39942011-11-17 17:59:54 -0800133 }
134 if (task->task_status.resp == SAS_TASK_UNDELIVERED &&
135 task->task_status.stat == SAS_DEVICE_UNKNOWN)
136 break;
137 else {
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700138 SAS_DPRINTK("%s: task to dev %016llx response: 0x%x "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700139 "status 0x%x\n", __func__,
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700140 SAS_ADDR(dev->sas_addr),
141 task->task_status.resp,
142 task->task_status.stat);
143 sas_free_task(task);
144 task = NULL;
145 }
James Bottomley2908d772006-08-29 09:22:51 -0500146 }
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000147 mutex_unlock(&dev->ex_dev.cmd_mutex);
148
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700149 BUG_ON(retry == 3 && task != NULL);
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000150 sas_free_task(task);
James Bottomley2908d772006-08-29 09:22:51 -0500151 return res;
152}
153
154/* ---------- Allocations ---------- */
155
156static inline void *alloc_smp_req(int size)
157{
158 u8 *p = kzalloc(size, GFP_KERNEL);
159 if (p)
160 p[0] = SMP_REQUEST;
161 return p;
162}
163
164static inline void *alloc_smp_resp(int size)
165{
166 return kzalloc(size, GFP_KERNEL);
167}
168
Dan Williamsd214d812012-01-16 11:56:50 -0800169static char sas_route_char(struct domain_device *dev, struct ex_phy *phy)
170{
171 switch (phy->routing_attr) {
172 case TABLE_ROUTING:
173 if (dev->ex_dev.t2t_supp)
174 return 'U';
175 else
176 return 'T';
177 case DIRECT_ROUTING:
178 return 'D';
179 case SUBTRACTIVE_ROUTING:
180 return 'S';
181 default:
182 return '?';
183 }
184}
James Bottomley2908d772006-08-29 09:22:51 -0500185
186static void sas_set_ex_phy(struct domain_device *dev, int phy_id,
187 void *disc_resp)
188{
189 struct expander_device *ex = &dev->ex_dev;
190 struct ex_phy *phy = &ex->ex_phy[phy_id];
191 struct smp_resp *resp = disc_resp;
192 struct discover_resp *dr = &resp->disc;
193 struct sas_rphy *rphy = dev->rphy;
Dan Williamsd214d812012-01-16 11:56:50 -0800194 bool new_phy = !phy->phy;
195 char *type;
James Bottomley2908d772006-08-29 09:22:51 -0500196
Dan Williamsd214d812012-01-16 11:56:50 -0800197 if (new_phy) {
James Bottomley2908d772006-08-29 09:22:51 -0500198 phy->phy = sas_phy_alloc(&rphy->dev, phy_id);
199
200 /* FIXME: error_handling */
201 BUG_ON(!phy->phy);
202 }
203
204 switch (resp->result) {
205 case SMP_RESP_PHY_VACANT:
206 phy->phy_state = PHY_VACANT;
Jack Wang2bc72c92010-10-06 16:05:35 +0800207 break;
James Bottomley2908d772006-08-29 09:22:51 -0500208 default:
209 phy->phy_state = PHY_NOT_PRESENT;
Jack Wang2bc72c92010-10-06 16:05:35 +0800210 break;
James Bottomley2908d772006-08-29 09:22:51 -0500211 case SMP_RESP_FUNC_ACC:
212 phy->phy_state = PHY_EMPTY; /* do not know yet */
213 break;
214 }
215
216 phy->phy_id = phy_id;
217 phy->attached_dev_type = dr->attached_dev_type;
218 phy->linkrate = dr->linkrate;
219 phy->attached_sata_host = dr->attached_sata_host;
220 phy->attached_sata_dev = dr->attached_sata_dev;
221 phy->attached_sata_ps = dr->attached_sata_ps;
222 phy->attached_iproto = dr->iproto << 1;
223 phy->attached_tproto = dr->tproto << 1;
224 memcpy(phy->attached_sas_addr, dr->attached_sas_addr, SAS_ADDR_SIZE);
225 phy->attached_phy_id = dr->attached_phy_id;
226 phy->phy_change_count = dr->change_count;
227 phy->routing_attr = dr->routing_attr;
228 phy->virtual = dr->virtual;
229 phy->last_da_index = -1;
230
Jack Wangbb041a02011-09-23 14:32:32 +0800231 phy->phy->identify.sas_address = SAS_ADDR(phy->attached_sas_addr);
232 phy->phy->identify.device_type = phy->attached_dev_type;
James Bottomley2908d772006-08-29 09:22:51 -0500233 phy->phy->identify.initiator_port_protocols = phy->attached_iproto;
234 phy->phy->identify.target_port_protocols = phy->attached_tproto;
235 phy->phy->identify.phy_identifier = phy_id;
James Bottomleya01e70e2006-09-06 19:28:07 -0500236 phy->phy->minimum_linkrate_hw = dr->hmin_linkrate;
237 phy->phy->maximum_linkrate_hw = dr->hmax_linkrate;
238 phy->phy->minimum_linkrate = dr->pmin_linkrate;
239 phy->phy->maximum_linkrate = dr->pmax_linkrate;
James Bottomley88edf742006-09-06 17:36:13 -0500240 phy->phy->negotiated_linkrate = phy->linkrate;
James Bottomley2908d772006-08-29 09:22:51 -0500241
Dan Williamsd214d812012-01-16 11:56:50 -0800242 if (new_phy)
Jack Wang2bc72c92010-10-06 16:05:35 +0800243 if (sas_phy_add(phy->phy)) {
244 sas_phy_free(phy->phy);
245 return;
246 }
James Bottomley2908d772006-08-29 09:22:51 -0500247
Dan Williamsd214d812012-01-16 11:56:50 -0800248 switch (phy->attached_dev_type) {
249 case NO_DEVICE:
250 type = "no device";
251 break;
252 case SAS_END_DEV:
253 if (phy->attached_iproto) {
254 if (phy->attached_tproto)
255 type = "host+target";
256 else
257 type = "host";
258 } else {
259 if (dr->attached_sata_dev)
260 type = "stp";
261 else
262 type = "ssp";
263 }
264 break;
265 case EDGE_DEV:
266 case FANOUT_DEV:
267 type = "smp";
268 break;
269 default:
270 type = "unknown";
271 }
James Bottomley2908d772006-08-29 09:22:51 -0500272
Dan Williamsd214d812012-01-16 11:56:50 -0800273 SAS_DPRINTK("ex %016llx phy%02d:%c:%X attached: %016llx (%s)\n",
274 SAS_ADDR(dev->sas_addr), phy->phy_id,
275 sas_route_char(dev, phy), phy->linkrate,
276 SAS_ADDR(phy->attached_sas_addr), type);
James Bottomley2908d772006-08-29 09:22:51 -0500277}
278
Dan Williamsb52df412011-11-30 23:23:33 -0800279/* check if we have an existing attached ata device on this expander phy */
Dan Williams81c757b2011-12-02 16:07:01 -0800280struct domain_device *sas_ex_to_ata(struct domain_device *ex_dev, int phy_id)
Dan Williamsb52df412011-11-30 23:23:33 -0800281{
282 struct ex_phy *ex_phy = &ex_dev->ex_dev.ex_phy[phy_id];
283 struct domain_device *dev;
284 struct sas_rphy *rphy;
285
286 if (!ex_phy->port)
287 return NULL;
288
289 rphy = ex_phy->port->rphy;
290 if (!rphy)
291 return NULL;
292
293 dev = sas_find_dev_by_rphy(rphy);
294
295 if (dev && dev_is_sata(dev))
296 return dev;
297
298 return NULL;
299}
300
James Bottomley2908d772006-08-29 09:22:51 -0500301#define DISCOVER_REQ_SIZE 16
302#define DISCOVER_RESP_SIZE 56
303
James Bottomley1acce192006-08-22 12:39:19 -0500304static int sas_ex_phy_discover_helper(struct domain_device *dev, u8 *disc_req,
305 u8 *disc_resp, int single)
306{
Dan Williamsb52df412011-11-30 23:23:33 -0800307 struct domain_device *ata_dev = sas_ex_to_ata(dev, single);
James Bottomley1acce192006-08-22 12:39:19 -0500308 int i, res;
309
310 disc_req[9] = single;
311 for (i = 1 ; i < 3; i++) {
312 struct discover_resp *dr;
313
314 res = smp_execute_task(dev, disc_req, DISCOVER_REQ_SIZE,
315 disc_resp, DISCOVER_RESP_SIZE);
316 if (res)
317 return res;
James Bottomley1acce192006-08-22 12:39:19 -0500318 dr = &((struct smp_resp *)disc_resp)->disc;
jack_wang183ce892011-02-19 18:20:53 +0800319 if (memcmp(dev->sas_addr, dr->attached_sas_addr,
320 SAS_ADDR_SIZE) == 0) {
321 sas_printk("Found loopback topology, just ignore it!\n");
322 return 0;
323 }
Dan Williamsb52df412011-11-30 23:23:33 -0800324
325 /* This is detecting a failure to transmit initial
326 * dev to host FIS as described in section J.5 of
327 * sas-2 r16
328 */
James Bottomley1acce192006-08-22 12:39:19 -0500329 if (!(dr->attached_dev_type == 0 &&
330 dr->attached_sata_dev))
331 break;
Dan Williamsb52df412011-11-30 23:23:33 -0800332
333 /* In order to generate the dev to host FIS, we send a
334 * link reset to the expander port. If a device was
335 * previously detected on this port we ask libata to
336 * manage the reset and link recovery.
337 */
338 if (ata_dev) {
339 sas_ata_schedule_reset(ata_dev);
340 break;
341 }
James Bottomley38e2f032006-09-07 15:52:09 -0500342 sas_smp_phy_control(dev, single, PHY_FUNC_LINK_RESET, NULL);
James Bottomley1acce192006-08-22 12:39:19 -0500343 /* Wait for the reset to trigger the negotiation */
344 msleep(500);
345 }
346 sas_set_ex_phy(dev, single, disc_resp);
347 return 0;
348}
349
James Bottomley2908d772006-08-29 09:22:51 -0500350static int sas_ex_phy_discover(struct domain_device *dev, int single)
351{
352 struct expander_device *ex = &dev->ex_dev;
353 int res = 0;
354 u8 *disc_req;
355 u8 *disc_resp;
356
357 disc_req = alloc_smp_req(DISCOVER_REQ_SIZE);
358 if (!disc_req)
359 return -ENOMEM;
360
361 disc_resp = alloc_smp_req(DISCOVER_RESP_SIZE);
362 if (!disc_resp) {
363 kfree(disc_req);
364 return -ENOMEM;
365 }
366
367 disc_req[1] = SMP_DISCOVER;
368
369 if (0 <= single && single < ex->num_phys) {
James Bottomley1acce192006-08-22 12:39:19 -0500370 res = sas_ex_phy_discover_helper(dev, disc_req, disc_resp, single);
James Bottomley2908d772006-08-29 09:22:51 -0500371 } else {
372 int i;
373
374 for (i = 0; i < ex->num_phys; i++) {
James Bottomley1acce192006-08-22 12:39:19 -0500375 res = sas_ex_phy_discover_helper(dev, disc_req,
376 disc_resp, i);
James Bottomley2908d772006-08-29 09:22:51 -0500377 if (res)
378 goto out_err;
James Bottomley2908d772006-08-29 09:22:51 -0500379 }
380 }
381out_err:
382 kfree(disc_resp);
383 kfree(disc_req);
384 return res;
385}
386
387static int sas_expander_discover(struct domain_device *dev)
388{
389 struct expander_device *ex = &dev->ex_dev;
390 int res = -ENOMEM;
391
392 ex->ex_phy = kzalloc(sizeof(*ex->ex_phy)*ex->num_phys, GFP_KERNEL);
393 if (!ex->ex_phy)
394 return -ENOMEM;
395
396 res = sas_ex_phy_discover(dev, -1);
397 if (res)
398 goto out_err;
399
400 return 0;
401 out_err:
402 kfree(ex->ex_phy);
403 ex->ex_phy = NULL;
404 return res;
405}
406
407#define MAX_EXPANDER_PHYS 128
408
409static void ex_assign_report_general(struct domain_device *dev,
410 struct smp_resp *resp)
411{
412 struct report_general_resp *rg = &resp->rg;
413
414 dev->ex_dev.ex_change_count = be16_to_cpu(rg->change_count);
415 dev->ex_dev.max_route_indexes = be16_to_cpu(rg->route_indexes);
416 dev->ex_dev.num_phys = min(rg->num_phys, (u8)MAX_EXPANDER_PHYS);
Luben Tuikovffaac8f2011-09-22 09:41:36 -0700417 dev->ex_dev.t2t_supp = rg->t2t_supp;
James Bottomley2908d772006-08-29 09:22:51 -0500418 dev->ex_dev.conf_route_table = rg->conf_route_table;
419 dev->ex_dev.configuring = rg->configuring;
420 memcpy(dev->ex_dev.enclosure_logical_id, rg->enclosure_logical_id, 8);
421}
422
423#define RG_REQ_SIZE 8
424#define RG_RESP_SIZE 32
425
426static int sas_ex_general(struct domain_device *dev)
427{
428 u8 *rg_req;
429 struct smp_resp *rg_resp;
430 int res;
431 int i;
432
433 rg_req = alloc_smp_req(RG_REQ_SIZE);
434 if (!rg_req)
435 return -ENOMEM;
436
437 rg_resp = alloc_smp_resp(RG_RESP_SIZE);
438 if (!rg_resp) {
439 kfree(rg_req);
440 return -ENOMEM;
441 }
442
443 rg_req[1] = SMP_REPORT_GENERAL;
444
445 for (i = 0; i < 5; i++) {
446 res = smp_execute_task(dev, rg_req, RG_REQ_SIZE, rg_resp,
447 RG_RESP_SIZE);
448
449 if (res) {
450 SAS_DPRINTK("RG to ex %016llx failed:0x%x\n",
451 SAS_ADDR(dev->sas_addr), res);
452 goto out;
453 } else if (rg_resp->result != SMP_RESP_FUNC_ACC) {
454 SAS_DPRINTK("RG:ex %016llx returned SMP result:0x%x\n",
455 SAS_ADDR(dev->sas_addr), rg_resp->result);
456 res = rg_resp->result;
457 goto out;
458 }
459
460 ex_assign_report_general(dev, rg_resp);
461
462 if (dev->ex_dev.configuring) {
463 SAS_DPRINTK("RG: ex %llx self-configuring...\n",
464 SAS_ADDR(dev->sas_addr));
465 schedule_timeout_interruptible(5*HZ);
466 } else
467 break;
468 }
469out:
470 kfree(rg_req);
471 kfree(rg_resp);
472 return res;
473}
474
475static void ex_assign_manuf_info(struct domain_device *dev, void
476 *_mi_resp)
477{
478 u8 *mi_resp = _mi_resp;
479 struct sas_rphy *rphy = dev->rphy;
480 struct sas_expander_device *edev = rphy_to_expander_device(rphy);
481
482 memcpy(edev->vendor_id, mi_resp + 12, SAS_EXPANDER_VENDOR_ID_LEN);
483 memcpy(edev->product_id, mi_resp + 20, SAS_EXPANDER_PRODUCT_ID_LEN);
484 memcpy(edev->product_rev, mi_resp + 36,
485 SAS_EXPANDER_PRODUCT_REV_LEN);
486
487 if (mi_resp[8] & 1) {
488 memcpy(edev->component_vendor_id, mi_resp + 40,
489 SAS_EXPANDER_COMPONENT_VENDOR_ID_LEN);
490 edev->component_id = mi_resp[48] << 8 | mi_resp[49];
491 edev->component_revision_id = mi_resp[50];
492 }
493}
494
495#define MI_REQ_SIZE 8
496#define MI_RESP_SIZE 64
497
498static int sas_ex_manuf_info(struct domain_device *dev)
499{
500 u8 *mi_req;
501 u8 *mi_resp;
502 int res;
503
504 mi_req = alloc_smp_req(MI_REQ_SIZE);
505 if (!mi_req)
506 return -ENOMEM;
507
508 mi_resp = alloc_smp_resp(MI_RESP_SIZE);
509 if (!mi_resp) {
510 kfree(mi_req);
511 return -ENOMEM;
512 }
513
514 mi_req[1] = SMP_REPORT_MANUF_INFO;
515
516 res = smp_execute_task(dev, mi_req, MI_REQ_SIZE, mi_resp,MI_RESP_SIZE);
517 if (res) {
518 SAS_DPRINTK("MI: ex %016llx failed:0x%x\n",
519 SAS_ADDR(dev->sas_addr), res);
520 goto out;
521 } else if (mi_resp[2] != SMP_RESP_FUNC_ACC) {
522 SAS_DPRINTK("MI ex %016llx returned SMP result:0x%x\n",
523 SAS_ADDR(dev->sas_addr), mi_resp[2]);
524 goto out;
525 }
526
527 ex_assign_manuf_info(dev, mi_resp);
528out:
529 kfree(mi_req);
530 kfree(mi_resp);
531 return res;
532}
533
534#define PC_REQ_SIZE 44
535#define PC_RESP_SIZE 8
536
537int sas_smp_phy_control(struct domain_device *dev, int phy_id,
James Bottomleya01e70e2006-09-06 19:28:07 -0500538 enum phy_func phy_func,
539 struct sas_phy_linkrates *rates)
James Bottomley2908d772006-08-29 09:22:51 -0500540{
541 u8 *pc_req;
542 u8 *pc_resp;
543 int res;
544
545 pc_req = alloc_smp_req(PC_REQ_SIZE);
546 if (!pc_req)
547 return -ENOMEM;
548
549 pc_resp = alloc_smp_resp(PC_RESP_SIZE);
550 if (!pc_resp) {
551 kfree(pc_req);
552 return -ENOMEM;
553 }
554
555 pc_req[1] = SMP_PHY_CONTROL;
556 pc_req[9] = phy_id;
557 pc_req[10]= phy_func;
James Bottomleya01e70e2006-09-06 19:28:07 -0500558 if (rates) {
559 pc_req[32] = rates->minimum_linkrate << 4;
560 pc_req[33] = rates->maximum_linkrate << 4;
561 }
James Bottomley2908d772006-08-29 09:22:51 -0500562
563 res = smp_execute_task(dev, pc_req, PC_REQ_SIZE, pc_resp,PC_RESP_SIZE);
564
565 kfree(pc_resp);
566 kfree(pc_req);
567 return res;
568}
569
570static void sas_ex_disable_phy(struct domain_device *dev, int phy_id)
571{
572 struct expander_device *ex = &dev->ex_dev;
573 struct ex_phy *phy = &ex->ex_phy[phy_id];
574
James Bottomleya01e70e2006-09-06 19:28:07 -0500575 sas_smp_phy_control(dev, phy_id, PHY_FUNC_DISABLE, NULL);
James Bottomley88edf742006-09-06 17:36:13 -0500576 phy->linkrate = SAS_PHY_DISABLED;
James Bottomley2908d772006-08-29 09:22:51 -0500577}
578
579static void sas_ex_disable_port(struct domain_device *dev, u8 *sas_addr)
580{
581 struct expander_device *ex = &dev->ex_dev;
582 int i;
583
584 for (i = 0; i < ex->num_phys; i++) {
585 struct ex_phy *phy = &ex->ex_phy[i];
586
587 if (phy->phy_state == PHY_VACANT ||
588 phy->phy_state == PHY_NOT_PRESENT)
589 continue;
590
591 if (SAS_ADDR(phy->attached_sas_addr) == SAS_ADDR(sas_addr))
592 sas_ex_disable_phy(dev, i);
593 }
594}
595
596static int sas_dev_present_in_domain(struct asd_sas_port *port,
597 u8 *sas_addr)
598{
599 struct domain_device *dev;
600
601 if (SAS_ADDR(port->sas_addr) == SAS_ADDR(sas_addr))
602 return 1;
603 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
604 if (SAS_ADDR(dev->sas_addr) == SAS_ADDR(sas_addr))
605 return 1;
606 }
607 return 0;
608}
609
610#define RPEL_REQ_SIZE 16
611#define RPEL_RESP_SIZE 32
612int sas_smp_get_phy_events(struct sas_phy *phy)
613{
614 int res;
Jesper Juhl92631fa2007-07-28 01:13:33 +0200615 u8 *req;
616 u8 *resp;
James Bottomley2908d772006-08-29 09:22:51 -0500617 struct sas_rphy *rphy = dev_to_rphy(phy->dev.parent);
618 struct domain_device *dev = sas_find_dev_by_rphy(rphy);
James Bottomley2908d772006-08-29 09:22:51 -0500619
Jesper Juhl92631fa2007-07-28 01:13:33 +0200620 req = alloc_smp_req(RPEL_REQ_SIZE);
621 if (!req)
James Bottomley2908d772006-08-29 09:22:51 -0500622 return -ENOMEM;
623
Jesper Juhl92631fa2007-07-28 01:13:33 +0200624 resp = alloc_smp_resp(RPEL_RESP_SIZE);
625 if (!resp) {
626 kfree(req);
627 return -ENOMEM;
628 }
629
James Bottomley2908d772006-08-29 09:22:51 -0500630 req[1] = SMP_REPORT_PHY_ERR_LOG;
631 req[9] = phy->number;
632
633 res = smp_execute_task(dev, req, RPEL_REQ_SIZE,
634 resp, RPEL_RESP_SIZE);
635
636 if (!res)
637 goto out;
638
639 phy->invalid_dword_count = scsi_to_u32(&resp[12]);
640 phy->running_disparity_error_count = scsi_to_u32(&resp[16]);
641 phy->loss_of_dword_sync_count = scsi_to_u32(&resp[20]);
642 phy->phy_reset_problem_count = scsi_to_u32(&resp[24]);
643
644 out:
645 kfree(resp);
646 return res;
647
648}
649
James Bottomleyb9142172007-07-22 13:15:55 -0500650#ifdef CONFIG_SCSI_SAS_ATA
651
James Bottomley2908d772006-08-29 09:22:51 -0500652#define RPS_REQ_SIZE 16
653#define RPS_RESP_SIZE 60
654
655static int sas_get_report_phy_sata(struct domain_device *dev,
656 int phy_id,
657 struct smp_resp *rps_resp)
658{
659 int res;
660 u8 *rps_req = alloc_smp_req(RPS_REQ_SIZE);
James Bottomley1acce192006-08-22 12:39:19 -0500661 u8 *resp = (u8 *)rps_resp;
James Bottomley2908d772006-08-29 09:22:51 -0500662
663 if (!rps_req)
664 return -ENOMEM;
665
666 rps_req[1] = SMP_REPORT_PHY_SATA;
667 rps_req[9] = phy_id;
668
669 res = smp_execute_task(dev, rps_req, RPS_REQ_SIZE,
670 rps_resp, RPS_RESP_SIZE);
671
James Bottomley1acce192006-08-22 12:39:19 -0500672 /* 0x34 is the FIS type for the D2H fis. There's a potential
673 * standards cockup here. sas-2 explicitly specifies the FIS
674 * should be encoded so that FIS type is in resp[24].
675 * However, some expanders endian reverse this. Undo the
676 * reversal here */
677 if (!res && resp[27] == 0x34 && resp[24] != 0x34) {
678 int i;
679
680 for (i = 0; i < 5; i++) {
681 int j = 24 + (i*4);
682 u8 a, b;
683 a = resp[j + 0];
684 b = resp[j + 1];
685 resp[j + 0] = resp[j + 3];
686 resp[j + 1] = resp[j + 2];
687 resp[j + 2] = b;
688 resp[j + 3] = a;
689 }
690 }
691
James Bottomley2908d772006-08-29 09:22:51 -0500692 kfree(rps_req);
James Bottomley1acce192006-08-22 12:39:19 -0500693 return res;
James Bottomley2908d772006-08-29 09:22:51 -0500694}
James Bottomleyb9142172007-07-22 13:15:55 -0500695#endif
James Bottomley2908d772006-08-29 09:22:51 -0500696
697static void sas_ex_get_linkrate(struct domain_device *parent,
698 struct domain_device *child,
699 struct ex_phy *parent_phy)
700{
701 struct expander_device *parent_ex = &parent->ex_dev;
702 struct sas_port *port;
703 int i;
704
705 child->pathways = 0;
706
707 port = parent_phy->port;
708
709 for (i = 0; i < parent_ex->num_phys; i++) {
710 struct ex_phy *phy = &parent_ex->ex_phy[i];
711
712 if (phy->phy_state == PHY_VACANT ||
713 phy->phy_state == PHY_NOT_PRESENT)
714 continue;
715
716 if (SAS_ADDR(phy->attached_sas_addr) ==
717 SAS_ADDR(child->sas_addr)) {
718
719 child->min_linkrate = min(parent->min_linkrate,
720 phy->linkrate);
721 child->max_linkrate = max(parent->max_linkrate,
722 phy->linkrate);
723 child->pathways++;
724 sas_port_add_phy(port, phy->phy);
725 }
726 }
727 child->linkrate = min(parent_phy->linkrate, child->max_linkrate);
728 child->pathways = min(child->pathways, parent->pathways);
729}
730
731static struct domain_device *sas_ex_discover_end_dev(
732 struct domain_device *parent, int phy_id)
733{
734 struct expander_device *parent_ex = &parent->ex_dev;
735 struct ex_phy *phy = &parent_ex->ex_phy[phy_id];
736 struct domain_device *child = NULL;
737 struct sas_rphy *rphy;
738 int res;
739
740 if (phy->attached_sata_host || phy->attached_sata_ps)
741 return NULL;
742
Dan Williams735f7d22011-11-17 17:59:47 -0800743 child = sas_alloc_device();
James Bottomley2908d772006-08-29 09:22:51 -0500744 if (!child)
745 return NULL;
746
Dan Williams735f7d22011-11-17 17:59:47 -0800747 kref_get(&parent->kref);
James Bottomley2908d772006-08-29 09:22:51 -0500748 child->parent = parent;
749 child->port = parent->port;
750 child->iproto = phy->attached_iproto;
751 memcpy(child->sas_addr, phy->attached_sas_addr, SAS_ADDR_SIZE);
752 sas_hash_addr(child->hashed_sas_addr, child->sas_addr);
James Bottomley024879e2006-11-15 18:03:07 -0600753 if (!phy->port) {
754 phy->port = sas_port_alloc(&parent->rphy->dev, phy_id);
755 if (unlikely(!phy->port))
756 goto out_err;
757 if (unlikely(sas_port_add(phy->port) != 0)) {
758 sas_port_free(phy->port);
759 goto out_err;
760 }
761 }
James Bottomley2908d772006-08-29 09:22:51 -0500762 sas_ex_get_linkrate(parent, child, phy);
Dan Williamsf41a0c42011-12-21 21:33:17 -0800763 sas_device_set_phy(child, phy->port);
James Bottomley2908d772006-08-29 09:22:51 -0500764
James Bottomleyb9142172007-07-22 13:15:55 -0500765#ifdef CONFIG_SCSI_SAS_ATA
Darrick J. Wong5929faf2007-11-05 11:51:17 -0800766 if ((phy->attached_tproto & SAS_PROTOCOL_STP) || phy->attached_sata_dev) {
James Bottomley2908d772006-08-29 09:22:51 -0500767 child->dev_type = SATA_DEV;
Darrick J. Wong5929faf2007-11-05 11:51:17 -0800768 if (phy->attached_tproto & SAS_PROTOCOL_STP)
James Bottomley2908d772006-08-29 09:22:51 -0500769 child->tproto = phy->attached_tproto;
770 if (phy->attached_sata_dev)
771 child->tproto |= SATA_DEV;
772 res = sas_get_report_phy_sata(parent, phy_id,
773 &child->sata_dev.rps_resp);
774 if (res) {
775 SAS_DPRINTK("report phy sata to %016llx:0x%x returned "
776 "0x%x\n", SAS_ADDR(parent->sas_addr),
777 phy_id, res);
James Bottomley024879e2006-11-15 18:03:07 -0600778 goto out_free;
James Bottomley2908d772006-08-29 09:22:51 -0500779 }
780 memcpy(child->frame_rcvd, &child->sata_dev.rps_resp.rps.fis,
781 sizeof(struct dev_to_host_fis));
James Bottomley1acce192006-08-22 12:39:19 -0500782
783 rphy = sas_end_device_alloc(phy->port);
James Bottomley528fd552006-10-16 10:57:05 -0500784 if (unlikely(!rphy))
785 goto out_free;
James Bottomley1acce192006-08-22 12:39:19 -0500786
James Bottomley2908d772006-08-29 09:22:51 -0500787 sas_init_dev(child);
James Bottomley1acce192006-08-22 12:39:19 -0500788
789 child->rphy = rphy;
790
Dan Williams87c83312011-11-17 17:59:51 -0800791 list_add_tail(&child->disco_list_node, &parent->port->disco_list);
James Bottomley1acce192006-08-22 12:39:19 -0500792
James Bottomley2908d772006-08-29 09:22:51 -0500793 res = sas_discover_sata(child);
794 if (res) {
795 SAS_DPRINTK("sas_discover_sata() for device %16llx at "
796 "%016llx:0x%x returned 0x%x\n",
797 SAS_ADDR(child->sas_addr),
798 SAS_ADDR(parent->sas_addr), phy_id, res);
James Bottomley1acce192006-08-22 12:39:19 -0500799 goto out_list_del;
James Bottomley2908d772006-08-29 09:22:51 -0500800 }
James Bottomleyb9142172007-07-22 13:15:55 -0500801 } else
802#endif
Darrick J. Wong5929faf2007-11-05 11:51:17 -0800803 if (phy->attached_tproto & SAS_PROTOCOL_SSP) {
James Bottomley2908d772006-08-29 09:22:51 -0500804 child->dev_type = SAS_END_DEV;
805 rphy = sas_end_device_alloc(phy->port);
806 /* FIXME: error handling */
James Bottomley024879e2006-11-15 18:03:07 -0600807 if (unlikely(!rphy))
808 goto out_free;
James Bottomley2908d772006-08-29 09:22:51 -0500809 child->tproto = phy->attached_tproto;
810 sas_init_dev(child);
811
812 child->rphy = rphy;
813 sas_fill_in_rphy(child, rphy);
814
James Bottomley9d720d82007-07-16 13:15:51 -0500815 spin_lock_irq(&parent->port->dev_list_lock);
James Bottomley2908d772006-08-29 09:22:51 -0500816 list_add_tail(&child->dev_list_node, &parent->port->dev_list);
James Bottomley9d720d82007-07-16 13:15:51 -0500817 spin_unlock_irq(&parent->port->dev_list_lock);
James Bottomley2908d772006-08-29 09:22:51 -0500818
819 res = sas_discover_end_dev(child);
820 if (res) {
821 SAS_DPRINTK("sas_discover_end_dev() for device %16llx "
822 "at %016llx:0x%x returned 0x%x\n",
823 SAS_ADDR(child->sas_addr),
824 SAS_ADDR(parent->sas_addr), phy_id, res);
James Bottomley024879e2006-11-15 18:03:07 -0600825 goto out_list_del;
James Bottomley2908d772006-08-29 09:22:51 -0500826 }
827 } else {
828 SAS_DPRINTK("target proto 0x%x at %016llx:0x%x not handled\n",
829 phy->attached_tproto, SAS_ADDR(parent->sas_addr),
830 phy_id);
James Bottomleyb9142172007-07-22 13:15:55 -0500831 goto out_free;
James Bottomley2908d772006-08-29 09:22:51 -0500832 }
833
834 list_add_tail(&child->siblings, &parent_ex->children);
835 return child;
James Bottomley024879e2006-11-15 18:03:07 -0600836
837 out_list_del:
Darrick J. Wong6f63caa2007-01-26 14:08:43 -0800838 sas_rphy_free(child->rphy);
839 child->rphy = NULL;
Dan Williams1a34c062011-09-21 22:05:34 -0700840
Dan Williams87c83312011-11-17 17:59:51 -0800841 list_del(&child->disco_list_node);
Dan Williams1a34c062011-09-21 22:05:34 -0700842 spin_lock_irq(&parent->port->dev_list_lock);
James Bottomley024879e2006-11-15 18:03:07 -0600843 list_del(&child->dev_list_node);
Dan Williams1a34c062011-09-21 22:05:34 -0700844 spin_unlock_irq(&parent->port->dev_list_lock);
James Bottomley024879e2006-11-15 18:03:07 -0600845 out_free:
846 sas_port_delete(phy->port);
847 out_err:
848 phy->port = NULL;
Dan Williams735f7d22011-11-17 17:59:47 -0800849 sas_put_device(child);
James Bottomley024879e2006-11-15 18:03:07 -0600850 return NULL;
James Bottomley2908d772006-08-29 09:22:51 -0500851}
852
Darrick J. Wong423f7cf2007-01-30 12:07:27 -0800853/* See if this phy is part of a wide port */
854static int sas_ex_join_wide_port(struct domain_device *parent, int phy_id)
855{
856 struct ex_phy *phy = &parent->ex_dev.ex_phy[phy_id];
857 int i;
858
859 for (i = 0; i < parent->ex_dev.num_phys; i++) {
860 struct ex_phy *ephy = &parent->ex_dev.ex_phy[i];
861
862 if (ephy == phy)
863 continue;
864
865 if (!memcmp(phy->attached_sas_addr, ephy->attached_sas_addr,
866 SAS_ADDR_SIZE) && ephy->port) {
867 sas_port_add_phy(ephy->port, phy->phy);
Tom Peng19252de2009-07-17 16:02:04 +0800868 phy->port = ephy->port;
Darrick J. Wong423f7cf2007-01-30 12:07:27 -0800869 phy->phy_state = PHY_DEVICE_DISCOVERED;
870 return 0;
871 }
872 }
873
874 return -ENODEV;
875}
876
James Bottomley2908d772006-08-29 09:22:51 -0500877static struct domain_device *sas_ex_discover_expander(
878 struct domain_device *parent, int phy_id)
879{
880 struct sas_expander_device *parent_ex = rphy_to_expander_device(parent->rphy);
881 struct ex_phy *phy = &parent->ex_dev.ex_phy[phy_id];
882 struct domain_device *child = NULL;
883 struct sas_rphy *rphy;
884 struct sas_expander_device *edev;
885 struct asd_sas_port *port;
886 int res;
887
888 if (phy->routing_attr == DIRECT_ROUTING) {
889 SAS_DPRINTK("ex %016llx:0x%x:D <--> ex %016llx:0x%x is not "
890 "allowed\n",
891 SAS_ADDR(parent->sas_addr), phy_id,
892 SAS_ADDR(phy->attached_sas_addr),
893 phy->attached_phy_id);
894 return NULL;
895 }
Dan Williams735f7d22011-11-17 17:59:47 -0800896 child = sas_alloc_device();
James Bottomley2908d772006-08-29 09:22:51 -0500897 if (!child)
898 return NULL;
899
900 phy->port = sas_port_alloc(&parent->rphy->dev, phy_id);
901 /* FIXME: better error handling */
902 BUG_ON(sas_port_add(phy->port) != 0);
903
904
905 switch (phy->attached_dev_type) {
906 case EDGE_DEV:
907 rphy = sas_expander_alloc(phy->port,
908 SAS_EDGE_EXPANDER_DEVICE);
909 break;
910 case FANOUT_DEV:
911 rphy = sas_expander_alloc(phy->port,
912 SAS_FANOUT_EXPANDER_DEVICE);
913 break;
914 default:
915 rphy = NULL; /* shut gcc up */
916 BUG();
917 }
918 port = parent->port;
919 child->rphy = rphy;
920 edev = rphy_to_expander_device(rphy);
921 child->dev_type = phy->attached_dev_type;
Dan Williams735f7d22011-11-17 17:59:47 -0800922 kref_get(&parent->kref);
James Bottomley2908d772006-08-29 09:22:51 -0500923 child->parent = parent;
924 child->port = port;
925 child->iproto = phy->attached_iproto;
926 child->tproto = phy->attached_tproto;
927 memcpy(child->sas_addr, phy->attached_sas_addr, SAS_ADDR_SIZE);
928 sas_hash_addr(child->hashed_sas_addr, child->sas_addr);
929 sas_ex_get_linkrate(parent, child, phy);
930 edev->level = parent_ex->level + 1;
931 parent->port->disc.max_level = max(parent->port->disc.max_level,
932 edev->level);
933 sas_init_dev(child);
934 sas_fill_in_rphy(child, rphy);
935 sas_rphy_add(rphy);
936
James Bottomley9d720d82007-07-16 13:15:51 -0500937 spin_lock_irq(&parent->port->dev_list_lock);
James Bottomley2908d772006-08-29 09:22:51 -0500938 list_add_tail(&child->dev_list_node, &parent->port->dev_list);
James Bottomley9d720d82007-07-16 13:15:51 -0500939 spin_unlock_irq(&parent->port->dev_list_lock);
James Bottomley2908d772006-08-29 09:22:51 -0500940
941 res = sas_discover_expander(child);
942 if (res) {
Luben Tuikov5911e962011-07-26 23:10:48 -0700943 spin_lock_irq(&parent->port->dev_list_lock);
944 list_del(&child->dev_list_node);
945 spin_unlock_irq(&parent->port->dev_list_lock);
Dan Williams735f7d22011-11-17 17:59:47 -0800946 sas_put_device(child);
James Bottomley2908d772006-08-29 09:22:51 -0500947 return NULL;
948 }
949 list_add_tail(&child->siblings, &parent->ex_dev.children);
950 return child;
951}
952
953static int sas_ex_discover_dev(struct domain_device *dev, int phy_id)
954{
955 struct expander_device *ex = &dev->ex_dev;
956 struct ex_phy *ex_phy = &ex->ex_phy[phy_id];
957 struct domain_device *child = NULL;
958 int res = 0;
959
960 /* Phy state */
James Bottomley88edf742006-09-06 17:36:13 -0500961 if (ex_phy->linkrate == SAS_SATA_SPINUP_HOLD) {
James Bottomleya01e70e2006-09-06 19:28:07 -0500962 if (!sas_smp_phy_control(dev, phy_id, PHY_FUNC_LINK_RESET, NULL))
James Bottomley2908d772006-08-29 09:22:51 -0500963 res = sas_ex_phy_discover(dev, phy_id);
964 if (res)
965 return res;
966 }
967
968 /* Parent and domain coherency */
969 if (!dev->parent && (SAS_ADDR(ex_phy->attached_sas_addr) ==
970 SAS_ADDR(dev->port->sas_addr))) {
971 sas_add_parent_port(dev, phy_id);
972 return 0;
973 }
974 if (dev->parent && (SAS_ADDR(ex_phy->attached_sas_addr) ==
975 SAS_ADDR(dev->parent->sas_addr))) {
976 sas_add_parent_port(dev, phy_id);
977 if (ex_phy->routing_attr == TABLE_ROUTING)
978 sas_configure_phy(dev, phy_id, dev->port->sas_addr, 1);
979 return 0;
980 }
981
982 if (sas_dev_present_in_domain(dev->port, ex_phy->attached_sas_addr))
983 sas_ex_disable_port(dev, ex_phy->attached_sas_addr);
984
985 if (ex_phy->attached_dev_type == NO_DEVICE) {
986 if (ex_phy->routing_attr == DIRECT_ROUTING) {
987 memset(ex_phy->attached_sas_addr, 0, SAS_ADDR_SIZE);
988 sas_configure_routing(dev, ex_phy->attached_sas_addr);
989 }
990 return 0;
James Bottomley88edf742006-09-06 17:36:13 -0500991 } else if (ex_phy->linkrate == SAS_LINK_RATE_UNKNOWN)
James Bottomley2908d772006-08-29 09:22:51 -0500992 return 0;
993
994 if (ex_phy->attached_dev_type != SAS_END_DEV &&
995 ex_phy->attached_dev_type != FANOUT_DEV &&
996 ex_phy->attached_dev_type != EDGE_DEV) {
997 SAS_DPRINTK("unknown device type(0x%x) attached to ex %016llx "
998 "phy 0x%x\n", ex_phy->attached_dev_type,
999 SAS_ADDR(dev->sas_addr),
1000 phy_id);
1001 return 0;
1002 }
1003
1004 res = sas_configure_routing(dev, ex_phy->attached_sas_addr);
1005 if (res) {
1006 SAS_DPRINTK("configure routing for dev %016llx "
1007 "reported 0x%x. Forgotten\n",
1008 SAS_ADDR(ex_phy->attached_sas_addr), res);
1009 sas_disable_routing(dev, ex_phy->attached_sas_addr);
1010 return res;
1011 }
1012
Darrick J. Wong423f7cf2007-01-30 12:07:27 -08001013 res = sas_ex_join_wide_port(dev, phy_id);
1014 if (!res) {
1015 SAS_DPRINTK("Attaching ex phy%d to wide port %016llx\n",
1016 phy_id, SAS_ADDR(ex_phy->attached_sas_addr));
1017 return res;
1018 }
1019
James Bottomley2908d772006-08-29 09:22:51 -05001020 switch (ex_phy->attached_dev_type) {
1021 case SAS_END_DEV:
1022 child = sas_ex_discover_end_dev(dev, phy_id);
1023 break;
1024 case FANOUT_DEV:
1025 if (SAS_ADDR(dev->port->disc.fanout_sas_addr)) {
1026 SAS_DPRINTK("second fanout expander %016llx phy 0x%x "
1027 "attached to ex %016llx phy 0x%x\n",
1028 SAS_ADDR(ex_phy->attached_sas_addr),
1029 ex_phy->attached_phy_id,
1030 SAS_ADDR(dev->sas_addr),
1031 phy_id);
1032 sas_ex_disable_phy(dev, phy_id);
1033 break;
1034 } else
1035 memcpy(dev->port->disc.fanout_sas_addr,
1036 ex_phy->attached_sas_addr, SAS_ADDR_SIZE);
1037 /* fallthrough */
1038 case EDGE_DEV:
1039 child = sas_ex_discover_expander(dev, phy_id);
1040 break;
1041 default:
1042 break;
1043 }
1044
1045 if (child) {
1046 int i;
1047
1048 for (i = 0; i < ex->num_phys; i++) {
1049 if (ex->ex_phy[i].phy_state == PHY_VACANT ||
1050 ex->ex_phy[i].phy_state == PHY_NOT_PRESENT)
1051 continue;
Tom Peng19252de2009-07-17 16:02:04 +08001052 /*
1053 * Due to races, the phy might not get added to the
1054 * wide port, so we add the phy to the wide port here.
1055 */
James Bottomley2908d772006-08-29 09:22:51 -05001056 if (SAS_ADDR(ex->ex_phy[i].attached_sas_addr) ==
Tom Peng19252de2009-07-17 16:02:04 +08001057 SAS_ADDR(child->sas_addr)) {
James Bottomley2908d772006-08-29 09:22:51 -05001058 ex->ex_phy[i].phy_state= PHY_DEVICE_DISCOVERED;
Tom Peng19252de2009-07-17 16:02:04 +08001059 res = sas_ex_join_wide_port(dev, i);
1060 if (!res)
1061 SAS_DPRINTK("Attaching ex phy%d to wide port %016llx\n",
1062 i, SAS_ADDR(ex->ex_phy[i].attached_sas_addr));
1063
1064 }
James Bottomley2908d772006-08-29 09:22:51 -05001065 }
1066 }
1067
1068 return res;
1069}
1070
1071static int sas_find_sub_addr(struct domain_device *dev, u8 *sub_addr)
1072{
1073 struct expander_device *ex = &dev->ex_dev;
1074 int i;
1075
1076 for (i = 0; i < ex->num_phys; i++) {
1077 struct ex_phy *phy = &ex->ex_phy[i];
1078
1079 if (phy->phy_state == PHY_VACANT ||
1080 phy->phy_state == PHY_NOT_PRESENT)
1081 continue;
1082
1083 if ((phy->attached_dev_type == EDGE_DEV ||
1084 phy->attached_dev_type == FANOUT_DEV) &&
1085 phy->routing_attr == SUBTRACTIVE_ROUTING) {
1086
1087 memcpy(sub_addr, phy->attached_sas_addr,SAS_ADDR_SIZE);
1088
1089 return 1;
1090 }
1091 }
1092 return 0;
1093}
1094
1095static int sas_check_level_subtractive_boundary(struct domain_device *dev)
1096{
1097 struct expander_device *ex = &dev->ex_dev;
1098 struct domain_device *child;
1099 u8 sub_addr[8] = {0, };
1100
1101 list_for_each_entry(child, &ex->children, siblings) {
1102 if (child->dev_type != EDGE_DEV &&
1103 child->dev_type != FANOUT_DEV)
1104 continue;
1105 if (sub_addr[0] == 0) {
1106 sas_find_sub_addr(child, sub_addr);
1107 continue;
1108 } else {
1109 u8 s2[8];
1110
1111 if (sas_find_sub_addr(child, s2) &&
1112 (SAS_ADDR(sub_addr) != SAS_ADDR(s2))) {
1113
1114 SAS_DPRINTK("ex %016llx->%016llx-?->%016llx "
1115 "diverges from subtractive "
1116 "boundary %016llx\n",
1117 SAS_ADDR(dev->sas_addr),
1118 SAS_ADDR(child->sas_addr),
1119 SAS_ADDR(s2),
1120 SAS_ADDR(sub_addr));
1121
1122 sas_ex_disable_port(child, s2);
1123 }
1124 }
1125 }
1126 return 0;
1127}
1128/**
1129 * sas_ex_discover_devices -- discover devices attached to this expander
1130 * dev: pointer to the expander domain device
1131 * single: if you want to do a single phy, else set to -1;
1132 *
1133 * Configure this expander for use with its devices and register the
1134 * devices of this expander.
1135 */
1136static int sas_ex_discover_devices(struct domain_device *dev, int single)
1137{
1138 struct expander_device *ex = &dev->ex_dev;
1139 int i = 0, end = ex->num_phys;
1140 int res = 0;
1141
1142 if (0 <= single && single < end) {
1143 i = single;
1144 end = i+1;
1145 }
1146
1147 for ( ; i < end; i++) {
1148 struct ex_phy *ex_phy = &ex->ex_phy[i];
1149
1150 if (ex_phy->phy_state == PHY_VACANT ||
1151 ex_phy->phy_state == PHY_NOT_PRESENT ||
1152 ex_phy->phy_state == PHY_DEVICE_DISCOVERED)
1153 continue;
1154
1155 switch (ex_phy->linkrate) {
James Bottomley88edf742006-09-06 17:36:13 -05001156 case SAS_PHY_DISABLED:
1157 case SAS_PHY_RESET_PROBLEM:
1158 case SAS_SATA_PORT_SELECTOR:
James Bottomley2908d772006-08-29 09:22:51 -05001159 continue;
1160 default:
1161 res = sas_ex_discover_dev(dev, i);
1162 if (res)
1163 break;
1164 continue;
1165 }
1166 }
1167
1168 if (!res)
1169 sas_check_level_subtractive_boundary(dev);
1170
1171 return res;
1172}
1173
1174static int sas_check_ex_subtractive_boundary(struct domain_device *dev)
1175{
1176 struct expander_device *ex = &dev->ex_dev;
1177 int i;
1178 u8 *sub_sas_addr = NULL;
1179
1180 if (dev->dev_type != EDGE_DEV)
1181 return 0;
1182
1183 for (i = 0; i < ex->num_phys; i++) {
1184 struct ex_phy *phy = &ex->ex_phy[i];
1185
1186 if (phy->phy_state == PHY_VACANT ||
1187 phy->phy_state == PHY_NOT_PRESENT)
1188 continue;
1189
1190 if ((phy->attached_dev_type == FANOUT_DEV ||
1191 phy->attached_dev_type == EDGE_DEV) &&
1192 phy->routing_attr == SUBTRACTIVE_ROUTING) {
1193
1194 if (!sub_sas_addr)
1195 sub_sas_addr = &phy->attached_sas_addr[0];
1196 else if (SAS_ADDR(sub_sas_addr) !=
1197 SAS_ADDR(phy->attached_sas_addr)) {
1198
1199 SAS_DPRINTK("ex %016llx phy 0x%x "
1200 "diverges(%016llx) on subtractive "
1201 "boundary(%016llx). Disabled\n",
1202 SAS_ADDR(dev->sas_addr), i,
1203 SAS_ADDR(phy->attached_sas_addr),
1204 SAS_ADDR(sub_sas_addr));
1205 sas_ex_disable_phy(dev, i);
1206 }
1207 }
1208 }
1209 return 0;
1210}
1211
1212static void sas_print_parent_topology_bug(struct domain_device *child,
1213 struct ex_phy *parent_phy,
1214 struct ex_phy *child_phy)
1215{
James Bottomley2908d772006-08-29 09:22:51 -05001216 static const char *ex_type[] = {
1217 [EDGE_DEV] = "edge",
1218 [FANOUT_DEV] = "fanout",
1219 };
1220 struct domain_device *parent = child->parent;
1221
Dan Williamsd214d812012-01-16 11:56:50 -08001222 sas_printk("%s ex %016llx phy 0x%x <--> %s ex %016llx "
1223 "phy 0x%x has %c:%c routing link!\n",
James Bottomley2908d772006-08-29 09:22:51 -05001224
1225 ex_type[parent->dev_type],
1226 SAS_ADDR(parent->sas_addr),
1227 parent_phy->phy_id,
1228
1229 ex_type[child->dev_type],
1230 SAS_ADDR(child->sas_addr),
1231 child_phy->phy_id,
1232
Dan Williamsd214d812012-01-16 11:56:50 -08001233 sas_route_char(parent, parent_phy),
1234 sas_route_char(child, child_phy));
James Bottomley2908d772006-08-29 09:22:51 -05001235}
1236
1237static int sas_check_eeds(struct domain_device *child,
1238 struct ex_phy *parent_phy,
1239 struct ex_phy *child_phy)
1240{
1241 int res = 0;
1242 struct domain_device *parent = child->parent;
1243
1244 if (SAS_ADDR(parent->port->disc.fanout_sas_addr) != 0) {
1245 res = -ENODEV;
1246 SAS_DPRINTK("edge ex %016llx phy S:0x%x <--> edge ex %016llx "
1247 "phy S:0x%x, while there is a fanout ex %016llx\n",
1248 SAS_ADDR(parent->sas_addr),
1249 parent_phy->phy_id,
1250 SAS_ADDR(child->sas_addr),
1251 child_phy->phy_id,
1252 SAS_ADDR(parent->port->disc.fanout_sas_addr));
1253 } else if (SAS_ADDR(parent->port->disc.eeds_a) == 0) {
1254 memcpy(parent->port->disc.eeds_a, parent->sas_addr,
1255 SAS_ADDR_SIZE);
1256 memcpy(parent->port->disc.eeds_b, child->sas_addr,
1257 SAS_ADDR_SIZE);
1258 } else if (((SAS_ADDR(parent->port->disc.eeds_a) ==
1259 SAS_ADDR(parent->sas_addr)) ||
1260 (SAS_ADDR(parent->port->disc.eeds_a) ==
1261 SAS_ADDR(child->sas_addr)))
1262 &&
1263 ((SAS_ADDR(parent->port->disc.eeds_b) ==
1264 SAS_ADDR(parent->sas_addr)) ||
1265 (SAS_ADDR(parent->port->disc.eeds_b) ==
1266 SAS_ADDR(child->sas_addr))))
1267 ;
1268 else {
1269 res = -ENODEV;
1270 SAS_DPRINTK("edge ex %016llx phy 0x%x <--> edge ex %016llx "
1271 "phy 0x%x link forms a third EEDS!\n",
1272 SAS_ADDR(parent->sas_addr),
1273 parent_phy->phy_id,
1274 SAS_ADDR(child->sas_addr),
1275 child_phy->phy_id);
1276 }
1277
1278 return res;
1279}
1280
1281/* Here we spill over 80 columns. It is intentional.
1282 */
1283static int sas_check_parent_topology(struct domain_device *child)
1284{
1285 struct expander_device *child_ex = &child->ex_dev;
1286 struct expander_device *parent_ex;
1287 int i;
1288 int res = 0;
1289
1290 if (!child->parent)
1291 return 0;
1292
1293 if (child->parent->dev_type != EDGE_DEV &&
1294 child->parent->dev_type != FANOUT_DEV)
1295 return 0;
1296
1297 parent_ex = &child->parent->ex_dev;
1298
1299 for (i = 0; i < parent_ex->num_phys; i++) {
1300 struct ex_phy *parent_phy = &parent_ex->ex_phy[i];
1301 struct ex_phy *child_phy;
1302
1303 if (parent_phy->phy_state == PHY_VACANT ||
1304 parent_phy->phy_state == PHY_NOT_PRESENT)
1305 continue;
1306
1307 if (SAS_ADDR(parent_phy->attached_sas_addr) != SAS_ADDR(child->sas_addr))
1308 continue;
1309
1310 child_phy = &child_ex->ex_phy[parent_phy->attached_phy_id];
1311
1312 switch (child->parent->dev_type) {
1313 case EDGE_DEV:
1314 if (child->dev_type == FANOUT_DEV) {
1315 if (parent_phy->routing_attr != SUBTRACTIVE_ROUTING ||
1316 child_phy->routing_attr != TABLE_ROUTING) {
1317 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1318 res = -ENODEV;
1319 }
1320 } else if (parent_phy->routing_attr == SUBTRACTIVE_ROUTING) {
1321 if (child_phy->routing_attr == SUBTRACTIVE_ROUTING) {
1322 res = sas_check_eeds(child, parent_phy, child_phy);
1323 } else if (child_phy->routing_attr != TABLE_ROUTING) {
1324 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1325 res = -ENODEV;
1326 }
Luben Tuikovffaac8f2011-09-22 09:41:36 -07001327 } else if (parent_phy->routing_attr == TABLE_ROUTING) {
1328 if (child_phy->routing_attr == SUBTRACTIVE_ROUTING ||
1329 (child_phy->routing_attr == TABLE_ROUTING &&
1330 child_ex->t2t_supp && parent_ex->t2t_supp)) {
1331 /* All good */;
1332 } else {
1333 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1334 res = -ENODEV;
1335 }
James Bottomley2908d772006-08-29 09:22:51 -05001336 }
1337 break;
1338 case FANOUT_DEV:
1339 if (parent_phy->routing_attr != TABLE_ROUTING ||
1340 child_phy->routing_attr != SUBTRACTIVE_ROUTING) {
1341 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1342 res = -ENODEV;
1343 }
1344 break;
1345 default:
1346 break;
1347 }
1348 }
1349
1350 return res;
1351}
1352
1353#define RRI_REQ_SIZE 16
1354#define RRI_RESP_SIZE 44
1355
1356static int sas_configure_present(struct domain_device *dev, int phy_id,
1357 u8 *sas_addr, int *index, int *present)
1358{
1359 int i, res = 0;
1360 struct expander_device *ex = &dev->ex_dev;
1361 struct ex_phy *phy = &ex->ex_phy[phy_id];
1362 u8 *rri_req;
1363 u8 *rri_resp;
1364
1365 *present = 0;
1366 *index = 0;
1367
1368 rri_req = alloc_smp_req(RRI_REQ_SIZE);
1369 if (!rri_req)
1370 return -ENOMEM;
1371
1372 rri_resp = alloc_smp_resp(RRI_RESP_SIZE);
1373 if (!rri_resp) {
1374 kfree(rri_req);
1375 return -ENOMEM;
1376 }
1377
1378 rri_req[1] = SMP_REPORT_ROUTE_INFO;
1379 rri_req[9] = phy_id;
1380
1381 for (i = 0; i < ex->max_route_indexes ; i++) {
1382 *(__be16 *)(rri_req+6) = cpu_to_be16(i);
1383 res = smp_execute_task(dev, rri_req, RRI_REQ_SIZE, rri_resp,
1384 RRI_RESP_SIZE);
1385 if (res)
1386 goto out;
1387 res = rri_resp[2];
1388 if (res == SMP_RESP_NO_INDEX) {
1389 SAS_DPRINTK("overflow of indexes: dev %016llx "
1390 "phy 0x%x index 0x%x\n",
1391 SAS_ADDR(dev->sas_addr), phy_id, i);
1392 goto out;
1393 } else if (res != SMP_RESP_FUNC_ACC) {
1394 SAS_DPRINTK("%s: dev %016llx phy 0x%x index 0x%x "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001395 "result 0x%x\n", __func__,
James Bottomley2908d772006-08-29 09:22:51 -05001396 SAS_ADDR(dev->sas_addr), phy_id, i, res);
1397 goto out;
1398 }
1399 if (SAS_ADDR(sas_addr) != 0) {
1400 if (SAS_ADDR(rri_resp+16) == SAS_ADDR(sas_addr)) {
1401 *index = i;
1402 if ((rri_resp[12] & 0x80) == 0x80)
1403 *present = 0;
1404 else
1405 *present = 1;
1406 goto out;
1407 } else if (SAS_ADDR(rri_resp+16) == 0) {
1408 *index = i;
1409 *present = 0;
1410 goto out;
1411 }
1412 } else if (SAS_ADDR(rri_resp+16) == 0 &&
1413 phy->last_da_index < i) {
1414 phy->last_da_index = i;
1415 *index = i;
1416 *present = 0;
1417 goto out;
1418 }
1419 }
1420 res = -1;
1421out:
1422 kfree(rri_req);
1423 kfree(rri_resp);
1424 return res;
1425}
1426
1427#define CRI_REQ_SIZE 44
1428#define CRI_RESP_SIZE 8
1429
1430static int sas_configure_set(struct domain_device *dev, int phy_id,
1431 u8 *sas_addr, int index, int include)
1432{
1433 int res;
1434 u8 *cri_req;
1435 u8 *cri_resp;
1436
1437 cri_req = alloc_smp_req(CRI_REQ_SIZE);
1438 if (!cri_req)
1439 return -ENOMEM;
1440
1441 cri_resp = alloc_smp_resp(CRI_RESP_SIZE);
1442 if (!cri_resp) {
1443 kfree(cri_req);
1444 return -ENOMEM;
1445 }
1446
1447 cri_req[1] = SMP_CONF_ROUTE_INFO;
1448 *(__be16 *)(cri_req+6) = cpu_to_be16(index);
1449 cri_req[9] = phy_id;
1450 if (SAS_ADDR(sas_addr) == 0 || !include)
1451 cri_req[12] |= 0x80;
1452 memcpy(cri_req+16, sas_addr, SAS_ADDR_SIZE);
1453
1454 res = smp_execute_task(dev, cri_req, CRI_REQ_SIZE, cri_resp,
1455 CRI_RESP_SIZE);
1456 if (res)
1457 goto out;
1458 res = cri_resp[2];
1459 if (res == SMP_RESP_NO_INDEX) {
1460 SAS_DPRINTK("overflow of indexes: dev %016llx phy 0x%x "
1461 "index 0x%x\n",
1462 SAS_ADDR(dev->sas_addr), phy_id, index);
1463 }
1464out:
1465 kfree(cri_req);
1466 kfree(cri_resp);
1467 return res;
1468}
1469
1470static int sas_configure_phy(struct domain_device *dev, int phy_id,
1471 u8 *sas_addr, int include)
1472{
1473 int index;
1474 int present;
1475 int res;
1476
1477 res = sas_configure_present(dev, phy_id, sas_addr, &index, &present);
1478 if (res)
1479 return res;
1480 if (include ^ present)
1481 return sas_configure_set(dev, phy_id, sas_addr, index,include);
1482
1483 return res;
1484}
1485
1486/**
1487 * sas_configure_parent -- configure routing table of parent
1488 * parent: parent expander
1489 * child: child expander
1490 * sas_addr: SAS port identifier of device directly attached to child
1491 */
1492static int sas_configure_parent(struct domain_device *parent,
1493 struct domain_device *child,
1494 u8 *sas_addr, int include)
1495{
1496 struct expander_device *ex_parent = &parent->ex_dev;
1497 int res = 0;
1498 int i;
1499
1500 if (parent->parent) {
1501 res = sas_configure_parent(parent->parent, parent, sas_addr,
1502 include);
1503 if (res)
1504 return res;
1505 }
1506
1507 if (ex_parent->conf_route_table == 0) {
1508 SAS_DPRINTK("ex %016llx has self-configuring routing table\n",
1509 SAS_ADDR(parent->sas_addr));
1510 return 0;
1511 }
1512
1513 for (i = 0; i < ex_parent->num_phys; i++) {
1514 struct ex_phy *phy = &ex_parent->ex_phy[i];
1515
1516 if ((phy->routing_attr == TABLE_ROUTING) &&
1517 (SAS_ADDR(phy->attached_sas_addr) ==
1518 SAS_ADDR(child->sas_addr))) {
1519 res = sas_configure_phy(parent, i, sas_addr, include);
1520 if (res)
1521 return res;
1522 }
1523 }
1524
1525 return res;
1526}
1527
1528/**
1529 * sas_configure_routing -- configure routing
1530 * dev: expander device
1531 * sas_addr: port identifier of device directly attached to the expander device
1532 */
1533static int sas_configure_routing(struct domain_device *dev, u8 *sas_addr)
1534{
1535 if (dev->parent)
1536 return sas_configure_parent(dev->parent, dev, sas_addr, 1);
1537 return 0;
1538}
1539
1540static int sas_disable_routing(struct domain_device *dev, u8 *sas_addr)
1541{
1542 if (dev->parent)
1543 return sas_configure_parent(dev->parent, dev, sas_addr, 0);
1544 return 0;
1545}
1546
James Bottomley2908d772006-08-29 09:22:51 -05001547/**
1548 * sas_discover_expander -- expander discovery
1549 * @ex: pointer to expander domain device
1550 *
1551 * See comment in sas_discover_sata().
1552 */
1553static int sas_discover_expander(struct domain_device *dev)
1554{
1555 int res;
1556
1557 res = sas_notify_lldd_dev_found(dev);
1558 if (res)
1559 return res;
1560
1561 res = sas_ex_general(dev);
1562 if (res)
1563 goto out_err;
1564 res = sas_ex_manuf_info(dev);
1565 if (res)
1566 goto out_err;
1567
1568 res = sas_expander_discover(dev);
1569 if (res) {
1570 SAS_DPRINTK("expander %016llx discovery failed(0x%x)\n",
1571 SAS_ADDR(dev->sas_addr), res);
1572 goto out_err;
1573 }
1574
1575 sas_check_ex_subtractive_boundary(dev);
1576 res = sas_check_parent_topology(dev);
1577 if (res)
1578 goto out_err;
1579 return 0;
1580out_err:
1581 sas_notify_lldd_dev_gone(dev);
1582 return res;
1583}
1584
1585static int sas_ex_level_discovery(struct asd_sas_port *port, const int level)
1586{
1587 int res = 0;
1588 struct domain_device *dev;
1589
1590 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
1591 if (dev->dev_type == EDGE_DEV ||
1592 dev->dev_type == FANOUT_DEV) {
1593 struct sas_expander_device *ex =
1594 rphy_to_expander_device(dev->rphy);
1595
1596 if (level == ex->level)
1597 res = sas_ex_discover_devices(dev, -1);
1598 else if (level > 0)
1599 res = sas_ex_discover_devices(port->port_dev, -1);
1600
1601 }
1602 }
1603
1604 return res;
1605}
1606
1607static int sas_ex_bfs_disc(struct asd_sas_port *port)
1608{
1609 int res;
1610 int level;
1611
1612 do {
1613 level = port->disc.max_level;
1614 res = sas_ex_level_discovery(port, level);
1615 mb();
1616 } while (level < port->disc.max_level);
1617
1618 return res;
1619}
1620
1621int sas_discover_root_expander(struct domain_device *dev)
1622{
1623 int res;
1624 struct sas_expander_device *ex = rphy_to_expander_device(dev->rphy);
1625
Darrick J. Wongbf451202007-01-11 14:14:52 -08001626 res = sas_rphy_add(dev->rphy);
1627 if (res)
1628 goto out_err;
James Bottomley2908d772006-08-29 09:22:51 -05001629
1630 ex->level = dev->port->disc.max_level; /* 0 */
1631 res = sas_discover_expander(dev);
Darrick J. Wongbf451202007-01-11 14:14:52 -08001632 if (res)
1633 goto out_err2;
James Bottomley2908d772006-08-29 09:22:51 -05001634
Darrick J. Wongbf451202007-01-11 14:14:52 -08001635 sas_ex_bfs_disc(dev->port);
1636
1637 return res;
1638
1639out_err2:
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001640 sas_rphy_remove(dev->rphy);
Darrick J. Wongbf451202007-01-11 14:14:52 -08001641out_err:
James Bottomley2908d772006-08-29 09:22:51 -05001642 return res;
1643}
1644
1645/* ---------- Domain revalidation ---------- */
1646
1647static int sas_get_phy_discover(struct domain_device *dev,
1648 int phy_id, struct smp_resp *disc_resp)
1649{
1650 int res;
1651 u8 *disc_req;
1652
1653 disc_req = alloc_smp_req(DISCOVER_REQ_SIZE);
1654 if (!disc_req)
1655 return -ENOMEM;
1656
1657 disc_req[1] = SMP_DISCOVER;
1658 disc_req[9] = phy_id;
1659
1660 res = smp_execute_task(dev, disc_req, DISCOVER_REQ_SIZE,
1661 disc_resp, DISCOVER_RESP_SIZE);
1662 if (res)
1663 goto out;
1664 else if (disc_resp->result != SMP_RESP_FUNC_ACC) {
1665 res = disc_resp->result;
1666 goto out;
1667 }
1668out:
1669 kfree(disc_req);
1670 return res;
1671}
1672
1673static int sas_get_phy_change_count(struct domain_device *dev,
1674 int phy_id, int *pcc)
1675{
1676 int res;
1677 struct smp_resp *disc_resp;
1678
1679 disc_resp = alloc_smp_resp(DISCOVER_RESP_SIZE);
1680 if (!disc_resp)
1681 return -ENOMEM;
1682
1683 res = sas_get_phy_discover(dev, phy_id, disc_resp);
1684 if (!res)
1685 *pcc = disc_resp->disc.change_count;
1686
1687 kfree(disc_resp);
1688 return res;
1689}
1690
Dan Williams36a39942011-11-17 17:59:54 -08001691int sas_get_phy_attached_sas_addr(struct domain_device *dev, int phy_id,
1692 u8 *attached_sas_addr)
James Bottomley2908d772006-08-29 09:22:51 -05001693{
1694 int res;
1695 struct smp_resp *disc_resp;
1696 struct discover_resp *dr;
1697
1698 disc_resp = alloc_smp_resp(DISCOVER_RESP_SIZE);
1699 if (!disc_resp)
1700 return -ENOMEM;
1701 dr = &disc_resp->disc;
1702
1703 res = sas_get_phy_discover(dev, phy_id, disc_resp);
1704 if (!res) {
1705 memcpy(attached_sas_addr,disc_resp->disc.attached_sas_addr,8);
1706 if (dr->attached_dev_type == 0)
1707 memset(attached_sas_addr, 0, 8);
1708 }
1709 kfree(disc_resp);
1710 return res;
1711}
1712
1713static int sas_find_bcast_phy(struct domain_device *dev, int *phy_id,
Tom Peng19252de2009-07-17 16:02:04 +08001714 int from_phy, bool update)
James Bottomley2908d772006-08-29 09:22:51 -05001715{
1716 struct expander_device *ex = &dev->ex_dev;
1717 int res = 0;
1718 int i;
1719
1720 for (i = from_phy; i < ex->num_phys; i++) {
1721 int phy_change_count = 0;
1722
1723 res = sas_get_phy_change_count(dev, i, &phy_change_count);
1724 if (res)
1725 goto out;
1726 else if (phy_change_count != ex->ex_phy[i].phy_change_count) {
Tom Peng19252de2009-07-17 16:02:04 +08001727 if (update)
1728 ex->ex_phy[i].phy_change_count =
1729 phy_change_count;
James Bottomley2908d772006-08-29 09:22:51 -05001730 *phy_id = i;
1731 return 0;
1732 }
1733 }
1734out:
1735 return res;
1736}
1737
1738static int sas_get_ex_change_count(struct domain_device *dev, int *ecc)
1739{
1740 int res;
1741 u8 *rg_req;
1742 struct smp_resp *rg_resp;
1743
1744 rg_req = alloc_smp_req(RG_REQ_SIZE);
1745 if (!rg_req)
1746 return -ENOMEM;
1747
1748 rg_resp = alloc_smp_resp(RG_RESP_SIZE);
1749 if (!rg_resp) {
1750 kfree(rg_req);
1751 return -ENOMEM;
1752 }
1753
1754 rg_req[1] = SMP_REPORT_GENERAL;
1755
1756 res = smp_execute_task(dev, rg_req, RG_REQ_SIZE, rg_resp,
1757 RG_RESP_SIZE);
1758 if (res)
1759 goto out;
1760 if (rg_resp->result != SMP_RESP_FUNC_ACC) {
1761 res = rg_resp->result;
1762 goto out;
1763 }
1764
1765 *ecc = be16_to_cpu(rg_resp->rg.change_count);
1766out:
1767 kfree(rg_resp);
1768 kfree(rg_req);
1769 return res;
1770}
Tom Peng19252de2009-07-17 16:02:04 +08001771/**
1772 * sas_find_bcast_dev - find the device issue BROADCAST(CHANGE).
1773 * @dev:domain device to be detect.
1774 * @src_dev: the device which originated BROADCAST(CHANGE).
1775 *
1776 * Add self-configuration expander suport. Suppose two expander cascading,
1777 * when the first level expander is self-configuring, hotplug the disks in
1778 * second level expander, BROADCAST(CHANGE) will not only be originated
1779 * in the second level expander, but also be originated in the first level
1780 * expander (see SAS protocol SAS 2r-14, 7.11 for detail), it is to say,
1781 * expander changed count in two level expanders will all increment at least
1782 * once, but the phy which chang count has changed is the source device which
1783 * we concerned.
1784 */
James Bottomley2908d772006-08-29 09:22:51 -05001785
1786static int sas_find_bcast_dev(struct domain_device *dev,
1787 struct domain_device **src_dev)
1788{
1789 struct expander_device *ex = &dev->ex_dev;
1790 int ex_change_count = -1;
Tom Peng19252de2009-07-17 16:02:04 +08001791 int phy_id = -1;
James Bottomley2908d772006-08-29 09:22:51 -05001792 int res;
Tom Peng19252de2009-07-17 16:02:04 +08001793 struct domain_device *ch;
James Bottomley2908d772006-08-29 09:22:51 -05001794
1795 res = sas_get_ex_change_count(dev, &ex_change_count);
1796 if (res)
1797 goto out;
Tom Peng19252de2009-07-17 16:02:04 +08001798 if (ex_change_count != -1 && ex_change_count != ex->ex_change_count) {
1799 /* Just detect if this expander phys phy change count changed,
1800 * in order to determine if this expander originate BROADCAST,
1801 * and do not update phy change count field in our structure.
1802 */
1803 res = sas_find_bcast_phy(dev, &phy_id, 0, false);
1804 if (phy_id != -1) {
1805 *src_dev = dev;
1806 ex->ex_change_count = ex_change_count;
1807 SAS_DPRINTK("Expander phy change count has changed\n");
1808 return res;
1809 } else
1810 SAS_DPRINTK("Expander phys DID NOT change\n");
1811 }
1812 list_for_each_entry(ch, &ex->children, siblings) {
1813 if (ch->dev_type == EDGE_DEV || ch->dev_type == FANOUT_DEV) {
1814 res = sas_find_bcast_dev(ch, src_dev);
Mark Salyzyn24926da2011-09-01 06:11:17 -07001815 if (*src_dev)
Tom Peng19252de2009-07-17 16:02:04 +08001816 return res;
James Bottomley2908d772006-08-29 09:22:51 -05001817 }
1818 }
1819out:
1820 return res;
1821}
1822
Dan Williams1a34c062011-09-21 22:05:34 -07001823static void sas_unregister_ex_tree(struct asd_sas_port *port, struct domain_device *dev)
James Bottomley2908d772006-08-29 09:22:51 -05001824{
1825 struct expander_device *ex = &dev->ex_dev;
1826 struct domain_device *child, *n;
1827
1828 list_for_each_entry_safe(child, n, &ex->children, siblings) {
Dan Williamse1399422012-01-07 08:52:39 +00001829 set_bit(SAS_DEV_GONE, &child->state);
James Bottomley2908d772006-08-29 09:22:51 -05001830 if (child->dev_type == EDGE_DEV ||
1831 child->dev_type == FANOUT_DEV)
Dan Williams1a34c062011-09-21 22:05:34 -07001832 sas_unregister_ex_tree(port, child);
James Bottomley2908d772006-08-29 09:22:51 -05001833 else
Dan Williams1a34c062011-09-21 22:05:34 -07001834 sas_unregister_dev(port, child);
James Bottomley2908d772006-08-29 09:22:51 -05001835 }
Dan Williams1a34c062011-09-21 22:05:34 -07001836 sas_unregister_dev(port, dev);
James Bottomley2908d772006-08-29 09:22:51 -05001837}
1838
1839static void sas_unregister_devs_sas_addr(struct domain_device *parent,
Tom Peng19252de2009-07-17 16:02:04 +08001840 int phy_id, bool last)
James Bottomley2908d772006-08-29 09:22:51 -05001841{
1842 struct expander_device *ex_dev = &parent->ex_dev;
1843 struct ex_phy *phy = &ex_dev->ex_phy[phy_id];
Dan Williamsf41a0c42011-12-21 21:33:17 -08001844 struct domain_device *child, *n, *found = NULL;
Tom Peng19252de2009-07-17 16:02:04 +08001845 if (last) {
1846 list_for_each_entry_safe(child, n,
1847 &ex_dev->children, siblings) {
1848 if (SAS_ADDR(child->sas_addr) ==
1849 SAS_ADDR(phy->attached_sas_addr)) {
Dan Williamse1399422012-01-07 08:52:39 +00001850 set_bit(SAS_DEV_GONE, &child->state);
Tom Peng19252de2009-07-17 16:02:04 +08001851 if (child->dev_type == EDGE_DEV ||
1852 child->dev_type == FANOUT_DEV)
Dan Williams1a34c062011-09-21 22:05:34 -07001853 sas_unregister_ex_tree(parent->port, child);
Tom Peng19252de2009-07-17 16:02:04 +08001854 else
Dan Williams1a34c062011-09-21 22:05:34 -07001855 sas_unregister_dev(parent->port, child);
Dan Williamsf41a0c42011-12-21 21:33:17 -08001856 found = child;
Tom Peng19252de2009-07-17 16:02:04 +08001857 break;
1858 }
James Bottomley2908d772006-08-29 09:22:51 -05001859 }
Tom Peng19252de2009-07-17 16:02:04 +08001860 sas_disable_routing(parent, phy->attached_sas_addr);
James Bottomley2908d772006-08-29 09:22:51 -05001861 }
James Bottomley2908d772006-08-29 09:22:51 -05001862 memset(phy->attached_sas_addr, 0, SAS_ADDR_SIZE);
Mark Salyzyna73914c2011-09-22 08:32:23 -07001863 if (phy->port) {
1864 sas_port_delete_phy(phy->port, phy->phy);
Dan Williamsf41a0c42011-12-21 21:33:17 -08001865 sas_device_set_phy(found, phy->port);
Mark Salyzyna73914c2011-09-22 08:32:23 -07001866 if (phy->port->num_phys == 0)
1867 sas_port_delete(phy->port);
1868 phy->port = NULL;
1869 }
James Bottomley2908d772006-08-29 09:22:51 -05001870}
1871
1872static int sas_discover_bfs_by_root_level(struct domain_device *root,
1873 const int level)
1874{
1875 struct expander_device *ex_root = &root->ex_dev;
1876 struct domain_device *child;
1877 int res = 0;
1878
1879 list_for_each_entry(child, &ex_root->children, siblings) {
1880 if (child->dev_type == EDGE_DEV ||
1881 child->dev_type == FANOUT_DEV) {
1882 struct sas_expander_device *ex =
1883 rphy_to_expander_device(child->rphy);
1884
1885 if (level > ex->level)
1886 res = sas_discover_bfs_by_root_level(child,
1887 level);
1888 else if (level == ex->level)
1889 res = sas_ex_discover_devices(child, -1);
1890 }
1891 }
1892 return res;
1893}
1894
1895static int sas_discover_bfs_by_root(struct domain_device *dev)
1896{
1897 int res;
1898 struct sas_expander_device *ex = rphy_to_expander_device(dev->rphy);
1899 int level = ex->level+1;
1900
1901 res = sas_ex_discover_devices(dev, -1);
1902 if (res)
1903 goto out;
1904 do {
1905 res = sas_discover_bfs_by_root_level(dev, level);
1906 mb();
1907 level += 1;
1908 } while (level <= dev->port->disc.max_level);
1909out:
1910 return res;
1911}
1912
1913static int sas_discover_new(struct domain_device *dev, int phy_id)
1914{
1915 struct ex_phy *ex_phy = &dev->ex_dev.ex_phy[phy_id];
1916 struct domain_device *child;
Tom Peng19252de2009-07-17 16:02:04 +08001917 bool found = false;
1918 int res, i;
James Bottomley2908d772006-08-29 09:22:51 -05001919
1920 SAS_DPRINTK("ex %016llx phy%d new device attached\n",
1921 SAS_ADDR(dev->sas_addr), phy_id);
1922 res = sas_ex_phy_discover(dev, phy_id);
1923 if (res)
1924 goto out;
Tom Peng19252de2009-07-17 16:02:04 +08001925 /* to support the wide port inserted */
1926 for (i = 0; i < dev->ex_dev.num_phys; i++) {
1927 struct ex_phy *ex_phy_temp = &dev->ex_dev.ex_phy[i];
1928 if (i == phy_id)
1929 continue;
1930 if (SAS_ADDR(ex_phy_temp->attached_sas_addr) ==
1931 SAS_ADDR(ex_phy->attached_sas_addr)) {
1932 found = true;
1933 break;
1934 }
1935 }
1936 if (found) {
1937 sas_ex_join_wide_port(dev, phy_id);
1938 return 0;
1939 }
James Bottomley2908d772006-08-29 09:22:51 -05001940 res = sas_ex_discover_devices(dev, phy_id);
Tom Peng19252de2009-07-17 16:02:04 +08001941 if (!res)
James Bottomley2908d772006-08-29 09:22:51 -05001942 goto out;
1943 list_for_each_entry(child, &dev->ex_dev.children, siblings) {
1944 if (SAS_ADDR(child->sas_addr) ==
1945 SAS_ADDR(ex_phy->attached_sas_addr)) {
1946 if (child->dev_type == EDGE_DEV ||
1947 child->dev_type == FANOUT_DEV)
1948 res = sas_discover_bfs_by_root(child);
1949 break;
1950 }
1951 }
1952out:
1953 return res;
1954}
1955
Tom Peng19252de2009-07-17 16:02:04 +08001956static int sas_rediscover_dev(struct domain_device *dev, int phy_id, bool last)
James Bottomley2908d772006-08-29 09:22:51 -05001957{
1958 struct expander_device *ex = &dev->ex_dev;
1959 struct ex_phy *phy = &ex->ex_phy[phy_id];
1960 u8 attached_sas_addr[8];
1961 int res;
1962
1963 res = sas_get_phy_attached_sas_addr(dev, phy_id, attached_sas_addr);
1964 switch (res) {
1965 case SMP_RESP_NO_PHY:
1966 phy->phy_state = PHY_NOT_PRESENT;
Tom Peng19252de2009-07-17 16:02:04 +08001967 sas_unregister_devs_sas_addr(dev, phy_id, last);
James Bottomley2908d772006-08-29 09:22:51 -05001968 goto out; break;
1969 case SMP_RESP_PHY_VACANT:
1970 phy->phy_state = PHY_VACANT;
Tom Peng19252de2009-07-17 16:02:04 +08001971 sas_unregister_devs_sas_addr(dev, phy_id, last);
James Bottomley2908d772006-08-29 09:22:51 -05001972 goto out; break;
1973 case SMP_RESP_FUNC_ACC:
1974 break;
1975 }
1976
1977 if (SAS_ADDR(attached_sas_addr) == 0) {
1978 phy->phy_state = PHY_EMPTY;
Tom Peng19252de2009-07-17 16:02:04 +08001979 sas_unregister_devs_sas_addr(dev, phy_id, last);
James Bottomley2908d772006-08-29 09:22:51 -05001980 } else if (SAS_ADDR(attached_sas_addr) ==
1981 SAS_ADDR(phy->attached_sas_addr)) {
1982 SAS_DPRINTK("ex %016llx phy 0x%x broadcast flutter\n",
1983 SAS_ADDR(dev->sas_addr), phy_id);
James Bottomleya01e70e2006-09-06 19:28:07 -05001984 sas_ex_phy_discover(dev, phy_id);
James Bottomley2908d772006-08-29 09:22:51 -05001985 } else
1986 res = sas_discover_new(dev, phy_id);
1987out:
1988 return res;
1989}
1990
Tom Peng19252de2009-07-17 16:02:04 +08001991/**
1992 * sas_rediscover - revalidate the domain.
1993 * @dev:domain device to be detect.
1994 * @phy_id: the phy id will be detected.
1995 *
1996 * NOTE: this process _must_ quit (return) as soon as any connection
1997 * errors are encountered. Connection recovery is done elsewhere.
1998 * Discover process only interrogates devices in order to discover the
1999 * domain.For plugging out, we un-register the device only when it is
2000 * the last phy in the port, for other phys in this port, we just delete it
2001 * from the port.For inserting, we do discovery when it is the
2002 * first phy,for other phys in this port, we add it to the port to
2003 * forming the wide-port.
2004 */
James Bottomley2908d772006-08-29 09:22:51 -05002005static int sas_rediscover(struct domain_device *dev, const int phy_id)
2006{
2007 struct expander_device *ex = &dev->ex_dev;
2008 struct ex_phy *changed_phy = &ex->ex_phy[phy_id];
2009 int res = 0;
2010 int i;
Tom Peng19252de2009-07-17 16:02:04 +08002011 bool last = true; /* is this the last phy of the port */
James Bottomley2908d772006-08-29 09:22:51 -05002012
2013 SAS_DPRINTK("ex %016llx phy%d originated BROADCAST(CHANGE)\n",
2014 SAS_ADDR(dev->sas_addr), phy_id);
2015
2016 if (SAS_ADDR(changed_phy->attached_sas_addr) != 0) {
2017 for (i = 0; i < ex->num_phys; i++) {
2018 struct ex_phy *phy = &ex->ex_phy[i];
2019
2020 if (i == phy_id)
2021 continue;
2022 if (SAS_ADDR(phy->attached_sas_addr) ==
2023 SAS_ADDR(changed_phy->attached_sas_addr)) {
2024 SAS_DPRINTK("phy%d part of wide port with "
2025 "phy%d\n", phy_id, i);
Tom Peng19252de2009-07-17 16:02:04 +08002026 last = false;
2027 break;
James Bottomley2908d772006-08-29 09:22:51 -05002028 }
2029 }
Tom Peng19252de2009-07-17 16:02:04 +08002030 res = sas_rediscover_dev(dev, phy_id, last);
James Bottomley2908d772006-08-29 09:22:51 -05002031 } else
2032 res = sas_discover_new(dev, phy_id);
James Bottomley2908d772006-08-29 09:22:51 -05002033 return res;
2034}
2035
2036/**
2037 * sas_revalidate_domain -- revalidate the domain
2038 * @port: port to the domain of interest
2039 *
2040 * NOTE: this process _must_ quit (return) as soon as any connection
2041 * errors are encountered. Connection recovery is done elsewhere.
2042 * Discover process only interrogates devices in order to discover the
2043 * domain.
2044 */
2045int sas_ex_revalidate_domain(struct domain_device *port_dev)
2046{
2047 int res;
2048 struct domain_device *dev = NULL;
2049
2050 res = sas_find_bcast_dev(port_dev, &dev);
2051 if (res)
2052 goto out;
2053 if (dev) {
2054 struct expander_device *ex = &dev->ex_dev;
2055 int i = 0, phy_id;
2056
2057 do {
2058 phy_id = -1;
Tom Peng19252de2009-07-17 16:02:04 +08002059 res = sas_find_bcast_phy(dev, &phy_id, i, true);
James Bottomley2908d772006-08-29 09:22:51 -05002060 if (phy_id == -1)
2061 break;
2062 res = sas_rediscover(dev, phy_id);
2063 i = phy_id + 1;
2064 } while (i < ex->num_phys);
2065 }
2066out:
2067 return res;
2068}
2069
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002070int sas_smp_handler(struct Scsi_Host *shost, struct sas_rphy *rphy,
2071 struct request *req)
2072{
2073 struct domain_device *dev;
Darrick J. Wong2cd614c2007-07-24 09:33:49 -07002074 int ret, type;
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002075 struct request *rsp = req->next_rq;
2076
2077 if (!rsp) {
2078 printk("%s: space for a smp response is missing\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002079 __func__);
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002080 return -EINVAL;
2081 }
2082
Darrick J. Wong2cd614c2007-07-24 09:33:49 -07002083 /* no rphy means no smp target support (ie aic94xx host) */
James Bottomleyb98e66f2007-12-28 16:35:17 -06002084 if (!rphy)
2085 return sas_smp_host_handler(shost, req, rsp);
2086
Darrick J. Wong2cd614c2007-07-24 09:33:49 -07002087 type = rphy->identify.device_type;
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002088
2089 if (type != SAS_EDGE_EXPANDER_DEVICE &&
2090 type != SAS_FANOUT_EXPANDER_DEVICE) {
2091 printk("%s: can we send a smp request to a device?\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002092 __func__);
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002093 return -EINVAL;
2094 }
2095
2096 dev = sas_find_dev_by_rphy(rphy);
2097 if (!dev) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002098 printk("%s: fail to find a domain_device?\n", __func__);
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002099 return -EINVAL;
2100 }
2101
2102 /* do we need to support multiple segments? */
2103 if (req->bio->bi_vcnt > 1 || rsp->bio->bi_vcnt > 1) {
2104 printk("%s: multiple segments req %u %u, rsp %u %u\n",
Tejun Heob0790412009-05-07 22:24:42 +09002105 __func__, req->bio->bi_vcnt, blk_rq_bytes(req),
2106 rsp->bio->bi_vcnt, blk_rq_bytes(rsp));
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002107 return -EINVAL;
2108 }
2109
Tejun Heob0790412009-05-07 22:24:42 +09002110 ret = smp_execute_task(dev, bio_data(req->bio), blk_rq_bytes(req),
2111 bio_data(rsp->bio), blk_rq_bytes(rsp));
James Bottomley2d4b63e2007-12-29 11:49:53 -06002112 if (ret > 0) {
2113 /* positive number is the untransferred residual */
Tejun Heoc3a4d782009-05-07 22:24:37 +09002114 rsp->resid_len = ret;
Tejun Heo5f49f632009-05-19 18:33:05 +09002115 req->resid_len = 0;
James Bottomley2d4b63e2007-12-29 11:49:53 -06002116 ret = 0;
Tejun Heo5f49f632009-05-19 18:33:05 +09002117 } else if (ret == 0) {
2118 rsp->resid_len = 0;
2119 req->resid_len = 0;
James Bottomley2d4b63e2007-12-29 11:49:53 -06002120 }
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002121
2122 return ret;
2123}