xref: /openbmc/linux/drivers/thunderbolt/switch.c (revision f156a7d1)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Thunderbolt driver - switch/port utility functions
4  *
5  * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
6  * Copyright (C) 2018, Intel Corporation
7  */
8 
9 #include <linux/delay.h>
10 #include <linux/idr.h>
11 #include <linux/module.h>
12 #include <linux/nvmem-provider.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/sched/signal.h>
15 #include <linux/sizes.h>
16 #include <linux/slab.h>
17 #include <linux/string_helpers.h>
18 
19 #include "tb.h"
20 
21 /* Switch NVM support */
22 
23 struct nvm_auth_status {
24 	struct list_head list;
25 	uuid_t uuid;
26 	u32 status;
27 };
28 
29 /*
30  * Hold NVM authentication failure status per switch This information
31  * needs to stay around even when the switch gets power cycled so we
32  * keep it separately.
33  */
34 static LIST_HEAD(nvm_auth_status_cache);
35 static DEFINE_MUTEX(nvm_auth_status_lock);
36 
37 static struct nvm_auth_status *__nvm_get_auth_status(const struct tb_switch *sw)
38 {
39 	struct nvm_auth_status *st;
40 
41 	list_for_each_entry(st, &nvm_auth_status_cache, list) {
42 		if (uuid_equal(&st->uuid, sw->uuid))
43 			return st;
44 	}
45 
46 	return NULL;
47 }
48 
49 static void nvm_get_auth_status(const struct tb_switch *sw, u32 *status)
50 {
51 	struct nvm_auth_status *st;
52 
53 	mutex_lock(&nvm_auth_status_lock);
54 	st = __nvm_get_auth_status(sw);
55 	mutex_unlock(&nvm_auth_status_lock);
56 
57 	*status = st ? st->status : 0;
58 }
59 
60 static void nvm_set_auth_status(const struct tb_switch *sw, u32 status)
61 {
62 	struct nvm_auth_status *st;
63 
64 	if (WARN_ON(!sw->uuid))
65 		return;
66 
67 	mutex_lock(&nvm_auth_status_lock);
68 	st = __nvm_get_auth_status(sw);
69 
70 	if (!st) {
71 		st = kzalloc(sizeof(*st), GFP_KERNEL);
72 		if (!st)
73 			goto unlock;
74 
75 		memcpy(&st->uuid, sw->uuid, sizeof(st->uuid));
76 		INIT_LIST_HEAD(&st->list);
77 		list_add_tail(&st->list, &nvm_auth_status_cache);
78 	}
79 
80 	st->status = status;
81 unlock:
82 	mutex_unlock(&nvm_auth_status_lock);
83 }
84 
85 static void nvm_clear_auth_status(const struct tb_switch *sw)
86 {
87 	struct nvm_auth_status *st;
88 
89 	mutex_lock(&nvm_auth_status_lock);
90 	st = __nvm_get_auth_status(sw);
91 	if (st) {
92 		list_del(&st->list);
93 		kfree(st);
94 	}
95 	mutex_unlock(&nvm_auth_status_lock);
96 }
97 
98 static int nvm_validate_and_write(struct tb_switch *sw)
99 {
100 	unsigned int image_size;
101 	const u8 *buf;
102 	int ret;
103 
104 	ret = tb_nvm_validate(sw->nvm);
105 	if (ret)
106 		return ret;
107 
108 	ret = tb_nvm_write_headers(sw->nvm);
109 	if (ret)
110 		return ret;
111 
112 	buf = sw->nvm->buf_data_start;
113 	image_size = sw->nvm->buf_data_size;
114 
115 	if (tb_switch_is_usb4(sw))
116 		ret = usb4_switch_nvm_write(sw, 0, buf, image_size);
117 	else
118 		ret = dma_port_flash_write(sw->dma_port, 0, buf, image_size);
119 	if (ret)
120 		return ret;
121 
122 	sw->nvm->flushed = true;
123 	return 0;
124 }
125 
126 static int nvm_authenticate_host_dma_port(struct tb_switch *sw)
127 {
128 	int ret = 0;
129 
130 	/*
131 	 * Root switch NVM upgrade requires that we disconnect the
132 	 * existing paths first (in case it is not in safe mode
133 	 * already).
134 	 */
135 	if (!sw->safe_mode) {
136 		u32 status;
137 
138 		ret = tb_domain_disconnect_all_paths(sw->tb);
139 		if (ret)
140 			return ret;
141 		/*
142 		 * The host controller goes away pretty soon after this if
143 		 * everything goes well so getting timeout is expected.
144 		 */
145 		ret = dma_port_flash_update_auth(sw->dma_port);
146 		if (!ret || ret == -ETIMEDOUT)
147 			return 0;
148 
149 		/*
150 		 * Any error from update auth operation requires power
151 		 * cycling of the host router.
152 		 */
153 		tb_sw_warn(sw, "failed to authenticate NVM, power cycling\n");
154 		if (dma_port_flash_update_auth_status(sw->dma_port, &status) > 0)
155 			nvm_set_auth_status(sw, status);
156 	}
157 
158 	/*
159 	 * From safe mode we can get out by just power cycling the
160 	 * switch.
161 	 */
162 	dma_port_power_cycle(sw->dma_port);
163 	return ret;
164 }
165 
166 static int nvm_authenticate_device_dma_port(struct tb_switch *sw)
167 {
168 	int ret, retries = 10;
169 
170 	ret = dma_port_flash_update_auth(sw->dma_port);
171 	switch (ret) {
172 	case 0:
173 	case -ETIMEDOUT:
174 	case -EACCES:
175 	case -EINVAL:
176 		/* Power cycle is required */
177 		break;
178 	default:
179 		return ret;
180 	}
181 
182 	/*
183 	 * Poll here for the authentication status. It takes some time
184 	 * for the device to respond (we get timeout for a while). Once
185 	 * we get response the device needs to be power cycled in order
186 	 * to the new NVM to be taken into use.
187 	 */
188 	do {
189 		u32 status;
190 
191 		ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
192 		if (ret < 0 && ret != -ETIMEDOUT)
193 			return ret;
194 		if (ret > 0) {
195 			if (status) {
196 				tb_sw_warn(sw, "failed to authenticate NVM\n");
197 				nvm_set_auth_status(sw, status);
198 			}
199 
200 			tb_sw_info(sw, "power cycling the switch now\n");
201 			dma_port_power_cycle(sw->dma_port);
202 			return 0;
203 		}
204 
205 		msleep(500);
206 	} while (--retries);
207 
208 	return -ETIMEDOUT;
209 }
210 
211 static void nvm_authenticate_start_dma_port(struct tb_switch *sw)
212 {
213 	struct pci_dev *root_port;
214 
215 	/*
216 	 * During host router NVM upgrade we should not allow root port to
217 	 * go into D3cold because some root ports cannot trigger PME
218 	 * itself. To be on the safe side keep the root port in D0 during
219 	 * the whole upgrade process.
220 	 */
221 	root_port = pcie_find_root_port(sw->tb->nhi->pdev);
222 	if (root_port)
223 		pm_runtime_get_noresume(&root_port->dev);
224 }
225 
226 static void nvm_authenticate_complete_dma_port(struct tb_switch *sw)
227 {
228 	struct pci_dev *root_port;
229 
230 	root_port = pcie_find_root_port(sw->tb->nhi->pdev);
231 	if (root_port)
232 		pm_runtime_put(&root_port->dev);
233 }
234 
235 static inline bool nvm_readable(struct tb_switch *sw)
236 {
237 	if (tb_switch_is_usb4(sw)) {
238 		/*
239 		 * USB4 devices must support NVM operations but it is
240 		 * optional for hosts. Therefore we query the NVM sector
241 		 * size here and if it is supported assume NVM
242 		 * operations are implemented.
243 		 */
244 		return usb4_switch_nvm_sector_size(sw) > 0;
245 	}
246 
247 	/* Thunderbolt 2 and 3 devices support NVM through DMA port */
248 	return !!sw->dma_port;
249 }
250 
251 static inline bool nvm_upgradeable(struct tb_switch *sw)
252 {
253 	if (sw->no_nvm_upgrade)
254 		return false;
255 	return nvm_readable(sw);
256 }
257 
258 static int nvm_authenticate(struct tb_switch *sw, bool auth_only)
259 {
260 	int ret;
261 
262 	if (tb_switch_is_usb4(sw)) {
263 		if (auth_only) {
264 			ret = usb4_switch_nvm_set_offset(sw, 0);
265 			if (ret)
266 				return ret;
267 		}
268 		sw->nvm->authenticating = true;
269 		return usb4_switch_nvm_authenticate(sw);
270 	}
271 	if (auth_only)
272 		return -EOPNOTSUPP;
273 
274 	sw->nvm->authenticating = true;
275 	if (!tb_route(sw)) {
276 		nvm_authenticate_start_dma_port(sw);
277 		ret = nvm_authenticate_host_dma_port(sw);
278 	} else {
279 		ret = nvm_authenticate_device_dma_port(sw);
280 	}
281 
282 	return ret;
283 }
284 
285 /**
286  * tb_switch_nvm_read() - Read router NVM
287  * @sw: Router whose NVM to read
288  * @address: Start address on the NVM
289  * @buf: Buffer where the read data is copied
290  * @size: Size of the buffer in bytes
291  *
292  * Reads from router NVM and returns the requested data in @buf. Locking
293  * is up to the caller. Returns %0 in success and negative errno in case
294  * of failure.
295  */
296 int tb_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
297 		       size_t size)
298 {
299 	if (tb_switch_is_usb4(sw))
300 		return usb4_switch_nvm_read(sw, address, buf, size);
301 	return dma_port_flash_read(sw->dma_port, address, buf, size);
302 }
303 
304 static int nvm_read(void *priv, unsigned int offset, void *val, size_t bytes)
305 {
306 	struct tb_nvm *nvm = priv;
307 	struct tb_switch *sw = tb_to_switch(nvm->dev);
308 	int ret;
309 
310 	pm_runtime_get_sync(&sw->dev);
311 
312 	if (!mutex_trylock(&sw->tb->lock)) {
313 		ret = restart_syscall();
314 		goto out;
315 	}
316 
317 	ret = tb_switch_nvm_read(sw, offset, val, bytes);
318 	mutex_unlock(&sw->tb->lock);
319 
320 out:
321 	pm_runtime_mark_last_busy(&sw->dev);
322 	pm_runtime_put_autosuspend(&sw->dev);
323 
324 	return ret;
325 }
326 
327 static int nvm_write(void *priv, unsigned int offset, void *val, size_t bytes)
328 {
329 	struct tb_nvm *nvm = priv;
330 	struct tb_switch *sw = tb_to_switch(nvm->dev);
331 	int ret;
332 
333 	if (!mutex_trylock(&sw->tb->lock))
334 		return restart_syscall();
335 
336 	/*
337 	 * Since writing the NVM image might require some special steps,
338 	 * for example when CSS headers are written, we cache the image
339 	 * locally here and handle the special cases when the user asks
340 	 * us to authenticate the image.
341 	 */
342 	ret = tb_nvm_write_buf(nvm, offset, val, bytes);
343 	mutex_unlock(&sw->tb->lock);
344 
345 	return ret;
346 }
347 
348 static int tb_switch_nvm_add(struct tb_switch *sw)
349 {
350 	struct tb_nvm *nvm;
351 	int ret;
352 
353 	if (!nvm_readable(sw))
354 		return 0;
355 
356 	nvm = tb_nvm_alloc(&sw->dev);
357 	if (IS_ERR(nvm)) {
358 		ret = PTR_ERR(nvm) == -EOPNOTSUPP ? 0 : PTR_ERR(nvm);
359 		goto err_nvm;
360 	}
361 
362 	ret = tb_nvm_read_version(nvm);
363 	if (ret)
364 		goto err_nvm;
365 
366 	/*
367 	 * If the switch is in safe-mode the only accessible portion of
368 	 * the NVM is the non-active one where userspace is expected to
369 	 * write new functional NVM.
370 	 */
371 	if (!sw->safe_mode) {
372 		ret = tb_nvm_add_active(nvm, nvm_read);
373 		if (ret)
374 			goto err_nvm;
375 	}
376 
377 	if (!sw->no_nvm_upgrade) {
378 		ret = tb_nvm_add_non_active(nvm, nvm_write);
379 		if (ret)
380 			goto err_nvm;
381 	}
382 
383 	sw->nvm = nvm;
384 	return 0;
385 
386 err_nvm:
387 	tb_sw_dbg(sw, "NVM upgrade disabled\n");
388 	sw->no_nvm_upgrade = true;
389 	if (!IS_ERR(nvm))
390 		tb_nvm_free(nvm);
391 
392 	return ret;
393 }
394 
395 static void tb_switch_nvm_remove(struct tb_switch *sw)
396 {
397 	struct tb_nvm *nvm;
398 
399 	nvm = sw->nvm;
400 	sw->nvm = NULL;
401 
402 	if (!nvm)
403 		return;
404 
405 	/* Remove authentication status in case the switch is unplugged */
406 	if (!nvm->authenticating)
407 		nvm_clear_auth_status(sw);
408 
409 	tb_nvm_free(nvm);
410 }
411 
412 /* port utility functions */
413 
414 static const char *tb_port_type(const struct tb_regs_port_header *port)
415 {
416 	switch (port->type >> 16) {
417 	case 0:
418 		switch ((u8) port->type) {
419 		case 0:
420 			return "Inactive";
421 		case 1:
422 			return "Port";
423 		case 2:
424 			return "NHI";
425 		default:
426 			return "unknown";
427 		}
428 	case 0x2:
429 		return "Ethernet";
430 	case 0x8:
431 		return "SATA";
432 	case 0xe:
433 		return "DP/HDMI";
434 	case 0x10:
435 		return "PCIe";
436 	case 0x20:
437 		return "USB";
438 	default:
439 		return "unknown";
440 	}
441 }
442 
443 static void tb_dump_port(struct tb *tb, const struct tb_port *port)
444 {
445 	const struct tb_regs_port_header *regs = &port->config;
446 
447 	tb_dbg(tb,
448 	       " Port %d: %x:%x (Revision: %d, TB Version: %d, Type: %s (%#x))\n",
449 	       regs->port_number, regs->vendor_id, regs->device_id,
450 	       regs->revision, regs->thunderbolt_version, tb_port_type(regs),
451 	       regs->type);
452 	tb_dbg(tb, "  Max hop id (in/out): %d/%d\n",
453 	       regs->max_in_hop_id, regs->max_out_hop_id);
454 	tb_dbg(tb, "  Max counters: %d\n", regs->max_counters);
455 	tb_dbg(tb, "  NFC Credits: %#x\n", regs->nfc_credits);
456 	tb_dbg(tb, "  Credits (total/control): %u/%u\n", port->total_credits,
457 	       port->ctl_credits);
458 }
459 
460 /**
461  * tb_port_state() - get connectedness state of a port
462  * @port: the port to check
463  *
464  * The port must have a TB_CAP_PHY (i.e. it should be a real port).
465  *
466  * Return: Returns an enum tb_port_state on success or an error code on failure.
467  */
468 int tb_port_state(struct tb_port *port)
469 {
470 	struct tb_cap_phy phy;
471 	int res;
472 	if (port->cap_phy == 0) {
473 		tb_port_WARN(port, "does not have a PHY\n");
474 		return -EINVAL;
475 	}
476 	res = tb_port_read(port, &phy, TB_CFG_PORT, port->cap_phy, 2);
477 	if (res)
478 		return res;
479 	return phy.state;
480 }
481 
482 /**
483  * tb_wait_for_port() - wait for a port to become ready
484  * @port: Port to wait
485  * @wait_if_unplugged: Wait also when port is unplugged
486  *
487  * Wait up to 1 second for a port to reach state TB_PORT_UP. If
488  * wait_if_unplugged is set then we also wait if the port is in state
489  * TB_PORT_UNPLUGGED (it takes a while for the device to be registered after
490  * switch resume). Otherwise we only wait if a device is registered but the link
491  * has not yet been established.
492  *
493  * Return: Returns an error code on failure. Returns 0 if the port is not
494  * connected or failed to reach state TB_PORT_UP within one second. Returns 1
495  * if the port is connected and in state TB_PORT_UP.
496  */
497 int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged)
498 {
499 	int retries = 10;
500 	int state;
501 	if (!port->cap_phy) {
502 		tb_port_WARN(port, "does not have PHY\n");
503 		return -EINVAL;
504 	}
505 	if (tb_is_upstream_port(port)) {
506 		tb_port_WARN(port, "is the upstream port\n");
507 		return -EINVAL;
508 	}
509 
510 	while (retries--) {
511 		state = tb_port_state(port);
512 		switch (state) {
513 		case TB_PORT_DISABLED:
514 			tb_port_dbg(port, "is disabled (state: 0)\n");
515 			return 0;
516 
517 		case TB_PORT_UNPLUGGED:
518 			if (wait_if_unplugged) {
519 				/* used during resume */
520 				tb_port_dbg(port,
521 					    "is unplugged (state: 7), retrying...\n");
522 				msleep(100);
523 				break;
524 			}
525 			tb_port_dbg(port, "is unplugged (state: 7)\n");
526 			return 0;
527 
528 		case TB_PORT_UP:
529 		case TB_PORT_TX_CL0S:
530 		case TB_PORT_RX_CL0S:
531 		case TB_PORT_CL1:
532 		case TB_PORT_CL2:
533 			tb_port_dbg(port, "is connected, link is up (state: %d)\n", state);
534 			return 1;
535 
536 		default:
537 			if (state < 0)
538 				return state;
539 
540 			/*
541 			 * After plug-in the state is TB_PORT_CONNECTING. Give it some
542 			 * time.
543 			 */
544 			tb_port_dbg(port,
545 				    "is connected, link is not up (state: %d), retrying...\n",
546 				    state);
547 			msleep(100);
548 		}
549 
550 	}
551 	tb_port_warn(port,
552 		     "failed to reach state TB_PORT_UP. Ignoring port...\n");
553 	return 0;
554 }
555 
556 /**
557  * tb_port_add_nfc_credits() - add/remove non flow controlled credits to port
558  * @port: Port to add/remove NFC credits
559  * @credits: Credits to add/remove
560  *
561  * Change the number of NFC credits allocated to @port by @credits. To remove
562  * NFC credits pass a negative amount of credits.
563  *
564  * Return: Returns 0 on success or an error code on failure.
565  */
566 int tb_port_add_nfc_credits(struct tb_port *port, int credits)
567 {
568 	u32 nfc_credits;
569 
570 	if (credits == 0 || port->sw->is_unplugged)
571 		return 0;
572 
573 	/*
574 	 * USB4 restricts programming NFC buffers to lane adapters only
575 	 * so skip other ports.
576 	 */
577 	if (tb_switch_is_usb4(port->sw) && !tb_port_is_null(port))
578 		return 0;
579 
580 	nfc_credits = port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK;
581 	if (credits < 0)
582 		credits = max_t(int, -nfc_credits, credits);
583 
584 	nfc_credits += credits;
585 
586 	tb_port_dbg(port, "adding %d NFC credits to %lu", credits,
587 		    port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK);
588 
589 	port->config.nfc_credits &= ~ADP_CS_4_NFC_BUFFERS_MASK;
590 	port->config.nfc_credits |= nfc_credits;
591 
592 	return tb_port_write(port, &port->config.nfc_credits,
593 			     TB_CFG_PORT, ADP_CS_4, 1);
594 }
595 
596 /**
597  * tb_port_clear_counter() - clear a counter in TB_CFG_COUNTER
598  * @port: Port whose counters to clear
599  * @counter: Counter index to clear
600  *
601  * Return: Returns 0 on success or an error code on failure.
602  */
603 int tb_port_clear_counter(struct tb_port *port, int counter)
604 {
605 	u32 zero[3] = { 0, 0, 0 };
606 	tb_port_dbg(port, "clearing counter %d\n", counter);
607 	return tb_port_write(port, zero, TB_CFG_COUNTERS, 3 * counter, 3);
608 }
609 
610 /**
611  * tb_port_unlock() - Unlock downstream port
612  * @port: Port to unlock
613  *
614  * Needed for USB4 but can be called for any CIO/USB4 ports. Makes the
615  * downstream router accessible for CM.
616  */
617 int tb_port_unlock(struct tb_port *port)
618 {
619 	if (tb_switch_is_icm(port->sw))
620 		return 0;
621 	if (!tb_port_is_null(port))
622 		return -EINVAL;
623 	if (tb_switch_is_usb4(port->sw))
624 		return usb4_port_unlock(port);
625 	return 0;
626 }
627 
628 static int __tb_port_enable(struct tb_port *port, bool enable)
629 {
630 	int ret;
631 	u32 phy;
632 
633 	if (!tb_port_is_null(port))
634 		return -EINVAL;
635 
636 	ret = tb_port_read(port, &phy, TB_CFG_PORT,
637 			   port->cap_phy + LANE_ADP_CS_1, 1);
638 	if (ret)
639 		return ret;
640 
641 	if (enable)
642 		phy &= ~LANE_ADP_CS_1_LD;
643 	else
644 		phy |= LANE_ADP_CS_1_LD;
645 
646 
647 	ret = tb_port_write(port, &phy, TB_CFG_PORT,
648 			    port->cap_phy + LANE_ADP_CS_1, 1);
649 	if (ret)
650 		return ret;
651 
652 	tb_port_dbg(port, "lane %s\n", str_enabled_disabled(enable));
653 	return 0;
654 }
655 
656 /**
657  * tb_port_enable() - Enable lane adapter
658  * @port: Port to enable (can be %NULL)
659  *
660  * This is used for lane 0 and 1 adapters to enable it.
661  */
662 int tb_port_enable(struct tb_port *port)
663 {
664 	return __tb_port_enable(port, true);
665 }
666 
667 /**
668  * tb_port_disable() - Disable lane adapter
669  * @port: Port to disable (can be %NULL)
670  *
671  * This is used for lane 0 and 1 adapters to disable it.
672  */
673 int tb_port_disable(struct tb_port *port)
674 {
675 	return __tb_port_enable(port, false);
676 }
677 
678 /*
679  * tb_init_port() - initialize a port
680  *
681  * This is a helper method for tb_switch_alloc. Does not check or initialize
682  * any downstream switches.
683  *
684  * Return: Returns 0 on success or an error code on failure.
685  */
686 static int tb_init_port(struct tb_port *port)
687 {
688 	int res;
689 	int cap;
690 
691 	INIT_LIST_HEAD(&port->list);
692 
693 	/* Control adapter does not have configuration space */
694 	if (!port->port)
695 		return 0;
696 
697 	res = tb_port_read(port, &port->config, TB_CFG_PORT, 0, 8);
698 	if (res) {
699 		if (res == -ENODEV) {
700 			tb_dbg(port->sw->tb, " Port %d: not implemented\n",
701 			       port->port);
702 			port->disabled = true;
703 			return 0;
704 		}
705 		return res;
706 	}
707 
708 	/* Port 0 is the switch itself and has no PHY. */
709 	if (port->config.type == TB_TYPE_PORT) {
710 		cap = tb_port_find_cap(port, TB_PORT_CAP_PHY);
711 
712 		if (cap > 0)
713 			port->cap_phy = cap;
714 		else
715 			tb_port_WARN(port, "non switch port without a PHY\n");
716 
717 		cap = tb_port_find_cap(port, TB_PORT_CAP_USB4);
718 		if (cap > 0)
719 			port->cap_usb4 = cap;
720 
721 		/*
722 		 * USB4 ports the buffers allocated for the control path
723 		 * can be read from the path config space. Legacy
724 		 * devices we use hard-coded value.
725 		 */
726 		if (port->cap_usb4) {
727 			struct tb_regs_hop hop;
728 
729 			if (!tb_port_read(port, &hop, TB_CFG_HOPS, 0, 2))
730 				port->ctl_credits = hop.initial_credits;
731 		}
732 		if (!port->ctl_credits)
733 			port->ctl_credits = 2;
734 
735 	} else {
736 		cap = tb_port_find_cap(port, TB_PORT_CAP_ADAP);
737 		if (cap > 0)
738 			port->cap_adap = cap;
739 	}
740 
741 	port->total_credits =
742 		(port->config.nfc_credits & ADP_CS_4_TOTAL_BUFFERS_MASK) >>
743 		ADP_CS_4_TOTAL_BUFFERS_SHIFT;
744 
745 	tb_dump_port(port->sw->tb, port);
746 	return 0;
747 }
748 
749 static int tb_port_alloc_hopid(struct tb_port *port, bool in, int min_hopid,
750 			       int max_hopid)
751 {
752 	int port_max_hopid;
753 	struct ida *ida;
754 
755 	if (in) {
756 		port_max_hopid = port->config.max_in_hop_id;
757 		ida = &port->in_hopids;
758 	} else {
759 		port_max_hopid = port->config.max_out_hop_id;
760 		ida = &port->out_hopids;
761 	}
762 
763 	/*
764 	 * NHI can use HopIDs 1-max for other adapters HopIDs 0-7 are
765 	 * reserved.
766 	 */
767 	if (!tb_port_is_nhi(port) && min_hopid < TB_PATH_MIN_HOPID)
768 		min_hopid = TB_PATH_MIN_HOPID;
769 
770 	if (max_hopid < 0 || max_hopid > port_max_hopid)
771 		max_hopid = port_max_hopid;
772 
773 	return ida_simple_get(ida, min_hopid, max_hopid + 1, GFP_KERNEL);
774 }
775 
776 /**
777  * tb_port_alloc_in_hopid() - Allocate input HopID from port
778  * @port: Port to allocate HopID for
779  * @min_hopid: Minimum acceptable input HopID
780  * @max_hopid: Maximum acceptable input HopID
781  *
782  * Return: HopID between @min_hopid and @max_hopid or negative errno in
783  * case of error.
784  */
785 int tb_port_alloc_in_hopid(struct tb_port *port, int min_hopid, int max_hopid)
786 {
787 	return tb_port_alloc_hopid(port, true, min_hopid, max_hopid);
788 }
789 
790 /**
791  * tb_port_alloc_out_hopid() - Allocate output HopID from port
792  * @port: Port to allocate HopID for
793  * @min_hopid: Minimum acceptable output HopID
794  * @max_hopid: Maximum acceptable output HopID
795  *
796  * Return: HopID between @min_hopid and @max_hopid or negative errno in
797  * case of error.
798  */
799 int tb_port_alloc_out_hopid(struct tb_port *port, int min_hopid, int max_hopid)
800 {
801 	return tb_port_alloc_hopid(port, false, min_hopid, max_hopid);
802 }
803 
804 /**
805  * tb_port_release_in_hopid() - Release allocated input HopID from port
806  * @port: Port whose HopID to release
807  * @hopid: HopID to release
808  */
809 void tb_port_release_in_hopid(struct tb_port *port, int hopid)
810 {
811 	ida_simple_remove(&port->in_hopids, hopid);
812 }
813 
814 /**
815  * tb_port_release_out_hopid() - Release allocated output HopID from port
816  * @port: Port whose HopID to release
817  * @hopid: HopID to release
818  */
819 void tb_port_release_out_hopid(struct tb_port *port, int hopid)
820 {
821 	ida_simple_remove(&port->out_hopids, hopid);
822 }
823 
824 static inline bool tb_switch_is_reachable(const struct tb_switch *parent,
825 					  const struct tb_switch *sw)
826 {
827 	u64 mask = (1ULL << parent->config.depth * 8) - 1;
828 	return (tb_route(parent) & mask) == (tb_route(sw) & mask);
829 }
830 
831 /**
832  * tb_next_port_on_path() - Return next port for given port on a path
833  * @start: Start port of the walk
834  * @end: End port of the walk
835  * @prev: Previous port (%NULL if this is the first)
836  *
837  * This function can be used to walk from one port to another if they
838  * are connected through zero or more switches. If the @prev is dual
839  * link port, the function follows that link and returns another end on
840  * that same link.
841  *
842  * If the @end port has been reached, return %NULL.
843  *
844  * Domain tb->lock must be held when this function is called.
845  */
846 struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
847 				     struct tb_port *prev)
848 {
849 	struct tb_port *next;
850 
851 	if (!prev)
852 		return start;
853 
854 	if (prev->sw == end->sw) {
855 		if (prev == end)
856 			return NULL;
857 		return end;
858 	}
859 
860 	if (tb_switch_is_reachable(prev->sw, end->sw)) {
861 		next = tb_port_at(tb_route(end->sw), prev->sw);
862 		/* Walk down the topology if next == prev */
863 		if (prev->remote &&
864 		    (next == prev || next->dual_link_port == prev))
865 			next = prev->remote;
866 	} else {
867 		if (tb_is_upstream_port(prev)) {
868 			next = prev->remote;
869 		} else {
870 			next = tb_upstream_port(prev->sw);
871 			/*
872 			 * Keep the same link if prev and next are both
873 			 * dual link ports.
874 			 */
875 			if (next->dual_link_port &&
876 			    next->link_nr != prev->link_nr) {
877 				next = next->dual_link_port;
878 			}
879 		}
880 	}
881 
882 	return next != prev ? next : NULL;
883 }
884 
885 /**
886  * tb_port_get_link_speed() - Get current link speed
887  * @port: Port to check (USB4 or CIO)
888  *
889  * Returns link speed in Gb/s or negative errno in case of failure.
890  */
891 int tb_port_get_link_speed(struct tb_port *port)
892 {
893 	u32 val, speed;
894 	int ret;
895 
896 	if (!port->cap_phy)
897 		return -EINVAL;
898 
899 	ret = tb_port_read(port, &val, TB_CFG_PORT,
900 			   port->cap_phy + LANE_ADP_CS_1, 1);
901 	if (ret)
902 		return ret;
903 
904 	speed = (val & LANE_ADP_CS_1_CURRENT_SPEED_MASK) >>
905 		LANE_ADP_CS_1_CURRENT_SPEED_SHIFT;
906 
907 	switch (speed) {
908 	case LANE_ADP_CS_1_CURRENT_SPEED_GEN4:
909 		return 40;
910 	case LANE_ADP_CS_1_CURRENT_SPEED_GEN3:
911 		return 20;
912 	default:
913 		return 10;
914 	}
915 }
916 
917 /**
918  * tb_port_get_link_width() - Get current link width
919  * @port: Port to check (USB4 or CIO)
920  *
921  * Returns link width. Return the link width as encoded in &enum
922  * tb_link_width or negative errno in case of failure.
923  */
924 int tb_port_get_link_width(struct tb_port *port)
925 {
926 	u32 val;
927 	int ret;
928 
929 	if (!port->cap_phy)
930 		return -EINVAL;
931 
932 	ret = tb_port_read(port, &val, TB_CFG_PORT,
933 			   port->cap_phy + LANE_ADP_CS_1, 1);
934 	if (ret)
935 		return ret;
936 
937 	/* Matches the values in enum tb_link_width */
938 	return (val & LANE_ADP_CS_1_CURRENT_WIDTH_MASK) >>
939 		LANE_ADP_CS_1_CURRENT_WIDTH_SHIFT;
940 }
941 
942 static bool tb_port_is_width_supported(struct tb_port *port,
943 				       unsigned int width_mask)
944 {
945 	u32 phy, widths;
946 	int ret;
947 
948 	if (!port->cap_phy)
949 		return false;
950 
951 	ret = tb_port_read(port, &phy, TB_CFG_PORT,
952 			   port->cap_phy + LANE_ADP_CS_0, 1);
953 	if (ret)
954 		return false;
955 
956 	widths = (phy & LANE_ADP_CS_0_SUPPORTED_WIDTH_MASK) >>
957 		LANE_ADP_CS_0_SUPPORTED_WIDTH_SHIFT;
958 
959 	return widths & width_mask;
960 }
961 
962 static bool is_gen4_link(struct tb_port *port)
963 {
964 	return tb_port_get_link_speed(port) > 20;
965 }
966 
967 /**
968  * tb_port_set_link_width() - Set target link width of the lane adapter
969  * @port: Lane adapter
970  * @width: Target link width
971  *
972  * Sets the target link width of the lane adapter to @width. Does not
973  * enable/disable lane bonding. For that call tb_port_set_lane_bonding().
974  *
975  * Return: %0 in case of success and negative errno in case of error
976  */
977 int tb_port_set_link_width(struct tb_port *port, enum tb_link_width width)
978 {
979 	u32 val;
980 	int ret;
981 
982 	if (!port->cap_phy)
983 		return -EINVAL;
984 
985 	ret = tb_port_read(port, &val, TB_CFG_PORT,
986 			   port->cap_phy + LANE_ADP_CS_1, 1);
987 	if (ret)
988 		return ret;
989 
990 	val &= ~LANE_ADP_CS_1_TARGET_WIDTH_MASK;
991 	switch (width) {
992 	case TB_LINK_WIDTH_SINGLE:
993 		/* Gen 4 link cannot be single */
994 		if (is_gen4_link(port))
995 			return -EOPNOTSUPP;
996 		val |= LANE_ADP_CS_1_TARGET_WIDTH_SINGLE <<
997 			LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
998 		break;
999 	case TB_LINK_WIDTH_DUAL:
1000 		val |= LANE_ADP_CS_1_TARGET_WIDTH_DUAL <<
1001 			LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
1002 		break;
1003 	default:
1004 		return -EINVAL;
1005 	}
1006 
1007 	return tb_port_write(port, &val, TB_CFG_PORT,
1008 			     port->cap_phy + LANE_ADP_CS_1, 1);
1009 }
1010 
1011 /**
1012  * tb_port_set_lane_bonding() - Enable/disable lane bonding
1013  * @port: Lane adapter
1014  * @bonding: enable/disable bonding
1015  *
1016  * Enables or disables lane bonding. This should be called after target
1017  * link width has been set (tb_port_set_link_width()). Note in most
1018  * cases one should use tb_port_lane_bonding_enable() instead to enable
1019  * lane bonding.
1020  *
1021  * Return: %0 in case of success and negative errno in case of error
1022  */
1023 static int tb_port_set_lane_bonding(struct tb_port *port, bool bonding)
1024 {
1025 	u32 val;
1026 	int ret;
1027 
1028 	if (!port->cap_phy)
1029 		return -EINVAL;
1030 
1031 	ret = tb_port_read(port, &val, TB_CFG_PORT,
1032 			   port->cap_phy + LANE_ADP_CS_1, 1);
1033 	if (ret)
1034 		return ret;
1035 
1036 	if (bonding)
1037 		val |= LANE_ADP_CS_1_LB;
1038 	else
1039 		val &= ~LANE_ADP_CS_1_LB;
1040 
1041 	return tb_port_write(port, &val, TB_CFG_PORT,
1042 			     port->cap_phy + LANE_ADP_CS_1, 1);
1043 }
1044 
1045 /**
1046  * tb_port_lane_bonding_enable() - Enable bonding on port
1047  * @port: port to enable
1048  *
1049  * Enable bonding by setting the link width of the port and the other
1050  * port in case of dual link port. Does not wait for the link to
1051  * actually reach the bonded state so caller needs to call
1052  * tb_port_wait_for_link_width() before enabling any paths through the
1053  * link to make sure the link is in expected state.
1054  *
1055  * Return: %0 in case of success and negative errno in case of error
1056  */
1057 int tb_port_lane_bonding_enable(struct tb_port *port)
1058 {
1059 	enum tb_link_width width;
1060 	int ret;
1061 
1062 	/*
1063 	 * Enable lane bonding for both links if not already enabled by
1064 	 * for example the boot firmware.
1065 	 */
1066 	width = tb_port_get_link_width(port);
1067 	if (width == TB_LINK_WIDTH_SINGLE) {
1068 		ret = tb_port_set_link_width(port, TB_LINK_WIDTH_DUAL);
1069 		if (ret)
1070 			goto err_lane0;
1071 	}
1072 
1073 	width = tb_port_get_link_width(port->dual_link_port);
1074 	if (width == TB_LINK_WIDTH_SINGLE) {
1075 		ret = tb_port_set_link_width(port->dual_link_port,
1076 					     TB_LINK_WIDTH_DUAL);
1077 		if (ret)
1078 			goto err_lane0;
1079 	}
1080 
1081 	/*
1082 	 * Only set bonding if the link was not already bonded. This
1083 	 * avoids the lane adapter to re-enter bonding state.
1084 	 */
1085 	if (width == TB_LINK_WIDTH_SINGLE) {
1086 		ret = tb_port_set_lane_bonding(port, true);
1087 		if (ret)
1088 			goto err_lane1;
1089 	}
1090 
1091 	/*
1092 	 * When lane 0 bonding is set it will affect lane 1 too so
1093 	 * update both.
1094 	 */
1095 	port->bonded = true;
1096 	port->dual_link_port->bonded = true;
1097 
1098 	return 0;
1099 
1100 err_lane1:
1101 	tb_port_set_link_width(port->dual_link_port, TB_LINK_WIDTH_SINGLE);
1102 err_lane0:
1103 	tb_port_set_link_width(port, TB_LINK_WIDTH_SINGLE);
1104 
1105 	return ret;
1106 }
1107 
1108 /**
1109  * tb_port_lane_bonding_disable() - Disable bonding on port
1110  * @port: port to disable
1111  *
1112  * Disable bonding by setting the link width of the port and the
1113  * other port in case of dual link port.
1114  */
1115 void tb_port_lane_bonding_disable(struct tb_port *port)
1116 {
1117 	tb_port_set_lane_bonding(port, false);
1118 	tb_port_set_link_width(port->dual_link_port, TB_LINK_WIDTH_SINGLE);
1119 	tb_port_set_link_width(port, TB_LINK_WIDTH_SINGLE);
1120 	port->dual_link_port->bonded = false;
1121 	port->bonded = false;
1122 }
1123 
1124 /**
1125  * tb_port_wait_for_link_width() - Wait until link reaches specific width
1126  * @port: Port to wait for
1127  * @width_mask: Expected link width mask
1128  * @timeout_msec: Timeout in ms how long to wait
1129  *
1130  * Should be used after both ends of the link have been bonded (or
1131  * bonding has been disabled) to wait until the link actually reaches
1132  * the expected state. Returns %-ETIMEDOUT if the width was not reached
1133  * within the given timeout, %0 if it did. Can be passed a mask of
1134  * expected widths and succeeds if any of the widths is reached.
1135  */
1136 int tb_port_wait_for_link_width(struct tb_port *port, unsigned int width_mask,
1137 				int timeout_msec)
1138 {
1139 	ktime_t timeout = ktime_add_ms(ktime_get(), timeout_msec);
1140 	int ret;
1141 
1142 	/* Gen 4 link does not support single lane */
1143 	if ((width_mask & TB_LINK_WIDTH_SINGLE) && is_gen4_link(port))
1144 		return -EOPNOTSUPP;
1145 
1146 	do {
1147 		ret = tb_port_get_link_width(port);
1148 		if (ret < 0) {
1149 			/*
1150 			 * Sometimes we get port locked error when
1151 			 * polling the lanes so we can ignore it and
1152 			 * retry.
1153 			 */
1154 			if (ret != -EACCES)
1155 				return ret;
1156 		} else if (ret & width_mask) {
1157 			return 0;
1158 		}
1159 
1160 		usleep_range(1000, 2000);
1161 	} while (ktime_before(ktime_get(), timeout));
1162 
1163 	return -ETIMEDOUT;
1164 }
1165 
1166 static int tb_port_do_update_credits(struct tb_port *port)
1167 {
1168 	u32 nfc_credits;
1169 	int ret;
1170 
1171 	ret = tb_port_read(port, &nfc_credits, TB_CFG_PORT, ADP_CS_4, 1);
1172 	if (ret)
1173 		return ret;
1174 
1175 	if (nfc_credits != port->config.nfc_credits) {
1176 		u32 total;
1177 
1178 		total = (nfc_credits & ADP_CS_4_TOTAL_BUFFERS_MASK) >>
1179 			ADP_CS_4_TOTAL_BUFFERS_SHIFT;
1180 
1181 		tb_port_dbg(port, "total credits changed %u -> %u\n",
1182 			    port->total_credits, total);
1183 
1184 		port->config.nfc_credits = nfc_credits;
1185 		port->total_credits = total;
1186 	}
1187 
1188 	return 0;
1189 }
1190 
1191 /**
1192  * tb_port_update_credits() - Re-read port total credits
1193  * @port: Port to update
1194  *
1195  * After the link is bonded (or bonding was disabled) the port total
1196  * credits may change, so this function needs to be called to re-read
1197  * the credits. Updates also the second lane adapter.
1198  */
1199 int tb_port_update_credits(struct tb_port *port)
1200 {
1201 	int ret;
1202 
1203 	ret = tb_port_do_update_credits(port);
1204 	if (ret)
1205 		return ret;
1206 	return tb_port_do_update_credits(port->dual_link_port);
1207 }
1208 
1209 static int tb_port_start_lane_initialization(struct tb_port *port)
1210 {
1211 	int ret;
1212 
1213 	if (tb_switch_is_usb4(port->sw))
1214 		return 0;
1215 
1216 	ret = tb_lc_start_lane_initialization(port);
1217 	return ret == -EINVAL ? 0 : ret;
1218 }
1219 
1220 /*
1221  * Returns true if the port had something (router, XDomain) connected
1222  * before suspend.
1223  */
1224 static bool tb_port_resume(struct tb_port *port)
1225 {
1226 	bool has_remote = tb_port_has_remote(port);
1227 
1228 	if (port->usb4) {
1229 		usb4_port_device_resume(port->usb4);
1230 	} else if (!has_remote) {
1231 		/*
1232 		 * For disconnected downstream lane adapters start lane
1233 		 * initialization now so we detect future connects.
1234 		 *
1235 		 * For XDomain start the lane initialzation now so the
1236 		 * link gets re-established.
1237 		 *
1238 		 * This is only needed for non-USB4 ports.
1239 		 */
1240 		if (!tb_is_upstream_port(port) || port->xdomain)
1241 			tb_port_start_lane_initialization(port);
1242 	}
1243 
1244 	return has_remote || port->xdomain;
1245 }
1246 
1247 /**
1248  * tb_port_is_enabled() - Is the adapter port enabled
1249  * @port: Port to check
1250  */
1251 bool tb_port_is_enabled(struct tb_port *port)
1252 {
1253 	switch (port->config.type) {
1254 	case TB_TYPE_PCIE_UP:
1255 	case TB_TYPE_PCIE_DOWN:
1256 		return tb_pci_port_is_enabled(port);
1257 
1258 	case TB_TYPE_DP_HDMI_IN:
1259 	case TB_TYPE_DP_HDMI_OUT:
1260 		return tb_dp_port_is_enabled(port);
1261 
1262 	case TB_TYPE_USB3_UP:
1263 	case TB_TYPE_USB3_DOWN:
1264 		return tb_usb3_port_is_enabled(port);
1265 
1266 	default:
1267 		return false;
1268 	}
1269 }
1270 
1271 /**
1272  * tb_usb3_port_is_enabled() - Is the USB3 adapter port enabled
1273  * @port: USB3 adapter port to check
1274  */
1275 bool tb_usb3_port_is_enabled(struct tb_port *port)
1276 {
1277 	u32 data;
1278 
1279 	if (tb_port_read(port, &data, TB_CFG_PORT,
1280 			 port->cap_adap + ADP_USB3_CS_0, 1))
1281 		return false;
1282 
1283 	return !!(data & ADP_USB3_CS_0_PE);
1284 }
1285 
1286 /**
1287  * tb_usb3_port_enable() - Enable USB3 adapter port
1288  * @port: USB3 adapter port to enable
1289  * @enable: Enable/disable the USB3 adapter
1290  */
1291 int tb_usb3_port_enable(struct tb_port *port, bool enable)
1292 {
1293 	u32 word = enable ? (ADP_USB3_CS_0_PE | ADP_USB3_CS_0_V)
1294 			  : ADP_USB3_CS_0_V;
1295 
1296 	if (!port->cap_adap)
1297 		return -ENXIO;
1298 	return tb_port_write(port, &word, TB_CFG_PORT,
1299 			     port->cap_adap + ADP_USB3_CS_0, 1);
1300 }
1301 
1302 /**
1303  * tb_pci_port_is_enabled() - Is the PCIe adapter port enabled
1304  * @port: PCIe port to check
1305  */
1306 bool tb_pci_port_is_enabled(struct tb_port *port)
1307 {
1308 	u32 data;
1309 
1310 	if (tb_port_read(port, &data, TB_CFG_PORT,
1311 			 port->cap_adap + ADP_PCIE_CS_0, 1))
1312 		return false;
1313 
1314 	return !!(data & ADP_PCIE_CS_0_PE);
1315 }
1316 
1317 /**
1318  * tb_pci_port_enable() - Enable PCIe adapter port
1319  * @port: PCIe port to enable
1320  * @enable: Enable/disable the PCIe adapter
1321  */
1322 int tb_pci_port_enable(struct tb_port *port, bool enable)
1323 {
1324 	u32 word = enable ? ADP_PCIE_CS_0_PE : 0x0;
1325 	if (!port->cap_adap)
1326 		return -ENXIO;
1327 	return tb_port_write(port, &word, TB_CFG_PORT,
1328 			     port->cap_adap + ADP_PCIE_CS_0, 1);
1329 }
1330 
1331 /**
1332  * tb_dp_port_hpd_is_active() - Is HPD already active
1333  * @port: DP out port to check
1334  *
1335  * Checks if the DP OUT adapter port has HDP bit already set.
1336  */
1337 int tb_dp_port_hpd_is_active(struct tb_port *port)
1338 {
1339 	u32 data;
1340 	int ret;
1341 
1342 	ret = tb_port_read(port, &data, TB_CFG_PORT,
1343 			   port->cap_adap + ADP_DP_CS_2, 1);
1344 	if (ret)
1345 		return ret;
1346 
1347 	return !!(data & ADP_DP_CS_2_HDP);
1348 }
1349 
1350 /**
1351  * tb_dp_port_hpd_clear() - Clear HPD from DP IN port
1352  * @port: Port to clear HPD
1353  *
1354  * If the DP IN port has HDP set, this function can be used to clear it.
1355  */
1356 int tb_dp_port_hpd_clear(struct tb_port *port)
1357 {
1358 	u32 data;
1359 	int ret;
1360 
1361 	ret = tb_port_read(port, &data, TB_CFG_PORT,
1362 			   port->cap_adap + ADP_DP_CS_3, 1);
1363 	if (ret)
1364 		return ret;
1365 
1366 	data |= ADP_DP_CS_3_HDPC;
1367 	return tb_port_write(port, &data, TB_CFG_PORT,
1368 			     port->cap_adap + ADP_DP_CS_3, 1);
1369 }
1370 
1371 /**
1372  * tb_dp_port_set_hops() - Set video/aux Hop IDs for DP port
1373  * @port: DP IN/OUT port to set hops
1374  * @video: Video Hop ID
1375  * @aux_tx: AUX TX Hop ID
1376  * @aux_rx: AUX RX Hop ID
1377  *
1378  * Programs specified Hop IDs for DP IN/OUT port. Can be called for USB4
1379  * router DP adapters too but does not program the values as the fields
1380  * are read-only.
1381  */
1382 int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
1383 			unsigned int aux_tx, unsigned int aux_rx)
1384 {
1385 	u32 data[2];
1386 	int ret;
1387 
1388 	if (tb_switch_is_usb4(port->sw))
1389 		return 0;
1390 
1391 	ret = tb_port_read(port, data, TB_CFG_PORT,
1392 			   port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
1393 	if (ret)
1394 		return ret;
1395 
1396 	data[0] &= ~ADP_DP_CS_0_VIDEO_HOPID_MASK;
1397 	data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
1398 	data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
1399 
1400 	data[0] |= (video << ADP_DP_CS_0_VIDEO_HOPID_SHIFT) &
1401 		ADP_DP_CS_0_VIDEO_HOPID_MASK;
1402 	data[1] |= aux_tx & ADP_DP_CS_1_AUX_TX_HOPID_MASK;
1403 	data[1] |= (aux_rx << ADP_DP_CS_1_AUX_RX_HOPID_SHIFT) &
1404 		ADP_DP_CS_1_AUX_RX_HOPID_MASK;
1405 
1406 	return tb_port_write(port, data, TB_CFG_PORT,
1407 			     port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
1408 }
1409 
1410 /**
1411  * tb_dp_port_is_enabled() - Is DP adapter port enabled
1412  * @port: DP adapter port to check
1413  */
1414 bool tb_dp_port_is_enabled(struct tb_port *port)
1415 {
1416 	u32 data[2];
1417 
1418 	if (tb_port_read(port, data, TB_CFG_PORT, port->cap_adap + ADP_DP_CS_0,
1419 			 ARRAY_SIZE(data)))
1420 		return false;
1421 
1422 	return !!(data[0] & (ADP_DP_CS_0_VE | ADP_DP_CS_0_AE));
1423 }
1424 
1425 /**
1426  * tb_dp_port_enable() - Enables/disables DP paths of a port
1427  * @port: DP IN/OUT port
1428  * @enable: Enable/disable DP path
1429  *
1430  * Once Hop IDs are programmed DP paths can be enabled or disabled by
1431  * calling this function.
1432  */
1433 int tb_dp_port_enable(struct tb_port *port, bool enable)
1434 {
1435 	u32 data[2];
1436 	int ret;
1437 
1438 	ret = tb_port_read(port, data, TB_CFG_PORT,
1439 			  port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
1440 	if (ret)
1441 		return ret;
1442 
1443 	if (enable)
1444 		data[0] |= ADP_DP_CS_0_VE | ADP_DP_CS_0_AE;
1445 	else
1446 		data[0] &= ~(ADP_DP_CS_0_VE | ADP_DP_CS_0_AE);
1447 
1448 	return tb_port_write(port, data, TB_CFG_PORT,
1449 			     port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
1450 }
1451 
1452 /* switch utility functions */
1453 
1454 static const char *tb_switch_generation_name(const struct tb_switch *sw)
1455 {
1456 	switch (sw->generation) {
1457 	case 1:
1458 		return "Thunderbolt 1";
1459 	case 2:
1460 		return "Thunderbolt 2";
1461 	case 3:
1462 		return "Thunderbolt 3";
1463 	case 4:
1464 		return "USB4";
1465 	default:
1466 		return "Unknown";
1467 	}
1468 }
1469 
1470 static void tb_dump_switch(const struct tb *tb, const struct tb_switch *sw)
1471 {
1472 	const struct tb_regs_switch_header *regs = &sw->config;
1473 
1474 	tb_dbg(tb, " %s Switch: %x:%x (Revision: %d, TB Version: %d)\n",
1475 	       tb_switch_generation_name(sw), regs->vendor_id, regs->device_id,
1476 	       regs->revision, regs->thunderbolt_version);
1477 	tb_dbg(tb, "  Max Port Number: %d\n", regs->max_port_number);
1478 	tb_dbg(tb, "  Config:\n");
1479 	tb_dbg(tb,
1480 		"   Upstream Port Number: %d Depth: %d Route String: %#llx Enabled: %d, PlugEventsDelay: %dms\n",
1481 	       regs->upstream_port_number, regs->depth,
1482 	       (((u64) regs->route_hi) << 32) | regs->route_lo,
1483 	       regs->enabled, regs->plug_events_delay);
1484 	tb_dbg(tb, "   unknown1: %#x unknown4: %#x\n",
1485 	       regs->__unknown1, regs->__unknown4);
1486 }
1487 
1488 /**
1489  * tb_switch_reset() - reconfigure route, enable and send TB_CFG_PKG_RESET
1490  * @sw: Switch to reset
1491  *
1492  * Return: Returns 0 on success or an error code on failure.
1493  */
1494 int tb_switch_reset(struct tb_switch *sw)
1495 {
1496 	struct tb_cfg_result res;
1497 
1498 	if (sw->generation > 1)
1499 		return 0;
1500 
1501 	tb_sw_dbg(sw, "resetting switch\n");
1502 
1503 	res.err = tb_sw_write(sw, ((u32 *) &sw->config) + 2,
1504 			      TB_CFG_SWITCH, 2, 2);
1505 	if (res.err)
1506 		return res.err;
1507 	res = tb_cfg_reset(sw->tb->ctl, tb_route(sw));
1508 	if (res.err > 0)
1509 		return -EIO;
1510 	return res.err;
1511 }
1512 
1513 /**
1514  * tb_switch_wait_for_bit() - Wait for specified value of bits in offset
1515  * @sw: Router to read the offset value from
1516  * @offset: Offset in the router config space to read from
1517  * @bit: Bit mask in the offset to wait for
1518  * @value: Value of the bits to wait for
1519  * @timeout_msec: Timeout in ms how long to wait
1520  *
1521  * Wait till the specified bits in specified offset reach specified value.
1522  * Returns %0 in case of success, %-ETIMEDOUT if the @value was not reached
1523  * within the given timeout or a negative errno in case of failure.
1524  */
1525 int tb_switch_wait_for_bit(struct tb_switch *sw, u32 offset, u32 bit,
1526 			   u32 value, int timeout_msec)
1527 {
1528 	ktime_t timeout = ktime_add_ms(ktime_get(), timeout_msec);
1529 
1530 	do {
1531 		u32 val;
1532 		int ret;
1533 
1534 		ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, offset, 1);
1535 		if (ret)
1536 			return ret;
1537 
1538 		if ((val & bit) == value)
1539 			return 0;
1540 
1541 		usleep_range(50, 100);
1542 	} while (ktime_before(ktime_get(), timeout));
1543 
1544 	return -ETIMEDOUT;
1545 }
1546 
1547 /*
1548  * tb_plug_events_active() - enable/disable plug events on a switch
1549  *
1550  * Also configures a sane plug_events_delay of 255ms.
1551  *
1552  * Return: Returns 0 on success or an error code on failure.
1553  */
1554 static int tb_plug_events_active(struct tb_switch *sw, bool active)
1555 {
1556 	u32 data;
1557 	int res;
1558 
1559 	if (tb_switch_is_icm(sw) || tb_switch_is_usb4(sw))
1560 		return 0;
1561 
1562 	sw->config.plug_events_delay = 0xff;
1563 	res = tb_sw_write(sw, ((u32 *) &sw->config) + 4, TB_CFG_SWITCH, 4, 1);
1564 	if (res)
1565 		return res;
1566 
1567 	res = tb_sw_read(sw, &data, TB_CFG_SWITCH, sw->cap_plug_events + 1, 1);
1568 	if (res)
1569 		return res;
1570 
1571 	if (active) {
1572 		data = data & 0xFFFFFF83;
1573 		switch (sw->config.device_id) {
1574 		case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1575 		case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1576 		case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
1577 			break;
1578 		default:
1579 			/*
1580 			 * Skip Alpine Ridge, it needs to have vendor
1581 			 * specific USB hotplug event enabled for the
1582 			 * internal xHCI to work.
1583 			 */
1584 			if (!tb_switch_is_alpine_ridge(sw))
1585 				data |= TB_PLUG_EVENTS_USB_DISABLE;
1586 		}
1587 	} else {
1588 		data = data | 0x7c;
1589 	}
1590 	return tb_sw_write(sw, &data, TB_CFG_SWITCH,
1591 			   sw->cap_plug_events + 1, 1);
1592 }
1593 
1594 static ssize_t authorized_show(struct device *dev,
1595 			       struct device_attribute *attr,
1596 			       char *buf)
1597 {
1598 	struct tb_switch *sw = tb_to_switch(dev);
1599 
1600 	return sysfs_emit(buf, "%u\n", sw->authorized);
1601 }
1602 
1603 static int disapprove_switch(struct device *dev, void *not_used)
1604 {
1605 	char *envp[] = { "AUTHORIZED=0", NULL };
1606 	struct tb_switch *sw;
1607 
1608 	sw = tb_to_switch(dev);
1609 	if (sw && sw->authorized) {
1610 		int ret;
1611 
1612 		/* First children */
1613 		ret = device_for_each_child_reverse(&sw->dev, NULL, disapprove_switch);
1614 		if (ret)
1615 			return ret;
1616 
1617 		ret = tb_domain_disapprove_switch(sw->tb, sw);
1618 		if (ret)
1619 			return ret;
1620 
1621 		sw->authorized = 0;
1622 		kobject_uevent_env(&sw->dev.kobj, KOBJ_CHANGE, envp);
1623 	}
1624 
1625 	return 0;
1626 }
1627 
1628 static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val)
1629 {
1630 	char envp_string[13];
1631 	int ret = -EINVAL;
1632 	char *envp[] = { envp_string, NULL };
1633 
1634 	if (!mutex_trylock(&sw->tb->lock))
1635 		return restart_syscall();
1636 
1637 	if (!!sw->authorized == !!val)
1638 		goto unlock;
1639 
1640 	switch (val) {
1641 	/* Disapprove switch */
1642 	case 0:
1643 		if (tb_route(sw)) {
1644 			ret = disapprove_switch(&sw->dev, NULL);
1645 			goto unlock;
1646 		}
1647 		break;
1648 
1649 	/* Approve switch */
1650 	case 1:
1651 		if (sw->key)
1652 			ret = tb_domain_approve_switch_key(sw->tb, sw);
1653 		else
1654 			ret = tb_domain_approve_switch(sw->tb, sw);
1655 		break;
1656 
1657 	/* Challenge switch */
1658 	case 2:
1659 		if (sw->key)
1660 			ret = tb_domain_challenge_switch_key(sw->tb, sw);
1661 		break;
1662 
1663 	default:
1664 		break;
1665 	}
1666 
1667 	if (!ret) {
1668 		sw->authorized = val;
1669 		/*
1670 		 * Notify status change to the userspace, informing the new
1671 		 * value of /sys/bus/thunderbolt/devices/.../authorized.
1672 		 */
1673 		sprintf(envp_string, "AUTHORIZED=%u", sw->authorized);
1674 		kobject_uevent_env(&sw->dev.kobj, KOBJ_CHANGE, envp);
1675 	}
1676 
1677 unlock:
1678 	mutex_unlock(&sw->tb->lock);
1679 	return ret;
1680 }
1681 
1682 static ssize_t authorized_store(struct device *dev,
1683 				struct device_attribute *attr,
1684 				const char *buf, size_t count)
1685 {
1686 	struct tb_switch *sw = tb_to_switch(dev);
1687 	unsigned int val;
1688 	ssize_t ret;
1689 
1690 	ret = kstrtouint(buf, 0, &val);
1691 	if (ret)
1692 		return ret;
1693 	if (val > 2)
1694 		return -EINVAL;
1695 
1696 	pm_runtime_get_sync(&sw->dev);
1697 	ret = tb_switch_set_authorized(sw, val);
1698 	pm_runtime_mark_last_busy(&sw->dev);
1699 	pm_runtime_put_autosuspend(&sw->dev);
1700 
1701 	return ret ? ret : count;
1702 }
1703 static DEVICE_ATTR_RW(authorized);
1704 
1705 static ssize_t boot_show(struct device *dev, struct device_attribute *attr,
1706 			 char *buf)
1707 {
1708 	struct tb_switch *sw = tb_to_switch(dev);
1709 
1710 	return sysfs_emit(buf, "%u\n", sw->boot);
1711 }
1712 static DEVICE_ATTR_RO(boot);
1713 
1714 static ssize_t device_show(struct device *dev, struct device_attribute *attr,
1715 			   char *buf)
1716 {
1717 	struct tb_switch *sw = tb_to_switch(dev);
1718 
1719 	return sysfs_emit(buf, "%#x\n", sw->device);
1720 }
1721 static DEVICE_ATTR_RO(device);
1722 
1723 static ssize_t
1724 device_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1725 {
1726 	struct tb_switch *sw = tb_to_switch(dev);
1727 
1728 	return sysfs_emit(buf, "%s\n", sw->device_name ?: "");
1729 }
1730 static DEVICE_ATTR_RO(device_name);
1731 
1732 static ssize_t
1733 generation_show(struct device *dev, struct device_attribute *attr, char *buf)
1734 {
1735 	struct tb_switch *sw = tb_to_switch(dev);
1736 
1737 	return sysfs_emit(buf, "%u\n", sw->generation);
1738 }
1739 static DEVICE_ATTR_RO(generation);
1740 
1741 static ssize_t key_show(struct device *dev, struct device_attribute *attr,
1742 			char *buf)
1743 {
1744 	struct tb_switch *sw = tb_to_switch(dev);
1745 	ssize_t ret;
1746 
1747 	if (!mutex_trylock(&sw->tb->lock))
1748 		return restart_syscall();
1749 
1750 	if (sw->key)
1751 		ret = sysfs_emit(buf, "%*phN\n", TB_SWITCH_KEY_SIZE, sw->key);
1752 	else
1753 		ret = sysfs_emit(buf, "\n");
1754 
1755 	mutex_unlock(&sw->tb->lock);
1756 	return ret;
1757 }
1758 
1759 static ssize_t key_store(struct device *dev, struct device_attribute *attr,
1760 			 const char *buf, size_t count)
1761 {
1762 	struct tb_switch *sw = tb_to_switch(dev);
1763 	u8 key[TB_SWITCH_KEY_SIZE];
1764 	ssize_t ret = count;
1765 	bool clear = false;
1766 
1767 	if (!strcmp(buf, "\n"))
1768 		clear = true;
1769 	else if (hex2bin(key, buf, sizeof(key)))
1770 		return -EINVAL;
1771 
1772 	if (!mutex_trylock(&sw->tb->lock))
1773 		return restart_syscall();
1774 
1775 	if (sw->authorized) {
1776 		ret = -EBUSY;
1777 	} else {
1778 		kfree(sw->key);
1779 		if (clear) {
1780 			sw->key = NULL;
1781 		} else {
1782 			sw->key = kmemdup(key, sizeof(key), GFP_KERNEL);
1783 			if (!sw->key)
1784 				ret = -ENOMEM;
1785 		}
1786 	}
1787 
1788 	mutex_unlock(&sw->tb->lock);
1789 	return ret;
1790 }
1791 static DEVICE_ATTR(key, 0600, key_show, key_store);
1792 
1793 static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
1794 			  char *buf)
1795 {
1796 	struct tb_switch *sw = tb_to_switch(dev);
1797 
1798 	return sysfs_emit(buf, "%u.0 Gb/s\n", sw->link_speed);
1799 }
1800 
1801 /*
1802  * Currently all lanes must run at the same speed but we expose here
1803  * both directions to allow possible asymmetric links in the future.
1804  */
1805 static DEVICE_ATTR(rx_speed, 0444, speed_show, NULL);
1806 static DEVICE_ATTR(tx_speed, 0444, speed_show, NULL);
1807 
1808 static ssize_t rx_lanes_show(struct device *dev, struct device_attribute *attr,
1809 			     char *buf)
1810 {
1811 	struct tb_switch *sw = tb_to_switch(dev);
1812 	unsigned int width;
1813 
1814 	switch (sw->link_width) {
1815 	case TB_LINK_WIDTH_SINGLE:
1816 	case TB_LINK_WIDTH_ASYM_TX:
1817 		width = 1;
1818 		break;
1819 	case TB_LINK_WIDTH_DUAL:
1820 		width = 2;
1821 		break;
1822 	case TB_LINK_WIDTH_ASYM_RX:
1823 		width = 3;
1824 		break;
1825 	default:
1826 		WARN_ON_ONCE(1);
1827 		return -EINVAL;
1828 	}
1829 
1830 	return sysfs_emit(buf, "%u\n", width);
1831 }
1832 static DEVICE_ATTR(rx_lanes, 0444, rx_lanes_show, NULL);
1833 
1834 static ssize_t tx_lanes_show(struct device *dev, struct device_attribute *attr,
1835 			     char *buf)
1836 {
1837 	struct tb_switch *sw = tb_to_switch(dev);
1838 	unsigned int width;
1839 
1840 	switch (sw->link_width) {
1841 	case TB_LINK_WIDTH_SINGLE:
1842 	case TB_LINK_WIDTH_ASYM_RX:
1843 		width = 1;
1844 		break;
1845 	case TB_LINK_WIDTH_DUAL:
1846 		width = 2;
1847 		break;
1848 	case TB_LINK_WIDTH_ASYM_TX:
1849 		width = 3;
1850 		break;
1851 	default:
1852 		WARN_ON_ONCE(1);
1853 		return -EINVAL;
1854 	}
1855 
1856 	return sysfs_emit(buf, "%u\n", width);
1857 }
1858 static DEVICE_ATTR(tx_lanes, 0444, tx_lanes_show, NULL);
1859 
1860 static ssize_t nvm_authenticate_show(struct device *dev,
1861 	struct device_attribute *attr, char *buf)
1862 {
1863 	struct tb_switch *sw = tb_to_switch(dev);
1864 	u32 status;
1865 
1866 	nvm_get_auth_status(sw, &status);
1867 	return sysfs_emit(buf, "%#x\n", status);
1868 }
1869 
1870 static ssize_t nvm_authenticate_sysfs(struct device *dev, const char *buf,
1871 				      bool disconnect)
1872 {
1873 	struct tb_switch *sw = tb_to_switch(dev);
1874 	int val, ret;
1875 
1876 	pm_runtime_get_sync(&sw->dev);
1877 
1878 	if (!mutex_trylock(&sw->tb->lock)) {
1879 		ret = restart_syscall();
1880 		goto exit_rpm;
1881 	}
1882 
1883 	if (sw->no_nvm_upgrade) {
1884 		ret = -EOPNOTSUPP;
1885 		goto exit_unlock;
1886 	}
1887 
1888 	/* If NVMem devices are not yet added */
1889 	if (!sw->nvm) {
1890 		ret = -EAGAIN;
1891 		goto exit_unlock;
1892 	}
1893 
1894 	ret = kstrtoint(buf, 10, &val);
1895 	if (ret)
1896 		goto exit_unlock;
1897 
1898 	/* Always clear the authentication status */
1899 	nvm_clear_auth_status(sw);
1900 
1901 	if (val > 0) {
1902 		if (val == AUTHENTICATE_ONLY) {
1903 			if (disconnect)
1904 				ret = -EINVAL;
1905 			else
1906 				ret = nvm_authenticate(sw, true);
1907 		} else {
1908 			if (!sw->nvm->flushed) {
1909 				if (!sw->nvm->buf) {
1910 					ret = -EINVAL;
1911 					goto exit_unlock;
1912 				}
1913 
1914 				ret = nvm_validate_and_write(sw);
1915 				if (ret || val == WRITE_ONLY)
1916 					goto exit_unlock;
1917 			}
1918 			if (val == WRITE_AND_AUTHENTICATE) {
1919 				if (disconnect)
1920 					ret = tb_lc_force_power(sw);
1921 				else
1922 					ret = nvm_authenticate(sw, false);
1923 			}
1924 		}
1925 	}
1926 
1927 exit_unlock:
1928 	mutex_unlock(&sw->tb->lock);
1929 exit_rpm:
1930 	pm_runtime_mark_last_busy(&sw->dev);
1931 	pm_runtime_put_autosuspend(&sw->dev);
1932 
1933 	return ret;
1934 }
1935 
1936 static ssize_t nvm_authenticate_store(struct device *dev,
1937 	struct device_attribute *attr, const char *buf, size_t count)
1938 {
1939 	int ret = nvm_authenticate_sysfs(dev, buf, false);
1940 	if (ret)
1941 		return ret;
1942 	return count;
1943 }
1944 static DEVICE_ATTR_RW(nvm_authenticate);
1945 
1946 static ssize_t nvm_authenticate_on_disconnect_show(struct device *dev,
1947 	struct device_attribute *attr, char *buf)
1948 {
1949 	return nvm_authenticate_show(dev, attr, buf);
1950 }
1951 
1952 static ssize_t nvm_authenticate_on_disconnect_store(struct device *dev,
1953 	struct device_attribute *attr, const char *buf, size_t count)
1954 {
1955 	int ret;
1956 
1957 	ret = nvm_authenticate_sysfs(dev, buf, true);
1958 	return ret ? ret : count;
1959 }
1960 static DEVICE_ATTR_RW(nvm_authenticate_on_disconnect);
1961 
1962 static ssize_t nvm_version_show(struct device *dev,
1963 				struct device_attribute *attr, char *buf)
1964 {
1965 	struct tb_switch *sw = tb_to_switch(dev);
1966 	int ret;
1967 
1968 	if (!mutex_trylock(&sw->tb->lock))
1969 		return restart_syscall();
1970 
1971 	if (sw->safe_mode)
1972 		ret = -ENODATA;
1973 	else if (!sw->nvm)
1974 		ret = -EAGAIN;
1975 	else
1976 		ret = sysfs_emit(buf, "%x.%x\n", sw->nvm->major, sw->nvm->minor);
1977 
1978 	mutex_unlock(&sw->tb->lock);
1979 
1980 	return ret;
1981 }
1982 static DEVICE_ATTR_RO(nvm_version);
1983 
1984 static ssize_t vendor_show(struct device *dev, struct device_attribute *attr,
1985 			   char *buf)
1986 {
1987 	struct tb_switch *sw = tb_to_switch(dev);
1988 
1989 	return sysfs_emit(buf, "%#x\n", sw->vendor);
1990 }
1991 static DEVICE_ATTR_RO(vendor);
1992 
1993 static ssize_t
1994 vendor_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1995 {
1996 	struct tb_switch *sw = tb_to_switch(dev);
1997 
1998 	return sysfs_emit(buf, "%s\n", sw->vendor_name ?: "");
1999 }
2000 static DEVICE_ATTR_RO(vendor_name);
2001 
2002 static ssize_t unique_id_show(struct device *dev, struct device_attribute *attr,
2003 			      char *buf)
2004 {
2005 	struct tb_switch *sw = tb_to_switch(dev);
2006 
2007 	return sysfs_emit(buf, "%pUb\n", sw->uuid);
2008 }
2009 static DEVICE_ATTR_RO(unique_id);
2010 
2011 static struct attribute *switch_attrs[] = {
2012 	&dev_attr_authorized.attr,
2013 	&dev_attr_boot.attr,
2014 	&dev_attr_device.attr,
2015 	&dev_attr_device_name.attr,
2016 	&dev_attr_generation.attr,
2017 	&dev_attr_key.attr,
2018 	&dev_attr_nvm_authenticate.attr,
2019 	&dev_attr_nvm_authenticate_on_disconnect.attr,
2020 	&dev_attr_nvm_version.attr,
2021 	&dev_attr_rx_speed.attr,
2022 	&dev_attr_rx_lanes.attr,
2023 	&dev_attr_tx_speed.attr,
2024 	&dev_attr_tx_lanes.attr,
2025 	&dev_attr_vendor.attr,
2026 	&dev_attr_vendor_name.attr,
2027 	&dev_attr_unique_id.attr,
2028 	NULL,
2029 };
2030 
2031 static umode_t switch_attr_is_visible(struct kobject *kobj,
2032 				      struct attribute *attr, int n)
2033 {
2034 	struct device *dev = kobj_to_dev(kobj);
2035 	struct tb_switch *sw = tb_to_switch(dev);
2036 
2037 	if (attr == &dev_attr_authorized.attr) {
2038 		if (sw->tb->security_level == TB_SECURITY_NOPCIE ||
2039 		    sw->tb->security_level == TB_SECURITY_DPONLY)
2040 			return 0;
2041 	} else if (attr == &dev_attr_device.attr) {
2042 		if (!sw->device)
2043 			return 0;
2044 	} else if (attr == &dev_attr_device_name.attr) {
2045 		if (!sw->device_name)
2046 			return 0;
2047 	} else if (attr == &dev_attr_vendor.attr)  {
2048 		if (!sw->vendor)
2049 			return 0;
2050 	} else if (attr == &dev_attr_vendor_name.attr)  {
2051 		if (!sw->vendor_name)
2052 			return 0;
2053 	} else if (attr == &dev_attr_key.attr) {
2054 		if (tb_route(sw) &&
2055 		    sw->tb->security_level == TB_SECURITY_SECURE &&
2056 		    sw->security_level == TB_SECURITY_SECURE)
2057 			return attr->mode;
2058 		return 0;
2059 	} else if (attr == &dev_attr_rx_speed.attr ||
2060 		   attr == &dev_attr_rx_lanes.attr ||
2061 		   attr == &dev_attr_tx_speed.attr ||
2062 		   attr == &dev_attr_tx_lanes.attr) {
2063 		if (tb_route(sw))
2064 			return attr->mode;
2065 		return 0;
2066 	} else if (attr == &dev_attr_nvm_authenticate.attr) {
2067 		if (nvm_upgradeable(sw))
2068 			return attr->mode;
2069 		return 0;
2070 	} else if (attr == &dev_attr_nvm_version.attr) {
2071 		if (nvm_readable(sw))
2072 			return attr->mode;
2073 		return 0;
2074 	} else if (attr == &dev_attr_boot.attr) {
2075 		if (tb_route(sw))
2076 			return attr->mode;
2077 		return 0;
2078 	} else if (attr == &dev_attr_nvm_authenticate_on_disconnect.attr) {
2079 		if (sw->quirks & QUIRK_FORCE_POWER_LINK_CONTROLLER)
2080 			return attr->mode;
2081 		return 0;
2082 	}
2083 
2084 	return sw->safe_mode ? 0 : attr->mode;
2085 }
2086 
2087 static const struct attribute_group switch_group = {
2088 	.is_visible = switch_attr_is_visible,
2089 	.attrs = switch_attrs,
2090 };
2091 
2092 static const struct attribute_group *switch_groups[] = {
2093 	&switch_group,
2094 	NULL,
2095 };
2096 
2097 static void tb_switch_release(struct device *dev)
2098 {
2099 	struct tb_switch *sw = tb_to_switch(dev);
2100 	struct tb_port *port;
2101 
2102 	dma_port_free(sw->dma_port);
2103 
2104 	tb_switch_for_each_port(sw, port) {
2105 		ida_destroy(&port->in_hopids);
2106 		ida_destroy(&port->out_hopids);
2107 	}
2108 
2109 	kfree(sw->uuid);
2110 	kfree(sw->device_name);
2111 	kfree(sw->vendor_name);
2112 	kfree(sw->ports);
2113 	kfree(sw->drom);
2114 	kfree(sw->key);
2115 	kfree(sw);
2116 }
2117 
2118 static int tb_switch_uevent(const struct device *dev, struct kobj_uevent_env *env)
2119 {
2120 	const struct tb_switch *sw = tb_to_switch(dev);
2121 	const char *type;
2122 
2123 	if (tb_switch_is_usb4(sw)) {
2124 		if (add_uevent_var(env, "USB4_VERSION=%u.0",
2125 				   usb4_switch_version(sw)))
2126 			return -ENOMEM;
2127 	}
2128 
2129 	if (!tb_route(sw)) {
2130 		type = "host";
2131 	} else {
2132 		const struct tb_port *port;
2133 		bool hub = false;
2134 
2135 		/* Device is hub if it has any downstream ports */
2136 		tb_switch_for_each_port(sw, port) {
2137 			if (!port->disabled && !tb_is_upstream_port(port) &&
2138 			     tb_port_is_null(port)) {
2139 				hub = true;
2140 				break;
2141 			}
2142 		}
2143 
2144 		type = hub ? "hub" : "device";
2145 	}
2146 
2147 	if (add_uevent_var(env, "USB4_TYPE=%s", type))
2148 		return -ENOMEM;
2149 	return 0;
2150 }
2151 
2152 /*
2153  * Currently only need to provide the callbacks. Everything else is handled
2154  * in the connection manager.
2155  */
2156 static int __maybe_unused tb_switch_runtime_suspend(struct device *dev)
2157 {
2158 	struct tb_switch *sw = tb_to_switch(dev);
2159 	const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
2160 
2161 	if (cm_ops->runtime_suspend_switch)
2162 		return cm_ops->runtime_suspend_switch(sw);
2163 
2164 	return 0;
2165 }
2166 
2167 static int __maybe_unused tb_switch_runtime_resume(struct device *dev)
2168 {
2169 	struct tb_switch *sw = tb_to_switch(dev);
2170 	const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
2171 
2172 	if (cm_ops->runtime_resume_switch)
2173 		return cm_ops->runtime_resume_switch(sw);
2174 	return 0;
2175 }
2176 
2177 static const struct dev_pm_ops tb_switch_pm_ops = {
2178 	SET_RUNTIME_PM_OPS(tb_switch_runtime_suspend, tb_switch_runtime_resume,
2179 			   NULL)
2180 };
2181 
2182 struct device_type tb_switch_type = {
2183 	.name = "thunderbolt_device",
2184 	.release = tb_switch_release,
2185 	.uevent = tb_switch_uevent,
2186 	.pm = &tb_switch_pm_ops,
2187 };
2188 
2189 static int tb_switch_get_generation(struct tb_switch *sw)
2190 {
2191 	switch (sw->config.device_id) {
2192 	case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
2193 	case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
2194 	case PCI_DEVICE_ID_INTEL_LIGHT_PEAK:
2195 	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
2196 	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
2197 	case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
2198 	case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_2C_BRIDGE:
2199 	case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_4C_BRIDGE:
2200 		return 1;
2201 
2202 	case PCI_DEVICE_ID_INTEL_WIN_RIDGE_2C_BRIDGE:
2203 	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
2204 	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
2205 		return 2;
2206 
2207 	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
2208 	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
2209 	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_BRIDGE:
2210 	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
2211 	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
2212 	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
2213 	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
2214 	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
2215 	case PCI_DEVICE_ID_INTEL_ICL_NHI0:
2216 	case PCI_DEVICE_ID_INTEL_ICL_NHI1:
2217 		return 3;
2218 
2219 	default:
2220 		if (tb_switch_is_usb4(sw))
2221 			return 4;
2222 
2223 		/*
2224 		 * For unknown switches assume generation to be 1 to be
2225 		 * on the safe side.
2226 		 */
2227 		tb_sw_warn(sw, "unsupported switch device id %#x\n",
2228 			   sw->config.device_id);
2229 		return 1;
2230 	}
2231 }
2232 
2233 static bool tb_switch_exceeds_max_depth(const struct tb_switch *sw, int depth)
2234 {
2235 	int max_depth;
2236 
2237 	if (tb_switch_is_usb4(sw) ||
2238 	    (sw->tb->root_switch && tb_switch_is_usb4(sw->tb->root_switch)))
2239 		max_depth = USB4_SWITCH_MAX_DEPTH;
2240 	else
2241 		max_depth = TB_SWITCH_MAX_DEPTH;
2242 
2243 	return depth > max_depth;
2244 }
2245 
2246 /**
2247  * tb_switch_alloc() - allocate a switch
2248  * @tb: Pointer to the owning domain
2249  * @parent: Parent device for this switch
2250  * @route: Route string for this switch
2251  *
2252  * Allocates and initializes a switch. Will not upload configuration to
2253  * the switch. For that you need to call tb_switch_configure()
2254  * separately. The returned switch should be released by calling
2255  * tb_switch_put().
2256  *
2257  * Return: Pointer to the allocated switch or ERR_PTR() in case of
2258  * failure.
2259  */
2260 struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
2261 				  u64 route)
2262 {
2263 	struct tb_switch *sw;
2264 	int upstream_port;
2265 	int i, ret, depth;
2266 
2267 	/* Unlock the downstream port so we can access the switch below */
2268 	if (route) {
2269 		struct tb_switch *parent_sw = tb_to_switch(parent);
2270 		struct tb_port *down;
2271 
2272 		down = tb_port_at(route, parent_sw);
2273 		tb_port_unlock(down);
2274 	}
2275 
2276 	depth = tb_route_length(route);
2277 
2278 	upstream_port = tb_cfg_get_upstream_port(tb->ctl, route);
2279 	if (upstream_port < 0)
2280 		return ERR_PTR(upstream_port);
2281 
2282 	sw = kzalloc(sizeof(*sw), GFP_KERNEL);
2283 	if (!sw)
2284 		return ERR_PTR(-ENOMEM);
2285 
2286 	sw->tb = tb;
2287 	ret = tb_cfg_read(tb->ctl, &sw->config, route, 0, TB_CFG_SWITCH, 0, 5);
2288 	if (ret)
2289 		goto err_free_sw_ports;
2290 
2291 	sw->generation = tb_switch_get_generation(sw);
2292 
2293 	tb_dbg(tb, "current switch config:\n");
2294 	tb_dump_switch(tb, sw);
2295 
2296 	/* configure switch */
2297 	sw->config.upstream_port_number = upstream_port;
2298 	sw->config.depth = depth;
2299 	sw->config.route_hi = upper_32_bits(route);
2300 	sw->config.route_lo = lower_32_bits(route);
2301 	sw->config.enabled = 0;
2302 
2303 	/* Make sure we do not exceed maximum topology limit */
2304 	if (tb_switch_exceeds_max_depth(sw, depth)) {
2305 		ret = -EADDRNOTAVAIL;
2306 		goto err_free_sw_ports;
2307 	}
2308 
2309 	/* initialize ports */
2310 	sw->ports = kcalloc(sw->config.max_port_number + 1, sizeof(*sw->ports),
2311 				GFP_KERNEL);
2312 	if (!sw->ports) {
2313 		ret = -ENOMEM;
2314 		goto err_free_sw_ports;
2315 	}
2316 
2317 	for (i = 0; i <= sw->config.max_port_number; i++) {
2318 		/* minimum setup for tb_find_cap and tb_drom_read to work */
2319 		sw->ports[i].sw = sw;
2320 		sw->ports[i].port = i;
2321 
2322 		/* Control port does not need HopID allocation */
2323 		if (i) {
2324 			ida_init(&sw->ports[i].in_hopids);
2325 			ida_init(&sw->ports[i].out_hopids);
2326 		}
2327 	}
2328 
2329 	ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_PLUG_EVENTS);
2330 	if (ret > 0)
2331 		sw->cap_plug_events = ret;
2332 
2333 	ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_TIME2);
2334 	if (ret > 0)
2335 		sw->cap_vsec_tmu = ret;
2336 
2337 	ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_LINK_CONTROLLER);
2338 	if (ret > 0)
2339 		sw->cap_lc = ret;
2340 
2341 	ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_CP_LP);
2342 	if (ret > 0)
2343 		sw->cap_lp = ret;
2344 
2345 	/* Root switch is always authorized */
2346 	if (!route)
2347 		sw->authorized = true;
2348 
2349 	device_initialize(&sw->dev);
2350 	sw->dev.parent = parent;
2351 	sw->dev.bus = &tb_bus_type;
2352 	sw->dev.type = &tb_switch_type;
2353 	sw->dev.groups = switch_groups;
2354 	dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
2355 
2356 	return sw;
2357 
2358 err_free_sw_ports:
2359 	kfree(sw->ports);
2360 	kfree(sw);
2361 
2362 	return ERR_PTR(ret);
2363 }
2364 
2365 /**
2366  * tb_switch_alloc_safe_mode() - allocate a switch that is in safe mode
2367  * @tb: Pointer to the owning domain
2368  * @parent: Parent device for this switch
2369  * @route: Route string for this switch
2370  *
2371  * This creates a switch in safe mode. This means the switch pretty much
2372  * lacks all capabilities except DMA configuration port before it is
2373  * flashed with a valid NVM firmware.
2374  *
2375  * The returned switch must be released by calling tb_switch_put().
2376  *
2377  * Return: Pointer to the allocated switch or ERR_PTR() in case of failure
2378  */
2379 struct tb_switch *
2380 tb_switch_alloc_safe_mode(struct tb *tb, struct device *parent, u64 route)
2381 {
2382 	struct tb_switch *sw;
2383 
2384 	sw = kzalloc(sizeof(*sw), GFP_KERNEL);
2385 	if (!sw)
2386 		return ERR_PTR(-ENOMEM);
2387 
2388 	sw->tb = tb;
2389 	sw->config.depth = tb_route_length(route);
2390 	sw->config.route_hi = upper_32_bits(route);
2391 	sw->config.route_lo = lower_32_bits(route);
2392 	sw->safe_mode = true;
2393 
2394 	device_initialize(&sw->dev);
2395 	sw->dev.parent = parent;
2396 	sw->dev.bus = &tb_bus_type;
2397 	sw->dev.type = &tb_switch_type;
2398 	sw->dev.groups = switch_groups;
2399 	dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
2400 
2401 	return sw;
2402 }
2403 
2404 /**
2405  * tb_switch_configure() - Uploads configuration to the switch
2406  * @sw: Switch to configure
2407  *
2408  * Call this function before the switch is added to the system. It will
2409  * upload configuration to the switch and makes it available for the
2410  * connection manager to use. Can be called to the switch again after
2411  * resume from low power states to re-initialize it.
2412  *
2413  * Return: %0 in case of success and negative errno in case of failure
2414  */
2415 int tb_switch_configure(struct tb_switch *sw)
2416 {
2417 	struct tb *tb = sw->tb;
2418 	u64 route;
2419 	int ret;
2420 
2421 	route = tb_route(sw);
2422 
2423 	tb_dbg(tb, "%s Switch at %#llx (depth: %d, up port: %d)\n",
2424 	       sw->config.enabled ? "restoring" : "initializing", route,
2425 	       tb_route_length(route), sw->config.upstream_port_number);
2426 
2427 	sw->config.enabled = 1;
2428 
2429 	if (tb_switch_is_usb4(sw)) {
2430 		/*
2431 		 * For USB4 devices, we need to program the CM version
2432 		 * accordingly so that it knows to expose all the
2433 		 * additional capabilities. Program it according to USB4
2434 		 * version to avoid changing existing (v1) routers behaviour.
2435 		 */
2436 		if (usb4_switch_version(sw) < 2)
2437 			sw->config.cmuv = ROUTER_CS_4_CMUV_V1;
2438 		else
2439 			sw->config.cmuv = ROUTER_CS_4_CMUV_V2;
2440 		sw->config.plug_events_delay = 0xa;
2441 
2442 		/* Enumerate the switch */
2443 		ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2444 				  ROUTER_CS_1, 4);
2445 		if (ret)
2446 			return ret;
2447 
2448 		ret = usb4_switch_setup(sw);
2449 	} else {
2450 		if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL)
2451 			tb_sw_warn(sw, "unknown switch vendor id %#x\n",
2452 				   sw->config.vendor_id);
2453 
2454 		if (!sw->cap_plug_events) {
2455 			tb_sw_warn(sw, "cannot find TB_VSE_CAP_PLUG_EVENTS aborting\n");
2456 			return -ENODEV;
2457 		}
2458 
2459 		/* Enumerate the switch */
2460 		ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2461 				  ROUTER_CS_1, 3);
2462 	}
2463 	if (ret)
2464 		return ret;
2465 
2466 	return tb_plug_events_active(sw, true);
2467 }
2468 
2469 /**
2470  * tb_switch_configuration_valid() - Set the tunneling configuration to be valid
2471  * @sw: Router to configure
2472  *
2473  * Needs to be called before any tunnels can be setup through the
2474  * router. Can be called to any router.
2475  *
2476  * Returns %0 in success and negative errno otherwise.
2477  */
2478 int tb_switch_configuration_valid(struct tb_switch *sw)
2479 {
2480 	if (tb_switch_is_usb4(sw))
2481 		return usb4_switch_configuration_valid(sw);
2482 	return 0;
2483 }
2484 
2485 static int tb_switch_set_uuid(struct tb_switch *sw)
2486 {
2487 	bool uid = false;
2488 	u32 uuid[4];
2489 	int ret;
2490 
2491 	if (sw->uuid)
2492 		return 0;
2493 
2494 	if (tb_switch_is_usb4(sw)) {
2495 		ret = usb4_switch_read_uid(sw, &sw->uid);
2496 		if (ret)
2497 			return ret;
2498 		uid = true;
2499 	} else {
2500 		/*
2501 		 * The newer controllers include fused UUID as part of
2502 		 * link controller specific registers
2503 		 */
2504 		ret = tb_lc_read_uuid(sw, uuid);
2505 		if (ret) {
2506 			if (ret != -EINVAL)
2507 				return ret;
2508 			uid = true;
2509 		}
2510 	}
2511 
2512 	if (uid) {
2513 		/*
2514 		 * ICM generates UUID based on UID and fills the upper
2515 		 * two words with ones. This is not strictly following
2516 		 * UUID format but we want to be compatible with it so
2517 		 * we do the same here.
2518 		 */
2519 		uuid[0] = sw->uid & 0xffffffff;
2520 		uuid[1] = (sw->uid >> 32) & 0xffffffff;
2521 		uuid[2] = 0xffffffff;
2522 		uuid[3] = 0xffffffff;
2523 	}
2524 
2525 	sw->uuid = kmemdup(uuid, sizeof(uuid), GFP_KERNEL);
2526 	if (!sw->uuid)
2527 		return -ENOMEM;
2528 	return 0;
2529 }
2530 
2531 static int tb_switch_add_dma_port(struct tb_switch *sw)
2532 {
2533 	u32 status;
2534 	int ret;
2535 
2536 	switch (sw->generation) {
2537 	case 2:
2538 		/* Only root switch can be upgraded */
2539 		if (tb_route(sw))
2540 			return 0;
2541 
2542 		fallthrough;
2543 	case 3:
2544 	case 4:
2545 		ret = tb_switch_set_uuid(sw);
2546 		if (ret)
2547 			return ret;
2548 		break;
2549 
2550 	default:
2551 		/*
2552 		 * DMA port is the only thing available when the switch
2553 		 * is in safe mode.
2554 		 */
2555 		if (!sw->safe_mode)
2556 			return 0;
2557 		break;
2558 	}
2559 
2560 	if (sw->no_nvm_upgrade)
2561 		return 0;
2562 
2563 	if (tb_switch_is_usb4(sw)) {
2564 		ret = usb4_switch_nvm_authenticate_status(sw, &status);
2565 		if (ret)
2566 			return ret;
2567 
2568 		if (status) {
2569 			tb_sw_info(sw, "switch flash authentication failed\n");
2570 			nvm_set_auth_status(sw, status);
2571 		}
2572 
2573 		return 0;
2574 	}
2575 
2576 	/* Root switch DMA port requires running firmware */
2577 	if (!tb_route(sw) && !tb_switch_is_icm(sw))
2578 		return 0;
2579 
2580 	sw->dma_port = dma_port_alloc(sw);
2581 	if (!sw->dma_port)
2582 		return 0;
2583 
2584 	/*
2585 	 * If there is status already set then authentication failed
2586 	 * when the dma_port_flash_update_auth() returned. Power cycling
2587 	 * is not needed (it was done already) so only thing we do here
2588 	 * is to unblock runtime PM of the root port.
2589 	 */
2590 	nvm_get_auth_status(sw, &status);
2591 	if (status) {
2592 		if (!tb_route(sw))
2593 			nvm_authenticate_complete_dma_port(sw);
2594 		return 0;
2595 	}
2596 
2597 	/*
2598 	 * Check status of the previous flash authentication. If there
2599 	 * is one we need to power cycle the switch in any case to make
2600 	 * it functional again.
2601 	 */
2602 	ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
2603 	if (ret <= 0)
2604 		return ret;
2605 
2606 	/* Now we can allow root port to suspend again */
2607 	if (!tb_route(sw))
2608 		nvm_authenticate_complete_dma_port(sw);
2609 
2610 	if (status) {
2611 		tb_sw_info(sw, "switch flash authentication failed\n");
2612 		nvm_set_auth_status(sw, status);
2613 	}
2614 
2615 	tb_sw_info(sw, "power cycling the switch now\n");
2616 	dma_port_power_cycle(sw->dma_port);
2617 
2618 	/*
2619 	 * We return error here which causes the switch adding failure.
2620 	 * It should appear back after power cycle is complete.
2621 	 */
2622 	return -ESHUTDOWN;
2623 }
2624 
2625 static void tb_switch_default_link_ports(struct tb_switch *sw)
2626 {
2627 	int i;
2628 
2629 	for (i = 1; i <= sw->config.max_port_number; i++) {
2630 		struct tb_port *port = &sw->ports[i];
2631 		struct tb_port *subordinate;
2632 
2633 		if (!tb_port_is_null(port))
2634 			continue;
2635 
2636 		/* Check for the subordinate port */
2637 		if (i == sw->config.max_port_number ||
2638 		    !tb_port_is_null(&sw->ports[i + 1]))
2639 			continue;
2640 
2641 		/* Link them if not already done so (by DROM) */
2642 		subordinate = &sw->ports[i + 1];
2643 		if (!port->dual_link_port && !subordinate->dual_link_port) {
2644 			port->link_nr = 0;
2645 			port->dual_link_port = subordinate;
2646 			subordinate->link_nr = 1;
2647 			subordinate->dual_link_port = port;
2648 
2649 			tb_sw_dbg(sw, "linked ports %d <-> %d\n",
2650 				  port->port, subordinate->port);
2651 		}
2652 	}
2653 }
2654 
2655 static bool tb_switch_lane_bonding_possible(struct tb_switch *sw)
2656 {
2657 	const struct tb_port *up = tb_upstream_port(sw);
2658 
2659 	if (!up->dual_link_port || !up->dual_link_port->remote)
2660 		return false;
2661 
2662 	if (tb_switch_is_usb4(sw))
2663 		return usb4_switch_lane_bonding_possible(sw);
2664 	return tb_lc_lane_bonding_possible(sw);
2665 }
2666 
2667 static int tb_switch_update_link_attributes(struct tb_switch *sw)
2668 {
2669 	struct tb_port *up;
2670 	bool change = false;
2671 	int ret;
2672 
2673 	if (!tb_route(sw) || tb_switch_is_icm(sw))
2674 		return 0;
2675 
2676 	up = tb_upstream_port(sw);
2677 
2678 	ret = tb_port_get_link_speed(up);
2679 	if (ret < 0)
2680 		return ret;
2681 	if (sw->link_speed != ret)
2682 		change = true;
2683 	sw->link_speed = ret;
2684 
2685 	ret = tb_port_get_link_width(up);
2686 	if (ret < 0)
2687 		return ret;
2688 	if (sw->link_width != ret)
2689 		change = true;
2690 	sw->link_width = ret;
2691 
2692 	/* Notify userspace that there is possible link attribute change */
2693 	if (device_is_registered(&sw->dev) && change)
2694 		kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
2695 
2696 	return 0;
2697 }
2698 
2699 /**
2700  * tb_switch_lane_bonding_enable() - Enable lane bonding
2701  * @sw: Switch to enable lane bonding
2702  *
2703  * Connection manager can call this function to enable lane bonding of a
2704  * switch. If conditions are correct and both switches support the feature,
2705  * lanes are bonded. It is safe to call this to any switch.
2706  */
2707 int tb_switch_lane_bonding_enable(struct tb_switch *sw)
2708 {
2709 	struct tb_port *up, *down;
2710 	u64 route = tb_route(sw);
2711 	unsigned int width_mask;
2712 	int ret;
2713 
2714 	if (!route)
2715 		return 0;
2716 
2717 	if (!tb_switch_lane_bonding_possible(sw))
2718 		return 0;
2719 
2720 	up = tb_upstream_port(sw);
2721 	down = tb_switch_downstream_port(sw);
2722 
2723 	if (!tb_port_is_width_supported(up, TB_LINK_WIDTH_DUAL) ||
2724 	    !tb_port_is_width_supported(down, TB_LINK_WIDTH_DUAL))
2725 		return 0;
2726 
2727 	ret = tb_port_lane_bonding_enable(up);
2728 	if (ret) {
2729 		tb_port_warn(up, "failed to enable lane bonding\n");
2730 		return ret;
2731 	}
2732 
2733 	ret = tb_port_lane_bonding_enable(down);
2734 	if (ret) {
2735 		tb_port_warn(down, "failed to enable lane bonding\n");
2736 		tb_port_lane_bonding_disable(up);
2737 		return ret;
2738 	}
2739 
2740 	/* Any of the widths are all bonded */
2741 	width_mask = TB_LINK_WIDTH_DUAL | TB_LINK_WIDTH_ASYM_TX |
2742 		     TB_LINK_WIDTH_ASYM_RX;
2743 
2744 	ret = tb_port_wait_for_link_width(down, width_mask, 100);
2745 	if (ret) {
2746 		tb_port_warn(down, "timeout enabling lane bonding\n");
2747 		return ret;
2748 	}
2749 
2750 	tb_port_update_credits(down);
2751 	tb_port_update_credits(up);
2752 	tb_switch_update_link_attributes(sw);
2753 
2754 	tb_sw_dbg(sw, "lane bonding enabled\n");
2755 	return ret;
2756 }
2757 
2758 /**
2759  * tb_switch_lane_bonding_disable() - Disable lane bonding
2760  * @sw: Switch whose lane bonding to disable
2761  *
2762  * Disables lane bonding between @sw and parent. This can be called even
2763  * if lanes were not bonded originally.
2764  */
2765 void tb_switch_lane_bonding_disable(struct tb_switch *sw)
2766 {
2767 	struct tb_port *up, *down;
2768 	int ret;
2769 
2770 	if (!tb_route(sw))
2771 		return;
2772 
2773 	up = tb_upstream_port(sw);
2774 	if (!up->bonded)
2775 		return;
2776 
2777 	down = tb_switch_downstream_port(sw);
2778 
2779 	tb_port_lane_bonding_disable(up);
2780 	tb_port_lane_bonding_disable(down);
2781 
2782 	/*
2783 	 * It is fine if we get other errors as the router might have
2784 	 * been unplugged.
2785 	 */
2786 	ret = tb_port_wait_for_link_width(down, TB_LINK_WIDTH_SINGLE, 100);
2787 	if (ret == -ETIMEDOUT)
2788 		tb_sw_warn(sw, "timeout disabling lane bonding\n");
2789 
2790 	tb_port_update_credits(down);
2791 	tb_port_update_credits(up);
2792 	tb_switch_update_link_attributes(sw);
2793 
2794 	tb_sw_dbg(sw, "lane bonding disabled\n");
2795 }
2796 
2797 /**
2798  * tb_switch_configure_link() - Set link configured
2799  * @sw: Switch whose link is configured
2800  *
2801  * Sets the link upstream from @sw configured (from both ends) so that
2802  * it will not be disconnected when the domain exits sleep. Can be
2803  * called for any switch.
2804  *
2805  * It is recommended that this is called after lane bonding is enabled.
2806  *
2807  * Returns %0 on success and negative errno in case of error.
2808  */
2809 int tb_switch_configure_link(struct tb_switch *sw)
2810 {
2811 	struct tb_port *up, *down;
2812 	int ret;
2813 
2814 	if (!tb_route(sw) || tb_switch_is_icm(sw))
2815 		return 0;
2816 
2817 	up = tb_upstream_port(sw);
2818 	if (tb_switch_is_usb4(up->sw))
2819 		ret = usb4_port_configure(up);
2820 	else
2821 		ret = tb_lc_configure_port(up);
2822 	if (ret)
2823 		return ret;
2824 
2825 	down = up->remote;
2826 	if (tb_switch_is_usb4(down->sw))
2827 		return usb4_port_configure(down);
2828 	return tb_lc_configure_port(down);
2829 }
2830 
2831 /**
2832  * tb_switch_unconfigure_link() - Unconfigure link
2833  * @sw: Switch whose link is unconfigured
2834  *
2835  * Sets the link unconfigured so the @sw will be disconnected if the
2836  * domain exists sleep.
2837  */
2838 void tb_switch_unconfigure_link(struct tb_switch *sw)
2839 {
2840 	struct tb_port *up, *down;
2841 
2842 	if (sw->is_unplugged)
2843 		return;
2844 	if (!tb_route(sw) || tb_switch_is_icm(sw))
2845 		return;
2846 
2847 	up = tb_upstream_port(sw);
2848 	if (tb_switch_is_usb4(up->sw))
2849 		usb4_port_unconfigure(up);
2850 	else
2851 		tb_lc_unconfigure_port(up);
2852 
2853 	down = up->remote;
2854 	if (tb_switch_is_usb4(down->sw))
2855 		usb4_port_unconfigure(down);
2856 	else
2857 		tb_lc_unconfigure_port(down);
2858 }
2859 
2860 static void tb_switch_credits_init(struct tb_switch *sw)
2861 {
2862 	if (tb_switch_is_icm(sw))
2863 		return;
2864 	if (!tb_switch_is_usb4(sw))
2865 		return;
2866 	if (usb4_switch_credits_init(sw))
2867 		tb_sw_info(sw, "failed to determine preferred buffer allocation, using defaults\n");
2868 }
2869 
2870 static int tb_switch_port_hotplug_enable(struct tb_switch *sw)
2871 {
2872 	struct tb_port *port;
2873 
2874 	if (tb_switch_is_icm(sw))
2875 		return 0;
2876 
2877 	tb_switch_for_each_port(sw, port) {
2878 		int res;
2879 
2880 		if (!port->cap_usb4)
2881 			continue;
2882 
2883 		res = usb4_port_hotplug_enable(port);
2884 		if (res)
2885 			return res;
2886 	}
2887 	return 0;
2888 }
2889 
2890 /**
2891  * tb_switch_add() - Add a switch to the domain
2892  * @sw: Switch to add
2893  *
2894  * This is the last step in adding switch to the domain. It will read
2895  * identification information from DROM and initializes ports so that
2896  * they can be used to connect other switches. The switch will be
2897  * exposed to the userspace when this function successfully returns. To
2898  * remove and release the switch, call tb_switch_remove().
2899  *
2900  * Return: %0 in case of success and negative errno in case of failure
2901  */
2902 int tb_switch_add(struct tb_switch *sw)
2903 {
2904 	int i, ret;
2905 
2906 	/*
2907 	 * Initialize DMA control port now before we read DROM. Recent
2908 	 * host controllers have more complete DROM on NVM that includes
2909 	 * vendor and model identification strings which we then expose
2910 	 * to the userspace. NVM can be accessed through DMA
2911 	 * configuration based mailbox.
2912 	 */
2913 	ret = tb_switch_add_dma_port(sw);
2914 	if (ret) {
2915 		dev_err(&sw->dev, "failed to add DMA port\n");
2916 		return ret;
2917 	}
2918 
2919 	if (!sw->safe_mode) {
2920 		tb_switch_credits_init(sw);
2921 
2922 		/* read drom */
2923 		ret = tb_drom_read(sw);
2924 		if (ret)
2925 			dev_warn(&sw->dev, "reading DROM failed: %d\n", ret);
2926 		tb_sw_dbg(sw, "uid: %#llx\n", sw->uid);
2927 
2928 		ret = tb_switch_set_uuid(sw);
2929 		if (ret) {
2930 			dev_err(&sw->dev, "failed to set UUID\n");
2931 			return ret;
2932 		}
2933 
2934 		for (i = 0; i <= sw->config.max_port_number; i++) {
2935 			if (sw->ports[i].disabled) {
2936 				tb_port_dbg(&sw->ports[i], "disabled by eeprom\n");
2937 				continue;
2938 			}
2939 			ret = tb_init_port(&sw->ports[i]);
2940 			if (ret) {
2941 				dev_err(&sw->dev, "failed to initialize port %d\n", i);
2942 				return ret;
2943 			}
2944 		}
2945 
2946 		tb_check_quirks(sw);
2947 
2948 		tb_switch_default_link_ports(sw);
2949 
2950 		ret = tb_switch_update_link_attributes(sw);
2951 		if (ret)
2952 			return ret;
2953 
2954 		ret = tb_switch_clx_init(sw);
2955 		if (ret)
2956 			return ret;
2957 
2958 		ret = tb_switch_tmu_init(sw);
2959 		if (ret)
2960 			return ret;
2961 	}
2962 
2963 	ret = tb_switch_port_hotplug_enable(sw);
2964 	if (ret)
2965 		return ret;
2966 
2967 	ret = device_add(&sw->dev);
2968 	if (ret) {
2969 		dev_err(&sw->dev, "failed to add device: %d\n", ret);
2970 		return ret;
2971 	}
2972 
2973 	if (tb_route(sw)) {
2974 		dev_info(&sw->dev, "new device found, vendor=%#x device=%#x\n",
2975 			 sw->vendor, sw->device);
2976 		if (sw->vendor_name && sw->device_name)
2977 			dev_info(&sw->dev, "%s %s\n", sw->vendor_name,
2978 				 sw->device_name);
2979 	}
2980 
2981 	ret = usb4_switch_add_ports(sw);
2982 	if (ret) {
2983 		dev_err(&sw->dev, "failed to add USB4 ports\n");
2984 		goto err_del;
2985 	}
2986 
2987 	ret = tb_switch_nvm_add(sw);
2988 	if (ret) {
2989 		dev_err(&sw->dev, "failed to add NVM devices\n");
2990 		goto err_ports;
2991 	}
2992 
2993 	/*
2994 	 * Thunderbolt routers do not generate wakeups themselves but
2995 	 * they forward wakeups from tunneled protocols, so enable it
2996 	 * here.
2997 	 */
2998 	device_init_wakeup(&sw->dev, true);
2999 
3000 	pm_runtime_set_active(&sw->dev);
3001 	if (sw->rpm) {
3002 		pm_runtime_set_autosuspend_delay(&sw->dev, TB_AUTOSUSPEND_DELAY);
3003 		pm_runtime_use_autosuspend(&sw->dev);
3004 		pm_runtime_mark_last_busy(&sw->dev);
3005 		pm_runtime_enable(&sw->dev);
3006 		pm_request_autosuspend(&sw->dev);
3007 	}
3008 
3009 	tb_switch_debugfs_init(sw);
3010 	return 0;
3011 
3012 err_ports:
3013 	usb4_switch_remove_ports(sw);
3014 err_del:
3015 	device_del(&sw->dev);
3016 
3017 	return ret;
3018 }
3019 
3020 /**
3021  * tb_switch_remove() - Remove and release a switch
3022  * @sw: Switch to remove
3023  *
3024  * This will remove the switch from the domain and release it after last
3025  * reference count drops to zero. If there are switches connected below
3026  * this switch, they will be removed as well.
3027  */
3028 void tb_switch_remove(struct tb_switch *sw)
3029 {
3030 	struct tb_port *port;
3031 
3032 	tb_switch_debugfs_remove(sw);
3033 
3034 	if (sw->rpm) {
3035 		pm_runtime_get_sync(&sw->dev);
3036 		pm_runtime_disable(&sw->dev);
3037 	}
3038 
3039 	/* port 0 is the switch itself and never has a remote */
3040 	tb_switch_for_each_port(sw, port) {
3041 		if (tb_port_has_remote(port)) {
3042 			tb_switch_remove(port->remote->sw);
3043 			port->remote = NULL;
3044 		} else if (port->xdomain) {
3045 			tb_xdomain_remove(port->xdomain);
3046 			port->xdomain = NULL;
3047 		}
3048 
3049 		/* Remove any downstream retimers */
3050 		tb_retimer_remove_all(port);
3051 	}
3052 
3053 	if (!sw->is_unplugged)
3054 		tb_plug_events_active(sw, false);
3055 
3056 	tb_switch_nvm_remove(sw);
3057 	usb4_switch_remove_ports(sw);
3058 
3059 	if (tb_route(sw))
3060 		dev_info(&sw->dev, "device disconnected\n");
3061 	device_unregister(&sw->dev);
3062 }
3063 
3064 /**
3065  * tb_sw_set_unplugged() - set is_unplugged on switch and downstream switches
3066  * @sw: Router to mark unplugged
3067  */
3068 void tb_sw_set_unplugged(struct tb_switch *sw)
3069 {
3070 	struct tb_port *port;
3071 
3072 	if (sw == sw->tb->root_switch) {
3073 		tb_sw_WARN(sw, "cannot unplug root switch\n");
3074 		return;
3075 	}
3076 	if (sw->is_unplugged) {
3077 		tb_sw_WARN(sw, "is_unplugged already set\n");
3078 		return;
3079 	}
3080 	sw->is_unplugged = true;
3081 	tb_switch_for_each_port(sw, port) {
3082 		if (tb_port_has_remote(port))
3083 			tb_sw_set_unplugged(port->remote->sw);
3084 		else if (port->xdomain)
3085 			port->xdomain->is_unplugged = true;
3086 	}
3087 }
3088 
3089 static int tb_switch_set_wake(struct tb_switch *sw, unsigned int flags)
3090 {
3091 	if (flags)
3092 		tb_sw_dbg(sw, "enabling wakeup: %#x\n", flags);
3093 	else
3094 		tb_sw_dbg(sw, "disabling wakeup\n");
3095 
3096 	if (tb_switch_is_usb4(sw))
3097 		return usb4_switch_set_wake(sw, flags);
3098 	return tb_lc_set_wake(sw, flags);
3099 }
3100 
3101 int tb_switch_resume(struct tb_switch *sw)
3102 {
3103 	struct tb_port *port;
3104 	int err;
3105 
3106 	tb_sw_dbg(sw, "resuming switch\n");
3107 
3108 	/*
3109 	 * Check for UID of the connected switches except for root
3110 	 * switch which we assume cannot be removed.
3111 	 */
3112 	if (tb_route(sw)) {
3113 		u64 uid;
3114 
3115 		/*
3116 		 * Check first that we can still read the switch config
3117 		 * space. It may be that there is now another domain
3118 		 * connected.
3119 		 */
3120 		err = tb_cfg_get_upstream_port(sw->tb->ctl, tb_route(sw));
3121 		if (err < 0) {
3122 			tb_sw_info(sw, "switch not present anymore\n");
3123 			return err;
3124 		}
3125 
3126 		/* We don't have any way to confirm this was the same device */
3127 		if (!sw->uid)
3128 			return -ENODEV;
3129 
3130 		if (tb_switch_is_usb4(sw))
3131 			err = usb4_switch_read_uid(sw, &uid);
3132 		else
3133 			err = tb_drom_read_uid_only(sw, &uid);
3134 		if (err) {
3135 			tb_sw_warn(sw, "uid read failed\n");
3136 			return err;
3137 		}
3138 		if (sw->uid != uid) {
3139 			tb_sw_info(sw,
3140 				"changed while suspended (uid %#llx -> %#llx)\n",
3141 				sw->uid, uid);
3142 			return -ENODEV;
3143 		}
3144 	}
3145 
3146 	err = tb_switch_configure(sw);
3147 	if (err)
3148 		return err;
3149 
3150 	/* Disable wakes */
3151 	tb_switch_set_wake(sw, 0);
3152 
3153 	err = tb_switch_tmu_init(sw);
3154 	if (err)
3155 		return err;
3156 
3157 	/* check for surviving downstream switches */
3158 	tb_switch_for_each_port(sw, port) {
3159 		if (!tb_port_is_null(port))
3160 			continue;
3161 
3162 		if (!tb_port_resume(port))
3163 			continue;
3164 
3165 		if (tb_wait_for_port(port, true) <= 0) {
3166 			tb_port_warn(port,
3167 				     "lost during suspend, disconnecting\n");
3168 			if (tb_port_has_remote(port))
3169 				tb_sw_set_unplugged(port->remote->sw);
3170 			else if (port->xdomain)
3171 				port->xdomain->is_unplugged = true;
3172 		} else {
3173 			/*
3174 			 * Always unlock the port so the downstream
3175 			 * switch/domain is accessible.
3176 			 */
3177 			if (tb_port_unlock(port))
3178 				tb_port_warn(port, "failed to unlock port\n");
3179 			if (port->remote && tb_switch_resume(port->remote->sw)) {
3180 				tb_port_warn(port,
3181 					     "lost during suspend, disconnecting\n");
3182 				tb_sw_set_unplugged(port->remote->sw);
3183 			}
3184 		}
3185 	}
3186 	return 0;
3187 }
3188 
3189 /**
3190  * tb_switch_suspend() - Put a switch to sleep
3191  * @sw: Switch to suspend
3192  * @runtime: Is this runtime suspend or system sleep
3193  *
3194  * Suspends router and all its children. Enables wakes according to
3195  * value of @runtime and then sets sleep bit for the router. If @sw is
3196  * host router the domain is ready to go to sleep once this function
3197  * returns.
3198  */
3199 void tb_switch_suspend(struct tb_switch *sw, bool runtime)
3200 {
3201 	unsigned int flags = 0;
3202 	struct tb_port *port;
3203 	int err;
3204 
3205 	tb_sw_dbg(sw, "suspending switch\n");
3206 
3207 	/*
3208 	 * Actually only needed for Titan Ridge but for simplicity can be
3209 	 * done for USB4 device too as CLx is re-enabled at resume.
3210 	 */
3211 	tb_switch_clx_disable(sw);
3212 
3213 	err = tb_plug_events_active(sw, false);
3214 	if (err)
3215 		return;
3216 
3217 	tb_switch_for_each_port(sw, port) {
3218 		if (tb_port_has_remote(port))
3219 			tb_switch_suspend(port->remote->sw, runtime);
3220 	}
3221 
3222 	if (runtime) {
3223 		/* Trigger wake when something is plugged in/out */
3224 		flags |= TB_WAKE_ON_CONNECT | TB_WAKE_ON_DISCONNECT;
3225 		flags |= TB_WAKE_ON_USB4;
3226 		flags |= TB_WAKE_ON_USB3 | TB_WAKE_ON_PCIE | TB_WAKE_ON_DP;
3227 	} else if (device_may_wakeup(&sw->dev)) {
3228 		flags |= TB_WAKE_ON_USB4 | TB_WAKE_ON_USB3 | TB_WAKE_ON_PCIE;
3229 	}
3230 
3231 	tb_switch_set_wake(sw, flags);
3232 
3233 	if (tb_switch_is_usb4(sw))
3234 		usb4_switch_set_sleep(sw);
3235 	else
3236 		tb_lc_set_sleep(sw);
3237 }
3238 
3239 /**
3240  * tb_switch_query_dp_resource() - Query availability of DP resource
3241  * @sw: Switch whose DP resource is queried
3242  * @in: DP IN port
3243  *
3244  * Queries availability of DP resource for DP tunneling using switch
3245  * specific means. Returns %true if resource is available.
3246  */
3247 bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in)
3248 {
3249 	if (tb_switch_is_usb4(sw))
3250 		return usb4_switch_query_dp_resource(sw, in);
3251 	return tb_lc_dp_sink_query(sw, in);
3252 }
3253 
3254 /**
3255  * tb_switch_alloc_dp_resource() - Allocate available DP resource
3256  * @sw: Switch whose DP resource is allocated
3257  * @in: DP IN port
3258  *
3259  * Allocates DP resource for DP tunneling. The resource must be
3260  * available for this to succeed (see tb_switch_query_dp_resource()).
3261  * Returns %0 in success and negative errno otherwise.
3262  */
3263 int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
3264 {
3265 	int ret;
3266 
3267 	if (tb_switch_is_usb4(sw))
3268 		ret = usb4_switch_alloc_dp_resource(sw, in);
3269 	else
3270 		ret = tb_lc_dp_sink_alloc(sw, in);
3271 
3272 	if (ret)
3273 		tb_sw_warn(sw, "failed to allocate DP resource for port %d\n",
3274 			   in->port);
3275 	else
3276 		tb_sw_dbg(sw, "allocated DP resource for port %d\n", in->port);
3277 
3278 	return ret;
3279 }
3280 
3281 /**
3282  * tb_switch_dealloc_dp_resource() - De-allocate DP resource
3283  * @sw: Switch whose DP resource is de-allocated
3284  * @in: DP IN port
3285  *
3286  * De-allocates DP resource that was previously allocated for DP
3287  * tunneling.
3288  */
3289 void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
3290 {
3291 	int ret;
3292 
3293 	if (tb_switch_is_usb4(sw))
3294 		ret = usb4_switch_dealloc_dp_resource(sw, in);
3295 	else
3296 		ret = tb_lc_dp_sink_dealloc(sw, in);
3297 
3298 	if (ret)
3299 		tb_sw_warn(sw, "failed to de-allocate DP resource for port %d\n",
3300 			   in->port);
3301 	else
3302 		tb_sw_dbg(sw, "released DP resource for port %d\n", in->port);
3303 }
3304 
3305 struct tb_sw_lookup {
3306 	struct tb *tb;
3307 	u8 link;
3308 	u8 depth;
3309 	const uuid_t *uuid;
3310 	u64 route;
3311 };
3312 
3313 static int tb_switch_match(struct device *dev, const void *data)
3314 {
3315 	struct tb_switch *sw = tb_to_switch(dev);
3316 	const struct tb_sw_lookup *lookup = data;
3317 
3318 	if (!sw)
3319 		return 0;
3320 	if (sw->tb != lookup->tb)
3321 		return 0;
3322 
3323 	if (lookup->uuid)
3324 		return !memcmp(sw->uuid, lookup->uuid, sizeof(*lookup->uuid));
3325 
3326 	if (lookup->route) {
3327 		return sw->config.route_lo == lower_32_bits(lookup->route) &&
3328 		       sw->config.route_hi == upper_32_bits(lookup->route);
3329 	}
3330 
3331 	/* Root switch is matched only by depth */
3332 	if (!lookup->depth)
3333 		return !sw->depth;
3334 
3335 	return sw->link == lookup->link && sw->depth == lookup->depth;
3336 }
3337 
3338 /**
3339  * tb_switch_find_by_link_depth() - Find switch by link and depth
3340  * @tb: Domain the switch belongs
3341  * @link: Link number the switch is connected
3342  * @depth: Depth of the switch in link
3343  *
3344  * Returned switch has reference count increased so the caller needs to
3345  * call tb_switch_put() when done with the switch.
3346  */
3347 struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link, u8 depth)
3348 {
3349 	struct tb_sw_lookup lookup;
3350 	struct device *dev;
3351 
3352 	memset(&lookup, 0, sizeof(lookup));
3353 	lookup.tb = tb;
3354 	lookup.link = link;
3355 	lookup.depth = depth;
3356 
3357 	dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
3358 	if (dev)
3359 		return tb_to_switch(dev);
3360 
3361 	return NULL;
3362 }
3363 
3364 /**
3365  * tb_switch_find_by_uuid() - Find switch by UUID
3366  * @tb: Domain the switch belongs
3367  * @uuid: UUID to look for
3368  *
3369  * Returned switch has reference count increased so the caller needs to
3370  * call tb_switch_put() when done with the switch.
3371  */
3372 struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid)
3373 {
3374 	struct tb_sw_lookup lookup;
3375 	struct device *dev;
3376 
3377 	memset(&lookup, 0, sizeof(lookup));
3378 	lookup.tb = tb;
3379 	lookup.uuid = uuid;
3380 
3381 	dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
3382 	if (dev)
3383 		return tb_to_switch(dev);
3384 
3385 	return NULL;
3386 }
3387 
3388 /**
3389  * tb_switch_find_by_route() - Find switch by route string
3390  * @tb: Domain the switch belongs
3391  * @route: Route string to look for
3392  *
3393  * Returned switch has reference count increased so the caller needs to
3394  * call tb_switch_put() when done with the switch.
3395  */
3396 struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route)
3397 {
3398 	struct tb_sw_lookup lookup;
3399 	struct device *dev;
3400 
3401 	if (!route)
3402 		return tb_switch_get(tb->root_switch);
3403 
3404 	memset(&lookup, 0, sizeof(lookup));
3405 	lookup.tb = tb;
3406 	lookup.route = route;
3407 
3408 	dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
3409 	if (dev)
3410 		return tb_to_switch(dev);
3411 
3412 	return NULL;
3413 }
3414 
3415 /**
3416  * tb_switch_find_port() - return the first port of @type on @sw or NULL
3417  * @sw: Switch to find the port from
3418  * @type: Port type to look for
3419  */
3420 struct tb_port *tb_switch_find_port(struct tb_switch *sw,
3421 				    enum tb_port_type type)
3422 {
3423 	struct tb_port *port;
3424 
3425 	tb_switch_for_each_port(sw, port) {
3426 		if (port->config.type == type)
3427 			return port;
3428 	}
3429 
3430 	return NULL;
3431 }
3432 
3433 /*
3434  * Can be used for read/write a specified PCIe bridge for any Thunderbolt 3
3435  * device. For now used only for Titan Ridge.
3436  */
3437 static int tb_switch_pcie_bridge_write(struct tb_switch *sw, unsigned int bridge,
3438 				       unsigned int pcie_offset, u32 value)
3439 {
3440 	u32 offset, command, val;
3441 	int ret;
3442 
3443 	if (sw->generation != 3)
3444 		return -EOPNOTSUPP;
3445 
3446 	offset = sw->cap_plug_events + TB_PLUG_EVENTS_PCIE_WR_DATA;
3447 	ret = tb_sw_write(sw, &value, TB_CFG_SWITCH, offset, 1);
3448 	if (ret)
3449 		return ret;
3450 
3451 	command = pcie_offset & TB_PLUG_EVENTS_PCIE_CMD_DW_OFFSET_MASK;
3452 	command |= BIT(bridge + TB_PLUG_EVENTS_PCIE_CMD_BR_SHIFT);
3453 	command |= TB_PLUG_EVENTS_PCIE_CMD_RD_WR_MASK;
3454 	command |= TB_PLUG_EVENTS_PCIE_CMD_COMMAND_VAL
3455 			<< TB_PLUG_EVENTS_PCIE_CMD_COMMAND_SHIFT;
3456 	command |= TB_PLUG_EVENTS_PCIE_CMD_REQ_ACK_MASK;
3457 
3458 	offset = sw->cap_plug_events + TB_PLUG_EVENTS_PCIE_CMD;
3459 
3460 	ret = tb_sw_write(sw, &command, TB_CFG_SWITCH, offset, 1);
3461 	if (ret)
3462 		return ret;
3463 
3464 	ret = tb_switch_wait_for_bit(sw, offset,
3465 				     TB_PLUG_EVENTS_PCIE_CMD_REQ_ACK_MASK, 0, 100);
3466 	if (ret)
3467 		return ret;
3468 
3469 	ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, offset, 1);
3470 	if (ret)
3471 		return ret;
3472 
3473 	if (val & TB_PLUG_EVENTS_PCIE_CMD_TIMEOUT_MASK)
3474 		return -ETIMEDOUT;
3475 
3476 	return 0;
3477 }
3478 
3479 /**
3480  * tb_switch_pcie_l1_enable() - Enable PCIe link to enter L1 state
3481  * @sw: Router to enable PCIe L1
3482  *
3483  * For Titan Ridge switch to enter CLx state, its PCIe bridges shall enable
3484  * entry to PCIe L1 state. Shall be called after the upstream PCIe tunnel
3485  * was configured. Due to Intel platforms limitation, shall be called only
3486  * for first hop switch.
3487  */
3488 int tb_switch_pcie_l1_enable(struct tb_switch *sw)
3489 {
3490 	struct tb_switch *parent = tb_switch_parent(sw);
3491 	int ret;
3492 
3493 	if (!tb_route(sw))
3494 		return 0;
3495 
3496 	if (!tb_switch_is_titan_ridge(sw))
3497 		return 0;
3498 
3499 	/* Enable PCIe L1 enable only for first hop router (depth = 1) */
3500 	if (tb_route(parent))
3501 		return 0;
3502 
3503 	/* Write to downstream PCIe bridge #5 aka Dn4 */
3504 	ret = tb_switch_pcie_bridge_write(sw, 5, 0x143, 0x0c7806b1);
3505 	if (ret)
3506 		return ret;
3507 
3508 	/* Write to Upstream PCIe bridge #0 aka Up0 */
3509 	return tb_switch_pcie_bridge_write(sw, 0, 0x143, 0x0c5806b1);
3510 }
3511 
3512 /**
3513  * tb_switch_xhci_connect() - Connect internal xHCI
3514  * @sw: Router whose xHCI to connect
3515  *
3516  * Can be called to any router. For Alpine Ridge and Titan Ridge
3517  * performs special flows that bring the xHCI functional for any device
3518  * connected to the type-C port. Call only after PCIe tunnel has been
3519  * established. The function only does the connect if not done already
3520  * so can be called several times for the same router.
3521  */
3522 int tb_switch_xhci_connect(struct tb_switch *sw)
3523 {
3524 	struct tb_port *port1, *port3;
3525 	int ret;
3526 
3527 	if (sw->generation != 3)
3528 		return 0;
3529 
3530 	port1 = &sw->ports[1];
3531 	port3 = &sw->ports[3];
3532 
3533 	if (tb_switch_is_alpine_ridge(sw)) {
3534 		bool usb_port1, usb_port3, xhci_port1, xhci_port3;
3535 
3536 		usb_port1 = tb_lc_is_usb_plugged(port1);
3537 		usb_port3 = tb_lc_is_usb_plugged(port3);
3538 		xhci_port1 = tb_lc_is_xhci_connected(port1);
3539 		xhci_port3 = tb_lc_is_xhci_connected(port3);
3540 
3541 		/* Figure out correct USB port to connect */
3542 		if (usb_port1 && !xhci_port1) {
3543 			ret = tb_lc_xhci_connect(port1);
3544 			if (ret)
3545 				return ret;
3546 		}
3547 		if (usb_port3 && !xhci_port3)
3548 			return tb_lc_xhci_connect(port3);
3549 	} else if (tb_switch_is_titan_ridge(sw)) {
3550 		ret = tb_lc_xhci_connect(port1);
3551 		if (ret)
3552 			return ret;
3553 		return tb_lc_xhci_connect(port3);
3554 	}
3555 
3556 	return 0;
3557 }
3558 
3559 /**
3560  * tb_switch_xhci_disconnect() - Disconnect internal xHCI
3561  * @sw: Router whose xHCI to disconnect
3562  *
3563  * The opposite of tb_switch_xhci_connect(). Disconnects xHCI on both
3564  * ports.
3565  */
3566 void tb_switch_xhci_disconnect(struct tb_switch *sw)
3567 {
3568 	if (sw->generation == 3) {
3569 		struct tb_port *port1 = &sw->ports[1];
3570 		struct tb_port *port3 = &sw->ports[3];
3571 
3572 		tb_lc_xhci_disconnect(port1);
3573 		tb_port_dbg(port1, "disconnected xHCI\n");
3574 		tb_lc_xhci_disconnect(port3);
3575 		tb_port_dbg(port3, "disconnected xHCI\n");
3576 	}
3577 }
3578