blob: 712395f518b82225e06f58699f23c2fca470cb4d [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 Westerberg8f57d472019-09-06 11:59:00 +0300604 nfc_credits = port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300605 nfc_credits += credits;
606
Mika Westerberg8f57d472019-09-06 11:59:00 +0300607 tb_port_dbg(port, "adding %d NFC credits to %lu", credits,
608 port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK);
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300609
Mika Westerberg8f57d472019-09-06 11:59:00 +0300610 port->config.nfc_credits &= ~ADP_CS_4_NFC_BUFFERS_MASK;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300611 port->config.nfc_credits |= nfc_credits;
612
Andreas Noever520b6702014-06-03 22:04:07 +0200613 return tb_port_write(port, &port->config.nfc_credits,
Mika Westerberg8f57d472019-09-06 11:59:00 +0300614 TB_CFG_PORT, ADP_CS_4, 1);
Andreas Noever520b6702014-06-03 22:04:07 +0200615}
616
617/**
Mika Westerberg44242d62018-09-28 16:35:32 +0300618 * tb_port_set_initial_credits() - Set initial port link credits allocated
619 * @port: Port to set the initial credits
620 * @credits: Number of credits to to allocate
621 *
622 * Set initial credits value to be used for ingress shared buffering.
623 */
624int tb_port_set_initial_credits(struct tb_port *port, u32 credits)
625{
626 u32 data;
627 int ret;
628
Mika Westerberg8f57d472019-09-06 11:59:00 +0300629 ret = tb_port_read(port, &data, TB_CFG_PORT, ADP_CS_5, 1);
Mika Westerberg44242d62018-09-28 16:35:32 +0300630 if (ret)
631 return ret;
632
Mika Westerberg8f57d472019-09-06 11:59:00 +0300633 data &= ~ADP_CS_5_LCA_MASK;
634 data |= (credits << ADP_CS_5_LCA_SHIFT) & ADP_CS_5_LCA_MASK;
Mika Westerberg44242d62018-09-28 16:35:32 +0300635
Mika Westerberg8f57d472019-09-06 11:59:00 +0300636 return tb_port_write(port, &data, TB_CFG_PORT, ADP_CS_5, 1);
Mika Westerberg44242d62018-09-28 16:35:32 +0300637}
638
639/**
Andreas Noever520b6702014-06-03 22:04:07 +0200640 * tb_port_clear_counter() - clear a counter in TB_CFG_COUNTER
641 *
642 * Return: Returns 0 on success or an error code on failure.
643 */
644int tb_port_clear_counter(struct tb_port *port, int counter)
645{
646 u32 zero[3] = { 0, 0, 0 };
Mika Westerberg62efe692018-09-17 16:32:13 +0300647 tb_port_dbg(port, "clearing counter %d\n", counter);
Andreas Noever520b6702014-06-03 22:04:07 +0200648 return tb_port_write(port, zero, TB_CFG_COUNTERS, 3 * counter, 3);
649}
650
651/**
Mika Westerbergb0407982019-12-17 15:33:40 +0300652 * tb_port_unlock() - Unlock downstream port
653 * @port: Port to unlock
654 *
655 * Needed for USB4 but can be called for any CIO/USB4 ports. Makes the
656 * downstream router accessible for CM.
657 */
658int tb_port_unlock(struct tb_port *port)
659{
660 if (tb_switch_is_icm(port->sw))
661 return 0;
662 if (!tb_port_is_null(port))
663 return -EINVAL;
664 if (tb_switch_is_usb4(port->sw))
665 return usb4_port_unlock(port);
666 return 0;
667}
668
669/**
Andreas Noevera25c8b22014-06-03 22:04:02 +0200670 * tb_init_port() - initialize a port
671 *
672 * This is a helper method for tb_switch_alloc. Does not check or initialize
673 * any downstream switches.
674 *
675 * Return: Returns 0 on success or an error code on failure.
676 */
Andreas Noever343fcb82014-06-12 23:11:47 +0200677static int tb_init_port(struct tb_port *port)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200678{
679 int res;
Andreas Noever9da672a2014-06-03 22:04:05 +0200680 int cap;
Andreas Noever343fcb82014-06-12 23:11:47 +0200681
Andreas Noevera25c8b22014-06-03 22:04:02 +0200682 res = tb_port_read(port, &port->config, TB_CFG_PORT, 0, 8);
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300683 if (res) {
684 if (res == -ENODEV) {
685 tb_dbg(port->sw->tb, " Port %d: not implemented\n",
686 port->port);
687 return 0;
688 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200689 return res;
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300690 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200691
Andreas Noever9da672a2014-06-03 22:04:05 +0200692 /* Port 0 is the switch itself and has no PHY. */
Andreas Noever343fcb82014-06-12 23:11:47 +0200693 if (port->config.type == TB_TYPE_PORT && port->port != 0) {
Mika Westerbergda2da042017-06-06 15:24:58 +0300694 cap = tb_port_find_cap(port, TB_PORT_CAP_PHY);
Andreas Noever9da672a2014-06-03 22:04:05 +0200695
696 if (cap > 0)
697 port->cap_phy = cap;
698 else
699 tb_port_WARN(port, "non switch port without a PHY\n");
Mika Westerbergb0407982019-12-17 15:33:40 +0300700
701 cap = tb_port_find_cap(port, TB_PORT_CAP_USB4);
702 if (cap > 0)
703 port->cap_usb4 = cap;
Mika Westerberg56183c82017-02-19 10:39:34 +0200704 } else if (port->port != 0) {
705 cap = tb_port_find_cap(port, TB_PORT_CAP_ADAP);
706 if (cap > 0)
707 port->cap_adap = cap;
Andreas Noever9da672a2014-06-03 22:04:05 +0200708 }
709
Andreas Noever343fcb82014-06-12 23:11:47 +0200710 tb_dump_port(port->sw->tb, &port->config);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200711
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200712 /* Control port does not need HopID allocation */
713 if (port->port) {
714 ida_init(&port->in_hopids);
715 ida_init(&port->out_hopids);
716 }
717
Mika Westerberg8afe9092019-03-26 15:52:30 +0300718 INIT_LIST_HEAD(&port->list);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200719 return 0;
720
721}
722
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200723static int tb_port_alloc_hopid(struct tb_port *port, bool in, int min_hopid,
724 int max_hopid)
725{
726 int port_max_hopid;
727 struct ida *ida;
728
729 if (in) {
730 port_max_hopid = port->config.max_in_hop_id;
731 ida = &port->in_hopids;
732 } else {
733 port_max_hopid = port->config.max_out_hop_id;
734 ida = &port->out_hopids;
735 }
736
Mika Westerberg12676422020-06-01 12:47:07 +0300737 /*
738 * NHI can use HopIDs 1-max for other adapters HopIDs 0-7 are
739 * reserved.
740 */
741 if (port->config.type != TB_TYPE_NHI && min_hopid < TB_PATH_MIN_HOPID)
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200742 min_hopid = TB_PATH_MIN_HOPID;
743
744 if (max_hopid < 0 || max_hopid > port_max_hopid)
745 max_hopid = port_max_hopid;
746
747 return ida_simple_get(ida, min_hopid, max_hopid + 1, GFP_KERNEL);
748}
749
750/**
751 * tb_port_alloc_in_hopid() - Allocate input HopID from port
752 * @port: Port to allocate HopID for
753 * @min_hopid: Minimum acceptable input HopID
754 * @max_hopid: Maximum acceptable input HopID
755 *
756 * Return: HopID between @min_hopid and @max_hopid or negative errno in
757 * case of error.
758 */
759int tb_port_alloc_in_hopid(struct tb_port *port, int min_hopid, int max_hopid)
760{
761 return tb_port_alloc_hopid(port, true, min_hopid, max_hopid);
762}
763
764/**
765 * tb_port_alloc_out_hopid() - Allocate output HopID from port
766 * @port: Port to allocate HopID for
767 * @min_hopid: Minimum acceptable output HopID
768 * @max_hopid: Maximum acceptable output HopID
769 *
770 * Return: HopID between @min_hopid and @max_hopid or negative errno in
771 * case of error.
772 */
773int tb_port_alloc_out_hopid(struct tb_port *port, int min_hopid, int max_hopid)
774{
775 return tb_port_alloc_hopid(port, false, min_hopid, max_hopid);
776}
777
778/**
779 * tb_port_release_in_hopid() - Release allocated input HopID from port
780 * @port: Port whose HopID to release
781 * @hopid: HopID to release
782 */
783void tb_port_release_in_hopid(struct tb_port *port, int hopid)
784{
785 ida_simple_remove(&port->in_hopids, hopid);
786}
787
788/**
789 * tb_port_release_out_hopid() - Release allocated output HopID from port
790 * @port: Port whose HopID to release
791 * @hopid: HopID to release
792 */
793void tb_port_release_out_hopid(struct tb_port *port, int hopid)
794{
795 ida_simple_remove(&port->out_hopids, hopid);
796}
797
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300798static inline bool tb_switch_is_reachable(const struct tb_switch *parent,
799 const struct tb_switch *sw)
800{
801 u64 mask = (1ULL << parent->config.depth * 8) - 1;
802 return (tb_route(parent) & mask) == (tb_route(sw) & mask);
803}
804
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200805/**
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200806 * tb_next_port_on_path() - Return next port for given port on a path
807 * @start: Start port of the walk
808 * @end: End port of the walk
809 * @prev: Previous port (%NULL if this is the first)
810 *
811 * This function can be used to walk from one port to another if they
812 * are connected through zero or more switches. If the @prev is dual
813 * link port, the function follows that link and returns another end on
814 * that same link.
815 *
816 * If the @end port has been reached, return %NULL.
817 *
818 * Domain tb->lock must be held when this function is called.
819 */
820struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
821 struct tb_port *prev)
822{
823 struct tb_port *next;
824
825 if (!prev)
826 return start;
827
828 if (prev->sw == end->sw) {
829 if (prev == end)
830 return NULL;
831 return end;
832 }
833
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300834 if (tb_switch_is_reachable(prev->sw, end->sw)) {
835 next = tb_port_at(tb_route(end->sw), prev->sw);
836 /* Walk down the topology if next == prev */
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200837 if (prev->remote &&
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300838 (next == prev || next->dual_link_port == prev))
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200839 next = prev->remote;
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200840 } else {
841 if (tb_is_upstream_port(prev)) {
842 next = prev->remote;
843 } else {
844 next = tb_upstream_port(prev->sw);
845 /*
846 * Keep the same link if prev and next are both
847 * dual link ports.
848 */
849 if (next->dual_link_port &&
850 next->link_nr != prev->link_nr) {
851 next = next->dual_link_port;
852 }
853 }
854 }
855
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300856 return next != prev ? next : NULL;
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200857}
858
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300859/**
860 * tb_port_get_link_speed() - Get current link speed
861 * @port: Port to check (USB4 or CIO)
862 *
863 * Returns link speed in Gb/s or negative errno in case of failure.
864 */
865int tb_port_get_link_speed(struct tb_port *port)
Mika Westerberg91c0c122019-03-21 19:03:00 +0200866{
867 u32 val, speed;
868 int ret;
869
870 if (!port->cap_phy)
871 return -EINVAL;
872
873 ret = tb_port_read(port, &val, TB_CFG_PORT,
874 port->cap_phy + LANE_ADP_CS_1, 1);
875 if (ret)
876 return ret;
877
878 speed = (val & LANE_ADP_CS_1_CURRENT_SPEED_MASK) >>
879 LANE_ADP_CS_1_CURRENT_SPEED_SHIFT;
880 return speed == LANE_ADP_CS_1_CURRENT_SPEED_GEN3 ? 20 : 10;
881}
882
883static int tb_port_get_link_width(struct tb_port *port)
884{
885 u32 val;
886 int ret;
887
888 if (!port->cap_phy)
889 return -EINVAL;
890
891 ret = tb_port_read(port, &val, TB_CFG_PORT,
892 port->cap_phy + LANE_ADP_CS_1, 1);
893 if (ret)
894 return ret;
895
896 return (val & LANE_ADP_CS_1_CURRENT_WIDTH_MASK) >>
897 LANE_ADP_CS_1_CURRENT_WIDTH_SHIFT;
898}
899
900static bool tb_port_is_width_supported(struct tb_port *port, int width)
901{
902 u32 phy, widths;
903 int ret;
904
905 if (!port->cap_phy)
906 return false;
907
908 ret = tb_port_read(port, &phy, TB_CFG_PORT,
909 port->cap_phy + LANE_ADP_CS_0, 1);
910 if (ret)
Dan Carpentere9d0e752020-03-03 13:17:16 +0300911 return false;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200912
913 widths = (phy & LANE_ADP_CS_0_SUPPORTED_WIDTH_MASK) >>
914 LANE_ADP_CS_0_SUPPORTED_WIDTH_SHIFT;
915
916 return !!(widths & width);
917}
918
919static int tb_port_set_link_width(struct tb_port *port, unsigned int width)
920{
921 u32 val;
922 int ret;
923
924 if (!port->cap_phy)
925 return -EINVAL;
926
927 ret = tb_port_read(port, &val, TB_CFG_PORT,
928 port->cap_phy + LANE_ADP_CS_1, 1);
929 if (ret)
930 return ret;
931
932 val &= ~LANE_ADP_CS_1_TARGET_WIDTH_MASK;
933 switch (width) {
934 case 1:
935 val |= LANE_ADP_CS_1_TARGET_WIDTH_SINGLE <<
936 LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
937 break;
938 case 2:
939 val |= LANE_ADP_CS_1_TARGET_WIDTH_DUAL <<
940 LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
941 break;
942 default:
943 return -EINVAL;
944 }
945
946 val |= LANE_ADP_CS_1_LB;
947
948 return tb_port_write(port, &val, TB_CFG_PORT,
949 port->cap_phy + LANE_ADP_CS_1, 1);
950}
951
952static int tb_port_lane_bonding_enable(struct tb_port *port)
953{
954 int ret;
955
956 /*
957 * Enable lane bonding for both links if not already enabled by
958 * for example the boot firmware.
959 */
960 ret = tb_port_get_link_width(port);
961 if (ret == 1) {
962 ret = tb_port_set_link_width(port, 2);
963 if (ret)
964 return ret;
965 }
966
967 ret = tb_port_get_link_width(port->dual_link_port);
968 if (ret == 1) {
969 ret = tb_port_set_link_width(port->dual_link_port, 2);
970 if (ret) {
971 tb_port_set_link_width(port, 1);
972 return ret;
973 }
974 }
975
976 port->bonded = true;
977 port->dual_link_port->bonded = true;
978
979 return 0;
980}
981
982static void tb_port_lane_bonding_disable(struct tb_port *port)
983{
984 port->dual_link_port->bonded = false;
985 port->bonded = false;
986
987 tb_port_set_link_width(port->dual_link_port, 1);
988 tb_port_set_link_width(port, 1);
989}
990
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200991/**
Mika Westerberge78db6f2017-10-12 16:45:50 +0300992 * tb_port_is_enabled() - Is the adapter port enabled
993 * @port: Port to check
994 */
995bool tb_port_is_enabled(struct tb_port *port)
996{
997 switch (port->config.type) {
998 case TB_TYPE_PCIE_UP:
999 case TB_TYPE_PCIE_DOWN:
1000 return tb_pci_port_is_enabled(port);
1001
Mika Westerberg4f807e42018-09-17 16:30:49 +03001002 case TB_TYPE_DP_HDMI_IN:
1003 case TB_TYPE_DP_HDMI_OUT:
1004 return tb_dp_port_is_enabled(port);
1005
Rajmohan Manie6f81852019-12-17 15:33:44 +03001006 case TB_TYPE_USB3_UP:
1007 case TB_TYPE_USB3_DOWN:
1008 return tb_usb3_port_is_enabled(port);
1009
Mika Westerberge78db6f2017-10-12 16:45:50 +03001010 default:
1011 return false;
1012 }
1013}
1014
1015/**
Rajmohan Manie6f81852019-12-17 15:33:44 +03001016 * tb_usb3_port_is_enabled() - Is the USB3 adapter port enabled
1017 * @port: USB3 adapter port to check
1018 */
1019bool tb_usb3_port_is_enabled(struct tb_port *port)
1020{
1021 u32 data;
1022
1023 if (tb_port_read(port, &data, TB_CFG_PORT,
1024 port->cap_adap + ADP_USB3_CS_0, 1))
1025 return false;
1026
1027 return !!(data & ADP_USB3_CS_0_PE);
1028}
1029
1030/**
1031 * tb_usb3_port_enable() - Enable USB3 adapter port
1032 * @port: USB3 adapter port to enable
1033 * @enable: Enable/disable the USB3 adapter
1034 */
1035int tb_usb3_port_enable(struct tb_port *port, bool enable)
1036{
1037 u32 word = enable ? (ADP_USB3_CS_0_PE | ADP_USB3_CS_0_V)
1038 : ADP_USB3_CS_0_V;
1039
1040 if (!port->cap_adap)
1041 return -ENXIO;
1042 return tb_port_write(port, &word, TB_CFG_PORT,
1043 port->cap_adap + ADP_USB3_CS_0, 1);
1044}
1045
1046/**
Mika Westerberg0414bec2017-02-19 23:43:26 +02001047 * tb_pci_port_is_enabled() - Is the PCIe adapter port enabled
1048 * @port: PCIe port to check
1049 */
1050bool tb_pci_port_is_enabled(struct tb_port *port)
1051{
1052 u32 data;
1053
Mika Westerberg778bfca2019-09-06 12:05:24 +03001054 if (tb_port_read(port, &data, TB_CFG_PORT,
1055 port->cap_adap + ADP_PCIE_CS_0, 1))
Mika Westerberg0414bec2017-02-19 23:43:26 +02001056 return false;
1057
Mika Westerberg778bfca2019-09-06 12:05:24 +03001058 return !!(data & ADP_PCIE_CS_0_PE);
Mika Westerberg0414bec2017-02-19 23:43:26 +02001059}
1060
1061/**
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001062 * tb_pci_port_enable() - Enable PCIe adapter port
1063 * @port: PCIe port to enable
1064 * @enable: Enable/disable the PCIe adapter
1065 */
1066int tb_pci_port_enable(struct tb_port *port, bool enable)
1067{
Mika Westerberg778bfca2019-09-06 12:05:24 +03001068 u32 word = enable ? ADP_PCIE_CS_0_PE : 0x0;
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001069 if (!port->cap_adap)
1070 return -ENXIO;
Mika Westerberg778bfca2019-09-06 12:05:24 +03001071 return tb_port_write(port, &word, TB_CFG_PORT,
1072 port->cap_adap + ADP_PCIE_CS_0, 1);
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001073}
1074
Mika Westerberg4f807e42018-09-17 16:30:49 +03001075/**
1076 * tb_dp_port_hpd_is_active() - Is HPD already active
1077 * @port: DP out port to check
1078 *
1079 * Checks if the DP OUT adapter port has HDP bit already set.
1080 */
1081int tb_dp_port_hpd_is_active(struct tb_port *port)
1082{
1083 u32 data;
1084 int ret;
1085
Mika Westerberg98176382019-09-06 11:32:15 +03001086 ret = tb_port_read(port, &data, TB_CFG_PORT,
1087 port->cap_adap + ADP_DP_CS_2, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001088 if (ret)
1089 return ret;
1090
Mika Westerberg98176382019-09-06 11:32:15 +03001091 return !!(data & ADP_DP_CS_2_HDP);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001092}
1093
1094/**
1095 * tb_dp_port_hpd_clear() - Clear HPD from DP IN port
1096 * @port: Port to clear HPD
1097 *
1098 * If the DP IN port has HDP set, this function can be used to clear it.
1099 */
1100int tb_dp_port_hpd_clear(struct tb_port *port)
1101{
1102 u32 data;
1103 int ret;
1104
Mika Westerberg98176382019-09-06 11:32:15 +03001105 ret = tb_port_read(port, &data, TB_CFG_PORT,
1106 port->cap_adap + ADP_DP_CS_3, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001107 if (ret)
1108 return ret;
1109
Mika Westerberg98176382019-09-06 11:32:15 +03001110 data |= ADP_DP_CS_3_HDPC;
1111 return tb_port_write(port, &data, TB_CFG_PORT,
1112 port->cap_adap + ADP_DP_CS_3, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001113}
1114
1115/**
1116 * tb_dp_port_set_hops() - Set video/aux Hop IDs for DP port
1117 * @port: DP IN/OUT port to set hops
1118 * @video: Video Hop ID
1119 * @aux_tx: AUX TX Hop ID
1120 * @aux_rx: AUX RX Hop ID
1121 *
1122 * Programs specified Hop IDs for DP IN/OUT port.
1123 */
1124int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
1125 unsigned int aux_tx, unsigned int aux_rx)
1126{
1127 u32 data[2];
1128 int ret;
1129
Mika Westerberg98176382019-09-06 11:32:15 +03001130 ret = tb_port_read(port, data, TB_CFG_PORT,
1131 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001132 if (ret)
1133 return ret;
1134
Mika Westerberg98176382019-09-06 11:32:15 +03001135 data[0] &= ~ADP_DP_CS_0_VIDEO_HOPID_MASK;
1136 data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
1137 data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001138
Mika Westerberg98176382019-09-06 11:32:15 +03001139 data[0] |= (video << ADP_DP_CS_0_VIDEO_HOPID_SHIFT) &
1140 ADP_DP_CS_0_VIDEO_HOPID_MASK;
1141 data[1] |= aux_tx & ADP_DP_CS_1_AUX_TX_HOPID_MASK;
1142 data[1] |= (aux_rx << ADP_DP_CS_1_AUX_RX_HOPID_SHIFT) &
1143 ADP_DP_CS_1_AUX_RX_HOPID_MASK;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001144
Mika Westerberg98176382019-09-06 11:32:15 +03001145 return tb_port_write(port, data, TB_CFG_PORT,
1146 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001147}
1148
1149/**
1150 * tb_dp_port_is_enabled() - Is DP adapter port enabled
1151 * @port: DP adapter port to check
1152 */
1153bool tb_dp_port_is_enabled(struct tb_port *port)
1154{
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001155 u32 data[2];
Mika Westerberg4f807e42018-09-17 16:30:49 +03001156
Mika Westerberg98176382019-09-06 11:32:15 +03001157 if (tb_port_read(port, data, TB_CFG_PORT, port->cap_adap + ADP_DP_CS_0,
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001158 ARRAY_SIZE(data)))
Mika Westerberg4f807e42018-09-17 16:30:49 +03001159 return false;
1160
Mika Westerberg98176382019-09-06 11:32:15 +03001161 return !!(data[0] & (ADP_DP_CS_0_VE | ADP_DP_CS_0_AE));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001162}
1163
1164/**
1165 * tb_dp_port_enable() - Enables/disables DP paths of a port
1166 * @port: DP IN/OUT port
1167 * @enable: Enable/disable DP path
1168 *
1169 * Once Hop IDs are programmed DP paths can be enabled or disabled by
1170 * calling this function.
1171 */
1172int tb_dp_port_enable(struct tb_port *port, bool enable)
1173{
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001174 u32 data[2];
Mika Westerberg4f807e42018-09-17 16:30:49 +03001175 int ret;
1176
Mika Westerberg98176382019-09-06 11:32:15 +03001177 ret = tb_port_read(port, data, TB_CFG_PORT,
1178 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001179 if (ret)
1180 return ret;
1181
1182 if (enable)
Mika Westerberg98176382019-09-06 11:32:15 +03001183 data[0] |= ADP_DP_CS_0_VE | ADP_DP_CS_0_AE;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001184 else
Mika Westerberg98176382019-09-06 11:32:15 +03001185 data[0] &= ~(ADP_DP_CS_0_VE | ADP_DP_CS_0_AE);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001186
Mika Westerberg98176382019-09-06 11:32:15 +03001187 return tb_port_write(port, data, TB_CFG_PORT,
1188 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001189}
1190
Andreas Noevera25c8b22014-06-03 22:04:02 +02001191/* switch utility functions */
1192
Mika Westerbergb0407982019-12-17 15:33:40 +03001193static const char *tb_switch_generation_name(const struct tb_switch *sw)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001194{
Mika Westerbergb0407982019-12-17 15:33:40 +03001195 switch (sw->generation) {
1196 case 1:
1197 return "Thunderbolt 1";
1198 case 2:
1199 return "Thunderbolt 2";
1200 case 3:
1201 return "Thunderbolt 3";
1202 case 4:
1203 return "USB4";
1204 default:
1205 return "Unknown";
1206 }
1207}
1208
1209static void tb_dump_switch(const struct tb *tb, const struct tb_switch *sw)
1210{
1211 const struct tb_regs_switch_header *regs = &sw->config;
1212
1213 tb_dbg(tb, " %s Switch: %x:%x (Revision: %d, TB Version: %d)\n",
1214 tb_switch_generation_name(sw), regs->vendor_id, regs->device_id,
1215 regs->revision, regs->thunderbolt_version);
1216 tb_dbg(tb, " Max Port Number: %d\n", regs->max_port_number);
Mika Westerbergdaa51402018-10-01 12:31:19 +03001217 tb_dbg(tb, " Config:\n");
1218 tb_dbg(tb,
Andreas Noevera25c8b22014-06-03 22:04:02 +02001219 " Upstream Port Number: %d Depth: %d Route String: %#llx Enabled: %d, PlugEventsDelay: %dms\n",
Mika Westerbergb0407982019-12-17 15:33:40 +03001220 regs->upstream_port_number, regs->depth,
1221 (((u64) regs->route_hi) << 32) | regs->route_lo,
1222 regs->enabled, regs->plug_events_delay);
Mika Westerbergdaa51402018-10-01 12:31:19 +03001223 tb_dbg(tb, " unknown1: %#x unknown4: %#x\n",
Mika Westerbergb0407982019-12-17 15:33:40 +03001224 regs->__unknown1, regs->__unknown4);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001225}
1226
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001227/**
1228 * reset_switch() - reconfigure route, enable and send TB_CFG_PKG_RESET
1229 *
1230 * Return: Returns 0 on success or an error code on failure.
1231 */
1232int tb_switch_reset(struct tb *tb, u64 route)
1233{
1234 struct tb_cfg_result res;
1235 struct tb_regs_switch_header header = {
1236 header.route_hi = route >> 32,
1237 header.route_lo = route,
1238 header.enabled = true,
1239 };
Mika Westerbergdaa51402018-10-01 12:31:19 +03001240 tb_dbg(tb, "resetting switch at %llx\n", route);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001241 res.err = tb_cfg_write(tb->ctl, ((u32 *) &header) + 2, route,
1242 0, 2, 2, 2);
1243 if (res.err)
1244 return res.err;
1245 res = tb_cfg_reset(tb->ctl, route, TB_CFG_DEFAULT_TIMEOUT);
1246 if (res.err > 0)
1247 return -EIO;
1248 return res.err;
1249}
1250
Andreas Noevera25c8b22014-06-03 22:04:02 +02001251/**
Andreas Noeverca389f72014-06-03 22:04:04 +02001252 * tb_plug_events_active() - enable/disable plug events on a switch
1253 *
1254 * Also configures a sane plug_events_delay of 255ms.
1255 *
1256 * Return: Returns 0 on success or an error code on failure.
1257 */
1258static int tb_plug_events_active(struct tb_switch *sw, bool active)
1259{
1260 u32 data;
1261 int res;
1262
Mika Westerbergf07a3602019-06-25 15:10:01 +03001263 if (tb_switch_is_icm(sw))
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001264 return 0;
1265
Andreas Noeverca389f72014-06-03 22:04:04 +02001266 sw->config.plug_events_delay = 0xff;
1267 res = tb_sw_write(sw, ((u32 *) &sw->config) + 4, TB_CFG_SWITCH, 4, 1);
1268 if (res)
1269 return res;
1270
Mika Westerbergb0407982019-12-17 15:33:40 +03001271 /* Plug events are always enabled in USB4 */
1272 if (tb_switch_is_usb4(sw))
1273 return 0;
1274
Andreas Noeverca389f72014-06-03 22:04:04 +02001275 res = tb_sw_read(sw, &data, TB_CFG_SWITCH, sw->cap_plug_events + 1, 1);
1276 if (res)
1277 return res;
1278
1279 if (active) {
1280 data = data & 0xFFFFFF83;
1281 switch (sw->config.device_id) {
Lukas Wunner1d111402016-03-20 13:57:20 +01001282 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1283 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1284 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
Andreas Noeverca389f72014-06-03 22:04:04 +02001285 break;
1286 default:
1287 data |= 4;
1288 }
1289 } else {
1290 data = data | 0x7c;
1291 }
1292 return tb_sw_write(sw, &data, TB_CFG_SWITCH,
1293 sw->cap_plug_events + 1, 1);
1294}
1295
Mika Westerbergf67cf492017-06-06 15:25:16 +03001296static ssize_t authorized_show(struct device *dev,
1297 struct device_attribute *attr,
1298 char *buf)
1299{
1300 struct tb_switch *sw = tb_to_switch(dev);
1301
1302 return sprintf(buf, "%u\n", sw->authorized);
1303}
1304
1305static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val)
1306{
1307 int ret = -EINVAL;
1308
Mika Westerberg09f11b62019-03-19 16:48:41 +02001309 if (!mutex_trylock(&sw->tb->lock))
1310 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001311
1312 if (sw->authorized)
1313 goto unlock;
1314
1315 switch (val) {
1316 /* Approve switch */
1317 case 1:
1318 if (sw->key)
1319 ret = tb_domain_approve_switch_key(sw->tb, sw);
1320 else
1321 ret = tb_domain_approve_switch(sw->tb, sw);
1322 break;
1323
1324 /* Challenge switch */
1325 case 2:
1326 if (sw->key)
1327 ret = tb_domain_challenge_switch_key(sw->tb, sw);
1328 break;
1329
1330 default:
1331 break;
1332 }
1333
1334 if (!ret) {
1335 sw->authorized = val;
1336 /* Notify status change to the userspace */
1337 kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
1338 }
1339
1340unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001341 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001342 return ret;
1343}
1344
1345static ssize_t authorized_store(struct device *dev,
1346 struct device_attribute *attr,
1347 const char *buf, size_t count)
1348{
1349 struct tb_switch *sw = tb_to_switch(dev);
1350 unsigned int val;
1351 ssize_t ret;
1352
1353 ret = kstrtouint(buf, 0, &val);
1354 if (ret)
1355 return ret;
1356 if (val > 2)
1357 return -EINVAL;
1358
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001359 pm_runtime_get_sync(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001360 ret = tb_switch_set_authorized(sw, val);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001361 pm_runtime_mark_last_busy(&sw->dev);
1362 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001363
1364 return ret ? ret : count;
1365}
1366static DEVICE_ATTR_RW(authorized);
1367
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001368static ssize_t boot_show(struct device *dev, struct device_attribute *attr,
1369 char *buf)
1370{
1371 struct tb_switch *sw = tb_to_switch(dev);
1372
1373 return sprintf(buf, "%u\n", sw->boot);
1374}
1375static DEVICE_ATTR_RO(boot);
1376
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001377static ssize_t device_show(struct device *dev, struct device_attribute *attr,
1378 char *buf)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001379{
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001380 struct tb_switch *sw = tb_to_switch(dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001381
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001382 return sprintf(buf, "%#x\n", sw->device);
1383}
1384static DEVICE_ATTR_RO(device);
Andreas Noeverca389f72014-06-03 22:04:04 +02001385
Mika Westerberg72ee3392017-06-06 15:25:05 +03001386static ssize_t
1387device_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1388{
1389 struct tb_switch *sw = tb_to_switch(dev);
1390
1391 return sprintf(buf, "%s\n", sw->device_name ? sw->device_name : "");
1392}
1393static DEVICE_ATTR_RO(device_name);
1394
Christian Kellnerb4063572019-10-03 19:32:40 +02001395static ssize_t
1396generation_show(struct device *dev, struct device_attribute *attr, char *buf)
1397{
1398 struct tb_switch *sw = tb_to_switch(dev);
1399
1400 return sprintf(buf, "%u\n", sw->generation);
1401}
1402static DEVICE_ATTR_RO(generation);
1403
Mika Westerbergf67cf492017-06-06 15:25:16 +03001404static ssize_t key_show(struct device *dev, struct device_attribute *attr,
1405 char *buf)
1406{
1407 struct tb_switch *sw = tb_to_switch(dev);
1408 ssize_t ret;
1409
Mika Westerberg09f11b62019-03-19 16:48:41 +02001410 if (!mutex_trylock(&sw->tb->lock))
1411 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001412
1413 if (sw->key)
1414 ret = sprintf(buf, "%*phN\n", TB_SWITCH_KEY_SIZE, sw->key);
1415 else
1416 ret = sprintf(buf, "\n");
1417
Mika Westerberg09f11b62019-03-19 16:48:41 +02001418 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001419 return ret;
1420}
1421
1422static ssize_t key_store(struct device *dev, struct device_attribute *attr,
1423 const char *buf, size_t count)
1424{
1425 struct tb_switch *sw = tb_to_switch(dev);
1426 u8 key[TB_SWITCH_KEY_SIZE];
1427 ssize_t ret = count;
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001428 bool clear = false;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001429
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001430 if (!strcmp(buf, "\n"))
1431 clear = true;
1432 else if (hex2bin(key, buf, sizeof(key)))
Mika Westerbergf67cf492017-06-06 15:25:16 +03001433 return -EINVAL;
1434
Mika Westerberg09f11b62019-03-19 16:48:41 +02001435 if (!mutex_trylock(&sw->tb->lock))
1436 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001437
1438 if (sw->authorized) {
1439 ret = -EBUSY;
1440 } else {
1441 kfree(sw->key);
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001442 if (clear) {
1443 sw->key = NULL;
1444 } else {
1445 sw->key = kmemdup(key, sizeof(key), GFP_KERNEL);
1446 if (!sw->key)
1447 ret = -ENOMEM;
1448 }
Mika Westerbergf67cf492017-06-06 15:25:16 +03001449 }
1450
Mika Westerberg09f11b62019-03-19 16:48:41 +02001451 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001452 return ret;
1453}
Bernat, Yehezkel0956e412017-08-15 08:19:12 +03001454static DEVICE_ATTR(key, 0600, key_show, key_store);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001455
Mika Westerberg91c0c122019-03-21 19:03:00 +02001456static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
1457 char *buf)
1458{
1459 struct tb_switch *sw = tb_to_switch(dev);
1460
1461 return sprintf(buf, "%u.0 Gb/s\n", sw->link_speed);
1462}
1463
1464/*
1465 * Currently all lanes must run at the same speed but we expose here
1466 * both directions to allow possible asymmetric links in the future.
1467 */
1468static DEVICE_ATTR(rx_speed, 0444, speed_show, NULL);
1469static DEVICE_ATTR(tx_speed, 0444, speed_show, NULL);
1470
1471static ssize_t lanes_show(struct device *dev, struct device_attribute *attr,
1472 char *buf)
1473{
1474 struct tb_switch *sw = tb_to_switch(dev);
1475
1476 return sprintf(buf, "%u\n", sw->link_width);
1477}
1478
1479/*
1480 * Currently link has same amount of lanes both directions (1 or 2) but
1481 * expose them separately to allow possible asymmetric links in the future.
1482 */
1483static DEVICE_ATTR(rx_lanes, 0444, lanes_show, NULL);
1484static DEVICE_ATTR(tx_lanes, 0444, lanes_show, NULL);
1485
Mika Westerberge6b245c2017-06-06 15:25:17 +03001486static ssize_t nvm_authenticate_show(struct device *dev,
1487 struct device_attribute *attr, char *buf)
1488{
1489 struct tb_switch *sw = tb_to_switch(dev);
1490 u32 status;
1491
1492 nvm_get_auth_status(sw, &status);
1493 return sprintf(buf, "%#x\n", status);
1494}
1495
Mario Limonciello1cb36292020-06-23 11:14:29 -05001496static ssize_t nvm_authenticate_sysfs(struct device *dev, const char *buf,
1497 bool disconnect)
Mika Westerberge6b245c2017-06-06 15:25:17 +03001498{
1499 struct tb_switch *sw = tb_to_switch(dev);
Mario Limonciello4b794f82020-06-23 11:14:28 -05001500 int val;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001501 int ret;
1502
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001503 pm_runtime_get_sync(&sw->dev);
1504
1505 if (!mutex_trylock(&sw->tb->lock)) {
1506 ret = restart_syscall();
1507 goto exit_rpm;
1508 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001509
1510 /* If NVMem devices are not yet added */
1511 if (!sw->nvm) {
1512 ret = -EAGAIN;
1513 goto exit_unlock;
1514 }
1515
Mario Limonciello4b794f82020-06-23 11:14:28 -05001516 ret = kstrtoint(buf, 10, &val);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001517 if (ret)
1518 goto exit_unlock;
1519
1520 /* Always clear the authentication status */
1521 nvm_clear_auth_status(sw);
1522
Mario Limonciello4b794f82020-06-23 11:14:28 -05001523 if (val > 0) {
1524 if (!sw->nvm->flushed) {
1525 if (!sw->nvm->buf) {
1526 ret = -EINVAL;
1527 goto exit_unlock;
1528 }
1529
1530 ret = nvm_validate_and_write(sw);
1531 if (ret || val == WRITE_ONLY)
1532 goto exit_unlock;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001533 }
Mario Limonciello4b794f82020-06-23 11:14:28 -05001534 if (val == WRITE_AND_AUTHENTICATE) {
Mario Limonciello1cb36292020-06-23 11:14:29 -05001535 if (disconnect) {
1536 ret = tb_lc_force_power(sw);
1537 } else {
1538 sw->nvm->authenticating = true;
1539 ret = nvm_authenticate(sw);
1540 }
Mario Limonciello4b794f82020-06-23 11:14:28 -05001541 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001542 }
1543
1544exit_unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001545 mutex_unlock(&sw->tb->lock);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001546exit_rpm:
1547 pm_runtime_mark_last_busy(&sw->dev);
1548 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001549
Mario Limonciello1cb36292020-06-23 11:14:29 -05001550 return ret;
1551}
1552
1553static ssize_t nvm_authenticate_store(struct device *dev,
1554 struct device_attribute *attr, const char *buf, size_t count)
1555{
1556 int ret = nvm_authenticate_sysfs(dev, buf, false);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001557 if (ret)
1558 return ret;
1559 return count;
1560}
1561static DEVICE_ATTR_RW(nvm_authenticate);
1562
Mario Limonciello1cb36292020-06-23 11:14:29 -05001563static ssize_t nvm_authenticate_on_disconnect_show(struct device *dev,
1564 struct device_attribute *attr, char *buf)
1565{
1566 return nvm_authenticate_show(dev, attr, buf);
1567}
1568
1569static ssize_t nvm_authenticate_on_disconnect_store(struct device *dev,
1570 struct device_attribute *attr, const char *buf, size_t count)
1571{
1572 int ret;
1573
1574 ret = nvm_authenticate_sysfs(dev, buf, true);
1575 return ret ? ret : count;
1576}
1577static DEVICE_ATTR_RW(nvm_authenticate_on_disconnect);
1578
Mika Westerberge6b245c2017-06-06 15:25:17 +03001579static ssize_t nvm_version_show(struct device *dev,
1580 struct device_attribute *attr, char *buf)
1581{
1582 struct tb_switch *sw = tb_to_switch(dev);
1583 int ret;
1584
Mika Westerberg09f11b62019-03-19 16:48:41 +02001585 if (!mutex_trylock(&sw->tb->lock))
1586 return restart_syscall();
Mika Westerberge6b245c2017-06-06 15:25:17 +03001587
1588 if (sw->safe_mode)
1589 ret = -ENODATA;
1590 else if (!sw->nvm)
1591 ret = -EAGAIN;
1592 else
1593 ret = sprintf(buf, "%x.%x\n", sw->nvm->major, sw->nvm->minor);
1594
Mika Westerberg09f11b62019-03-19 16:48:41 +02001595 mutex_unlock(&sw->tb->lock);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001596
1597 return ret;
1598}
1599static DEVICE_ATTR_RO(nvm_version);
1600
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001601static ssize_t vendor_show(struct device *dev, struct device_attribute *attr,
1602 char *buf)
1603{
1604 struct tb_switch *sw = tb_to_switch(dev);
1605
1606 return sprintf(buf, "%#x\n", sw->vendor);
1607}
1608static DEVICE_ATTR_RO(vendor);
1609
Mika Westerberg72ee3392017-06-06 15:25:05 +03001610static ssize_t
1611vendor_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1612{
1613 struct tb_switch *sw = tb_to_switch(dev);
1614
1615 return sprintf(buf, "%s\n", sw->vendor_name ? sw->vendor_name : "");
1616}
1617static DEVICE_ATTR_RO(vendor_name);
1618
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001619static ssize_t unique_id_show(struct device *dev, struct device_attribute *attr,
1620 char *buf)
1621{
1622 struct tb_switch *sw = tb_to_switch(dev);
1623
1624 return sprintf(buf, "%pUb\n", sw->uuid);
1625}
1626static DEVICE_ATTR_RO(unique_id);
1627
1628static struct attribute *switch_attrs[] = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001629 &dev_attr_authorized.attr,
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001630 &dev_attr_boot.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001631 &dev_attr_device.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001632 &dev_attr_device_name.attr,
Christian Kellnerb4063572019-10-03 19:32:40 +02001633 &dev_attr_generation.attr,
Mika Westerbergf67cf492017-06-06 15:25:16 +03001634 &dev_attr_key.attr,
Mika Westerberge6b245c2017-06-06 15:25:17 +03001635 &dev_attr_nvm_authenticate.attr,
Mario Limonciello1cb36292020-06-23 11:14:29 -05001636 &dev_attr_nvm_authenticate_on_disconnect.attr,
Mika Westerberge6b245c2017-06-06 15:25:17 +03001637 &dev_attr_nvm_version.attr,
Mika Westerberg91c0c122019-03-21 19:03:00 +02001638 &dev_attr_rx_speed.attr,
1639 &dev_attr_rx_lanes.attr,
1640 &dev_attr_tx_speed.attr,
1641 &dev_attr_tx_lanes.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001642 &dev_attr_vendor.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001643 &dev_attr_vendor_name.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001644 &dev_attr_unique_id.attr,
1645 NULL,
1646};
1647
Mika Westerbergf67cf492017-06-06 15:25:16 +03001648static umode_t switch_attr_is_visible(struct kobject *kobj,
1649 struct attribute *attr, int n)
1650{
1651 struct device *dev = container_of(kobj, struct device, kobj);
1652 struct tb_switch *sw = tb_to_switch(dev);
1653
Mika Westerberg58f414f2018-09-11 15:34:23 +03001654 if (attr == &dev_attr_device.attr) {
1655 if (!sw->device)
1656 return 0;
1657 } else if (attr == &dev_attr_device_name.attr) {
1658 if (!sw->device_name)
1659 return 0;
1660 } else if (attr == &dev_attr_vendor.attr) {
1661 if (!sw->vendor)
1662 return 0;
1663 } else if (attr == &dev_attr_vendor_name.attr) {
1664 if (!sw->vendor_name)
1665 return 0;
1666 } else if (attr == &dev_attr_key.attr) {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001667 if (tb_route(sw) &&
1668 sw->tb->security_level == TB_SECURITY_SECURE &&
1669 sw->security_level == TB_SECURITY_SECURE)
1670 return attr->mode;
1671 return 0;
Mika Westerberg91c0c122019-03-21 19:03:00 +02001672 } else if (attr == &dev_attr_rx_speed.attr ||
1673 attr == &dev_attr_rx_lanes.attr ||
1674 attr == &dev_attr_tx_speed.attr ||
1675 attr == &dev_attr_tx_lanes.attr) {
1676 if (tb_route(sw))
1677 return attr->mode;
1678 return 0;
Mika Westerberg3f415e52019-02-05 12:51:40 +03001679 } else if (attr == &dev_attr_nvm_authenticate.attr) {
Mika Westerbergb0407982019-12-17 15:33:40 +03001680 if (nvm_upgradeable(sw))
Mika Westerberg3f415e52019-02-05 12:51:40 +03001681 return attr->mode;
1682 return 0;
1683 } else if (attr == &dev_attr_nvm_version.attr) {
Mika Westerbergb0407982019-12-17 15:33:40 +03001684 if (nvm_readable(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03001685 return attr->mode;
1686 return 0;
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001687 } else if (attr == &dev_attr_boot.attr) {
1688 if (tb_route(sw))
1689 return attr->mode;
1690 return 0;
Mario Limonciello1cb36292020-06-23 11:14:29 -05001691 } else if (attr == &dev_attr_nvm_authenticate_on_disconnect.attr) {
1692 if (sw->quirks & QUIRK_FORCE_POWER_LINK_CONTROLLER)
1693 return attr->mode;
1694 return 0;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001695 }
1696
Mika Westerberge6b245c2017-06-06 15:25:17 +03001697 return sw->safe_mode ? 0 : attr->mode;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001698}
1699
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001700static struct attribute_group switch_group = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001701 .is_visible = switch_attr_is_visible,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001702 .attrs = switch_attrs,
1703};
1704
1705static const struct attribute_group *switch_groups[] = {
1706 &switch_group,
1707 NULL,
1708};
1709
1710static void tb_switch_release(struct device *dev)
1711{
1712 struct tb_switch *sw = tb_to_switch(dev);
Mika Westerbergb433d012019-09-30 14:07:22 +03001713 struct tb_port *port;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001714
Mika Westerberg3e136762017-06-06 15:25:14 +03001715 dma_port_free(sw->dma_port);
1716
Mika Westerbergb433d012019-09-30 14:07:22 +03001717 tb_switch_for_each_port(sw, port) {
1718 if (!port->disabled) {
1719 ida_destroy(&port->in_hopids);
1720 ida_destroy(&port->out_hopids);
Mika Westerberg0b2863a2017-02-19 16:57:27 +02001721 }
1722 }
1723
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001724 kfree(sw->uuid);
Mika Westerberg72ee3392017-06-06 15:25:05 +03001725 kfree(sw->device_name);
1726 kfree(sw->vendor_name);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001727 kfree(sw->ports);
Andreas Noever343fcb82014-06-12 23:11:47 +02001728 kfree(sw->drom);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001729 kfree(sw->key);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001730 kfree(sw);
1731}
1732
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001733/*
1734 * Currently only need to provide the callbacks. Everything else is handled
1735 * in the connection manager.
1736 */
1737static int __maybe_unused tb_switch_runtime_suspend(struct device *dev)
1738{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001739 struct tb_switch *sw = tb_to_switch(dev);
1740 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1741
1742 if (cm_ops->runtime_suspend_switch)
1743 return cm_ops->runtime_suspend_switch(sw);
1744
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001745 return 0;
1746}
1747
1748static int __maybe_unused tb_switch_runtime_resume(struct device *dev)
1749{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001750 struct tb_switch *sw = tb_to_switch(dev);
1751 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1752
1753 if (cm_ops->runtime_resume_switch)
1754 return cm_ops->runtime_resume_switch(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001755 return 0;
1756}
1757
1758static const struct dev_pm_ops tb_switch_pm_ops = {
1759 SET_RUNTIME_PM_OPS(tb_switch_runtime_suspend, tb_switch_runtime_resume,
1760 NULL)
1761};
1762
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001763struct device_type tb_switch_type = {
1764 .name = "thunderbolt_device",
1765 .release = tb_switch_release,
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001766 .pm = &tb_switch_pm_ops,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001767};
1768
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001769static int tb_switch_get_generation(struct tb_switch *sw)
1770{
1771 switch (sw->config.device_id) {
1772 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1773 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1774 case PCI_DEVICE_ID_INTEL_LIGHT_PEAK:
1775 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
1776 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
1777 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
1778 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_2C_BRIDGE:
1779 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_4C_BRIDGE:
1780 return 1;
1781
1782 case PCI_DEVICE_ID_INTEL_WIN_RIDGE_2C_BRIDGE:
1783 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
1784 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
1785 return 2;
1786
1787 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
1788 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
1789 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_BRIDGE:
1790 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
1791 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
Radion Mirchevsky4bac4712017-10-04 16:43:43 +03001792 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
1793 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
1794 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
Mika Westerberg3cdb9442018-01-16 22:19:00 +02001795 case PCI_DEVICE_ID_INTEL_ICL_NHI0:
1796 case PCI_DEVICE_ID_INTEL_ICL_NHI1:
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001797 return 3;
1798
1799 default:
Mika Westerbergb0407982019-12-17 15:33:40 +03001800 if (tb_switch_is_usb4(sw))
1801 return 4;
1802
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001803 /*
1804 * For unknown switches assume generation to be 1 to be
1805 * on the safe side.
1806 */
1807 tb_sw_warn(sw, "unsupported switch device id %#x\n",
1808 sw->config.device_id);
1809 return 1;
1810 }
1811}
1812
Mika Westerbergb0407982019-12-17 15:33:40 +03001813static bool tb_switch_exceeds_max_depth(const struct tb_switch *sw, int depth)
1814{
1815 int max_depth;
1816
1817 if (tb_switch_is_usb4(sw) ||
1818 (sw->tb->root_switch && tb_switch_is_usb4(sw->tb->root_switch)))
1819 max_depth = USB4_SWITCH_MAX_DEPTH;
1820 else
1821 max_depth = TB_SWITCH_MAX_DEPTH;
1822
1823 return depth > max_depth;
1824}
1825
Andreas Noevera25c8b22014-06-03 22:04:02 +02001826/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001827 * tb_switch_alloc() - allocate a switch
1828 * @tb: Pointer to the owning domain
1829 * @parent: Parent device for this switch
1830 * @route: Route string for this switch
Andreas Noevera25c8b22014-06-03 22:04:02 +02001831 *
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001832 * Allocates and initializes a switch. Will not upload configuration to
1833 * the switch. For that you need to call tb_switch_configure()
1834 * separately. The returned switch should be released by calling
1835 * tb_switch_put().
1836 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001837 * Return: Pointer to the allocated switch or ERR_PTR() in case of
1838 * failure.
Andreas Noevera25c8b22014-06-03 22:04:02 +02001839 */
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001840struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
1841 u64 route)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001842{
Andreas Noevera25c8b22014-06-03 22:04:02 +02001843 struct tb_switch *sw;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001844 int upstream_port;
Mika Westerberg444ac382018-12-30 12:17:52 +02001845 int i, ret, depth;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001846
Mika Westerbergb0407982019-12-17 15:33:40 +03001847 /* Unlock the downstream port so we can access the switch below */
1848 if (route) {
1849 struct tb_switch *parent_sw = tb_to_switch(parent);
1850 struct tb_port *down;
1851
1852 down = tb_port_at(route, parent_sw);
1853 tb_port_unlock(down);
1854 }
1855
Mika Westerbergf0342e72018-12-30 12:14:46 +02001856 depth = tb_route_length(route);
Mika Westerbergf0342e72018-12-30 12:14:46 +02001857
1858 upstream_port = tb_cfg_get_upstream_port(tb->ctl, route);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001859 if (upstream_port < 0)
Mika Westerberg444ac382018-12-30 12:17:52 +02001860 return ERR_PTR(upstream_port);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001861
1862 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1863 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02001864 return ERR_PTR(-ENOMEM);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001865
1866 sw->tb = tb;
Mika Westerberg444ac382018-12-30 12:17:52 +02001867 ret = tb_cfg_read(tb->ctl, &sw->config, route, 0, TB_CFG_SWITCH, 0, 5);
1868 if (ret)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001869 goto err_free_sw_ports;
1870
Mika Westerbergb0407982019-12-17 15:33:40 +03001871 sw->generation = tb_switch_get_generation(sw);
1872
Mika Westerbergdaa51402018-10-01 12:31:19 +03001873 tb_dbg(tb, "current switch config:\n");
Mika Westerbergb0407982019-12-17 15:33:40 +03001874 tb_dump_switch(tb, sw);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001875
1876 /* configure switch */
1877 sw->config.upstream_port_number = upstream_port;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001878 sw->config.depth = depth;
1879 sw->config.route_hi = upper_32_bits(route);
1880 sw->config.route_lo = lower_32_bits(route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001881 sw->config.enabled = 0;
Andreas Noevera25c8b22014-06-03 22:04:02 +02001882
Mika Westerbergb0407982019-12-17 15:33:40 +03001883 /* Make sure we do not exceed maximum topology limit */
Colin Ian King704a9402019-12-20 22:05:26 +00001884 if (tb_switch_exceeds_max_depth(sw, depth)) {
1885 ret = -EADDRNOTAVAIL;
1886 goto err_free_sw_ports;
1887 }
Mika Westerbergb0407982019-12-17 15:33:40 +03001888
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001889 /* initialize ports */
1890 sw->ports = kcalloc(sw->config.max_port_number + 1, sizeof(*sw->ports),
1891 GFP_KERNEL);
Mika Westerberg444ac382018-12-30 12:17:52 +02001892 if (!sw->ports) {
1893 ret = -ENOMEM;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001894 goto err_free_sw_ports;
Mika Westerberg444ac382018-12-30 12:17:52 +02001895 }
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001896
1897 for (i = 0; i <= sw->config.max_port_number; i++) {
1898 /* minimum setup for tb_find_cap and tb_drom_read to work */
1899 sw->ports[i].sw = sw;
1900 sw->ports[i].port = i;
1901 }
1902
Mika Westerberg444ac382018-12-30 12:17:52 +02001903 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_PLUG_EVENTS);
Mika Westerbergb0407982019-12-17 15:33:40 +03001904 if (ret > 0)
1905 sw->cap_plug_events = ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001906
Mika Westerberg444ac382018-12-30 12:17:52 +02001907 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_LINK_CONTROLLER);
1908 if (ret > 0)
1909 sw->cap_lc = ret;
Mika Westerberga9be5582019-01-09 16:42:12 +02001910
Mika Westerbergf67cf492017-06-06 15:25:16 +03001911 /* Root switch is always authorized */
1912 if (!route)
1913 sw->authorized = true;
1914
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001915 device_initialize(&sw->dev);
1916 sw->dev.parent = parent;
1917 sw->dev.bus = &tb_bus_type;
1918 sw->dev.type = &tb_switch_type;
1919 sw->dev.groups = switch_groups;
1920 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
1921
1922 return sw;
1923
1924err_free_sw_ports:
1925 kfree(sw->ports);
1926 kfree(sw);
1927
Mika Westerberg444ac382018-12-30 12:17:52 +02001928 return ERR_PTR(ret);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001929}
1930
1931/**
Mika Westerberge6b245c2017-06-06 15:25:17 +03001932 * tb_switch_alloc_safe_mode() - allocate a switch that is in safe mode
1933 * @tb: Pointer to the owning domain
1934 * @parent: Parent device for this switch
1935 * @route: Route string for this switch
1936 *
1937 * This creates a switch in safe mode. This means the switch pretty much
1938 * lacks all capabilities except DMA configuration port before it is
1939 * flashed with a valid NVM firmware.
1940 *
1941 * The returned switch must be released by calling tb_switch_put().
1942 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001943 * Return: Pointer to the allocated switch or ERR_PTR() in case of failure
Mika Westerberge6b245c2017-06-06 15:25:17 +03001944 */
1945struct tb_switch *
1946tb_switch_alloc_safe_mode(struct tb *tb, struct device *parent, u64 route)
1947{
1948 struct tb_switch *sw;
1949
1950 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1951 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02001952 return ERR_PTR(-ENOMEM);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001953
1954 sw->tb = tb;
1955 sw->config.depth = tb_route_length(route);
1956 sw->config.route_hi = upper_32_bits(route);
1957 sw->config.route_lo = lower_32_bits(route);
1958 sw->safe_mode = true;
1959
1960 device_initialize(&sw->dev);
1961 sw->dev.parent = parent;
1962 sw->dev.bus = &tb_bus_type;
1963 sw->dev.type = &tb_switch_type;
1964 sw->dev.groups = switch_groups;
1965 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
1966
1967 return sw;
1968}
1969
1970/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001971 * tb_switch_configure() - Uploads configuration to the switch
1972 * @sw: Switch to configure
1973 *
1974 * Call this function before the switch is added to the system. It will
1975 * upload configuration to the switch and makes it available for the
Mika Westerbergb0407982019-12-17 15:33:40 +03001976 * connection manager to use. Can be called to the switch again after
1977 * resume from low power states to re-initialize it.
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001978 *
1979 * Return: %0 in case of success and negative errno in case of failure
1980 */
1981int tb_switch_configure(struct tb_switch *sw)
1982{
1983 struct tb *tb = sw->tb;
1984 u64 route;
1985 int ret;
1986
1987 route = tb_route(sw);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001988
Mika Westerbergb0407982019-12-17 15:33:40 +03001989 tb_dbg(tb, "%s Switch at %#llx (depth: %d, up port: %d)\n",
1990 sw->config.enabled ? "restoring " : "initializing", route,
1991 tb_route_length(route), sw->config.upstream_port_number);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001992
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001993 sw->config.enabled = 1;
1994
Mika Westerbergb0407982019-12-17 15:33:40 +03001995 if (tb_switch_is_usb4(sw)) {
1996 /*
1997 * For USB4 devices, we need to program the CM version
1998 * accordingly so that it knows to expose all the
1999 * additional capabilities.
2000 */
2001 sw->config.cmuv = USB4_VERSION_1_0;
Andreas Noevera25c8b22014-06-03 22:04:02 +02002002
Mika Westerbergb0407982019-12-17 15:33:40 +03002003 /* Enumerate the switch */
2004 ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2005 ROUTER_CS_1, 4);
2006 if (ret)
2007 return ret;
2008
2009 ret = usb4_switch_setup(sw);
2010 if (ret)
2011 return ret;
2012
2013 ret = usb4_switch_configure_link(sw);
2014 } else {
2015 if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL)
2016 tb_sw_warn(sw, "unknown switch vendor id %#x\n",
2017 sw->config.vendor_id);
2018
2019 if (!sw->cap_plug_events) {
2020 tb_sw_warn(sw, "cannot find TB_VSE_CAP_PLUG_EVENTS aborting\n");
2021 return -ENODEV;
2022 }
2023
2024 /* Enumerate the switch */
2025 ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2026 ROUTER_CS_1, 3);
2027 if (ret)
2028 return ret;
2029
2030 ret = tb_lc_configure_link(sw);
2031 }
Mika Westerberge879a702018-10-11 12:33:08 +03002032 if (ret)
2033 return ret;
2034
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002035 return tb_plug_events_active(sw, true);
2036}
Andreas Noevera25c8b22014-06-03 22:04:02 +02002037
Aditya Pakki2cc12752019-03-20 10:57:54 -05002038static int tb_switch_set_uuid(struct tb_switch *sw)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002039{
Mika Westerbergb0407982019-12-17 15:33:40 +03002040 bool uid = false;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002041 u32 uuid[4];
Mika Westerberga9be5582019-01-09 16:42:12 +02002042 int ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002043
2044 if (sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02002045 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002046
Mika Westerbergb0407982019-12-17 15:33:40 +03002047 if (tb_switch_is_usb4(sw)) {
2048 ret = usb4_switch_read_uid(sw, &sw->uid);
2049 if (ret)
2050 return ret;
2051 uid = true;
2052 } else {
2053 /*
2054 * The newer controllers include fused UUID as part of
2055 * link controller specific registers
2056 */
2057 ret = tb_lc_read_uuid(sw, uuid);
2058 if (ret) {
2059 if (ret != -EINVAL)
2060 return ret;
2061 uid = true;
2062 }
2063 }
2064
2065 if (uid) {
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002066 /*
2067 * ICM generates UUID based on UID and fills the upper
2068 * two words with ones. This is not strictly following
2069 * UUID format but we want to be compatible with it so
2070 * we do the same here.
2071 */
2072 uuid[0] = sw->uid & 0xffffffff;
2073 uuid[1] = (sw->uid >> 32) & 0xffffffff;
2074 uuid[2] = 0xffffffff;
2075 uuid[3] = 0xffffffff;
Andreas Noevera25c8b22014-06-03 22:04:02 +02002076 }
2077
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002078 sw->uuid = kmemdup(uuid, sizeof(uuid), GFP_KERNEL);
Aditya Pakki2cc12752019-03-20 10:57:54 -05002079 if (!sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02002080 return -ENOMEM;
2081 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002082}
2083
Mika Westerberge6b245c2017-06-06 15:25:17 +03002084static int tb_switch_add_dma_port(struct tb_switch *sw)
Mika Westerberg3e136762017-06-06 15:25:14 +03002085{
Mika Westerberge6b245c2017-06-06 15:25:17 +03002086 u32 status;
2087 int ret;
2088
Mika Westerberg3e136762017-06-06 15:25:14 +03002089 switch (sw->generation) {
Mika Westerberg3e136762017-06-06 15:25:14 +03002090 case 2:
2091 /* Only root switch can be upgraded */
2092 if (tb_route(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03002093 return 0;
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002094
2095 /* fallthrough */
2096 case 3:
2097 ret = tb_switch_set_uuid(sw);
2098 if (ret)
2099 return ret;
Mika Westerberg3e136762017-06-06 15:25:14 +03002100 break;
2101
2102 default:
Mika Westerberge6b245c2017-06-06 15:25:17 +03002103 /*
2104 * DMA port is the only thing available when the switch
2105 * is in safe mode.
2106 */
2107 if (!sw->safe_mode)
2108 return 0;
2109 break;
Mika Westerberg3e136762017-06-06 15:25:14 +03002110 }
2111
Mika Westerberg3f415e52019-02-05 12:51:40 +03002112 /* Root switch DMA port requires running firmware */
Mika Westerbergf07a3602019-06-25 15:10:01 +03002113 if (!tb_route(sw) && !tb_switch_is_icm(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03002114 return 0;
2115
Mika Westerberg3e136762017-06-06 15:25:14 +03002116 sw->dma_port = dma_port_alloc(sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002117 if (!sw->dma_port)
2118 return 0;
2119
Mika Westerberg3f415e52019-02-05 12:51:40 +03002120 if (sw->no_nvm_upgrade)
2121 return 0;
2122
Mika Westerberge6b245c2017-06-06 15:25:17 +03002123 /*
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002124 * If there is status already set then authentication failed
2125 * when the dma_port_flash_update_auth() returned. Power cycling
2126 * is not needed (it was done already) so only thing we do here
2127 * is to unblock runtime PM of the root port.
2128 */
2129 nvm_get_auth_status(sw, &status);
2130 if (status) {
2131 if (!tb_route(sw))
Mika Westerbergb0407982019-12-17 15:33:40 +03002132 nvm_authenticate_complete_dma_port(sw);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002133 return 0;
2134 }
2135
2136 /*
Mika Westerberge6b245c2017-06-06 15:25:17 +03002137 * Check status of the previous flash authentication. If there
2138 * is one we need to power cycle the switch in any case to make
2139 * it functional again.
2140 */
2141 ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
2142 if (ret <= 0)
2143 return ret;
2144
Mika Westerberg1830b6e2018-11-26 12:47:46 +03002145 /* Now we can allow root port to suspend again */
2146 if (!tb_route(sw))
Mika Westerbergb0407982019-12-17 15:33:40 +03002147 nvm_authenticate_complete_dma_port(sw);
Mika Westerberg1830b6e2018-11-26 12:47:46 +03002148
Mika Westerberge6b245c2017-06-06 15:25:17 +03002149 if (status) {
2150 tb_sw_info(sw, "switch flash authentication failed\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002151 nvm_set_auth_status(sw, status);
2152 }
2153
2154 tb_sw_info(sw, "power cycling the switch now\n");
2155 dma_port_power_cycle(sw->dma_port);
2156
2157 /*
2158 * We return error here which causes the switch adding failure.
2159 * It should appear back after power cycle is complete.
2160 */
2161 return -ESHUTDOWN;
Mika Westerberg3e136762017-06-06 15:25:14 +03002162}
2163
Mika Westerberg0d46c082019-08-26 18:19:33 +03002164static void tb_switch_default_link_ports(struct tb_switch *sw)
2165{
2166 int i;
2167
2168 for (i = 1; i <= sw->config.max_port_number; i += 2) {
2169 struct tb_port *port = &sw->ports[i];
2170 struct tb_port *subordinate;
2171
2172 if (!tb_port_is_null(port))
2173 continue;
2174
2175 /* Check for the subordinate port */
2176 if (i == sw->config.max_port_number ||
2177 !tb_port_is_null(&sw->ports[i + 1]))
2178 continue;
2179
2180 /* Link them if not already done so (by DROM) */
2181 subordinate = &sw->ports[i + 1];
2182 if (!port->dual_link_port && !subordinate->dual_link_port) {
2183 port->link_nr = 0;
2184 port->dual_link_port = subordinate;
2185 subordinate->link_nr = 1;
2186 subordinate->dual_link_port = port;
2187
2188 tb_sw_dbg(sw, "linked ports %d <-> %d\n",
2189 port->port, subordinate->port);
2190 }
2191 }
2192}
2193
Mika Westerberg91c0c122019-03-21 19:03:00 +02002194static bool tb_switch_lane_bonding_possible(struct tb_switch *sw)
2195{
2196 const struct tb_port *up = tb_upstream_port(sw);
2197
2198 if (!up->dual_link_port || !up->dual_link_port->remote)
2199 return false;
2200
Mika Westerbergb0407982019-12-17 15:33:40 +03002201 if (tb_switch_is_usb4(sw))
2202 return usb4_switch_lane_bonding_possible(sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +02002203 return tb_lc_lane_bonding_possible(sw);
2204}
2205
2206static int tb_switch_update_link_attributes(struct tb_switch *sw)
2207{
2208 struct tb_port *up;
2209 bool change = false;
2210 int ret;
2211
2212 if (!tb_route(sw) || tb_switch_is_icm(sw))
2213 return 0;
2214
2215 up = tb_upstream_port(sw);
2216
2217 ret = tb_port_get_link_speed(up);
2218 if (ret < 0)
2219 return ret;
2220 if (sw->link_speed != ret)
2221 change = true;
2222 sw->link_speed = ret;
2223
2224 ret = tb_port_get_link_width(up);
2225 if (ret < 0)
2226 return ret;
2227 if (sw->link_width != ret)
2228 change = true;
2229 sw->link_width = ret;
2230
2231 /* Notify userspace that there is possible link attribute change */
2232 if (device_is_registered(&sw->dev) && change)
2233 kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
2234
2235 return 0;
2236}
2237
2238/**
2239 * tb_switch_lane_bonding_enable() - Enable lane bonding
2240 * @sw: Switch to enable lane bonding
2241 *
2242 * Connection manager can call this function to enable lane bonding of a
2243 * switch. If conditions are correct and both switches support the feature,
2244 * lanes are bonded. It is safe to call this to any switch.
2245 */
2246int tb_switch_lane_bonding_enable(struct tb_switch *sw)
2247{
2248 struct tb_switch *parent = tb_to_switch(sw->dev.parent);
2249 struct tb_port *up, *down;
2250 u64 route = tb_route(sw);
2251 int ret;
2252
2253 if (!route)
2254 return 0;
2255
2256 if (!tb_switch_lane_bonding_possible(sw))
2257 return 0;
2258
2259 up = tb_upstream_port(sw);
2260 down = tb_port_at(route, parent);
2261
2262 if (!tb_port_is_width_supported(up, 2) ||
2263 !tb_port_is_width_supported(down, 2))
2264 return 0;
2265
2266 ret = tb_port_lane_bonding_enable(up);
2267 if (ret) {
2268 tb_port_warn(up, "failed to enable lane bonding\n");
2269 return ret;
2270 }
2271
2272 ret = tb_port_lane_bonding_enable(down);
2273 if (ret) {
2274 tb_port_warn(down, "failed to enable lane bonding\n");
2275 tb_port_lane_bonding_disable(up);
2276 return ret;
2277 }
2278
2279 tb_switch_update_link_attributes(sw);
2280
2281 tb_sw_dbg(sw, "lane bonding enabled\n");
2282 return ret;
2283}
2284
2285/**
2286 * tb_switch_lane_bonding_disable() - Disable lane bonding
2287 * @sw: Switch whose lane bonding to disable
2288 *
2289 * Disables lane bonding between @sw and parent. This can be called even
2290 * if lanes were not bonded originally.
2291 */
2292void tb_switch_lane_bonding_disable(struct tb_switch *sw)
2293{
2294 struct tb_switch *parent = tb_to_switch(sw->dev.parent);
2295 struct tb_port *up, *down;
2296
2297 if (!tb_route(sw))
2298 return;
2299
2300 up = tb_upstream_port(sw);
2301 if (!up->bonded)
2302 return;
2303
2304 down = tb_port_at(tb_route(sw), parent);
2305
2306 tb_port_lane_bonding_disable(up);
2307 tb_port_lane_bonding_disable(down);
2308
2309 tb_switch_update_link_attributes(sw);
2310 tb_sw_dbg(sw, "lane bonding disabled\n");
2311}
2312
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002313/**
2314 * tb_switch_add() - Add a switch to the domain
2315 * @sw: Switch to add
2316 *
2317 * This is the last step in adding switch to the domain. It will read
2318 * identification information from DROM and initializes ports so that
2319 * they can be used to connect other switches. The switch will be
2320 * exposed to the userspace when this function successfully returns. To
2321 * remove and release the switch, call tb_switch_remove().
2322 *
2323 * Return: %0 in case of success and negative errno in case of failure
2324 */
2325int tb_switch_add(struct tb_switch *sw)
2326{
2327 int i, ret;
Andreas Noeverca389f72014-06-03 22:04:04 +02002328
Mika Westerberg3e136762017-06-06 15:25:14 +03002329 /*
2330 * Initialize DMA control port now before we read DROM. Recent
2331 * host controllers have more complete DROM on NVM that includes
2332 * vendor and model identification strings which we then expose
2333 * to the userspace. NVM can be accessed through DMA
2334 * configuration based mailbox.
2335 */
Mika Westerberge6b245c2017-06-06 15:25:17 +03002336 ret = tb_switch_add_dma_port(sw);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002337 if (ret) {
2338 dev_err(&sw->dev, "failed to add DMA port\n");
Mika Westerbergf53e7672017-06-06 15:25:02 +03002339 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002340 }
Andreas Noever343fcb82014-06-12 23:11:47 +02002341
Mika Westerberge6b245c2017-06-06 15:25:17 +03002342 if (!sw->safe_mode) {
2343 /* read drom */
2344 ret = tb_drom_read(sw);
2345 if (ret) {
Mika Westerbergaf99f692019-08-27 15:18:20 +03002346 dev_err(&sw->dev, "reading DROM failed\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002347 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +03002348 }
Mika Westerbergdaa51402018-10-01 12:31:19 +03002349 tb_sw_dbg(sw, "uid: %#llx\n", sw->uid);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002350
Aditya Pakki2cc12752019-03-20 10:57:54 -05002351 ret = tb_switch_set_uuid(sw);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002352 if (ret) {
2353 dev_err(&sw->dev, "failed to set UUID\n");
Aditya Pakki2cc12752019-03-20 10:57:54 -05002354 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002355 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002356
2357 for (i = 0; i <= sw->config.max_port_number; i++) {
2358 if (sw->ports[i].disabled) {
Mika Westerbergdaa51402018-10-01 12:31:19 +03002359 tb_port_dbg(&sw->ports[i], "disabled by eeprom\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002360 continue;
2361 }
2362 ret = tb_init_port(&sw->ports[i]);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002363 if (ret) {
2364 dev_err(&sw->dev, "failed to initialize port %d\n", i);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002365 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002366 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002367 }
Mika Westerberg91c0c122019-03-21 19:03:00 +02002368
Mika Westerberg0d46c082019-08-26 18:19:33 +03002369 tb_switch_default_link_ports(sw);
2370
Mika Westerberg91c0c122019-03-21 19:03:00 +02002371 ret = tb_switch_update_link_attributes(sw);
2372 if (ret)
2373 return ret;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +03002374
2375 ret = tb_switch_tmu_init(sw);
2376 if (ret)
2377 return ret;
Andreas Noever343fcb82014-06-12 23:11:47 +02002378 }
2379
Mika Westerberge6b245c2017-06-06 15:25:17 +03002380 ret = device_add(&sw->dev);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002381 if (ret) {
2382 dev_err(&sw->dev, "failed to add device: %d\n", ret);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002383 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002384 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002385
Mika Westerberga83bc4a2018-10-01 12:31:20 +03002386 if (tb_route(sw)) {
2387 dev_info(&sw->dev, "new device found, vendor=%#x device=%#x\n",
2388 sw->vendor, sw->device);
2389 if (sw->vendor_name && sw->device_name)
2390 dev_info(&sw->dev, "%s %s\n", sw->vendor_name,
2391 sw->device_name);
2392 }
2393
Mika Westerberge6b245c2017-06-06 15:25:17 +03002394 ret = tb_switch_nvm_add(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002395 if (ret) {
Mika Westerbergaf99f692019-08-27 15:18:20 +03002396 dev_err(&sw->dev, "failed to add NVM devices\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002397 device_del(&sw->dev);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002398 return ret;
2399 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002400
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002401 pm_runtime_set_active(&sw->dev);
2402 if (sw->rpm) {
2403 pm_runtime_set_autosuspend_delay(&sw->dev, TB_AUTOSUSPEND_DELAY);
2404 pm_runtime_use_autosuspend(&sw->dev);
2405 pm_runtime_mark_last_busy(&sw->dev);
2406 pm_runtime_enable(&sw->dev);
2407 pm_request_autosuspend(&sw->dev);
2408 }
2409
2410 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002411}
Andreas Noeverc90553b2014-06-03 22:04:11 +02002412
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002413/**
2414 * tb_switch_remove() - Remove and release a switch
2415 * @sw: Switch to remove
2416 *
2417 * This will remove the switch from the domain and release it after last
2418 * reference count drops to zero. If there are switches connected below
2419 * this switch, they will be removed as well.
2420 */
2421void tb_switch_remove(struct tb_switch *sw)
2422{
Mika Westerbergb433d012019-09-30 14:07:22 +03002423 struct tb_port *port;
Andreas Noeverca389f72014-06-03 22:04:04 +02002424
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002425 if (sw->rpm) {
2426 pm_runtime_get_sync(&sw->dev);
2427 pm_runtime_disable(&sw->dev);
2428 }
2429
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002430 /* port 0 is the switch itself and never has a remote */
Mika Westerbergb433d012019-09-30 14:07:22 +03002431 tb_switch_for_each_port(sw, port) {
2432 if (tb_port_has_remote(port)) {
2433 tb_switch_remove(port->remote->sw);
2434 port->remote = NULL;
2435 } else if (port->xdomain) {
2436 tb_xdomain_remove(port->xdomain);
2437 port->xdomain = NULL;
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02002438 }
Kranthi Kuntaladacb1282020-03-05 16:39:58 +02002439
2440 /* Remove any downstream retimers */
2441 tb_retimer_remove_all(port);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002442 }
2443
2444 if (!sw->is_unplugged)
2445 tb_plug_events_active(sw, false);
Mika Westerbergb0407982019-12-17 15:33:40 +03002446
2447 if (tb_switch_is_usb4(sw))
2448 usb4_switch_unconfigure_link(sw);
2449 else
2450 tb_lc_unconfigure_link(sw);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002451
Mika Westerberge6b245c2017-06-06 15:25:17 +03002452 tb_switch_nvm_remove(sw);
Mika Westerberga83bc4a2018-10-01 12:31:20 +03002453
2454 if (tb_route(sw))
2455 dev_info(&sw->dev, "device disconnected\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002456 device_unregister(&sw->dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02002457}
2458
Andreas Noever053596d2014-06-03 22:04:06 +02002459/**
Lukas Wunneraae20bb2016-03-20 13:57:20 +01002460 * tb_sw_set_unplugged() - set is_unplugged on switch and downstream switches
Andreas Noever053596d2014-06-03 22:04:06 +02002461 */
Lukas Wunneraae20bb2016-03-20 13:57:20 +01002462void tb_sw_set_unplugged(struct tb_switch *sw)
Andreas Noever053596d2014-06-03 22:04:06 +02002463{
Mika Westerbergb433d012019-09-30 14:07:22 +03002464 struct tb_port *port;
2465
Andreas Noever053596d2014-06-03 22:04:06 +02002466 if (sw == sw->tb->root_switch) {
2467 tb_sw_WARN(sw, "cannot unplug root switch\n");
2468 return;
2469 }
2470 if (sw->is_unplugged) {
2471 tb_sw_WARN(sw, "is_unplugged already set\n");
2472 return;
2473 }
2474 sw->is_unplugged = true;
Mika Westerbergb433d012019-09-30 14:07:22 +03002475 tb_switch_for_each_port(sw, port) {
2476 if (tb_port_has_remote(port))
2477 tb_sw_set_unplugged(port->remote->sw);
2478 else if (port->xdomain)
2479 port->xdomain->is_unplugged = true;
Andreas Noever053596d2014-06-03 22:04:06 +02002480 }
2481}
2482
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002483int tb_switch_resume(struct tb_switch *sw)
2484{
Mika Westerbergb433d012019-09-30 14:07:22 +03002485 struct tb_port *port;
2486 int err;
2487
Mika Westerbergdaa51402018-10-01 12:31:19 +03002488 tb_sw_dbg(sw, "resuming switch\n");
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002489
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03002490 /*
2491 * Check for UID of the connected switches except for root
2492 * switch which we assume cannot be removed.
2493 */
2494 if (tb_route(sw)) {
2495 u64 uid;
2496
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002497 /*
2498 * Check first that we can still read the switch config
2499 * space. It may be that there is now another domain
2500 * connected.
2501 */
2502 err = tb_cfg_get_upstream_port(sw->tb->ctl, tb_route(sw));
2503 if (err < 0) {
2504 tb_sw_info(sw, "switch not present anymore\n");
2505 return err;
2506 }
2507
Mika Westerbergb0407982019-12-17 15:33:40 +03002508 if (tb_switch_is_usb4(sw))
2509 err = usb4_switch_read_uid(sw, &uid);
2510 else
2511 err = tb_drom_read_uid_only(sw, &uid);
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03002512 if (err) {
2513 tb_sw_warn(sw, "uid read failed\n");
2514 return err;
2515 }
2516 if (sw->uid != uid) {
2517 tb_sw_info(sw,
2518 "changed while suspended (uid %#llx -> %#llx)\n",
2519 sw->uid, uid);
2520 return -ENODEV;
2521 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002522 }
2523
Mika Westerbergb0407982019-12-17 15:33:40 +03002524 err = tb_switch_configure(sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002525 if (err)
2526 return err;
2527
2528 /* check for surviving downstream switches */
Mika Westerbergb433d012019-09-30 14:07:22 +03002529 tb_switch_for_each_port(sw, port) {
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002530 if (!tb_port_has_remote(port) && !port->xdomain)
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002531 continue;
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02002532
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002533 if (tb_wait_for_port(port, true) <= 0) {
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002534 tb_port_warn(port,
2535 "lost during suspend, disconnecting\n");
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002536 if (tb_port_has_remote(port))
2537 tb_sw_set_unplugged(port->remote->sw);
2538 else if (port->xdomain)
2539 port->xdomain->is_unplugged = true;
Mika Westerbergb0407982019-12-17 15:33:40 +03002540 } else if (tb_port_has_remote(port) || port->xdomain) {
2541 /*
2542 * Always unlock the port so the downstream
2543 * switch/domain is accessible.
2544 */
2545 if (tb_port_unlock(port))
2546 tb_port_warn(port, "failed to unlock port\n");
2547 if (port->remote && tb_switch_resume(port->remote->sw)) {
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002548 tb_port_warn(port,
2549 "lost during suspend, disconnecting\n");
2550 tb_sw_set_unplugged(port->remote->sw);
2551 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002552 }
2553 }
2554 return 0;
2555}
2556
2557void tb_switch_suspend(struct tb_switch *sw)
2558{
Mika Westerbergb433d012019-09-30 14:07:22 +03002559 struct tb_port *port;
2560 int err;
2561
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002562 err = tb_plug_events_active(sw, false);
2563 if (err)
2564 return;
2565
Mika Westerbergb433d012019-09-30 14:07:22 +03002566 tb_switch_for_each_port(sw, port) {
2567 if (tb_port_has_remote(port))
2568 tb_switch_suspend(port->remote->sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002569 }
Mika Westerberg5480dfc2019-01-09 17:25:43 +02002570
Mika Westerbergb0407982019-12-17 15:33:40 +03002571 if (tb_switch_is_usb4(sw))
2572 usb4_switch_set_sleep(sw);
2573 else
2574 tb_lc_set_sleep(sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002575}
Mika Westerbergf67cf492017-06-06 15:25:16 +03002576
Mika Westerberg8afe9092019-03-26 15:52:30 +03002577/**
2578 * tb_switch_query_dp_resource() - Query availability of DP resource
2579 * @sw: Switch whose DP resource is queried
2580 * @in: DP IN port
2581 *
2582 * Queries availability of DP resource for DP tunneling using switch
2583 * specific means. Returns %true if resource is available.
2584 */
2585bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in)
2586{
Mika Westerbergb0407982019-12-17 15:33:40 +03002587 if (tb_switch_is_usb4(sw))
2588 return usb4_switch_query_dp_resource(sw, in);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002589 return tb_lc_dp_sink_query(sw, in);
2590}
2591
2592/**
2593 * tb_switch_alloc_dp_resource() - Allocate available DP resource
2594 * @sw: Switch whose DP resource is allocated
2595 * @in: DP IN port
2596 *
2597 * Allocates DP resource for DP tunneling. The resource must be
2598 * available for this to succeed (see tb_switch_query_dp_resource()).
2599 * Returns %0 in success and negative errno otherwise.
2600 */
2601int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
2602{
Mika Westerbergb0407982019-12-17 15:33:40 +03002603 if (tb_switch_is_usb4(sw))
2604 return usb4_switch_alloc_dp_resource(sw, in);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002605 return tb_lc_dp_sink_alloc(sw, in);
2606}
2607
2608/**
2609 * tb_switch_dealloc_dp_resource() - De-allocate DP resource
2610 * @sw: Switch whose DP resource is de-allocated
2611 * @in: DP IN port
2612 *
2613 * De-allocates DP resource that was previously allocated for DP
2614 * tunneling.
2615 */
2616void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
2617{
Mika Westerbergb0407982019-12-17 15:33:40 +03002618 int ret;
2619
2620 if (tb_switch_is_usb4(sw))
2621 ret = usb4_switch_dealloc_dp_resource(sw, in);
2622 else
2623 ret = tb_lc_dp_sink_dealloc(sw, in);
2624
2625 if (ret)
Mika Westerberg8afe9092019-03-26 15:52:30 +03002626 tb_sw_warn(sw, "failed to de-allocate DP resource for port %d\n",
2627 in->port);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002628}
2629
Mika Westerbergf67cf492017-06-06 15:25:16 +03002630struct tb_sw_lookup {
2631 struct tb *tb;
2632 u8 link;
2633 u8 depth;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002634 const uuid_t *uuid;
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002635 u64 route;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002636};
2637
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002638static int tb_switch_match(struct device *dev, const void *data)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002639{
2640 struct tb_switch *sw = tb_to_switch(dev);
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002641 const struct tb_sw_lookup *lookup = data;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002642
2643 if (!sw)
2644 return 0;
2645 if (sw->tb != lookup->tb)
2646 return 0;
2647
2648 if (lookup->uuid)
2649 return !memcmp(sw->uuid, lookup->uuid, sizeof(*lookup->uuid));
2650
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002651 if (lookup->route) {
2652 return sw->config.route_lo == lower_32_bits(lookup->route) &&
2653 sw->config.route_hi == upper_32_bits(lookup->route);
2654 }
2655
Mika Westerbergf67cf492017-06-06 15:25:16 +03002656 /* Root switch is matched only by depth */
2657 if (!lookup->depth)
2658 return !sw->depth;
2659
2660 return sw->link == lookup->link && sw->depth == lookup->depth;
2661}
2662
2663/**
2664 * tb_switch_find_by_link_depth() - Find switch by link and depth
2665 * @tb: Domain the switch belongs
2666 * @link: Link number the switch is connected
2667 * @depth: Depth of the switch in link
2668 *
2669 * Returned switch has reference count increased so the caller needs to
2670 * call tb_switch_put() when done with the switch.
2671 */
2672struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link, u8 depth)
2673{
2674 struct tb_sw_lookup lookup;
2675 struct device *dev;
2676
2677 memset(&lookup, 0, sizeof(lookup));
2678 lookup.tb = tb;
2679 lookup.link = link;
2680 lookup.depth = depth;
2681
2682 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2683 if (dev)
2684 return tb_to_switch(dev);
2685
2686 return NULL;
2687}
2688
2689/**
Radion Mirchevsky432019d2017-10-04 15:07:40 +03002690 * tb_switch_find_by_uuid() - Find switch by UUID
Mika Westerbergf67cf492017-06-06 15:25:16 +03002691 * @tb: Domain the switch belongs
2692 * @uuid: UUID to look for
2693 *
2694 * Returned switch has reference count increased so the caller needs to
2695 * call tb_switch_put() when done with the switch.
2696 */
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002697struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002698{
2699 struct tb_sw_lookup lookup;
2700 struct device *dev;
2701
2702 memset(&lookup, 0, sizeof(lookup));
2703 lookup.tb = tb;
2704 lookup.uuid = uuid;
2705
2706 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2707 if (dev)
2708 return tb_to_switch(dev);
2709
2710 return NULL;
2711}
Mika Westerberge6b245c2017-06-06 15:25:17 +03002712
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002713/**
2714 * tb_switch_find_by_route() - Find switch by route string
2715 * @tb: Domain the switch belongs
2716 * @route: Route string to look for
2717 *
2718 * Returned switch has reference count increased so the caller needs to
2719 * call tb_switch_put() when done with the switch.
2720 */
2721struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route)
2722{
2723 struct tb_sw_lookup lookup;
2724 struct device *dev;
2725
2726 if (!route)
2727 return tb_switch_get(tb->root_switch);
2728
2729 memset(&lookup, 0, sizeof(lookup));
2730 lookup.tb = tb;
2731 lookup.route = route;
2732
2733 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2734 if (dev)
2735 return tb_to_switch(dev);
2736
2737 return NULL;
2738}
2739
Mika Westerberg386e5e22019-12-17 15:33:37 +03002740/**
2741 * tb_switch_find_port() - return the first port of @type on @sw or NULL
2742 * @sw: Switch to find the port from
2743 * @type: Port type to look for
2744 */
2745struct tb_port *tb_switch_find_port(struct tb_switch *sw,
2746 enum tb_port_type type)
2747{
2748 struct tb_port *port;
2749
2750 tb_switch_for_each_port(sw, port) {
2751 if (port->config.type == type)
2752 return port;
2753 }
2754
2755 return NULL;
2756}