blob: ee1f9ee995e53adf1becc71ee2ae61b9abf235ad [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);
Jason Yan41b5d3e2018-09-25 10:56:54 +080050 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
James Bottomley2908d772006-08-29 09:22:51 -050051 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
Jason Yan41b5d3e2018-09-25 10:56:54 +080052 complete(&task->slow_task->completion);
53 }
James Bottomley2908d772006-08-29 09:22:51 -050054 spin_unlock_irqrestore(&task->task_state_lock, flags);
James Bottomley2908d772006-08-29 09:22:51 -050055}
56
57static void smp_task_done(struct sas_task *task)
58{
Jason Yan41b5d3e2018-09-25 10:56:54 +080059 del_timer(&task->slow_task->timer);
Dan Williamsf0bf7502012-06-21 23:36:30 -070060 complete(&task->slow_task->completion);
James Bottomley2908d772006-08-29 09:22:51 -050061}
62
63/* Give it some long enough timeout. In seconds. */
64#define SMP_TIMEOUT 10
65
66static int smp_execute_task(struct domain_device *dev, void *req, int req_size,
67 void *resp, int resp_size)
68{
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070069 int res, retry;
70 struct sas_task *task = NULL;
James Bottomley2908d772006-08-29 09:22:51 -050071 struct sas_internal *i =
72 to_sas_internal(dev->port->ha->core.shost->transportt);
73
Jeff Skirvin89d3cf62011-11-16 09:44:13 +000074 mutex_lock(&dev->ex_dev.cmd_mutex);
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070075 for (retry = 0; retry < 3; retry++) {
Dan Williams3a9c5562011-12-21 15:19:56 -080076 if (test_bit(SAS_DEV_GONE, &dev->state)) {
77 res = -ECOMM;
78 break;
79 }
80
Dan Williamsf0bf7502012-06-21 23:36:30 -070081 task = sas_alloc_slow_task(GFP_KERNEL);
Jeff Skirvin89d3cf62011-11-16 09:44:13 +000082 if (!task) {
83 res = -ENOMEM;
84 break;
85 }
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070086 task->dev = dev;
87 task->task_proto = dev->tproto;
88 sg_init_one(&task->smp_task.smp_req, req, req_size);
89 sg_init_one(&task->smp_task.smp_resp, resp, resp_size);
James Bottomley2908d772006-08-29 09:22:51 -050090
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -070091 task->task_done = smp_task_done;
James Bottomley2908d772006-08-29 09:22:51 -050092
Dan Williamsf0bf7502012-06-21 23:36:30 -070093 task->slow_task->timer.data = (unsigned long) task;
94 task->slow_task->timer.function = smp_task_timedout;
95 task->slow_task->timer.expires = jiffies + SMP_TIMEOUT*HZ;
96 add_timer(&task->slow_task->timer);
James Bottomley2908d772006-08-29 09:22:51 -050097
Christoph Hellwig79855d12014-11-05 10:36:28 +010098 res = i->dft->lldd_execute_task(task, GFP_KERNEL);
James Bottomley2908d772006-08-29 09:22:51 -050099
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700100 if (res) {
Dan Williamsf0bf7502012-06-21 23:36:30 -0700101 del_timer(&task->slow_task->timer);
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700102 SAS_DPRINTK("executing SMP task failed:%d\n", res);
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000103 break;
James Bottomley2908d772006-08-29 09:22:51 -0500104 }
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700105
Dan Williamsf0bf7502012-06-21 23:36:30 -0700106 wait_for_completion(&task->slow_task->completion);
James Bottomley32e8ae32007-12-30 12:37:31 -0600107 res = -ECOMM;
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700108 if ((task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
109 SAS_DPRINTK("smp task timed out or aborted\n");
110 i->dft->lldd_abort_task(task);
111 if (!(task->task_state_flags & SAS_TASK_STATE_DONE)) {
112 SAS_DPRINTK("SMP task aborted and not done\n");
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000113 break;
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700114 }
115 }
116 if (task->task_status.resp == SAS_TASK_COMPLETE &&
James Bottomleydf64d3c2010-07-27 15:51:13 -0500117 task->task_status.stat == SAM_STAT_GOOD) {
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700118 res = 0;
119 break;
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000120 }
121 if (task->task_status.resp == SAS_TASK_COMPLETE &&
122 task->task_status.stat == SAS_DATA_UNDERRUN) {
James Bottomley2d4b63e2007-12-29 11:49:53 -0600123 /* no error, but return the number of bytes of
124 * underrun */
125 res = task->task_status.residual;
126 break;
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000127 }
128 if (task->task_status.resp == SAS_TASK_COMPLETE &&
129 task->task_status.stat == SAS_DATA_OVERRUN) {
James Bottomley2d4b63e2007-12-29 11:49:53 -0600130 res = -EMSGSIZE;
131 break;
Dan Williams36a39942011-11-17 17:59:54 -0800132 }
133 if (task->task_status.resp == SAS_TASK_UNDELIVERED &&
134 task->task_status.stat == SAS_DEVICE_UNKNOWN)
135 break;
136 else {
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700137 SAS_DPRINTK("%s: task to dev %016llx response: 0x%x "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700138 "status 0x%x\n", __func__,
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700139 SAS_ADDR(dev->sas_addr),
140 task->task_status.resp,
141 task->task_status.stat);
142 sas_free_task(task);
143 task = NULL;
144 }
James Bottomley2908d772006-08-29 09:22:51 -0500145 }
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000146 mutex_unlock(&dev->ex_dev.cmd_mutex);
147
malahal@us.ibm.com42961ee2006-10-04 17:34:03 -0700148 BUG_ON(retry == 3 && task != NULL);
Jeff Skirvin89d3cf62011-11-16 09:44:13 +0000149 sas_free_task(task);
James Bottomley2908d772006-08-29 09:22:51 -0500150 return res;
151}
152
153/* ---------- Allocations ---------- */
154
155static inline void *alloc_smp_req(int size)
156{
157 u8 *p = kzalloc(size, GFP_KERNEL);
158 if (p)
159 p[0] = SMP_REQUEST;
160 return p;
161}
162
163static inline void *alloc_smp_resp(int size)
164{
165 return kzalloc(size, GFP_KERNEL);
166}
167
Dan Williamsd214d812012-01-16 11:56:50 -0800168static char sas_route_char(struct domain_device *dev, struct ex_phy *phy)
169{
170 switch (phy->routing_attr) {
171 case TABLE_ROUTING:
172 if (dev->ex_dev.t2t_supp)
173 return 'U';
174 else
175 return 'T';
176 case DIRECT_ROUTING:
177 return 'D';
178 case SUBTRACTIVE_ROUTING:
179 return 'S';
180 default:
181 return '?';
182 }
183}
James Bottomley2908d772006-08-29 09:22:51 -0500184
James Bottomleyaa9f8322013-05-07 14:44:06 -0700185static enum sas_device_type to_dev_type(struct discover_resp *dr)
James Bottomley2908d772006-08-29 09:22:51 -0500186{
Dan Williams354cf822012-01-12 17:57:35 -0800187 /* This is detecting a failure to transmit initial dev to host
188 * FIS as described in section J.5 of sas-2 r16
189 */
James Bottomleyaa9f8322013-05-07 14:44:06 -0700190 if (dr->attached_dev_type == SAS_PHY_UNUSED && dr->attached_sata_dev &&
Dan Williams354cf822012-01-12 17:57:35 -0800191 dr->linkrate >= SAS_LINK_RATE_1_5_GBPS)
James Bottomleyaa9f8322013-05-07 14:44:06 -0700192 return SAS_SATA_PENDING;
Dan Williams354cf822012-01-12 17:57:35 -0800193 else
194 return dr->attached_dev_type;
195}
196
197static void sas_set_ex_phy(struct domain_device *dev, int phy_id, void *rsp)
198{
James Bottomleyaa9f8322013-05-07 14:44:06 -0700199 enum sas_device_type dev_type;
Dan Williams354cf822012-01-12 17:57:35 -0800200 enum sas_linkrate linkrate;
201 u8 sas_addr[SAS_ADDR_SIZE];
202 struct smp_resp *resp = rsp;
203 struct discover_resp *dr = &resp->disc;
Dan Williams0f3fce52012-03-20 13:24:29 -0700204 struct sas_ha_struct *ha = dev->port->ha;
James Bottomley2908d772006-08-29 09:22:51 -0500205 struct expander_device *ex = &dev->ex_dev;
206 struct ex_phy *phy = &ex->ex_phy[phy_id];
James Bottomley2908d772006-08-29 09:22:51 -0500207 struct sas_rphy *rphy = dev->rphy;
Dan Williamsd214d812012-01-16 11:56:50 -0800208 bool new_phy = !phy->phy;
209 char *type;
James Bottomley2908d772006-08-29 09:22:51 -0500210
Dan Williamsd214d812012-01-16 11:56:50 -0800211 if (new_phy) {
Dan Williams0f3fce52012-03-20 13:24:29 -0700212 if (WARN_ON_ONCE(test_bit(SAS_HA_ATA_EH_ACTIVE, &ha->state)))
213 return;
James Bottomley2908d772006-08-29 09:22:51 -0500214 phy->phy = sas_phy_alloc(&rphy->dev, phy_id);
215
216 /* FIXME: error_handling */
217 BUG_ON(!phy->phy);
218 }
219
220 switch (resp->result) {
221 case SMP_RESP_PHY_VACANT:
222 phy->phy_state = PHY_VACANT;
Jack Wang2bc72c92010-10-06 16:05:35 +0800223 break;
James Bottomley2908d772006-08-29 09:22:51 -0500224 default:
225 phy->phy_state = PHY_NOT_PRESENT;
Jack Wang2bc72c92010-10-06 16:05:35 +0800226 break;
James Bottomley2908d772006-08-29 09:22:51 -0500227 case SMP_RESP_FUNC_ACC:
228 phy->phy_state = PHY_EMPTY; /* do not know yet */
229 break;
230 }
231
Dan Williams354cf822012-01-12 17:57:35 -0800232 /* check if anything important changed to squelch debug */
233 dev_type = phy->attached_dev_type;
234 linkrate = phy->linkrate;
235 memcpy(sas_addr, phy->attached_sas_addr, SAS_ADDR_SIZE);
236
Lukasz Doraud4a26182013-04-03 10:27:17 +0200237 /* Handle vacant phy - rest of dr data is not valid so skip it */
238 if (phy->phy_state == PHY_VACANT) {
239 memset(phy->attached_sas_addr, 0, SAS_ADDR_SIZE);
James Bottomleyaa9f8322013-05-07 14:44:06 -0700240 phy->attached_dev_type = SAS_PHY_UNUSED;
Lukasz Doraud4a26182013-04-03 10:27:17 +0200241 if (!test_bit(SAS_HA_ATA_EH_ACTIVE, &ha->state)) {
242 phy->phy_id = phy_id;
243 goto skip;
244 } else
245 goto out;
246 }
247
Dan Williams354cf822012-01-12 17:57:35 -0800248 phy->attached_dev_type = to_dev_type(dr);
Dan Williams0f3fce52012-03-20 13:24:29 -0700249 if (test_bit(SAS_HA_ATA_EH_ACTIVE, &ha->state))
250 goto out;
James Bottomley2908d772006-08-29 09:22:51 -0500251 phy->phy_id = phy_id;
James Bottomley2908d772006-08-29 09:22:51 -0500252 phy->linkrate = dr->linkrate;
253 phy->attached_sata_host = dr->attached_sata_host;
254 phy->attached_sata_dev = dr->attached_sata_dev;
255 phy->attached_sata_ps = dr->attached_sata_ps;
256 phy->attached_iproto = dr->iproto << 1;
257 phy->attached_tproto = dr->tproto << 1;
Dan Williams7d1d8652012-03-20 10:50:27 -0700258 /* help some expanders that fail to zero sas_address in the 'no
259 * device' case
260 */
James Bottomleyaa9f8322013-05-07 14:44:06 -0700261 if (phy->attached_dev_type == SAS_PHY_UNUSED ||
Dan Williams7d1d8652012-03-20 10:50:27 -0700262 phy->linkrate < SAS_LINK_RATE_1_5_GBPS)
263 memset(phy->attached_sas_addr, 0, SAS_ADDR_SIZE);
264 else
265 memcpy(phy->attached_sas_addr, dr->attached_sas_addr, SAS_ADDR_SIZE);
James Bottomley2908d772006-08-29 09:22:51 -0500266 phy->attached_phy_id = dr->attached_phy_id;
267 phy->phy_change_count = dr->change_count;
268 phy->routing_attr = dr->routing_attr;
269 phy->virtual = dr->virtual;
270 phy->last_da_index = -1;
271
Jack Wangbb041a02011-09-23 14:32:32 +0800272 phy->phy->identify.sas_address = SAS_ADDR(phy->attached_sas_addr);
Dan Williams354cf822012-01-12 17:57:35 -0800273 phy->phy->identify.device_type = dr->attached_dev_type;
James Bottomley2908d772006-08-29 09:22:51 -0500274 phy->phy->identify.initiator_port_protocols = phy->attached_iproto;
275 phy->phy->identify.target_port_protocols = phy->attached_tproto;
Dan Williams77c309f2012-02-08 23:20:41 -0800276 if (!phy->attached_tproto && dr->attached_sata_dev)
277 phy->phy->identify.target_port_protocols = SAS_PROTOCOL_SATA;
James Bottomley2908d772006-08-29 09:22:51 -0500278 phy->phy->identify.phy_identifier = phy_id;
James Bottomleya01e70e2006-09-06 19:28:07 -0500279 phy->phy->minimum_linkrate_hw = dr->hmin_linkrate;
280 phy->phy->maximum_linkrate_hw = dr->hmax_linkrate;
281 phy->phy->minimum_linkrate = dr->pmin_linkrate;
282 phy->phy->maximum_linkrate = dr->pmax_linkrate;
James Bottomley88edf742006-09-06 17:36:13 -0500283 phy->phy->negotiated_linkrate = phy->linkrate;
chenxiangcafd9512018-01-04 21:04:33 +0800284 phy->phy->enabled = (phy->linkrate != SAS_PHY_DISABLED);
James Bottomley2908d772006-08-29 09:22:51 -0500285
Lukasz Doraud4a26182013-04-03 10:27:17 +0200286 skip:
Dan Williamsd214d812012-01-16 11:56:50 -0800287 if (new_phy)
Jack Wang2bc72c92010-10-06 16:05:35 +0800288 if (sas_phy_add(phy->phy)) {
289 sas_phy_free(phy->phy);
290 return;
291 }
James Bottomley2908d772006-08-29 09:22:51 -0500292
Dan Williams0f3fce52012-03-20 13:24:29 -0700293 out:
Dan Williamsd214d812012-01-16 11:56:50 -0800294 switch (phy->attached_dev_type) {
James Bottomleyaa9f8322013-05-07 14:44:06 -0700295 case SAS_SATA_PENDING:
Dan Williams354cf822012-01-12 17:57:35 -0800296 type = "stp pending";
297 break;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700298 case SAS_PHY_UNUSED:
Dan Williamsd214d812012-01-16 11:56:50 -0800299 type = "no device";
300 break;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700301 case SAS_END_DEVICE:
Dan Williamsd214d812012-01-16 11:56:50 -0800302 if (phy->attached_iproto) {
303 if (phy->attached_tproto)
304 type = "host+target";
305 else
306 type = "host";
307 } else {
308 if (dr->attached_sata_dev)
309 type = "stp";
310 else
311 type = "ssp";
312 }
313 break;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700314 case SAS_EDGE_EXPANDER_DEVICE:
315 case SAS_FANOUT_EXPANDER_DEVICE:
Dan Williamsd214d812012-01-16 11:56:50 -0800316 type = "smp";
317 break;
318 default:
319 type = "unknown";
320 }
James Bottomley2908d772006-08-29 09:22:51 -0500321
Dan Williams354cf822012-01-12 17:57:35 -0800322 /* this routine is polled by libata error recovery so filter
323 * unimportant messages
324 */
325 if (new_phy || phy->attached_dev_type != dev_type ||
326 phy->linkrate != linkrate ||
327 SAS_ADDR(phy->attached_sas_addr) != SAS_ADDR(sas_addr))
328 /* pass */;
329 else
330 return;
331
Dan Williams0f3fce52012-03-20 13:24:29 -0700332 /* if the attached device type changed and ata_eh is active,
333 * make sure we run revalidation when eh completes (see:
334 * sas_enable_revalidation)
335 */
336 if (test_bit(SAS_HA_ATA_EH_ACTIVE, &ha->state))
337 set_bit(DISCE_REVALIDATE_DOMAIN, &dev->port->disc.pending);
338
339 SAS_DPRINTK("%sex %016llx phy%02d:%c:%X attached: %016llx (%s)\n",
340 test_bit(SAS_HA_ATA_EH_ACTIVE, &ha->state) ? "ata: " : "",
Dan Williamsd214d812012-01-16 11:56:50 -0800341 SAS_ADDR(dev->sas_addr), phy->phy_id,
342 sas_route_char(dev, phy), phy->linkrate,
343 SAS_ADDR(phy->attached_sas_addr), type);
James Bottomley2908d772006-08-29 09:22:51 -0500344}
345
Dan Williamsb52df412011-11-30 23:23:33 -0800346/* check if we have an existing attached ata device on this expander phy */
Dan Williams81c757b2011-12-02 16:07:01 -0800347struct domain_device *sas_ex_to_ata(struct domain_device *ex_dev, int phy_id)
Dan Williamsb52df412011-11-30 23:23:33 -0800348{
349 struct ex_phy *ex_phy = &ex_dev->ex_dev.ex_phy[phy_id];
350 struct domain_device *dev;
351 struct sas_rphy *rphy;
352
353 if (!ex_phy->port)
354 return NULL;
355
356 rphy = ex_phy->port->rphy;
357 if (!rphy)
358 return NULL;
359
360 dev = sas_find_dev_by_rphy(rphy);
361
362 if (dev && dev_is_sata(dev))
363 return dev;
364
365 return NULL;
366}
367
James Bottomley2908d772006-08-29 09:22:51 -0500368#define DISCOVER_REQ_SIZE 16
369#define DISCOVER_RESP_SIZE 56
370
James Bottomley1acce192006-08-22 12:39:19 -0500371static int sas_ex_phy_discover_helper(struct domain_device *dev, u8 *disc_req,
372 u8 *disc_resp, int single)
373{
Dan Williams354cf822012-01-12 17:57:35 -0800374 struct discover_resp *dr;
375 int res;
James Bottomley1acce192006-08-22 12:39:19 -0500376
377 disc_req[9] = single;
James Bottomley1acce192006-08-22 12:39:19 -0500378
Dan Williams354cf822012-01-12 17:57:35 -0800379 res = smp_execute_task(dev, disc_req, DISCOVER_REQ_SIZE,
380 disc_resp, DISCOVER_RESP_SIZE);
381 if (res)
382 return res;
383 dr = &((struct smp_resp *)disc_resp)->disc;
384 if (memcmp(dev->sas_addr, dr->attached_sas_addr, SAS_ADDR_SIZE) == 0) {
385 sas_printk("Found loopback topology, just ignore it!\n");
386 return 0;
James Bottomley1acce192006-08-22 12:39:19 -0500387 }
388 sas_set_ex_phy(dev, single, disc_resp);
389 return 0;
390}
391
Dan Williams354cf822012-01-12 17:57:35 -0800392int sas_ex_phy_discover(struct domain_device *dev, int single)
James Bottomley2908d772006-08-29 09:22:51 -0500393{
394 struct expander_device *ex = &dev->ex_dev;
395 int res = 0;
396 u8 *disc_req;
397 u8 *disc_resp;
398
399 disc_req = alloc_smp_req(DISCOVER_REQ_SIZE);
400 if (!disc_req)
401 return -ENOMEM;
402
John Gong95c9f4d2013-03-06 10:43:03 +0800403 disc_resp = alloc_smp_resp(DISCOVER_RESP_SIZE);
James Bottomley2908d772006-08-29 09:22:51 -0500404 if (!disc_resp) {
405 kfree(disc_req);
406 return -ENOMEM;
407 }
408
409 disc_req[1] = SMP_DISCOVER;
410
411 if (0 <= single && single < ex->num_phys) {
James Bottomley1acce192006-08-22 12:39:19 -0500412 res = sas_ex_phy_discover_helper(dev, disc_req, disc_resp, single);
James Bottomley2908d772006-08-29 09:22:51 -0500413 } else {
414 int i;
415
416 for (i = 0; i < ex->num_phys; i++) {
James Bottomley1acce192006-08-22 12:39:19 -0500417 res = sas_ex_phy_discover_helper(dev, disc_req,
418 disc_resp, i);
James Bottomley2908d772006-08-29 09:22:51 -0500419 if (res)
420 goto out_err;
James Bottomley2908d772006-08-29 09:22:51 -0500421 }
422 }
423out_err:
424 kfree(disc_resp);
425 kfree(disc_req);
426 return res;
427}
428
429static int sas_expander_discover(struct domain_device *dev)
430{
431 struct expander_device *ex = &dev->ex_dev;
432 int res = -ENOMEM;
433
434 ex->ex_phy = kzalloc(sizeof(*ex->ex_phy)*ex->num_phys, GFP_KERNEL);
435 if (!ex->ex_phy)
436 return -ENOMEM;
437
438 res = sas_ex_phy_discover(dev, -1);
439 if (res)
440 goto out_err;
441
442 return 0;
443 out_err:
444 kfree(ex->ex_phy);
445 ex->ex_phy = NULL;
446 return res;
447}
448
449#define MAX_EXPANDER_PHYS 128
450
451static void ex_assign_report_general(struct domain_device *dev,
452 struct smp_resp *resp)
453{
454 struct report_general_resp *rg = &resp->rg;
455
456 dev->ex_dev.ex_change_count = be16_to_cpu(rg->change_count);
457 dev->ex_dev.max_route_indexes = be16_to_cpu(rg->route_indexes);
458 dev->ex_dev.num_phys = min(rg->num_phys, (u8)MAX_EXPANDER_PHYS);
Luben Tuikovffaac8f2011-09-22 09:41:36 -0700459 dev->ex_dev.t2t_supp = rg->t2t_supp;
James Bottomley2908d772006-08-29 09:22:51 -0500460 dev->ex_dev.conf_route_table = rg->conf_route_table;
461 dev->ex_dev.configuring = rg->configuring;
462 memcpy(dev->ex_dev.enclosure_logical_id, rg->enclosure_logical_id, 8);
463}
464
465#define RG_REQ_SIZE 8
466#define RG_RESP_SIZE 32
467
468static int sas_ex_general(struct domain_device *dev)
469{
470 u8 *rg_req;
471 struct smp_resp *rg_resp;
472 int res;
473 int i;
474
475 rg_req = alloc_smp_req(RG_REQ_SIZE);
476 if (!rg_req)
477 return -ENOMEM;
478
479 rg_resp = alloc_smp_resp(RG_RESP_SIZE);
480 if (!rg_resp) {
481 kfree(rg_req);
482 return -ENOMEM;
483 }
484
485 rg_req[1] = SMP_REPORT_GENERAL;
486
487 for (i = 0; i < 5; i++) {
488 res = smp_execute_task(dev, rg_req, RG_REQ_SIZE, rg_resp,
489 RG_RESP_SIZE);
490
491 if (res) {
492 SAS_DPRINTK("RG to ex %016llx failed:0x%x\n",
493 SAS_ADDR(dev->sas_addr), res);
494 goto out;
495 } else if (rg_resp->result != SMP_RESP_FUNC_ACC) {
496 SAS_DPRINTK("RG:ex %016llx returned SMP result:0x%x\n",
497 SAS_ADDR(dev->sas_addr), rg_resp->result);
498 res = rg_resp->result;
499 goto out;
500 }
501
502 ex_assign_report_general(dev, rg_resp);
503
504 if (dev->ex_dev.configuring) {
505 SAS_DPRINTK("RG: ex %llx self-configuring...\n",
506 SAS_ADDR(dev->sas_addr));
507 schedule_timeout_interruptible(5*HZ);
508 } else
509 break;
510 }
511out:
512 kfree(rg_req);
513 kfree(rg_resp);
514 return res;
515}
516
517static void ex_assign_manuf_info(struct domain_device *dev, void
518 *_mi_resp)
519{
520 u8 *mi_resp = _mi_resp;
521 struct sas_rphy *rphy = dev->rphy;
522 struct sas_expander_device *edev = rphy_to_expander_device(rphy);
523
524 memcpy(edev->vendor_id, mi_resp + 12, SAS_EXPANDER_VENDOR_ID_LEN);
525 memcpy(edev->product_id, mi_resp + 20, SAS_EXPANDER_PRODUCT_ID_LEN);
526 memcpy(edev->product_rev, mi_resp + 36,
527 SAS_EXPANDER_PRODUCT_REV_LEN);
528
529 if (mi_resp[8] & 1) {
530 memcpy(edev->component_vendor_id, mi_resp + 40,
531 SAS_EXPANDER_COMPONENT_VENDOR_ID_LEN);
532 edev->component_id = mi_resp[48] << 8 | mi_resp[49];
533 edev->component_revision_id = mi_resp[50];
534 }
535}
536
537#define MI_REQ_SIZE 8
538#define MI_RESP_SIZE 64
539
540static int sas_ex_manuf_info(struct domain_device *dev)
541{
542 u8 *mi_req;
543 u8 *mi_resp;
544 int res;
545
546 mi_req = alloc_smp_req(MI_REQ_SIZE);
547 if (!mi_req)
548 return -ENOMEM;
549
550 mi_resp = alloc_smp_resp(MI_RESP_SIZE);
551 if (!mi_resp) {
552 kfree(mi_req);
553 return -ENOMEM;
554 }
555
556 mi_req[1] = SMP_REPORT_MANUF_INFO;
557
558 res = smp_execute_task(dev, mi_req, MI_REQ_SIZE, mi_resp,MI_RESP_SIZE);
559 if (res) {
560 SAS_DPRINTK("MI: ex %016llx failed:0x%x\n",
561 SAS_ADDR(dev->sas_addr), res);
562 goto out;
563 } else if (mi_resp[2] != SMP_RESP_FUNC_ACC) {
564 SAS_DPRINTK("MI ex %016llx returned SMP result:0x%x\n",
565 SAS_ADDR(dev->sas_addr), mi_resp[2]);
566 goto out;
567 }
568
569 ex_assign_manuf_info(dev, mi_resp);
570out:
571 kfree(mi_req);
572 kfree(mi_resp);
573 return res;
574}
575
576#define PC_REQ_SIZE 44
577#define PC_RESP_SIZE 8
578
579int sas_smp_phy_control(struct domain_device *dev, int phy_id,
James Bottomleya01e70e2006-09-06 19:28:07 -0500580 enum phy_func phy_func,
581 struct sas_phy_linkrates *rates)
James Bottomley2908d772006-08-29 09:22:51 -0500582{
583 u8 *pc_req;
584 u8 *pc_resp;
585 int res;
586
587 pc_req = alloc_smp_req(PC_REQ_SIZE);
588 if (!pc_req)
589 return -ENOMEM;
590
591 pc_resp = alloc_smp_resp(PC_RESP_SIZE);
592 if (!pc_resp) {
593 kfree(pc_req);
594 return -ENOMEM;
595 }
596
597 pc_req[1] = SMP_PHY_CONTROL;
598 pc_req[9] = phy_id;
599 pc_req[10]= phy_func;
James Bottomleya01e70e2006-09-06 19:28:07 -0500600 if (rates) {
601 pc_req[32] = rates->minimum_linkrate << 4;
602 pc_req[33] = rates->maximum_linkrate << 4;
603 }
James Bottomley2908d772006-08-29 09:22:51 -0500604
605 res = smp_execute_task(dev, pc_req, PC_REQ_SIZE, pc_resp,PC_RESP_SIZE);
606
607 kfree(pc_resp);
608 kfree(pc_req);
609 return res;
610}
611
612static void sas_ex_disable_phy(struct domain_device *dev, int phy_id)
613{
614 struct expander_device *ex = &dev->ex_dev;
615 struct ex_phy *phy = &ex->ex_phy[phy_id];
616
James Bottomleya01e70e2006-09-06 19:28:07 -0500617 sas_smp_phy_control(dev, phy_id, PHY_FUNC_DISABLE, NULL);
James Bottomley88edf742006-09-06 17:36:13 -0500618 phy->linkrate = SAS_PHY_DISABLED;
James Bottomley2908d772006-08-29 09:22:51 -0500619}
620
621static void sas_ex_disable_port(struct domain_device *dev, u8 *sas_addr)
622{
623 struct expander_device *ex = &dev->ex_dev;
624 int i;
625
626 for (i = 0; i < ex->num_phys; i++) {
627 struct ex_phy *phy = &ex->ex_phy[i];
628
629 if (phy->phy_state == PHY_VACANT ||
630 phy->phy_state == PHY_NOT_PRESENT)
631 continue;
632
633 if (SAS_ADDR(phy->attached_sas_addr) == SAS_ADDR(sas_addr))
634 sas_ex_disable_phy(dev, i);
635 }
636}
637
638static int sas_dev_present_in_domain(struct asd_sas_port *port,
639 u8 *sas_addr)
640{
641 struct domain_device *dev;
642
643 if (SAS_ADDR(port->sas_addr) == SAS_ADDR(sas_addr))
644 return 1;
645 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
646 if (SAS_ADDR(dev->sas_addr) == SAS_ADDR(sas_addr))
647 return 1;
648 }
649 return 0;
650}
651
652#define RPEL_REQ_SIZE 16
653#define RPEL_RESP_SIZE 32
654int sas_smp_get_phy_events(struct sas_phy *phy)
655{
656 int res;
Jesper Juhl92631fa2007-07-28 01:13:33 +0200657 u8 *req;
658 u8 *resp;
James Bottomley2908d772006-08-29 09:22:51 -0500659 struct sas_rphy *rphy = dev_to_rphy(phy->dev.parent);
660 struct domain_device *dev = sas_find_dev_by_rphy(rphy);
James Bottomley2908d772006-08-29 09:22:51 -0500661
Jesper Juhl92631fa2007-07-28 01:13:33 +0200662 req = alloc_smp_req(RPEL_REQ_SIZE);
663 if (!req)
James Bottomley2908d772006-08-29 09:22:51 -0500664 return -ENOMEM;
665
Jesper Juhl92631fa2007-07-28 01:13:33 +0200666 resp = alloc_smp_resp(RPEL_RESP_SIZE);
667 if (!resp) {
668 kfree(req);
669 return -ENOMEM;
670 }
671
James Bottomley2908d772006-08-29 09:22:51 -0500672 req[1] = SMP_REPORT_PHY_ERR_LOG;
673 req[9] = phy->number;
674
675 res = smp_execute_task(dev, req, RPEL_REQ_SIZE,
676 resp, RPEL_RESP_SIZE);
677
Jason Yan7333f172018-01-04 21:04:32 +0800678 if (res)
James Bottomley2908d772006-08-29 09:22:51 -0500679 goto out;
680
681 phy->invalid_dword_count = scsi_to_u32(&resp[12]);
682 phy->running_disparity_error_count = scsi_to_u32(&resp[16]);
683 phy->loss_of_dword_sync_count = scsi_to_u32(&resp[20]);
684 phy->phy_reset_problem_count = scsi_to_u32(&resp[24]);
685
686 out:
Jason Yan0ef71342018-01-04 21:04:31 +0800687 kfree(req);
James Bottomley2908d772006-08-29 09:22:51 -0500688 kfree(resp);
689 return res;
690
691}
692
James Bottomleyb9142172007-07-22 13:15:55 -0500693#ifdef CONFIG_SCSI_SAS_ATA
694
James Bottomley2908d772006-08-29 09:22:51 -0500695#define RPS_REQ_SIZE 16
696#define RPS_RESP_SIZE 60
697
Dan Williams354cf822012-01-12 17:57:35 -0800698int sas_get_report_phy_sata(struct domain_device *dev, int phy_id,
699 struct smp_resp *rps_resp)
James Bottomley2908d772006-08-29 09:22:51 -0500700{
701 int res;
702 u8 *rps_req = alloc_smp_req(RPS_REQ_SIZE);
James Bottomley1acce192006-08-22 12:39:19 -0500703 u8 *resp = (u8 *)rps_resp;
James Bottomley2908d772006-08-29 09:22:51 -0500704
705 if (!rps_req)
706 return -ENOMEM;
707
708 rps_req[1] = SMP_REPORT_PHY_SATA;
709 rps_req[9] = phy_id;
710
711 res = smp_execute_task(dev, rps_req, RPS_REQ_SIZE,
712 rps_resp, RPS_RESP_SIZE);
713
James Bottomley1acce192006-08-22 12:39:19 -0500714 /* 0x34 is the FIS type for the D2H fis. There's a potential
715 * standards cockup here. sas-2 explicitly specifies the FIS
716 * should be encoded so that FIS type is in resp[24].
717 * However, some expanders endian reverse this. Undo the
718 * reversal here */
719 if (!res && resp[27] == 0x34 && resp[24] != 0x34) {
720 int i;
721
722 for (i = 0; i < 5; i++) {
723 int j = 24 + (i*4);
724 u8 a, b;
725 a = resp[j + 0];
726 b = resp[j + 1];
727 resp[j + 0] = resp[j + 3];
728 resp[j + 1] = resp[j + 2];
729 resp[j + 2] = b;
730 resp[j + 3] = a;
731 }
732 }
733
James Bottomley2908d772006-08-29 09:22:51 -0500734 kfree(rps_req);
James Bottomley1acce192006-08-22 12:39:19 -0500735 return res;
James Bottomley2908d772006-08-29 09:22:51 -0500736}
James Bottomleyb9142172007-07-22 13:15:55 -0500737#endif
James Bottomley2908d772006-08-29 09:22:51 -0500738
739static void sas_ex_get_linkrate(struct domain_device *parent,
740 struct domain_device *child,
741 struct ex_phy *parent_phy)
742{
743 struct expander_device *parent_ex = &parent->ex_dev;
744 struct sas_port *port;
745 int i;
746
747 child->pathways = 0;
748
749 port = parent_phy->port;
750
751 for (i = 0; i < parent_ex->num_phys; i++) {
752 struct ex_phy *phy = &parent_ex->ex_phy[i];
753
754 if (phy->phy_state == PHY_VACANT ||
755 phy->phy_state == PHY_NOT_PRESENT)
756 continue;
757
758 if (SAS_ADDR(phy->attached_sas_addr) ==
759 SAS_ADDR(child->sas_addr)) {
760
761 child->min_linkrate = min(parent->min_linkrate,
762 phy->linkrate);
763 child->max_linkrate = max(parent->max_linkrate,
764 phy->linkrate);
765 child->pathways++;
766 sas_port_add_phy(port, phy->phy);
767 }
768 }
769 child->linkrate = min(parent_phy->linkrate, child->max_linkrate);
770 child->pathways = min(child->pathways, parent->pathways);
771}
772
773static struct domain_device *sas_ex_discover_end_dev(
774 struct domain_device *parent, int phy_id)
775{
776 struct expander_device *parent_ex = &parent->ex_dev;
777 struct ex_phy *phy = &parent_ex->ex_phy[phy_id];
778 struct domain_device *child = NULL;
779 struct sas_rphy *rphy;
780 int res;
781
782 if (phy->attached_sata_host || phy->attached_sata_ps)
783 return NULL;
784
Dan Williams735f7d22011-11-17 17:59:47 -0800785 child = sas_alloc_device();
James Bottomley2908d772006-08-29 09:22:51 -0500786 if (!child)
787 return NULL;
788
Dan Williams735f7d22011-11-17 17:59:47 -0800789 kref_get(&parent->kref);
James Bottomley2908d772006-08-29 09:22:51 -0500790 child->parent = parent;
791 child->port = parent->port;
792 child->iproto = phy->attached_iproto;
793 memcpy(child->sas_addr, phy->attached_sas_addr, SAS_ADDR_SIZE);
794 sas_hash_addr(child->hashed_sas_addr, child->sas_addr);
James Bottomley024879e2006-11-15 18:03:07 -0600795 if (!phy->port) {
796 phy->port = sas_port_alloc(&parent->rphy->dev, phy_id);
797 if (unlikely(!phy->port))
798 goto out_err;
799 if (unlikely(sas_port_add(phy->port) != 0)) {
800 sas_port_free(phy->port);
801 goto out_err;
802 }
803 }
James Bottomley2908d772006-08-29 09:22:51 -0500804 sas_ex_get_linkrate(parent, child, phy);
Dan Williamsf41a0c42011-12-21 21:33:17 -0800805 sas_device_set_phy(child, phy->port);
James Bottomley2908d772006-08-29 09:22:51 -0500806
James Bottomleyb9142172007-07-22 13:15:55 -0500807#ifdef CONFIG_SCSI_SAS_ATA
Darrick J. Wong5929faf2007-11-05 11:51:17 -0800808 if ((phy->attached_tproto & SAS_PROTOCOL_STP) || phy->attached_sata_dev) {
Dan Williams354cf822012-01-12 17:57:35 -0800809 res = sas_get_ata_info(child, phy);
810 if (res)
James Bottomley024879e2006-11-15 18:03:07 -0600811 goto out_free;
James Bottomley1acce192006-08-22 12:39:19 -0500812
James Bottomley2908d772006-08-29 09:22:51 -0500813 sas_init_dev(child);
Dan Williamsb2024452012-03-21 21:09:07 -0700814 res = sas_ata_init(child);
815 if (res)
816 goto out_free;
817 rphy = sas_end_device_alloc(phy->port);
818 if (!rphy)
819 goto out_free;
John Garry87955ca2019-02-15 00:37:57 +0800820 rphy->identify.phy_identifier = phy_id;
James Bottomley1acce192006-08-22 12:39:19 -0500821
822 child->rphy = rphy;
Dan Williams94876692012-03-20 10:53:24 -0700823 get_device(&rphy->dev);
James Bottomley1acce192006-08-22 12:39:19 -0500824
Dan Williams87c83312011-11-17 17:59:51 -0800825 list_add_tail(&child->disco_list_node, &parent->port->disco_list);
James Bottomley1acce192006-08-22 12:39:19 -0500826
James Bottomley2908d772006-08-29 09:22:51 -0500827 res = sas_discover_sata(child);
828 if (res) {
829 SAS_DPRINTK("sas_discover_sata() for device %16llx at "
830 "%016llx:0x%x returned 0x%x\n",
831 SAS_ADDR(child->sas_addr),
832 SAS_ADDR(parent->sas_addr), phy_id, res);
James Bottomley1acce192006-08-22 12:39:19 -0500833 goto out_list_del;
James Bottomley2908d772006-08-29 09:22:51 -0500834 }
James Bottomleyb9142172007-07-22 13:15:55 -0500835 } else
836#endif
Darrick J. Wong5929faf2007-11-05 11:51:17 -0800837 if (phy->attached_tproto & SAS_PROTOCOL_SSP) {
James Bottomleyaa9f8322013-05-07 14:44:06 -0700838 child->dev_type = SAS_END_DEVICE;
James Bottomley2908d772006-08-29 09:22:51 -0500839 rphy = sas_end_device_alloc(phy->port);
840 /* FIXME: error handling */
James Bottomley024879e2006-11-15 18:03:07 -0600841 if (unlikely(!rphy))
842 goto out_free;
James Bottomley2908d772006-08-29 09:22:51 -0500843 child->tproto = phy->attached_tproto;
844 sas_init_dev(child);
845
846 child->rphy = rphy;
Dan Williams94876692012-03-20 10:53:24 -0700847 get_device(&rphy->dev);
John Garry87955ca2019-02-15 00:37:57 +0800848 rphy->identify.phy_identifier = phy_id;
James Bottomley2908d772006-08-29 09:22:51 -0500849 sas_fill_in_rphy(child, rphy);
850
Dan Williams92625f92012-01-18 20:14:01 -0800851 list_add_tail(&child->disco_list_node, &parent->port->disco_list);
James Bottomley2908d772006-08-29 09:22:51 -0500852
853 res = sas_discover_end_dev(child);
854 if (res) {
855 SAS_DPRINTK("sas_discover_end_dev() for device %16llx "
856 "at %016llx:0x%x returned 0x%x\n",
857 SAS_ADDR(child->sas_addr),
858 SAS_ADDR(parent->sas_addr), phy_id, res);
James Bottomley024879e2006-11-15 18:03:07 -0600859 goto out_list_del;
James Bottomley2908d772006-08-29 09:22:51 -0500860 }
861 } else {
862 SAS_DPRINTK("target proto 0x%x at %016llx:0x%x not handled\n",
863 phy->attached_tproto, SAS_ADDR(parent->sas_addr),
864 phy_id);
James Bottomleyb9142172007-07-22 13:15:55 -0500865 goto out_free;
James Bottomley2908d772006-08-29 09:22:51 -0500866 }
867
868 list_add_tail(&child->siblings, &parent_ex->children);
869 return child;
James Bottomley024879e2006-11-15 18:03:07 -0600870
871 out_list_del:
Darrick J. Wong6f63caa2007-01-26 14:08:43 -0800872 sas_rphy_free(child->rphy);
Dan Williams87c83312011-11-17 17:59:51 -0800873 list_del(&child->disco_list_node);
Dan Williams1a34c062011-09-21 22:05:34 -0700874 spin_lock_irq(&parent->port->dev_list_lock);
James Bottomley024879e2006-11-15 18:03:07 -0600875 list_del(&child->dev_list_node);
Dan Williams1a34c062011-09-21 22:05:34 -0700876 spin_unlock_irq(&parent->port->dev_list_lock);
James Bottomley024879e2006-11-15 18:03:07 -0600877 out_free:
878 sas_port_delete(phy->port);
879 out_err:
880 phy->port = NULL;
Dan Williams735f7d22011-11-17 17:59:47 -0800881 sas_put_device(child);
James Bottomley024879e2006-11-15 18:03:07 -0600882 return NULL;
James Bottomley2908d772006-08-29 09:22:51 -0500883}
884
Darrick J. Wong423f7cf2007-01-30 12:07:27 -0800885/* See if this phy is part of a wide port */
Dan Williamsb17caa12012-06-21 23:36:20 -0700886static bool sas_ex_join_wide_port(struct domain_device *parent, int phy_id)
Darrick J. Wong423f7cf2007-01-30 12:07:27 -0800887{
888 struct ex_phy *phy = &parent->ex_dev.ex_phy[phy_id];
889 int i;
890
891 for (i = 0; i < parent->ex_dev.num_phys; i++) {
892 struct ex_phy *ephy = &parent->ex_dev.ex_phy[i];
893
894 if (ephy == phy)
895 continue;
896
897 if (!memcmp(phy->attached_sas_addr, ephy->attached_sas_addr,
898 SAS_ADDR_SIZE) && ephy->port) {
899 sas_port_add_phy(ephy->port, phy->phy);
Tom Peng19252de2009-07-17 16:02:04 +0800900 phy->port = ephy->port;
Darrick J. Wong423f7cf2007-01-30 12:07:27 -0800901 phy->phy_state = PHY_DEVICE_DISCOVERED;
Dan Williamsb17caa12012-06-21 23:36:20 -0700902 return true;
Darrick J. Wong423f7cf2007-01-30 12:07:27 -0800903 }
904 }
905
Dan Williamsb17caa12012-06-21 23:36:20 -0700906 return false;
Darrick J. Wong423f7cf2007-01-30 12:07:27 -0800907}
908
James Bottomley2908d772006-08-29 09:22:51 -0500909static struct domain_device *sas_ex_discover_expander(
910 struct domain_device *parent, int phy_id)
911{
912 struct sas_expander_device *parent_ex = rphy_to_expander_device(parent->rphy);
913 struct ex_phy *phy = &parent->ex_dev.ex_phy[phy_id];
914 struct domain_device *child = NULL;
915 struct sas_rphy *rphy;
916 struct sas_expander_device *edev;
917 struct asd_sas_port *port;
918 int res;
919
920 if (phy->routing_attr == DIRECT_ROUTING) {
921 SAS_DPRINTK("ex %016llx:0x%x:D <--> ex %016llx:0x%x is not "
922 "allowed\n",
923 SAS_ADDR(parent->sas_addr), phy_id,
924 SAS_ADDR(phy->attached_sas_addr),
925 phy->attached_phy_id);
926 return NULL;
927 }
Dan Williams735f7d22011-11-17 17:59:47 -0800928 child = sas_alloc_device();
James Bottomley2908d772006-08-29 09:22:51 -0500929 if (!child)
930 return NULL;
931
932 phy->port = sas_port_alloc(&parent->rphy->dev, phy_id);
933 /* FIXME: better error handling */
934 BUG_ON(sas_port_add(phy->port) != 0);
935
936
937 switch (phy->attached_dev_type) {
James Bottomleyaa9f8322013-05-07 14:44:06 -0700938 case SAS_EDGE_EXPANDER_DEVICE:
James Bottomley2908d772006-08-29 09:22:51 -0500939 rphy = sas_expander_alloc(phy->port,
940 SAS_EDGE_EXPANDER_DEVICE);
941 break;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700942 case SAS_FANOUT_EXPANDER_DEVICE:
James Bottomley2908d772006-08-29 09:22:51 -0500943 rphy = sas_expander_alloc(phy->port,
944 SAS_FANOUT_EXPANDER_DEVICE);
945 break;
946 default:
947 rphy = NULL; /* shut gcc up */
948 BUG();
949 }
950 port = parent->port;
951 child->rphy = rphy;
Dan Williams94876692012-03-20 10:53:24 -0700952 get_device(&rphy->dev);
James Bottomley2908d772006-08-29 09:22:51 -0500953 edev = rphy_to_expander_device(rphy);
954 child->dev_type = phy->attached_dev_type;
Dan Williams735f7d22011-11-17 17:59:47 -0800955 kref_get(&parent->kref);
James Bottomley2908d772006-08-29 09:22:51 -0500956 child->parent = parent;
957 child->port = port;
958 child->iproto = phy->attached_iproto;
959 child->tproto = phy->attached_tproto;
960 memcpy(child->sas_addr, phy->attached_sas_addr, SAS_ADDR_SIZE);
961 sas_hash_addr(child->hashed_sas_addr, child->sas_addr);
962 sas_ex_get_linkrate(parent, child, phy);
963 edev->level = parent_ex->level + 1;
964 parent->port->disc.max_level = max(parent->port->disc.max_level,
965 edev->level);
966 sas_init_dev(child);
967 sas_fill_in_rphy(child, rphy);
968 sas_rphy_add(rphy);
969
James Bottomley9d720d82007-07-16 13:15:51 -0500970 spin_lock_irq(&parent->port->dev_list_lock);
James Bottomley2908d772006-08-29 09:22:51 -0500971 list_add_tail(&child->dev_list_node, &parent->port->dev_list);
James Bottomley9d720d82007-07-16 13:15:51 -0500972 spin_unlock_irq(&parent->port->dev_list_lock);
James Bottomley2908d772006-08-29 09:22:51 -0500973
974 res = sas_discover_expander(child);
975 if (res) {
Dan Williams94876692012-03-20 10:53:24 -0700976 sas_rphy_delete(rphy);
Luben Tuikov5911e962011-07-26 23:10:48 -0700977 spin_lock_irq(&parent->port->dev_list_lock);
978 list_del(&child->dev_list_node);
979 spin_unlock_irq(&parent->port->dev_list_lock);
Dan Williams735f7d22011-11-17 17:59:47 -0800980 sas_put_device(child);
James Bottomley2908d772006-08-29 09:22:51 -0500981 return NULL;
982 }
983 list_add_tail(&child->siblings, &parent->ex_dev.children);
984 return child;
985}
986
987static int sas_ex_discover_dev(struct domain_device *dev, int phy_id)
988{
989 struct expander_device *ex = &dev->ex_dev;
990 struct ex_phy *ex_phy = &ex->ex_phy[phy_id];
991 struct domain_device *child = NULL;
992 int res = 0;
993
994 /* Phy state */
James Bottomley88edf742006-09-06 17:36:13 -0500995 if (ex_phy->linkrate == SAS_SATA_SPINUP_HOLD) {
James Bottomleya01e70e2006-09-06 19:28:07 -0500996 if (!sas_smp_phy_control(dev, phy_id, PHY_FUNC_LINK_RESET, NULL))
James Bottomley2908d772006-08-29 09:22:51 -0500997 res = sas_ex_phy_discover(dev, phy_id);
998 if (res)
999 return res;
1000 }
1001
1002 /* Parent and domain coherency */
1003 if (!dev->parent && (SAS_ADDR(ex_phy->attached_sas_addr) ==
1004 SAS_ADDR(dev->port->sas_addr))) {
1005 sas_add_parent_port(dev, phy_id);
1006 return 0;
1007 }
1008 if (dev->parent && (SAS_ADDR(ex_phy->attached_sas_addr) ==
1009 SAS_ADDR(dev->parent->sas_addr))) {
1010 sas_add_parent_port(dev, phy_id);
1011 if (ex_phy->routing_attr == TABLE_ROUTING)
1012 sas_configure_phy(dev, phy_id, dev->port->sas_addr, 1);
1013 return 0;
1014 }
1015
1016 if (sas_dev_present_in_domain(dev->port, ex_phy->attached_sas_addr))
1017 sas_ex_disable_port(dev, ex_phy->attached_sas_addr);
1018
James Bottomleyaa9f8322013-05-07 14:44:06 -07001019 if (ex_phy->attached_dev_type == SAS_PHY_UNUSED) {
James Bottomley2908d772006-08-29 09:22:51 -05001020 if (ex_phy->routing_attr == DIRECT_ROUTING) {
1021 memset(ex_phy->attached_sas_addr, 0, SAS_ADDR_SIZE);
1022 sas_configure_routing(dev, ex_phy->attached_sas_addr);
1023 }
1024 return 0;
James Bottomley88edf742006-09-06 17:36:13 -05001025 } else if (ex_phy->linkrate == SAS_LINK_RATE_UNKNOWN)
James Bottomley2908d772006-08-29 09:22:51 -05001026 return 0;
1027
James Bottomleyaa9f8322013-05-07 14:44:06 -07001028 if (ex_phy->attached_dev_type != SAS_END_DEVICE &&
1029 ex_phy->attached_dev_type != SAS_FANOUT_EXPANDER_DEVICE &&
1030 ex_phy->attached_dev_type != SAS_EDGE_EXPANDER_DEVICE &&
1031 ex_phy->attached_dev_type != SAS_SATA_PENDING) {
James Bottomley2908d772006-08-29 09:22:51 -05001032 SAS_DPRINTK("unknown device type(0x%x) attached to ex %016llx "
1033 "phy 0x%x\n", ex_phy->attached_dev_type,
1034 SAS_ADDR(dev->sas_addr),
1035 phy_id);
1036 return 0;
1037 }
1038
1039 res = sas_configure_routing(dev, ex_phy->attached_sas_addr);
1040 if (res) {
1041 SAS_DPRINTK("configure routing for dev %016llx "
1042 "reported 0x%x. Forgotten\n",
1043 SAS_ADDR(ex_phy->attached_sas_addr), res);
1044 sas_disable_routing(dev, ex_phy->attached_sas_addr);
1045 return res;
1046 }
1047
Dan Williamsb17caa12012-06-21 23:36:20 -07001048 if (sas_ex_join_wide_port(dev, phy_id)) {
Darrick J. Wong423f7cf2007-01-30 12:07:27 -08001049 SAS_DPRINTK("Attaching ex phy%d to wide port %016llx\n",
1050 phy_id, SAS_ADDR(ex_phy->attached_sas_addr));
1051 return res;
1052 }
1053
James Bottomley2908d772006-08-29 09:22:51 -05001054 switch (ex_phy->attached_dev_type) {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001055 case SAS_END_DEVICE:
1056 case SAS_SATA_PENDING:
James Bottomley2908d772006-08-29 09:22:51 -05001057 child = sas_ex_discover_end_dev(dev, phy_id);
1058 break;
James Bottomleyaa9f8322013-05-07 14:44:06 -07001059 case SAS_FANOUT_EXPANDER_DEVICE:
James Bottomley2908d772006-08-29 09:22:51 -05001060 if (SAS_ADDR(dev->port->disc.fanout_sas_addr)) {
1061 SAS_DPRINTK("second fanout expander %016llx phy 0x%x "
1062 "attached to ex %016llx phy 0x%x\n",
1063 SAS_ADDR(ex_phy->attached_sas_addr),
1064 ex_phy->attached_phy_id,
1065 SAS_ADDR(dev->sas_addr),
1066 phy_id);
1067 sas_ex_disable_phy(dev, phy_id);
1068 break;
1069 } else
1070 memcpy(dev->port->disc.fanout_sas_addr,
1071 ex_phy->attached_sas_addr, SAS_ADDR_SIZE);
1072 /* fallthrough */
James Bottomleyaa9f8322013-05-07 14:44:06 -07001073 case SAS_EDGE_EXPANDER_DEVICE:
James Bottomley2908d772006-08-29 09:22:51 -05001074 child = sas_ex_discover_expander(dev, phy_id);
1075 break;
1076 default:
1077 break;
1078 }
1079
1080 if (child) {
1081 int i;
1082
1083 for (i = 0; i < ex->num_phys; i++) {
1084 if (ex->ex_phy[i].phy_state == PHY_VACANT ||
1085 ex->ex_phy[i].phy_state == PHY_NOT_PRESENT)
1086 continue;
Tom Peng19252de2009-07-17 16:02:04 +08001087 /*
1088 * Due to races, the phy might not get added to the
1089 * wide port, so we add the phy to the wide port here.
1090 */
James Bottomley2908d772006-08-29 09:22:51 -05001091 if (SAS_ADDR(ex->ex_phy[i].attached_sas_addr) ==
Tom Peng19252de2009-07-17 16:02:04 +08001092 SAS_ADDR(child->sas_addr)) {
James Bottomley2908d772006-08-29 09:22:51 -05001093 ex->ex_phy[i].phy_state= PHY_DEVICE_DISCOVERED;
Dan Williamsb17caa12012-06-21 23:36:20 -07001094 if (sas_ex_join_wide_port(dev, i))
Tom Peng19252de2009-07-17 16:02:04 +08001095 SAS_DPRINTK("Attaching ex phy%d to wide port %016llx\n",
1096 i, SAS_ADDR(ex->ex_phy[i].attached_sas_addr));
1097
1098 }
James Bottomley2908d772006-08-29 09:22:51 -05001099 }
1100 }
1101
1102 return res;
1103}
1104
1105static int sas_find_sub_addr(struct domain_device *dev, u8 *sub_addr)
1106{
1107 struct expander_device *ex = &dev->ex_dev;
1108 int i;
1109
1110 for (i = 0; i < ex->num_phys; i++) {
1111 struct ex_phy *phy = &ex->ex_phy[i];
1112
1113 if (phy->phy_state == PHY_VACANT ||
1114 phy->phy_state == PHY_NOT_PRESENT)
1115 continue;
1116
James Bottomleyaa9f8322013-05-07 14:44:06 -07001117 if ((phy->attached_dev_type == SAS_EDGE_EXPANDER_DEVICE ||
1118 phy->attached_dev_type == SAS_FANOUT_EXPANDER_DEVICE) &&
James Bottomley2908d772006-08-29 09:22:51 -05001119 phy->routing_attr == SUBTRACTIVE_ROUTING) {
1120
1121 memcpy(sub_addr, phy->attached_sas_addr,SAS_ADDR_SIZE);
1122
1123 return 1;
1124 }
1125 }
1126 return 0;
1127}
1128
1129static int sas_check_level_subtractive_boundary(struct domain_device *dev)
1130{
1131 struct expander_device *ex = &dev->ex_dev;
1132 struct domain_device *child;
1133 u8 sub_addr[8] = {0, };
1134
1135 list_for_each_entry(child, &ex->children, siblings) {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001136 if (child->dev_type != SAS_EDGE_EXPANDER_DEVICE &&
1137 child->dev_type != SAS_FANOUT_EXPANDER_DEVICE)
James Bottomley2908d772006-08-29 09:22:51 -05001138 continue;
1139 if (sub_addr[0] == 0) {
1140 sas_find_sub_addr(child, sub_addr);
1141 continue;
1142 } else {
1143 u8 s2[8];
1144
1145 if (sas_find_sub_addr(child, s2) &&
1146 (SAS_ADDR(sub_addr) != SAS_ADDR(s2))) {
1147
1148 SAS_DPRINTK("ex %016llx->%016llx-?->%016llx "
1149 "diverges from subtractive "
1150 "boundary %016llx\n",
1151 SAS_ADDR(dev->sas_addr),
1152 SAS_ADDR(child->sas_addr),
1153 SAS_ADDR(s2),
1154 SAS_ADDR(sub_addr));
1155
1156 sas_ex_disable_port(child, s2);
1157 }
1158 }
1159 }
1160 return 0;
1161}
1162/**
1163 * sas_ex_discover_devices -- discover devices attached to this expander
1164 * dev: pointer to the expander domain device
1165 * single: if you want to do a single phy, else set to -1;
1166 *
1167 * Configure this expander for use with its devices and register the
1168 * devices of this expander.
1169 */
1170static int sas_ex_discover_devices(struct domain_device *dev, int single)
1171{
1172 struct expander_device *ex = &dev->ex_dev;
1173 int i = 0, end = ex->num_phys;
1174 int res = 0;
1175
1176 if (0 <= single && single < end) {
1177 i = single;
1178 end = i+1;
1179 }
1180
1181 for ( ; i < end; i++) {
1182 struct ex_phy *ex_phy = &ex->ex_phy[i];
1183
1184 if (ex_phy->phy_state == PHY_VACANT ||
1185 ex_phy->phy_state == PHY_NOT_PRESENT ||
1186 ex_phy->phy_state == PHY_DEVICE_DISCOVERED)
1187 continue;
1188
1189 switch (ex_phy->linkrate) {
James Bottomley88edf742006-09-06 17:36:13 -05001190 case SAS_PHY_DISABLED:
1191 case SAS_PHY_RESET_PROBLEM:
1192 case SAS_SATA_PORT_SELECTOR:
James Bottomley2908d772006-08-29 09:22:51 -05001193 continue;
1194 default:
1195 res = sas_ex_discover_dev(dev, i);
1196 if (res)
1197 break;
1198 continue;
1199 }
1200 }
1201
1202 if (!res)
1203 sas_check_level_subtractive_boundary(dev);
1204
1205 return res;
1206}
1207
1208static int sas_check_ex_subtractive_boundary(struct domain_device *dev)
1209{
1210 struct expander_device *ex = &dev->ex_dev;
1211 int i;
1212 u8 *sub_sas_addr = NULL;
1213
James Bottomleyaa9f8322013-05-07 14:44:06 -07001214 if (dev->dev_type != SAS_EDGE_EXPANDER_DEVICE)
James Bottomley2908d772006-08-29 09:22:51 -05001215 return 0;
1216
1217 for (i = 0; i < ex->num_phys; i++) {
1218 struct ex_phy *phy = &ex->ex_phy[i];
1219
1220 if (phy->phy_state == PHY_VACANT ||
1221 phy->phy_state == PHY_NOT_PRESENT)
1222 continue;
1223
James Bottomleyaa9f8322013-05-07 14:44:06 -07001224 if ((phy->attached_dev_type == SAS_FANOUT_EXPANDER_DEVICE ||
1225 phy->attached_dev_type == SAS_EDGE_EXPANDER_DEVICE) &&
James Bottomley2908d772006-08-29 09:22:51 -05001226 phy->routing_attr == SUBTRACTIVE_ROUTING) {
1227
1228 if (!sub_sas_addr)
1229 sub_sas_addr = &phy->attached_sas_addr[0];
1230 else if (SAS_ADDR(sub_sas_addr) !=
1231 SAS_ADDR(phy->attached_sas_addr)) {
1232
1233 SAS_DPRINTK("ex %016llx phy 0x%x "
1234 "diverges(%016llx) on subtractive "
1235 "boundary(%016llx). Disabled\n",
1236 SAS_ADDR(dev->sas_addr), i,
1237 SAS_ADDR(phy->attached_sas_addr),
1238 SAS_ADDR(sub_sas_addr));
1239 sas_ex_disable_phy(dev, i);
1240 }
1241 }
1242 }
1243 return 0;
1244}
1245
1246static void sas_print_parent_topology_bug(struct domain_device *child,
1247 struct ex_phy *parent_phy,
1248 struct ex_phy *child_phy)
1249{
James Bottomley2908d772006-08-29 09:22:51 -05001250 static const char *ex_type[] = {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001251 [SAS_EDGE_EXPANDER_DEVICE] = "edge",
1252 [SAS_FANOUT_EXPANDER_DEVICE] = "fanout",
James Bottomley2908d772006-08-29 09:22:51 -05001253 };
1254 struct domain_device *parent = child->parent;
1255
Dan Williamsd214d812012-01-16 11:56:50 -08001256 sas_printk("%s ex %016llx phy 0x%x <--> %s ex %016llx "
1257 "phy 0x%x has %c:%c routing link!\n",
James Bottomley2908d772006-08-29 09:22:51 -05001258
1259 ex_type[parent->dev_type],
1260 SAS_ADDR(parent->sas_addr),
1261 parent_phy->phy_id,
1262
1263 ex_type[child->dev_type],
1264 SAS_ADDR(child->sas_addr),
1265 child_phy->phy_id,
1266
Dan Williamsd214d812012-01-16 11:56:50 -08001267 sas_route_char(parent, parent_phy),
1268 sas_route_char(child, child_phy));
James Bottomley2908d772006-08-29 09:22:51 -05001269}
1270
1271static int sas_check_eeds(struct domain_device *child,
1272 struct ex_phy *parent_phy,
1273 struct ex_phy *child_phy)
1274{
1275 int res = 0;
1276 struct domain_device *parent = child->parent;
1277
1278 if (SAS_ADDR(parent->port->disc.fanout_sas_addr) != 0) {
1279 res = -ENODEV;
1280 SAS_DPRINTK("edge ex %016llx phy S:0x%x <--> edge ex %016llx "
1281 "phy S:0x%x, while there is a fanout ex %016llx\n",
1282 SAS_ADDR(parent->sas_addr),
1283 parent_phy->phy_id,
1284 SAS_ADDR(child->sas_addr),
1285 child_phy->phy_id,
1286 SAS_ADDR(parent->port->disc.fanout_sas_addr));
1287 } else if (SAS_ADDR(parent->port->disc.eeds_a) == 0) {
1288 memcpy(parent->port->disc.eeds_a, parent->sas_addr,
1289 SAS_ADDR_SIZE);
1290 memcpy(parent->port->disc.eeds_b, child->sas_addr,
1291 SAS_ADDR_SIZE);
1292 } else if (((SAS_ADDR(parent->port->disc.eeds_a) ==
1293 SAS_ADDR(parent->sas_addr)) ||
1294 (SAS_ADDR(parent->port->disc.eeds_a) ==
1295 SAS_ADDR(child->sas_addr)))
1296 &&
1297 ((SAS_ADDR(parent->port->disc.eeds_b) ==
1298 SAS_ADDR(parent->sas_addr)) ||
1299 (SAS_ADDR(parent->port->disc.eeds_b) ==
1300 SAS_ADDR(child->sas_addr))))
1301 ;
1302 else {
1303 res = -ENODEV;
1304 SAS_DPRINTK("edge ex %016llx phy 0x%x <--> edge ex %016llx "
1305 "phy 0x%x link forms a third EEDS!\n",
1306 SAS_ADDR(parent->sas_addr),
1307 parent_phy->phy_id,
1308 SAS_ADDR(child->sas_addr),
1309 child_phy->phy_id);
1310 }
1311
1312 return res;
1313}
1314
1315/* Here we spill over 80 columns. It is intentional.
1316 */
1317static int sas_check_parent_topology(struct domain_device *child)
1318{
1319 struct expander_device *child_ex = &child->ex_dev;
1320 struct expander_device *parent_ex;
1321 int i;
1322 int res = 0;
1323
1324 if (!child->parent)
1325 return 0;
1326
James Bottomleyaa9f8322013-05-07 14:44:06 -07001327 if (child->parent->dev_type != SAS_EDGE_EXPANDER_DEVICE &&
1328 child->parent->dev_type != SAS_FANOUT_EXPANDER_DEVICE)
James Bottomley2908d772006-08-29 09:22:51 -05001329 return 0;
1330
1331 parent_ex = &child->parent->ex_dev;
1332
1333 for (i = 0; i < parent_ex->num_phys; i++) {
1334 struct ex_phy *parent_phy = &parent_ex->ex_phy[i];
1335 struct ex_phy *child_phy;
1336
1337 if (parent_phy->phy_state == PHY_VACANT ||
1338 parent_phy->phy_state == PHY_NOT_PRESENT)
1339 continue;
1340
1341 if (SAS_ADDR(parent_phy->attached_sas_addr) != SAS_ADDR(child->sas_addr))
1342 continue;
1343
1344 child_phy = &child_ex->ex_phy[parent_phy->attached_phy_id];
1345
1346 switch (child->parent->dev_type) {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001347 case SAS_EDGE_EXPANDER_DEVICE:
1348 if (child->dev_type == SAS_FANOUT_EXPANDER_DEVICE) {
James Bottomley2908d772006-08-29 09:22:51 -05001349 if (parent_phy->routing_attr != SUBTRACTIVE_ROUTING ||
1350 child_phy->routing_attr != TABLE_ROUTING) {
1351 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1352 res = -ENODEV;
1353 }
1354 } else if (parent_phy->routing_attr == SUBTRACTIVE_ROUTING) {
1355 if (child_phy->routing_attr == SUBTRACTIVE_ROUTING) {
1356 res = sas_check_eeds(child, parent_phy, child_phy);
1357 } else if (child_phy->routing_attr != TABLE_ROUTING) {
1358 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1359 res = -ENODEV;
1360 }
Luben Tuikovffaac8f2011-09-22 09:41:36 -07001361 } else if (parent_phy->routing_attr == TABLE_ROUTING) {
1362 if (child_phy->routing_attr == SUBTRACTIVE_ROUTING ||
1363 (child_phy->routing_attr == TABLE_ROUTING &&
1364 child_ex->t2t_supp && parent_ex->t2t_supp)) {
1365 /* All good */;
1366 } else {
1367 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1368 res = -ENODEV;
1369 }
James Bottomley2908d772006-08-29 09:22:51 -05001370 }
1371 break;
James Bottomleyaa9f8322013-05-07 14:44:06 -07001372 case SAS_FANOUT_EXPANDER_DEVICE:
James Bottomley2908d772006-08-29 09:22:51 -05001373 if (parent_phy->routing_attr != TABLE_ROUTING ||
1374 child_phy->routing_attr != SUBTRACTIVE_ROUTING) {
1375 sas_print_parent_topology_bug(child, parent_phy, child_phy);
1376 res = -ENODEV;
1377 }
1378 break;
1379 default:
1380 break;
1381 }
1382 }
1383
1384 return res;
1385}
1386
1387#define RRI_REQ_SIZE 16
1388#define RRI_RESP_SIZE 44
1389
1390static int sas_configure_present(struct domain_device *dev, int phy_id,
1391 u8 *sas_addr, int *index, int *present)
1392{
1393 int i, res = 0;
1394 struct expander_device *ex = &dev->ex_dev;
1395 struct ex_phy *phy = &ex->ex_phy[phy_id];
1396 u8 *rri_req;
1397 u8 *rri_resp;
1398
1399 *present = 0;
1400 *index = 0;
1401
1402 rri_req = alloc_smp_req(RRI_REQ_SIZE);
1403 if (!rri_req)
1404 return -ENOMEM;
1405
1406 rri_resp = alloc_smp_resp(RRI_RESP_SIZE);
1407 if (!rri_resp) {
1408 kfree(rri_req);
1409 return -ENOMEM;
1410 }
1411
1412 rri_req[1] = SMP_REPORT_ROUTE_INFO;
1413 rri_req[9] = phy_id;
1414
1415 for (i = 0; i < ex->max_route_indexes ; i++) {
1416 *(__be16 *)(rri_req+6) = cpu_to_be16(i);
1417 res = smp_execute_task(dev, rri_req, RRI_REQ_SIZE, rri_resp,
1418 RRI_RESP_SIZE);
1419 if (res)
1420 goto out;
1421 res = rri_resp[2];
1422 if (res == SMP_RESP_NO_INDEX) {
1423 SAS_DPRINTK("overflow of indexes: dev %016llx "
1424 "phy 0x%x index 0x%x\n",
1425 SAS_ADDR(dev->sas_addr), phy_id, i);
1426 goto out;
1427 } else if (res != SMP_RESP_FUNC_ACC) {
1428 SAS_DPRINTK("%s: dev %016llx phy 0x%x index 0x%x "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001429 "result 0x%x\n", __func__,
James Bottomley2908d772006-08-29 09:22:51 -05001430 SAS_ADDR(dev->sas_addr), phy_id, i, res);
1431 goto out;
1432 }
1433 if (SAS_ADDR(sas_addr) != 0) {
1434 if (SAS_ADDR(rri_resp+16) == SAS_ADDR(sas_addr)) {
1435 *index = i;
1436 if ((rri_resp[12] & 0x80) == 0x80)
1437 *present = 0;
1438 else
1439 *present = 1;
1440 goto out;
1441 } else if (SAS_ADDR(rri_resp+16) == 0) {
1442 *index = i;
1443 *present = 0;
1444 goto out;
1445 }
1446 } else if (SAS_ADDR(rri_resp+16) == 0 &&
1447 phy->last_da_index < i) {
1448 phy->last_da_index = i;
1449 *index = i;
1450 *present = 0;
1451 goto out;
1452 }
1453 }
1454 res = -1;
1455out:
1456 kfree(rri_req);
1457 kfree(rri_resp);
1458 return res;
1459}
1460
1461#define CRI_REQ_SIZE 44
1462#define CRI_RESP_SIZE 8
1463
1464static int sas_configure_set(struct domain_device *dev, int phy_id,
1465 u8 *sas_addr, int index, int include)
1466{
1467 int res;
1468 u8 *cri_req;
1469 u8 *cri_resp;
1470
1471 cri_req = alloc_smp_req(CRI_REQ_SIZE);
1472 if (!cri_req)
1473 return -ENOMEM;
1474
1475 cri_resp = alloc_smp_resp(CRI_RESP_SIZE);
1476 if (!cri_resp) {
1477 kfree(cri_req);
1478 return -ENOMEM;
1479 }
1480
1481 cri_req[1] = SMP_CONF_ROUTE_INFO;
1482 *(__be16 *)(cri_req+6) = cpu_to_be16(index);
1483 cri_req[9] = phy_id;
1484 if (SAS_ADDR(sas_addr) == 0 || !include)
1485 cri_req[12] |= 0x80;
1486 memcpy(cri_req+16, sas_addr, SAS_ADDR_SIZE);
1487
1488 res = smp_execute_task(dev, cri_req, CRI_REQ_SIZE, cri_resp,
1489 CRI_RESP_SIZE);
1490 if (res)
1491 goto out;
1492 res = cri_resp[2];
1493 if (res == SMP_RESP_NO_INDEX) {
1494 SAS_DPRINTK("overflow of indexes: dev %016llx phy 0x%x "
1495 "index 0x%x\n",
1496 SAS_ADDR(dev->sas_addr), phy_id, index);
1497 }
1498out:
1499 kfree(cri_req);
1500 kfree(cri_resp);
1501 return res;
1502}
1503
1504static int sas_configure_phy(struct domain_device *dev, int phy_id,
1505 u8 *sas_addr, int include)
1506{
1507 int index;
1508 int present;
1509 int res;
1510
1511 res = sas_configure_present(dev, phy_id, sas_addr, &index, &present);
1512 if (res)
1513 return res;
1514 if (include ^ present)
1515 return sas_configure_set(dev, phy_id, sas_addr, index,include);
1516
1517 return res;
1518}
1519
1520/**
1521 * sas_configure_parent -- configure routing table of parent
1522 * parent: parent expander
1523 * child: child expander
1524 * sas_addr: SAS port identifier of device directly attached to child
1525 */
1526static int sas_configure_parent(struct domain_device *parent,
1527 struct domain_device *child,
1528 u8 *sas_addr, int include)
1529{
1530 struct expander_device *ex_parent = &parent->ex_dev;
1531 int res = 0;
1532 int i;
1533
1534 if (parent->parent) {
1535 res = sas_configure_parent(parent->parent, parent, sas_addr,
1536 include);
1537 if (res)
1538 return res;
1539 }
1540
1541 if (ex_parent->conf_route_table == 0) {
1542 SAS_DPRINTK("ex %016llx has self-configuring routing table\n",
1543 SAS_ADDR(parent->sas_addr));
1544 return 0;
1545 }
1546
1547 for (i = 0; i < ex_parent->num_phys; i++) {
1548 struct ex_phy *phy = &ex_parent->ex_phy[i];
1549
1550 if ((phy->routing_attr == TABLE_ROUTING) &&
1551 (SAS_ADDR(phy->attached_sas_addr) ==
1552 SAS_ADDR(child->sas_addr))) {
1553 res = sas_configure_phy(parent, i, sas_addr, include);
1554 if (res)
1555 return res;
1556 }
1557 }
1558
1559 return res;
1560}
1561
1562/**
1563 * sas_configure_routing -- configure routing
1564 * dev: expander device
1565 * sas_addr: port identifier of device directly attached to the expander device
1566 */
1567static int sas_configure_routing(struct domain_device *dev, u8 *sas_addr)
1568{
1569 if (dev->parent)
1570 return sas_configure_parent(dev->parent, dev, sas_addr, 1);
1571 return 0;
1572}
1573
1574static int sas_disable_routing(struct domain_device *dev, u8 *sas_addr)
1575{
1576 if (dev->parent)
1577 return sas_configure_parent(dev->parent, dev, sas_addr, 0);
1578 return 0;
1579}
1580
James Bottomley2908d772006-08-29 09:22:51 -05001581/**
1582 * sas_discover_expander -- expander discovery
1583 * @ex: pointer to expander domain device
1584 *
1585 * See comment in sas_discover_sata().
1586 */
1587static int sas_discover_expander(struct domain_device *dev)
1588{
1589 int res;
1590
1591 res = sas_notify_lldd_dev_found(dev);
1592 if (res)
1593 return res;
1594
1595 res = sas_ex_general(dev);
1596 if (res)
1597 goto out_err;
1598 res = sas_ex_manuf_info(dev);
1599 if (res)
1600 goto out_err;
1601
1602 res = sas_expander_discover(dev);
1603 if (res) {
1604 SAS_DPRINTK("expander %016llx discovery failed(0x%x)\n",
1605 SAS_ADDR(dev->sas_addr), res);
1606 goto out_err;
1607 }
1608
1609 sas_check_ex_subtractive_boundary(dev);
1610 res = sas_check_parent_topology(dev);
1611 if (res)
1612 goto out_err;
1613 return 0;
1614out_err:
1615 sas_notify_lldd_dev_gone(dev);
1616 return res;
1617}
1618
1619static int sas_ex_level_discovery(struct asd_sas_port *port, const int level)
1620{
1621 int res = 0;
1622 struct domain_device *dev;
1623
1624 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001625 if (dev->dev_type == SAS_EDGE_EXPANDER_DEVICE ||
1626 dev->dev_type == SAS_FANOUT_EXPANDER_DEVICE) {
James Bottomley2908d772006-08-29 09:22:51 -05001627 struct sas_expander_device *ex =
1628 rphy_to_expander_device(dev->rphy);
1629
1630 if (level == ex->level)
1631 res = sas_ex_discover_devices(dev, -1);
1632 else if (level > 0)
1633 res = sas_ex_discover_devices(port->port_dev, -1);
1634
1635 }
1636 }
1637
1638 return res;
1639}
1640
1641static int sas_ex_bfs_disc(struct asd_sas_port *port)
1642{
1643 int res;
1644 int level;
1645
1646 do {
1647 level = port->disc.max_level;
1648 res = sas_ex_level_discovery(port, level);
1649 mb();
1650 } while (level < port->disc.max_level);
1651
1652 return res;
1653}
1654
1655int sas_discover_root_expander(struct domain_device *dev)
1656{
1657 int res;
1658 struct sas_expander_device *ex = rphy_to_expander_device(dev->rphy);
1659
Darrick J. Wongbf451202007-01-11 14:14:52 -08001660 res = sas_rphy_add(dev->rphy);
1661 if (res)
1662 goto out_err;
James Bottomley2908d772006-08-29 09:22:51 -05001663
1664 ex->level = dev->port->disc.max_level; /* 0 */
1665 res = sas_discover_expander(dev);
Darrick J. Wongbf451202007-01-11 14:14:52 -08001666 if (res)
1667 goto out_err2;
James Bottomley2908d772006-08-29 09:22:51 -05001668
Darrick J. Wongbf451202007-01-11 14:14:52 -08001669 sas_ex_bfs_disc(dev->port);
1670
1671 return res;
1672
1673out_err2:
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001674 sas_rphy_remove(dev->rphy);
Darrick J. Wongbf451202007-01-11 14:14:52 -08001675out_err:
James Bottomley2908d772006-08-29 09:22:51 -05001676 return res;
1677}
1678
1679/* ---------- Domain revalidation ---------- */
1680
1681static int sas_get_phy_discover(struct domain_device *dev,
1682 int phy_id, struct smp_resp *disc_resp)
1683{
1684 int res;
1685 u8 *disc_req;
1686
1687 disc_req = alloc_smp_req(DISCOVER_REQ_SIZE);
1688 if (!disc_req)
1689 return -ENOMEM;
1690
1691 disc_req[1] = SMP_DISCOVER;
1692 disc_req[9] = phy_id;
1693
1694 res = smp_execute_task(dev, disc_req, DISCOVER_REQ_SIZE,
1695 disc_resp, DISCOVER_RESP_SIZE);
1696 if (res)
1697 goto out;
1698 else if (disc_resp->result != SMP_RESP_FUNC_ACC) {
1699 res = disc_resp->result;
1700 goto out;
1701 }
1702out:
1703 kfree(disc_req);
1704 return res;
1705}
1706
1707static int sas_get_phy_change_count(struct domain_device *dev,
1708 int phy_id, int *pcc)
1709{
1710 int res;
1711 struct smp_resp *disc_resp;
1712
1713 disc_resp = alloc_smp_resp(DISCOVER_RESP_SIZE);
1714 if (!disc_resp)
1715 return -ENOMEM;
1716
1717 res = sas_get_phy_discover(dev, phy_id, disc_resp);
1718 if (!res)
1719 *pcc = disc_resp->disc.change_count;
1720
1721 kfree(disc_resp);
1722 return res;
1723}
1724
Dan Williams354cf822012-01-12 17:57:35 -08001725static int sas_get_phy_attached_dev(struct domain_device *dev, int phy_id,
James Bottomleyaa9f8322013-05-07 14:44:06 -07001726 u8 *sas_addr, enum sas_device_type *type)
James Bottomley2908d772006-08-29 09:22:51 -05001727{
1728 int res;
1729 struct smp_resp *disc_resp;
1730 struct discover_resp *dr;
1731
1732 disc_resp = alloc_smp_resp(DISCOVER_RESP_SIZE);
1733 if (!disc_resp)
1734 return -ENOMEM;
1735 dr = &disc_resp->disc;
1736
1737 res = sas_get_phy_discover(dev, phy_id, disc_resp);
Dan Williams354cf822012-01-12 17:57:35 -08001738 if (res == 0) {
1739 memcpy(sas_addr, disc_resp->disc.attached_sas_addr, 8);
1740 *type = to_dev_type(dr);
1741 if (*type == 0)
1742 memset(sas_addr, 0, 8);
James Bottomley2908d772006-08-29 09:22:51 -05001743 }
1744 kfree(disc_resp);
1745 return res;
1746}
1747
1748static int sas_find_bcast_phy(struct domain_device *dev, int *phy_id,
Tom Peng19252de2009-07-17 16:02:04 +08001749 int from_phy, bool update)
James Bottomley2908d772006-08-29 09:22:51 -05001750{
1751 struct expander_device *ex = &dev->ex_dev;
1752 int res = 0;
1753 int i;
1754
1755 for (i = from_phy; i < ex->num_phys; i++) {
1756 int phy_change_count = 0;
1757
1758 res = sas_get_phy_change_count(dev, i, &phy_change_count);
Thomas Jackson16994902012-02-17 18:33:10 -08001759 switch (res) {
1760 case SMP_RESP_PHY_VACANT:
1761 case SMP_RESP_NO_PHY:
1762 continue;
1763 case SMP_RESP_FUNC_ACC:
1764 break;
1765 default:
1766 return res;
1767 }
1768
1769 if (phy_change_count != ex->ex_phy[i].phy_change_count) {
Tom Peng19252de2009-07-17 16:02:04 +08001770 if (update)
1771 ex->ex_phy[i].phy_change_count =
1772 phy_change_count;
James Bottomley2908d772006-08-29 09:22:51 -05001773 *phy_id = i;
1774 return 0;
1775 }
1776 }
Thomas Jackson16994902012-02-17 18:33:10 -08001777 return 0;
James Bottomley2908d772006-08-29 09:22:51 -05001778}
1779
1780static int sas_get_ex_change_count(struct domain_device *dev, int *ecc)
1781{
1782 int res;
1783 u8 *rg_req;
1784 struct smp_resp *rg_resp;
1785
1786 rg_req = alloc_smp_req(RG_REQ_SIZE);
1787 if (!rg_req)
1788 return -ENOMEM;
1789
1790 rg_resp = alloc_smp_resp(RG_RESP_SIZE);
1791 if (!rg_resp) {
1792 kfree(rg_req);
1793 return -ENOMEM;
1794 }
1795
1796 rg_req[1] = SMP_REPORT_GENERAL;
1797
1798 res = smp_execute_task(dev, rg_req, RG_REQ_SIZE, rg_resp,
1799 RG_RESP_SIZE);
1800 if (res)
1801 goto out;
1802 if (rg_resp->result != SMP_RESP_FUNC_ACC) {
1803 res = rg_resp->result;
1804 goto out;
1805 }
1806
1807 *ecc = be16_to_cpu(rg_resp->rg.change_count);
1808out:
1809 kfree(rg_resp);
1810 kfree(rg_req);
1811 return res;
1812}
Tom Peng19252de2009-07-17 16:02:04 +08001813/**
1814 * sas_find_bcast_dev - find the device issue BROADCAST(CHANGE).
1815 * @dev:domain device to be detect.
1816 * @src_dev: the device which originated BROADCAST(CHANGE).
1817 *
Masanari Iida02582e92012-08-22 19:11:26 +09001818 * Add self-configuration expander support. Suppose two expander cascading,
Tom Peng19252de2009-07-17 16:02:04 +08001819 * when the first level expander is self-configuring, hotplug the disks in
1820 * second level expander, BROADCAST(CHANGE) will not only be originated
1821 * in the second level expander, but also be originated in the first level
1822 * expander (see SAS protocol SAS 2r-14, 7.11 for detail), it is to say,
1823 * expander changed count in two level expanders will all increment at least
1824 * once, but the phy which chang count has changed is the source device which
1825 * we concerned.
1826 */
James Bottomley2908d772006-08-29 09:22:51 -05001827
1828static int sas_find_bcast_dev(struct domain_device *dev,
1829 struct domain_device **src_dev)
1830{
1831 struct expander_device *ex = &dev->ex_dev;
1832 int ex_change_count = -1;
Tom Peng19252de2009-07-17 16:02:04 +08001833 int phy_id = -1;
James Bottomley2908d772006-08-29 09:22:51 -05001834 int res;
Tom Peng19252de2009-07-17 16:02:04 +08001835 struct domain_device *ch;
James Bottomley2908d772006-08-29 09:22:51 -05001836
1837 res = sas_get_ex_change_count(dev, &ex_change_count);
1838 if (res)
1839 goto out;
Tom Peng19252de2009-07-17 16:02:04 +08001840 if (ex_change_count != -1 && ex_change_count != ex->ex_change_count) {
1841 /* Just detect if this expander phys phy change count changed,
1842 * in order to determine if this expander originate BROADCAST,
1843 * and do not update phy change count field in our structure.
1844 */
1845 res = sas_find_bcast_phy(dev, &phy_id, 0, false);
1846 if (phy_id != -1) {
1847 *src_dev = dev;
1848 ex->ex_change_count = ex_change_count;
1849 SAS_DPRINTK("Expander phy change count has changed\n");
1850 return res;
1851 } else
1852 SAS_DPRINTK("Expander phys DID NOT change\n");
1853 }
1854 list_for_each_entry(ch, &ex->children, siblings) {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001855 if (ch->dev_type == SAS_EDGE_EXPANDER_DEVICE || ch->dev_type == SAS_FANOUT_EXPANDER_DEVICE) {
Tom Peng19252de2009-07-17 16:02:04 +08001856 res = sas_find_bcast_dev(ch, src_dev);
Mark Salyzyn24926da2011-09-01 06:11:17 -07001857 if (*src_dev)
Tom Peng19252de2009-07-17 16:02:04 +08001858 return res;
James Bottomley2908d772006-08-29 09:22:51 -05001859 }
1860 }
1861out:
1862 return res;
1863}
1864
Dan Williams1a34c062011-09-21 22:05:34 -07001865static void sas_unregister_ex_tree(struct asd_sas_port *port, struct domain_device *dev)
James Bottomley2908d772006-08-29 09:22:51 -05001866{
1867 struct expander_device *ex = &dev->ex_dev;
1868 struct domain_device *child, *n;
1869
1870 list_for_each_entry_safe(child, n, &ex->children, siblings) {
Dan Williamse1399422012-01-07 08:52:39 +00001871 set_bit(SAS_DEV_GONE, &child->state);
James Bottomleyaa9f8322013-05-07 14:44:06 -07001872 if (child->dev_type == SAS_EDGE_EXPANDER_DEVICE ||
1873 child->dev_type == SAS_FANOUT_EXPANDER_DEVICE)
Dan Williams1a34c062011-09-21 22:05:34 -07001874 sas_unregister_ex_tree(port, child);
James Bottomley2908d772006-08-29 09:22:51 -05001875 else
Dan Williams1a34c062011-09-21 22:05:34 -07001876 sas_unregister_dev(port, child);
James Bottomley2908d772006-08-29 09:22:51 -05001877 }
Dan Williams1a34c062011-09-21 22:05:34 -07001878 sas_unregister_dev(port, dev);
James Bottomley2908d772006-08-29 09:22:51 -05001879}
1880
1881static void sas_unregister_devs_sas_addr(struct domain_device *parent,
Tom Peng19252de2009-07-17 16:02:04 +08001882 int phy_id, bool last)
James Bottomley2908d772006-08-29 09:22:51 -05001883{
1884 struct expander_device *ex_dev = &parent->ex_dev;
1885 struct ex_phy *phy = &ex_dev->ex_phy[phy_id];
Dan Williamsf41a0c42011-12-21 21:33:17 -08001886 struct domain_device *child, *n, *found = NULL;
Tom Peng19252de2009-07-17 16:02:04 +08001887 if (last) {
1888 list_for_each_entry_safe(child, n,
1889 &ex_dev->children, siblings) {
1890 if (SAS_ADDR(child->sas_addr) ==
1891 SAS_ADDR(phy->attached_sas_addr)) {
Dan Williamse1399422012-01-07 08:52:39 +00001892 set_bit(SAS_DEV_GONE, &child->state);
James Bottomleyaa9f8322013-05-07 14:44:06 -07001893 if (child->dev_type == SAS_EDGE_EXPANDER_DEVICE ||
1894 child->dev_type == SAS_FANOUT_EXPANDER_DEVICE)
Dan Williams1a34c062011-09-21 22:05:34 -07001895 sas_unregister_ex_tree(parent->port, child);
Tom Peng19252de2009-07-17 16:02:04 +08001896 else
Dan Williams1a34c062011-09-21 22:05:34 -07001897 sas_unregister_dev(parent->port, child);
Dan Williamsf41a0c42011-12-21 21:33:17 -08001898 found = child;
Tom Peng19252de2009-07-17 16:02:04 +08001899 break;
1900 }
James Bottomley2908d772006-08-29 09:22:51 -05001901 }
Tom Peng19252de2009-07-17 16:02:04 +08001902 sas_disable_routing(parent, phy->attached_sas_addr);
James Bottomley2908d772006-08-29 09:22:51 -05001903 }
James Bottomley2908d772006-08-29 09:22:51 -05001904 memset(phy->attached_sas_addr, 0, SAS_ADDR_SIZE);
Mark Salyzyna73914c2011-09-22 08:32:23 -07001905 if (phy->port) {
1906 sas_port_delete_phy(phy->port, phy->phy);
Dan Williamsf41a0c42011-12-21 21:33:17 -08001907 sas_device_set_phy(found, phy->port);
Mark Salyzyna73914c2011-09-22 08:32:23 -07001908 if (phy->port->num_phys == 0)
1909 sas_port_delete(phy->port);
1910 phy->port = NULL;
1911 }
James Bottomley2908d772006-08-29 09:22:51 -05001912}
1913
1914static int sas_discover_bfs_by_root_level(struct domain_device *root,
1915 const int level)
1916{
1917 struct expander_device *ex_root = &root->ex_dev;
1918 struct domain_device *child;
1919 int res = 0;
1920
1921 list_for_each_entry(child, &ex_root->children, siblings) {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001922 if (child->dev_type == SAS_EDGE_EXPANDER_DEVICE ||
1923 child->dev_type == SAS_FANOUT_EXPANDER_DEVICE) {
James Bottomley2908d772006-08-29 09:22:51 -05001924 struct sas_expander_device *ex =
1925 rphy_to_expander_device(child->rphy);
1926
1927 if (level > ex->level)
1928 res = sas_discover_bfs_by_root_level(child,
1929 level);
1930 else if (level == ex->level)
1931 res = sas_ex_discover_devices(child, -1);
1932 }
1933 }
1934 return res;
1935}
1936
1937static int sas_discover_bfs_by_root(struct domain_device *dev)
1938{
1939 int res;
1940 struct sas_expander_device *ex = rphy_to_expander_device(dev->rphy);
1941 int level = ex->level+1;
1942
1943 res = sas_ex_discover_devices(dev, -1);
1944 if (res)
1945 goto out;
1946 do {
1947 res = sas_discover_bfs_by_root_level(dev, level);
1948 mb();
1949 level += 1;
1950 } while (level <= dev->port->disc.max_level);
1951out:
1952 return res;
1953}
1954
1955static int sas_discover_new(struct domain_device *dev, int phy_id)
1956{
1957 struct ex_phy *ex_phy = &dev->ex_dev.ex_phy[phy_id];
1958 struct domain_device *child;
Dan Williamsb17caa12012-06-21 23:36:20 -07001959 int res;
James Bottomley2908d772006-08-29 09:22:51 -05001960
1961 SAS_DPRINTK("ex %016llx phy%d new device attached\n",
1962 SAS_ADDR(dev->sas_addr), phy_id);
1963 res = sas_ex_phy_discover(dev, phy_id);
1964 if (res)
Dan Williamsb17caa12012-06-21 23:36:20 -07001965 return res;
1966
1967 if (sas_ex_join_wide_port(dev, phy_id))
Tom Peng19252de2009-07-17 16:02:04 +08001968 return 0;
Dan Williamsb17caa12012-06-21 23:36:20 -07001969
James Bottomley2908d772006-08-29 09:22:51 -05001970 res = sas_ex_discover_devices(dev, phy_id);
Dan Williamsb17caa12012-06-21 23:36:20 -07001971 if (res)
1972 return res;
James Bottomley2908d772006-08-29 09:22:51 -05001973 list_for_each_entry(child, &dev->ex_dev.children, siblings) {
1974 if (SAS_ADDR(child->sas_addr) ==
1975 SAS_ADDR(ex_phy->attached_sas_addr)) {
James Bottomleyaa9f8322013-05-07 14:44:06 -07001976 if (child->dev_type == SAS_EDGE_EXPANDER_DEVICE ||
1977 child->dev_type == SAS_FANOUT_EXPANDER_DEVICE)
James Bottomley2908d772006-08-29 09:22:51 -05001978 res = sas_discover_bfs_by_root(child);
1979 break;
1980 }
1981 }
James Bottomley2908d772006-08-29 09:22:51 -05001982 return res;
1983}
1984
James Bottomleyaa9f8322013-05-07 14:44:06 -07001985static bool dev_type_flutter(enum sas_device_type new, enum sas_device_type old)
Dan Williams354cf822012-01-12 17:57:35 -08001986{
1987 if (old == new)
1988 return true;
1989
1990 /* treat device directed resets as flutter, if we went
James Bottomleyaa9f8322013-05-07 14:44:06 -07001991 * SAS_END_DEVICE to SAS_SATA_PENDING the link needs recovery
Dan Williams354cf822012-01-12 17:57:35 -08001992 */
James Bottomleyaa9f8322013-05-07 14:44:06 -07001993 if ((old == SAS_SATA_PENDING && new == SAS_END_DEVICE) ||
1994 (old == SAS_END_DEVICE && new == SAS_SATA_PENDING))
Dan Williams354cf822012-01-12 17:57:35 -08001995 return true;
1996
1997 return false;
1998}
1999
Tom Peng19252de2009-07-17 16:02:04 +08002000static int sas_rediscover_dev(struct domain_device *dev, int phy_id, bool last)
James Bottomley2908d772006-08-29 09:22:51 -05002001{
2002 struct expander_device *ex = &dev->ex_dev;
2003 struct ex_phy *phy = &ex->ex_phy[phy_id];
James Bottomleyaa9f8322013-05-07 14:44:06 -07002004 enum sas_device_type type = SAS_PHY_UNUSED;
Dan Williams354cf822012-01-12 17:57:35 -08002005 u8 sas_addr[8];
James Bottomley2908d772006-08-29 09:22:51 -05002006 int res;
2007
Jeff Skirvinb2311a22012-06-21 23:36:10 -07002008 memset(sas_addr, 0, 8);
Dan Williams354cf822012-01-12 17:57:35 -08002009 res = sas_get_phy_attached_dev(dev, phy_id, sas_addr, &type);
James Bottomley2908d772006-08-29 09:22:51 -05002010 switch (res) {
2011 case SMP_RESP_NO_PHY:
2012 phy->phy_state = PHY_NOT_PRESENT;
Tom Peng19252de2009-07-17 16:02:04 +08002013 sas_unregister_devs_sas_addr(dev, phy_id, last);
Dan Williams354cf822012-01-12 17:57:35 -08002014 return res;
James Bottomley2908d772006-08-29 09:22:51 -05002015 case SMP_RESP_PHY_VACANT:
2016 phy->phy_state = PHY_VACANT;
Tom Peng19252de2009-07-17 16:02:04 +08002017 sas_unregister_devs_sas_addr(dev, phy_id, last);
Dan Williams354cf822012-01-12 17:57:35 -08002018 return res;
James Bottomley2908d772006-08-29 09:22:51 -05002019 case SMP_RESP_FUNC_ACC:
2020 break;
Jeff Skirvinb2311a22012-06-21 23:36:10 -07002021 case -ECOMM:
2022 break;
2023 default:
2024 return res;
James Bottomley2908d772006-08-29 09:22:51 -05002025 }
2026
Jeff Skirvinb2311a22012-06-21 23:36:10 -07002027 if ((SAS_ADDR(sas_addr) == 0) || (res == -ECOMM)) {
James Bottomley2908d772006-08-29 09:22:51 -05002028 phy->phy_state = PHY_EMPTY;
Tom Peng19252de2009-07-17 16:02:04 +08002029 sas_unregister_devs_sas_addr(dev, phy_id, last);
John Garry17d9e392019-04-12 16:57:56 +08002030 /*
2031 * Even though the PHY is empty, for convenience we discover
2032 * the PHY to update the PHY info, like negotiated linkrate.
2033 */
2034 sas_ex_phy_discover(dev, phy_id);
Dan Williams354cf822012-01-12 17:57:35 -08002035 return res;
2036 } else if (SAS_ADDR(sas_addr) == SAS_ADDR(phy->attached_sas_addr) &&
2037 dev_type_flutter(type, phy->attached_dev_type)) {
2038 struct domain_device *ata_dev = sas_ex_to_ata(dev, phy_id);
2039 char *action = "";
2040
James Bottomleya01e70e2006-09-06 19:28:07 -05002041 sas_ex_phy_discover(dev, phy_id);
Dan Williams354cf822012-01-12 17:57:35 -08002042
James Bottomleyaa9f8322013-05-07 14:44:06 -07002043 if (ata_dev && phy->attached_dev_type == SAS_SATA_PENDING)
Dan Williams354cf822012-01-12 17:57:35 -08002044 action = ", needs recovery";
2045 SAS_DPRINTK("ex %016llx phy 0x%x broadcast flutter%s\n",
2046 SAS_ADDR(dev->sas_addr), phy_id, action);
2047 return res;
2048 }
2049
Dan Williamsc666aae2012-01-19 18:43:08 -08002050 /* delete the old link */
2051 if (SAS_ADDR(phy->attached_sas_addr) &&
2052 SAS_ADDR(sas_addr) != SAS_ADDR(phy->attached_sas_addr)) {
2053 SAS_DPRINTK("ex %016llx phy 0x%x replace %016llx\n",
2054 SAS_ADDR(dev->sas_addr), phy_id,
2055 SAS_ADDR(phy->attached_sas_addr));
2056 sas_unregister_devs_sas_addr(dev, phy_id, last);
2057 }
2058
Dan Williams354cf822012-01-12 17:57:35 -08002059 return sas_discover_new(dev, phy_id);
James Bottomley2908d772006-08-29 09:22:51 -05002060}
2061
Tom Peng19252de2009-07-17 16:02:04 +08002062/**
2063 * sas_rediscover - revalidate the domain.
2064 * @dev:domain device to be detect.
2065 * @phy_id: the phy id will be detected.
2066 *
2067 * NOTE: this process _must_ quit (return) as soon as any connection
2068 * errors are encountered. Connection recovery is done elsewhere.
2069 * Discover process only interrogates devices in order to discover the
2070 * domain.For plugging out, we un-register the device only when it is
2071 * the last phy in the port, for other phys in this port, we just delete it
2072 * from the port.For inserting, we do discovery when it is the
2073 * first phy,for other phys in this port, we add it to the port to
2074 * forming the wide-port.
2075 */
James Bottomley2908d772006-08-29 09:22:51 -05002076static int sas_rediscover(struct domain_device *dev, const int phy_id)
2077{
2078 struct expander_device *ex = &dev->ex_dev;
2079 struct ex_phy *changed_phy = &ex->ex_phy[phy_id];
2080 int res = 0;
2081 int i;
Tom Peng19252de2009-07-17 16:02:04 +08002082 bool last = true; /* is this the last phy of the port */
James Bottomley2908d772006-08-29 09:22:51 -05002083
2084 SAS_DPRINTK("ex %016llx phy%d originated BROADCAST(CHANGE)\n",
2085 SAS_ADDR(dev->sas_addr), phy_id);
2086
2087 if (SAS_ADDR(changed_phy->attached_sas_addr) != 0) {
2088 for (i = 0; i < ex->num_phys; i++) {
2089 struct ex_phy *phy = &ex->ex_phy[i];
2090
2091 if (i == phy_id)
2092 continue;
2093 if (SAS_ADDR(phy->attached_sas_addr) ==
2094 SAS_ADDR(changed_phy->attached_sas_addr)) {
2095 SAS_DPRINTK("phy%d part of wide port with "
2096 "phy%d\n", phy_id, i);
Tom Peng19252de2009-07-17 16:02:04 +08002097 last = false;
2098 break;
James Bottomley2908d772006-08-29 09:22:51 -05002099 }
2100 }
Tom Peng19252de2009-07-17 16:02:04 +08002101 res = sas_rediscover_dev(dev, phy_id, last);
James Bottomley2908d772006-08-29 09:22:51 -05002102 } else
2103 res = sas_discover_new(dev, phy_id);
James Bottomley2908d772006-08-29 09:22:51 -05002104 return res;
2105}
2106
2107/**
2108 * sas_revalidate_domain -- revalidate the domain
2109 * @port: port to the domain of interest
2110 *
2111 * NOTE: this process _must_ quit (return) as soon as any connection
2112 * errors are encountered. Connection recovery is done elsewhere.
2113 * Discover process only interrogates devices in order to discover the
2114 * domain.
2115 */
2116int sas_ex_revalidate_domain(struct domain_device *port_dev)
2117{
2118 int res;
2119 struct domain_device *dev = NULL;
2120
2121 res = sas_find_bcast_dev(port_dev, &dev);
Dan Williams26f2f192012-06-21 23:36:15 -07002122 while (res == 0 && dev) {
James Bottomley2908d772006-08-29 09:22:51 -05002123 struct expander_device *ex = &dev->ex_dev;
2124 int i = 0, phy_id;
2125
2126 do {
2127 phy_id = -1;
Tom Peng19252de2009-07-17 16:02:04 +08002128 res = sas_find_bcast_phy(dev, &phy_id, i, true);
James Bottomley2908d772006-08-29 09:22:51 -05002129 if (phy_id == -1)
2130 break;
2131 res = sas_rediscover(dev, phy_id);
2132 i = phy_id + 1;
2133 } while (i < ex->num_phys);
Dan Williams26f2f192012-06-21 23:36:15 -07002134
2135 dev = NULL;
2136 res = sas_find_bcast_dev(port_dev, &dev);
James Bottomley2908d772006-08-29 09:22:51 -05002137 }
James Bottomley2908d772006-08-29 09:22:51 -05002138 return res;
2139}
2140
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002141int sas_smp_handler(struct Scsi_Host *shost, struct sas_rphy *rphy,
2142 struct request *req)
2143{
2144 struct domain_device *dev;
Darrick J. Wong2cd614c2007-07-24 09:33:49 -07002145 int ret, type;
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002146 struct request *rsp = req->next_rq;
2147
2148 if (!rsp) {
2149 printk("%s: space for a smp response is missing\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002150 __func__);
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002151 return -EINVAL;
2152 }
2153
Darrick J. Wong2cd614c2007-07-24 09:33:49 -07002154 /* no rphy means no smp target support (ie aic94xx host) */
James Bottomleyb98e66f2007-12-28 16:35:17 -06002155 if (!rphy)
2156 return sas_smp_host_handler(shost, req, rsp);
2157
Darrick J. Wong2cd614c2007-07-24 09:33:49 -07002158 type = rphy->identify.device_type;
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002159
2160 if (type != SAS_EDGE_EXPANDER_DEVICE &&
2161 type != SAS_FANOUT_EXPANDER_DEVICE) {
2162 printk("%s: can we send a smp request to a device?\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002163 __func__);
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002164 return -EINVAL;
2165 }
2166
2167 dev = sas_find_dev_by_rphy(rphy);
2168 if (!dev) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002169 printk("%s: fail to find a domain_device?\n", __func__);
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002170 return -EINVAL;
2171 }
2172
2173 /* do we need to support multiple segments? */
Kent Overstreet458b76e2013-09-24 16:26:05 -07002174 if (bio_multiple_segments(req->bio) ||
2175 bio_multiple_segments(rsp->bio)) {
2176 printk("%s: multiple segments req %u, rsp %u\n",
2177 __func__, blk_rq_bytes(req), blk_rq_bytes(rsp));
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002178 return -EINVAL;
2179 }
2180
Tejun Heob0790412009-05-07 22:24:42 +09002181 ret = smp_execute_task(dev, bio_data(req->bio), blk_rq_bytes(req),
2182 bio_data(rsp->bio), blk_rq_bytes(rsp));
James Bottomley2d4b63e2007-12-29 11:49:53 -06002183 if (ret > 0) {
2184 /* positive number is the untransferred residual */
Tejun Heoc3a4d782009-05-07 22:24:37 +09002185 rsp->resid_len = ret;
Tejun Heo5f49f632009-05-19 18:33:05 +09002186 req->resid_len = 0;
James Bottomley2d4b63e2007-12-29 11:49:53 -06002187 ret = 0;
Tejun Heo5f49f632009-05-19 18:33:05 +09002188 } else if (ret == 0) {
2189 rsp->resid_len = 0;
2190 req->resid_len = 0;
James Bottomley2d4b63e2007-12-29 11:49:53 -06002191 }
FUJITA Tomonoriba1fc172007-07-09 12:52:08 +09002192
2193 return ret;
2194}