Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 2 | /* |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 3 | * Thunderbolt driver - bus logic (NHI independent) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com> |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 6 | * Copyright (C) 2019, Intel Corporation |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/slab.h> |
| 10 | #include <linux/errno.h> |
| 11 | #include <linux/delay.h> |
Lukas Wunner | 630b3af | 2017-08-01 14:10:41 +0200 | [diff] [blame] | 12 | #include <linux/platform_data/x86/apple.h> |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 13 | |
| 14 | #include "tb.h" |
Andreas Noever | 7adf609 | 2014-06-03 22:04:01 +0200 | [diff] [blame] | 15 | #include "tb_regs.h" |
Mika Westerberg | 1752b9f | 2017-02-19 10:58:35 +0200 | [diff] [blame] | 16 | #include "tunnel.h" |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 17 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 18 | /** |
| 19 | * struct tb_cm - Simple Thunderbolt connection manager |
| 20 | * @tunnel_list: List of active tunnels |
| 21 | * @hotplug_active: tb_handle_hotplug will stop progressing plug |
| 22 | * events and exit if this is not set (it needs to |
| 23 | * acquire the lock one more time). Used to drain wq |
| 24 | * after cfg has been paused. |
| 25 | */ |
| 26 | struct tb_cm { |
| 27 | struct list_head tunnel_list; |
| 28 | bool hotplug_active; |
| 29 | }; |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 30 | |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 31 | struct tb_hotplug_event { |
| 32 | struct work_struct work; |
| 33 | struct tb *tb; |
| 34 | u64 route; |
| 35 | u8 port; |
| 36 | bool unplug; |
| 37 | }; |
| 38 | |
| 39 | static void tb_handle_hotplug(struct work_struct *work); |
| 40 | |
| 41 | static void tb_queue_hotplug(struct tb *tb, u64 route, u8 port, bool unplug) |
| 42 | { |
| 43 | struct tb_hotplug_event *ev; |
| 44 | |
| 45 | ev = kmalloc(sizeof(*ev), GFP_KERNEL); |
| 46 | if (!ev) |
| 47 | return; |
| 48 | |
| 49 | ev->tb = tb; |
| 50 | ev->route = route; |
| 51 | ev->port = port; |
| 52 | ev->unplug = unplug; |
| 53 | INIT_WORK(&ev->work, tb_handle_hotplug); |
| 54 | queue_work(tb->wq, &ev->work); |
| 55 | } |
| 56 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 57 | /* enumeration & hot plug handling */ |
| 58 | |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 59 | static void tb_discover_tunnels(struct tb_switch *sw) |
| 60 | { |
| 61 | struct tb *tb = sw->tb; |
| 62 | struct tb_cm *tcm = tb_priv(tb); |
| 63 | struct tb_port *port; |
| 64 | int i; |
| 65 | |
| 66 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 67 | struct tb_tunnel *tunnel = NULL; |
| 68 | |
| 69 | port = &sw->ports[i]; |
| 70 | switch (port->config.type) { |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 71 | case TB_TYPE_DP_HDMI_IN: |
| 72 | tunnel = tb_tunnel_discover_dp(tb, port); |
| 73 | break; |
| 74 | |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 75 | case TB_TYPE_PCIE_DOWN: |
| 76 | tunnel = tb_tunnel_discover_pci(tb, port); |
| 77 | break; |
| 78 | |
| 79 | default: |
| 80 | break; |
| 81 | } |
| 82 | |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 83 | if (!tunnel) |
| 84 | continue; |
| 85 | |
| 86 | if (tb_tunnel_is_pci(tunnel)) { |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 87 | struct tb_switch *parent = tunnel->dst_port->sw; |
| 88 | |
| 89 | while (parent != tunnel->src_port->sw) { |
| 90 | parent->boot = true; |
| 91 | parent = tb_switch_parent(parent); |
| 92 | } |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 93 | } |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 94 | |
| 95 | list_add_tail(&tunnel->list, &tcm->tunnel_list); |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 99 | if (tb_port_has_remote(&sw->ports[i])) |
| 100 | tb_discover_tunnels(sw->ports[i].remote->sw); |
| 101 | } |
| 102 | } |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 103 | |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 104 | static void tb_scan_xdomain(struct tb_port *port) |
| 105 | { |
| 106 | struct tb_switch *sw = port->sw; |
| 107 | struct tb *tb = sw->tb; |
| 108 | struct tb_xdomain *xd; |
| 109 | u64 route; |
| 110 | |
| 111 | route = tb_downstream_route(port); |
| 112 | xd = tb_xdomain_find_by_route(tb, route); |
| 113 | if (xd) { |
| 114 | tb_xdomain_put(xd); |
| 115 | return; |
| 116 | } |
| 117 | |
| 118 | xd = tb_xdomain_alloc(tb, &sw->dev, route, tb->root_switch->uuid, |
| 119 | NULL); |
| 120 | if (xd) { |
| 121 | tb_port_at(route, sw)->xdomain = xd; |
| 122 | tb_xdomain_add(xd); |
| 123 | } |
| 124 | } |
| 125 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 126 | static void tb_scan_port(struct tb_port *port); |
| 127 | |
| 128 | /** |
| 129 | * tb_scan_switch() - scan for and initialize downstream switches |
| 130 | */ |
| 131 | static void tb_scan_switch(struct tb_switch *sw) |
| 132 | { |
| 133 | int i; |
| 134 | for (i = 1; i <= sw->config.max_port_number; i++) |
| 135 | tb_scan_port(&sw->ports[i]); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * tb_scan_port() - check for and initialize switches below port |
| 140 | */ |
| 141 | static void tb_scan_port(struct tb_port *port) |
| 142 | { |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 143 | struct tb_cm *tcm = tb_priv(port->sw->tb); |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 144 | struct tb_port *upstream_port; |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 145 | struct tb_switch *sw; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 146 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 147 | if (tb_is_upstream_port(port)) |
| 148 | return; |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 149 | |
| 150 | if (tb_port_is_dpout(port) && tb_dp_port_hpd_is_active(port) == 1 && |
| 151 | !tb_dp_port_is_enabled(port)) { |
| 152 | tb_port_dbg(port, "DP adapter HPD set, queuing hotplug\n"); |
| 153 | tb_queue_hotplug(port->sw->tb, tb_route(port->sw), port->port, |
| 154 | false); |
| 155 | return; |
| 156 | } |
| 157 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 158 | if (port->config.type != TB_TYPE_PORT) |
| 159 | return; |
Andreas Noever | 343fcb8 | 2014-06-12 23:11:47 +0200 | [diff] [blame] | 160 | if (port->dual_link_port && port->link_nr) |
| 161 | return; /* |
| 162 | * Downstream switch is reachable through two ports. |
| 163 | * Only scan on the primary port (link_nr == 0). |
| 164 | */ |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 165 | if (tb_wait_for_port(port, false) <= 0) |
| 166 | return; |
| 167 | if (port->remote) { |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 168 | tb_port_dbg(port, "port already has a remote\n"); |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 169 | return; |
| 170 | } |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 171 | sw = tb_switch_alloc(port->sw->tb, &port->sw->dev, |
| 172 | tb_downstream_route(port)); |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 173 | if (IS_ERR(sw)) { |
| 174 | /* |
| 175 | * If there is an error accessing the connected switch |
| 176 | * it may be connected to another domain. Also we allow |
| 177 | * the other domain to be connected to a max depth switch. |
| 178 | */ |
| 179 | if (PTR_ERR(sw) == -EIO || PTR_ERR(sw) == -EADDRNOTAVAIL) |
| 180 | tb_scan_xdomain(port); |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 181 | return; |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 182 | } |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 183 | |
| 184 | if (tb_switch_configure(sw)) { |
| 185 | tb_switch_put(sw); |
| 186 | return; |
| 187 | } |
| 188 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 189 | /* |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 190 | * If there was previously another domain connected remove it |
| 191 | * first. |
| 192 | */ |
| 193 | if (port->xdomain) { |
| 194 | tb_xdomain_remove(port->xdomain); |
| 195 | port->xdomain = NULL; |
| 196 | } |
| 197 | |
| 198 | /* |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 199 | * Do not send uevents until we have discovered all existing |
| 200 | * tunnels and know which switches were authorized already by |
| 201 | * the boot firmware. |
| 202 | */ |
| 203 | if (!tcm->hotplug_active) |
| 204 | dev_set_uevent_suppress(&sw->dev, true); |
Mika Westerberg | f67cf49 | 2017-06-06 15:25:16 +0300 | [diff] [blame] | 205 | |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 206 | if (tb_switch_add(sw)) { |
| 207 | tb_switch_put(sw); |
| 208 | return; |
| 209 | } |
| 210 | |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 211 | /* Link the switches using both links if available */ |
| 212 | upstream_port = tb_upstream_port(sw); |
| 213 | port->remote = upstream_port; |
| 214 | upstream_port->remote = port; |
| 215 | if (port->dual_link_port && upstream_port->dual_link_port) { |
| 216 | port->dual_link_port->remote = upstream_port->dual_link_port; |
| 217 | upstream_port->dual_link_port->remote = port->dual_link_port; |
| 218 | } |
| 219 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 220 | tb_scan_switch(sw); |
| 221 | } |
| 222 | |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 223 | static int tb_free_tunnel(struct tb *tb, enum tb_tunnel_type type, |
| 224 | struct tb_port *src_port, struct tb_port *dst_port) |
| 225 | { |
| 226 | struct tb_cm *tcm = tb_priv(tb); |
| 227 | struct tb_tunnel *tunnel; |
| 228 | |
| 229 | list_for_each_entry(tunnel, &tcm->tunnel_list, list) { |
| 230 | if (tunnel->type == type && |
| 231 | ((src_port && src_port == tunnel->src_port) || |
| 232 | (dst_port && dst_port == tunnel->dst_port))) { |
| 233 | tb_tunnel_deactivate(tunnel); |
| 234 | list_del(&tunnel->list); |
| 235 | tb_tunnel_free(tunnel); |
| 236 | return 0; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | return -ENODEV; |
| 241 | } |
| 242 | |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 243 | /** |
| 244 | * tb_free_invalid_tunnels() - destroy tunnels of devices that have gone away |
| 245 | */ |
| 246 | static void tb_free_invalid_tunnels(struct tb *tb) |
| 247 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 248 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 249 | struct tb_tunnel *tunnel; |
| 250 | struct tb_tunnel *n; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 251 | |
| 252 | list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) { |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 253 | if (tb_tunnel_is_invalid(tunnel)) { |
| 254 | tb_tunnel_deactivate(tunnel); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 255 | list_del(&tunnel->list); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 256 | tb_tunnel_free(tunnel); |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | /** |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 262 | * tb_free_unplugged_children() - traverse hierarchy and free unplugged switches |
| 263 | */ |
| 264 | static void tb_free_unplugged_children(struct tb_switch *sw) |
| 265 | { |
| 266 | int i; |
| 267 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 268 | struct tb_port *port = &sw->ports[i]; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 269 | |
| 270 | if (!tb_port_has_remote(port)) |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 271 | continue; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 272 | |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 273 | if (port->remote->sw->is_unplugged) { |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 274 | tb_switch_remove(port->remote->sw); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 275 | port->remote = NULL; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 276 | if (port->dual_link_port) |
| 277 | port->dual_link_port->remote = NULL; |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 278 | } else { |
| 279 | tb_free_unplugged_children(port->remote->sw); |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 284 | /** |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 285 | * tb_find_port() - return the first port of @type on @sw or NULL |
| 286 | * @sw: Switch to find the port from |
| 287 | * @type: Port type to look for |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 288 | */ |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 289 | static struct tb_port *tb_find_port(struct tb_switch *sw, |
| 290 | enum tb_port_type type) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 291 | { |
| 292 | int i; |
| 293 | for (i = 1; i <= sw->config.max_port_number; i++) |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 294 | if (sw->ports[i].config.type == type) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 295 | return &sw->ports[i]; |
| 296 | return NULL; |
| 297 | } |
| 298 | |
| 299 | /** |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 300 | * tb_find_unused_port() - return the first inactive port on @sw |
| 301 | * @sw: Switch to find the port on |
| 302 | * @type: Port type to look for |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 303 | */ |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 304 | static struct tb_port *tb_find_unused_port(struct tb_switch *sw, |
| 305 | enum tb_port_type type) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 306 | { |
| 307 | int i; |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 308 | |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 309 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 310 | if (tb_is_upstream_port(&sw->ports[i])) |
| 311 | continue; |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 312 | if (sw->ports[i].config.type != type) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 313 | continue; |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 314 | if (!sw->ports[i].cap_adap) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 315 | continue; |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 316 | if (tb_port_is_enabled(&sw->ports[i])) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 317 | continue; |
| 318 | return &sw->ports[i]; |
| 319 | } |
| 320 | return NULL; |
| 321 | } |
| 322 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 323 | static struct tb_port *tb_find_pcie_down(struct tb_switch *sw, |
| 324 | const struct tb_port *port) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 325 | { |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 326 | /* |
| 327 | * To keep plugging devices consistently in the same PCIe |
| 328 | * hierarchy, do mapping here for root switch downstream PCIe |
| 329 | * ports. |
| 330 | */ |
| 331 | if (!tb_route(sw)) { |
| 332 | int phy_port = tb_phy_port_from_link(port->port); |
| 333 | int index; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 334 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 335 | /* |
| 336 | * Hard-coded Thunderbolt port to PCIe down port mapping |
| 337 | * per controller. |
| 338 | */ |
| 339 | if (tb_switch_is_cr(sw)) |
| 340 | index = !phy_port ? 6 : 7; |
| 341 | else if (tb_switch_is_fr(sw)) |
| 342 | index = !phy_port ? 6 : 8; |
| 343 | else |
| 344 | goto out; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 345 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 346 | /* Validate the hard-coding */ |
| 347 | if (WARN_ON(index > sw->config.max_port_number)) |
| 348 | goto out; |
| 349 | if (WARN_ON(!tb_port_is_pcie_down(&sw->ports[index]))) |
| 350 | goto out; |
| 351 | if (WARN_ON(tb_pci_port_is_enabled(&sw->ports[index]))) |
| 352 | goto out; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 353 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 354 | return &sw->ports[index]; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 355 | } |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 356 | |
| 357 | out: |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 358 | return tb_find_unused_port(sw, TB_TYPE_PCIE_DOWN); |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 359 | } |
| 360 | |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 361 | static int tb_tunnel_dp(struct tb *tb, struct tb_port *out) |
| 362 | { |
| 363 | struct tb_cm *tcm = tb_priv(tb); |
| 364 | struct tb_switch *sw = out->sw; |
| 365 | struct tb_tunnel *tunnel; |
| 366 | struct tb_port *in; |
| 367 | |
| 368 | if (tb_port_is_enabled(out)) |
| 369 | return 0; |
| 370 | |
| 371 | do { |
| 372 | sw = tb_to_switch(sw->dev.parent); |
| 373 | if (!sw) |
| 374 | return 0; |
| 375 | in = tb_find_unused_port(sw, TB_TYPE_DP_HDMI_IN); |
| 376 | } while (!in); |
| 377 | |
| 378 | tunnel = tb_tunnel_alloc_dp(tb, in, out); |
| 379 | if (!tunnel) { |
| 380 | tb_port_dbg(out, "DP tunnel allocation failed\n"); |
| 381 | return -ENOMEM; |
| 382 | } |
| 383 | |
| 384 | if (tb_tunnel_activate(tunnel)) { |
| 385 | tb_port_info(out, "DP tunnel activation failed, aborting\n"); |
| 386 | tb_tunnel_free(tunnel); |
| 387 | return -EIO; |
| 388 | } |
| 389 | |
| 390 | list_add_tail(&tunnel->list, &tcm->tunnel_list); |
| 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | static void tb_teardown_dp(struct tb *tb, struct tb_port *out) |
| 395 | { |
| 396 | tb_free_tunnel(tb, TB_TUNNEL_DP, NULL, out); |
| 397 | } |
| 398 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 399 | static int tb_tunnel_pci(struct tb *tb, struct tb_switch *sw) |
| 400 | { |
| 401 | struct tb_port *up, *down, *port; |
| 402 | struct tb_cm *tcm = tb_priv(tb); |
| 403 | struct tb_switch *parent_sw; |
| 404 | struct tb_tunnel *tunnel; |
| 405 | |
Mika Westerberg | e78db6f | 2017-10-12 16:45:50 +0300 | [diff] [blame] | 406 | up = tb_find_port(sw, TB_TYPE_PCIE_UP); |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 407 | if (!up) |
| 408 | return 0; |
| 409 | |
| 410 | /* |
| 411 | * Look up available down port. Since we are chaining it should |
| 412 | * be found right above this switch. |
| 413 | */ |
| 414 | parent_sw = tb_to_switch(sw->dev.parent); |
| 415 | port = tb_port_at(tb_route(sw), parent_sw); |
| 416 | down = tb_find_pcie_down(parent_sw, port); |
| 417 | if (!down) |
| 418 | return 0; |
| 419 | |
| 420 | tunnel = tb_tunnel_alloc_pci(tb, up, down); |
| 421 | if (!tunnel) |
| 422 | return -ENOMEM; |
| 423 | |
| 424 | if (tb_tunnel_activate(tunnel)) { |
| 425 | tb_port_info(up, |
| 426 | "PCIe tunnel activation failed, aborting\n"); |
| 427 | tb_tunnel_free(tunnel); |
| 428 | return -EIO; |
| 429 | } |
| 430 | |
| 431 | list_add_tail(&tunnel->list, &tcm->tunnel_list); |
| 432 | return 0; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 433 | } |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 434 | |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 435 | static int tb_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd) |
| 436 | { |
| 437 | struct tb_cm *tcm = tb_priv(tb); |
| 438 | struct tb_port *nhi_port, *dst_port; |
| 439 | struct tb_tunnel *tunnel; |
| 440 | struct tb_switch *sw; |
| 441 | |
| 442 | sw = tb_to_switch(xd->dev.parent); |
| 443 | dst_port = tb_port_at(xd->route, sw); |
| 444 | nhi_port = tb_find_port(tb->root_switch, TB_TYPE_NHI); |
| 445 | |
| 446 | mutex_lock(&tb->lock); |
| 447 | tunnel = tb_tunnel_alloc_dma(tb, nhi_port, dst_port, xd->transmit_ring, |
| 448 | xd->transmit_path, xd->receive_ring, |
| 449 | xd->receive_path); |
| 450 | if (!tunnel) { |
| 451 | mutex_unlock(&tb->lock); |
| 452 | return -ENOMEM; |
| 453 | } |
| 454 | |
| 455 | if (tb_tunnel_activate(tunnel)) { |
| 456 | tb_port_info(nhi_port, |
| 457 | "DMA tunnel activation failed, aborting\n"); |
| 458 | tb_tunnel_free(tunnel); |
| 459 | mutex_unlock(&tb->lock); |
| 460 | return -EIO; |
| 461 | } |
| 462 | |
| 463 | list_add_tail(&tunnel->list, &tcm->tunnel_list); |
| 464 | mutex_unlock(&tb->lock); |
| 465 | return 0; |
| 466 | } |
| 467 | |
| 468 | static void __tb_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd) |
| 469 | { |
| 470 | struct tb_port *dst_port; |
| 471 | struct tb_switch *sw; |
| 472 | |
| 473 | sw = tb_to_switch(xd->dev.parent); |
| 474 | dst_port = tb_port_at(xd->route, sw); |
| 475 | |
| 476 | /* |
| 477 | * It is possible that the tunnel was already teared down (in |
| 478 | * case of cable disconnect) so it is fine if we cannot find it |
| 479 | * here anymore. |
| 480 | */ |
| 481 | tb_free_tunnel(tb, TB_TUNNEL_DMA, NULL, dst_port); |
| 482 | } |
| 483 | |
| 484 | static int tb_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd) |
| 485 | { |
| 486 | if (!xd->is_unplugged) { |
| 487 | mutex_lock(&tb->lock); |
| 488 | __tb_disconnect_xdomain_paths(tb, xd); |
| 489 | mutex_unlock(&tb->lock); |
| 490 | } |
| 491 | return 0; |
| 492 | } |
| 493 | |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 494 | /* hotplug handling */ |
| 495 | |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 496 | /** |
| 497 | * tb_handle_hotplug() - handle hotplug event |
| 498 | * |
| 499 | * Executes on tb->wq. |
| 500 | */ |
| 501 | static void tb_handle_hotplug(struct work_struct *work) |
| 502 | { |
| 503 | struct tb_hotplug_event *ev = container_of(work, typeof(*ev), work); |
| 504 | struct tb *tb = ev->tb; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 505 | struct tb_cm *tcm = tb_priv(tb); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 506 | struct tb_switch *sw; |
| 507 | struct tb_port *port; |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 508 | mutex_lock(&tb->lock); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 509 | if (!tcm->hotplug_active) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 510 | goto out; /* during init, suspend or shutdown */ |
| 511 | |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 512 | sw = tb_switch_find_by_route(tb, ev->route); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 513 | if (!sw) { |
| 514 | tb_warn(tb, |
| 515 | "hotplug event from non existent switch %llx:%x (unplug: %d)\n", |
| 516 | ev->route, ev->port, ev->unplug); |
| 517 | goto out; |
| 518 | } |
| 519 | if (ev->port > sw->config.max_port_number) { |
| 520 | tb_warn(tb, |
| 521 | "hotplug event from non existent port %llx:%x (unplug: %d)\n", |
| 522 | ev->route, ev->port, ev->unplug); |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 523 | goto put_sw; |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 524 | } |
| 525 | port = &sw->ports[ev->port]; |
| 526 | if (tb_is_upstream_port(port)) { |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 527 | tb_dbg(tb, "hotplug event for upstream port %llx:%x (unplug: %d)\n", |
| 528 | ev->route, ev->port, ev->unplug); |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 529 | goto put_sw; |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 530 | } |
| 531 | if (ev->unplug) { |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 532 | if (tb_port_has_remote(port)) { |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 533 | tb_port_dbg(port, "switch unplugged\n"); |
Lukas Wunner | aae20bb | 2016-03-20 13:57:20 +0100 | [diff] [blame] | 534 | tb_sw_set_unplugged(port->remote->sw); |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 535 | tb_free_invalid_tunnels(tb); |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 536 | tb_switch_remove(port->remote->sw); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 537 | port->remote = NULL; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 538 | if (port->dual_link_port) |
| 539 | port->dual_link_port->remote = NULL; |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 540 | } else if (port->xdomain) { |
| 541 | struct tb_xdomain *xd = tb_xdomain_get(port->xdomain); |
| 542 | |
| 543 | tb_port_dbg(port, "xdomain unplugged\n"); |
| 544 | /* |
| 545 | * Service drivers are unbound during |
| 546 | * tb_xdomain_remove() so setting XDomain as |
| 547 | * unplugged here prevents deadlock if they call |
| 548 | * tb_xdomain_disable_paths(). We will tear down |
| 549 | * the path below. |
| 550 | */ |
| 551 | xd->is_unplugged = true; |
| 552 | tb_xdomain_remove(xd); |
| 553 | port->xdomain = NULL; |
| 554 | __tb_disconnect_xdomain_paths(tb, xd); |
| 555 | tb_xdomain_put(xd); |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 556 | } else if (tb_port_is_dpout(port)) { |
| 557 | tb_teardown_dp(tb, port); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 558 | } else { |
Mika Westerberg | 62efe69 | 2018-09-17 16:32:13 +0300 | [diff] [blame] | 559 | tb_port_dbg(port, |
| 560 | "got unplug event for disconnected port, ignoring\n"); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 561 | } |
| 562 | } else if (port->remote) { |
Mika Westerberg | 62efe69 | 2018-09-17 16:32:13 +0300 | [diff] [blame] | 563 | tb_port_dbg(port, "got plug event for connected port, ignoring\n"); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 564 | } else { |
Mika Westerberg | 344e064 | 2017-10-11 17:19:54 +0300 | [diff] [blame] | 565 | if (tb_port_is_null(port)) { |
Mika Westerberg | 62efe69 | 2018-09-17 16:32:13 +0300 | [diff] [blame] | 566 | tb_port_dbg(port, "hotplug: scanning\n"); |
Mika Westerberg | 344e064 | 2017-10-11 17:19:54 +0300 | [diff] [blame] | 567 | tb_scan_port(port); |
| 568 | if (!port->remote) |
Mika Westerberg | 62efe69 | 2018-09-17 16:32:13 +0300 | [diff] [blame] | 569 | tb_port_dbg(port, "hotplug: no switch found\n"); |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 570 | } else if (tb_port_is_dpout(port)) { |
| 571 | tb_tunnel_dp(tb, port); |
Mika Westerberg | 344e064 | 2017-10-11 17:19:54 +0300 | [diff] [blame] | 572 | } |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 573 | } |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 574 | |
| 575 | put_sw: |
| 576 | tb_switch_put(sw); |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 577 | out: |
| 578 | mutex_unlock(&tb->lock); |
| 579 | kfree(ev); |
| 580 | } |
| 581 | |
| 582 | /** |
| 583 | * tb_schedule_hotplug_handler() - callback function for the control channel |
| 584 | * |
| 585 | * Delegates to tb_handle_hotplug. |
| 586 | */ |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 587 | static void tb_handle_event(struct tb *tb, enum tb_cfg_pkg_type type, |
| 588 | const void *buf, size_t size) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 589 | { |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 590 | const struct cfg_event_pkg *pkg = buf; |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 591 | u64 route; |
| 592 | |
| 593 | if (type != TB_CFG_PKG_EVENT) { |
| 594 | tb_warn(tb, "unexpected event %#x, ignoring\n", type); |
| 595 | return; |
| 596 | } |
| 597 | |
| 598 | route = tb_cfg_get_route(&pkg->header); |
| 599 | |
| 600 | if (tb_cfg_error(tb->ctl, route, pkg->port, |
| 601 | TB_CFG_ERROR_ACK_PLUG_EVENT)) { |
| 602 | tb_warn(tb, "could not ack plug event on %llx:%x\n", route, |
| 603 | pkg->port); |
| 604 | } |
| 605 | |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 606 | tb_queue_hotplug(tb, route, pkg->port, pkg->unplug); |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 607 | } |
| 608 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 609 | static void tb_stop(struct tb *tb) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 610 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 611 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 612 | struct tb_tunnel *tunnel; |
| 613 | struct tb_tunnel *n; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 614 | |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 615 | /* tunnels are only present after everything has been initialized */ |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 616 | list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) { |
| 617 | /* |
| 618 | * DMA tunnels require the driver to be functional so we |
| 619 | * tear them down. Other protocol tunnels can be left |
| 620 | * intact. |
| 621 | */ |
| 622 | if (tb_tunnel_is_dma(tunnel)) |
| 623 | tb_tunnel_deactivate(tunnel); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 624 | tb_tunnel_free(tunnel); |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 625 | } |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 626 | tb_switch_remove(tb->root_switch); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 627 | tcm->hotplug_active = false; /* signal tb_handle_hotplug to quit */ |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 628 | } |
| 629 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 630 | static int tb_scan_finalize_switch(struct device *dev, void *data) |
| 631 | { |
| 632 | if (tb_is_switch(dev)) { |
| 633 | struct tb_switch *sw = tb_to_switch(dev); |
| 634 | |
| 635 | /* |
| 636 | * If we found that the switch was already setup by the |
| 637 | * boot firmware, mark it as authorized now before we |
| 638 | * send uevent to userspace. |
| 639 | */ |
| 640 | if (sw->boot) |
| 641 | sw->authorized = 1; |
| 642 | |
| 643 | dev_set_uevent_suppress(dev, false); |
| 644 | kobject_uevent(&dev->kobj, KOBJ_ADD); |
| 645 | device_for_each_child(dev, NULL, tb_scan_finalize_switch); |
| 646 | } |
| 647 | |
| 648 | return 0; |
| 649 | } |
| 650 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 651 | static int tb_start(struct tb *tb) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 652 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 653 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 654 | int ret; |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 655 | |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 656 | tb->root_switch = tb_switch_alloc(tb, &tb->dev, 0); |
Mika Westerberg | 444ac38 | 2018-12-30 12:17:52 +0200 | [diff] [blame] | 657 | if (IS_ERR(tb->root_switch)) |
| 658 | return PTR_ERR(tb->root_switch); |
Andreas Noever | a25c8b2 | 2014-06-03 22:04:02 +0200 | [diff] [blame] | 659 | |
Mika Westerberg | e6b245c | 2017-06-06 15:25:17 +0300 | [diff] [blame] | 660 | /* |
| 661 | * ICM firmware upgrade needs running firmware and in native |
| 662 | * mode that is not available so disable firmware upgrade of the |
| 663 | * root switch. |
| 664 | */ |
| 665 | tb->root_switch->no_nvm_upgrade = true; |
| 666 | |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 667 | ret = tb_switch_configure(tb->root_switch); |
| 668 | if (ret) { |
| 669 | tb_switch_put(tb->root_switch); |
| 670 | return ret; |
| 671 | } |
| 672 | |
| 673 | /* Announce the switch to the world */ |
| 674 | ret = tb_switch_add(tb->root_switch); |
| 675 | if (ret) { |
| 676 | tb_switch_put(tb->root_switch); |
| 677 | return ret; |
| 678 | } |
| 679 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 680 | /* Full scan to discover devices added before the driver was loaded. */ |
| 681 | tb_scan_switch(tb->root_switch); |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 682 | /* Find out tunnels created by the boot firmware */ |
| 683 | tb_discover_tunnels(tb->root_switch); |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 684 | /* Make the discovered switches available to the userspace */ |
| 685 | device_for_each_child(&tb->root_switch->dev, NULL, |
| 686 | tb_scan_finalize_switch); |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 687 | |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 688 | /* Allow tb_handle_hotplug to progress events */ |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 689 | tcm->hotplug_active = true; |
| 690 | return 0; |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 691 | } |
| 692 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 693 | static int tb_suspend_noirq(struct tb *tb) |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 694 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 695 | struct tb_cm *tcm = tb_priv(tb); |
| 696 | |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 697 | tb_dbg(tb, "suspending...\n"); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 698 | tb_switch_suspend(tb->root_switch); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 699 | tcm->hotplug_active = false; /* signal tb_handle_hotplug to quit */ |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 700 | tb_dbg(tb, "suspend finished\n"); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 701 | |
| 702 | return 0; |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 703 | } |
| 704 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 705 | static int tb_resume_noirq(struct tb *tb) |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 706 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 707 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 708 | struct tb_tunnel *tunnel, *n; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 709 | |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 710 | tb_dbg(tb, "resuming...\n"); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 711 | |
| 712 | /* remove any pci devices the firmware might have setup */ |
| 713 | tb_switch_reset(tb, 0); |
| 714 | |
| 715 | tb_switch_resume(tb->root_switch); |
| 716 | tb_free_invalid_tunnels(tb); |
| 717 | tb_free_unplugged_children(tb->root_switch); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 718 | list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 719 | tb_tunnel_restart(tunnel); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 720 | if (!list_empty(&tcm->tunnel_list)) { |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 721 | /* |
| 722 | * the pcie links need some time to get going. |
| 723 | * 100ms works for me... |
| 724 | */ |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 725 | tb_dbg(tb, "tunnels restarted, sleeping for 100ms\n"); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 726 | msleep(100); |
| 727 | } |
| 728 | /* Allow tb_handle_hotplug to progress events */ |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 729 | tcm->hotplug_active = true; |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 730 | tb_dbg(tb, "resume finished\n"); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 731 | |
| 732 | return 0; |
| 733 | } |
| 734 | |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 735 | static int tb_free_unplugged_xdomains(struct tb_switch *sw) |
| 736 | { |
| 737 | int i, ret = 0; |
| 738 | |
| 739 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 740 | struct tb_port *port = &sw->ports[i]; |
| 741 | |
| 742 | if (tb_is_upstream_port(port)) |
| 743 | continue; |
| 744 | if (port->xdomain && port->xdomain->is_unplugged) { |
| 745 | tb_xdomain_remove(port->xdomain); |
| 746 | port->xdomain = NULL; |
| 747 | ret++; |
| 748 | } else if (port->remote) { |
| 749 | ret += tb_free_unplugged_xdomains(port->remote->sw); |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | return ret; |
| 754 | } |
| 755 | |
| 756 | static void tb_complete(struct tb *tb) |
| 757 | { |
| 758 | /* |
| 759 | * Release any unplugged XDomains and if there is a case where |
| 760 | * another domain is swapped in place of unplugged XDomain we |
| 761 | * need to run another rescan. |
| 762 | */ |
| 763 | mutex_lock(&tb->lock); |
| 764 | if (tb_free_unplugged_xdomains(tb->root_switch)) |
| 765 | tb_scan_switch(tb->root_switch); |
| 766 | mutex_unlock(&tb->lock); |
| 767 | } |
| 768 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 769 | static const struct tb_cm_ops tb_cm_ops = { |
| 770 | .start = tb_start, |
| 771 | .stop = tb_stop, |
| 772 | .suspend_noirq = tb_suspend_noirq, |
| 773 | .resume_noirq = tb_resume_noirq, |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 774 | .complete = tb_complete, |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 775 | .handle_event = tb_handle_event, |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 776 | .approve_switch = tb_tunnel_pci, |
Mika Westerberg | 7ea4cd6 | 2018-09-28 16:41:01 +0300 | [diff] [blame] | 777 | .approve_xdomain_paths = tb_approve_xdomain_paths, |
| 778 | .disconnect_xdomain_paths = tb_disconnect_xdomain_paths, |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 779 | }; |
| 780 | |
| 781 | struct tb *tb_probe(struct tb_nhi *nhi) |
| 782 | { |
| 783 | struct tb_cm *tcm; |
| 784 | struct tb *tb; |
| 785 | |
Lukas Wunner | 630b3af | 2017-08-01 14:10:41 +0200 | [diff] [blame] | 786 | if (!x86_apple_machine) |
Mika Westerberg | f67cf49 | 2017-06-06 15:25:16 +0300 | [diff] [blame] | 787 | return NULL; |
| 788 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 789 | tb = tb_domain_alloc(nhi, sizeof(*tcm)); |
| 790 | if (!tb) |
| 791 | return NULL; |
| 792 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 793 | tb->security_level = TB_SECURITY_USER; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 794 | tb->cm_ops = &tb_cm_ops; |
| 795 | |
| 796 | tcm = tb_priv(tb); |
| 797 | INIT_LIST_HEAD(&tcm->tunnel_list); |
| 798 | |
| 799 | return tb; |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 800 | } |