1 // SPDX-License-Identifier: GPL-2.0
3 * Serial Attached SCSI (SAS) Port class
5 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
9 #include "sas_internal.h"
11 #include <scsi/scsi_transport.h>
12 #include <scsi/scsi_transport_sas.h>
13 #include "scsi_sas_internal.h"
15 static bool phy_is_wideport_member(struct asd_sas_port *port, struct asd_sas_phy *phy)
17 struct sas_ha_struct *sas_ha = phy->ha;
19 if (memcmp(port->attached_sas_addr, phy->attached_sas_addr,
20 SAS_ADDR_SIZE) != 0 || (sas_ha->strict_wide_ports &&
21 memcmp(port->sas_addr, phy->sas_addr, SAS_ADDR_SIZE) != 0))
26 static void sas_resume_port(struct asd_sas_phy *phy)
28 struct domain_device *dev, *n;
29 struct asd_sas_port *port = phy->port;
30 struct sas_ha_struct *sas_ha = phy->ha;
31 struct sas_internal *si = to_sas_internal(sas_ha->core.shost->transportt);
33 if (si->dft->lldd_port_formed)
34 si->dft->lldd_port_formed(phy);
39 /* we only need to handle "link returned" actions once */
43 /* if the port came back:
44 * 1/ presume every device came back
45 * 2/ force the next revalidation to check all expander phys
47 list_for_each_entry_safe(dev, n, &port->dev_list, dev_list_node) {
50 rc = sas_notify_lldd_dev_found(dev);
52 sas_unregister_dev(port, dev);
53 sas_destruct_devices(port);
57 if (dev_is_expander(dev->dev_type)) {
58 dev->ex_dev.ex_change_count = -1;
59 for (i = 0; i < dev->ex_dev.num_phys; i++) {
60 struct ex_phy *phy = &dev->ex_dev.ex_phy[i];
62 phy->phy_change_count = -1;
67 sas_discover_event(port, DISCE_RESUME);
70 static void sas_form_port_add_phy(struct asd_sas_port *port,
71 struct asd_sas_phy *phy, bool wideport)
73 list_add_tail(&phy->port_phy_el, &port->phy_list);
74 sas_phy_set_target(phy, port->port_dev);
77 port->phy_mask |= (1U << phy->id);
80 pr_debug("phy%d matched wide port%d\n", phy->id,
83 memcpy(port->sas_addr, phy->sas_addr, SAS_ADDR_SIZE);
85 if (*(u64 *)port->attached_sas_addr == 0) {
86 port->class = phy->class;
87 memcpy(port->attached_sas_addr, phy->attached_sas_addr,
89 port->iproto = phy->iproto;
90 port->tproto = phy->tproto;
91 port->oob_mode = phy->oob_mode;
92 port->linkrate = phy->linkrate;
94 port->linkrate = max(port->linkrate, phy->linkrate);
99 * sas_form_port - add this phy to a port
100 * @phy: the phy of interest
102 * This function adds this phy to an existing port, thus creating a wide
103 * port, or it creates a port and adds the phy to the port.
105 static void sas_form_port(struct asd_sas_phy *phy)
108 struct sas_ha_struct *sas_ha = phy->ha;
109 struct asd_sas_port *port = phy->port;
110 struct domain_device *port_dev = NULL;
111 struct sas_internal *si =
112 to_sas_internal(sas_ha->core.shost->transportt);
116 if (!phy_is_wideport_member(port, phy))
117 sas_deform_port(phy, 0);
118 else if (phy->suspended) {
120 sas_resume_port(phy);
122 /* phy came back, try to cancel the timeout */
123 wake_up(&sas_ha->eh_wait_q);
126 pr_info("%s: phy%d belongs to port%d already(%d)!\n",
127 __func__, phy->id, phy->port->id,
128 phy->port->num_phys);
133 /* see if the phy should be part of a wide port */
134 spin_lock_irqsave(&sas_ha->phy_port_lock, flags);
135 for (i = 0; i < sas_ha->num_phys; i++) {
136 port = sas_ha->sas_port[i];
137 spin_lock(&port->phy_list_lock);
138 if (*(u64 *) port->sas_addr &&
139 phy_is_wideport_member(port, phy) && port->num_phys > 0) {
141 port_dev = port->port_dev;
142 sas_form_port_add_phy(port, phy, true);
143 spin_unlock(&port->phy_list_lock);
146 spin_unlock(&port->phy_list_lock);
148 /* The phy does not match any existing port, create a new one */
149 if (i == sas_ha->num_phys) {
150 for (i = 0; i < sas_ha->num_phys; i++) {
151 port = sas_ha->sas_port[i];
152 spin_lock(&port->phy_list_lock);
153 if (*(u64 *)port->sas_addr == 0
154 && port->num_phys == 0) {
155 port_dev = port->port_dev;
156 sas_form_port_add_phy(port, phy, false);
157 spin_unlock(&port->phy_list_lock);
160 spin_unlock(&port->phy_list_lock);
163 if (i >= sas_ha->num_phys) {
164 pr_err("%s: couldn't find a free port, bug?\n",
166 spin_unlock_irqrestore(&sas_ha->phy_port_lock, flags);
170 spin_unlock_irqrestore(&sas_ha->phy_port_lock, flags);
173 port->port = sas_port_alloc(phy->phy->dev.parent, port->id);
175 sas_port_add(port->port);
177 sas_port_add_phy(port->port, phy->phy);
179 pr_debug("%s added to %s, phy_mask:0x%x (%016llx)\n",
180 dev_name(&phy->phy->dev), dev_name(&port->port->dev),
182 SAS_ADDR(port->attached_sas_addr));
185 port_dev->pathways = port->num_phys;
187 /* Tell the LLDD about this port formation. */
188 if (si->dft->lldd_port_formed)
189 si->dft->lldd_port_formed(phy);
191 sas_discover_event(phy->port, DISCE_DISCOVER_DOMAIN);
192 /* Only insert a revalidate event after initial discovery */
193 if (port_dev && dev_is_expander(port_dev->dev_type)) {
194 struct expander_device *ex_dev = &port_dev->ex_dev;
196 ex_dev->ex_change_count = -1;
197 sas_discover_event(port, DISCE_REVALIDATE_DOMAIN);
199 flush_workqueue(sas_ha->disco_q);
203 * sas_deform_port - remove this phy from the port it belongs to
204 * @phy: the phy of interest
205 * @gone: whether or not the PHY is gone
207 * This is called when the physical link to the other phy has been
208 * lost (on this phy), in Event thread context. We cannot delay here.
210 void sas_deform_port(struct asd_sas_phy *phy, int gone)
212 struct sas_ha_struct *sas_ha = phy->ha;
213 struct asd_sas_port *port = phy->port;
214 struct sas_internal *si =
215 to_sas_internal(sas_ha->core.shost->transportt);
216 struct domain_device *dev;
220 return; /* done by a phy event */
222 dev = port->port_dev;
226 if (port->num_phys == 1) {
227 sas_unregister_domain_devices(port, gone);
228 sas_destruct_devices(port);
229 sas_port_delete(port->port);
232 sas_port_delete_phy(port->port, phy->phy);
233 sas_device_set_phy(dev, port->port);
236 if (si->dft->lldd_port_deformed)
237 si->dft->lldd_port_deformed(phy);
239 spin_lock_irqsave(&sas_ha->phy_port_lock, flags);
240 spin_lock(&port->phy_list_lock);
242 list_del_init(&phy->port_phy_el);
243 sas_phy_set_target(phy, NULL);
246 port->phy_mask &= ~(1U << phy->id);
248 if (port->num_phys == 0) {
249 INIT_LIST_HEAD(&port->phy_list);
250 memset(port->sas_addr, 0, SAS_ADDR_SIZE);
251 memset(port->attached_sas_addr, 0, SAS_ADDR_SIZE);
258 spin_unlock(&port->phy_list_lock);
259 spin_unlock_irqrestore(&sas_ha->phy_port_lock, flags);
261 /* Only insert revalidate event if the port still has members */
262 if (port->port && dev && dev_is_expander(dev->dev_type)) {
263 struct expander_device *ex_dev = &dev->ex_dev;
265 ex_dev->ex_change_count = -1;
266 sas_discover_event(port, DISCE_REVALIDATE_DOMAIN);
268 flush_workqueue(sas_ha->disco_q);
273 /* ---------- SAS port events ---------- */
275 void sas_porte_bytes_dmaed(struct work_struct *work)
277 struct asd_sas_event *ev = to_asd_sas_event(work);
278 struct asd_sas_phy *phy = ev->phy;
283 void sas_porte_broadcast_rcvd(struct work_struct *work)
285 struct asd_sas_event *ev = to_asd_sas_event(work);
286 struct asd_sas_phy *phy = ev->phy;
290 spin_lock_irqsave(&phy->sas_prim_lock, flags);
291 prim = phy->sas_prim;
292 spin_unlock_irqrestore(&phy->sas_prim_lock, flags);
294 pr_debug("broadcast received: %d\n", prim);
295 sas_discover_event(phy->port, DISCE_REVALIDATE_DOMAIN);
298 flush_workqueue(phy->port->ha->disco_q);
301 void sas_porte_link_reset_err(struct work_struct *work)
303 struct asd_sas_event *ev = to_asd_sas_event(work);
304 struct asd_sas_phy *phy = ev->phy;
306 sas_deform_port(phy, 1);
309 void sas_porte_timer_event(struct work_struct *work)
311 struct asd_sas_event *ev = to_asd_sas_event(work);
312 struct asd_sas_phy *phy = ev->phy;
314 sas_deform_port(phy, 1);
317 void sas_porte_hard_reset(struct work_struct *work)
319 struct asd_sas_event *ev = to_asd_sas_event(work);
320 struct asd_sas_phy *phy = ev->phy;
322 sas_deform_port(phy, 1);
325 /* ---------- SAS port registration ---------- */
327 static void sas_init_port(struct asd_sas_port *port,
328 struct sas_ha_struct *sas_ha, int i)
330 memset(port, 0, sizeof(*port));
332 INIT_LIST_HEAD(&port->dev_list);
333 INIT_LIST_HEAD(&port->disco_list);
334 INIT_LIST_HEAD(&port->destroy_list);
335 INIT_LIST_HEAD(&port->sas_port_del_list);
336 spin_lock_init(&port->phy_list_lock);
337 INIT_LIST_HEAD(&port->phy_list);
340 spin_lock_init(&port->dev_list_lock);
343 int sas_register_ports(struct sas_ha_struct *sas_ha)
347 /* initialize the ports and discovery */
348 for (i = 0; i < sas_ha->num_phys; i++) {
349 struct asd_sas_port *port = sas_ha->sas_port[i];
351 sas_init_port(port, sas_ha, i);
352 sas_init_disc(&port->disc, port);
357 void sas_unregister_ports(struct sas_ha_struct *sas_ha)
361 for (i = 0; i < sas_ha->num_phys; i++)
362 if (sas_ha->sas_phy[i]->port)
363 sas_deform_port(sas_ha->sas_phy[i], 0);
367 const work_func_t sas_port_event_fns[PORT_NUM_EVENTS] = {
368 [PORTE_BYTES_DMAED] = sas_porte_bytes_dmaed,
369 [PORTE_BROADCAST_RCVD] = sas_porte_broadcast_rcvd,
370 [PORTE_LINK_RESET_ERR] = sas_porte_link_reset_err,
371 [PORTE_TIMER_EVENT] = sas_porte_timer_event,
372 [PORTE_HARD_RESET] = sas_porte_hard_reset,