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 | |
| 31 | /* enumeration & hot plug handling */ |
| 32 | |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 33 | static void tb_discover_tunnels(struct tb_switch *sw) |
| 34 | { |
| 35 | struct tb *tb = sw->tb; |
| 36 | struct tb_cm *tcm = tb_priv(tb); |
| 37 | struct tb_port *port; |
| 38 | int i; |
| 39 | |
| 40 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 41 | struct tb_tunnel *tunnel = NULL; |
| 42 | |
| 43 | port = &sw->ports[i]; |
| 44 | switch (port->config.type) { |
| 45 | case TB_TYPE_PCIE_DOWN: |
| 46 | tunnel = tb_tunnel_discover_pci(tb, port); |
| 47 | break; |
| 48 | |
| 49 | default: |
| 50 | break; |
| 51 | } |
| 52 | |
| 53 | if (tunnel) { |
| 54 | struct tb_switch *parent = tunnel->dst_port->sw; |
| 55 | |
| 56 | while (parent != tunnel->src_port->sw) { |
| 57 | parent->boot = true; |
| 58 | parent = tb_switch_parent(parent); |
| 59 | } |
| 60 | |
| 61 | list_add_tail(&tunnel->list, &tcm->tunnel_list); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 66 | if (tb_port_has_remote(&sw->ports[i])) |
| 67 | tb_discover_tunnels(sw->ports[i].remote->sw); |
| 68 | } |
| 69 | } |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 70 | |
| 71 | static void tb_scan_port(struct tb_port *port); |
| 72 | |
| 73 | /** |
| 74 | * tb_scan_switch() - scan for and initialize downstream switches |
| 75 | */ |
| 76 | static void tb_scan_switch(struct tb_switch *sw) |
| 77 | { |
| 78 | int i; |
| 79 | for (i = 1; i <= sw->config.max_port_number; i++) |
| 80 | tb_scan_port(&sw->ports[i]); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * tb_scan_port() - check for and initialize switches below port |
| 85 | */ |
| 86 | static void tb_scan_port(struct tb_port *port) |
| 87 | { |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 88 | struct tb_cm *tcm = tb_priv(port->sw->tb); |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 89 | struct tb_port *upstream_port; |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 90 | struct tb_switch *sw; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 91 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 92 | if (tb_is_upstream_port(port)) |
| 93 | return; |
| 94 | if (port->config.type != TB_TYPE_PORT) |
| 95 | return; |
Andreas Noever | 343fcb8 | 2014-06-12 23:11:47 +0200 | [diff] [blame] | 96 | if (port->dual_link_port && port->link_nr) |
| 97 | return; /* |
| 98 | * Downstream switch is reachable through two ports. |
| 99 | * Only scan on the primary port (link_nr == 0). |
| 100 | */ |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 101 | if (tb_wait_for_port(port, false) <= 0) |
| 102 | return; |
| 103 | if (port->remote) { |
| 104 | tb_port_WARN(port, "port already has a remote!\n"); |
| 105 | return; |
| 106 | } |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 107 | sw = tb_switch_alloc(port->sw->tb, &port->sw->dev, |
| 108 | tb_downstream_route(port)); |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 109 | if (!sw) |
| 110 | return; |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 111 | |
| 112 | if (tb_switch_configure(sw)) { |
| 113 | tb_switch_put(sw); |
| 114 | return; |
| 115 | } |
| 116 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 117 | /* |
| 118 | * Do not send uevents until we have discovered all existing |
| 119 | * tunnels and know which switches were authorized already by |
| 120 | * the boot firmware. |
| 121 | */ |
| 122 | if (!tcm->hotplug_active) |
| 123 | dev_set_uevent_suppress(&sw->dev, true); |
Mika Westerberg | f67cf49 | 2017-06-06 15:25:16 +0300 | [diff] [blame] | 124 | |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 125 | if (tb_switch_add(sw)) { |
| 126 | tb_switch_put(sw); |
| 127 | return; |
| 128 | } |
| 129 | |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 130 | /* Link the switches using both links if available */ |
| 131 | upstream_port = tb_upstream_port(sw); |
| 132 | port->remote = upstream_port; |
| 133 | upstream_port->remote = port; |
| 134 | if (port->dual_link_port && upstream_port->dual_link_port) { |
| 135 | port->dual_link_port->remote = upstream_port->dual_link_port; |
| 136 | upstream_port->dual_link_port->remote = port->dual_link_port; |
| 137 | } |
| 138 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 139 | tb_scan_switch(sw); |
| 140 | } |
| 141 | |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 142 | /** |
| 143 | * tb_free_invalid_tunnels() - destroy tunnels of devices that have gone away |
| 144 | */ |
| 145 | static void tb_free_invalid_tunnels(struct tb *tb) |
| 146 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 147 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 148 | struct tb_tunnel *tunnel; |
| 149 | struct tb_tunnel *n; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 150 | |
| 151 | list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) { |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 152 | if (tb_tunnel_is_invalid(tunnel)) { |
| 153 | tb_tunnel_deactivate(tunnel); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 154 | list_del(&tunnel->list); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 155 | tb_tunnel_free(tunnel); |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | /** |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 161 | * tb_free_unplugged_children() - traverse hierarchy and free unplugged switches |
| 162 | */ |
| 163 | static void tb_free_unplugged_children(struct tb_switch *sw) |
| 164 | { |
| 165 | int i; |
| 166 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 167 | struct tb_port *port = &sw->ports[i]; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 168 | |
| 169 | if (!tb_port_has_remote(port)) |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 170 | continue; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 171 | |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 172 | if (port->remote->sw->is_unplugged) { |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 173 | tb_switch_remove(port->remote->sw); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 174 | port->remote = NULL; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 175 | if (port->dual_link_port) |
| 176 | port->dual_link_port->remote = NULL; |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 177 | } else { |
| 178 | tb_free_unplugged_children(port->remote->sw); |
| 179 | } |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | |
| 184 | /** |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 185 | * find_pci_up_port() - return the first PCIe up port on @sw or NULL |
| 186 | */ |
| 187 | static struct tb_port *tb_find_pci_up_port(struct tb_switch *sw) |
| 188 | { |
| 189 | int i; |
| 190 | for (i = 1; i <= sw->config.max_port_number; i++) |
| 191 | if (sw->ports[i].config.type == TB_TYPE_PCIE_UP) |
| 192 | return &sw->ports[i]; |
| 193 | return NULL; |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * find_unused_down_port() - return the first inactive PCIe down port on @sw |
| 198 | */ |
| 199 | static struct tb_port *tb_find_unused_down_port(struct tb_switch *sw) |
| 200 | { |
| 201 | int i; |
| 202 | int cap; |
| 203 | int res; |
| 204 | int data; |
| 205 | for (i = 1; i <= sw->config.max_port_number; i++) { |
| 206 | if (tb_is_upstream_port(&sw->ports[i])) |
| 207 | continue; |
| 208 | if (sw->ports[i].config.type != TB_TYPE_PCIE_DOWN) |
| 209 | continue; |
Mika Westerberg | 56183c8 | 2017-02-19 10:39:34 +0200 | [diff] [blame] | 210 | cap = sw->ports[i].cap_adap; |
| 211 | if (!cap) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 212 | continue; |
| 213 | res = tb_port_read(&sw->ports[i], &data, TB_CFG_PORT, cap, 1); |
| 214 | if (res < 0) |
| 215 | continue; |
| 216 | if (data & 0x80000000) |
| 217 | continue; |
| 218 | return &sw->ports[i]; |
| 219 | } |
| 220 | return NULL; |
| 221 | } |
| 222 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 223 | static struct tb_port *tb_find_pcie_down(struct tb_switch *sw, |
| 224 | const struct tb_port *port) |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 225 | { |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 226 | /* |
| 227 | * To keep plugging devices consistently in the same PCIe |
| 228 | * hierarchy, do mapping here for root switch downstream PCIe |
| 229 | * ports. |
| 230 | */ |
| 231 | if (!tb_route(sw)) { |
| 232 | int phy_port = tb_phy_port_from_link(port->port); |
| 233 | int index; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 234 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 235 | /* |
| 236 | * Hard-coded Thunderbolt port to PCIe down port mapping |
| 237 | * per controller. |
| 238 | */ |
| 239 | if (tb_switch_is_cr(sw)) |
| 240 | index = !phy_port ? 6 : 7; |
| 241 | else if (tb_switch_is_fr(sw)) |
| 242 | index = !phy_port ? 6 : 8; |
| 243 | else |
| 244 | goto out; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 245 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 246 | /* Validate the hard-coding */ |
| 247 | if (WARN_ON(index > sw->config.max_port_number)) |
| 248 | goto out; |
| 249 | if (WARN_ON(!tb_port_is_pcie_down(&sw->ports[index]))) |
| 250 | goto out; |
| 251 | if (WARN_ON(tb_pci_port_is_enabled(&sw->ports[index]))) |
| 252 | goto out; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 253 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 254 | return &sw->ports[index]; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 255 | } |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 256 | |
| 257 | out: |
| 258 | return tb_find_unused_down_port(sw); |
| 259 | } |
| 260 | |
| 261 | static int tb_tunnel_pci(struct tb *tb, struct tb_switch *sw) |
| 262 | { |
| 263 | struct tb_port *up, *down, *port; |
| 264 | struct tb_cm *tcm = tb_priv(tb); |
| 265 | struct tb_switch *parent_sw; |
| 266 | struct tb_tunnel *tunnel; |
| 267 | |
| 268 | up = tb_find_pci_up_port(sw); |
| 269 | if (!up) |
| 270 | return 0; |
| 271 | |
| 272 | /* |
| 273 | * Look up available down port. Since we are chaining it should |
| 274 | * be found right above this switch. |
| 275 | */ |
| 276 | parent_sw = tb_to_switch(sw->dev.parent); |
| 277 | port = tb_port_at(tb_route(sw), parent_sw); |
| 278 | down = tb_find_pcie_down(parent_sw, port); |
| 279 | if (!down) |
| 280 | return 0; |
| 281 | |
| 282 | tunnel = tb_tunnel_alloc_pci(tb, up, down); |
| 283 | if (!tunnel) |
| 284 | return -ENOMEM; |
| 285 | |
| 286 | if (tb_tunnel_activate(tunnel)) { |
| 287 | tb_port_info(up, |
| 288 | "PCIe tunnel activation failed, aborting\n"); |
| 289 | tb_tunnel_free(tunnel); |
| 290 | return -EIO; |
| 291 | } |
| 292 | |
| 293 | list_add_tail(&tunnel->list, &tcm->tunnel_list); |
| 294 | return 0; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 295 | } |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 296 | |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 297 | /* hotplug handling */ |
| 298 | |
| 299 | struct tb_hotplug_event { |
| 300 | struct work_struct work; |
| 301 | struct tb *tb; |
| 302 | u64 route; |
| 303 | u8 port; |
| 304 | bool unplug; |
| 305 | }; |
| 306 | |
| 307 | /** |
| 308 | * tb_handle_hotplug() - handle hotplug event |
| 309 | * |
| 310 | * Executes on tb->wq. |
| 311 | */ |
| 312 | static void tb_handle_hotplug(struct work_struct *work) |
| 313 | { |
| 314 | struct tb_hotplug_event *ev = container_of(work, typeof(*ev), work); |
| 315 | struct tb *tb = ev->tb; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 316 | struct tb_cm *tcm = tb_priv(tb); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 317 | struct tb_switch *sw; |
| 318 | struct tb_port *port; |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 319 | mutex_lock(&tb->lock); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 320 | if (!tcm->hotplug_active) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 321 | goto out; /* during init, suspend or shutdown */ |
| 322 | |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 323 | sw = tb_switch_find_by_route(tb, ev->route); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 324 | if (!sw) { |
| 325 | tb_warn(tb, |
| 326 | "hotplug event from non existent switch %llx:%x (unplug: %d)\n", |
| 327 | ev->route, ev->port, ev->unplug); |
| 328 | goto out; |
| 329 | } |
| 330 | if (ev->port > sw->config.max_port_number) { |
| 331 | tb_warn(tb, |
| 332 | "hotplug event from non existent port %llx:%x (unplug: %d)\n", |
| 333 | ev->route, ev->port, ev->unplug); |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 334 | goto put_sw; |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 335 | } |
| 336 | port = &sw->ports[ev->port]; |
| 337 | if (tb_is_upstream_port(port)) { |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 338 | tb_dbg(tb, "hotplug event for upstream port %llx:%x (unplug: %d)\n", |
| 339 | ev->route, ev->port, ev->unplug); |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 340 | goto put_sw; |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 341 | } |
| 342 | if (ev->unplug) { |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 343 | if (tb_port_has_remote(port)) { |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 344 | tb_port_info(port, "unplugged\n"); |
Lukas Wunner | aae20bb | 2016-03-20 13:57:20 +0100 | [diff] [blame] | 345 | tb_sw_set_unplugged(port->remote->sw); |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 346 | tb_free_invalid_tunnels(tb); |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 347 | tb_switch_remove(port->remote->sw); |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 348 | port->remote = NULL; |
Mika Westerberg | dfe40ca | 2019-03-07 15:26:45 +0200 | [diff] [blame] | 349 | if (port->dual_link_port) |
| 350 | port->dual_link_port->remote = NULL; |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 351 | } else { |
| 352 | tb_port_info(port, |
| 353 | "got unplug event for disconnected port, ignoring\n"); |
| 354 | } |
| 355 | } else if (port->remote) { |
| 356 | tb_port_info(port, |
| 357 | "got plug event for connected port, ignoring\n"); |
| 358 | } else { |
Mika Westerberg | 344e064 | 2017-10-11 17:19:54 +0300 | [diff] [blame^] | 359 | if (tb_port_is_null(port)) { |
| 360 | tb_port_info(port, "hotplug: scanning\n"); |
| 361 | tb_scan_port(port); |
| 362 | if (!port->remote) |
| 363 | tb_port_info(port, "hotplug: no switch found\n"); |
| 364 | } |
Andreas Noever | 053596d | 2014-06-03 22:04:06 +0200 | [diff] [blame] | 365 | } |
Mika Westerberg | 8f965ef | 2019-03-15 14:56:21 +0200 | [diff] [blame] | 366 | |
| 367 | put_sw: |
| 368 | tb_switch_put(sw); |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 369 | out: |
| 370 | mutex_unlock(&tb->lock); |
| 371 | kfree(ev); |
| 372 | } |
| 373 | |
| 374 | /** |
| 375 | * tb_schedule_hotplug_handler() - callback function for the control channel |
| 376 | * |
| 377 | * Delegates to tb_handle_hotplug. |
| 378 | */ |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 379 | static void tb_handle_event(struct tb *tb, enum tb_cfg_pkg_type type, |
| 380 | const void *buf, size_t size) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 381 | { |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 382 | const struct cfg_event_pkg *pkg = buf; |
| 383 | struct tb_hotplug_event *ev; |
| 384 | u64 route; |
| 385 | |
| 386 | if (type != TB_CFG_PKG_EVENT) { |
| 387 | tb_warn(tb, "unexpected event %#x, ignoring\n", type); |
| 388 | return; |
| 389 | } |
| 390 | |
| 391 | route = tb_cfg_get_route(&pkg->header); |
| 392 | |
| 393 | if (tb_cfg_error(tb->ctl, route, pkg->port, |
| 394 | TB_CFG_ERROR_ACK_PLUG_EVENT)) { |
| 395 | tb_warn(tb, "could not ack plug event on %llx:%x\n", route, |
| 396 | pkg->port); |
| 397 | } |
| 398 | |
| 399 | ev = kmalloc(sizeof(*ev), GFP_KERNEL); |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 400 | if (!ev) |
| 401 | return; |
| 402 | INIT_WORK(&ev->work, tb_handle_hotplug); |
| 403 | ev->tb = tb; |
| 404 | ev->route = route; |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 405 | ev->port = pkg->port; |
| 406 | ev->unplug = pkg->unplug; |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 407 | queue_work(tb->wq, &ev->work); |
| 408 | } |
| 409 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 410 | static void tb_stop(struct tb *tb) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 411 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 412 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 413 | struct tb_tunnel *tunnel; |
| 414 | struct tb_tunnel *n; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 415 | |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 416 | /* tunnels are only present after everything has been initialized */ |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 417 | list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) { |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 418 | tb_tunnel_deactivate(tunnel); |
| 419 | tb_tunnel_free(tunnel); |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 420 | } |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 421 | tb_switch_remove(tb->root_switch); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 422 | tcm->hotplug_active = false; /* signal tb_handle_hotplug to quit */ |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 423 | } |
| 424 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 425 | static int tb_scan_finalize_switch(struct device *dev, void *data) |
| 426 | { |
| 427 | if (tb_is_switch(dev)) { |
| 428 | struct tb_switch *sw = tb_to_switch(dev); |
| 429 | |
| 430 | /* |
| 431 | * If we found that the switch was already setup by the |
| 432 | * boot firmware, mark it as authorized now before we |
| 433 | * send uevent to userspace. |
| 434 | */ |
| 435 | if (sw->boot) |
| 436 | sw->authorized = 1; |
| 437 | |
| 438 | dev_set_uevent_suppress(dev, false); |
| 439 | kobject_uevent(&dev->kobj, KOBJ_ADD); |
| 440 | device_for_each_child(dev, NULL, tb_scan_finalize_switch); |
| 441 | } |
| 442 | |
| 443 | return 0; |
| 444 | } |
| 445 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 446 | static int tb_start(struct tb *tb) |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 447 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 448 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 449 | int ret; |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 450 | |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 451 | tb->root_switch = tb_switch_alloc(tb, &tb->dev, 0); |
Andreas Noever | a25c8b2 | 2014-06-03 22:04:02 +0200 | [diff] [blame] | 452 | if (!tb->root_switch) |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 453 | return -ENOMEM; |
Andreas Noever | a25c8b2 | 2014-06-03 22:04:02 +0200 | [diff] [blame] | 454 | |
Mika Westerberg | e6b245c | 2017-06-06 15:25:17 +0300 | [diff] [blame] | 455 | /* |
| 456 | * ICM firmware upgrade needs running firmware and in native |
| 457 | * mode that is not available so disable firmware upgrade of the |
| 458 | * root switch. |
| 459 | */ |
| 460 | tb->root_switch->no_nvm_upgrade = true; |
| 461 | |
Mika Westerberg | bfe778a | 2017-06-06 15:25:01 +0300 | [diff] [blame] | 462 | ret = tb_switch_configure(tb->root_switch); |
| 463 | if (ret) { |
| 464 | tb_switch_put(tb->root_switch); |
| 465 | return ret; |
| 466 | } |
| 467 | |
| 468 | /* Announce the switch to the world */ |
| 469 | ret = tb_switch_add(tb->root_switch); |
| 470 | if (ret) { |
| 471 | tb_switch_put(tb->root_switch); |
| 472 | return ret; |
| 473 | } |
| 474 | |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 475 | /* Full scan to discover devices added before the driver was loaded. */ |
| 476 | tb_scan_switch(tb->root_switch); |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 477 | /* Find out tunnels created by the boot firmware */ |
| 478 | tb_discover_tunnels(tb->root_switch); |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 479 | /* Make the discovered switches available to the userspace */ |
| 480 | device_for_each_child(&tb->root_switch->dev, NULL, |
| 481 | tb_scan_finalize_switch); |
Andreas Noever | 9da672a | 2014-06-03 22:04:05 +0200 | [diff] [blame] | 482 | |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 483 | /* Allow tb_handle_hotplug to progress events */ |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 484 | tcm->hotplug_active = true; |
| 485 | return 0; |
Andreas Noever | d6cc51c | 2014-06-03 22:04:00 +0200 | [diff] [blame] | 486 | } |
| 487 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 488 | static int tb_suspend_noirq(struct tb *tb) |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 489 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 490 | struct tb_cm *tcm = tb_priv(tb); |
| 491 | |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 492 | tb_dbg(tb, "suspending...\n"); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 493 | tb_switch_suspend(tb->root_switch); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 494 | tcm->hotplug_active = false; /* signal tb_handle_hotplug to quit */ |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 495 | tb_dbg(tb, "suspend finished\n"); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 496 | |
| 497 | return 0; |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 498 | } |
| 499 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 500 | static int tb_resume_noirq(struct tb *tb) |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 501 | { |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 502 | struct tb_cm *tcm = tb_priv(tb); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 503 | struct tb_tunnel *tunnel, *n; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 504 | |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 505 | tb_dbg(tb, "resuming...\n"); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 506 | |
| 507 | /* remove any pci devices the firmware might have setup */ |
| 508 | tb_switch_reset(tb, 0); |
| 509 | |
| 510 | tb_switch_resume(tb->root_switch); |
| 511 | tb_free_invalid_tunnels(tb); |
| 512 | tb_free_unplugged_children(tb->root_switch); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 513 | list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 514 | tb_tunnel_restart(tunnel); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 515 | if (!list_empty(&tcm->tunnel_list)) { |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 516 | /* |
| 517 | * the pcie links need some time to get going. |
| 518 | * 100ms works for me... |
| 519 | */ |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 520 | tb_dbg(tb, "tunnels restarted, sleeping for 100ms\n"); |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 521 | msleep(100); |
| 522 | } |
| 523 | /* Allow tb_handle_hotplug to progress events */ |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 524 | tcm->hotplug_active = true; |
Mika Westerberg | daa5140 | 2018-10-01 12:31:19 +0300 | [diff] [blame] | 525 | tb_dbg(tb, "resume finished\n"); |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 526 | |
| 527 | return 0; |
| 528 | } |
| 529 | |
| 530 | static const struct tb_cm_ops tb_cm_ops = { |
| 531 | .start = tb_start, |
| 532 | .stop = tb_stop, |
| 533 | .suspend_noirq = tb_suspend_noirq, |
| 534 | .resume_noirq = tb_resume_noirq, |
Mika Westerberg | 81a54b5 | 2017-06-06 15:25:09 +0300 | [diff] [blame] | 535 | .handle_event = tb_handle_event, |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 536 | .approve_switch = tb_tunnel_pci, |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 537 | }; |
| 538 | |
| 539 | struct tb *tb_probe(struct tb_nhi *nhi) |
| 540 | { |
| 541 | struct tb_cm *tcm; |
| 542 | struct tb *tb; |
| 543 | |
Lukas Wunner | 630b3af | 2017-08-01 14:10:41 +0200 | [diff] [blame] | 544 | if (!x86_apple_machine) |
Mika Westerberg | f67cf49 | 2017-06-06 15:25:16 +0300 | [diff] [blame] | 545 | return NULL; |
| 546 | |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 547 | tb = tb_domain_alloc(nhi, sizeof(*tcm)); |
| 548 | if (!tb) |
| 549 | return NULL; |
| 550 | |
Mika Westerberg | 99cabbb | 2018-12-30 21:34:08 +0200 | [diff] [blame] | 551 | tb->security_level = TB_SECURITY_USER; |
Mika Westerberg | 9d3cce0 | 2017-06-06 15:25:00 +0300 | [diff] [blame] | 552 | tb->cm_ops = &tb_cm_ops; |
| 553 | |
| 554 | tcm = tb_priv(tb); |
| 555 | INIT_LIST_HEAD(&tcm->tunnel_list); |
| 556 | |
| 557 | return tb; |
Andreas Noever | 23dd5bb | 2014-06-03 22:04:12 +0200 | [diff] [blame] | 558 | } |