1 // SPDX-License-Identifier: GPL-2.0
3 * Thunderbolt driver - bus logic (NHI independent)
6 * Copyright (C) 2019, Intel Corporation
9 #include <linux/slab.h>
10 #include <linux/errno.h>
11 #include <linux/delay.h>
12 #include <linux/pm_runtime.h>
13 #include <linux/platform_data/x86/apple.h>
19 #define TB_TIMEOUT 100 /* ms */
22 * Minimum bandwidth (in Mb/s) that is needed in the single transmitter/receiver
23 * direction. This is 40G - 10% guard band bandwidth.
25 #define TB_ASYM_MIN (40000 * 90 / 100)
28 * Threshold bandwidth (in Mb/s) that is used to switch the links to
29 * asymmetric and back. This is selected as 45G which means when the
30 * request is higher than this, we switch the link to asymmetric, and
31 * when it is less than this we switch it back. The 45G is selected so
32 * that we still have 27G (of the total 72G) for bulk PCIe traffic when
33 * switching back to symmetric.
35 #define TB_ASYM_THRESHOLD 45000
37 #define MAX_GROUPS 7 /* max Group_ID is 7 */
39 static unsigned int asym_threshold = TB_ASYM_THRESHOLD;
40 module_param_named(asym_threshold, asym_threshold, uint, 0444);
41 MODULE_PARM_DESC(asym_threshold,
42 "threshold (Mb/s) when to Gen 4 switch link symmetry. 0 disables. (default: "
43 __MODULE_STRING(TB_ASYM_THRESHOLD) ")");
46 * struct tb_cm - Simple Thunderbolt connection manager
47 * @tunnel_list: List of active tunnels
48 * @dp_resources: List of available DP resources for DP tunneling
49 * @hotplug_active: tb_handle_hotplug will stop progressing plug
50 * events and exit if this is not set (it needs to
51 * acquire the lock one more time). Used to drain wq
52 * after cfg has been paused.
53 * @remove_work: Work used to remove any unplugged routers after
55 * @groups: Bandwidth groups used in this domain.
58 struct list_head tunnel_list;
59 struct list_head dp_resources;
61 struct delayed_work remove_work;
62 struct tb_bandwidth_group groups[MAX_GROUPS];
65 static inline struct tb *tcm_to_tb(struct tb_cm *tcm)
67 return ((void *)tcm - sizeof(struct tb));
70 struct tb_hotplug_event {
71 struct work_struct work;
78 static void tb_init_bandwidth_groups(struct tb_cm *tcm)
82 for (i = 0; i < ARRAY_SIZE(tcm->groups); i++) {
83 struct tb_bandwidth_group *group = &tcm->groups[i];
85 group->tb = tcm_to_tb(tcm);
87 INIT_LIST_HEAD(&group->ports);
91 static void tb_bandwidth_group_attach_port(struct tb_bandwidth_group *group,
94 if (!group || WARN_ON(in->group))
98 list_add_tail(&in->group_list, &group->ports);
100 tb_port_dbg(in, "attached to bandwidth group %d\n", group->index);
103 static struct tb_bandwidth_group *tb_find_free_bandwidth_group(struct tb_cm *tcm)
107 for (i = 0; i < ARRAY_SIZE(tcm->groups); i++) {
108 struct tb_bandwidth_group *group = &tcm->groups[i];
110 if (list_empty(&group->ports))
117 static struct tb_bandwidth_group *
118 tb_attach_bandwidth_group(struct tb_cm *tcm, struct tb_port *in,
121 struct tb_bandwidth_group *group;
122 struct tb_tunnel *tunnel;
125 * Find all DP tunnels that go through all the same USB4 links
126 * as this one. Because we always setup tunnels the same way we
127 * can just check for the routers at both ends of the tunnels
128 * and if they are the same we have a match.
130 list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
131 if (!tb_tunnel_is_dp(tunnel))
134 if (tunnel->src_port->sw == in->sw &&
135 tunnel->dst_port->sw == out->sw) {
136 group = tunnel->src_port->group;
138 tb_bandwidth_group_attach_port(group, in);
144 /* Pick up next available group then */
145 group = tb_find_free_bandwidth_group(tcm);
147 tb_bandwidth_group_attach_port(group, in);
149 tb_port_warn(in, "no available bandwidth groups\n");
154 static void tb_discover_bandwidth_group(struct tb_cm *tcm, struct tb_port *in,
157 if (usb4_dp_port_bandwidth_mode_enabled(in)) {
160 index = usb4_dp_port_group_id(in);
161 for (i = 0; i < ARRAY_SIZE(tcm->groups); i++) {
162 if (tcm->groups[i].index == index) {
163 tb_bandwidth_group_attach_port(&tcm->groups[i], in);
169 tb_attach_bandwidth_group(tcm, in, out);
172 static void tb_detach_bandwidth_group(struct tb_port *in)
174 struct tb_bandwidth_group *group = in->group;
178 list_del_init(&in->group_list);
180 tb_port_dbg(in, "detached from bandwidth group %d\n", group->index);
184 static void tb_handle_hotplug(struct work_struct *work);
186 static void tb_queue_hotplug(struct tb *tb, u64 route, u8 port, bool unplug)
188 struct tb_hotplug_event *ev;
190 ev = kmalloc(sizeof(*ev), GFP_KERNEL);
198 INIT_WORK(&ev->work, tb_handle_hotplug);
199 queue_work(tb->wq, &ev->work);
202 /* enumeration & hot plug handling */
204 static void tb_add_dp_resources(struct tb_switch *sw)
206 struct tb_cm *tcm = tb_priv(sw->tb);
207 struct tb_port *port;
209 tb_switch_for_each_port(sw, port) {
210 if (!tb_port_is_dpin(port))
213 if (!tb_switch_query_dp_resource(sw, port))
217 * If DP IN on device router exist, position it at the
218 * beginning of the DP resources list, so that it is used
219 * before DP IN of the host router. This way external GPU(s)
220 * will be prioritized when pairing DP IN to a DP OUT.
223 list_add(&port->list, &tcm->dp_resources);
225 list_add_tail(&port->list, &tcm->dp_resources);
227 tb_port_dbg(port, "DP IN resource available\n");
231 static void tb_remove_dp_resources(struct tb_switch *sw)
233 struct tb_cm *tcm = tb_priv(sw->tb);
234 struct tb_port *port, *tmp;
236 /* Clear children resources first */
237 tb_switch_for_each_port(sw, port) {
238 if (tb_port_has_remote(port))
239 tb_remove_dp_resources(port->remote->sw);
242 list_for_each_entry_safe(port, tmp, &tcm->dp_resources, list) {
243 if (port->sw == sw) {
244 tb_port_dbg(port, "DP OUT resource unavailable\n");
245 list_del_init(&port->list);
250 static void tb_discover_dp_resource(struct tb *tb, struct tb_port *port)
252 struct tb_cm *tcm = tb_priv(tb);
255 list_for_each_entry(p, &tcm->dp_resources, list) {
260 tb_port_dbg(port, "DP %s resource available discovered\n",
261 tb_port_is_dpin(port) ? "IN" : "OUT");
262 list_add_tail(&port->list, &tcm->dp_resources);
265 static void tb_discover_dp_resources(struct tb *tb)
267 struct tb_cm *tcm = tb_priv(tb);
268 struct tb_tunnel *tunnel;
270 list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
271 if (tb_tunnel_is_dp(tunnel))
272 tb_discover_dp_resource(tb, tunnel->dst_port);
276 /* Enables CL states up to host router */
277 static int tb_enable_clx(struct tb_switch *sw)
279 struct tb_cm *tcm = tb_priv(sw->tb);
280 unsigned int clx = TB_CL0S | TB_CL1;
281 const struct tb_tunnel *tunnel;
285 * Currently only enable CLx for the first link. This is enough
286 * to allow the CPU to save energy at least on Intel hardware
287 * and makes it slightly simpler to implement. We may change
288 * this in the future to cover the whole topology if it turns
289 * out to be beneficial.
291 while (sw && tb_switch_depth(sw) > 1)
292 sw = tb_switch_parent(sw);
297 if (tb_switch_depth(sw) != 1)
301 * If we are re-enabling then check if there is an active DMA
302 * tunnel and in that case bail out.
304 list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
305 if (tb_tunnel_is_dma(tunnel)) {
306 if (tb_tunnel_port_on_path(tunnel, tb_upstream_port(sw)))
312 * Initially try with CL2. If that's not supported by the
313 * topology try with CL0s and CL1 and then give up.
315 ret = tb_switch_clx_enable(sw, clx | TB_CL2);
316 if (ret == -EOPNOTSUPP)
317 ret = tb_switch_clx_enable(sw, clx);
318 return ret == -EOPNOTSUPP ? 0 : ret;
322 * tb_disable_clx() - Disable CL states up to host router
323 * @sw: Router to start
325 * Disables CL states from @sw up to the host router. Returns true if
326 * any CL state were disabled. This can be used to figure out whether
327 * the link was setup by us or the boot firmware so we don't
328 * accidentally enable them if they were not enabled during discovery.
330 static bool tb_disable_clx(struct tb_switch *sw)
332 bool disabled = false;
337 ret = tb_switch_clx_disable(sw);
341 tb_sw_warn(sw, "failed to disable CL states\n");
343 sw = tb_switch_parent(sw);
349 static int tb_increase_switch_tmu_accuracy(struct device *dev, void *data)
351 struct tb_switch *sw;
353 sw = tb_to_switch(dev);
357 if (tb_switch_tmu_is_configured(sw, TB_SWITCH_TMU_MODE_LOWRES)) {
358 enum tb_switch_tmu_mode mode;
361 if (tb_switch_clx_is_enabled(sw, TB_CL1))
362 mode = TB_SWITCH_TMU_MODE_HIFI_UNI;
364 mode = TB_SWITCH_TMU_MODE_HIFI_BI;
366 ret = tb_switch_tmu_configure(sw, mode);
370 return tb_switch_tmu_enable(sw);
376 static void tb_increase_tmu_accuracy(struct tb_tunnel *tunnel)
378 struct tb_switch *sw;
384 * Once first DP tunnel is established we change the TMU
385 * accuracy of first depth child routers (and the host router)
386 * to the highest. This is needed for the DP tunneling to work
387 * but also allows CL0s.
389 * If both routers are v2 then we don't need to do anything as
390 * they are using enhanced TMU mode that allows all CLx.
392 sw = tunnel->tb->root_switch;
393 device_for_each_child(&sw->dev, NULL, tb_increase_switch_tmu_accuracy);
396 static int tb_enable_tmu(struct tb_switch *sw)
401 * If both routers at the end of the link are v2 we simply
402 * enable the enhanched uni-directional mode. That covers all
403 * the CL states. For v1 and before we need to use the normal
404 * rate to allow CL1 (when supported). Otherwise we keep the TMU
405 * running at the highest accuracy.
407 ret = tb_switch_tmu_configure(sw,
408 TB_SWITCH_TMU_MODE_MEDRES_ENHANCED_UNI);
409 if (ret == -EOPNOTSUPP) {
410 if (tb_switch_clx_is_enabled(sw, TB_CL1))
411 ret = tb_switch_tmu_configure(sw,
412 TB_SWITCH_TMU_MODE_LOWRES);
414 ret = tb_switch_tmu_configure(sw,
415 TB_SWITCH_TMU_MODE_HIFI_BI);
420 /* If it is already enabled in correct mode, don't touch it */
421 if (tb_switch_tmu_is_enabled(sw))
424 ret = tb_switch_tmu_disable(sw);
428 ret = tb_switch_tmu_post_time(sw);
432 return tb_switch_tmu_enable(sw);
435 static void tb_switch_discover_tunnels(struct tb_switch *sw,
436 struct list_head *list,
439 struct tb *tb = sw->tb;
440 struct tb_port *port;
442 tb_switch_for_each_port(sw, port) {
443 struct tb_tunnel *tunnel = NULL;
445 switch (port->config.type) {
446 case TB_TYPE_DP_HDMI_IN:
447 tunnel = tb_tunnel_discover_dp(tb, port, alloc_hopids);
448 tb_increase_tmu_accuracy(tunnel);
451 case TB_TYPE_PCIE_DOWN:
452 tunnel = tb_tunnel_discover_pci(tb, port, alloc_hopids);
455 case TB_TYPE_USB3_DOWN:
456 tunnel = tb_tunnel_discover_usb3(tb, port, alloc_hopids);
464 list_add_tail(&tunnel->list, list);
467 tb_switch_for_each_port(sw, port) {
468 if (tb_port_has_remote(port)) {
469 tb_switch_discover_tunnels(port->remote->sw, list,
475 static void tb_discover_tunnels(struct tb *tb)
477 struct tb_cm *tcm = tb_priv(tb);
478 struct tb_tunnel *tunnel;
480 tb_switch_discover_tunnels(tb->root_switch, &tcm->tunnel_list, true);
482 list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
483 if (tb_tunnel_is_pci(tunnel)) {
484 struct tb_switch *parent = tunnel->dst_port->sw;
486 while (parent != tunnel->src_port->sw) {
488 parent = tb_switch_parent(parent);
490 } else if (tb_tunnel_is_dp(tunnel)) {
491 struct tb_port *in = tunnel->src_port;
492 struct tb_port *out = tunnel->dst_port;
494 /* Keep the domain from powering down */
495 pm_runtime_get_sync(&in->sw->dev);
496 pm_runtime_get_sync(&out->sw->dev);
498 tb_discover_bandwidth_group(tcm, in, out);
503 static int tb_port_configure_xdomain(struct tb_port *port, struct tb_xdomain *xd)
505 if (tb_switch_is_usb4(port->sw))
506 return usb4_port_configure_xdomain(port, xd);
507 return tb_lc_configure_xdomain(port);
510 static void tb_port_unconfigure_xdomain(struct tb_port *port)
512 if (tb_switch_is_usb4(port->sw))
513 usb4_port_unconfigure_xdomain(port);
515 tb_lc_unconfigure_xdomain(port);
517 tb_port_enable(port->dual_link_port);
520 static void tb_scan_xdomain(struct tb_port *port)
522 struct tb_switch *sw = port->sw;
523 struct tb *tb = sw->tb;
524 struct tb_xdomain *xd;
527 if (!tb_is_xdomain_enabled())
530 route = tb_downstream_route(port);
531 xd = tb_xdomain_find_by_route(tb, route);
537 xd = tb_xdomain_alloc(tb, &sw->dev, route, tb->root_switch->uuid,
540 tb_port_at(route, sw)->xdomain = xd;
541 tb_port_configure_xdomain(port, xd);
547 * tb_find_unused_port() - return the first inactive port on @sw
548 * @sw: Switch to find the port on
549 * @type: Port type to look for
551 static struct tb_port *tb_find_unused_port(struct tb_switch *sw,
552 enum tb_port_type type)
554 struct tb_port *port;
556 tb_switch_for_each_port(sw, port) {
557 if (tb_is_upstream_port(port))
559 if (port->config.type != type)
563 if (tb_port_is_enabled(port))
570 static struct tb_port *tb_find_usb3_down(struct tb_switch *sw,
571 const struct tb_port *port)
573 struct tb_port *down;
575 down = usb4_switch_map_usb3_down(sw, port);
576 if (down && !tb_usb3_port_is_enabled(down))
581 static struct tb_tunnel *tb_find_tunnel(struct tb *tb, enum tb_tunnel_type type,
582 struct tb_port *src_port,
583 struct tb_port *dst_port)
585 struct tb_cm *tcm = tb_priv(tb);
586 struct tb_tunnel *tunnel;
588 list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
589 if (tunnel->type == type &&
590 ((src_port && src_port == tunnel->src_port) ||
591 (dst_port && dst_port == tunnel->dst_port))) {
599 static struct tb_tunnel *tb_find_first_usb3_tunnel(struct tb *tb,
600 struct tb_port *src_port,
601 struct tb_port *dst_port)
603 struct tb_port *port, *usb3_down;
604 struct tb_switch *sw;
606 /* Pick the router that is deepest in the topology */
607 if (tb_port_path_direction_downstream(src_port, dst_port))
612 /* Can't be the host router */
613 if (sw == tb->root_switch)
616 /* Find the downstream USB4 port that leads to this router */
617 port = tb_port_at(tb_route(sw), tb->root_switch);
618 /* Find the corresponding host router USB3 downstream port */
619 usb3_down = usb4_switch_map_usb3_down(tb->root_switch, port);
623 return tb_find_tunnel(tb, TB_TUNNEL_USB3, usb3_down, NULL);
627 * tb_consumed_usb3_pcie_bandwidth() - Consumed USB3/PCIe bandwidth over a single link
628 * @tb: Domain structure
629 * @src_port: Source protocol adapter
630 * @dst_port: Destination protocol adapter
631 * @port: USB4 port the consumed bandwidth is calculated
632 * @consumed_up: Consumed upsream bandwidth (Mb/s)
633 * @consumed_down: Consumed downstream bandwidth (Mb/s)
635 * Calculates consumed USB3 and PCIe bandwidth at @port between path
636 * from @src_port to @dst_port. Does not take tunnel starting from
637 * @src_port and ending from @src_port into account.
639 static int tb_consumed_usb3_pcie_bandwidth(struct tb *tb,
640 struct tb_port *src_port,
641 struct tb_port *dst_port,
642 struct tb_port *port,
646 int pci_consumed_up, pci_consumed_down;
647 struct tb_tunnel *tunnel;
649 *consumed_up = *consumed_down = 0;
651 tunnel = tb_find_first_usb3_tunnel(tb, src_port, dst_port);
652 if (tunnel && tunnel->src_port != src_port &&
653 tunnel->dst_port != dst_port) {
656 ret = tb_tunnel_consumed_bandwidth(tunnel, consumed_up,
663 * If there is anything reserved for PCIe bulk traffic take it
664 * into account here too.
666 if (tb_tunnel_reserved_pci(port, &pci_consumed_up, &pci_consumed_down)) {
667 *consumed_up += pci_consumed_up;
668 *consumed_down += pci_consumed_down;
675 * tb_consumed_dp_bandwidth() - Consumed DP bandwidth over a single link
676 * @tb: Domain structure
677 * @src_port: Source protocol adapter
678 * @dst_port: Destination protocol adapter
679 * @port: USB4 port the consumed bandwidth is calculated
680 * @consumed_up: Consumed upsream bandwidth (Mb/s)
681 * @consumed_down: Consumed downstream bandwidth (Mb/s)
683 * Calculates consumed DP bandwidth at @port between path from @src_port
684 * to @dst_port. Does not take tunnel starting from @src_port and ending
685 * from @src_port into account.
687 static int tb_consumed_dp_bandwidth(struct tb *tb,
688 struct tb_port *src_port,
689 struct tb_port *dst_port,
690 struct tb_port *port,
694 struct tb_cm *tcm = tb_priv(tb);
695 struct tb_tunnel *tunnel;
698 *consumed_up = *consumed_down = 0;
701 * Find all DP tunnels that cross the port and reduce
702 * their consumed bandwidth from the available.
704 list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
705 int dp_consumed_up, dp_consumed_down;
707 if (tb_tunnel_is_invalid(tunnel))
710 if (!tb_tunnel_is_dp(tunnel))
713 if (!tb_tunnel_port_on_path(tunnel, port))
717 * Ignore the DP tunnel between src_port and dst_port
718 * because it is the same tunnel and we may be
719 * re-calculating estimated bandwidth.
721 if (tunnel->src_port == src_port &&
722 tunnel->dst_port == dst_port)
725 ret = tb_tunnel_consumed_bandwidth(tunnel, &dp_consumed_up,
730 *consumed_up += dp_consumed_up;
731 *consumed_down += dp_consumed_down;
737 static bool tb_asym_supported(struct tb_port *src_port, struct tb_port *dst_port,
738 struct tb_port *port)
740 bool downstream = tb_port_path_direction_downstream(src_port, dst_port);
741 enum tb_link_width width;
743 if (tb_is_upstream_port(port))
744 width = downstream ? TB_LINK_WIDTH_ASYM_RX : TB_LINK_WIDTH_ASYM_TX;
746 width = downstream ? TB_LINK_WIDTH_ASYM_TX : TB_LINK_WIDTH_ASYM_RX;
748 return tb_port_width_supported(port, width);
752 * tb_maximum_bandwidth() - Maximum bandwidth over a single link
753 * @tb: Domain structure
754 * @src_port: Source protocol adapter
755 * @dst_port: Destination protocol adapter
756 * @port: USB4 port the total bandwidth is calculated
757 * @max_up: Maximum upstream bandwidth (Mb/s)
758 * @max_down: Maximum downstream bandwidth (Mb/s)
759 * @include_asym: Include bandwidth if the link is switched from
760 * symmetric to asymmetric
762 * Returns maximum possible bandwidth in @max_up and @max_down over a
763 * single link at @port. If @include_asym is set then includes the
764 * additional banwdith if the links are transitioned into asymmetric to
765 * direction from @src_port to @dst_port.
767 static int tb_maximum_bandwidth(struct tb *tb, struct tb_port *src_port,
768 struct tb_port *dst_port, struct tb_port *port,
769 int *max_up, int *max_down, bool include_asym)
771 bool downstream = tb_port_path_direction_downstream(src_port, dst_port);
772 int link_speed, link_width, up_bw, down_bw;
775 * Can include asymmetric, only if it is actually supported by
778 if (!tb_asym_supported(src_port, dst_port, port))
779 include_asym = false;
781 if (tb_is_upstream_port(port)) {
782 link_speed = port->sw->link_speed;
784 * sw->link_width is from upstream perspective so we use
785 * the opposite for downstream of the host router.
787 if (port->sw->link_width == TB_LINK_WIDTH_ASYM_TX) {
788 up_bw = link_speed * 3 * 1000;
789 down_bw = link_speed * 1 * 1000;
790 } else if (port->sw->link_width == TB_LINK_WIDTH_ASYM_RX) {
791 up_bw = link_speed * 1 * 1000;
792 down_bw = link_speed * 3 * 1000;
793 } else if (include_asym) {
795 * The link is symmetric at the moment but we
796 * can switch it to asymmetric as needed. Report
797 * this bandwidth as available (even though it
798 * is not yet enabled).
801 up_bw = link_speed * 1 * 1000;
802 down_bw = link_speed * 3 * 1000;
804 up_bw = link_speed * 3 * 1000;
805 down_bw = link_speed * 1 * 1000;
808 up_bw = link_speed * port->sw->link_width * 1000;
812 link_speed = tb_port_get_link_speed(port);
816 link_width = tb_port_get_link_width(port);
820 if (link_width == TB_LINK_WIDTH_ASYM_TX) {
821 up_bw = link_speed * 1 * 1000;
822 down_bw = link_speed * 3 * 1000;
823 } else if (link_width == TB_LINK_WIDTH_ASYM_RX) {
824 up_bw = link_speed * 3 * 1000;
825 down_bw = link_speed * 1 * 1000;
826 } else if (include_asym) {
828 * The link is symmetric at the moment but we
829 * can switch it to asymmetric as needed. Report
830 * this bandwidth as available (even though it
831 * is not yet enabled).
834 up_bw = link_speed * 1 * 1000;
835 down_bw = link_speed * 3 * 1000;
837 up_bw = link_speed * 3 * 1000;
838 down_bw = link_speed * 1 * 1000;
841 up_bw = link_speed * link_width * 1000;
846 /* Leave 10% guard band */
847 *max_up = up_bw - up_bw / 10;
848 *max_down = down_bw - down_bw / 10;
850 tb_port_dbg(port, "link maximum bandwidth %d/%d Mb/s\n", *max_up, *max_down);
855 * tb_available_bandwidth() - Available bandwidth for tunneling
856 * @tb: Domain structure
857 * @src_port: Source protocol adapter
858 * @dst_port: Destination protocol adapter
859 * @available_up: Available bandwidth upstream (Mb/s)
860 * @available_down: Available bandwidth downstream (Mb/s)
861 * @include_asym: Include bandwidth if the link is switched from
862 * symmetric to asymmetric
864 * Calculates maximum available bandwidth for protocol tunneling between
865 * @src_port and @dst_port at the moment. This is minimum of maximum
866 * link bandwidth across all links reduced by currently consumed
867 * bandwidth on that link.
869 * If @include_asym is true then includes also bandwidth that can be
870 * added when the links are transitioned into asymmetric (but does not
871 * transition the links).
873 static int tb_available_bandwidth(struct tb *tb, struct tb_port *src_port,
874 struct tb_port *dst_port, int *available_up,
875 int *available_down, bool include_asym)
877 struct tb_port *port;
880 /* Maximum possible bandwidth asymmetric Gen 4 link is 120 Gb/s */
881 *available_up = *available_down = 120000;
883 /* Find the minimum available bandwidth over all links */
884 tb_for_each_port_on_path(src_port, dst_port, port) {
885 int max_up, max_down, consumed_up, consumed_down;
887 if (!tb_port_is_null(port))
890 ret = tb_maximum_bandwidth(tb, src_port, dst_port, port,
891 &max_up, &max_down, include_asym);
895 ret = tb_consumed_usb3_pcie_bandwidth(tb, src_port, dst_port,
900 max_up -= consumed_up;
901 max_down -= consumed_down;
903 ret = tb_consumed_dp_bandwidth(tb, src_port, dst_port, port,
904 &consumed_up, &consumed_down);
907 max_up -= consumed_up;
908 max_down -= consumed_down;
910 if (max_up < *available_up)
911 *available_up = max_up;
912 if (max_down < *available_down)
913 *available_down = max_down;
916 if (*available_up < 0)
918 if (*available_down < 0)
924 static int tb_release_unused_usb3_bandwidth(struct tb *tb,
925 struct tb_port *src_port,
926 struct tb_port *dst_port)
928 struct tb_tunnel *tunnel;
930 tunnel = tb_find_first_usb3_tunnel(tb, src_port, dst_port);
931 return tunnel ? tb_tunnel_release_unused_bandwidth(tunnel) : 0;
934 static void tb_reclaim_usb3_bandwidth(struct tb *tb, struct tb_port *src_port,
935 struct tb_port *dst_port)
937 int ret, available_up, available_down;
938 struct tb_tunnel *tunnel;
940 tunnel = tb_find_first_usb3_tunnel(tb, src_port, dst_port);
944 tb_tunnel_dbg(tunnel, "reclaiming unused bandwidth\n");
947 * Calculate available bandwidth for the first hop USB3 tunnel.
948 * That determines the whole USB3 bandwidth for this branch.
950 ret = tb_available_bandwidth(tb, tunnel->src_port, tunnel->dst_port,
951 &available_up, &available_down, false);
953 tb_tunnel_warn(tunnel, "failed to calculate available bandwidth\n");
957 tb_tunnel_dbg(tunnel, "available bandwidth %d/%d Mb/s\n", available_up,
960 tb_tunnel_reclaim_available_bandwidth(tunnel, &available_up, &available_down);
963 static int tb_tunnel_usb3(struct tb *tb, struct tb_switch *sw)
965 struct tb_switch *parent = tb_switch_parent(sw);
966 int ret, available_up, available_down;
967 struct tb_port *up, *down, *port;
968 struct tb_cm *tcm = tb_priv(tb);
969 struct tb_tunnel *tunnel;
971 if (!tb_acpi_may_tunnel_usb3()) {
972 tb_dbg(tb, "USB3 tunneling disabled, not creating tunnel\n");
976 up = tb_switch_find_port(sw, TB_TYPE_USB3_UP);
984 * Look up available down port. Since we are chaining it should
985 * be found right above this switch.
987 port = tb_switch_downstream_port(sw);
988 down = tb_find_usb3_down(parent, port);
992 if (tb_route(parent)) {
993 struct tb_port *parent_up;
995 * Check first that the parent switch has its upstream USB3
996 * port enabled. Otherwise the chain is not complete and
997 * there is no point setting up a new tunnel.
999 parent_up = tb_switch_find_port(parent, TB_TYPE_USB3_UP);
1000 if (!parent_up || !tb_port_is_enabled(parent_up))
1003 /* Make all unused bandwidth available for the new tunnel */
1004 ret = tb_release_unused_usb3_bandwidth(tb, down, up);
1009 ret = tb_available_bandwidth(tb, down, up, &available_up, &available_down,
1014 tb_port_dbg(up, "available bandwidth for new USB3 tunnel %d/%d Mb/s\n",
1015 available_up, available_down);
1017 tunnel = tb_tunnel_alloc_usb3(tb, up, down, available_up,
1024 if (tb_tunnel_activate(tunnel)) {
1026 "USB3 tunnel activation failed, aborting\n");
1031 list_add_tail(&tunnel->list, &tcm->tunnel_list);
1032 if (tb_route(parent))
1033 tb_reclaim_usb3_bandwidth(tb, down, up);
1038 tb_tunnel_free(tunnel);
1040 if (tb_route(parent))
1041 tb_reclaim_usb3_bandwidth(tb, down, up);
1046 static int tb_create_usb3_tunnels(struct tb_switch *sw)
1048 struct tb_port *port;
1051 if (!tb_acpi_may_tunnel_usb3())
1055 ret = tb_tunnel_usb3(sw->tb, sw);
1060 tb_switch_for_each_port(sw, port) {
1061 if (!tb_port_has_remote(port))
1063 ret = tb_create_usb3_tunnels(port->remote->sw);
1072 * tb_configure_asym() - Transition links to asymmetric if needed
1073 * @tb: Domain structure
1074 * @src_port: Source adapter to start the transition
1075 * @dst_port: Destination adapter
1076 * @requested_up: Additional bandwidth (Mb/s) required upstream
1077 * @requested_down: Additional bandwidth (Mb/s) required downstream
1079 * Transition links between @src_port and @dst_port into asymmetric, with
1080 * three lanes in the direction from @src_port towards @dst_port and one lane
1081 * in the opposite direction, if the bandwidth requirements
1082 * (requested + currently consumed) on that link exceed @asym_threshold.
1084 * Must be called with available >= requested over all links.
1086 static int tb_configure_asym(struct tb *tb, struct tb_port *src_port,
1087 struct tb_port *dst_port, int requested_up,
1090 struct tb_switch *sw;
1091 bool clx, downstream;
1095 if (!asym_threshold)
1098 /* Disable CL states before doing any transitions */
1099 downstream = tb_port_path_direction_downstream(src_port, dst_port);
1100 /* Pick up router deepest in the hierarchy */
1106 clx = tb_disable_clx(sw);
1108 tb_for_each_upstream_port_on_path(src_port, dst_port, up) {
1109 int consumed_up, consumed_down;
1110 enum tb_link_width width;
1112 ret = tb_consumed_dp_bandwidth(tb, src_port, dst_port, up,
1113 &consumed_up, &consumed_down);
1119 * Downstream so make sure upstream is within the 36G
1120 * (40G - guard band 10%), and the requested is above
1121 * what the threshold is.
1123 if (consumed_up + requested_up >= TB_ASYM_MIN) {
1127 /* Does consumed + requested exceed the threshold */
1128 if (consumed_down + requested_down < asym_threshold)
1131 width = TB_LINK_WIDTH_ASYM_RX;
1133 /* Upstream, the opposite of above */
1134 if (consumed_down + requested_down >= TB_ASYM_MIN) {
1138 if (consumed_up + requested_up < asym_threshold)
1141 width = TB_LINK_WIDTH_ASYM_TX;
1144 if (up->sw->link_width == width)
1147 if (!tb_port_width_supported(up, width))
1150 tb_sw_dbg(up->sw, "configuring asymmetric link\n");
1153 * Here requested + consumed > threshold so we need to
1154 * transtion the link into asymmetric now.
1156 ret = tb_switch_set_link_width(up->sw, width);
1158 tb_sw_warn(up->sw, "failed to set link width\n");
1163 /* Re-enable CL states if they were previosly enabled */
1171 * tb_configure_sym() - Transition links to symmetric if possible
1172 * @tb: Domain structure
1173 * @src_port: Source adapter to start the transition
1174 * @dst_port: Destination adapter
1175 * @requested_up: New lower bandwidth request upstream (Mb/s)
1176 * @requested_down: New lower bandwidth request downstream (Mb/s)
1178 * Goes over each link from @src_port to @dst_port and tries to
1179 * transition the link to symmetric if the currently consumed bandwidth
1182 static int tb_configure_sym(struct tb *tb, struct tb_port *src_port,
1183 struct tb_port *dst_port, int requested_up,
1186 struct tb_switch *sw;
1187 bool clx, downstream;
1191 if (!asym_threshold)
1194 /* Disable CL states before doing any transitions */
1195 downstream = tb_port_path_direction_downstream(src_port, dst_port);
1196 /* Pick up router deepest in the hierarchy */
1202 clx = tb_disable_clx(sw);
1204 tb_for_each_upstream_port_on_path(src_port, dst_port, up) {
1205 int consumed_up, consumed_down;
1207 /* Already symmetric */
1208 if (up->sw->link_width <= TB_LINK_WIDTH_DUAL)
1210 /* Unplugged, no need to switch */
1211 if (up->sw->is_unplugged)
1214 ret = tb_consumed_dp_bandwidth(tb, src_port, dst_port, up,
1215 &consumed_up, &consumed_down);
1221 * Downstream so we want the consumed_down < threshold.
1222 * Upstream traffic should be less than 36G (40G
1223 * guard band 10%) as the link was configured asymmetric
1226 if (consumed_down + requested_down >= asym_threshold)
1229 if (consumed_up + requested_up >= asym_threshold)
1233 if (up->sw->link_width == TB_LINK_WIDTH_DUAL)
1236 tb_sw_dbg(up->sw, "configuring symmetric link\n");
1238 ret = tb_switch_set_link_width(up->sw, TB_LINK_WIDTH_DUAL);
1240 tb_sw_warn(up->sw, "failed to set link width\n");
1245 /* Re-enable CL states if they were previosly enabled */
1252 static void tb_configure_link(struct tb_port *down, struct tb_port *up,
1253 struct tb_switch *sw)
1255 struct tb *tb = sw->tb;
1257 /* Link the routers using both links if available */
1260 if (down->dual_link_port && up->dual_link_port) {
1261 down->dual_link_port->remote = up->dual_link_port;
1262 up->dual_link_port->remote = down->dual_link_port;
1266 * Enable lane bonding if the link is currently two single lane
1269 if (sw->link_width < TB_LINK_WIDTH_DUAL)
1270 tb_switch_set_link_width(sw, TB_LINK_WIDTH_DUAL);
1273 * Device router that comes up as symmetric link is
1274 * connected deeper in the hierarchy, we transition the links
1275 * above into symmetric if bandwidth allows.
1277 if (tb_switch_depth(sw) > 1 &&
1278 tb_port_get_link_generation(up) >= 4 &&
1279 up->sw->link_width == TB_LINK_WIDTH_DUAL) {
1280 struct tb_port *host_port;
1282 host_port = tb_port_at(tb_route(sw), tb->root_switch);
1283 tb_configure_sym(tb, host_port, up, 0, 0);
1286 /* Set the link configured */
1287 tb_switch_configure_link(sw);
1290 static void tb_scan_port(struct tb_port *port);
1293 * tb_scan_switch() - scan for and initialize downstream switches
1295 static void tb_scan_switch(struct tb_switch *sw)
1297 struct tb_port *port;
1299 pm_runtime_get_sync(&sw->dev);
1301 tb_switch_for_each_port(sw, port)
1304 pm_runtime_mark_last_busy(&sw->dev);
1305 pm_runtime_put_autosuspend(&sw->dev);
1309 * tb_scan_port() - check for and initialize switches below port
1311 static void tb_scan_port(struct tb_port *port)
1313 struct tb_cm *tcm = tb_priv(port->sw->tb);
1314 struct tb_port *upstream_port;
1315 bool discovery = false;
1316 struct tb_switch *sw;
1318 if (tb_is_upstream_port(port))
1321 if (tb_port_is_dpout(port) && tb_dp_port_hpd_is_active(port) == 1 &&
1322 !tb_dp_port_is_enabled(port)) {
1323 tb_port_dbg(port, "DP adapter HPD set, queuing hotplug\n");
1324 tb_queue_hotplug(port->sw->tb, tb_route(port->sw), port->port,
1329 if (port->config.type != TB_TYPE_PORT)
1331 if (port->dual_link_port && port->link_nr)
1333 * Downstream switch is reachable through two ports.
1334 * Only scan on the primary port (link_nr == 0).
1338 pm_runtime_get_sync(&port->usb4->dev);
1340 if (tb_wait_for_port(port, false) <= 0)
1343 tb_port_dbg(port, "port already has a remote\n");
1347 tb_retimer_scan(port, true);
1349 sw = tb_switch_alloc(port->sw->tb, &port->sw->dev,
1350 tb_downstream_route(port));
1353 * If there is an error accessing the connected switch
1354 * it may be connected to another domain. Also we allow
1355 * the other domain to be connected to a max depth switch.
1357 if (PTR_ERR(sw) == -EIO || PTR_ERR(sw) == -EADDRNOTAVAIL)
1358 tb_scan_xdomain(port);
1362 if (tb_switch_configure(sw)) {
1368 * If there was previously another domain connected remove it
1371 if (port->xdomain) {
1372 tb_xdomain_remove(port->xdomain);
1373 tb_port_unconfigure_xdomain(port);
1374 port->xdomain = NULL;
1378 * Do not send uevents until we have discovered all existing
1379 * tunnels and know which switches were authorized already by
1380 * the boot firmware.
1382 if (!tcm->hotplug_active) {
1383 dev_set_uevent_suppress(&sw->dev, true);
1388 * At the moment Thunderbolt 2 and beyond (devices with LC) we
1389 * can support runtime PM.
1391 sw->rpm = sw->generation > 1;
1393 if (tb_switch_add(sw)) {
1398 upstream_port = tb_upstream_port(sw);
1399 tb_configure_link(port, upstream_port, sw);
1402 * CL0s and CL1 are enabled and supported together.
1403 * Silently ignore CLx enabling in case CLx is not supported.
1406 tb_sw_dbg(sw, "discovery, not touching CL states\n");
1407 else if (tb_enable_clx(sw))
1408 tb_sw_warn(sw, "failed to enable CL states\n");
1410 if (tb_enable_tmu(sw))
1411 tb_sw_warn(sw, "failed to enable TMU\n");
1414 * Configuration valid needs to be set after the TMU has been
1415 * enabled for the upstream port of the router so we do it here.
1417 tb_switch_configuration_valid(sw);
1419 /* Scan upstream retimers */
1420 tb_retimer_scan(upstream_port, true);
1423 * Create USB 3.x tunnels only when the switch is plugged to the
1424 * domain. This is because we scan the domain also during discovery
1425 * and want to discover existing USB 3.x tunnels before we create
1428 if (tcm->hotplug_active && tb_tunnel_usb3(sw->tb, sw))
1429 tb_sw_warn(sw, "USB3 tunnel creation failed\n");
1431 tb_add_dp_resources(sw);
1436 pm_runtime_mark_last_busy(&port->usb4->dev);
1437 pm_runtime_put_autosuspend(&port->usb4->dev);
1441 static void tb_deactivate_and_free_tunnel(struct tb_tunnel *tunnel)
1443 struct tb_port *src_port, *dst_port;
1449 tb_tunnel_deactivate(tunnel);
1450 list_del(&tunnel->list);
1453 src_port = tunnel->src_port;
1454 dst_port = tunnel->dst_port;
1456 switch (tunnel->type) {
1458 tb_detach_bandwidth_group(src_port);
1460 * In case of DP tunnel make sure the DP IN resource is
1461 * deallocated properly.
1463 tb_switch_dealloc_dp_resource(src_port->sw, src_port);
1465 * If bandwidth on a link is < asym_threshold
1466 * transition the link to symmetric.
1468 tb_configure_sym(tb, src_port, dst_port, 0, 0);
1469 /* Now we can allow the domain to runtime suspend again */
1470 pm_runtime_mark_last_busy(&dst_port->sw->dev);
1471 pm_runtime_put_autosuspend(&dst_port->sw->dev);
1472 pm_runtime_mark_last_busy(&src_port->sw->dev);
1473 pm_runtime_put_autosuspend(&src_port->sw->dev);
1476 case TB_TUNNEL_USB3:
1477 tb_reclaim_usb3_bandwidth(tb, src_port, dst_port);
1482 * PCIe and DMA tunnels do not consume guaranteed
1488 tb_tunnel_free(tunnel);
1492 * tb_free_invalid_tunnels() - destroy tunnels of devices that have gone away
1494 static void tb_free_invalid_tunnels(struct tb *tb)
1496 struct tb_cm *tcm = tb_priv(tb);
1497 struct tb_tunnel *tunnel;
1498 struct tb_tunnel *n;
1500 list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) {
1501 if (tb_tunnel_is_invalid(tunnel))
1502 tb_deactivate_and_free_tunnel(tunnel);
1507 * tb_free_unplugged_children() - traverse hierarchy and free unplugged switches
1509 static void tb_free_unplugged_children(struct tb_switch *sw)
1511 struct tb_port *port;
1513 tb_switch_for_each_port(sw, port) {
1514 if (!tb_port_has_remote(port))
1517 if (port->remote->sw->is_unplugged) {
1518 tb_retimer_remove_all(port);
1519 tb_remove_dp_resources(port->remote->sw);
1520 tb_switch_unconfigure_link(port->remote->sw);
1521 tb_switch_set_link_width(port->remote->sw,
1522 TB_LINK_WIDTH_SINGLE);
1523 tb_switch_remove(port->remote->sw);
1524 port->remote = NULL;
1525 if (port->dual_link_port)
1526 port->dual_link_port->remote = NULL;
1528 tb_free_unplugged_children(port->remote->sw);
1533 static struct tb_port *tb_find_pcie_down(struct tb_switch *sw,
1534 const struct tb_port *port)
1536 struct tb_port *down = NULL;
1539 * To keep plugging devices consistently in the same PCIe
1540 * hierarchy, do mapping here for switch downstream PCIe ports.
1542 if (tb_switch_is_usb4(sw)) {
1543 down = usb4_switch_map_pcie_down(sw, port);
1544 } else if (!tb_route(sw)) {
1545 int phy_port = tb_phy_port_from_link(port->port);
1549 * Hard-coded Thunderbolt port to PCIe down port mapping
1552 if (tb_switch_is_cactus_ridge(sw) ||
1553 tb_switch_is_alpine_ridge(sw))
1554 index = !phy_port ? 6 : 7;
1555 else if (tb_switch_is_falcon_ridge(sw))
1556 index = !phy_port ? 6 : 8;
1557 else if (tb_switch_is_titan_ridge(sw))
1558 index = !phy_port ? 8 : 9;
1562 /* Validate the hard-coding */
1563 if (WARN_ON(index > sw->config.max_port_number))
1566 down = &sw->ports[index];
1570 if (WARN_ON(!tb_port_is_pcie_down(down)))
1572 if (tb_pci_port_is_enabled(down))
1579 return tb_find_unused_port(sw, TB_TYPE_PCIE_DOWN);
1583 tb_recalc_estimated_bandwidth_for_group(struct tb_bandwidth_group *group)
1585 struct tb_tunnel *first_tunnel;
1586 struct tb *tb = group->tb;
1590 tb_dbg(tb, "re-calculating bandwidth estimation for group %u\n",
1593 first_tunnel = NULL;
1594 list_for_each_entry(in, &group->ports, group_list) {
1595 int estimated_bw, estimated_up, estimated_down;
1596 struct tb_tunnel *tunnel;
1597 struct tb_port *out;
1599 if (!usb4_dp_port_bandwidth_mode_enabled(in))
1602 tunnel = tb_find_tunnel(tb, TB_TUNNEL_DP, in, NULL);
1603 if (WARN_ON(!tunnel))
1606 if (!first_tunnel) {
1608 * Since USB3 bandwidth is shared by all DP
1609 * tunnels under the host router USB4 port, even
1610 * if they do not begin from the host router, we
1611 * can release USB3 bandwidth just once and not
1612 * for each tunnel separately.
1614 first_tunnel = tunnel;
1615 ret = tb_release_unused_usb3_bandwidth(tb,
1616 first_tunnel->src_port, first_tunnel->dst_port);
1618 tb_tunnel_warn(tunnel,
1619 "failed to release unused bandwidth\n");
1624 out = tunnel->dst_port;
1625 ret = tb_available_bandwidth(tb, in, out, &estimated_up,
1626 &estimated_down, true);
1628 tb_tunnel_warn(tunnel,
1629 "failed to re-calculate estimated bandwidth\n");
1634 * Estimated bandwidth includes:
1635 * - already allocated bandwidth for the DP tunnel
1636 * - available bandwidth along the path
1637 * - bandwidth allocated for USB 3.x but not used.
1639 tb_tunnel_dbg(tunnel,
1640 "re-calculated estimated bandwidth %u/%u Mb/s\n",
1641 estimated_up, estimated_down);
1643 if (tb_port_path_direction_downstream(in, out))
1644 estimated_bw = estimated_down;
1646 estimated_bw = estimated_up;
1648 if (usb4_dp_port_set_estimated_bandwidth(in, estimated_bw))
1649 tb_tunnel_warn(tunnel,
1650 "failed to update estimated bandwidth\n");
1654 tb_reclaim_usb3_bandwidth(tb, first_tunnel->src_port,
1655 first_tunnel->dst_port);
1657 tb_dbg(tb, "bandwidth estimation for group %u done\n", group->index);
1660 static void tb_recalc_estimated_bandwidth(struct tb *tb)
1662 struct tb_cm *tcm = tb_priv(tb);
1665 tb_dbg(tb, "bandwidth consumption changed, re-calculating estimated bandwidth\n");
1667 for (i = 0; i < ARRAY_SIZE(tcm->groups); i++) {
1668 struct tb_bandwidth_group *group = &tcm->groups[i];
1670 if (!list_empty(&group->ports))
1671 tb_recalc_estimated_bandwidth_for_group(group);
1674 tb_dbg(tb, "bandwidth re-calculation done\n");
1677 static struct tb_port *tb_find_dp_out(struct tb *tb, struct tb_port *in)
1679 struct tb_port *host_port, *port;
1680 struct tb_cm *tcm = tb_priv(tb);
1682 host_port = tb_route(in->sw) ?
1683 tb_port_at(tb_route(in->sw), tb->root_switch) : NULL;
1685 list_for_each_entry(port, &tcm->dp_resources, list) {
1686 if (!tb_port_is_dpout(port))
1689 if (tb_port_is_enabled(port)) {
1690 tb_port_dbg(port, "DP OUT in use\n");
1694 tb_port_dbg(port, "DP OUT available\n");
1697 * Keep the DP tunnel under the topology starting from
1698 * the same host router downstream port.
1700 if (host_port && tb_route(port->sw)) {
1703 p = tb_port_at(tb_route(port->sw), tb->root_switch);
1714 static bool tb_tunnel_one_dp(struct tb *tb)
1716 int available_up, available_down, ret, link_nr;
1717 struct tb_cm *tcm = tb_priv(tb);
1718 struct tb_port *port, *in, *out;
1719 int consumed_up, consumed_down;
1720 struct tb_tunnel *tunnel;
1723 * Find pair of inactive DP IN and DP OUT adapters and then
1724 * establish a DP tunnel between them.
1726 tb_dbg(tb, "looking for DP IN <-> DP OUT pairs:\n");
1730 list_for_each_entry(port, &tcm->dp_resources, list) {
1731 if (!tb_port_is_dpin(port))
1734 if (tb_port_is_enabled(port)) {
1735 tb_port_dbg(port, "DP IN in use\n");
1740 tb_port_dbg(in, "DP IN available\n");
1742 out = tb_find_dp_out(tb, port);
1748 tb_dbg(tb, "no suitable DP IN adapter available, not tunneling\n");
1752 tb_dbg(tb, "no suitable DP OUT adapter available, not tunneling\n");
1757 * This is only applicable to links that are not bonded (so
1758 * when Thunderbolt 1 hardware is involved somewhere in the
1759 * topology). For these try to share the DP bandwidth between
1763 list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
1764 if (tb_tunnel_is_dp(tunnel)) {
1771 * DP stream needs the domain to be active so runtime resume
1772 * both ends of the tunnel.
1774 * This should bring the routers in the middle active as well
1775 * and keeps the domain from runtime suspending while the DP
1778 pm_runtime_get_sync(&in->sw->dev);
1779 pm_runtime_get_sync(&out->sw->dev);
1781 if (tb_switch_alloc_dp_resource(in->sw, in)) {
1782 tb_port_dbg(in, "no resource available for DP IN, not tunneling\n");
1786 if (!tb_attach_bandwidth_group(tcm, in, out))
1787 goto err_dealloc_dp;
1789 /* Make all unused USB3 bandwidth available for the new DP tunnel */
1790 ret = tb_release_unused_usb3_bandwidth(tb, in, out);
1792 tb_warn(tb, "failed to release unused bandwidth\n");
1793 goto err_detach_group;
1796 ret = tb_available_bandwidth(tb, in, out, &available_up, &available_down,
1799 goto err_reclaim_usb;
1801 tb_dbg(tb, "available bandwidth for new DP tunnel %u/%u Mb/s\n",
1802 available_up, available_down);
1804 tunnel = tb_tunnel_alloc_dp(tb, in, out, link_nr, available_up,
1807 tb_port_dbg(out, "could not allocate DP tunnel\n");
1808 goto err_reclaim_usb;
1811 if (tb_tunnel_activate(tunnel)) {
1812 tb_port_info(out, "DP tunnel activation failed, aborting\n");
1816 list_add_tail(&tunnel->list, &tcm->tunnel_list);
1817 tb_reclaim_usb3_bandwidth(tb, in, out);
1820 * Transition the links to asymmetric if the consumption exceeds
1823 if (!tb_tunnel_consumed_bandwidth(tunnel, &consumed_up, &consumed_down))
1824 tb_configure_asym(tb, in, out, consumed_up, consumed_down);
1826 /* Update the domain with the new bandwidth estimation */
1827 tb_recalc_estimated_bandwidth(tb);
1830 * In case of DP tunnel exists, change host router's 1st children
1831 * TMU mode to HiFi for CL0s to work.
1833 tb_increase_tmu_accuracy(tunnel);
1837 tb_tunnel_free(tunnel);
1839 tb_reclaim_usb3_bandwidth(tb, in, out);
1841 tb_detach_bandwidth_group(in);
1843 tb_switch_dealloc_dp_resource(in->sw, in);
1845 pm_runtime_mark_last_busy(&out->sw->dev);
1846 pm_runtime_put_autosuspend(&out->sw->dev);
1847 pm_runtime_mark_last_busy(&in->sw->dev);
1848 pm_runtime_put_autosuspend(&in->sw->dev);
1853 static void tb_tunnel_dp(struct tb *tb)
1855 if (!tb_acpi_may_tunnel_dp()) {
1856 tb_dbg(tb, "DP tunneling disabled, not creating tunnel\n");
1860 while (tb_tunnel_one_dp(tb))
1864 static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port *port)
1866 struct tb_port *in, *out;
1867 struct tb_tunnel *tunnel;
1869 if (tb_port_is_dpin(port)) {
1870 tb_port_dbg(port, "DP IN resource unavailable\n");
1874 tb_port_dbg(port, "DP OUT resource unavailable\n");
1879 tunnel = tb_find_tunnel(tb, TB_TUNNEL_DP, in, out);
1880 tb_deactivate_and_free_tunnel(tunnel);
1881 list_del_init(&port->list);
1884 * See if there is another DP OUT port that can be used for
1885 * to create another tunnel.
1887 tb_recalc_estimated_bandwidth(tb);
1891 static void tb_dp_resource_available(struct tb *tb, struct tb_port *port)
1893 struct tb_cm *tcm = tb_priv(tb);
1896 if (tb_port_is_enabled(port))
1899 list_for_each_entry(p, &tcm->dp_resources, list) {
1904 tb_port_dbg(port, "DP %s resource available\n",
1905 tb_port_is_dpin(port) ? "IN" : "OUT");
1906 list_add_tail(&port->list, &tcm->dp_resources);
1908 /* Look for suitable DP IN <-> DP OUT pairs now */
1912 static void tb_disconnect_and_release_dp(struct tb *tb)
1914 struct tb_cm *tcm = tb_priv(tb);
1915 struct tb_tunnel *tunnel, *n;
1918 * Tear down all DP tunnels and release their resources. They
1919 * will be re-established after resume based on plug events.
1921 list_for_each_entry_safe_reverse(tunnel, n, &tcm->tunnel_list, list) {
1922 if (tb_tunnel_is_dp(tunnel))
1923 tb_deactivate_and_free_tunnel(tunnel);
1926 while (!list_empty(&tcm->dp_resources)) {
1927 struct tb_port *port;
1929 port = list_first_entry(&tcm->dp_resources,
1930 struct tb_port, list);
1931 list_del_init(&port->list);
1935 static int tb_disconnect_pci(struct tb *tb, struct tb_switch *sw)
1937 struct tb_tunnel *tunnel;
1940 up = tb_switch_find_port(sw, TB_TYPE_PCIE_UP);
1944 tunnel = tb_find_tunnel(tb, TB_TUNNEL_PCI, NULL, up);
1945 if (WARN_ON(!tunnel))
1948 tb_switch_xhci_disconnect(sw);
1950 tb_tunnel_deactivate(tunnel);
1951 list_del(&tunnel->list);
1952 tb_tunnel_free(tunnel);
1956 static int tb_tunnel_pci(struct tb *tb, struct tb_switch *sw)
1958 struct tb_port *up, *down, *port;
1959 struct tb_cm *tcm = tb_priv(tb);
1960 struct tb_tunnel *tunnel;
1962 up = tb_switch_find_port(sw, TB_TYPE_PCIE_UP);
1967 * Look up available down port. Since we are chaining it should
1968 * be found right above this switch.
1970 port = tb_switch_downstream_port(sw);
1971 down = tb_find_pcie_down(tb_switch_parent(sw), port);
1975 tunnel = tb_tunnel_alloc_pci(tb, up, down);
1979 if (tb_tunnel_activate(tunnel)) {
1981 "PCIe tunnel activation failed, aborting\n");
1982 tb_tunnel_free(tunnel);
1987 * PCIe L1 is needed to enable CL0s for Titan Ridge so enable it
1990 if (tb_switch_pcie_l1_enable(sw))
1991 tb_sw_warn(sw, "failed to enable PCIe L1 for Titan Ridge\n");
1993 if (tb_switch_xhci_connect(sw))
1994 tb_sw_warn(sw, "failed to connect xHCI\n");
1996 list_add_tail(&tunnel->list, &tcm->tunnel_list);
2000 static int tb_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
2001 int transmit_path, int transmit_ring,
2002 int receive_path, int receive_ring)
2004 struct tb_cm *tcm = tb_priv(tb);
2005 struct tb_port *nhi_port, *dst_port;
2006 struct tb_tunnel *tunnel;
2007 struct tb_switch *sw;
2010 sw = tb_to_switch(xd->dev.parent);
2011 dst_port = tb_port_at(xd->route, sw);
2012 nhi_port = tb_switch_find_port(tb->root_switch, TB_TYPE_NHI);
2014 mutex_lock(&tb->lock);
2017 * When tunneling DMA paths the link should not enter CL states
2018 * so disable them now.
2022 tunnel = tb_tunnel_alloc_dma(tb, nhi_port, dst_port, transmit_path,
2023 transmit_ring, receive_path, receive_ring);
2029 if (tb_tunnel_activate(tunnel)) {
2030 tb_port_info(nhi_port,
2031 "DMA tunnel activation failed, aborting\n");
2036 list_add_tail(&tunnel->list, &tcm->tunnel_list);
2037 mutex_unlock(&tb->lock);
2041 tb_tunnel_free(tunnel);
2044 mutex_unlock(&tb->lock);
2049 static void __tb_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
2050 int transmit_path, int transmit_ring,
2051 int receive_path, int receive_ring)
2053 struct tb_cm *tcm = tb_priv(tb);
2054 struct tb_port *nhi_port, *dst_port;
2055 struct tb_tunnel *tunnel, *n;
2056 struct tb_switch *sw;
2058 sw = tb_to_switch(xd->dev.parent);
2059 dst_port = tb_port_at(xd->route, sw);
2060 nhi_port = tb_switch_find_port(tb->root_switch, TB_TYPE_NHI);
2062 list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) {
2063 if (!tb_tunnel_is_dma(tunnel))
2065 if (tunnel->src_port != nhi_port || tunnel->dst_port != dst_port)
2068 if (tb_tunnel_match_dma(tunnel, transmit_path, transmit_ring,
2069 receive_path, receive_ring))
2070 tb_deactivate_and_free_tunnel(tunnel);
2074 * Try to re-enable CL states now, it is OK if this fails
2075 * because we may still have another DMA tunnel active through
2076 * the same host router USB4 downstream port.
2081 static int tb_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
2082 int transmit_path, int transmit_ring,
2083 int receive_path, int receive_ring)
2085 if (!xd->is_unplugged) {
2086 mutex_lock(&tb->lock);
2087 __tb_disconnect_xdomain_paths(tb, xd, transmit_path,
2088 transmit_ring, receive_path,
2090 mutex_unlock(&tb->lock);
2095 /* hotplug handling */
2098 * tb_handle_hotplug() - handle hotplug event
2100 * Executes on tb->wq.
2102 static void tb_handle_hotplug(struct work_struct *work)
2104 struct tb_hotplug_event *ev = container_of(work, typeof(*ev), work);
2105 struct tb *tb = ev->tb;
2106 struct tb_cm *tcm = tb_priv(tb);
2107 struct tb_switch *sw;
2108 struct tb_port *port;
2110 /* Bring the domain back from sleep if it was suspended */
2111 pm_runtime_get_sync(&tb->dev);
2113 mutex_lock(&tb->lock);
2114 if (!tcm->hotplug_active)
2115 goto out; /* during init, suspend or shutdown */
2117 sw = tb_switch_find_by_route(tb, ev->route);
2120 "hotplug event from non existent switch %llx:%x (unplug: %d)\n",
2121 ev->route, ev->port, ev->unplug);
2124 if (ev->port > sw->config.max_port_number) {
2126 "hotplug event from non existent port %llx:%x (unplug: %d)\n",
2127 ev->route, ev->port, ev->unplug);
2130 port = &sw->ports[ev->port];
2131 if (tb_is_upstream_port(port)) {
2132 tb_dbg(tb, "hotplug event for upstream port %llx:%x (unplug: %d)\n",
2133 ev->route, ev->port, ev->unplug);
2137 pm_runtime_get_sync(&sw->dev);
2140 tb_retimer_remove_all(port);
2142 if (tb_port_has_remote(port)) {
2143 tb_port_dbg(port, "switch unplugged\n");
2144 tb_sw_set_unplugged(port->remote->sw);
2145 tb_free_invalid_tunnels(tb);
2146 tb_remove_dp_resources(port->remote->sw);
2147 tb_switch_tmu_disable(port->remote->sw);
2148 tb_switch_unconfigure_link(port->remote->sw);
2149 tb_switch_set_link_width(port->remote->sw,
2150 TB_LINK_WIDTH_SINGLE);
2151 tb_switch_remove(port->remote->sw);
2152 port->remote = NULL;
2153 if (port->dual_link_port)
2154 port->dual_link_port->remote = NULL;
2155 /* Maybe we can create another DP tunnel */
2156 tb_recalc_estimated_bandwidth(tb);
2158 } else if (port->xdomain) {
2159 struct tb_xdomain *xd = tb_xdomain_get(port->xdomain);
2161 tb_port_dbg(port, "xdomain unplugged\n");
2163 * Service drivers are unbound during
2164 * tb_xdomain_remove() so setting XDomain as
2165 * unplugged here prevents deadlock if they call
2166 * tb_xdomain_disable_paths(). We will tear down
2167 * all the tunnels below.
2169 xd->is_unplugged = true;
2170 tb_xdomain_remove(xd);
2171 port->xdomain = NULL;
2172 __tb_disconnect_xdomain_paths(tb, xd, -1, -1, -1, -1);
2174 tb_port_unconfigure_xdomain(port);
2175 } else if (tb_port_is_dpout(port) || tb_port_is_dpin(port)) {
2176 tb_dp_resource_unavailable(tb, port);
2177 } else if (!port->port) {
2178 tb_sw_dbg(sw, "xHCI disconnect request\n");
2179 tb_switch_xhci_disconnect(sw);
2182 "got unplug event for disconnected port, ignoring\n");
2184 } else if (port->remote) {
2185 tb_port_dbg(port, "got plug event for connected port, ignoring\n");
2186 } else if (!port->port && sw->authorized) {
2187 tb_sw_dbg(sw, "xHCI connect request\n");
2188 tb_switch_xhci_connect(sw);
2190 if (tb_port_is_null(port)) {
2191 tb_port_dbg(port, "hotplug: scanning\n");
2194 tb_port_dbg(port, "hotplug: no switch found\n");
2195 } else if (tb_port_is_dpout(port) || tb_port_is_dpin(port)) {
2196 tb_dp_resource_available(tb, port);
2200 pm_runtime_mark_last_busy(&sw->dev);
2201 pm_runtime_put_autosuspend(&sw->dev);
2206 mutex_unlock(&tb->lock);
2208 pm_runtime_mark_last_busy(&tb->dev);
2209 pm_runtime_put_autosuspend(&tb->dev);
2214 static int tb_alloc_dp_bandwidth(struct tb_tunnel *tunnel, int *requested_up,
2215 int *requested_down)
2217 int allocated_up, allocated_down, available_up, available_down, ret;
2218 int requested_up_corrected, requested_down_corrected, granularity;
2219 int max_up, max_down, max_up_rounded, max_down_rounded;
2220 struct tb *tb = tunnel->tb;
2221 struct tb_port *in, *out;
2223 ret = tb_tunnel_allocated_bandwidth(tunnel, &allocated_up, &allocated_down);
2227 in = tunnel->src_port;
2228 out = tunnel->dst_port;
2230 tb_tunnel_dbg(tunnel, "bandwidth allocated currently %d/%d Mb/s\n",
2231 allocated_up, allocated_down);
2234 * If we get rounded up request from graphics side, say HBR2 x 4
2235 * that is 17500 instead of 17280 (this is because of the
2236 * granularity), we allow it too. Here the graphics has already
2237 * negotiated with the DPRX the maximum possible rates (which is
2238 * 17280 in this case).
2240 * Since the link cannot go higher than 17280 we use that in our
2241 * calculations but the DP IN adapter Allocated BW write must be
2242 * the same value (17500) otherwise the adapter will mark it as
2243 * failed for graphics.
2245 ret = tb_tunnel_maximum_bandwidth(tunnel, &max_up, &max_down);
2249 ret = usb4_dp_port_granularity(in);
2254 max_up_rounded = roundup(max_up, granularity);
2255 max_down_rounded = roundup(max_down, granularity);
2258 * This will "fix" the request down to the maximum supported
2259 * rate * lanes if it is at the maximum rounded up level.
2261 requested_up_corrected = *requested_up;
2262 if (requested_up_corrected == max_up_rounded)
2263 requested_up_corrected = max_up;
2264 else if (requested_up_corrected < 0)
2265 requested_up_corrected = 0;
2266 requested_down_corrected = *requested_down;
2267 if (requested_down_corrected == max_down_rounded)
2268 requested_down_corrected = max_down;
2269 else if (requested_down_corrected < 0)
2270 requested_down_corrected = 0;
2272 tb_tunnel_dbg(tunnel, "corrected bandwidth request %d/%d Mb/s\n",
2273 requested_up_corrected, requested_down_corrected);
2275 if ((*requested_up >= 0 && requested_up_corrected > max_up_rounded) ||
2276 (*requested_down >= 0 && requested_down_corrected > max_down_rounded)) {
2277 tb_tunnel_dbg(tunnel,
2278 "bandwidth request too high (%d/%d Mb/s > %d/%d Mb/s)\n",
2279 requested_up_corrected, requested_down_corrected,
2280 max_up_rounded, max_down_rounded);
2284 if ((*requested_up >= 0 && requested_up_corrected <= allocated_up) ||
2285 (*requested_down >= 0 && requested_down_corrected <= allocated_down)) {
2287 * If bandwidth on a link is < asym_threshold transition
2288 * the link to symmetric.
2290 tb_configure_sym(tb, in, out, *requested_up, *requested_down);
2292 * If requested bandwidth is less or equal than what is
2293 * currently allocated to that tunnel we simply change
2294 * the reservation of the tunnel. Since all the tunnels
2295 * going out from the same USB4 port are in the same
2296 * group the released bandwidth will be taken into
2297 * account for the other tunnels automatically below.
2299 return tb_tunnel_alloc_bandwidth(tunnel, requested_up,
2304 * More bandwidth is requested. Release all the potential
2305 * bandwidth from USB3 first.
2307 ret = tb_release_unused_usb3_bandwidth(tb, in, out);
2312 * Then go over all tunnels that cross the same USB4 ports (they
2313 * are also in the same group but we use the same function here
2314 * that we use with the normal bandwidth allocation).
2316 ret = tb_available_bandwidth(tb, in, out, &available_up, &available_down,
2321 tb_tunnel_dbg(tunnel, "bandwidth available for allocation %d/%d Mb/s\n",
2322 available_up, available_down);
2324 if ((*requested_up >= 0 && available_up >= requested_up_corrected) ||
2325 (*requested_down >= 0 && available_down >= requested_down_corrected)) {
2327 * If bandwidth on a link is >= asym_threshold
2328 * transition the link to asymmetric.
2330 ret = tb_configure_asym(tb, in, out, *requested_up,
2333 tb_configure_sym(tb, in, out, 0, 0);
2337 ret = tb_tunnel_alloc_bandwidth(tunnel, requested_up,
2340 tb_tunnel_warn(tunnel, "failed to allocate bandwidth\n");
2341 tb_configure_sym(tb, in, out, 0, 0);
2348 tb_reclaim_usb3_bandwidth(tb, in, out);
2352 static void tb_handle_dp_bandwidth_request(struct work_struct *work)
2354 struct tb_hotplug_event *ev = container_of(work, typeof(*ev), work);
2355 int requested_bw, requested_up, requested_down, ret;
2356 struct tb_port *in, *out;
2357 struct tb_tunnel *tunnel;
2358 struct tb *tb = ev->tb;
2359 struct tb_cm *tcm = tb_priv(tb);
2360 struct tb_switch *sw;
2362 pm_runtime_get_sync(&tb->dev);
2364 mutex_lock(&tb->lock);
2365 if (!tcm->hotplug_active)
2368 sw = tb_switch_find_by_route(tb, ev->route);
2370 tb_warn(tb, "bandwidth request from non-existent router %llx\n",
2375 in = &sw->ports[ev->port];
2376 if (!tb_port_is_dpin(in)) {
2377 tb_port_warn(in, "bandwidth request to non-DP IN adapter\n");
2381 tb_port_dbg(in, "handling bandwidth allocation request\n");
2383 if (!usb4_dp_port_bandwidth_mode_enabled(in)) {
2384 tb_port_warn(in, "bandwidth allocation mode not enabled\n");
2388 ret = usb4_dp_port_requested_bandwidth(in);
2390 if (ret == -ENODATA)
2391 tb_port_dbg(in, "no bandwidth request active\n");
2393 tb_port_warn(in, "failed to read requested bandwidth\n");
2398 tb_port_dbg(in, "requested bandwidth %d Mb/s\n", requested_bw);
2400 tunnel = tb_find_tunnel(tb, TB_TUNNEL_DP, in, NULL);
2402 tb_port_warn(in, "failed to find tunnel\n");
2406 out = tunnel->dst_port;
2408 if (tb_port_path_direction_downstream(in, out)) {
2410 requested_down = requested_bw;
2412 requested_up = requested_bw;
2413 requested_down = -1;
2416 ret = tb_alloc_dp_bandwidth(tunnel, &requested_up, &requested_down);
2418 if (ret == -ENOBUFS)
2419 tb_tunnel_warn(tunnel,
2420 "not enough bandwidth available\n");
2422 tb_tunnel_warn(tunnel,
2423 "failed to change bandwidth allocation\n");
2425 tb_tunnel_dbg(tunnel,
2426 "bandwidth allocation changed to %d/%d Mb/s\n",
2427 requested_up, requested_down);
2429 /* Update other clients about the allocation change */
2430 tb_recalc_estimated_bandwidth(tb);
2436 mutex_unlock(&tb->lock);
2438 pm_runtime_mark_last_busy(&tb->dev);
2439 pm_runtime_put_autosuspend(&tb->dev);
2444 static void tb_queue_dp_bandwidth_request(struct tb *tb, u64 route, u8 port)
2446 struct tb_hotplug_event *ev;
2448 ev = kmalloc(sizeof(*ev), GFP_KERNEL);
2455 INIT_WORK(&ev->work, tb_handle_dp_bandwidth_request);
2456 queue_work(tb->wq, &ev->work);
2459 static void tb_handle_notification(struct tb *tb, u64 route,
2460 const struct cfg_error_pkg *error)
2463 switch (error->error) {
2464 case TB_CFG_ERROR_PCIE_WAKE:
2465 case TB_CFG_ERROR_DP_CON_CHANGE:
2466 case TB_CFG_ERROR_DPTX_DISCOVERY:
2467 if (tb_cfg_ack_notification(tb->ctl, route, error))
2468 tb_warn(tb, "could not ack notification on %llx\n",
2472 case TB_CFG_ERROR_DP_BW:
2473 if (tb_cfg_ack_notification(tb->ctl, route, error))
2474 tb_warn(tb, "could not ack notification on %llx\n",
2476 tb_queue_dp_bandwidth_request(tb, route, error->port);
2480 /* Ignore for now */
2486 * tb_schedule_hotplug_handler() - callback function for the control channel
2488 * Delegates to tb_handle_hotplug.
2490 static void tb_handle_event(struct tb *tb, enum tb_cfg_pkg_type type,
2491 const void *buf, size_t size)
2493 const struct cfg_event_pkg *pkg = buf;
2494 u64 route = tb_cfg_get_route(&pkg->header);
2497 case TB_CFG_PKG_ERROR:
2498 tb_handle_notification(tb, route, (const struct cfg_error_pkg *)buf);
2500 case TB_CFG_PKG_EVENT:
2503 tb_warn(tb, "unexpected event %#x, ignoring\n", type);
2507 if (tb_cfg_ack_plug(tb->ctl, route, pkg->port, pkg->unplug)) {
2508 tb_warn(tb, "could not ack plug event on %llx:%x\n", route,
2512 tb_queue_hotplug(tb, route, pkg->port, pkg->unplug);
2515 static void tb_stop(struct tb *tb)
2517 struct tb_cm *tcm = tb_priv(tb);
2518 struct tb_tunnel *tunnel;
2519 struct tb_tunnel *n;
2521 cancel_delayed_work(&tcm->remove_work);
2522 /* tunnels are only present after everything has been initialized */
2523 list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) {
2525 * DMA tunnels require the driver to be functional so we
2526 * tear them down. Other protocol tunnels can be left
2529 if (tb_tunnel_is_dma(tunnel))
2530 tb_tunnel_deactivate(tunnel);
2531 tb_tunnel_free(tunnel);
2533 tb_switch_remove(tb->root_switch);
2534 tcm->hotplug_active = false; /* signal tb_handle_hotplug to quit */
2537 static int tb_scan_finalize_switch(struct device *dev, void *data)
2539 if (tb_is_switch(dev)) {
2540 struct tb_switch *sw = tb_to_switch(dev);
2543 * If we found that the switch was already setup by the
2544 * boot firmware, mark it as authorized now before we
2545 * send uevent to userspace.
2550 dev_set_uevent_suppress(dev, false);
2551 kobject_uevent(&dev->kobj, KOBJ_ADD);
2552 device_for_each_child(dev, NULL, tb_scan_finalize_switch);
2558 static int tb_start(struct tb *tb)
2560 struct tb_cm *tcm = tb_priv(tb);
2563 tb->root_switch = tb_switch_alloc(tb, &tb->dev, 0);
2564 if (IS_ERR(tb->root_switch))
2565 return PTR_ERR(tb->root_switch);
2568 * ICM firmware upgrade needs running firmware and in native
2569 * mode that is not available so disable firmware upgrade of the
2572 * However, USB4 routers support NVM firmware upgrade if they
2573 * implement the necessary router operations.
2575 tb->root_switch->no_nvm_upgrade = !tb_switch_is_usb4(tb->root_switch);
2576 /* All USB4 routers support runtime PM */
2577 tb->root_switch->rpm = tb_switch_is_usb4(tb->root_switch);
2579 ret = tb_switch_configure(tb->root_switch);
2581 tb_switch_put(tb->root_switch);
2585 /* Announce the switch to the world */
2586 ret = tb_switch_add(tb->root_switch);
2588 tb_switch_put(tb->root_switch);
2593 * To support highest CLx state, we set host router's TMU to
2596 tb_switch_tmu_configure(tb->root_switch, TB_SWITCH_TMU_MODE_LOWRES);
2597 /* Enable TMU if it is off */
2598 tb_switch_tmu_enable(tb->root_switch);
2599 /* Full scan to discover devices added before the driver was loaded. */
2600 tb_scan_switch(tb->root_switch);
2601 /* Find out tunnels created by the boot firmware */
2602 tb_discover_tunnels(tb);
2603 /* Add DP resources from the DP tunnels created by the boot firmware */
2604 tb_discover_dp_resources(tb);
2606 * If the boot firmware did not create USB 3.x tunnels create them
2607 * now for the whole topology.
2609 tb_create_usb3_tunnels(tb->root_switch);
2610 /* Add DP IN resources for the root switch */
2611 tb_add_dp_resources(tb->root_switch);
2612 /* Make the discovered switches available to the userspace */
2613 device_for_each_child(&tb->root_switch->dev, NULL,
2614 tb_scan_finalize_switch);
2616 /* Allow tb_handle_hotplug to progress events */
2617 tcm->hotplug_active = true;
2621 static int tb_suspend_noirq(struct tb *tb)
2623 struct tb_cm *tcm = tb_priv(tb);
2625 tb_dbg(tb, "suspending...\n");
2626 tb_disconnect_and_release_dp(tb);
2627 tb_switch_suspend(tb->root_switch, false);
2628 tcm->hotplug_active = false; /* signal tb_handle_hotplug to quit */
2629 tb_dbg(tb, "suspend finished\n");
2634 static void tb_restore_children(struct tb_switch *sw)
2636 struct tb_port *port;
2638 /* No need to restore if the router is already unplugged */
2639 if (sw->is_unplugged)
2642 if (tb_enable_clx(sw))
2643 tb_sw_warn(sw, "failed to re-enable CL states\n");
2645 if (tb_enable_tmu(sw))
2646 tb_sw_warn(sw, "failed to restore TMU configuration\n");
2648 tb_switch_configuration_valid(sw);
2650 tb_switch_for_each_port(sw, port) {
2651 if (!tb_port_has_remote(port) && !port->xdomain)
2655 tb_switch_set_link_width(port->remote->sw,
2656 port->remote->sw->link_width);
2657 tb_switch_configure_link(port->remote->sw);
2659 tb_restore_children(port->remote->sw);
2660 } else if (port->xdomain) {
2661 tb_port_configure_xdomain(port, port->xdomain);
2666 static int tb_resume_noirq(struct tb *tb)
2668 struct tb_cm *tcm = tb_priv(tb);
2669 struct tb_tunnel *tunnel, *n;
2670 unsigned int usb3_delay = 0;
2673 tb_dbg(tb, "resuming...\n");
2675 /* remove any pci devices the firmware might have setup */
2676 tb_switch_reset(tb->root_switch);
2678 tb_switch_resume(tb->root_switch);
2679 tb_free_invalid_tunnels(tb);
2680 tb_free_unplugged_children(tb->root_switch);
2681 tb_restore_children(tb->root_switch);
2684 * If we get here from suspend to disk the boot firmware or the
2685 * restore kernel might have created tunnels of its own. Since
2686 * we cannot be sure they are usable for us we find and tear
2689 tb_switch_discover_tunnels(tb->root_switch, &tunnels, false);
2690 list_for_each_entry_safe_reverse(tunnel, n, &tunnels, list) {
2691 if (tb_tunnel_is_usb3(tunnel))
2693 tb_tunnel_deactivate(tunnel);
2694 tb_tunnel_free(tunnel);
2697 /* Re-create our tunnels now */
2698 list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) {
2699 /* USB3 requires delay before it can be re-activated */
2700 if (tb_tunnel_is_usb3(tunnel)) {
2702 /* Only need to do it once */
2705 tb_tunnel_restart(tunnel);
2707 if (!list_empty(&tcm->tunnel_list)) {
2709 * the pcie links need some time to get going.
2710 * 100ms works for me...
2712 tb_dbg(tb, "tunnels restarted, sleeping for 100ms\n");
2715 /* Allow tb_handle_hotplug to progress events */
2716 tcm->hotplug_active = true;
2717 tb_dbg(tb, "resume finished\n");
2722 static int tb_free_unplugged_xdomains(struct tb_switch *sw)
2724 struct tb_port *port;
2727 tb_switch_for_each_port(sw, port) {
2728 if (tb_is_upstream_port(port))
2730 if (port->xdomain && port->xdomain->is_unplugged) {
2731 tb_retimer_remove_all(port);
2732 tb_xdomain_remove(port->xdomain);
2733 tb_port_unconfigure_xdomain(port);
2734 port->xdomain = NULL;
2736 } else if (port->remote) {
2737 ret += tb_free_unplugged_xdomains(port->remote->sw);
2744 static int tb_freeze_noirq(struct tb *tb)
2746 struct tb_cm *tcm = tb_priv(tb);
2748 tcm->hotplug_active = false;
2752 static int tb_thaw_noirq(struct tb *tb)
2754 struct tb_cm *tcm = tb_priv(tb);
2756 tcm->hotplug_active = true;
2760 static void tb_complete(struct tb *tb)
2763 * Release any unplugged XDomains and if there is a case where
2764 * another domain is swapped in place of unplugged XDomain we
2765 * need to run another rescan.
2767 mutex_lock(&tb->lock);
2768 if (tb_free_unplugged_xdomains(tb->root_switch))
2769 tb_scan_switch(tb->root_switch);
2770 mutex_unlock(&tb->lock);
2773 static int tb_runtime_suspend(struct tb *tb)
2775 struct tb_cm *tcm = tb_priv(tb);
2777 mutex_lock(&tb->lock);
2778 tb_switch_suspend(tb->root_switch, true);
2779 tcm->hotplug_active = false;
2780 mutex_unlock(&tb->lock);
2785 static void tb_remove_work(struct work_struct *work)
2787 struct tb_cm *tcm = container_of(work, struct tb_cm, remove_work.work);
2788 struct tb *tb = tcm_to_tb(tcm);
2790 mutex_lock(&tb->lock);
2791 if (tb->root_switch) {
2792 tb_free_unplugged_children(tb->root_switch);
2793 tb_free_unplugged_xdomains(tb->root_switch);
2795 mutex_unlock(&tb->lock);
2798 static int tb_runtime_resume(struct tb *tb)
2800 struct tb_cm *tcm = tb_priv(tb);
2801 struct tb_tunnel *tunnel, *n;
2803 mutex_lock(&tb->lock);
2804 tb_switch_resume(tb->root_switch);
2805 tb_free_invalid_tunnels(tb);
2806 tb_restore_children(tb->root_switch);
2807 list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
2808 tb_tunnel_restart(tunnel);
2809 tcm->hotplug_active = true;
2810 mutex_unlock(&tb->lock);
2813 * Schedule cleanup of any unplugged devices. Run this in a
2814 * separate thread to avoid possible deadlock if the device
2815 * removal runtime resumes the unplugged device.
2817 queue_delayed_work(tb->wq, &tcm->remove_work, msecs_to_jiffies(50));
2821 static const struct tb_cm_ops tb_cm_ops = {
2824 .suspend_noirq = tb_suspend_noirq,
2825 .resume_noirq = tb_resume_noirq,
2826 .freeze_noirq = tb_freeze_noirq,
2827 .thaw_noirq = tb_thaw_noirq,
2828 .complete = tb_complete,
2829 .runtime_suspend = tb_runtime_suspend,
2830 .runtime_resume = tb_runtime_resume,
2831 .handle_event = tb_handle_event,
2832 .disapprove_switch = tb_disconnect_pci,
2833 .approve_switch = tb_tunnel_pci,
2834 .approve_xdomain_paths = tb_approve_xdomain_paths,
2835 .disconnect_xdomain_paths = tb_disconnect_xdomain_paths,
2839 * During suspend the Thunderbolt controller is reset and all PCIe
2840 * tunnels are lost. The NHI driver will try to reestablish all tunnels
2841 * during resume. This adds device links between the tunneled PCIe
2842 * downstream ports and the NHI so that the device core will make sure
2843 * NHI is resumed first before the rest.
2845 static bool tb_apple_add_links(struct tb_nhi *nhi)
2847 struct pci_dev *upstream, *pdev;
2850 if (!x86_apple_machine)
2853 switch (nhi->pdev->device) {
2854 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
2855 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
2856 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI:
2857 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI:
2863 upstream = pci_upstream_bridge(nhi->pdev);
2865 if (!pci_is_pcie(upstream))
2867 if (pci_pcie_type(upstream) == PCI_EXP_TYPE_UPSTREAM)
2869 upstream = pci_upstream_bridge(upstream);
2876 * For each hotplug downstream port, create add device link
2877 * back to NHI so that PCIe tunnels can be re-established after
2881 for_each_pci_bridge(pdev, upstream->subordinate) {
2882 const struct device_link *link;
2884 if (!pci_is_pcie(pdev))
2886 if (pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM ||
2887 !pdev->is_hotplug_bridge)
2890 link = device_link_add(&pdev->dev, &nhi->pdev->dev,
2891 DL_FLAG_AUTOREMOVE_SUPPLIER |
2892 DL_FLAG_PM_RUNTIME);
2894 dev_dbg(&nhi->pdev->dev, "created link from %s\n",
2895 dev_name(&pdev->dev));
2898 dev_warn(&nhi->pdev->dev, "device link creation from %s failed\n",
2899 dev_name(&pdev->dev));
2906 struct tb *tb_probe(struct tb_nhi *nhi)
2911 tb = tb_domain_alloc(nhi, TB_TIMEOUT, sizeof(*tcm));
2915 if (tb_acpi_may_tunnel_pcie())
2916 tb->security_level = TB_SECURITY_USER;
2918 tb->security_level = TB_SECURITY_NOPCIE;
2920 tb->cm_ops = &tb_cm_ops;
2923 INIT_LIST_HEAD(&tcm->tunnel_list);
2924 INIT_LIST_HEAD(&tcm->dp_resources);
2925 INIT_DELAYED_WORK(&tcm->remove_work, tb_remove_work);
2926 tb_init_bandwidth_groups(tcm);
2928 tb_dbg(tb, "using software connection manager\n");
2931 * Device links are needed to make sure we establish tunnels
2932 * before the PCIe/USB stack is resumed so complain here if we
2933 * found them missing.
2935 if (!tb_apple_add_links(nhi) && !tb_acpi_add_links(nhi))
2936 tb_warn(tb, "device links to tunneled native ports are missing!\n");