blob: d3c54020a5be0aa5efe4586f85eec46571bf2294 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Andreas Noevera25c8b22014-06-03 22:04:02 +02002/*
Mika Westerberg15c67842018-10-01 12:31:22 +03003 * Thunderbolt driver - switch/port utility functions
Andreas Noevera25c8b22014-06-03 22:04:02 +02004 *
5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
Mika Westerberg15c67842018-10-01 12:31:22 +03006 * Copyright (C) 2018, Intel Corporation
Andreas Noevera25c8b22014-06-03 22:04:02 +02007 */
8
9#include <linux/delay.h>
Mika Westerberge6b245c2017-06-06 15:25:17 +030010#include <linux/idr.h>
11#include <linux/nvmem-provider.h>
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +030012#include <linux/pm_runtime.h>
Mika Westerberg09f11b62019-03-19 16:48:41 +020013#include <linux/sched/signal.h>
Mika Westerberge6b245c2017-06-06 15:25:17 +030014#include <linux/sizes.h>
Sachin Kamat10fefe52014-06-20 14:32:30 +053015#include <linux/slab.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020016
17#include "tb.h"
18
Mika Westerberge6b245c2017-06-06 15:25:17 +030019/* Switch NVM support */
20
Mika Westerberge6b245c2017-06-06 15:25:17 +030021#define NVM_CSS 0x10
Mika Westerberge6b245c2017-06-06 15:25:17 +030022
23struct nvm_auth_status {
24 struct list_head list;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +020025 uuid_t uuid;
Mika Westerberge6b245c2017-06-06 15:25:17 +030026 u32 status;
27};
28
Mario Limonciello4b794f82020-06-23 11:14:28 -050029enum nvm_write_ops {
30 WRITE_AND_AUTHENTICATE = 1,
31 WRITE_ONLY = 2,
32};
33
Mika Westerberge6b245c2017-06-06 15:25:17 +030034/*
35 * Hold NVM authentication failure status per switch This information
36 * needs to stay around even when the switch gets power cycled so we
37 * keep it separately.
38 */
39static LIST_HEAD(nvm_auth_status_cache);
40static DEFINE_MUTEX(nvm_auth_status_lock);
41
42static struct nvm_auth_status *__nvm_get_auth_status(const struct tb_switch *sw)
43{
44 struct nvm_auth_status *st;
45
46 list_for_each_entry(st, &nvm_auth_status_cache, list) {
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +020047 if (uuid_equal(&st->uuid, sw->uuid))
Mika Westerberge6b245c2017-06-06 15:25:17 +030048 return st;
49 }
50
51 return NULL;
52}
53
54static void nvm_get_auth_status(const struct tb_switch *sw, u32 *status)
55{
56 struct nvm_auth_status *st;
57
58 mutex_lock(&nvm_auth_status_lock);
59 st = __nvm_get_auth_status(sw);
60 mutex_unlock(&nvm_auth_status_lock);
61
62 *status = st ? st->status : 0;
63}
64
65static void nvm_set_auth_status(const struct tb_switch *sw, u32 status)
66{
67 struct nvm_auth_status *st;
68
69 if (WARN_ON(!sw->uuid))
70 return;
71
72 mutex_lock(&nvm_auth_status_lock);
73 st = __nvm_get_auth_status(sw);
74
75 if (!st) {
76 st = kzalloc(sizeof(*st), GFP_KERNEL);
77 if (!st)
78 goto unlock;
79
80 memcpy(&st->uuid, sw->uuid, sizeof(st->uuid));
81 INIT_LIST_HEAD(&st->list);
82 list_add_tail(&st->list, &nvm_auth_status_cache);
83 }
84
85 st->status = status;
86unlock:
87 mutex_unlock(&nvm_auth_status_lock);
88}
89
90static void nvm_clear_auth_status(const struct tb_switch *sw)
91{
92 struct nvm_auth_status *st;
93
94 mutex_lock(&nvm_auth_status_lock);
95 st = __nvm_get_auth_status(sw);
96 if (st) {
97 list_del(&st->list);
98 kfree(st);
99 }
100 mutex_unlock(&nvm_auth_status_lock);
101}
102
103static int nvm_validate_and_write(struct tb_switch *sw)
104{
105 unsigned int image_size, hdr_size;
106 const u8 *buf = sw->nvm->buf;
107 u16 ds_size;
108 int ret;
109
110 if (!buf)
111 return -EINVAL;
112
113 image_size = sw->nvm->buf_data_size;
114 if (image_size < NVM_MIN_SIZE || image_size > NVM_MAX_SIZE)
115 return -EINVAL;
116
117 /*
118 * FARB pointer must point inside the image and must at least
119 * contain parts of the digital section we will be reading here.
120 */
121 hdr_size = (*(u32 *)buf) & 0xffffff;
122 if (hdr_size + NVM_DEVID + 2 >= image_size)
123 return -EINVAL;
124
125 /* Digital section start should be aligned to 4k page */
126 if (!IS_ALIGNED(hdr_size, SZ_4K))
127 return -EINVAL;
128
129 /*
130 * Read digital section size and check that it also fits inside
131 * the image.
132 */
133 ds_size = *(u16 *)(buf + hdr_size);
134 if (ds_size >= image_size)
135 return -EINVAL;
136
137 if (!sw->safe_mode) {
138 u16 device_id;
139
140 /*
141 * Make sure the device ID in the image matches the one
142 * we read from the switch config space.
143 */
144 device_id = *(u16 *)(buf + hdr_size + NVM_DEVID);
145 if (device_id != sw->config.device_id)
146 return -EINVAL;
147
148 if (sw->generation < 3) {
149 /* Write CSS headers first */
150 ret = dma_port_flash_write(sw->dma_port,
151 DMA_PORT_CSS_ADDRESS, buf + NVM_CSS,
152 DMA_PORT_CSS_MAX_SIZE);
153 if (ret)
154 return ret;
155 }
156
157 /* Skip headers in the image */
158 buf += hdr_size;
159 image_size -= hdr_size;
160 }
161
Mika Westerbergb0407982019-12-17 15:33:40 +0300162 if (tb_switch_is_usb4(sw))
Mario Limonciello4b794f82020-06-23 11:14:28 -0500163 ret = usb4_switch_nvm_write(sw, 0, buf, image_size);
164 else
165 ret = dma_port_flash_write(sw->dma_port, 0, buf, image_size);
166 if (!ret)
167 sw->nvm->flushed = true;
168 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300169}
170
Mika Westerbergb0407982019-12-17 15:33:40 +0300171static int nvm_authenticate_host_dma_port(struct tb_switch *sw)
Mika Westerberge6b245c2017-06-06 15:25:17 +0300172{
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300173 int ret = 0;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300174
175 /*
176 * Root switch NVM upgrade requires that we disconnect the
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300177 * existing paths first (in case it is not in safe mode
Mika Westerberge6b245c2017-06-06 15:25:17 +0300178 * already).
179 */
180 if (!sw->safe_mode) {
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300181 u32 status;
182
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300183 ret = tb_domain_disconnect_all_paths(sw->tb);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300184 if (ret)
185 return ret;
186 /*
187 * The host controller goes away pretty soon after this if
188 * everything goes well so getting timeout is expected.
189 */
190 ret = dma_port_flash_update_auth(sw->dma_port);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300191 if (!ret || ret == -ETIMEDOUT)
192 return 0;
193
194 /*
195 * Any error from update auth operation requires power
196 * cycling of the host router.
197 */
198 tb_sw_warn(sw, "failed to authenticate NVM, power cycling\n");
199 if (dma_port_flash_update_auth_status(sw->dma_port, &status) > 0)
200 nvm_set_auth_status(sw, status);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300201 }
202
203 /*
204 * From safe mode we can get out by just power cycling the
205 * switch.
206 */
207 dma_port_power_cycle(sw->dma_port);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300208 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300209}
210
Mika Westerbergb0407982019-12-17 15:33:40 +0300211static int nvm_authenticate_device_dma_port(struct tb_switch *sw)
Mika Westerberge6b245c2017-06-06 15:25:17 +0300212{
213 int ret, retries = 10;
214
215 ret = dma_port_flash_update_auth(sw->dma_port);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300216 switch (ret) {
217 case 0:
218 case -ETIMEDOUT:
219 case -EACCES:
220 case -EINVAL:
221 /* Power cycle is required */
222 break;
223 default:
Mika Westerberge6b245c2017-06-06 15:25:17 +0300224 return ret;
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300225 }
Mika Westerberge6b245c2017-06-06 15:25:17 +0300226
227 /*
228 * Poll here for the authentication status. It takes some time
229 * for the device to respond (we get timeout for a while). Once
230 * we get response the device needs to be power cycled in order
231 * to the new NVM to be taken into use.
232 */
233 do {
234 u32 status;
235
236 ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
237 if (ret < 0 && ret != -ETIMEDOUT)
238 return ret;
239 if (ret > 0) {
240 if (status) {
241 tb_sw_warn(sw, "failed to authenticate NVM\n");
242 nvm_set_auth_status(sw, status);
243 }
244
245 tb_sw_info(sw, "power cycling the switch now\n");
246 dma_port_power_cycle(sw->dma_port);
247 return 0;
248 }
249
250 msleep(500);
251 } while (--retries);
252
253 return -ETIMEDOUT;
254}
255
Mika Westerbergb0407982019-12-17 15:33:40 +0300256static void nvm_authenticate_start_dma_port(struct tb_switch *sw)
257{
258 struct pci_dev *root_port;
259
260 /*
261 * During host router NVM upgrade we should not allow root port to
262 * go into D3cold because some root ports cannot trigger PME
263 * itself. To be on the safe side keep the root port in D0 during
264 * the whole upgrade process.
265 */
Yicong Yang6ae72bf2020-05-09 18:19:28 +0800266 root_port = pcie_find_root_port(sw->tb->nhi->pdev);
Mika Westerbergb0407982019-12-17 15:33:40 +0300267 if (root_port)
268 pm_runtime_get_noresume(&root_port->dev);
269}
270
271static void nvm_authenticate_complete_dma_port(struct tb_switch *sw)
272{
273 struct pci_dev *root_port;
274
Yicong Yang6ae72bf2020-05-09 18:19:28 +0800275 root_port = pcie_find_root_port(sw->tb->nhi->pdev);
Mika Westerbergb0407982019-12-17 15:33:40 +0300276 if (root_port)
277 pm_runtime_put(&root_port->dev);
278}
279
280static inline bool nvm_readable(struct tb_switch *sw)
281{
282 if (tb_switch_is_usb4(sw)) {
283 /*
284 * USB4 devices must support NVM operations but it is
285 * optional for hosts. Therefore we query the NVM sector
286 * size here and if it is supported assume NVM
287 * operations are implemented.
288 */
289 return usb4_switch_nvm_sector_size(sw) > 0;
290 }
291
292 /* Thunderbolt 2 and 3 devices support NVM through DMA port */
293 return !!sw->dma_port;
294}
295
296static inline bool nvm_upgradeable(struct tb_switch *sw)
297{
298 if (sw->no_nvm_upgrade)
299 return false;
300 return nvm_readable(sw);
301}
302
303static inline int nvm_read(struct tb_switch *sw, unsigned int address,
304 void *buf, size_t size)
305{
306 if (tb_switch_is_usb4(sw))
307 return usb4_switch_nvm_read(sw, address, buf, size);
308 return dma_port_flash_read(sw->dma_port, address, buf, size);
309}
310
311static int nvm_authenticate(struct tb_switch *sw)
312{
313 int ret;
314
315 if (tb_switch_is_usb4(sw))
316 return usb4_switch_nvm_authenticate(sw);
317
318 if (!tb_route(sw)) {
319 nvm_authenticate_start_dma_port(sw);
320 ret = nvm_authenticate_host_dma_port(sw);
321 } else {
322 ret = nvm_authenticate_device_dma_port(sw);
323 }
324
325 return ret;
326}
327
Mika Westerberge6b245c2017-06-06 15:25:17 +0300328static int tb_switch_nvm_read(void *priv, unsigned int offset, void *val,
329 size_t bytes)
330{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200331 struct tb_nvm *nvm = priv;
332 struct tb_switch *sw = tb_to_switch(nvm->dev);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300333 int ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300334
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300335 pm_runtime_get_sync(&sw->dev);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300336
337 if (!mutex_trylock(&sw->tb->lock)) {
338 ret = restart_syscall();
339 goto out;
340 }
341
Mika Westerbergb0407982019-12-17 15:33:40 +0300342 ret = nvm_read(sw, offset, val, bytes);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300343 mutex_unlock(&sw->tb->lock);
344
345out:
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300346 pm_runtime_mark_last_busy(&sw->dev);
347 pm_runtime_put_autosuspend(&sw->dev);
348
349 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300350}
351
352static int tb_switch_nvm_write(void *priv, unsigned int offset, void *val,
353 size_t bytes)
354{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200355 struct tb_nvm *nvm = priv;
356 struct tb_switch *sw = tb_to_switch(nvm->dev);
357 int ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300358
Mika Westerberg09f11b62019-03-19 16:48:41 +0200359 if (!mutex_trylock(&sw->tb->lock))
360 return restart_syscall();
Mika Westerberge6b245c2017-06-06 15:25:17 +0300361
362 /*
363 * Since writing the NVM image might require some special steps,
364 * for example when CSS headers are written, we cache the image
365 * locally here and handle the special cases when the user asks
366 * us to authenticate the image.
367 */
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200368 ret = tb_nvm_write_buf(nvm, offset, val, bytes);
Mika Westerberg09f11b62019-03-19 16:48:41 +0200369 mutex_unlock(&sw->tb->lock);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300370
371 return ret;
372}
373
Mika Westerberge6b245c2017-06-06 15:25:17 +0300374static int tb_switch_nvm_add(struct tb_switch *sw)
375{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200376 struct tb_nvm *nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300377 u32 val;
378 int ret;
379
Mika Westerbergb0407982019-12-17 15:33:40 +0300380 if (!nvm_readable(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +0300381 return 0;
382
Mika Westerbergb0407982019-12-17 15:33:40 +0300383 /*
384 * The NVM format of non-Intel hardware is not known so
385 * currently restrict NVM upgrade for Intel hardware. We may
386 * relax this in the future when we learn other NVM formats.
387 */
Mika Westerberg83d17032020-05-08 11:49:47 +0300388 if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL &&
389 sw->config.vendor_id != 0x8087) {
Mika Westerbergb0407982019-12-17 15:33:40 +0300390 dev_info(&sw->dev,
391 "NVM format of vendor %#x is not known, disabling NVM upgrade\n",
392 sw->config.vendor_id);
393 return 0;
394 }
395
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200396 nvm = tb_nvm_alloc(&sw->dev);
397 if (IS_ERR(nvm))
398 return PTR_ERR(nvm);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300399
400 /*
401 * If the switch is in safe-mode the only accessible portion of
402 * the NVM is the non-active one where userspace is expected to
403 * write new functional NVM.
404 */
405 if (!sw->safe_mode) {
406 u32 nvm_size, hdr_size;
407
Mika Westerbergb0407982019-12-17 15:33:40 +0300408 ret = nvm_read(sw, NVM_FLASH_SIZE, &val, sizeof(val));
Mika Westerberge6b245c2017-06-06 15:25:17 +0300409 if (ret)
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200410 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300411
412 hdr_size = sw->generation < 3 ? SZ_8K : SZ_16K;
413 nvm_size = (SZ_1M << (val & 7)) / 8;
414 nvm_size = (nvm_size - hdr_size) / 2;
415
Mika Westerbergb0407982019-12-17 15:33:40 +0300416 ret = nvm_read(sw, NVM_VERSION, &val, sizeof(val));
Mika Westerberge6b245c2017-06-06 15:25:17 +0300417 if (ret)
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200418 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300419
420 nvm->major = val >> 16;
421 nvm->minor = val >> 8;
422
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200423 ret = tb_nvm_add_active(nvm, nvm_size, tb_switch_nvm_read);
424 if (ret)
425 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300426 }
427
Mika Westerberg3f415e52019-02-05 12:51:40 +0300428 if (!sw->no_nvm_upgrade) {
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200429 ret = tb_nvm_add_non_active(nvm, NVM_MAX_SIZE,
430 tb_switch_nvm_write);
431 if (ret)
432 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300433 }
Mika Westerberge6b245c2017-06-06 15:25:17 +0300434
Mika Westerberge6b245c2017-06-06 15:25:17 +0300435 sw->nvm = nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300436 return 0;
437
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200438err_nvm:
439 tb_nvm_free(nvm);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300440 return ret;
441}
442
443static void tb_switch_nvm_remove(struct tb_switch *sw)
444{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200445 struct tb_nvm *nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300446
Mika Westerberge6b245c2017-06-06 15:25:17 +0300447 nvm = sw->nvm;
448 sw->nvm = NULL;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300449
450 if (!nvm)
451 return;
452
453 /* Remove authentication status in case the switch is unplugged */
454 if (!nvm->authenticating)
455 nvm_clear_auth_status(sw);
456
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200457 tb_nvm_free(nvm);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300458}
459
Andreas Noevera25c8b22014-06-03 22:04:02 +0200460/* port utility functions */
461
462static const char *tb_port_type(struct tb_regs_port_header *port)
463{
464 switch (port->type >> 16) {
465 case 0:
466 switch ((u8) port->type) {
467 case 0:
468 return "Inactive";
469 case 1:
470 return "Port";
471 case 2:
472 return "NHI";
473 default:
474 return "unknown";
475 }
476 case 0x2:
477 return "Ethernet";
478 case 0x8:
479 return "SATA";
480 case 0xe:
481 return "DP/HDMI";
482 case 0x10:
483 return "PCIe";
484 case 0x20:
485 return "USB";
486 default:
487 return "unknown";
488 }
489}
490
491static void tb_dump_port(struct tb *tb, struct tb_regs_port_header *port)
492{
Mika Westerbergdaa51402018-10-01 12:31:19 +0300493 tb_dbg(tb,
494 " Port %d: %x:%x (Revision: %d, TB Version: %d, Type: %s (%#x))\n",
495 port->port_number, port->vendor_id, port->device_id,
496 port->revision, port->thunderbolt_version, tb_port_type(port),
497 port->type);
498 tb_dbg(tb, " Max hop id (in/out): %d/%d\n",
499 port->max_in_hop_id, port->max_out_hop_id);
500 tb_dbg(tb, " Max counters: %d\n", port->max_counters);
501 tb_dbg(tb, " NFC Credits: %#x\n", port->nfc_credits);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200502}
503
504/**
Andreas Noever9da672a2014-06-03 22:04:05 +0200505 * tb_port_state() - get connectedness state of a port
506 *
507 * The port must have a TB_CAP_PHY (i.e. it should be a real port).
508 *
509 * Return: Returns an enum tb_port_state on success or an error code on failure.
510 */
511static int tb_port_state(struct tb_port *port)
512{
513 struct tb_cap_phy phy;
514 int res;
515 if (port->cap_phy == 0) {
516 tb_port_WARN(port, "does not have a PHY\n");
517 return -EINVAL;
518 }
519 res = tb_port_read(port, &phy, TB_CFG_PORT, port->cap_phy, 2);
520 if (res)
521 return res;
522 return phy.state;
523}
524
525/**
526 * tb_wait_for_port() - wait for a port to become ready
527 *
528 * Wait up to 1 second for a port to reach state TB_PORT_UP. If
529 * wait_if_unplugged is set then we also wait if the port is in state
530 * TB_PORT_UNPLUGGED (it takes a while for the device to be registered after
531 * switch resume). Otherwise we only wait if a device is registered but the link
532 * has not yet been established.
533 *
534 * Return: Returns an error code on failure. Returns 0 if the port is not
535 * connected or failed to reach state TB_PORT_UP within one second. Returns 1
536 * if the port is connected and in state TB_PORT_UP.
537 */
538int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged)
539{
540 int retries = 10;
541 int state;
542 if (!port->cap_phy) {
543 tb_port_WARN(port, "does not have PHY\n");
544 return -EINVAL;
545 }
546 if (tb_is_upstream_port(port)) {
547 tb_port_WARN(port, "is the upstream port\n");
548 return -EINVAL;
549 }
550
551 while (retries--) {
552 state = tb_port_state(port);
553 if (state < 0)
554 return state;
555 if (state == TB_PORT_DISABLED) {
Mika Westerberg62efe692018-09-17 16:32:13 +0300556 tb_port_dbg(port, "is disabled (state: 0)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200557 return 0;
558 }
559 if (state == TB_PORT_UNPLUGGED) {
560 if (wait_if_unplugged) {
561 /* used during resume */
Mika Westerberg62efe692018-09-17 16:32:13 +0300562 tb_port_dbg(port,
563 "is unplugged (state: 7), retrying...\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200564 msleep(100);
565 continue;
566 }
Mika Westerberg62efe692018-09-17 16:32:13 +0300567 tb_port_dbg(port, "is unplugged (state: 7)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200568 return 0;
569 }
570 if (state == TB_PORT_UP) {
Mika Westerberg62efe692018-09-17 16:32:13 +0300571 tb_port_dbg(port, "is connected, link is up (state: 2)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200572 return 1;
573 }
574
575 /*
576 * After plug-in the state is TB_PORT_CONNECTING. Give it some
577 * time.
578 */
Mika Westerberg62efe692018-09-17 16:32:13 +0300579 tb_port_dbg(port,
580 "is connected, link is not up (state: %d), retrying...\n",
581 state);
Andreas Noever9da672a2014-06-03 22:04:05 +0200582 msleep(100);
583 }
584 tb_port_warn(port,
585 "failed to reach state TB_PORT_UP. Ignoring port...\n");
586 return 0;
587}
588
589/**
Andreas Noever520b6702014-06-03 22:04:07 +0200590 * tb_port_add_nfc_credits() - add/remove non flow controlled credits to port
591 *
592 * Change the number of NFC credits allocated to @port by @credits. To remove
593 * NFC credits pass a negative amount of credits.
594 *
595 * Return: Returns 0 on success or an error code on failure.
596 */
597int tb_port_add_nfc_credits(struct tb_port *port, int credits)
598{
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300599 u32 nfc_credits;
600
601 if (credits == 0 || port->sw->is_unplugged)
Andreas Noever520b6702014-06-03 22:04:07 +0200602 return 0;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300603
Mika Westerbergedfbd682020-08-18 17:10:00 +0300604 /*
605 * USB4 restricts programming NFC buffers to lane adapters only
606 * so skip other ports.
607 */
608 if (tb_switch_is_usb4(port->sw) && !tb_port_is_null(port))
609 return 0;
610
Mika Westerberg8f57d472019-09-06 11:59:00 +0300611 nfc_credits = port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300612 nfc_credits += credits;
613
Mika Westerberg8f57d472019-09-06 11:59:00 +0300614 tb_port_dbg(port, "adding %d NFC credits to %lu", credits,
615 port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK);
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300616
Mika Westerberg8f57d472019-09-06 11:59:00 +0300617 port->config.nfc_credits &= ~ADP_CS_4_NFC_BUFFERS_MASK;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300618 port->config.nfc_credits |= nfc_credits;
619
Andreas Noever520b6702014-06-03 22:04:07 +0200620 return tb_port_write(port, &port->config.nfc_credits,
Mika Westerberg8f57d472019-09-06 11:59:00 +0300621 TB_CFG_PORT, ADP_CS_4, 1);
Andreas Noever520b6702014-06-03 22:04:07 +0200622}
623
624/**
Mika Westerberg44242d62018-09-28 16:35:32 +0300625 * tb_port_set_initial_credits() - Set initial port link credits allocated
626 * @port: Port to set the initial credits
627 * @credits: Number of credits to to allocate
628 *
629 * Set initial credits value to be used for ingress shared buffering.
630 */
631int tb_port_set_initial_credits(struct tb_port *port, u32 credits)
632{
633 u32 data;
634 int ret;
635
Mika Westerberg8f57d472019-09-06 11:59:00 +0300636 ret = tb_port_read(port, &data, TB_CFG_PORT, ADP_CS_5, 1);
Mika Westerberg44242d62018-09-28 16:35:32 +0300637 if (ret)
638 return ret;
639
Mika Westerberg8f57d472019-09-06 11:59:00 +0300640 data &= ~ADP_CS_5_LCA_MASK;
641 data |= (credits << ADP_CS_5_LCA_SHIFT) & ADP_CS_5_LCA_MASK;
Mika Westerberg44242d62018-09-28 16:35:32 +0300642
Mika Westerberg8f57d472019-09-06 11:59:00 +0300643 return tb_port_write(port, &data, TB_CFG_PORT, ADP_CS_5, 1);
Mika Westerberg44242d62018-09-28 16:35:32 +0300644}
645
646/**
Andreas Noever520b6702014-06-03 22:04:07 +0200647 * tb_port_clear_counter() - clear a counter in TB_CFG_COUNTER
648 *
649 * Return: Returns 0 on success or an error code on failure.
650 */
651int tb_port_clear_counter(struct tb_port *port, int counter)
652{
653 u32 zero[3] = { 0, 0, 0 };
Mika Westerberg62efe692018-09-17 16:32:13 +0300654 tb_port_dbg(port, "clearing counter %d\n", counter);
Andreas Noever520b6702014-06-03 22:04:07 +0200655 return tb_port_write(port, zero, TB_CFG_COUNTERS, 3 * counter, 3);
656}
657
658/**
Mika Westerbergb0407982019-12-17 15:33:40 +0300659 * tb_port_unlock() - Unlock downstream port
660 * @port: Port to unlock
661 *
662 * Needed for USB4 but can be called for any CIO/USB4 ports. Makes the
663 * downstream router accessible for CM.
664 */
665int tb_port_unlock(struct tb_port *port)
666{
667 if (tb_switch_is_icm(port->sw))
668 return 0;
669 if (!tb_port_is_null(port))
670 return -EINVAL;
671 if (tb_switch_is_usb4(port->sw))
672 return usb4_port_unlock(port);
673 return 0;
674}
675
Mika Westerberg341d4512020-02-21 12:11:54 +0200676static int __tb_port_enable(struct tb_port *port, bool enable)
677{
678 int ret;
679 u32 phy;
680
681 if (!tb_port_is_null(port))
682 return -EINVAL;
683
684 ret = tb_port_read(port, &phy, TB_CFG_PORT,
685 port->cap_phy + LANE_ADP_CS_1, 1);
686 if (ret)
687 return ret;
688
689 if (enable)
690 phy &= ~LANE_ADP_CS_1_LD;
691 else
692 phy |= LANE_ADP_CS_1_LD;
693
694 return tb_port_write(port, &phy, TB_CFG_PORT,
695 port->cap_phy + LANE_ADP_CS_1, 1);
696}
697
698/**
699 * tb_port_enable() - Enable lane adapter
700 * @port: Port to enable (can be %NULL)
701 *
702 * This is used for lane 0 and 1 adapters to enable it.
703 */
704int tb_port_enable(struct tb_port *port)
705{
706 return __tb_port_enable(port, true);
707}
708
709/**
710 * tb_port_disable() - Disable lane adapter
711 * @port: Port to disable (can be %NULL)
712 *
713 * This is used for lane 0 and 1 adapters to disable it.
714 */
715int tb_port_disable(struct tb_port *port)
716{
717 return __tb_port_enable(port, false);
718}
719
Mika Westerbergb0407982019-12-17 15:33:40 +0300720/**
Andreas Noevera25c8b22014-06-03 22:04:02 +0200721 * tb_init_port() - initialize a port
722 *
723 * This is a helper method for tb_switch_alloc. Does not check or initialize
724 * any downstream switches.
725 *
726 * Return: Returns 0 on success or an error code on failure.
727 */
Andreas Noever343fcb82014-06-12 23:11:47 +0200728static int tb_init_port(struct tb_port *port)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200729{
730 int res;
Andreas Noever9da672a2014-06-03 22:04:05 +0200731 int cap;
Andreas Noever343fcb82014-06-12 23:11:47 +0200732
Andreas Noevera25c8b22014-06-03 22:04:02 +0200733 res = tb_port_read(port, &port->config, TB_CFG_PORT, 0, 8);
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300734 if (res) {
735 if (res == -ENODEV) {
736 tb_dbg(port->sw->tb, " Port %d: not implemented\n",
737 port->port);
738 return 0;
739 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200740 return res;
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300741 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200742
Andreas Noever9da672a2014-06-03 22:04:05 +0200743 /* Port 0 is the switch itself and has no PHY. */
Andreas Noever343fcb82014-06-12 23:11:47 +0200744 if (port->config.type == TB_TYPE_PORT && port->port != 0) {
Mika Westerbergda2da042017-06-06 15:24:58 +0300745 cap = tb_port_find_cap(port, TB_PORT_CAP_PHY);
Andreas Noever9da672a2014-06-03 22:04:05 +0200746
747 if (cap > 0)
748 port->cap_phy = cap;
749 else
750 tb_port_WARN(port, "non switch port without a PHY\n");
Mika Westerbergb0407982019-12-17 15:33:40 +0300751
752 cap = tb_port_find_cap(port, TB_PORT_CAP_USB4);
753 if (cap > 0)
754 port->cap_usb4 = cap;
Mika Westerberg56183c82017-02-19 10:39:34 +0200755 } else if (port->port != 0) {
756 cap = tb_port_find_cap(port, TB_PORT_CAP_ADAP);
757 if (cap > 0)
758 port->cap_adap = cap;
Andreas Noever9da672a2014-06-03 22:04:05 +0200759 }
760
Andreas Noever343fcb82014-06-12 23:11:47 +0200761 tb_dump_port(port->sw->tb, &port->config);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200762
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200763 /* Control port does not need HopID allocation */
764 if (port->port) {
765 ida_init(&port->in_hopids);
766 ida_init(&port->out_hopids);
767 }
768
Mika Westerberg8afe9092019-03-26 15:52:30 +0300769 INIT_LIST_HEAD(&port->list);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200770 return 0;
771
772}
773
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200774static int tb_port_alloc_hopid(struct tb_port *port, bool in, int min_hopid,
775 int max_hopid)
776{
777 int port_max_hopid;
778 struct ida *ida;
779
780 if (in) {
781 port_max_hopid = port->config.max_in_hop_id;
782 ida = &port->in_hopids;
783 } else {
784 port_max_hopid = port->config.max_out_hop_id;
785 ida = &port->out_hopids;
786 }
787
Mika Westerberg12676422020-06-01 12:47:07 +0300788 /*
789 * NHI can use HopIDs 1-max for other adapters HopIDs 0-7 are
790 * reserved.
791 */
792 if (port->config.type != TB_TYPE_NHI && min_hopid < TB_PATH_MIN_HOPID)
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200793 min_hopid = TB_PATH_MIN_HOPID;
794
795 if (max_hopid < 0 || max_hopid > port_max_hopid)
796 max_hopid = port_max_hopid;
797
798 return ida_simple_get(ida, min_hopid, max_hopid + 1, GFP_KERNEL);
799}
800
801/**
802 * tb_port_alloc_in_hopid() - Allocate input HopID from port
803 * @port: Port to allocate HopID for
804 * @min_hopid: Minimum acceptable input HopID
805 * @max_hopid: Maximum acceptable input HopID
806 *
807 * Return: HopID between @min_hopid and @max_hopid or negative errno in
808 * case of error.
809 */
810int tb_port_alloc_in_hopid(struct tb_port *port, int min_hopid, int max_hopid)
811{
812 return tb_port_alloc_hopid(port, true, min_hopid, max_hopid);
813}
814
815/**
816 * tb_port_alloc_out_hopid() - Allocate output HopID from port
817 * @port: Port to allocate HopID for
818 * @min_hopid: Minimum acceptable output HopID
819 * @max_hopid: Maximum acceptable output HopID
820 *
821 * Return: HopID between @min_hopid and @max_hopid or negative errno in
822 * case of error.
823 */
824int tb_port_alloc_out_hopid(struct tb_port *port, int min_hopid, int max_hopid)
825{
826 return tb_port_alloc_hopid(port, false, min_hopid, max_hopid);
827}
828
829/**
830 * tb_port_release_in_hopid() - Release allocated input HopID from port
831 * @port: Port whose HopID to release
832 * @hopid: HopID to release
833 */
834void tb_port_release_in_hopid(struct tb_port *port, int hopid)
835{
836 ida_simple_remove(&port->in_hopids, hopid);
837}
838
839/**
840 * tb_port_release_out_hopid() - Release allocated output HopID from port
841 * @port: Port whose HopID to release
842 * @hopid: HopID to release
843 */
844void tb_port_release_out_hopid(struct tb_port *port, int hopid)
845{
846 ida_simple_remove(&port->out_hopids, hopid);
847}
848
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300849static inline bool tb_switch_is_reachable(const struct tb_switch *parent,
850 const struct tb_switch *sw)
851{
852 u64 mask = (1ULL << parent->config.depth * 8) - 1;
853 return (tb_route(parent) & mask) == (tb_route(sw) & mask);
854}
855
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200856/**
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200857 * tb_next_port_on_path() - Return next port for given port on a path
858 * @start: Start port of the walk
859 * @end: End port of the walk
860 * @prev: Previous port (%NULL if this is the first)
861 *
862 * This function can be used to walk from one port to another if they
863 * are connected through zero or more switches. If the @prev is dual
864 * link port, the function follows that link and returns another end on
865 * that same link.
866 *
867 * If the @end port has been reached, return %NULL.
868 *
869 * Domain tb->lock must be held when this function is called.
870 */
871struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
872 struct tb_port *prev)
873{
874 struct tb_port *next;
875
876 if (!prev)
877 return start;
878
879 if (prev->sw == end->sw) {
880 if (prev == end)
881 return NULL;
882 return end;
883 }
884
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300885 if (tb_switch_is_reachable(prev->sw, end->sw)) {
886 next = tb_port_at(tb_route(end->sw), prev->sw);
887 /* Walk down the topology if next == prev */
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200888 if (prev->remote &&
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300889 (next == prev || next->dual_link_port == prev))
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200890 next = prev->remote;
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200891 } else {
892 if (tb_is_upstream_port(prev)) {
893 next = prev->remote;
894 } else {
895 next = tb_upstream_port(prev->sw);
896 /*
897 * Keep the same link if prev and next are both
898 * dual link ports.
899 */
900 if (next->dual_link_port &&
901 next->link_nr != prev->link_nr) {
902 next = next->dual_link_port;
903 }
904 }
905 }
906
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300907 return next != prev ? next : NULL;
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200908}
909
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300910/**
911 * tb_port_get_link_speed() - Get current link speed
912 * @port: Port to check (USB4 or CIO)
913 *
914 * Returns link speed in Gb/s or negative errno in case of failure.
915 */
916int tb_port_get_link_speed(struct tb_port *port)
Mika Westerberg91c0c122019-03-21 19:03:00 +0200917{
918 u32 val, speed;
919 int ret;
920
921 if (!port->cap_phy)
922 return -EINVAL;
923
924 ret = tb_port_read(port, &val, TB_CFG_PORT,
925 port->cap_phy + LANE_ADP_CS_1, 1);
926 if (ret)
927 return ret;
928
929 speed = (val & LANE_ADP_CS_1_CURRENT_SPEED_MASK) >>
930 LANE_ADP_CS_1_CURRENT_SPEED_SHIFT;
931 return speed == LANE_ADP_CS_1_CURRENT_SPEED_GEN3 ? 20 : 10;
932}
933
934static int tb_port_get_link_width(struct tb_port *port)
935{
936 u32 val;
937 int ret;
938
939 if (!port->cap_phy)
940 return -EINVAL;
941
942 ret = tb_port_read(port, &val, TB_CFG_PORT,
943 port->cap_phy + LANE_ADP_CS_1, 1);
944 if (ret)
945 return ret;
946
947 return (val & LANE_ADP_CS_1_CURRENT_WIDTH_MASK) >>
948 LANE_ADP_CS_1_CURRENT_WIDTH_SHIFT;
949}
950
951static bool tb_port_is_width_supported(struct tb_port *port, int width)
952{
953 u32 phy, widths;
954 int ret;
955
956 if (!port->cap_phy)
957 return false;
958
959 ret = tb_port_read(port, &phy, TB_CFG_PORT,
960 port->cap_phy + LANE_ADP_CS_0, 1);
961 if (ret)
Dan Carpentere9d0e752020-03-03 13:17:16 +0300962 return false;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200963
964 widths = (phy & LANE_ADP_CS_0_SUPPORTED_WIDTH_MASK) >>
965 LANE_ADP_CS_0_SUPPORTED_WIDTH_SHIFT;
966
967 return !!(widths & width);
968}
969
970static int tb_port_set_link_width(struct tb_port *port, unsigned int width)
971{
972 u32 val;
973 int ret;
974
975 if (!port->cap_phy)
976 return -EINVAL;
977
978 ret = tb_port_read(port, &val, TB_CFG_PORT,
979 port->cap_phy + LANE_ADP_CS_1, 1);
980 if (ret)
981 return ret;
982
983 val &= ~LANE_ADP_CS_1_TARGET_WIDTH_MASK;
984 switch (width) {
985 case 1:
986 val |= LANE_ADP_CS_1_TARGET_WIDTH_SINGLE <<
987 LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
988 break;
989 case 2:
990 val |= LANE_ADP_CS_1_TARGET_WIDTH_DUAL <<
991 LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
992 break;
993 default:
994 return -EINVAL;
995 }
996
997 val |= LANE_ADP_CS_1_LB;
998
999 return tb_port_write(port, &val, TB_CFG_PORT,
1000 port->cap_phy + LANE_ADP_CS_1, 1);
1001}
1002
1003static int tb_port_lane_bonding_enable(struct tb_port *port)
1004{
1005 int ret;
1006
1007 /*
1008 * Enable lane bonding for both links if not already enabled by
1009 * for example the boot firmware.
1010 */
1011 ret = tb_port_get_link_width(port);
1012 if (ret == 1) {
1013 ret = tb_port_set_link_width(port, 2);
1014 if (ret)
1015 return ret;
1016 }
1017
1018 ret = tb_port_get_link_width(port->dual_link_port);
1019 if (ret == 1) {
1020 ret = tb_port_set_link_width(port->dual_link_port, 2);
1021 if (ret) {
1022 tb_port_set_link_width(port, 1);
1023 return ret;
1024 }
1025 }
1026
1027 port->bonded = true;
1028 port->dual_link_port->bonded = true;
1029
1030 return 0;
1031}
1032
1033static void tb_port_lane_bonding_disable(struct tb_port *port)
1034{
1035 port->dual_link_port->bonded = false;
1036 port->bonded = false;
1037
1038 tb_port_set_link_width(port->dual_link_port, 1);
1039 tb_port_set_link_width(port, 1);
1040}
1041
Mika Westerbergfb19fac2017-02-19 21:51:30 +02001042/**
Mika Westerberge78db6f2017-10-12 16:45:50 +03001043 * tb_port_is_enabled() - Is the adapter port enabled
1044 * @port: Port to check
1045 */
1046bool tb_port_is_enabled(struct tb_port *port)
1047{
1048 switch (port->config.type) {
1049 case TB_TYPE_PCIE_UP:
1050 case TB_TYPE_PCIE_DOWN:
1051 return tb_pci_port_is_enabled(port);
1052
Mika Westerberg4f807e42018-09-17 16:30:49 +03001053 case TB_TYPE_DP_HDMI_IN:
1054 case TB_TYPE_DP_HDMI_OUT:
1055 return tb_dp_port_is_enabled(port);
1056
Rajmohan Manie6f81852019-12-17 15:33:44 +03001057 case TB_TYPE_USB3_UP:
1058 case TB_TYPE_USB3_DOWN:
1059 return tb_usb3_port_is_enabled(port);
1060
Mika Westerberge78db6f2017-10-12 16:45:50 +03001061 default:
1062 return false;
1063 }
1064}
1065
1066/**
Rajmohan Manie6f81852019-12-17 15:33:44 +03001067 * tb_usb3_port_is_enabled() - Is the USB3 adapter port enabled
1068 * @port: USB3 adapter port to check
1069 */
1070bool tb_usb3_port_is_enabled(struct tb_port *port)
1071{
1072 u32 data;
1073
1074 if (tb_port_read(port, &data, TB_CFG_PORT,
1075 port->cap_adap + ADP_USB3_CS_0, 1))
1076 return false;
1077
1078 return !!(data & ADP_USB3_CS_0_PE);
1079}
1080
1081/**
1082 * tb_usb3_port_enable() - Enable USB3 adapter port
1083 * @port: USB3 adapter port to enable
1084 * @enable: Enable/disable the USB3 adapter
1085 */
1086int tb_usb3_port_enable(struct tb_port *port, bool enable)
1087{
1088 u32 word = enable ? (ADP_USB3_CS_0_PE | ADP_USB3_CS_0_V)
1089 : ADP_USB3_CS_0_V;
1090
1091 if (!port->cap_adap)
1092 return -ENXIO;
1093 return tb_port_write(port, &word, TB_CFG_PORT,
1094 port->cap_adap + ADP_USB3_CS_0, 1);
1095}
1096
1097/**
Mika Westerberg0414bec2017-02-19 23:43:26 +02001098 * tb_pci_port_is_enabled() - Is the PCIe adapter port enabled
1099 * @port: PCIe port to check
1100 */
1101bool tb_pci_port_is_enabled(struct tb_port *port)
1102{
1103 u32 data;
1104
Mika Westerberg778bfca2019-09-06 12:05:24 +03001105 if (tb_port_read(port, &data, TB_CFG_PORT,
1106 port->cap_adap + ADP_PCIE_CS_0, 1))
Mika Westerberg0414bec2017-02-19 23:43:26 +02001107 return false;
1108
Mika Westerberg778bfca2019-09-06 12:05:24 +03001109 return !!(data & ADP_PCIE_CS_0_PE);
Mika Westerberg0414bec2017-02-19 23:43:26 +02001110}
1111
1112/**
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001113 * tb_pci_port_enable() - Enable PCIe adapter port
1114 * @port: PCIe port to enable
1115 * @enable: Enable/disable the PCIe adapter
1116 */
1117int tb_pci_port_enable(struct tb_port *port, bool enable)
1118{
Mika Westerberg778bfca2019-09-06 12:05:24 +03001119 u32 word = enable ? ADP_PCIE_CS_0_PE : 0x0;
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001120 if (!port->cap_adap)
1121 return -ENXIO;
Mika Westerberg778bfca2019-09-06 12:05:24 +03001122 return tb_port_write(port, &word, TB_CFG_PORT,
1123 port->cap_adap + ADP_PCIE_CS_0, 1);
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001124}
1125
Mika Westerberg4f807e42018-09-17 16:30:49 +03001126/**
1127 * tb_dp_port_hpd_is_active() - Is HPD already active
1128 * @port: DP out port to check
1129 *
1130 * Checks if the DP OUT adapter port has HDP bit already set.
1131 */
1132int tb_dp_port_hpd_is_active(struct tb_port *port)
1133{
1134 u32 data;
1135 int ret;
1136
Mika Westerberg98176382019-09-06 11:32:15 +03001137 ret = tb_port_read(port, &data, TB_CFG_PORT,
1138 port->cap_adap + ADP_DP_CS_2, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001139 if (ret)
1140 return ret;
1141
Mika Westerberg98176382019-09-06 11:32:15 +03001142 return !!(data & ADP_DP_CS_2_HDP);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001143}
1144
1145/**
1146 * tb_dp_port_hpd_clear() - Clear HPD from DP IN port
1147 * @port: Port to clear HPD
1148 *
1149 * If the DP IN port has HDP set, this function can be used to clear it.
1150 */
1151int tb_dp_port_hpd_clear(struct tb_port *port)
1152{
1153 u32 data;
1154 int ret;
1155
Mika Westerberg98176382019-09-06 11:32:15 +03001156 ret = tb_port_read(port, &data, TB_CFG_PORT,
1157 port->cap_adap + ADP_DP_CS_3, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001158 if (ret)
1159 return ret;
1160
Mika Westerberg98176382019-09-06 11:32:15 +03001161 data |= ADP_DP_CS_3_HDPC;
1162 return tb_port_write(port, &data, TB_CFG_PORT,
1163 port->cap_adap + ADP_DP_CS_3, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001164}
1165
1166/**
1167 * tb_dp_port_set_hops() - Set video/aux Hop IDs for DP port
1168 * @port: DP IN/OUT port to set hops
1169 * @video: Video Hop ID
1170 * @aux_tx: AUX TX Hop ID
1171 * @aux_rx: AUX RX Hop ID
1172 *
1173 * Programs specified Hop IDs for DP IN/OUT port.
1174 */
1175int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
1176 unsigned int aux_tx, unsigned int aux_rx)
1177{
1178 u32 data[2];
1179 int ret;
1180
Mika Westerberg98176382019-09-06 11:32:15 +03001181 ret = tb_port_read(port, data, TB_CFG_PORT,
1182 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001183 if (ret)
1184 return ret;
1185
Mika Westerberg98176382019-09-06 11:32:15 +03001186 data[0] &= ~ADP_DP_CS_0_VIDEO_HOPID_MASK;
1187 data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
1188 data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001189
Mika Westerberg98176382019-09-06 11:32:15 +03001190 data[0] |= (video << ADP_DP_CS_0_VIDEO_HOPID_SHIFT) &
1191 ADP_DP_CS_0_VIDEO_HOPID_MASK;
1192 data[1] |= aux_tx & ADP_DP_CS_1_AUX_TX_HOPID_MASK;
1193 data[1] |= (aux_rx << ADP_DP_CS_1_AUX_RX_HOPID_SHIFT) &
1194 ADP_DP_CS_1_AUX_RX_HOPID_MASK;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001195
Mika Westerberg98176382019-09-06 11:32:15 +03001196 return tb_port_write(port, data, TB_CFG_PORT,
1197 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001198}
1199
1200/**
1201 * tb_dp_port_is_enabled() - Is DP adapter port enabled
1202 * @port: DP adapter port to check
1203 */
1204bool tb_dp_port_is_enabled(struct tb_port *port)
1205{
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001206 u32 data[2];
Mika Westerberg4f807e42018-09-17 16:30:49 +03001207
Mika Westerberg98176382019-09-06 11:32:15 +03001208 if (tb_port_read(port, data, TB_CFG_PORT, port->cap_adap + ADP_DP_CS_0,
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001209 ARRAY_SIZE(data)))
Mika Westerberg4f807e42018-09-17 16:30:49 +03001210 return false;
1211
Mika Westerberg98176382019-09-06 11:32:15 +03001212 return !!(data[0] & (ADP_DP_CS_0_VE | ADP_DP_CS_0_AE));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001213}
1214
1215/**
1216 * tb_dp_port_enable() - Enables/disables DP paths of a port
1217 * @port: DP IN/OUT port
1218 * @enable: Enable/disable DP path
1219 *
1220 * Once Hop IDs are programmed DP paths can be enabled or disabled by
1221 * calling this function.
1222 */
1223int tb_dp_port_enable(struct tb_port *port, bool enable)
1224{
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001225 u32 data[2];
Mika Westerberg4f807e42018-09-17 16:30:49 +03001226 int ret;
1227
Mika Westerberg98176382019-09-06 11:32:15 +03001228 ret = tb_port_read(port, data, TB_CFG_PORT,
1229 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001230 if (ret)
1231 return ret;
1232
1233 if (enable)
Mika Westerberg98176382019-09-06 11:32:15 +03001234 data[0] |= ADP_DP_CS_0_VE | ADP_DP_CS_0_AE;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001235 else
Mika Westerberg98176382019-09-06 11:32:15 +03001236 data[0] &= ~(ADP_DP_CS_0_VE | ADP_DP_CS_0_AE);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001237
Mika Westerberg98176382019-09-06 11:32:15 +03001238 return tb_port_write(port, data, TB_CFG_PORT,
1239 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001240}
1241
Andreas Noevera25c8b22014-06-03 22:04:02 +02001242/* switch utility functions */
1243
Mika Westerbergb0407982019-12-17 15:33:40 +03001244static const char *tb_switch_generation_name(const struct tb_switch *sw)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001245{
Mika Westerbergb0407982019-12-17 15:33:40 +03001246 switch (sw->generation) {
1247 case 1:
1248 return "Thunderbolt 1";
1249 case 2:
1250 return "Thunderbolt 2";
1251 case 3:
1252 return "Thunderbolt 3";
1253 case 4:
1254 return "USB4";
1255 default:
1256 return "Unknown";
1257 }
1258}
1259
1260static void tb_dump_switch(const struct tb *tb, const struct tb_switch *sw)
1261{
1262 const struct tb_regs_switch_header *regs = &sw->config;
1263
1264 tb_dbg(tb, " %s Switch: %x:%x (Revision: %d, TB Version: %d)\n",
1265 tb_switch_generation_name(sw), regs->vendor_id, regs->device_id,
1266 regs->revision, regs->thunderbolt_version);
1267 tb_dbg(tb, " Max Port Number: %d\n", regs->max_port_number);
Mika Westerbergdaa51402018-10-01 12:31:19 +03001268 tb_dbg(tb, " Config:\n");
1269 tb_dbg(tb,
Andreas Noevera25c8b22014-06-03 22:04:02 +02001270 " Upstream Port Number: %d Depth: %d Route String: %#llx Enabled: %d, PlugEventsDelay: %dms\n",
Mika Westerbergb0407982019-12-17 15:33:40 +03001271 regs->upstream_port_number, regs->depth,
1272 (((u64) regs->route_hi) << 32) | regs->route_lo,
1273 regs->enabled, regs->plug_events_delay);
Mika Westerbergdaa51402018-10-01 12:31:19 +03001274 tb_dbg(tb, " unknown1: %#x unknown4: %#x\n",
Mika Westerbergb0407982019-12-17 15:33:40 +03001275 regs->__unknown1, regs->__unknown4);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001276}
1277
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001278/**
1279 * reset_switch() - reconfigure route, enable and send TB_CFG_PKG_RESET
Mika Westerberg356b6c42019-09-19 15:25:30 +03001280 * @sw: Switch to reset
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001281 *
1282 * Return: Returns 0 on success or an error code on failure.
1283 */
Mika Westerberg356b6c42019-09-19 15:25:30 +03001284int tb_switch_reset(struct tb_switch *sw)
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001285{
1286 struct tb_cfg_result res;
Mika Westerberg356b6c42019-09-19 15:25:30 +03001287
1288 if (sw->generation > 1)
1289 return 0;
1290
1291 tb_sw_dbg(sw, "resetting switch\n");
1292
1293 res.err = tb_sw_write(sw, ((u32 *) &sw->config) + 2,
1294 TB_CFG_SWITCH, 2, 2);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001295 if (res.err)
1296 return res.err;
Mika Westerberg356b6c42019-09-19 15:25:30 +03001297 res = tb_cfg_reset(sw->tb->ctl, tb_route(sw), TB_CFG_DEFAULT_TIMEOUT);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001298 if (res.err > 0)
1299 return -EIO;
1300 return res.err;
1301}
1302
Andreas Noevera25c8b22014-06-03 22:04:02 +02001303/**
Andreas Noeverca389f72014-06-03 22:04:04 +02001304 * tb_plug_events_active() - enable/disable plug events on a switch
1305 *
1306 * Also configures a sane plug_events_delay of 255ms.
1307 *
1308 * Return: Returns 0 on success or an error code on failure.
1309 */
1310static int tb_plug_events_active(struct tb_switch *sw, bool active)
1311{
1312 u32 data;
1313 int res;
1314
Mika Westerberg5cb6ed312020-04-02 12:24:48 +03001315 if (tb_switch_is_icm(sw) || tb_switch_is_usb4(sw))
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001316 return 0;
1317
Andreas Noeverca389f72014-06-03 22:04:04 +02001318 sw->config.plug_events_delay = 0xff;
1319 res = tb_sw_write(sw, ((u32 *) &sw->config) + 4, TB_CFG_SWITCH, 4, 1);
1320 if (res)
1321 return res;
1322
1323 res = tb_sw_read(sw, &data, TB_CFG_SWITCH, sw->cap_plug_events + 1, 1);
1324 if (res)
1325 return res;
1326
1327 if (active) {
1328 data = data & 0xFFFFFF83;
1329 switch (sw->config.device_id) {
Lukas Wunner1d111402016-03-20 13:57:20 +01001330 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1331 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1332 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
Andreas Noeverca389f72014-06-03 22:04:04 +02001333 break;
1334 default:
1335 data |= 4;
1336 }
1337 } else {
1338 data = data | 0x7c;
1339 }
1340 return tb_sw_write(sw, &data, TB_CFG_SWITCH,
1341 sw->cap_plug_events + 1, 1);
1342}
1343
Mika Westerbergf67cf492017-06-06 15:25:16 +03001344static ssize_t authorized_show(struct device *dev,
1345 struct device_attribute *attr,
1346 char *buf)
1347{
1348 struct tb_switch *sw = tb_to_switch(dev);
1349
1350 return sprintf(buf, "%u\n", sw->authorized);
1351}
1352
1353static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val)
1354{
1355 int ret = -EINVAL;
1356
Mika Westerberg09f11b62019-03-19 16:48:41 +02001357 if (!mutex_trylock(&sw->tb->lock))
1358 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001359
1360 if (sw->authorized)
1361 goto unlock;
1362
1363 switch (val) {
1364 /* Approve switch */
1365 case 1:
1366 if (sw->key)
1367 ret = tb_domain_approve_switch_key(sw->tb, sw);
1368 else
1369 ret = tb_domain_approve_switch(sw->tb, sw);
1370 break;
1371
1372 /* Challenge switch */
1373 case 2:
1374 if (sw->key)
1375 ret = tb_domain_challenge_switch_key(sw->tb, sw);
1376 break;
1377
1378 default:
1379 break;
1380 }
1381
1382 if (!ret) {
1383 sw->authorized = val;
1384 /* Notify status change to the userspace */
1385 kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
1386 }
1387
1388unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001389 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001390 return ret;
1391}
1392
1393static ssize_t authorized_store(struct device *dev,
1394 struct device_attribute *attr,
1395 const char *buf, size_t count)
1396{
1397 struct tb_switch *sw = tb_to_switch(dev);
1398 unsigned int val;
1399 ssize_t ret;
1400
1401 ret = kstrtouint(buf, 0, &val);
1402 if (ret)
1403 return ret;
1404 if (val > 2)
1405 return -EINVAL;
1406
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001407 pm_runtime_get_sync(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001408 ret = tb_switch_set_authorized(sw, val);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001409 pm_runtime_mark_last_busy(&sw->dev);
1410 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001411
1412 return ret ? ret : count;
1413}
1414static DEVICE_ATTR_RW(authorized);
1415
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001416static ssize_t boot_show(struct device *dev, struct device_attribute *attr,
1417 char *buf)
1418{
1419 struct tb_switch *sw = tb_to_switch(dev);
1420
1421 return sprintf(buf, "%u\n", sw->boot);
1422}
1423static DEVICE_ATTR_RO(boot);
1424
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001425static ssize_t device_show(struct device *dev, struct device_attribute *attr,
1426 char *buf)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001427{
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001428 struct tb_switch *sw = tb_to_switch(dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001429
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001430 return sprintf(buf, "%#x\n", sw->device);
1431}
1432static DEVICE_ATTR_RO(device);
Andreas Noeverca389f72014-06-03 22:04:04 +02001433
Mika Westerberg72ee3392017-06-06 15:25:05 +03001434static ssize_t
1435device_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1436{
1437 struct tb_switch *sw = tb_to_switch(dev);
1438
1439 return sprintf(buf, "%s\n", sw->device_name ? sw->device_name : "");
1440}
1441static DEVICE_ATTR_RO(device_name);
1442
Christian Kellnerb4063572019-10-03 19:32:40 +02001443static ssize_t
1444generation_show(struct device *dev, struct device_attribute *attr, char *buf)
1445{
1446 struct tb_switch *sw = tb_to_switch(dev);
1447
1448 return sprintf(buf, "%u\n", sw->generation);
1449}
1450static DEVICE_ATTR_RO(generation);
1451
Mika Westerbergf67cf492017-06-06 15:25:16 +03001452static ssize_t key_show(struct device *dev, struct device_attribute *attr,
1453 char *buf)
1454{
1455 struct tb_switch *sw = tb_to_switch(dev);
1456 ssize_t ret;
1457
Mika Westerberg09f11b62019-03-19 16:48:41 +02001458 if (!mutex_trylock(&sw->tb->lock))
1459 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001460
1461 if (sw->key)
1462 ret = sprintf(buf, "%*phN\n", TB_SWITCH_KEY_SIZE, sw->key);
1463 else
1464 ret = sprintf(buf, "\n");
1465
Mika Westerberg09f11b62019-03-19 16:48:41 +02001466 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001467 return ret;
1468}
1469
1470static ssize_t key_store(struct device *dev, struct device_attribute *attr,
1471 const char *buf, size_t count)
1472{
1473 struct tb_switch *sw = tb_to_switch(dev);
1474 u8 key[TB_SWITCH_KEY_SIZE];
1475 ssize_t ret = count;
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001476 bool clear = false;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001477
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001478 if (!strcmp(buf, "\n"))
1479 clear = true;
1480 else if (hex2bin(key, buf, sizeof(key)))
Mika Westerbergf67cf492017-06-06 15:25:16 +03001481 return -EINVAL;
1482
Mika Westerberg09f11b62019-03-19 16:48:41 +02001483 if (!mutex_trylock(&sw->tb->lock))
1484 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001485
1486 if (sw->authorized) {
1487 ret = -EBUSY;
1488 } else {
1489 kfree(sw->key);
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001490 if (clear) {
1491 sw->key = NULL;
1492 } else {
1493 sw->key = kmemdup(key, sizeof(key), GFP_KERNEL);
1494 if (!sw->key)
1495 ret = -ENOMEM;
1496 }
Mika Westerbergf67cf492017-06-06 15:25:16 +03001497 }
1498
Mika Westerberg09f11b62019-03-19 16:48:41 +02001499 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001500 return ret;
1501}
Bernat, Yehezkel0956e412017-08-15 08:19:12 +03001502static DEVICE_ATTR(key, 0600, key_show, key_store);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001503
Mika Westerberg91c0c122019-03-21 19:03:00 +02001504static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
1505 char *buf)
1506{
1507 struct tb_switch *sw = tb_to_switch(dev);
1508
1509 return sprintf(buf, "%u.0 Gb/s\n", sw->link_speed);
1510}
1511
1512/*
1513 * Currently all lanes must run at the same speed but we expose here
1514 * both directions to allow possible asymmetric links in the future.
1515 */
1516static DEVICE_ATTR(rx_speed, 0444, speed_show, NULL);
1517static DEVICE_ATTR(tx_speed, 0444, speed_show, NULL);
1518
1519static ssize_t lanes_show(struct device *dev, struct device_attribute *attr,
1520 char *buf)
1521{
1522 struct tb_switch *sw = tb_to_switch(dev);
1523
1524 return sprintf(buf, "%u\n", sw->link_width);
1525}
1526
1527/*
1528 * Currently link has same amount of lanes both directions (1 or 2) but
1529 * expose them separately to allow possible asymmetric links in the future.
1530 */
1531static DEVICE_ATTR(rx_lanes, 0444, lanes_show, NULL);
1532static DEVICE_ATTR(tx_lanes, 0444, lanes_show, NULL);
1533
Mika Westerberge6b245c2017-06-06 15:25:17 +03001534static ssize_t nvm_authenticate_show(struct device *dev,
1535 struct device_attribute *attr, char *buf)
1536{
1537 struct tb_switch *sw = tb_to_switch(dev);
1538 u32 status;
1539
1540 nvm_get_auth_status(sw, &status);
1541 return sprintf(buf, "%#x\n", status);
1542}
1543
Mario Limonciello1cb36292020-06-23 11:14:29 -05001544static ssize_t nvm_authenticate_sysfs(struct device *dev, const char *buf,
1545 bool disconnect)
Mika Westerberge6b245c2017-06-06 15:25:17 +03001546{
1547 struct tb_switch *sw = tb_to_switch(dev);
Mario Limonciello4b794f82020-06-23 11:14:28 -05001548 int val;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001549 int ret;
1550
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001551 pm_runtime_get_sync(&sw->dev);
1552
1553 if (!mutex_trylock(&sw->tb->lock)) {
1554 ret = restart_syscall();
1555 goto exit_rpm;
1556 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001557
1558 /* If NVMem devices are not yet added */
1559 if (!sw->nvm) {
1560 ret = -EAGAIN;
1561 goto exit_unlock;
1562 }
1563
Mario Limonciello4b794f82020-06-23 11:14:28 -05001564 ret = kstrtoint(buf, 10, &val);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001565 if (ret)
1566 goto exit_unlock;
1567
1568 /* Always clear the authentication status */
1569 nvm_clear_auth_status(sw);
1570
Mario Limonciello4b794f82020-06-23 11:14:28 -05001571 if (val > 0) {
1572 if (!sw->nvm->flushed) {
1573 if (!sw->nvm->buf) {
1574 ret = -EINVAL;
1575 goto exit_unlock;
1576 }
1577
1578 ret = nvm_validate_and_write(sw);
1579 if (ret || val == WRITE_ONLY)
1580 goto exit_unlock;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001581 }
Mario Limonciello4b794f82020-06-23 11:14:28 -05001582 if (val == WRITE_AND_AUTHENTICATE) {
Mario Limonciello1cb36292020-06-23 11:14:29 -05001583 if (disconnect) {
1584 ret = tb_lc_force_power(sw);
1585 } else {
1586 sw->nvm->authenticating = true;
1587 ret = nvm_authenticate(sw);
1588 }
Mario Limonciello4b794f82020-06-23 11:14:28 -05001589 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001590 }
1591
1592exit_unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001593 mutex_unlock(&sw->tb->lock);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001594exit_rpm:
1595 pm_runtime_mark_last_busy(&sw->dev);
1596 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001597
Mario Limonciello1cb36292020-06-23 11:14:29 -05001598 return ret;
1599}
1600
1601static ssize_t nvm_authenticate_store(struct device *dev,
1602 struct device_attribute *attr, const char *buf, size_t count)
1603{
1604 int ret = nvm_authenticate_sysfs(dev, buf, false);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001605 if (ret)
1606 return ret;
1607 return count;
1608}
1609static DEVICE_ATTR_RW(nvm_authenticate);
1610
Mario Limonciello1cb36292020-06-23 11:14:29 -05001611static ssize_t nvm_authenticate_on_disconnect_show(struct device *dev,
1612 struct device_attribute *attr, char *buf)
1613{
1614 return nvm_authenticate_show(dev, attr, buf);
1615}
1616
1617static ssize_t nvm_authenticate_on_disconnect_store(struct device *dev,
1618 struct device_attribute *attr, const char *buf, size_t count)
1619{
1620 int ret;
1621
1622 ret = nvm_authenticate_sysfs(dev, buf, true);
1623 return ret ? ret : count;
1624}
1625static DEVICE_ATTR_RW(nvm_authenticate_on_disconnect);
1626
Mika Westerberge6b245c2017-06-06 15:25:17 +03001627static ssize_t nvm_version_show(struct device *dev,
1628 struct device_attribute *attr, char *buf)
1629{
1630 struct tb_switch *sw = tb_to_switch(dev);
1631 int ret;
1632
Mika Westerberg09f11b62019-03-19 16:48:41 +02001633 if (!mutex_trylock(&sw->tb->lock))
1634 return restart_syscall();
Mika Westerberge6b245c2017-06-06 15:25:17 +03001635
1636 if (sw->safe_mode)
1637 ret = -ENODATA;
1638 else if (!sw->nvm)
1639 ret = -EAGAIN;
1640 else
1641 ret = sprintf(buf, "%x.%x\n", sw->nvm->major, sw->nvm->minor);
1642
Mika Westerberg09f11b62019-03-19 16:48:41 +02001643 mutex_unlock(&sw->tb->lock);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001644
1645 return ret;
1646}
1647static DEVICE_ATTR_RO(nvm_version);
1648
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001649static ssize_t vendor_show(struct device *dev, struct device_attribute *attr,
1650 char *buf)
1651{
1652 struct tb_switch *sw = tb_to_switch(dev);
1653
1654 return sprintf(buf, "%#x\n", sw->vendor);
1655}
1656static DEVICE_ATTR_RO(vendor);
1657
Mika Westerberg72ee3392017-06-06 15:25:05 +03001658static ssize_t
1659vendor_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1660{
1661 struct tb_switch *sw = tb_to_switch(dev);
1662
1663 return sprintf(buf, "%s\n", sw->vendor_name ? sw->vendor_name : "");
1664}
1665static DEVICE_ATTR_RO(vendor_name);
1666
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001667static ssize_t unique_id_show(struct device *dev, struct device_attribute *attr,
1668 char *buf)
1669{
1670 struct tb_switch *sw = tb_to_switch(dev);
1671
1672 return sprintf(buf, "%pUb\n", sw->uuid);
1673}
1674static DEVICE_ATTR_RO(unique_id);
1675
1676static struct attribute *switch_attrs[] = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001677 &dev_attr_authorized.attr,
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001678 &dev_attr_boot.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001679 &dev_attr_device.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001680 &dev_attr_device_name.attr,
Christian Kellnerb4063572019-10-03 19:32:40 +02001681 &dev_attr_generation.attr,
Mika Westerbergf67cf492017-06-06 15:25:16 +03001682 &dev_attr_key.attr,
Mika Westerberge6b245c2017-06-06 15:25:17 +03001683 &dev_attr_nvm_authenticate.attr,
Mario Limonciello1cb36292020-06-23 11:14:29 -05001684 &dev_attr_nvm_authenticate_on_disconnect.attr,
Mika Westerberge6b245c2017-06-06 15:25:17 +03001685 &dev_attr_nvm_version.attr,
Mika Westerberg91c0c122019-03-21 19:03:00 +02001686 &dev_attr_rx_speed.attr,
1687 &dev_attr_rx_lanes.attr,
1688 &dev_attr_tx_speed.attr,
1689 &dev_attr_tx_lanes.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001690 &dev_attr_vendor.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001691 &dev_attr_vendor_name.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001692 &dev_attr_unique_id.attr,
1693 NULL,
1694};
1695
Mika Westerbergf67cf492017-06-06 15:25:16 +03001696static umode_t switch_attr_is_visible(struct kobject *kobj,
1697 struct attribute *attr, int n)
1698{
Tian Taofff15f22020-09-01 16:27:17 +08001699 struct device *dev = kobj_to_dev(kobj);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001700 struct tb_switch *sw = tb_to_switch(dev);
1701
Mika Westerberg58f414f2018-09-11 15:34:23 +03001702 if (attr == &dev_attr_device.attr) {
1703 if (!sw->device)
1704 return 0;
1705 } else if (attr == &dev_attr_device_name.attr) {
1706 if (!sw->device_name)
1707 return 0;
1708 } else if (attr == &dev_attr_vendor.attr) {
1709 if (!sw->vendor)
1710 return 0;
1711 } else if (attr == &dev_attr_vendor_name.attr) {
1712 if (!sw->vendor_name)
1713 return 0;
1714 } else if (attr == &dev_attr_key.attr) {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001715 if (tb_route(sw) &&
1716 sw->tb->security_level == TB_SECURITY_SECURE &&
1717 sw->security_level == TB_SECURITY_SECURE)
1718 return attr->mode;
1719 return 0;
Mika Westerberg91c0c122019-03-21 19:03:00 +02001720 } else if (attr == &dev_attr_rx_speed.attr ||
1721 attr == &dev_attr_rx_lanes.attr ||
1722 attr == &dev_attr_tx_speed.attr ||
1723 attr == &dev_attr_tx_lanes.attr) {
1724 if (tb_route(sw))
1725 return attr->mode;
1726 return 0;
Mika Westerberg3f415e52019-02-05 12:51:40 +03001727 } else if (attr == &dev_attr_nvm_authenticate.attr) {
Mika Westerbergb0407982019-12-17 15:33:40 +03001728 if (nvm_upgradeable(sw))
Mika Westerberg3f415e52019-02-05 12:51:40 +03001729 return attr->mode;
1730 return 0;
1731 } else if (attr == &dev_attr_nvm_version.attr) {
Mika Westerbergb0407982019-12-17 15:33:40 +03001732 if (nvm_readable(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03001733 return attr->mode;
1734 return 0;
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001735 } else if (attr == &dev_attr_boot.attr) {
1736 if (tb_route(sw))
1737 return attr->mode;
1738 return 0;
Mario Limonciello1cb36292020-06-23 11:14:29 -05001739 } else if (attr == &dev_attr_nvm_authenticate_on_disconnect.attr) {
1740 if (sw->quirks & QUIRK_FORCE_POWER_LINK_CONTROLLER)
1741 return attr->mode;
1742 return 0;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001743 }
1744
Mika Westerberge6b245c2017-06-06 15:25:17 +03001745 return sw->safe_mode ? 0 : attr->mode;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001746}
1747
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001748static struct attribute_group switch_group = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001749 .is_visible = switch_attr_is_visible,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001750 .attrs = switch_attrs,
1751};
1752
1753static const struct attribute_group *switch_groups[] = {
1754 &switch_group,
1755 NULL,
1756};
1757
1758static void tb_switch_release(struct device *dev)
1759{
1760 struct tb_switch *sw = tb_to_switch(dev);
Mika Westerbergb433d012019-09-30 14:07:22 +03001761 struct tb_port *port;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001762
Mika Westerberg3e136762017-06-06 15:25:14 +03001763 dma_port_free(sw->dma_port);
1764
Mika Westerbergb433d012019-09-30 14:07:22 +03001765 tb_switch_for_each_port(sw, port) {
1766 if (!port->disabled) {
1767 ida_destroy(&port->in_hopids);
1768 ida_destroy(&port->out_hopids);
Mika Westerberg0b2863a2017-02-19 16:57:27 +02001769 }
1770 }
1771
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001772 kfree(sw->uuid);
Mika Westerberg72ee3392017-06-06 15:25:05 +03001773 kfree(sw->device_name);
1774 kfree(sw->vendor_name);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001775 kfree(sw->ports);
Andreas Noever343fcb82014-06-12 23:11:47 +02001776 kfree(sw->drom);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001777 kfree(sw->key);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001778 kfree(sw);
1779}
1780
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001781/*
1782 * Currently only need to provide the callbacks. Everything else is handled
1783 * in the connection manager.
1784 */
1785static int __maybe_unused tb_switch_runtime_suspend(struct device *dev)
1786{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001787 struct tb_switch *sw = tb_to_switch(dev);
1788 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1789
1790 if (cm_ops->runtime_suspend_switch)
1791 return cm_ops->runtime_suspend_switch(sw);
1792
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001793 return 0;
1794}
1795
1796static int __maybe_unused tb_switch_runtime_resume(struct device *dev)
1797{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001798 struct tb_switch *sw = tb_to_switch(dev);
1799 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1800
1801 if (cm_ops->runtime_resume_switch)
1802 return cm_ops->runtime_resume_switch(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001803 return 0;
1804}
1805
1806static const struct dev_pm_ops tb_switch_pm_ops = {
1807 SET_RUNTIME_PM_OPS(tb_switch_runtime_suspend, tb_switch_runtime_resume,
1808 NULL)
1809};
1810
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001811struct device_type tb_switch_type = {
1812 .name = "thunderbolt_device",
1813 .release = tb_switch_release,
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001814 .pm = &tb_switch_pm_ops,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001815};
1816
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001817static int tb_switch_get_generation(struct tb_switch *sw)
1818{
1819 switch (sw->config.device_id) {
1820 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1821 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1822 case PCI_DEVICE_ID_INTEL_LIGHT_PEAK:
1823 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
1824 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
1825 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
1826 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_2C_BRIDGE:
1827 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_4C_BRIDGE:
1828 return 1;
1829
1830 case PCI_DEVICE_ID_INTEL_WIN_RIDGE_2C_BRIDGE:
1831 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
1832 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
1833 return 2;
1834
1835 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
1836 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
1837 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_BRIDGE:
1838 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
1839 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
Radion Mirchevsky4bac4712017-10-04 16:43:43 +03001840 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
1841 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
1842 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
Mika Westerberg3cdb9442018-01-16 22:19:00 +02001843 case PCI_DEVICE_ID_INTEL_ICL_NHI0:
1844 case PCI_DEVICE_ID_INTEL_ICL_NHI1:
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001845 return 3;
1846
1847 default:
Mika Westerbergb0407982019-12-17 15:33:40 +03001848 if (tb_switch_is_usb4(sw))
1849 return 4;
1850
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001851 /*
1852 * For unknown switches assume generation to be 1 to be
1853 * on the safe side.
1854 */
1855 tb_sw_warn(sw, "unsupported switch device id %#x\n",
1856 sw->config.device_id);
1857 return 1;
1858 }
1859}
1860
Mika Westerbergb0407982019-12-17 15:33:40 +03001861static bool tb_switch_exceeds_max_depth(const struct tb_switch *sw, int depth)
1862{
1863 int max_depth;
1864
1865 if (tb_switch_is_usb4(sw) ||
1866 (sw->tb->root_switch && tb_switch_is_usb4(sw->tb->root_switch)))
1867 max_depth = USB4_SWITCH_MAX_DEPTH;
1868 else
1869 max_depth = TB_SWITCH_MAX_DEPTH;
1870
1871 return depth > max_depth;
1872}
1873
Andreas Noevera25c8b22014-06-03 22:04:02 +02001874/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001875 * tb_switch_alloc() - allocate a switch
1876 * @tb: Pointer to the owning domain
1877 * @parent: Parent device for this switch
1878 * @route: Route string for this switch
Andreas Noevera25c8b22014-06-03 22:04:02 +02001879 *
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001880 * Allocates and initializes a switch. Will not upload configuration to
1881 * the switch. For that you need to call tb_switch_configure()
1882 * separately. The returned switch should be released by calling
1883 * tb_switch_put().
1884 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001885 * Return: Pointer to the allocated switch or ERR_PTR() in case of
1886 * failure.
Andreas Noevera25c8b22014-06-03 22:04:02 +02001887 */
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001888struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
1889 u64 route)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001890{
Andreas Noevera25c8b22014-06-03 22:04:02 +02001891 struct tb_switch *sw;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001892 int upstream_port;
Mika Westerberg444ac382018-12-30 12:17:52 +02001893 int i, ret, depth;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001894
Mika Westerbergb0407982019-12-17 15:33:40 +03001895 /* Unlock the downstream port so we can access the switch below */
1896 if (route) {
1897 struct tb_switch *parent_sw = tb_to_switch(parent);
1898 struct tb_port *down;
1899
1900 down = tb_port_at(route, parent_sw);
1901 tb_port_unlock(down);
1902 }
1903
Mika Westerbergf0342e72018-12-30 12:14:46 +02001904 depth = tb_route_length(route);
Mika Westerbergf0342e72018-12-30 12:14:46 +02001905
1906 upstream_port = tb_cfg_get_upstream_port(tb->ctl, route);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001907 if (upstream_port < 0)
Mika Westerberg444ac382018-12-30 12:17:52 +02001908 return ERR_PTR(upstream_port);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001909
1910 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1911 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02001912 return ERR_PTR(-ENOMEM);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001913
1914 sw->tb = tb;
Mika Westerberg444ac382018-12-30 12:17:52 +02001915 ret = tb_cfg_read(tb->ctl, &sw->config, route, 0, TB_CFG_SWITCH, 0, 5);
1916 if (ret)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001917 goto err_free_sw_ports;
1918
Mika Westerbergb0407982019-12-17 15:33:40 +03001919 sw->generation = tb_switch_get_generation(sw);
1920
Mika Westerbergdaa51402018-10-01 12:31:19 +03001921 tb_dbg(tb, "current switch config:\n");
Mika Westerbergb0407982019-12-17 15:33:40 +03001922 tb_dump_switch(tb, sw);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001923
1924 /* configure switch */
1925 sw->config.upstream_port_number = upstream_port;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001926 sw->config.depth = depth;
1927 sw->config.route_hi = upper_32_bits(route);
1928 sw->config.route_lo = lower_32_bits(route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001929 sw->config.enabled = 0;
Andreas Noevera25c8b22014-06-03 22:04:02 +02001930
Mika Westerbergb0407982019-12-17 15:33:40 +03001931 /* Make sure we do not exceed maximum topology limit */
Colin Ian King704a9402019-12-20 22:05:26 +00001932 if (tb_switch_exceeds_max_depth(sw, depth)) {
1933 ret = -EADDRNOTAVAIL;
1934 goto err_free_sw_ports;
1935 }
Mika Westerbergb0407982019-12-17 15:33:40 +03001936
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001937 /* initialize ports */
1938 sw->ports = kcalloc(sw->config.max_port_number + 1, sizeof(*sw->ports),
1939 GFP_KERNEL);
Mika Westerberg444ac382018-12-30 12:17:52 +02001940 if (!sw->ports) {
1941 ret = -ENOMEM;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001942 goto err_free_sw_ports;
Mika Westerberg444ac382018-12-30 12:17:52 +02001943 }
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001944
1945 for (i = 0; i <= sw->config.max_port_number; i++) {
1946 /* minimum setup for tb_find_cap and tb_drom_read to work */
1947 sw->ports[i].sw = sw;
1948 sw->ports[i].port = i;
1949 }
1950
Mika Westerberg444ac382018-12-30 12:17:52 +02001951 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_PLUG_EVENTS);
Mika Westerbergb0407982019-12-17 15:33:40 +03001952 if (ret > 0)
1953 sw->cap_plug_events = ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001954
Mika Westerberg444ac382018-12-30 12:17:52 +02001955 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_LINK_CONTROLLER);
1956 if (ret > 0)
1957 sw->cap_lc = ret;
Mika Westerberga9be5582019-01-09 16:42:12 +02001958
Mika Westerbergf67cf492017-06-06 15:25:16 +03001959 /* Root switch is always authorized */
1960 if (!route)
1961 sw->authorized = true;
1962
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001963 device_initialize(&sw->dev);
1964 sw->dev.parent = parent;
1965 sw->dev.bus = &tb_bus_type;
1966 sw->dev.type = &tb_switch_type;
1967 sw->dev.groups = switch_groups;
1968 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
1969
1970 return sw;
1971
1972err_free_sw_ports:
1973 kfree(sw->ports);
1974 kfree(sw);
1975
Mika Westerberg444ac382018-12-30 12:17:52 +02001976 return ERR_PTR(ret);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001977}
1978
1979/**
Mika Westerberge6b245c2017-06-06 15:25:17 +03001980 * tb_switch_alloc_safe_mode() - allocate a switch that is in safe mode
1981 * @tb: Pointer to the owning domain
1982 * @parent: Parent device for this switch
1983 * @route: Route string for this switch
1984 *
1985 * This creates a switch in safe mode. This means the switch pretty much
1986 * lacks all capabilities except DMA configuration port before it is
1987 * flashed with a valid NVM firmware.
1988 *
1989 * The returned switch must be released by calling tb_switch_put().
1990 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001991 * Return: Pointer to the allocated switch or ERR_PTR() in case of failure
Mika Westerberge6b245c2017-06-06 15:25:17 +03001992 */
1993struct tb_switch *
1994tb_switch_alloc_safe_mode(struct tb *tb, struct device *parent, u64 route)
1995{
1996 struct tb_switch *sw;
1997
1998 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1999 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02002000 return ERR_PTR(-ENOMEM);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002001
2002 sw->tb = tb;
2003 sw->config.depth = tb_route_length(route);
2004 sw->config.route_hi = upper_32_bits(route);
2005 sw->config.route_lo = lower_32_bits(route);
2006 sw->safe_mode = true;
2007
2008 device_initialize(&sw->dev);
2009 sw->dev.parent = parent;
2010 sw->dev.bus = &tb_bus_type;
2011 sw->dev.type = &tb_switch_type;
2012 sw->dev.groups = switch_groups;
2013 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
2014
2015 return sw;
2016}
2017
2018/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002019 * tb_switch_configure() - Uploads configuration to the switch
2020 * @sw: Switch to configure
2021 *
2022 * Call this function before the switch is added to the system. It will
2023 * upload configuration to the switch and makes it available for the
Mika Westerbergb0407982019-12-17 15:33:40 +03002024 * connection manager to use. Can be called to the switch again after
2025 * resume from low power states to re-initialize it.
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002026 *
2027 * Return: %0 in case of success and negative errno in case of failure
2028 */
2029int tb_switch_configure(struct tb_switch *sw)
2030{
2031 struct tb *tb = sw->tb;
2032 u64 route;
2033 int ret;
2034
2035 route = tb_route(sw);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002036
Mika Westerbergb0407982019-12-17 15:33:40 +03002037 tb_dbg(tb, "%s Switch at %#llx (depth: %d, up port: %d)\n",
Mika Westerbergb2911a52019-12-06 18:36:07 +02002038 sw->config.enabled ? "restoring" : "initializing", route,
Mika Westerbergb0407982019-12-17 15:33:40 +03002039 tb_route_length(route), sw->config.upstream_port_number);
Andreas Noevera25c8b22014-06-03 22:04:02 +02002040
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002041 sw->config.enabled = 1;
2042
Mika Westerbergb0407982019-12-17 15:33:40 +03002043 if (tb_switch_is_usb4(sw)) {
2044 /*
2045 * For USB4 devices, we need to program the CM version
2046 * accordingly so that it knows to expose all the
2047 * additional capabilities.
2048 */
2049 sw->config.cmuv = USB4_VERSION_1_0;
Andreas Noevera25c8b22014-06-03 22:04:02 +02002050
Mika Westerbergb0407982019-12-17 15:33:40 +03002051 /* Enumerate the switch */
2052 ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2053 ROUTER_CS_1, 4);
2054 if (ret)
2055 return ret;
2056
2057 ret = usb4_switch_setup(sw);
Mika Westerbergb0407982019-12-17 15:33:40 +03002058 } else {
2059 if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL)
2060 tb_sw_warn(sw, "unknown switch vendor id %#x\n",
2061 sw->config.vendor_id);
2062
2063 if (!sw->cap_plug_events) {
2064 tb_sw_warn(sw, "cannot find TB_VSE_CAP_PLUG_EVENTS aborting\n");
2065 return -ENODEV;
2066 }
2067
2068 /* Enumerate the switch */
2069 ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2070 ROUTER_CS_1, 3);
Mika Westerbergb0407982019-12-17 15:33:40 +03002071 }
Mika Westerberge879a702018-10-11 12:33:08 +03002072 if (ret)
2073 return ret;
2074
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002075 return tb_plug_events_active(sw, true);
2076}
Andreas Noevera25c8b22014-06-03 22:04:02 +02002077
Aditya Pakki2cc12752019-03-20 10:57:54 -05002078static int tb_switch_set_uuid(struct tb_switch *sw)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002079{
Mika Westerbergb0407982019-12-17 15:33:40 +03002080 bool uid = false;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002081 u32 uuid[4];
Mika Westerberga9be5582019-01-09 16:42:12 +02002082 int ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002083
2084 if (sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02002085 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002086
Mika Westerbergb0407982019-12-17 15:33:40 +03002087 if (tb_switch_is_usb4(sw)) {
2088 ret = usb4_switch_read_uid(sw, &sw->uid);
2089 if (ret)
2090 return ret;
2091 uid = true;
2092 } else {
2093 /*
2094 * The newer controllers include fused UUID as part of
2095 * link controller specific registers
2096 */
2097 ret = tb_lc_read_uuid(sw, uuid);
2098 if (ret) {
2099 if (ret != -EINVAL)
2100 return ret;
2101 uid = true;
2102 }
2103 }
2104
2105 if (uid) {
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002106 /*
2107 * ICM generates UUID based on UID and fills the upper
2108 * two words with ones. This is not strictly following
2109 * UUID format but we want to be compatible with it so
2110 * we do the same here.
2111 */
2112 uuid[0] = sw->uid & 0xffffffff;
2113 uuid[1] = (sw->uid >> 32) & 0xffffffff;
2114 uuid[2] = 0xffffffff;
2115 uuid[3] = 0xffffffff;
Andreas Noevera25c8b22014-06-03 22:04:02 +02002116 }
2117
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002118 sw->uuid = kmemdup(uuid, sizeof(uuid), GFP_KERNEL);
Aditya Pakki2cc12752019-03-20 10:57:54 -05002119 if (!sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02002120 return -ENOMEM;
2121 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002122}
2123
Mika Westerberge6b245c2017-06-06 15:25:17 +03002124static int tb_switch_add_dma_port(struct tb_switch *sw)
Mika Westerberg3e136762017-06-06 15:25:14 +03002125{
Mika Westerberge6b245c2017-06-06 15:25:17 +03002126 u32 status;
2127 int ret;
2128
Mika Westerberg3e136762017-06-06 15:25:14 +03002129 switch (sw->generation) {
Mika Westerberg3e136762017-06-06 15:25:14 +03002130 case 2:
2131 /* Only root switch can be upgraded */
2132 if (tb_route(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03002133 return 0;
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002134
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002135 fallthrough;
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002136 case 3:
2137 ret = tb_switch_set_uuid(sw);
2138 if (ret)
2139 return ret;
Mika Westerberg3e136762017-06-06 15:25:14 +03002140 break;
2141
2142 default:
Mika Westerberge6b245c2017-06-06 15:25:17 +03002143 /*
2144 * DMA port is the only thing available when the switch
2145 * is in safe mode.
2146 */
2147 if (!sw->safe_mode)
2148 return 0;
2149 break;
Mika Westerberg3e136762017-06-06 15:25:14 +03002150 }
2151
Mika Westerberg3f415e52019-02-05 12:51:40 +03002152 /* Root switch DMA port requires running firmware */
Mika Westerbergf07a3602019-06-25 15:10:01 +03002153 if (!tb_route(sw) && !tb_switch_is_icm(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03002154 return 0;
2155
Mika Westerberg3e136762017-06-06 15:25:14 +03002156 sw->dma_port = dma_port_alloc(sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002157 if (!sw->dma_port)
2158 return 0;
2159
Mika Westerberg3f415e52019-02-05 12:51:40 +03002160 if (sw->no_nvm_upgrade)
2161 return 0;
2162
Mika Westerberge6b245c2017-06-06 15:25:17 +03002163 /*
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002164 * If there is status already set then authentication failed
2165 * when the dma_port_flash_update_auth() returned. Power cycling
2166 * is not needed (it was done already) so only thing we do here
2167 * is to unblock runtime PM of the root port.
2168 */
2169 nvm_get_auth_status(sw, &status);
2170 if (status) {
2171 if (!tb_route(sw))
Mika Westerbergb0407982019-12-17 15:33:40 +03002172 nvm_authenticate_complete_dma_port(sw);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002173 return 0;
2174 }
2175
2176 /*
Mika Westerberge6b245c2017-06-06 15:25:17 +03002177 * Check status of the previous flash authentication. If there
2178 * is one we need to power cycle the switch in any case to make
2179 * it functional again.
2180 */
2181 ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
2182 if (ret <= 0)
2183 return ret;
2184
Mika Westerberg1830b6e2018-11-26 12:47:46 +03002185 /* Now we can allow root port to suspend again */
2186 if (!tb_route(sw))
Mika Westerbergb0407982019-12-17 15:33:40 +03002187 nvm_authenticate_complete_dma_port(sw);
Mika Westerberg1830b6e2018-11-26 12:47:46 +03002188
Mika Westerberge6b245c2017-06-06 15:25:17 +03002189 if (status) {
2190 tb_sw_info(sw, "switch flash authentication failed\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002191 nvm_set_auth_status(sw, status);
2192 }
2193
2194 tb_sw_info(sw, "power cycling the switch now\n");
2195 dma_port_power_cycle(sw->dma_port);
2196
2197 /*
2198 * We return error here which causes the switch adding failure.
2199 * It should appear back after power cycle is complete.
2200 */
2201 return -ESHUTDOWN;
Mika Westerberg3e136762017-06-06 15:25:14 +03002202}
2203
Mika Westerberg0d46c082019-08-26 18:19:33 +03002204static void tb_switch_default_link_ports(struct tb_switch *sw)
2205{
2206 int i;
2207
2208 for (i = 1; i <= sw->config.max_port_number; i += 2) {
2209 struct tb_port *port = &sw->ports[i];
2210 struct tb_port *subordinate;
2211
2212 if (!tb_port_is_null(port))
2213 continue;
2214
2215 /* Check for the subordinate port */
2216 if (i == sw->config.max_port_number ||
2217 !tb_port_is_null(&sw->ports[i + 1]))
2218 continue;
2219
2220 /* Link them if not already done so (by DROM) */
2221 subordinate = &sw->ports[i + 1];
2222 if (!port->dual_link_port && !subordinate->dual_link_port) {
2223 port->link_nr = 0;
2224 port->dual_link_port = subordinate;
2225 subordinate->link_nr = 1;
2226 subordinate->dual_link_port = port;
2227
2228 tb_sw_dbg(sw, "linked ports %d <-> %d\n",
2229 port->port, subordinate->port);
2230 }
2231 }
2232}
2233
Mika Westerberg91c0c122019-03-21 19:03:00 +02002234static bool tb_switch_lane_bonding_possible(struct tb_switch *sw)
2235{
2236 const struct tb_port *up = tb_upstream_port(sw);
2237
2238 if (!up->dual_link_port || !up->dual_link_port->remote)
2239 return false;
2240
Mika Westerbergb0407982019-12-17 15:33:40 +03002241 if (tb_switch_is_usb4(sw))
2242 return usb4_switch_lane_bonding_possible(sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +02002243 return tb_lc_lane_bonding_possible(sw);
2244}
2245
2246static int tb_switch_update_link_attributes(struct tb_switch *sw)
2247{
2248 struct tb_port *up;
2249 bool change = false;
2250 int ret;
2251
2252 if (!tb_route(sw) || tb_switch_is_icm(sw))
2253 return 0;
2254
2255 up = tb_upstream_port(sw);
2256
2257 ret = tb_port_get_link_speed(up);
2258 if (ret < 0)
2259 return ret;
2260 if (sw->link_speed != ret)
2261 change = true;
2262 sw->link_speed = ret;
2263
2264 ret = tb_port_get_link_width(up);
2265 if (ret < 0)
2266 return ret;
2267 if (sw->link_width != ret)
2268 change = true;
2269 sw->link_width = ret;
2270
2271 /* Notify userspace that there is possible link attribute change */
2272 if (device_is_registered(&sw->dev) && change)
2273 kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
2274
2275 return 0;
2276}
2277
2278/**
2279 * tb_switch_lane_bonding_enable() - Enable lane bonding
2280 * @sw: Switch to enable lane bonding
2281 *
2282 * Connection manager can call this function to enable lane bonding of a
2283 * switch. If conditions are correct and both switches support the feature,
2284 * lanes are bonded. It is safe to call this to any switch.
2285 */
2286int tb_switch_lane_bonding_enable(struct tb_switch *sw)
2287{
2288 struct tb_switch *parent = tb_to_switch(sw->dev.parent);
2289 struct tb_port *up, *down;
2290 u64 route = tb_route(sw);
2291 int ret;
2292
2293 if (!route)
2294 return 0;
2295
2296 if (!tb_switch_lane_bonding_possible(sw))
2297 return 0;
2298
2299 up = tb_upstream_port(sw);
2300 down = tb_port_at(route, parent);
2301
2302 if (!tb_port_is_width_supported(up, 2) ||
2303 !tb_port_is_width_supported(down, 2))
2304 return 0;
2305
2306 ret = tb_port_lane_bonding_enable(up);
2307 if (ret) {
2308 tb_port_warn(up, "failed to enable lane bonding\n");
2309 return ret;
2310 }
2311
2312 ret = tb_port_lane_bonding_enable(down);
2313 if (ret) {
2314 tb_port_warn(down, "failed to enable lane bonding\n");
2315 tb_port_lane_bonding_disable(up);
2316 return ret;
2317 }
2318
2319 tb_switch_update_link_attributes(sw);
2320
2321 tb_sw_dbg(sw, "lane bonding enabled\n");
2322 return ret;
2323}
2324
2325/**
2326 * tb_switch_lane_bonding_disable() - Disable lane bonding
2327 * @sw: Switch whose lane bonding to disable
2328 *
2329 * Disables lane bonding between @sw and parent. This can be called even
2330 * if lanes were not bonded originally.
2331 */
2332void tb_switch_lane_bonding_disable(struct tb_switch *sw)
2333{
2334 struct tb_switch *parent = tb_to_switch(sw->dev.parent);
2335 struct tb_port *up, *down;
2336
2337 if (!tb_route(sw))
2338 return;
2339
2340 up = tb_upstream_port(sw);
2341 if (!up->bonded)
2342 return;
2343
2344 down = tb_port_at(tb_route(sw), parent);
2345
2346 tb_port_lane_bonding_disable(up);
2347 tb_port_lane_bonding_disable(down);
2348
2349 tb_switch_update_link_attributes(sw);
2350 tb_sw_dbg(sw, "lane bonding disabled\n");
2351}
2352
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002353/**
Mika Westerbergde462032020-04-02 14:50:52 +03002354 * tb_switch_configure_link() - Set link configured
2355 * @sw: Switch whose link is configured
2356 *
2357 * Sets the link upstream from @sw configured (from both ends) so that
2358 * it will not be disconnected when the domain exits sleep. Can be
2359 * called for any switch.
2360 *
2361 * It is recommended that this is called after lane bonding is enabled.
2362 *
2363 * Returns %0 on success and negative errno in case of error.
2364 */
2365int tb_switch_configure_link(struct tb_switch *sw)
2366{
Mika Westerberge28178b2020-04-02 12:42:44 +03002367 struct tb_port *up, *down;
2368 int ret;
2369
Mika Westerbergde462032020-04-02 14:50:52 +03002370 if (!tb_route(sw) || tb_switch_is_icm(sw))
2371 return 0;
2372
Mika Westerberge28178b2020-04-02 12:42:44 +03002373 up = tb_upstream_port(sw);
2374 if (tb_switch_is_usb4(up->sw))
2375 ret = usb4_port_configure(up);
2376 else
2377 ret = tb_lc_configure_port(up);
2378 if (ret)
2379 return ret;
2380
2381 down = up->remote;
2382 if (tb_switch_is_usb4(down->sw))
2383 return usb4_port_configure(down);
2384 return tb_lc_configure_port(down);
Mika Westerbergde462032020-04-02 14:50:52 +03002385}
2386
2387/**
2388 * tb_switch_unconfigure_link() - Unconfigure link
2389 * @sw: Switch whose link is unconfigured
2390 *
2391 * Sets the link unconfigured so the @sw will be disconnected if the
2392 * domain exists sleep.
2393 */
2394void tb_switch_unconfigure_link(struct tb_switch *sw)
2395{
Mika Westerberge28178b2020-04-02 12:42:44 +03002396 struct tb_port *up, *down;
2397
Mika Westerbergde462032020-04-02 14:50:52 +03002398 if (sw->is_unplugged)
2399 return;
2400 if (!tb_route(sw) || tb_switch_is_icm(sw))
2401 return;
2402
Mika Westerberge28178b2020-04-02 12:42:44 +03002403 up = tb_upstream_port(sw);
2404 if (tb_switch_is_usb4(up->sw))
2405 usb4_port_unconfigure(up);
Mika Westerbergde462032020-04-02 14:50:52 +03002406 else
Mika Westerberge28178b2020-04-02 12:42:44 +03002407 tb_lc_unconfigure_port(up);
2408
2409 down = up->remote;
2410 if (tb_switch_is_usb4(down->sw))
2411 usb4_port_unconfigure(down);
2412 else
2413 tb_lc_unconfigure_port(down);
Mika Westerbergde462032020-04-02 14:50:52 +03002414}
2415
2416/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002417 * tb_switch_add() - Add a switch to the domain
2418 * @sw: Switch to add
2419 *
2420 * This is the last step in adding switch to the domain. It will read
2421 * identification information from DROM and initializes ports so that
2422 * they can be used to connect other switches. The switch will be
2423 * exposed to the userspace when this function successfully returns. To
2424 * remove and release the switch, call tb_switch_remove().
2425 *
2426 * Return: %0 in case of success and negative errno in case of failure
2427 */
2428int tb_switch_add(struct tb_switch *sw)
2429{
2430 int i, ret;
Andreas Noeverca389f72014-06-03 22:04:04 +02002431
Mika Westerberg3e136762017-06-06 15:25:14 +03002432 /*
2433 * Initialize DMA control port now before we read DROM. Recent
2434 * host controllers have more complete DROM on NVM that includes
2435 * vendor and model identification strings which we then expose
2436 * to the userspace. NVM can be accessed through DMA
2437 * configuration based mailbox.
2438 */
Mika Westerberge6b245c2017-06-06 15:25:17 +03002439 ret = tb_switch_add_dma_port(sw);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002440 if (ret) {
2441 dev_err(&sw->dev, "failed to add DMA port\n");
Mika Westerbergf53e7672017-06-06 15:25:02 +03002442 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002443 }
Andreas Noever343fcb82014-06-12 23:11:47 +02002444
Mika Westerberge6b245c2017-06-06 15:25:17 +03002445 if (!sw->safe_mode) {
2446 /* read drom */
2447 ret = tb_drom_read(sw);
2448 if (ret) {
Mika Westerbergaf99f692019-08-27 15:18:20 +03002449 dev_err(&sw->dev, "reading DROM failed\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002450 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +03002451 }
Mika Westerbergdaa51402018-10-01 12:31:19 +03002452 tb_sw_dbg(sw, "uid: %#llx\n", sw->uid);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002453
Aditya Pakki2cc12752019-03-20 10:57:54 -05002454 ret = tb_switch_set_uuid(sw);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002455 if (ret) {
2456 dev_err(&sw->dev, "failed to set UUID\n");
Aditya Pakki2cc12752019-03-20 10:57:54 -05002457 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002458 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002459
2460 for (i = 0; i <= sw->config.max_port_number; i++) {
2461 if (sw->ports[i].disabled) {
Mika Westerbergdaa51402018-10-01 12:31:19 +03002462 tb_port_dbg(&sw->ports[i], "disabled by eeprom\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002463 continue;
2464 }
2465 ret = tb_init_port(&sw->ports[i]);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002466 if (ret) {
2467 dev_err(&sw->dev, "failed to initialize port %d\n", i);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002468 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002469 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002470 }
Mika Westerberg91c0c122019-03-21 19:03:00 +02002471
Mika Westerberg0d46c082019-08-26 18:19:33 +03002472 tb_switch_default_link_ports(sw);
2473
Mika Westerberg91c0c122019-03-21 19:03:00 +02002474 ret = tb_switch_update_link_attributes(sw);
2475 if (ret)
2476 return ret;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +03002477
2478 ret = tb_switch_tmu_init(sw);
2479 if (ret)
2480 return ret;
Andreas Noever343fcb82014-06-12 23:11:47 +02002481 }
2482
Mika Westerberge6b245c2017-06-06 15:25:17 +03002483 ret = device_add(&sw->dev);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002484 if (ret) {
2485 dev_err(&sw->dev, "failed to add device: %d\n", ret);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002486 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002487 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002488
Mika Westerberga83bc4a2018-10-01 12:31:20 +03002489 if (tb_route(sw)) {
2490 dev_info(&sw->dev, "new device found, vendor=%#x device=%#x\n",
2491 sw->vendor, sw->device);
2492 if (sw->vendor_name && sw->device_name)
2493 dev_info(&sw->dev, "%s %s\n", sw->vendor_name,
2494 sw->device_name);
2495 }
2496
Mika Westerberge6b245c2017-06-06 15:25:17 +03002497 ret = tb_switch_nvm_add(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002498 if (ret) {
Mika Westerbergaf99f692019-08-27 15:18:20 +03002499 dev_err(&sw->dev, "failed to add NVM devices\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002500 device_del(&sw->dev);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002501 return ret;
2502 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002503
Mika Westerbergb2911a52019-12-06 18:36:07 +02002504 /*
2505 * Thunderbolt routers do not generate wakeups themselves but
2506 * they forward wakeups from tunneled protocols, so enable it
2507 * here.
2508 */
2509 device_init_wakeup(&sw->dev, true);
2510
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002511 pm_runtime_set_active(&sw->dev);
2512 if (sw->rpm) {
2513 pm_runtime_set_autosuspend_delay(&sw->dev, TB_AUTOSUSPEND_DELAY);
2514 pm_runtime_use_autosuspend(&sw->dev);
2515 pm_runtime_mark_last_busy(&sw->dev);
2516 pm_runtime_enable(&sw->dev);
2517 pm_request_autosuspend(&sw->dev);
2518 }
2519
2520 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002521}
Andreas Noeverc90553b2014-06-03 22:04:11 +02002522
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002523/**
2524 * tb_switch_remove() - Remove and release a switch
2525 * @sw: Switch to remove
2526 *
2527 * This will remove the switch from the domain and release it after last
2528 * reference count drops to zero. If there are switches connected below
2529 * this switch, they will be removed as well.
2530 */
2531void tb_switch_remove(struct tb_switch *sw)
2532{
Mika Westerbergb433d012019-09-30 14:07:22 +03002533 struct tb_port *port;
Andreas Noeverca389f72014-06-03 22:04:04 +02002534
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002535 if (sw->rpm) {
2536 pm_runtime_get_sync(&sw->dev);
2537 pm_runtime_disable(&sw->dev);
2538 }
2539
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002540 /* port 0 is the switch itself and never has a remote */
Mika Westerbergb433d012019-09-30 14:07:22 +03002541 tb_switch_for_each_port(sw, port) {
2542 if (tb_port_has_remote(port)) {
2543 tb_switch_remove(port->remote->sw);
2544 port->remote = NULL;
2545 } else if (port->xdomain) {
2546 tb_xdomain_remove(port->xdomain);
2547 port->xdomain = NULL;
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02002548 }
Kranthi Kuntaladacb1282020-03-05 16:39:58 +02002549
2550 /* Remove any downstream retimers */
2551 tb_retimer_remove_all(port);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002552 }
2553
2554 if (!sw->is_unplugged)
2555 tb_plug_events_active(sw, false);
Mika Westerbergb0407982019-12-17 15:33:40 +03002556
Mika Westerberge6b245c2017-06-06 15:25:17 +03002557 tb_switch_nvm_remove(sw);
Mika Westerberga83bc4a2018-10-01 12:31:20 +03002558
2559 if (tb_route(sw))
2560 dev_info(&sw->dev, "device disconnected\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002561 device_unregister(&sw->dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02002562}
2563
Andreas Noever053596d2014-06-03 22:04:06 +02002564/**
Lukas Wunneraae20bb2016-03-20 13:57:20 +01002565 * tb_sw_set_unplugged() - set is_unplugged on switch and downstream switches
Andreas Noever053596d2014-06-03 22:04:06 +02002566 */
Lukas Wunneraae20bb2016-03-20 13:57:20 +01002567void tb_sw_set_unplugged(struct tb_switch *sw)
Andreas Noever053596d2014-06-03 22:04:06 +02002568{
Mika Westerbergb433d012019-09-30 14:07:22 +03002569 struct tb_port *port;
2570
Andreas Noever053596d2014-06-03 22:04:06 +02002571 if (sw == sw->tb->root_switch) {
2572 tb_sw_WARN(sw, "cannot unplug root switch\n");
2573 return;
2574 }
2575 if (sw->is_unplugged) {
2576 tb_sw_WARN(sw, "is_unplugged already set\n");
2577 return;
2578 }
2579 sw->is_unplugged = true;
Mika Westerbergb433d012019-09-30 14:07:22 +03002580 tb_switch_for_each_port(sw, port) {
2581 if (tb_port_has_remote(port))
2582 tb_sw_set_unplugged(port->remote->sw);
2583 else if (port->xdomain)
2584 port->xdomain->is_unplugged = true;
Andreas Noever053596d2014-06-03 22:04:06 +02002585 }
2586}
2587
Mika Westerbergb2911a52019-12-06 18:36:07 +02002588static int tb_switch_set_wake(struct tb_switch *sw, unsigned int flags)
2589{
2590 if (flags)
2591 tb_sw_dbg(sw, "enabling wakeup: %#x\n", flags);
2592 else
2593 tb_sw_dbg(sw, "disabling wakeup\n");
2594
2595 if (tb_switch_is_usb4(sw))
2596 return usb4_switch_set_wake(sw, flags);
2597 return tb_lc_set_wake(sw, flags);
2598}
2599
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002600int tb_switch_resume(struct tb_switch *sw)
2601{
Mika Westerbergb433d012019-09-30 14:07:22 +03002602 struct tb_port *port;
2603 int err;
2604
Mika Westerbergdaa51402018-10-01 12:31:19 +03002605 tb_sw_dbg(sw, "resuming switch\n");
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002606
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03002607 /*
2608 * Check for UID of the connected switches except for root
2609 * switch which we assume cannot be removed.
2610 */
2611 if (tb_route(sw)) {
2612 u64 uid;
2613
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002614 /*
2615 * Check first that we can still read the switch config
2616 * space. It may be that there is now another domain
2617 * connected.
2618 */
2619 err = tb_cfg_get_upstream_port(sw->tb->ctl, tb_route(sw));
2620 if (err < 0) {
2621 tb_sw_info(sw, "switch not present anymore\n");
2622 return err;
2623 }
2624
Mika Westerbergb0407982019-12-17 15:33:40 +03002625 if (tb_switch_is_usb4(sw))
2626 err = usb4_switch_read_uid(sw, &uid);
2627 else
2628 err = tb_drom_read_uid_only(sw, &uid);
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03002629 if (err) {
2630 tb_sw_warn(sw, "uid read failed\n");
2631 return err;
2632 }
2633 if (sw->uid != uid) {
2634 tb_sw_info(sw,
2635 "changed while suspended (uid %#llx -> %#llx)\n",
2636 sw->uid, uid);
2637 return -ENODEV;
2638 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002639 }
2640
Mika Westerbergb0407982019-12-17 15:33:40 +03002641 err = tb_switch_configure(sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002642 if (err)
2643 return err;
2644
Mika Westerbergb2911a52019-12-06 18:36:07 +02002645 /* Disable wakes */
2646 tb_switch_set_wake(sw, 0);
2647
Mika Westerberg8145c432020-03-27 17:20:31 +02002648 err = tb_switch_tmu_init(sw);
2649 if (err)
2650 return err;
2651
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002652 /* check for surviving downstream switches */
Mika Westerbergb433d012019-09-30 14:07:22 +03002653 tb_switch_for_each_port(sw, port) {
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002654 if (!tb_port_has_remote(port) && !port->xdomain)
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002655 continue;
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02002656
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002657 if (tb_wait_for_port(port, true) <= 0) {
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002658 tb_port_warn(port,
2659 "lost during suspend, disconnecting\n");
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002660 if (tb_port_has_remote(port))
2661 tb_sw_set_unplugged(port->remote->sw);
2662 else if (port->xdomain)
2663 port->xdomain->is_unplugged = true;
Mika Westerbergb0407982019-12-17 15:33:40 +03002664 } else if (tb_port_has_remote(port) || port->xdomain) {
2665 /*
2666 * Always unlock the port so the downstream
2667 * switch/domain is accessible.
2668 */
2669 if (tb_port_unlock(port))
2670 tb_port_warn(port, "failed to unlock port\n");
2671 if (port->remote && tb_switch_resume(port->remote->sw)) {
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002672 tb_port_warn(port,
2673 "lost during suspend, disconnecting\n");
2674 tb_sw_set_unplugged(port->remote->sw);
2675 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002676 }
2677 }
2678 return 0;
2679}
2680
Mika Westerberg6ac6fae2020-06-05 14:25:02 +03002681/**
2682 * tb_switch_suspend() - Put a switch to sleep
2683 * @sw: Switch to suspend
2684 * @runtime: Is this runtime suspend or system sleep
2685 *
2686 * Suspends router and all its children. Enables wakes according to
2687 * value of @runtime and then sets sleep bit for the router. If @sw is
2688 * host router the domain is ready to go to sleep once this function
2689 * returns.
2690 */
2691void tb_switch_suspend(struct tb_switch *sw, bool runtime)
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002692{
Mika Westerbergb2911a52019-12-06 18:36:07 +02002693 unsigned int flags = 0;
Mika Westerbergb433d012019-09-30 14:07:22 +03002694 struct tb_port *port;
2695 int err;
2696
Mika Westerberg6ac6fae2020-06-05 14:25:02 +03002697 tb_sw_dbg(sw, "suspending switch\n");
2698
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002699 err = tb_plug_events_active(sw, false);
2700 if (err)
2701 return;
2702
Mika Westerbergb433d012019-09-30 14:07:22 +03002703 tb_switch_for_each_port(sw, port) {
2704 if (tb_port_has_remote(port))
Mika Westerberg6ac6fae2020-06-05 14:25:02 +03002705 tb_switch_suspend(port->remote->sw, runtime);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002706 }
Mika Westerberg5480dfc2019-01-09 17:25:43 +02002707
Mika Westerberg6ac6fae2020-06-05 14:25:02 +03002708 if (runtime) {
2709 /* Trigger wake when something is plugged in/out */
2710 flags |= TB_WAKE_ON_CONNECT | TB_WAKE_ON_DISCONNECT;
2711 flags |= TB_WAKE_ON_USB4 | TB_WAKE_ON_USB3 | TB_WAKE_ON_PCIE;
2712 } else if (device_may_wakeup(&sw->dev)) {
2713 flags |= TB_WAKE_ON_USB4 | TB_WAKE_ON_USB3 | TB_WAKE_ON_PCIE;
2714 }
Mika Westerbergb2911a52019-12-06 18:36:07 +02002715
2716 tb_switch_set_wake(sw, flags);
2717
Mika Westerbergb0407982019-12-17 15:33:40 +03002718 if (tb_switch_is_usb4(sw))
2719 usb4_switch_set_sleep(sw);
2720 else
2721 tb_lc_set_sleep(sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002722}
Mika Westerbergf67cf492017-06-06 15:25:16 +03002723
Mika Westerberg8afe9092019-03-26 15:52:30 +03002724/**
2725 * tb_switch_query_dp_resource() - Query availability of DP resource
2726 * @sw: Switch whose DP resource is queried
2727 * @in: DP IN port
2728 *
2729 * Queries availability of DP resource for DP tunneling using switch
2730 * specific means. Returns %true if resource is available.
2731 */
2732bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in)
2733{
Mika Westerbergb0407982019-12-17 15:33:40 +03002734 if (tb_switch_is_usb4(sw))
2735 return usb4_switch_query_dp_resource(sw, in);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002736 return tb_lc_dp_sink_query(sw, in);
2737}
2738
2739/**
2740 * tb_switch_alloc_dp_resource() - Allocate available DP resource
2741 * @sw: Switch whose DP resource is allocated
2742 * @in: DP IN port
2743 *
2744 * Allocates DP resource for DP tunneling. The resource must be
2745 * available for this to succeed (see tb_switch_query_dp_resource()).
2746 * Returns %0 in success and negative errno otherwise.
2747 */
2748int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
2749{
Mika Westerbergb0407982019-12-17 15:33:40 +03002750 if (tb_switch_is_usb4(sw))
2751 return usb4_switch_alloc_dp_resource(sw, in);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002752 return tb_lc_dp_sink_alloc(sw, in);
2753}
2754
2755/**
2756 * tb_switch_dealloc_dp_resource() - De-allocate DP resource
2757 * @sw: Switch whose DP resource is de-allocated
2758 * @in: DP IN port
2759 *
2760 * De-allocates DP resource that was previously allocated for DP
2761 * tunneling.
2762 */
2763void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
2764{
Mika Westerbergb0407982019-12-17 15:33:40 +03002765 int ret;
2766
2767 if (tb_switch_is_usb4(sw))
2768 ret = usb4_switch_dealloc_dp_resource(sw, in);
2769 else
2770 ret = tb_lc_dp_sink_dealloc(sw, in);
2771
2772 if (ret)
Mika Westerberg8afe9092019-03-26 15:52:30 +03002773 tb_sw_warn(sw, "failed to de-allocate DP resource for port %d\n",
2774 in->port);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002775}
2776
Mika Westerbergf67cf492017-06-06 15:25:16 +03002777struct tb_sw_lookup {
2778 struct tb *tb;
2779 u8 link;
2780 u8 depth;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002781 const uuid_t *uuid;
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002782 u64 route;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002783};
2784
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002785static int tb_switch_match(struct device *dev, const void *data)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002786{
2787 struct tb_switch *sw = tb_to_switch(dev);
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002788 const struct tb_sw_lookup *lookup = data;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002789
2790 if (!sw)
2791 return 0;
2792 if (sw->tb != lookup->tb)
2793 return 0;
2794
2795 if (lookup->uuid)
2796 return !memcmp(sw->uuid, lookup->uuid, sizeof(*lookup->uuid));
2797
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002798 if (lookup->route) {
2799 return sw->config.route_lo == lower_32_bits(lookup->route) &&
2800 sw->config.route_hi == upper_32_bits(lookup->route);
2801 }
2802
Mika Westerbergf67cf492017-06-06 15:25:16 +03002803 /* Root switch is matched only by depth */
2804 if (!lookup->depth)
2805 return !sw->depth;
2806
2807 return sw->link == lookup->link && sw->depth == lookup->depth;
2808}
2809
2810/**
2811 * tb_switch_find_by_link_depth() - Find switch by link and depth
2812 * @tb: Domain the switch belongs
2813 * @link: Link number the switch is connected
2814 * @depth: Depth of the switch in link
2815 *
2816 * Returned switch has reference count increased so the caller needs to
2817 * call tb_switch_put() when done with the switch.
2818 */
2819struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link, u8 depth)
2820{
2821 struct tb_sw_lookup lookup;
2822 struct device *dev;
2823
2824 memset(&lookup, 0, sizeof(lookup));
2825 lookup.tb = tb;
2826 lookup.link = link;
2827 lookup.depth = depth;
2828
2829 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2830 if (dev)
2831 return tb_to_switch(dev);
2832
2833 return NULL;
2834}
2835
2836/**
Radion Mirchevsky432019d2017-10-04 15:07:40 +03002837 * tb_switch_find_by_uuid() - Find switch by UUID
Mika Westerbergf67cf492017-06-06 15:25:16 +03002838 * @tb: Domain the switch belongs
2839 * @uuid: UUID to look for
2840 *
2841 * Returned switch has reference count increased so the caller needs to
2842 * call tb_switch_put() when done with the switch.
2843 */
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002844struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002845{
2846 struct tb_sw_lookup lookup;
2847 struct device *dev;
2848
2849 memset(&lookup, 0, sizeof(lookup));
2850 lookup.tb = tb;
2851 lookup.uuid = uuid;
2852
2853 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2854 if (dev)
2855 return tb_to_switch(dev);
2856
2857 return NULL;
2858}
Mika Westerberge6b245c2017-06-06 15:25:17 +03002859
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002860/**
2861 * tb_switch_find_by_route() - Find switch by route string
2862 * @tb: Domain the switch belongs
2863 * @route: Route string to look for
2864 *
2865 * Returned switch has reference count increased so the caller needs to
2866 * call tb_switch_put() when done with the switch.
2867 */
2868struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route)
2869{
2870 struct tb_sw_lookup lookup;
2871 struct device *dev;
2872
2873 if (!route)
2874 return tb_switch_get(tb->root_switch);
2875
2876 memset(&lookup, 0, sizeof(lookup));
2877 lookup.tb = tb;
2878 lookup.route = route;
2879
2880 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2881 if (dev)
2882 return tb_to_switch(dev);
2883
2884 return NULL;
2885}
2886
Mika Westerberg386e5e22019-12-17 15:33:37 +03002887/**
2888 * tb_switch_find_port() - return the first port of @type on @sw or NULL
2889 * @sw: Switch to find the port from
2890 * @type: Port type to look for
2891 */
2892struct tb_port *tb_switch_find_port(struct tb_switch *sw,
2893 enum tb_port_type type)
2894{
2895 struct tb_port *port;
2896
2897 tb_switch_for_each_port(sw, port) {
2898 if (port->config.type == type)
2899 return port;
2900 }
2901
2902 return NULL;
2903}