blob: 7ffb3b00b54f76528117af15b03e675e4aa56bf0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Andreas Noevera25c8b22014-06-03 22:04:02 +02002/*
Mika Westerberg15c67842018-10-01 12:31:22 +03003 * Thunderbolt driver - switch/port utility functions
Andreas Noevera25c8b22014-06-03 22:04:02 +02004 *
5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
Mika Westerberg15c67842018-10-01 12:31:22 +03006 * Copyright (C) 2018, Intel Corporation
Andreas Noevera25c8b22014-06-03 22:04:02 +02007 */
8
9#include <linux/delay.h>
Mika Westerberge6b245c2017-06-06 15:25:17 +030010#include <linux/idr.h>
11#include <linux/nvmem-provider.h>
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +030012#include <linux/pm_runtime.h>
Mika Westerberg09f11b62019-03-19 16:48:41 +020013#include <linux/sched/signal.h>
Mika Westerberge6b245c2017-06-06 15:25:17 +030014#include <linux/sizes.h>
Sachin Kamat10fefe52014-06-20 14:32:30 +053015#include <linux/slab.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020016
17#include "tb.h"
18
Mika Westerberge6b245c2017-06-06 15:25:17 +030019/* Switch NVM support */
20
Mika Westerberge6b245c2017-06-06 15:25:17 +030021#define NVM_CSS 0x10
Mika Westerberge6b245c2017-06-06 15:25:17 +030022
23struct nvm_auth_status {
24 struct list_head list;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +020025 uuid_t uuid;
Mika Westerberge6b245c2017-06-06 15:25:17 +030026 u32 status;
27};
28
Mario Limonciello4b794f82020-06-23 11:14:28 -050029enum nvm_write_ops {
30 WRITE_AND_AUTHENTICATE = 1,
31 WRITE_ONLY = 2,
32};
33
Mika Westerberge6b245c2017-06-06 15:25:17 +030034/*
35 * Hold NVM authentication failure status per switch This information
36 * needs to stay around even when the switch gets power cycled so we
37 * keep it separately.
38 */
39static LIST_HEAD(nvm_auth_status_cache);
40static DEFINE_MUTEX(nvm_auth_status_lock);
41
42static struct nvm_auth_status *__nvm_get_auth_status(const struct tb_switch *sw)
43{
44 struct nvm_auth_status *st;
45
46 list_for_each_entry(st, &nvm_auth_status_cache, list) {
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +020047 if (uuid_equal(&st->uuid, sw->uuid))
Mika Westerberge6b245c2017-06-06 15:25:17 +030048 return st;
49 }
50
51 return NULL;
52}
53
54static void nvm_get_auth_status(const struct tb_switch *sw, u32 *status)
55{
56 struct nvm_auth_status *st;
57
58 mutex_lock(&nvm_auth_status_lock);
59 st = __nvm_get_auth_status(sw);
60 mutex_unlock(&nvm_auth_status_lock);
61
62 *status = st ? st->status : 0;
63}
64
65static void nvm_set_auth_status(const struct tb_switch *sw, u32 status)
66{
67 struct nvm_auth_status *st;
68
69 if (WARN_ON(!sw->uuid))
70 return;
71
72 mutex_lock(&nvm_auth_status_lock);
73 st = __nvm_get_auth_status(sw);
74
75 if (!st) {
76 st = kzalloc(sizeof(*st), GFP_KERNEL);
77 if (!st)
78 goto unlock;
79
80 memcpy(&st->uuid, sw->uuid, sizeof(st->uuid));
81 INIT_LIST_HEAD(&st->list);
82 list_add_tail(&st->list, &nvm_auth_status_cache);
83 }
84
85 st->status = status;
86unlock:
87 mutex_unlock(&nvm_auth_status_lock);
88}
89
90static void nvm_clear_auth_status(const struct tb_switch *sw)
91{
92 struct nvm_auth_status *st;
93
94 mutex_lock(&nvm_auth_status_lock);
95 st = __nvm_get_auth_status(sw);
96 if (st) {
97 list_del(&st->list);
98 kfree(st);
99 }
100 mutex_unlock(&nvm_auth_status_lock);
101}
102
103static int nvm_validate_and_write(struct tb_switch *sw)
104{
105 unsigned int image_size, hdr_size;
106 const u8 *buf = sw->nvm->buf;
107 u16 ds_size;
108 int ret;
109
110 if (!buf)
111 return -EINVAL;
112
113 image_size = sw->nvm->buf_data_size;
114 if (image_size < NVM_MIN_SIZE || image_size > NVM_MAX_SIZE)
115 return -EINVAL;
116
117 /*
118 * FARB pointer must point inside the image and must at least
119 * contain parts of the digital section we will be reading here.
120 */
121 hdr_size = (*(u32 *)buf) & 0xffffff;
122 if (hdr_size + NVM_DEVID + 2 >= image_size)
123 return -EINVAL;
124
125 /* Digital section start should be aligned to 4k page */
126 if (!IS_ALIGNED(hdr_size, SZ_4K))
127 return -EINVAL;
128
129 /*
130 * Read digital section size and check that it also fits inside
131 * the image.
132 */
133 ds_size = *(u16 *)(buf + hdr_size);
134 if (ds_size >= image_size)
135 return -EINVAL;
136
137 if (!sw->safe_mode) {
138 u16 device_id;
139
140 /*
141 * Make sure the device ID in the image matches the one
142 * we read from the switch config space.
143 */
144 device_id = *(u16 *)(buf + hdr_size + NVM_DEVID);
145 if (device_id != sw->config.device_id)
146 return -EINVAL;
147
148 if (sw->generation < 3) {
149 /* Write CSS headers first */
150 ret = dma_port_flash_write(sw->dma_port,
151 DMA_PORT_CSS_ADDRESS, buf + NVM_CSS,
152 DMA_PORT_CSS_MAX_SIZE);
153 if (ret)
154 return ret;
155 }
156
157 /* Skip headers in the image */
158 buf += hdr_size;
159 image_size -= hdr_size;
160 }
161
Mika Westerbergb0407982019-12-17 15:33:40 +0300162 if (tb_switch_is_usb4(sw))
Mario Limonciello4b794f82020-06-23 11:14:28 -0500163 ret = usb4_switch_nvm_write(sw, 0, buf, image_size);
164 else
165 ret = dma_port_flash_write(sw->dma_port, 0, buf, image_size);
166 if (!ret)
167 sw->nvm->flushed = true;
168 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300169}
170
Mika Westerbergb0407982019-12-17 15:33:40 +0300171static int nvm_authenticate_host_dma_port(struct tb_switch *sw)
Mika Westerberge6b245c2017-06-06 15:25:17 +0300172{
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300173 int ret = 0;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300174
175 /*
176 * Root switch NVM upgrade requires that we disconnect the
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300177 * existing paths first (in case it is not in safe mode
Mika Westerberge6b245c2017-06-06 15:25:17 +0300178 * already).
179 */
180 if (!sw->safe_mode) {
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300181 u32 status;
182
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300183 ret = tb_domain_disconnect_all_paths(sw->tb);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300184 if (ret)
185 return ret;
186 /*
187 * The host controller goes away pretty soon after this if
188 * everything goes well so getting timeout is expected.
189 */
190 ret = dma_port_flash_update_auth(sw->dma_port);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300191 if (!ret || ret == -ETIMEDOUT)
192 return 0;
193
194 /*
195 * Any error from update auth operation requires power
196 * cycling of the host router.
197 */
198 tb_sw_warn(sw, "failed to authenticate NVM, power cycling\n");
199 if (dma_port_flash_update_auth_status(sw->dma_port, &status) > 0)
200 nvm_set_auth_status(sw, status);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300201 }
202
203 /*
204 * From safe mode we can get out by just power cycling the
205 * switch.
206 */
207 dma_port_power_cycle(sw->dma_port);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300208 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300209}
210
Mika Westerbergb0407982019-12-17 15:33:40 +0300211static int nvm_authenticate_device_dma_port(struct tb_switch *sw)
Mika Westerberge6b245c2017-06-06 15:25:17 +0300212{
213 int ret, retries = 10;
214
215 ret = dma_port_flash_update_auth(sw->dma_port);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300216 switch (ret) {
217 case 0:
218 case -ETIMEDOUT:
219 case -EACCES:
220 case -EINVAL:
221 /* Power cycle is required */
222 break;
223 default:
Mika Westerberge6b245c2017-06-06 15:25:17 +0300224 return ret;
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +0300225 }
Mika Westerberge6b245c2017-06-06 15:25:17 +0300226
227 /*
228 * Poll here for the authentication status. It takes some time
229 * for the device to respond (we get timeout for a while). Once
230 * we get response the device needs to be power cycled in order
231 * to the new NVM to be taken into use.
232 */
233 do {
234 u32 status;
235
236 ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
237 if (ret < 0 && ret != -ETIMEDOUT)
238 return ret;
239 if (ret > 0) {
240 if (status) {
241 tb_sw_warn(sw, "failed to authenticate NVM\n");
242 nvm_set_auth_status(sw, status);
243 }
244
245 tb_sw_info(sw, "power cycling the switch now\n");
246 dma_port_power_cycle(sw->dma_port);
247 return 0;
248 }
249
250 msleep(500);
251 } while (--retries);
252
253 return -ETIMEDOUT;
254}
255
Mika Westerbergb0407982019-12-17 15:33:40 +0300256static void nvm_authenticate_start_dma_port(struct tb_switch *sw)
257{
258 struct pci_dev *root_port;
259
260 /*
261 * During host router NVM upgrade we should not allow root port to
262 * go into D3cold because some root ports cannot trigger PME
263 * itself. To be on the safe side keep the root port in D0 during
264 * the whole upgrade process.
265 */
Yicong Yang6ae72bf2020-05-09 18:19:28 +0800266 root_port = pcie_find_root_port(sw->tb->nhi->pdev);
Mika Westerbergb0407982019-12-17 15:33:40 +0300267 if (root_port)
268 pm_runtime_get_noresume(&root_port->dev);
269}
270
271static void nvm_authenticate_complete_dma_port(struct tb_switch *sw)
272{
273 struct pci_dev *root_port;
274
Yicong Yang6ae72bf2020-05-09 18:19:28 +0800275 root_port = pcie_find_root_port(sw->tb->nhi->pdev);
Mika Westerbergb0407982019-12-17 15:33:40 +0300276 if (root_port)
277 pm_runtime_put(&root_port->dev);
278}
279
280static inline bool nvm_readable(struct tb_switch *sw)
281{
282 if (tb_switch_is_usb4(sw)) {
283 /*
284 * USB4 devices must support NVM operations but it is
285 * optional for hosts. Therefore we query the NVM sector
286 * size here and if it is supported assume NVM
287 * operations are implemented.
288 */
289 return usb4_switch_nvm_sector_size(sw) > 0;
290 }
291
292 /* Thunderbolt 2 and 3 devices support NVM through DMA port */
293 return !!sw->dma_port;
294}
295
296static inline bool nvm_upgradeable(struct tb_switch *sw)
297{
298 if (sw->no_nvm_upgrade)
299 return false;
300 return nvm_readable(sw);
301}
302
303static inline int nvm_read(struct tb_switch *sw, unsigned int address,
304 void *buf, size_t size)
305{
306 if (tb_switch_is_usb4(sw))
307 return usb4_switch_nvm_read(sw, address, buf, size);
308 return dma_port_flash_read(sw->dma_port, address, buf, size);
309}
310
311static int nvm_authenticate(struct tb_switch *sw)
312{
313 int ret;
314
315 if (tb_switch_is_usb4(sw))
316 return usb4_switch_nvm_authenticate(sw);
317
318 if (!tb_route(sw)) {
319 nvm_authenticate_start_dma_port(sw);
320 ret = nvm_authenticate_host_dma_port(sw);
321 } else {
322 ret = nvm_authenticate_device_dma_port(sw);
323 }
324
325 return ret;
326}
327
Mika Westerberge6b245c2017-06-06 15:25:17 +0300328static int tb_switch_nvm_read(void *priv, unsigned int offset, void *val,
329 size_t bytes)
330{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200331 struct tb_nvm *nvm = priv;
332 struct tb_switch *sw = tb_to_switch(nvm->dev);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300333 int ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300334
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300335 pm_runtime_get_sync(&sw->dev);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300336
337 if (!mutex_trylock(&sw->tb->lock)) {
338 ret = restart_syscall();
339 goto out;
340 }
341
Mika Westerbergb0407982019-12-17 15:33:40 +0300342 ret = nvm_read(sw, offset, val, bytes);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300343 mutex_unlock(&sw->tb->lock);
344
345out:
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300346 pm_runtime_mark_last_busy(&sw->dev);
347 pm_runtime_put_autosuspend(&sw->dev);
348
349 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300350}
351
352static int tb_switch_nvm_write(void *priv, unsigned int offset, void *val,
353 size_t bytes)
354{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200355 struct tb_nvm *nvm = priv;
356 struct tb_switch *sw = tb_to_switch(nvm->dev);
357 int ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300358
Mika Westerberg09f11b62019-03-19 16:48:41 +0200359 if (!mutex_trylock(&sw->tb->lock))
360 return restart_syscall();
Mika Westerberge6b245c2017-06-06 15:25:17 +0300361
362 /*
363 * Since writing the NVM image might require some special steps,
364 * for example when CSS headers are written, we cache the image
365 * locally here and handle the special cases when the user asks
366 * us to authenticate the image.
367 */
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200368 ret = tb_nvm_write_buf(nvm, offset, val, bytes);
Mika Westerberg09f11b62019-03-19 16:48:41 +0200369 mutex_unlock(&sw->tb->lock);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300370
371 return ret;
372}
373
Mika Westerberge6b245c2017-06-06 15:25:17 +0300374static int tb_switch_nvm_add(struct tb_switch *sw)
375{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200376 struct tb_nvm *nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300377 u32 val;
378 int ret;
379
Mika Westerbergb0407982019-12-17 15:33:40 +0300380 if (!nvm_readable(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +0300381 return 0;
382
Mika Westerbergb0407982019-12-17 15:33:40 +0300383 /*
384 * The NVM format of non-Intel hardware is not known so
385 * currently restrict NVM upgrade for Intel hardware. We may
386 * relax this in the future when we learn other NVM formats.
387 */
Mika Westerberg83d17032020-05-08 11:49:47 +0300388 if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL &&
389 sw->config.vendor_id != 0x8087) {
Mika Westerbergb0407982019-12-17 15:33:40 +0300390 dev_info(&sw->dev,
391 "NVM format of vendor %#x is not known, disabling NVM upgrade\n",
392 sw->config.vendor_id);
393 return 0;
394 }
395
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200396 nvm = tb_nvm_alloc(&sw->dev);
397 if (IS_ERR(nvm))
398 return PTR_ERR(nvm);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300399
400 /*
401 * If the switch is in safe-mode the only accessible portion of
402 * the NVM is the non-active one where userspace is expected to
403 * write new functional NVM.
404 */
405 if (!sw->safe_mode) {
406 u32 nvm_size, hdr_size;
407
Mika Westerbergb0407982019-12-17 15:33:40 +0300408 ret = nvm_read(sw, NVM_FLASH_SIZE, &val, sizeof(val));
Mika Westerberge6b245c2017-06-06 15:25:17 +0300409 if (ret)
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200410 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300411
412 hdr_size = sw->generation < 3 ? SZ_8K : SZ_16K;
413 nvm_size = (SZ_1M << (val & 7)) / 8;
414 nvm_size = (nvm_size - hdr_size) / 2;
415
Mika Westerbergb0407982019-12-17 15:33:40 +0300416 ret = nvm_read(sw, NVM_VERSION, &val, sizeof(val));
Mika Westerberge6b245c2017-06-06 15:25:17 +0300417 if (ret)
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200418 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300419
420 nvm->major = val >> 16;
421 nvm->minor = val >> 8;
422
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200423 ret = tb_nvm_add_active(nvm, nvm_size, tb_switch_nvm_read);
424 if (ret)
425 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300426 }
427
Mika Westerberg3f415e52019-02-05 12:51:40 +0300428 if (!sw->no_nvm_upgrade) {
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200429 ret = tb_nvm_add_non_active(nvm, NVM_MAX_SIZE,
430 tb_switch_nvm_write);
431 if (ret)
432 goto err_nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300433 }
Mika Westerberge6b245c2017-06-06 15:25:17 +0300434
Mika Westerberge6b245c2017-06-06 15:25:17 +0300435 sw->nvm = nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300436 return 0;
437
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200438err_nvm:
439 tb_nvm_free(nvm);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300440 return ret;
441}
442
443static void tb_switch_nvm_remove(struct tb_switch *sw)
444{
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200445 struct tb_nvm *nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300446
Mika Westerberge6b245c2017-06-06 15:25:17 +0300447 nvm = sw->nvm;
448 sw->nvm = NULL;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300449
450 if (!nvm)
451 return;
452
453 /* Remove authentication status in case the switch is unplugged */
454 if (!nvm->authenticating)
455 nvm_clear_auth_status(sw);
456
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200457 tb_nvm_free(nvm);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300458}
459
Andreas Noevera25c8b22014-06-03 22:04:02 +0200460/* port utility functions */
461
462static const char *tb_port_type(struct tb_regs_port_header *port)
463{
464 switch (port->type >> 16) {
465 case 0:
466 switch ((u8) port->type) {
467 case 0:
468 return "Inactive";
469 case 1:
470 return "Port";
471 case 2:
472 return "NHI";
473 default:
474 return "unknown";
475 }
476 case 0x2:
477 return "Ethernet";
478 case 0x8:
479 return "SATA";
480 case 0xe:
481 return "DP/HDMI";
482 case 0x10:
483 return "PCIe";
484 case 0x20:
485 return "USB";
486 default:
487 return "unknown";
488 }
489}
490
491static void tb_dump_port(struct tb *tb, struct tb_regs_port_header *port)
492{
Mika Westerbergdaa51402018-10-01 12:31:19 +0300493 tb_dbg(tb,
494 " Port %d: %x:%x (Revision: %d, TB Version: %d, Type: %s (%#x))\n",
495 port->port_number, port->vendor_id, port->device_id,
496 port->revision, port->thunderbolt_version, tb_port_type(port),
497 port->type);
498 tb_dbg(tb, " Max hop id (in/out): %d/%d\n",
499 port->max_in_hop_id, port->max_out_hop_id);
500 tb_dbg(tb, " Max counters: %d\n", port->max_counters);
501 tb_dbg(tb, " NFC Credits: %#x\n", port->nfc_credits);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200502}
503
504/**
Andreas Noever9da672a2014-06-03 22:04:05 +0200505 * tb_port_state() - get connectedness state of a port
506 *
507 * The port must have a TB_CAP_PHY (i.e. it should be a real port).
508 *
509 * Return: Returns an enum tb_port_state on success or an error code on failure.
510 */
511static int tb_port_state(struct tb_port *port)
512{
513 struct tb_cap_phy phy;
514 int res;
515 if (port->cap_phy == 0) {
516 tb_port_WARN(port, "does not have a PHY\n");
517 return -EINVAL;
518 }
519 res = tb_port_read(port, &phy, TB_CFG_PORT, port->cap_phy, 2);
520 if (res)
521 return res;
522 return phy.state;
523}
524
525/**
526 * tb_wait_for_port() - wait for a port to become ready
527 *
528 * Wait up to 1 second for a port to reach state TB_PORT_UP. If
529 * wait_if_unplugged is set then we also wait if the port is in state
530 * TB_PORT_UNPLUGGED (it takes a while for the device to be registered after
531 * switch resume). Otherwise we only wait if a device is registered but the link
532 * has not yet been established.
533 *
534 * Return: Returns an error code on failure. Returns 0 if the port is not
535 * connected or failed to reach state TB_PORT_UP within one second. Returns 1
536 * if the port is connected and in state TB_PORT_UP.
537 */
538int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged)
539{
540 int retries = 10;
541 int state;
542 if (!port->cap_phy) {
543 tb_port_WARN(port, "does not have PHY\n");
544 return -EINVAL;
545 }
546 if (tb_is_upstream_port(port)) {
547 tb_port_WARN(port, "is the upstream port\n");
548 return -EINVAL;
549 }
550
551 while (retries--) {
552 state = tb_port_state(port);
553 if (state < 0)
554 return state;
555 if (state == TB_PORT_DISABLED) {
Mika Westerberg62efe692018-09-17 16:32:13 +0300556 tb_port_dbg(port, "is disabled (state: 0)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200557 return 0;
558 }
559 if (state == TB_PORT_UNPLUGGED) {
560 if (wait_if_unplugged) {
561 /* used during resume */
Mika Westerberg62efe692018-09-17 16:32:13 +0300562 tb_port_dbg(port,
563 "is unplugged (state: 7), retrying...\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200564 msleep(100);
565 continue;
566 }
Mika Westerberg62efe692018-09-17 16:32:13 +0300567 tb_port_dbg(port, "is unplugged (state: 7)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200568 return 0;
569 }
570 if (state == TB_PORT_UP) {
Mika Westerberg62efe692018-09-17 16:32:13 +0300571 tb_port_dbg(port, "is connected, link is up (state: 2)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200572 return 1;
573 }
574
575 /*
576 * After plug-in the state is TB_PORT_CONNECTING. Give it some
577 * time.
578 */
Mika Westerberg62efe692018-09-17 16:32:13 +0300579 tb_port_dbg(port,
580 "is connected, link is not up (state: %d), retrying...\n",
581 state);
Andreas Noever9da672a2014-06-03 22:04:05 +0200582 msleep(100);
583 }
584 tb_port_warn(port,
585 "failed to reach state TB_PORT_UP. Ignoring port...\n");
586 return 0;
587}
588
589/**
Andreas Noever520b6702014-06-03 22:04:07 +0200590 * tb_port_add_nfc_credits() - add/remove non flow controlled credits to port
591 *
592 * Change the number of NFC credits allocated to @port by @credits. To remove
593 * NFC credits pass a negative amount of credits.
594 *
595 * Return: Returns 0 on success or an error code on failure.
596 */
597int tb_port_add_nfc_credits(struct tb_port *port, int credits)
598{
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300599 u32 nfc_credits;
600
601 if (credits == 0 || port->sw->is_unplugged)
Andreas Noever520b6702014-06-03 22:04:07 +0200602 return 0;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300603
Mika Westerbergedfbd682020-08-18 17:10:00 +0300604 /*
605 * USB4 restricts programming NFC buffers to lane adapters only
606 * so skip other ports.
607 */
608 if (tb_switch_is_usb4(port->sw) && !tb_port_is_null(port))
609 return 0;
610
Mika Westerberg8f57d472019-09-06 11:59:00 +0300611 nfc_credits = port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300612 nfc_credits += credits;
613
Mika Westerberg8f57d472019-09-06 11:59:00 +0300614 tb_port_dbg(port, "adding %d NFC credits to %lu", credits,
615 port->config.nfc_credits & ADP_CS_4_NFC_BUFFERS_MASK);
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300616
Mika Westerberg8f57d472019-09-06 11:59:00 +0300617 port->config.nfc_credits &= ~ADP_CS_4_NFC_BUFFERS_MASK;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300618 port->config.nfc_credits |= nfc_credits;
619
Andreas Noever520b6702014-06-03 22:04:07 +0200620 return tb_port_write(port, &port->config.nfc_credits,
Mika Westerberg8f57d472019-09-06 11:59:00 +0300621 TB_CFG_PORT, ADP_CS_4, 1);
Andreas Noever520b6702014-06-03 22:04:07 +0200622}
623
624/**
Mika Westerberg44242d62018-09-28 16:35:32 +0300625 * tb_port_set_initial_credits() - Set initial port link credits allocated
626 * @port: Port to set the initial credits
627 * @credits: Number of credits to to allocate
628 *
629 * Set initial credits value to be used for ingress shared buffering.
630 */
631int tb_port_set_initial_credits(struct tb_port *port, u32 credits)
632{
633 u32 data;
634 int ret;
635
Mika Westerberg8f57d472019-09-06 11:59:00 +0300636 ret = tb_port_read(port, &data, TB_CFG_PORT, ADP_CS_5, 1);
Mika Westerberg44242d62018-09-28 16:35:32 +0300637 if (ret)
638 return ret;
639
Mika Westerberg8f57d472019-09-06 11:59:00 +0300640 data &= ~ADP_CS_5_LCA_MASK;
641 data |= (credits << ADP_CS_5_LCA_SHIFT) & ADP_CS_5_LCA_MASK;
Mika Westerberg44242d62018-09-28 16:35:32 +0300642
Mika Westerberg8f57d472019-09-06 11:59:00 +0300643 return tb_port_write(port, &data, TB_CFG_PORT, ADP_CS_5, 1);
Mika Westerberg44242d62018-09-28 16:35:32 +0300644}
645
646/**
Andreas Noever520b6702014-06-03 22:04:07 +0200647 * tb_port_clear_counter() - clear a counter in TB_CFG_COUNTER
648 *
649 * Return: Returns 0 on success or an error code on failure.
650 */
651int tb_port_clear_counter(struct tb_port *port, int counter)
652{
653 u32 zero[3] = { 0, 0, 0 };
Mika Westerberg62efe692018-09-17 16:32:13 +0300654 tb_port_dbg(port, "clearing counter %d\n", counter);
Andreas Noever520b6702014-06-03 22:04:07 +0200655 return tb_port_write(port, zero, TB_CFG_COUNTERS, 3 * counter, 3);
656}
657
658/**
Mika Westerbergb0407982019-12-17 15:33:40 +0300659 * tb_port_unlock() - Unlock downstream port
660 * @port: Port to unlock
661 *
662 * Needed for USB4 but can be called for any CIO/USB4 ports. Makes the
663 * downstream router accessible for CM.
664 */
665int tb_port_unlock(struct tb_port *port)
666{
667 if (tb_switch_is_icm(port->sw))
668 return 0;
669 if (!tb_port_is_null(port))
670 return -EINVAL;
671 if (tb_switch_is_usb4(port->sw))
672 return usb4_port_unlock(port);
673 return 0;
674}
675
676/**
Andreas Noevera25c8b22014-06-03 22:04:02 +0200677 * tb_init_port() - initialize a port
678 *
679 * This is a helper method for tb_switch_alloc. Does not check or initialize
680 * any downstream switches.
681 *
682 * Return: Returns 0 on success or an error code on failure.
683 */
Andreas Noever343fcb82014-06-12 23:11:47 +0200684static int tb_init_port(struct tb_port *port)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200685{
686 int res;
Andreas Noever9da672a2014-06-03 22:04:05 +0200687 int cap;
Andreas Noever343fcb82014-06-12 23:11:47 +0200688
Andreas Noevera25c8b22014-06-03 22:04:02 +0200689 res = tb_port_read(port, &port->config, TB_CFG_PORT, 0, 8);
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300690 if (res) {
691 if (res == -ENODEV) {
692 tb_dbg(port->sw->tb, " Port %d: not implemented\n",
693 port->port);
694 return 0;
695 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200696 return res;
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300697 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200698
Andreas Noever9da672a2014-06-03 22:04:05 +0200699 /* Port 0 is the switch itself and has no PHY. */
Andreas Noever343fcb82014-06-12 23:11:47 +0200700 if (port->config.type == TB_TYPE_PORT && port->port != 0) {
Mika Westerbergda2da042017-06-06 15:24:58 +0300701 cap = tb_port_find_cap(port, TB_PORT_CAP_PHY);
Andreas Noever9da672a2014-06-03 22:04:05 +0200702
703 if (cap > 0)
704 port->cap_phy = cap;
705 else
706 tb_port_WARN(port, "non switch port without a PHY\n");
Mika Westerbergb0407982019-12-17 15:33:40 +0300707
708 cap = tb_port_find_cap(port, TB_PORT_CAP_USB4);
709 if (cap > 0)
710 port->cap_usb4 = cap;
Mika Westerberg56183c82017-02-19 10:39:34 +0200711 } else if (port->port != 0) {
712 cap = tb_port_find_cap(port, TB_PORT_CAP_ADAP);
713 if (cap > 0)
714 port->cap_adap = cap;
Andreas Noever9da672a2014-06-03 22:04:05 +0200715 }
716
Andreas Noever343fcb82014-06-12 23:11:47 +0200717 tb_dump_port(port->sw->tb, &port->config);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200718
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200719 /* Control port does not need HopID allocation */
720 if (port->port) {
721 ida_init(&port->in_hopids);
722 ida_init(&port->out_hopids);
723 }
724
Mika Westerberg8afe9092019-03-26 15:52:30 +0300725 INIT_LIST_HEAD(&port->list);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200726 return 0;
727
728}
729
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200730static int tb_port_alloc_hopid(struct tb_port *port, bool in, int min_hopid,
731 int max_hopid)
732{
733 int port_max_hopid;
734 struct ida *ida;
735
736 if (in) {
737 port_max_hopid = port->config.max_in_hop_id;
738 ida = &port->in_hopids;
739 } else {
740 port_max_hopid = port->config.max_out_hop_id;
741 ida = &port->out_hopids;
742 }
743
Mika Westerberg12676422020-06-01 12:47:07 +0300744 /*
745 * NHI can use HopIDs 1-max for other adapters HopIDs 0-7 are
746 * reserved.
747 */
748 if (port->config.type != TB_TYPE_NHI && min_hopid < TB_PATH_MIN_HOPID)
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200749 min_hopid = TB_PATH_MIN_HOPID;
750
751 if (max_hopid < 0 || max_hopid > port_max_hopid)
752 max_hopid = port_max_hopid;
753
754 return ida_simple_get(ida, min_hopid, max_hopid + 1, GFP_KERNEL);
755}
756
757/**
758 * tb_port_alloc_in_hopid() - Allocate input HopID from port
759 * @port: Port to allocate HopID for
760 * @min_hopid: Minimum acceptable input HopID
761 * @max_hopid: Maximum acceptable input HopID
762 *
763 * Return: HopID between @min_hopid and @max_hopid or negative errno in
764 * case of error.
765 */
766int tb_port_alloc_in_hopid(struct tb_port *port, int min_hopid, int max_hopid)
767{
768 return tb_port_alloc_hopid(port, true, min_hopid, max_hopid);
769}
770
771/**
772 * tb_port_alloc_out_hopid() - Allocate output HopID from port
773 * @port: Port to allocate HopID for
774 * @min_hopid: Minimum acceptable output HopID
775 * @max_hopid: Maximum acceptable output HopID
776 *
777 * Return: HopID between @min_hopid and @max_hopid or negative errno in
778 * case of error.
779 */
780int tb_port_alloc_out_hopid(struct tb_port *port, int min_hopid, int max_hopid)
781{
782 return tb_port_alloc_hopid(port, false, min_hopid, max_hopid);
783}
784
785/**
786 * tb_port_release_in_hopid() - Release allocated input HopID from port
787 * @port: Port whose HopID to release
788 * @hopid: HopID to release
789 */
790void tb_port_release_in_hopid(struct tb_port *port, int hopid)
791{
792 ida_simple_remove(&port->in_hopids, hopid);
793}
794
795/**
796 * tb_port_release_out_hopid() - Release allocated output HopID from port
797 * @port: Port whose HopID to release
798 * @hopid: HopID to release
799 */
800void tb_port_release_out_hopid(struct tb_port *port, int hopid)
801{
802 ida_simple_remove(&port->out_hopids, hopid);
803}
804
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300805static inline bool tb_switch_is_reachable(const struct tb_switch *parent,
806 const struct tb_switch *sw)
807{
808 u64 mask = (1ULL << parent->config.depth * 8) - 1;
809 return (tb_route(parent) & mask) == (tb_route(sw) & mask);
810}
811
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200812/**
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200813 * tb_next_port_on_path() - Return next port for given port on a path
814 * @start: Start port of the walk
815 * @end: End port of the walk
816 * @prev: Previous port (%NULL if this is the first)
817 *
818 * This function can be used to walk from one port to another if they
819 * are connected through zero or more switches. If the @prev is dual
820 * link port, the function follows that link and returns another end on
821 * that same link.
822 *
823 * If the @end port has been reached, return %NULL.
824 *
825 * Domain tb->lock must be held when this function is called.
826 */
827struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
828 struct tb_port *prev)
829{
830 struct tb_port *next;
831
832 if (!prev)
833 return start;
834
835 if (prev->sw == end->sw) {
836 if (prev == end)
837 return NULL;
838 return end;
839 }
840
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300841 if (tb_switch_is_reachable(prev->sw, end->sw)) {
842 next = tb_port_at(tb_route(end->sw), prev->sw);
843 /* Walk down the topology if next == prev */
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200844 if (prev->remote &&
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300845 (next == prev || next->dual_link_port == prev))
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200846 next = prev->remote;
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200847 } else {
848 if (tb_is_upstream_port(prev)) {
849 next = prev->remote;
850 } else {
851 next = tb_upstream_port(prev->sw);
852 /*
853 * Keep the same link if prev and next are both
854 * dual link ports.
855 */
856 if (next->dual_link_port &&
857 next->link_nr != prev->link_nr) {
858 next = next->dual_link_port;
859 }
860 }
861 }
862
Mika Westerberg69eb79f2020-04-29 17:00:30 +0300863 return next != prev ? next : NULL;
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200864}
865
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300866/**
867 * tb_port_get_link_speed() - Get current link speed
868 * @port: Port to check (USB4 or CIO)
869 *
870 * Returns link speed in Gb/s or negative errno in case of failure.
871 */
872int tb_port_get_link_speed(struct tb_port *port)
Mika Westerberg91c0c122019-03-21 19:03:00 +0200873{
874 u32 val, speed;
875 int ret;
876
877 if (!port->cap_phy)
878 return -EINVAL;
879
880 ret = tb_port_read(port, &val, TB_CFG_PORT,
881 port->cap_phy + LANE_ADP_CS_1, 1);
882 if (ret)
883 return ret;
884
885 speed = (val & LANE_ADP_CS_1_CURRENT_SPEED_MASK) >>
886 LANE_ADP_CS_1_CURRENT_SPEED_SHIFT;
887 return speed == LANE_ADP_CS_1_CURRENT_SPEED_GEN3 ? 20 : 10;
888}
889
890static int tb_port_get_link_width(struct tb_port *port)
891{
892 u32 val;
893 int ret;
894
895 if (!port->cap_phy)
896 return -EINVAL;
897
898 ret = tb_port_read(port, &val, TB_CFG_PORT,
899 port->cap_phy + LANE_ADP_CS_1, 1);
900 if (ret)
901 return ret;
902
903 return (val & LANE_ADP_CS_1_CURRENT_WIDTH_MASK) >>
904 LANE_ADP_CS_1_CURRENT_WIDTH_SHIFT;
905}
906
907static bool tb_port_is_width_supported(struct tb_port *port, int width)
908{
909 u32 phy, widths;
910 int ret;
911
912 if (!port->cap_phy)
913 return false;
914
915 ret = tb_port_read(port, &phy, TB_CFG_PORT,
916 port->cap_phy + LANE_ADP_CS_0, 1);
917 if (ret)
Dan Carpentere9d0e752020-03-03 13:17:16 +0300918 return false;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200919
920 widths = (phy & LANE_ADP_CS_0_SUPPORTED_WIDTH_MASK) >>
921 LANE_ADP_CS_0_SUPPORTED_WIDTH_SHIFT;
922
923 return !!(widths & width);
924}
925
926static int tb_port_set_link_width(struct tb_port *port, unsigned int width)
927{
928 u32 val;
929 int ret;
930
931 if (!port->cap_phy)
932 return -EINVAL;
933
934 ret = tb_port_read(port, &val, TB_CFG_PORT,
935 port->cap_phy + LANE_ADP_CS_1, 1);
936 if (ret)
937 return ret;
938
939 val &= ~LANE_ADP_CS_1_TARGET_WIDTH_MASK;
940 switch (width) {
941 case 1:
942 val |= LANE_ADP_CS_1_TARGET_WIDTH_SINGLE <<
943 LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
944 break;
945 case 2:
946 val |= LANE_ADP_CS_1_TARGET_WIDTH_DUAL <<
947 LANE_ADP_CS_1_TARGET_WIDTH_SHIFT;
948 break;
949 default:
950 return -EINVAL;
951 }
952
953 val |= LANE_ADP_CS_1_LB;
954
955 return tb_port_write(port, &val, TB_CFG_PORT,
956 port->cap_phy + LANE_ADP_CS_1, 1);
957}
958
959static int tb_port_lane_bonding_enable(struct tb_port *port)
960{
961 int ret;
962
963 /*
964 * Enable lane bonding for both links if not already enabled by
965 * for example the boot firmware.
966 */
967 ret = tb_port_get_link_width(port);
968 if (ret == 1) {
969 ret = tb_port_set_link_width(port, 2);
970 if (ret)
971 return ret;
972 }
973
974 ret = tb_port_get_link_width(port->dual_link_port);
975 if (ret == 1) {
976 ret = tb_port_set_link_width(port->dual_link_port, 2);
977 if (ret) {
978 tb_port_set_link_width(port, 1);
979 return ret;
980 }
981 }
982
983 port->bonded = true;
984 port->dual_link_port->bonded = true;
985
986 return 0;
987}
988
989static void tb_port_lane_bonding_disable(struct tb_port *port)
990{
991 port->dual_link_port->bonded = false;
992 port->bonded = false;
993
994 tb_port_set_link_width(port->dual_link_port, 1);
995 tb_port_set_link_width(port, 1);
996}
997
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200998/**
Mika Westerberge78db6f2017-10-12 16:45:50 +0300999 * tb_port_is_enabled() - Is the adapter port enabled
1000 * @port: Port to check
1001 */
1002bool tb_port_is_enabled(struct tb_port *port)
1003{
1004 switch (port->config.type) {
1005 case TB_TYPE_PCIE_UP:
1006 case TB_TYPE_PCIE_DOWN:
1007 return tb_pci_port_is_enabled(port);
1008
Mika Westerberg4f807e42018-09-17 16:30:49 +03001009 case TB_TYPE_DP_HDMI_IN:
1010 case TB_TYPE_DP_HDMI_OUT:
1011 return tb_dp_port_is_enabled(port);
1012
Rajmohan Manie6f81852019-12-17 15:33:44 +03001013 case TB_TYPE_USB3_UP:
1014 case TB_TYPE_USB3_DOWN:
1015 return tb_usb3_port_is_enabled(port);
1016
Mika Westerberge78db6f2017-10-12 16:45:50 +03001017 default:
1018 return false;
1019 }
1020}
1021
1022/**
Rajmohan Manie6f81852019-12-17 15:33:44 +03001023 * tb_usb3_port_is_enabled() - Is the USB3 adapter port enabled
1024 * @port: USB3 adapter port to check
1025 */
1026bool tb_usb3_port_is_enabled(struct tb_port *port)
1027{
1028 u32 data;
1029
1030 if (tb_port_read(port, &data, TB_CFG_PORT,
1031 port->cap_adap + ADP_USB3_CS_0, 1))
1032 return false;
1033
1034 return !!(data & ADP_USB3_CS_0_PE);
1035}
1036
1037/**
1038 * tb_usb3_port_enable() - Enable USB3 adapter port
1039 * @port: USB3 adapter port to enable
1040 * @enable: Enable/disable the USB3 adapter
1041 */
1042int tb_usb3_port_enable(struct tb_port *port, bool enable)
1043{
1044 u32 word = enable ? (ADP_USB3_CS_0_PE | ADP_USB3_CS_0_V)
1045 : ADP_USB3_CS_0_V;
1046
1047 if (!port->cap_adap)
1048 return -ENXIO;
1049 return tb_port_write(port, &word, TB_CFG_PORT,
1050 port->cap_adap + ADP_USB3_CS_0, 1);
1051}
1052
1053/**
Mika Westerberg0414bec2017-02-19 23:43:26 +02001054 * tb_pci_port_is_enabled() - Is the PCIe adapter port enabled
1055 * @port: PCIe port to check
1056 */
1057bool tb_pci_port_is_enabled(struct tb_port *port)
1058{
1059 u32 data;
1060
Mika Westerberg778bfca2019-09-06 12:05:24 +03001061 if (tb_port_read(port, &data, TB_CFG_PORT,
1062 port->cap_adap + ADP_PCIE_CS_0, 1))
Mika Westerberg0414bec2017-02-19 23:43:26 +02001063 return false;
1064
Mika Westerberg778bfca2019-09-06 12:05:24 +03001065 return !!(data & ADP_PCIE_CS_0_PE);
Mika Westerberg0414bec2017-02-19 23:43:26 +02001066}
1067
1068/**
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001069 * tb_pci_port_enable() - Enable PCIe adapter port
1070 * @port: PCIe port to enable
1071 * @enable: Enable/disable the PCIe adapter
1072 */
1073int tb_pci_port_enable(struct tb_port *port, bool enable)
1074{
Mika Westerberg778bfca2019-09-06 12:05:24 +03001075 u32 word = enable ? ADP_PCIE_CS_0_PE : 0x0;
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001076 if (!port->cap_adap)
1077 return -ENXIO;
Mika Westerberg778bfca2019-09-06 12:05:24 +03001078 return tb_port_write(port, &word, TB_CFG_PORT,
1079 port->cap_adap + ADP_PCIE_CS_0, 1);
Mika Westerberg93f36ad2017-02-19 13:48:29 +02001080}
1081
Mika Westerberg4f807e42018-09-17 16:30:49 +03001082/**
1083 * tb_dp_port_hpd_is_active() - Is HPD already active
1084 * @port: DP out port to check
1085 *
1086 * Checks if the DP OUT adapter port has HDP bit already set.
1087 */
1088int tb_dp_port_hpd_is_active(struct tb_port *port)
1089{
1090 u32 data;
1091 int ret;
1092
Mika Westerberg98176382019-09-06 11:32:15 +03001093 ret = tb_port_read(port, &data, TB_CFG_PORT,
1094 port->cap_adap + ADP_DP_CS_2, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001095 if (ret)
1096 return ret;
1097
Mika Westerberg98176382019-09-06 11:32:15 +03001098 return !!(data & ADP_DP_CS_2_HDP);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001099}
1100
1101/**
1102 * tb_dp_port_hpd_clear() - Clear HPD from DP IN port
1103 * @port: Port to clear HPD
1104 *
1105 * If the DP IN port has HDP set, this function can be used to clear it.
1106 */
1107int tb_dp_port_hpd_clear(struct tb_port *port)
1108{
1109 u32 data;
1110 int ret;
1111
Mika Westerberg98176382019-09-06 11:32:15 +03001112 ret = tb_port_read(port, &data, TB_CFG_PORT,
1113 port->cap_adap + ADP_DP_CS_3, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001114 if (ret)
1115 return ret;
1116
Mika Westerberg98176382019-09-06 11:32:15 +03001117 data |= ADP_DP_CS_3_HDPC;
1118 return tb_port_write(port, &data, TB_CFG_PORT,
1119 port->cap_adap + ADP_DP_CS_3, 1);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001120}
1121
1122/**
1123 * tb_dp_port_set_hops() - Set video/aux Hop IDs for DP port
1124 * @port: DP IN/OUT port to set hops
1125 * @video: Video Hop ID
1126 * @aux_tx: AUX TX Hop ID
1127 * @aux_rx: AUX RX Hop ID
1128 *
1129 * Programs specified Hop IDs for DP IN/OUT port.
1130 */
1131int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
1132 unsigned int aux_tx, unsigned int aux_rx)
1133{
1134 u32 data[2];
1135 int ret;
1136
Mika Westerberg98176382019-09-06 11:32:15 +03001137 ret = tb_port_read(port, data, TB_CFG_PORT,
1138 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001139 if (ret)
1140 return ret;
1141
Mika Westerberg98176382019-09-06 11:32:15 +03001142 data[0] &= ~ADP_DP_CS_0_VIDEO_HOPID_MASK;
1143 data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
1144 data[1] &= ~ADP_DP_CS_1_AUX_RX_HOPID_MASK;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001145
Mika Westerberg98176382019-09-06 11:32:15 +03001146 data[0] |= (video << ADP_DP_CS_0_VIDEO_HOPID_SHIFT) &
1147 ADP_DP_CS_0_VIDEO_HOPID_MASK;
1148 data[1] |= aux_tx & ADP_DP_CS_1_AUX_TX_HOPID_MASK;
1149 data[1] |= (aux_rx << ADP_DP_CS_1_AUX_RX_HOPID_SHIFT) &
1150 ADP_DP_CS_1_AUX_RX_HOPID_MASK;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001151
Mika Westerberg98176382019-09-06 11:32:15 +03001152 return tb_port_write(port, data, TB_CFG_PORT,
1153 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001154}
1155
1156/**
1157 * tb_dp_port_is_enabled() - Is DP adapter port enabled
1158 * @port: DP adapter port to check
1159 */
1160bool tb_dp_port_is_enabled(struct tb_port *port)
1161{
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001162 u32 data[2];
Mika Westerberg4f807e42018-09-17 16:30:49 +03001163
Mika Westerberg98176382019-09-06 11:32:15 +03001164 if (tb_port_read(port, data, TB_CFG_PORT, port->cap_adap + ADP_DP_CS_0,
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001165 ARRAY_SIZE(data)))
Mika Westerberg4f807e42018-09-17 16:30:49 +03001166 return false;
1167
Mika Westerberg98176382019-09-06 11:32:15 +03001168 return !!(data[0] & (ADP_DP_CS_0_VE | ADP_DP_CS_0_AE));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001169}
1170
1171/**
1172 * tb_dp_port_enable() - Enables/disables DP paths of a port
1173 * @port: DP IN/OUT port
1174 * @enable: Enable/disable DP path
1175 *
1176 * Once Hop IDs are programmed DP paths can be enabled or disabled by
1177 * calling this function.
1178 */
1179int tb_dp_port_enable(struct tb_port *port, bool enable)
1180{
Mika Westerbergfd5c46b2019-09-19 14:55:23 +03001181 u32 data[2];
Mika Westerberg4f807e42018-09-17 16:30:49 +03001182 int ret;
1183
Mika Westerberg98176382019-09-06 11:32:15 +03001184 ret = tb_port_read(port, data, TB_CFG_PORT,
1185 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001186 if (ret)
1187 return ret;
1188
1189 if (enable)
Mika Westerberg98176382019-09-06 11:32:15 +03001190 data[0] |= ADP_DP_CS_0_VE | ADP_DP_CS_0_AE;
Mika Westerberg4f807e42018-09-17 16:30:49 +03001191 else
Mika Westerberg98176382019-09-06 11:32:15 +03001192 data[0] &= ~(ADP_DP_CS_0_VE | ADP_DP_CS_0_AE);
Mika Westerberg4f807e42018-09-17 16:30:49 +03001193
Mika Westerberg98176382019-09-06 11:32:15 +03001194 return tb_port_write(port, data, TB_CFG_PORT,
1195 port->cap_adap + ADP_DP_CS_0, ARRAY_SIZE(data));
Mika Westerberg4f807e42018-09-17 16:30:49 +03001196}
1197
Andreas Noevera25c8b22014-06-03 22:04:02 +02001198/* switch utility functions */
1199
Mika Westerbergb0407982019-12-17 15:33:40 +03001200static const char *tb_switch_generation_name(const struct tb_switch *sw)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001201{
Mika Westerbergb0407982019-12-17 15:33:40 +03001202 switch (sw->generation) {
1203 case 1:
1204 return "Thunderbolt 1";
1205 case 2:
1206 return "Thunderbolt 2";
1207 case 3:
1208 return "Thunderbolt 3";
1209 case 4:
1210 return "USB4";
1211 default:
1212 return "Unknown";
1213 }
1214}
1215
1216static void tb_dump_switch(const struct tb *tb, const struct tb_switch *sw)
1217{
1218 const struct tb_regs_switch_header *regs = &sw->config;
1219
1220 tb_dbg(tb, " %s Switch: %x:%x (Revision: %d, TB Version: %d)\n",
1221 tb_switch_generation_name(sw), regs->vendor_id, regs->device_id,
1222 regs->revision, regs->thunderbolt_version);
1223 tb_dbg(tb, " Max Port Number: %d\n", regs->max_port_number);
Mika Westerbergdaa51402018-10-01 12:31:19 +03001224 tb_dbg(tb, " Config:\n");
1225 tb_dbg(tb,
Andreas Noevera25c8b22014-06-03 22:04:02 +02001226 " Upstream Port Number: %d Depth: %d Route String: %#llx Enabled: %d, PlugEventsDelay: %dms\n",
Mika Westerbergb0407982019-12-17 15:33:40 +03001227 regs->upstream_port_number, regs->depth,
1228 (((u64) regs->route_hi) << 32) | regs->route_lo,
1229 regs->enabled, regs->plug_events_delay);
Mika Westerbergdaa51402018-10-01 12:31:19 +03001230 tb_dbg(tb, " unknown1: %#x unknown4: %#x\n",
Mika Westerbergb0407982019-12-17 15:33:40 +03001231 regs->__unknown1, regs->__unknown4);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001232}
1233
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001234/**
1235 * reset_switch() - reconfigure route, enable and send TB_CFG_PKG_RESET
1236 *
1237 * Return: Returns 0 on success or an error code on failure.
1238 */
1239int tb_switch_reset(struct tb *tb, u64 route)
1240{
1241 struct tb_cfg_result res;
1242 struct tb_regs_switch_header header = {
1243 header.route_hi = route >> 32,
1244 header.route_lo = route,
1245 header.enabled = true,
1246 };
Mika Westerbergdaa51402018-10-01 12:31:19 +03001247 tb_dbg(tb, "resetting switch at %llx\n", route);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001248 res.err = tb_cfg_write(tb->ctl, ((u32 *) &header) + 2, route,
1249 0, 2, 2, 2);
1250 if (res.err)
1251 return res.err;
1252 res = tb_cfg_reset(tb->ctl, route, TB_CFG_DEFAULT_TIMEOUT);
1253 if (res.err > 0)
1254 return -EIO;
1255 return res.err;
1256}
1257
Andreas Noevera25c8b22014-06-03 22:04:02 +02001258/**
Andreas Noeverca389f72014-06-03 22:04:04 +02001259 * tb_plug_events_active() - enable/disable plug events on a switch
1260 *
1261 * Also configures a sane plug_events_delay of 255ms.
1262 *
1263 * Return: Returns 0 on success or an error code on failure.
1264 */
1265static int tb_plug_events_active(struct tb_switch *sw, bool active)
1266{
1267 u32 data;
1268 int res;
1269
Mika Westerbergf07a3602019-06-25 15:10:01 +03001270 if (tb_switch_is_icm(sw))
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001271 return 0;
1272
Andreas Noeverca389f72014-06-03 22:04:04 +02001273 sw->config.plug_events_delay = 0xff;
1274 res = tb_sw_write(sw, ((u32 *) &sw->config) + 4, TB_CFG_SWITCH, 4, 1);
1275 if (res)
1276 return res;
1277
Mika Westerbergb0407982019-12-17 15:33:40 +03001278 /* Plug events are always enabled in USB4 */
1279 if (tb_switch_is_usb4(sw))
1280 return 0;
1281
Andreas Noeverca389f72014-06-03 22:04:04 +02001282 res = tb_sw_read(sw, &data, TB_CFG_SWITCH, sw->cap_plug_events + 1, 1);
1283 if (res)
1284 return res;
1285
1286 if (active) {
1287 data = data & 0xFFFFFF83;
1288 switch (sw->config.device_id) {
Lukas Wunner1d111402016-03-20 13:57:20 +01001289 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1290 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1291 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
Andreas Noeverca389f72014-06-03 22:04:04 +02001292 break;
1293 default:
1294 data |= 4;
1295 }
1296 } else {
1297 data = data | 0x7c;
1298 }
1299 return tb_sw_write(sw, &data, TB_CFG_SWITCH,
1300 sw->cap_plug_events + 1, 1);
1301}
1302
Mika Westerbergf67cf492017-06-06 15:25:16 +03001303static ssize_t authorized_show(struct device *dev,
1304 struct device_attribute *attr,
1305 char *buf)
1306{
1307 struct tb_switch *sw = tb_to_switch(dev);
1308
1309 return sprintf(buf, "%u\n", sw->authorized);
1310}
1311
1312static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val)
1313{
1314 int ret = -EINVAL;
1315
Mika Westerberg09f11b62019-03-19 16:48:41 +02001316 if (!mutex_trylock(&sw->tb->lock))
1317 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001318
1319 if (sw->authorized)
1320 goto unlock;
1321
1322 switch (val) {
1323 /* Approve switch */
1324 case 1:
1325 if (sw->key)
1326 ret = tb_domain_approve_switch_key(sw->tb, sw);
1327 else
1328 ret = tb_domain_approve_switch(sw->tb, sw);
1329 break;
1330
1331 /* Challenge switch */
1332 case 2:
1333 if (sw->key)
1334 ret = tb_domain_challenge_switch_key(sw->tb, sw);
1335 break;
1336
1337 default:
1338 break;
1339 }
1340
1341 if (!ret) {
1342 sw->authorized = val;
1343 /* Notify status change to the userspace */
1344 kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
1345 }
1346
1347unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001348 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001349 return ret;
1350}
1351
1352static ssize_t authorized_store(struct device *dev,
1353 struct device_attribute *attr,
1354 const char *buf, size_t count)
1355{
1356 struct tb_switch *sw = tb_to_switch(dev);
1357 unsigned int val;
1358 ssize_t ret;
1359
1360 ret = kstrtouint(buf, 0, &val);
1361 if (ret)
1362 return ret;
1363 if (val > 2)
1364 return -EINVAL;
1365
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001366 pm_runtime_get_sync(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001367 ret = tb_switch_set_authorized(sw, val);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001368 pm_runtime_mark_last_busy(&sw->dev);
1369 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001370
1371 return ret ? ret : count;
1372}
1373static DEVICE_ATTR_RW(authorized);
1374
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001375static ssize_t boot_show(struct device *dev, struct device_attribute *attr,
1376 char *buf)
1377{
1378 struct tb_switch *sw = tb_to_switch(dev);
1379
1380 return sprintf(buf, "%u\n", sw->boot);
1381}
1382static DEVICE_ATTR_RO(boot);
1383
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001384static ssize_t device_show(struct device *dev, struct device_attribute *attr,
1385 char *buf)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001386{
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001387 struct tb_switch *sw = tb_to_switch(dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001388
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001389 return sprintf(buf, "%#x\n", sw->device);
1390}
1391static DEVICE_ATTR_RO(device);
Andreas Noeverca389f72014-06-03 22:04:04 +02001392
Mika Westerberg72ee3392017-06-06 15:25:05 +03001393static ssize_t
1394device_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1395{
1396 struct tb_switch *sw = tb_to_switch(dev);
1397
1398 return sprintf(buf, "%s\n", sw->device_name ? sw->device_name : "");
1399}
1400static DEVICE_ATTR_RO(device_name);
1401
Christian Kellnerb4063572019-10-03 19:32:40 +02001402static ssize_t
1403generation_show(struct device *dev, struct device_attribute *attr, char *buf)
1404{
1405 struct tb_switch *sw = tb_to_switch(dev);
1406
1407 return sprintf(buf, "%u\n", sw->generation);
1408}
1409static DEVICE_ATTR_RO(generation);
1410
Mika Westerbergf67cf492017-06-06 15:25:16 +03001411static ssize_t key_show(struct device *dev, struct device_attribute *attr,
1412 char *buf)
1413{
1414 struct tb_switch *sw = tb_to_switch(dev);
1415 ssize_t ret;
1416
Mika Westerberg09f11b62019-03-19 16:48:41 +02001417 if (!mutex_trylock(&sw->tb->lock))
1418 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001419
1420 if (sw->key)
1421 ret = sprintf(buf, "%*phN\n", TB_SWITCH_KEY_SIZE, sw->key);
1422 else
1423 ret = sprintf(buf, "\n");
1424
Mika Westerberg09f11b62019-03-19 16:48:41 +02001425 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001426 return ret;
1427}
1428
1429static ssize_t key_store(struct device *dev, struct device_attribute *attr,
1430 const char *buf, size_t count)
1431{
1432 struct tb_switch *sw = tb_to_switch(dev);
1433 u8 key[TB_SWITCH_KEY_SIZE];
1434 ssize_t ret = count;
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001435 bool clear = false;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001436
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001437 if (!strcmp(buf, "\n"))
1438 clear = true;
1439 else if (hex2bin(key, buf, sizeof(key)))
Mika Westerbergf67cf492017-06-06 15:25:16 +03001440 return -EINVAL;
1441
Mika Westerberg09f11b62019-03-19 16:48:41 +02001442 if (!mutex_trylock(&sw->tb->lock))
1443 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001444
1445 if (sw->authorized) {
1446 ret = -EBUSY;
1447 } else {
1448 kfree(sw->key);
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001449 if (clear) {
1450 sw->key = NULL;
1451 } else {
1452 sw->key = kmemdup(key, sizeof(key), GFP_KERNEL);
1453 if (!sw->key)
1454 ret = -ENOMEM;
1455 }
Mika Westerbergf67cf492017-06-06 15:25:16 +03001456 }
1457
Mika Westerberg09f11b62019-03-19 16:48:41 +02001458 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001459 return ret;
1460}
Bernat, Yehezkel0956e412017-08-15 08:19:12 +03001461static DEVICE_ATTR(key, 0600, key_show, key_store);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001462
Mika Westerberg91c0c122019-03-21 19:03:00 +02001463static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
1464 char *buf)
1465{
1466 struct tb_switch *sw = tb_to_switch(dev);
1467
1468 return sprintf(buf, "%u.0 Gb/s\n", sw->link_speed);
1469}
1470
1471/*
1472 * Currently all lanes must run at the same speed but we expose here
1473 * both directions to allow possible asymmetric links in the future.
1474 */
1475static DEVICE_ATTR(rx_speed, 0444, speed_show, NULL);
1476static DEVICE_ATTR(tx_speed, 0444, speed_show, NULL);
1477
1478static ssize_t lanes_show(struct device *dev, struct device_attribute *attr,
1479 char *buf)
1480{
1481 struct tb_switch *sw = tb_to_switch(dev);
1482
1483 return sprintf(buf, "%u\n", sw->link_width);
1484}
1485
1486/*
1487 * Currently link has same amount of lanes both directions (1 or 2) but
1488 * expose them separately to allow possible asymmetric links in the future.
1489 */
1490static DEVICE_ATTR(rx_lanes, 0444, lanes_show, NULL);
1491static DEVICE_ATTR(tx_lanes, 0444, lanes_show, NULL);
1492
Mika Westerberge6b245c2017-06-06 15:25:17 +03001493static ssize_t nvm_authenticate_show(struct device *dev,
1494 struct device_attribute *attr, char *buf)
1495{
1496 struct tb_switch *sw = tb_to_switch(dev);
1497 u32 status;
1498
1499 nvm_get_auth_status(sw, &status);
1500 return sprintf(buf, "%#x\n", status);
1501}
1502
Mario Limonciello1cb36292020-06-23 11:14:29 -05001503static ssize_t nvm_authenticate_sysfs(struct device *dev, const char *buf,
1504 bool disconnect)
Mika Westerberge6b245c2017-06-06 15:25:17 +03001505{
1506 struct tb_switch *sw = tb_to_switch(dev);
Mario Limonciello4b794f82020-06-23 11:14:28 -05001507 int val;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001508 int ret;
1509
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001510 pm_runtime_get_sync(&sw->dev);
1511
1512 if (!mutex_trylock(&sw->tb->lock)) {
1513 ret = restart_syscall();
1514 goto exit_rpm;
1515 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001516
1517 /* If NVMem devices are not yet added */
1518 if (!sw->nvm) {
1519 ret = -EAGAIN;
1520 goto exit_unlock;
1521 }
1522
Mario Limonciello4b794f82020-06-23 11:14:28 -05001523 ret = kstrtoint(buf, 10, &val);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001524 if (ret)
1525 goto exit_unlock;
1526
1527 /* Always clear the authentication status */
1528 nvm_clear_auth_status(sw);
1529
Mario Limonciello4b794f82020-06-23 11:14:28 -05001530 if (val > 0) {
1531 if (!sw->nvm->flushed) {
1532 if (!sw->nvm->buf) {
1533 ret = -EINVAL;
1534 goto exit_unlock;
1535 }
1536
1537 ret = nvm_validate_and_write(sw);
1538 if (ret || val == WRITE_ONLY)
1539 goto exit_unlock;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001540 }
Mario Limonciello4b794f82020-06-23 11:14:28 -05001541 if (val == WRITE_AND_AUTHENTICATE) {
Mario Limonciello1cb36292020-06-23 11:14:29 -05001542 if (disconnect) {
1543 ret = tb_lc_force_power(sw);
1544 } else {
1545 sw->nvm->authenticating = true;
1546 ret = nvm_authenticate(sw);
1547 }
Mario Limonciello4b794f82020-06-23 11:14:28 -05001548 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001549 }
1550
1551exit_unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001552 mutex_unlock(&sw->tb->lock);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001553exit_rpm:
1554 pm_runtime_mark_last_busy(&sw->dev);
1555 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001556
Mario Limonciello1cb36292020-06-23 11:14:29 -05001557 return ret;
1558}
1559
1560static ssize_t nvm_authenticate_store(struct device *dev,
1561 struct device_attribute *attr, const char *buf, size_t count)
1562{
1563 int ret = nvm_authenticate_sysfs(dev, buf, false);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001564 if (ret)
1565 return ret;
1566 return count;
1567}
1568static DEVICE_ATTR_RW(nvm_authenticate);
1569
Mario Limonciello1cb36292020-06-23 11:14:29 -05001570static ssize_t nvm_authenticate_on_disconnect_show(struct device *dev,
1571 struct device_attribute *attr, char *buf)
1572{
1573 return nvm_authenticate_show(dev, attr, buf);
1574}
1575
1576static ssize_t nvm_authenticate_on_disconnect_store(struct device *dev,
1577 struct device_attribute *attr, const char *buf, size_t count)
1578{
1579 int ret;
1580
1581 ret = nvm_authenticate_sysfs(dev, buf, true);
1582 return ret ? ret : count;
1583}
1584static DEVICE_ATTR_RW(nvm_authenticate_on_disconnect);
1585
Mika Westerberge6b245c2017-06-06 15:25:17 +03001586static ssize_t nvm_version_show(struct device *dev,
1587 struct device_attribute *attr, char *buf)
1588{
1589 struct tb_switch *sw = tb_to_switch(dev);
1590 int ret;
1591
Mika Westerberg09f11b62019-03-19 16:48:41 +02001592 if (!mutex_trylock(&sw->tb->lock))
1593 return restart_syscall();
Mika Westerberge6b245c2017-06-06 15:25:17 +03001594
1595 if (sw->safe_mode)
1596 ret = -ENODATA;
1597 else if (!sw->nvm)
1598 ret = -EAGAIN;
1599 else
1600 ret = sprintf(buf, "%x.%x\n", sw->nvm->major, sw->nvm->minor);
1601
Mika Westerberg09f11b62019-03-19 16:48:41 +02001602 mutex_unlock(&sw->tb->lock);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001603
1604 return ret;
1605}
1606static DEVICE_ATTR_RO(nvm_version);
1607
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001608static ssize_t vendor_show(struct device *dev, struct device_attribute *attr,
1609 char *buf)
1610{
1611 struct tb_switch *sw = tb_to_switch(dev);
1612
1613 return sprintf(buf, "%#x\n", sw->vendor);
1614}
1615static DEVICE_ATTR_RO(vendor);
1616
Mika Westerberg72ee3392017-06-06 15:25:05 +03001617static ssize_t
1618vendor_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1619{
1620 struct tb_switch *sw = tb_to_switch(dev);
1621
1622 return sprintf(buf, "%s\n", sw->vendor_name ? sw->vendor_name : "");
1623}
1624static DEVICE_ATTR_RO(vendor_name);
1625
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001626static ssize_t unique_id_show(struct device *dev, struct device_attribute *attr,
1627 char *buf)
1628{
1629 struct tb_switch *sw = tb_to_switch(dev);
1630
1631 return sprintf(buf, "%pUb\n", sw->uuid);
1632}
1633static DEVICE_ATTR_RO(unique_id);
1634
1635static struct attribute *switch_attrs[] = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001636 &dev_attr_authorized.attr,
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001637 &dev_attr_boot.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001638 &dev_attr_device.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001639 &dev_attr_device_name.attr,
Christian Kellnerb4063572019-10-03 19:32:40 +02001640 &dev_attr_generation.attr,
Mika Westerbergf67cf492017-06-06 15:25:16 +03001641 &dev_attr_key.attr,
Mika Westerberge6b245c2017-06-06 15:25:17 +03001642 &dev_attr_nvm_authenticate.attr,
Mario Limonciello1cb36292020-06-23 11:14:29 -05001643 &dev_attr_nvm_authenticate_on_disconnect.attr,
Mika Westerberge6b245c2017-06-06 15:25:17 +03001644 &dev_attr_nvm_version.attr,
Mika Westerberg91c0c122019-03-21 19:03:00 +02001645 &dev_attr_rx_speed.attr,
1646 &dev_attr_rx_lanes.attr,
1647 &dev_attr_tx_speed.attr,
1648 &dev_attr_tx_lanes.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001649 &dev_attr_vendor.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001650 &dev_attr_vendor_name.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001651 &dev_attr_unique_id.attr,
1652 NULL,
1653};
1654
Mika Westerbergf67cf492017-06-06 15:25:16 +03001655static umode_t switch_attr_is_visible(struct kobject *kobj,
1656 struct attribute *attr, int n)
1657{
Tian Taofff15f22020-09-01 16:27:17 +08001658 struct device *dev = kobj_to_dev(kobj);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001659 struct tb_switch *sw = tb_to_switch(dev);
1660
Mika Westerberg58f414f2018-09-11 15:34:23 +03001661 if (attr == &dev_attr_device.attr) {
1662 if (!sw->device)
1663 return 0;
1664 } else if (attr == &dev_attr_device_name.attr) {
1665 if (!sw->device_name)
1666 return 0;
1667 } else if (attr == &dev_attr_vendor.attr) {
1668 if (!sw->vendor)
1669 return 0;
1670 } else if (attr == &dev_attr_vendor_name.attr) {
1671 if (!sw->vendor_name)
1672 return 0;
1673 } else if (attr == &dev_attr_key.attr) {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001674 if (tb_route(sw) &&
1675 sw->tb->security_level == TB_SECURITY_SECURE &&
1676 sw->security_level == TB_SECURITY_SECURE)
1677 return attr->mode;
1678 return 0;
Mika Westerberg91c0c122019-03-21 19:03:00 +02001679 } else if (attr == &dev_attr_rx_speed.attr ||
1680 attr == &dev_attr_rx_lanes.attr ||
1681 attr == &dev_attr_tx_speed.attr ||
1682 attr == &dev_attr_tx_lanes.attr) {
1683 if (tb_route(sw))
1684 return attr->mode;
1685 return 0;
Mika Westerberg3f415e52019-02-05 12:51:40 +03001686 } else if (attr == &dev_attr_nvm_authenticate.attr) {
Mika Westerbergb0407982019-12-17 15:33:40 +03001687 if (nvm_upgradeable(sw))
Mika Westerberg3f415e52019-02-05 12:51:40 +03001688 return attr->mode;
1689 return 0;
1690 } else if (attr == &dev_attr_nvm_version.attr) {
Mika Westerbergb0407982019-12-17 15:33:40 +03001691 if (nvm_readable(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03001692 return attr->mode;
1693 return 0;
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001694 } else if (attr == &dev_attr_boot.attr) {
1695 if (tb_route(sw))
1696 return attr->mode;
1697 return 0;
Mario Limonciello1cb36292020-06-23 11:14:29 -05001698 } else if (attr == &dev_attr_nvm_authenticate_on_disconnect.attr) {
1699 if (sw->quirks & QUIRK_FORCE_POWER_LINK_CONTROLLER)
1700 return attr->mode;
1701 return 0;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001702 }
1703
Mika Westerberge6b245c2017-06-06 15:25:17 +03001704 return sw->safe_mode ? 0 : attr->mode;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001705}
1706
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001707static struct attribute_group switch_group = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001708 .is_visible = switch_attr_is_visible,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001709 .attrs = switch_attrs,
1710};
1711
1712static const struct attribute_group *switch_groups[] = {
1713 &switch_group,
1714 NULL,
1715};
1716
1717static void tb_switch_release(struct device *dev)
1718{
1719 struct tb_switch *sw = tb_to_switch(dev);
Mika Westerbergb433d012019-09-30 14:07:22 +03001720 struct tb_port *port;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001721
Mika Westerberg3e136762017-06-06 15:25:14 +03001722 dma_port_free(sw->dma_port);
1723
Mika Westerbergb433d012019-09-30 14:07:22 +03001724 tb_switch_for_each_port(sw, port) {
1725 if (!port->disabled) {
1726 ida_destroy(&port->in_hopids);
1727 ida_destroy(&port->out_hopids);
Mika Westerberg0b2863a2017-02-19 16:57:27 +02001728 }
1729 }
1730
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001731 kfree(sw->uuid);
Mika Westerberg72ee3392017-06-06 15:25:05 +03001732 kfree(sw->device_name);
1733 kfree(sw->vendor_name);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001734 kfree(sw->ports);
Andreas Noever343fcb82014-06-12 23:11:47 +02001735 kfree(sw->drom);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001736 kfree(sw->key);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001737 kfree(sw);
1738}
1739
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001740/*
1741 * Currently only need to provide the callbacks. Everything else is handled
1742 * in the connection manager.
1743 */
1744static int __maybe_unused tb_switch_runtime_suspend(struct device *dev)
1745{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001746 struct tb_switch *sw = tb_to_switch(dev);
1747 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1748
1749 if (cm_ops->runtime_suspend_switch)
1750 return cm_ops->runtime_suspend_switch(sw);
1751
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001752 return 0;
1753}
1754
1755static int __maybe_unused tb_switch_runtime_resume(struct device *dev)
1756{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001757 struct tb_switch *sw = tb_to_switch(dev);
1758 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1759
1760 if (cm_ops->runtime_resume_switch)
1761 return cm_ops->runtime_resume_switch(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001762 return 0;
1763}
1764
1765static const struct dev_pm_ops tb_switch_pm_ops = {
1766 SET_RUNTIME_PM_OPS(tb_switch_runtime_suspend, tb_switch_runtime_resume,
1767 NULL)
1768};
1769
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001770struct device_type tb_switch_type = {
1771 .name = "thunderbolt_device",
1772 .release = tb_switch_release,
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001773 .pm = &tb_switch_pm_ops,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001774};
1775
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001776static int tb_switch_get_generation(struct tb_switch *sw)
1777{
1778 switch (sw->config.device_id) {
1779 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1780 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1781 case PCI_DEVICE_ID_INTEL_LIGHT_PEAK:
1782 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
1783 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
1784 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
1785 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_2C_BRIDGE:
1786 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_4C_BRIDGE:
1787 return 1;
1788
1789 case PCI_DEVICE_ID_INTEL_WIN_RIDGE_2C_BRIDGE:
1790 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
1791 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
1792 return 2;
1793
1794 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
1795 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
1796 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_BRIDGE:
1797 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
1798 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
Radion Mirchevsky4bac4712017-10-04 16:43:43 +03001799 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
1800 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
1801 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
Mika Westerberg3cdb9442018-01-16 22:19:00 +02001802 case PCI_DEVICE_ID_INTEL_ICL_NHI0:
1803 case PCI_DEVICE_ID_INTEL_ICL_NHI1:
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001804 return 3;
1805
1806 default:
Mika Westerbergb0407982019-12-17 15:33:40 +03001807 if (tb_switch_is_usb4(sw))
1808 return 4;
1809
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001810 /*
1811 * For unknown switches assume generation to be 1 to be
1812 * on the safe side.
1813 */
1814 tb_sw_warn(sw, "unsupported switch device id %#x\n",
1815 sw->config.device_id);
1816 return 1;
1817 }
1818}
1819
Mika Westerbergb0407982019-12-17 15:33:40 +03001820static bool tb_switch_exceeds_max_depth(const struct tb_switch *sw, int depth)
1821{
1822 int max_depth;
1823
1824 if (tb_switch_is_usb4(sw) ||
1825 (sw->tb->root_switch && tb_switch_is_usb4(sw->tb->root_switch)))
1826 max_depth = USB4_SWITCH_MAX_DEPTH;
1827 else
1828 max_depth = TB_SWITCH_MAX_DEPTH;
1829
1830 return depth > max_depth;
1831}
1832
Andreas Noevera25c8b22014-06-03 22:04:02 +02001833/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001834 * tb_switch_alloc() - allocate a switch
1835 * @tb: Pointer to the owning domain
1836 * @parent: Parent device for this switch
1837 * @route: Route string for this switch
Andreas Noevera25c8b22014-06-03 22:04:02 +02001838 *
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001839 * Allocates and initializes a switch. Will not upload configuration to
1840 * the switch. For that you need to call tb_switch_configure()
1841 * separately. The returned switch should be released by calling
1842 * tb_switch_put().
1843 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001844 * Return: Pointer to the allocated switch or ERR_PTR() in case of
1845 * failure.
Andreas Noevera25c8b22014-06-03 22:04:02 +02001846 */
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001847struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
1848 u64 route)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001849{
Andreas Noevera25c8b22014-06-03 22:04:02 +02001850 struct tb_switch *sw;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001851 int upstream_port;
Mika Westerberg444ac382018-12-30 12:17:52 +02001852 int i, ret, depth;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001853
Mika Westerbergb0407982019-12-17 15:33:40 +03001854 /* Unlock the downstream port so we can access the switch below */
1855 if (route) {
1856 struct tb_switch *parent_sw = tb_to_switch(parent);
1857 struct tb_port *down;
1858
1859 down = tb_port_at(route, parent_sw);
1860 tb_port_unlock(down);
1861 }
1862
Mika Westerbergf0342e72018-12-30 12:14:46 +02001863 depth = tb_route_length(route);
Mika Westerbergf0342e72018-12-30 12:14:46 +02001864
1865 upstream_port = tb_cfg_get_upstream_port(tb->ctl, route);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001866 if (upstream_port < 0)
Mika Westerberg444ac382018-12-30 12:17:52 +02001867 return ERR_PTR(upstream_port);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001868
1869 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1870 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02001871 return ERR_PTR(-ENOMEM);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001872
1873 sw->tb = tb;
Mika Westerberg444ac382018-12-30 12:17:52 +02001874 ret = tb_cfg_read(tb->ctl, &sw->config, route, 0, TB_CFG_SWITCH, 0, 5);
1875 if (ret)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001876 goto err_free_sw_ports;
1877
Mika Westerbergb0407982019-12-17 15:33:40 +03001878 sw->generation = tb_switch_get_generation(sw);
1879
Mika Westerbergdaa51402018-10-01 12:31:19 +03001880 tb_dbg(tb, "current switch config:\n");
Mika Westerbergb0407982019-12-17 15:33:40 +03001881 tb_dump_switch(tb, sw);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001882
1883 /* configure switch */
1884 sw->config.upstream_port_number = upstream_port;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001885 sw->config.depth = depth;
1886 sw->config.route_hi = upper_32_bits(route);
1887 sw->config.route_lo = lower_32_bits(route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001888 sw->config.enabled = 0;
Andreas Noevera25c8b22014-06-03 22:04:02 +02001889
Mika Westerbergb0407982019-12-17 15:33:40 +03001890 /* Make sure we do not exceed maximum topology limit */
Colin Ian King704a9402019-12-20 22:05:26 +00001891 if (tb_switch_exceeds_max_depth(sw, depth)) {
1892 ret = -EADDRNOTAVAIL;
1893 goto err_free_sw_ports;
1894 }
Mika Westerbergb0407982019-12-17 15:33:40 +03001895
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001896 /* initialize ports */
1897 sw->ports = kcalloc(sw->config.max_port_number + 1, sizeof(*sw->ports),
1898 GFP_KERNEL);
Mika Westerberg444ac382018-12-30 12:17:52 +02001899 if (!sw->ports) {
1900 ret = -ENOMEM;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001901 goto err_free_sw_ports;
Mika Westerberg444ac382018-12-30 12:17:52 +02001902 }
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001903
1904 for (i = 0; i <= sw->config.max_port_number; i++) {
1905 /* minimum setup for tb_find_cap and tb_drom_read to work */
1906 sw->ports[i].sw = sw;
1907 sw->ports[i].port = i;
1908 }
1909
Mika Westerberg444ac382018-12-30 12:17:52 +02001910 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_PLUG_EVENTS);
Mika Westerbergb0407982019-12-17 15:33:40 +03001911 if (ret > 0)
1912 sw->cap_plug_events = ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001913
Mika Westerberg444ac382018-12-30 12:17:52 +02001914 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_LINK_CONTROLLER);
1915 if (ret > 0)
1916 sw->cap_lc = ret;
Mika Westerberga9be5582019-01-09 16:42:12 +02001917
Mika Westerbergf67cf492017-06-06 15:25:16 +03001918 /* Root switch is always authorized */
1919 if (!route)
1920 sw->authorized = true;
1921
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001922 device_initialize(&sw->dev);
1923 sw->dev.parent = parent;
1924 sw->dev.bus = &tb_bus_type;
1925 sw->dev.type = &tb_switch_type;
1926 sw->dev.groups = switch_groups;
1927 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
1928
1929 return sw;
1930
1931err_free_sw_ports:
1932 kfree(sw->ports);
1933 kfree(sw);
1934
Mika Westerberg444ac382018-12-30 12:17:52 +02001935 return ERR_PTR(ret);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001936}
1937
1938/**
Mika Westerberge6b245c2017-06-06 15:25:17 +03001939 * tb_switch_alloc_safe_mode() - allocate a switch that is in safe mode
1940 * @tb: Pointer to the owning domain
1941 * @parent: Parent device for this switch
1942 * @route: Route string for this switch
1943 *
1944 * This creates a switch in safe mode. This means the switch pretty much
1945 * lacks all capabilities except DMA configuration port before it is
1946 * flashed with a valid NVM firmware.
1947 *
1948 * The returned switch must be released by calling tb_switch_put().
1949 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001950 * Return: Pointer to the allocated switch or ERR_PTR() in case of failure
Mika Westerberge6b245c2017-06-06 15:25:17 +03001951 */
1952struct tb_switch *
1953tb_switch_alloc_safe_mode(struct tb *tb, struct device *parent, u64 route)
1954{
1955 struct tb_switch *sw;
1956
1957 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1958 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02001959 return ERR_PTR(-ENOMEM);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001960
1961 sw->tb = tb;
1962 sw->config.depth = tb_route_length(route);
1963 sw->config.route_hi = upper_32_bits(route);
1964 sw->config.route_lo = lower_32_bits(route);
1965 sw->safe_mode = true;
1966
1967 device_initialize(&sw->dev);
1968 sw->dev.parent = parent;
1969 sw->dev.bus = &tb_bus_type;
1970 sw->dev.type = &tb_switch_type;
1971 sw->dev.groups = switch_groups;
1972 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
1973
1974 return sw;
1975}
1976
1977/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001978 * tb_switch_configure() - Uploads configuration to the switch
1979 * @sw: Switch to configure
1980 *
1981 * Call this function before the switch is added to the system. It will
1982 * upload configuration to the switch and makes it available for the
Mika Westerbergb0407982019-12-17 15:33:40 +03001983 * connection manager to use. Can be called to the switch again after
1984 * resume from low power states to re-initialize it.
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001985 *
1986 * Return: %0 in case of success and negative errno in case of failure
1987 */
1988int tb_switch_configure(struct tb_switch *sw)
1989{
1990 struct tb *tb = sw->tb;
1991 u64 route;
1992 int ret;
1993
1994 route = tb_route(sw);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001995
Mika Westerbergb0407982019-12-17 15:33:40 +03001996 tb_dbg(tb, "%s Switch at %#llx (depth: %d, up port: %d)\n",
1997 sw->config.enabled ? "restoring " : "initializing", route,
1998 tb_route_length(route), sw->config.upstream_port_number);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001999
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002000 sw->config.enabled = 1;
2001
Mika Westerbergb0407982019-12-17 15:33:40 +03002002 if (tb_switch_is_usb4(sw)) {
2003 /*
2004 * For USB4 devices, we need to program the CM version
2005 * accordingly so that it knows to expose all the
2006 * additional capabilities.
2007 */
2008 sw->config.cmuv = USB4_VERSION_1_0;
Andreas Noevera25c8b22014-06-03 22:04:02 +02002009
Mika Westerbergb0407982019-12-17 15:33:40 +03002010 /* Enumerate the switch */
2011 ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2012 ROUTER_CS_1, 4);
2013 if (ret)
2014 return ret;
2015
2016 ret = usb4_switch_setup(sw);
2017 if (ret)
2018 return ret;
2019
2020 ret = usb4_switch_configure_link(sw);
2021 } else {
2022 if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL)
2023 tb_sw_warn(sw, "unknown switch vendor id %#x\n",
2024 sw->config.vendor_id);
2025
2026 if (!sw->cap_plug_events) {
2027 tb_sw_warn(sw, "cannot find TB_VSE_CAP_PLUG_EVENTS aborting\n");
2028 return -ENODEV;
2029 }
2030
2031 /* Enumerate the switch */
2032 ret = tb_sw_write(sw, (u32 *)&sw->config + 1, TB_CFG_SWITCH,
2033 ROUTER_CS_1, 3);
2034 if (ret)
2035 return ret;
2036
2037 ret = tb_lc_configure_link(sw);
2038 }
Mika Westerberge879a702018-10-11 12:33:08 +03002039 if (ret)
2040 return ret;
2041
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002042 return tb_plug_events_active(sw, true);
2043}
Andreas Noevera25c8b22014-06-03 22:04:02 +02002044
Aditya Pakki2cc12752019-03-20 10:57:54 -05002045static int tb_switch_set_uuid(struct tb_switch *sw)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002046{
Mika Westerbergb0407982019-12-17 15:33:40 +03002047 bool uid = false;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002048 u32 uuid[4];
Mika Westerberga9be5582019-01-09 16:42:12 +02002049 int ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002050
2051 if (sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02002052 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002053
Mika Westerbergb0407982019-12-17 15:33:40 +03002054 if (tb_switch_is_usb4(sw)) {
2055 ret = usb4_switch_read_uid(sw, &sw->uid);
2056 if (ret)
2057 return ret;
2058 uid = true;
2059 } else {
2060 /*
2061 * The newer controllers include fused UUID as part of
2062 * link controller specific registers
2063 */
2064 ret = tb_lc_read_uuid(sw, uuid);
2065 if (ret) {
2066 if (ret != -EINVAL)
2067 return ret;
2068 uid = true;
2069 }
2070 }
2071
2072 if (uid) {
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002073 /*
2074 * ICM generates UUID based on UID and fills the upper
2075 * two words with ones. This is not strictly following
2076 * UUID format but we want to be compatible with it so
2077 * we do the same here.
2078 */
2079 uuid[0] = sw->uid & 0xffffffff;
2080 uuid[1] = (sw->uid >> 32) & 0xffffffff;
2081 uuid[2] = 0xffffffff;
2082 uuid[3] = 0xffffffff;
Andreas Noevera25c8b22014-06-03 22:04:02 +02002083 }
2084
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002085 sw->uuid = kmemdup(uuid, sizeof(uuid), GFP_KERNEL);
Aditya Pakki2cc12752019-03-20 10:57:54 -05002086 if (!sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02002087 return -ENOMEM;
2088 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002089}
2090
Mika Westerberge6b245c2017-06-06 15:25:17 +03002091static int tb_switch_add_dma_port(struct tb_switch *sw)
Mika Westerberg3e136762017-06-06 15:25:14 +03002092{
Mika Westerberge6b245c2017-06-06 15:25:17 +03002093 u32 status;
2094 int ret;
2095
Mika Westerberg3e136762017-06-06 15:25:14 +03002096 switch (sw->generation) {
Mika Westerberg3e136762017-06-06 15:25:14 +03002097 case 2:
2098 /* Only root switch can be upgraded */
2099 if (tb_route(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03002100 return 0;
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002101
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002102 fallthrough;
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002103 case 3:
2104 ret = tb_switch_set_uuid(sw);
2105 if (ret)
2106 return ret;
Mika Westerberg3e136762017-06-06 15:25:14 +03002107 break;
2108
2109 default:
Mika Westerberge6b245c2017-06-06 15:25:17 +03002110 /*
2111 * DMA port is the only thing available when the switch
2112 * is in safe mode.
2113 */
2114 if (!sw->safe_mode)
2115 return 0;
2116 break;
Mika Westerberg3e136762017-06-06 15:25:14 +03002117 }
2118
Mika Westerberg3f415e52019-02-05 12:51:40 +03002119 /* Root switch DMA port requires running firmware */
Mika Westerbergf07a3602019-06-25 15:10:01 +03002120 if (!tb_route(sw) && !tb_switch_is_icm(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03002121 return 0;
2122
Mika Westerberg3e136762017-06-06 15:25:14 +03002123 sw->dma_port = dma_port_alloc(sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002124 if (!sw->dma_port)
2125 return 0;
2126
Mika Westerberg3f415e52019-02-05 12:51:40 +03002127 if (sw->no_nvm_upgrade)
2128 return 0;
2129
Mika Westerberge6b245c2017-06-06 15:25:17 +03002130 /*
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002131 * If there is status already set then authentication failed
2132 * when the dma_port_flash_update_auth() returned. Power cycling
2133 * is not needed (it was done already) so only thing we do here
2134 * is to unblock runtime PM of the root port.
2135 */
2136 nvm_get_auth_status(sw, &status);
2137 if (status) {
2138 if (!tb_route(sw))
Mika Westerbergb0407982019-12-17 15:33:40 +03002139 nvm_authenticate_complete_dma_port(sw);
Mika Westerberg7a7ebfa2019-11-11 13:25:44 +03002140 return 0;
2141 }
2142
2143 /*
Mika Westerberge6b245c2017-06-06 15:25:17 +03002144 * Check status of the previous flash authentication. If there
2145 * is one we need to power cycle the switch in any case to make
2146 * it functional again.
2147 */
2148 ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
2149 if (ret <= 0)
2150 return ret;
2151
Mika Westerberg1830b6e2018-11-26 12:47:46 +03002152 /* Now we can allow root port to suspend again */
2153 if (!tb_route(sw))
Mika Westerbergb0407982019-12-17 15:33:40 +03002154 nvm_authenticate_complete_dma_port(sw);
Mika Westerberg1830b6e2018-11-26 12:47:46 +03002155
Mika Westerberge6b245c2017-06-06 15:25:17 +03002156 if (status) {
2157 tb_sw_info(sw, "switch flash authentication failed\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002158 nvm_set_auth_status(sw, status);
2159 }
2160
2161 tb_sw_info(sw, "power cycling the switch now\n");
2162 dma_port_power_cycle(sw->dma_port);
2163
2164 /*
2165 * We return error here which causes the switch adding failure.
2166 * It should appear back after power cycle is complete.
2167 */
2168 return -ESHUTDOWN;
Mika Westerberg3e136762017-06-06 15:25:14 +03002169}
2170
Mika Westerberg0d46c082019-08-26 18:19:33 +03002171static void tb_switch_default_link_ports(struct tb_switch *sw)
2172{
2173 int i;
2174
2175 for (i = 1; i <= sw->config.max_port_number; i += 2) {
2176 struct tb_port *port = &sw->ports[i];
2177 struct tb_port *subordinate;
2178
2179 if (!tb_port_is_null(port))
2180 continue;
2181
2182 /* Check for the subordinate port */
2183 if (i == sw->config.max_port_number ||
2184 !tb_port_is_null(&sw->ports[i + 1]))
2185 continue;
2186
2187 /* Link them if not already done so (by DROM) */
2188 subordinate = &sw->ports[i + 1];
2189 if (!port->dual_link_port && !subordinate->dual_link_port) {
2190 port->link_nr = 0;
2191 port->dual_link_port = subordinate;
2192 subordinate->link_nr = 1;
2193 subordinate->dual_link_port = port;
2194
2195 tb_sw_dbg(sw, "linked ports %d <-> %d\n",
2196 port->port, subordinate->port);
2197 }
2198 }
2199}
2200
Mika Westerberg91c0c122019-03-21 19:03:00 +02002201static bool tb_switch_lane_bonding_possible(struct tb_switch *sw)
2202{
2203 const struct tb_port *up = tb_upstream_port(sw);
2204
2205 if (!up->dual_link_port || !up->dual_link_port->remote)
2206 return false;
2207
Mika Westerbergb0407982019-12-17 15:33:40 +03002208 if (tb_switch_is_usb4(sw))
2209 return usb4_switch_lane_bonding_possible(sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +02002210 return tb_lc_lane_bonding_possible(sw);
2211}
2212
2213static int tb_switch_update_link_attributes(struct tb_switch *sw)
2214{
2215 struct tb_port *up;
2216 bool change = false;
2217 int ret;
2218
2219 if (!tb_route(sw) || tb_switch_is_icm(sw))
2220 return 0;
2221
2222 up = tb_upstream_port(sw);
2223
2224 ret = tb_port_get_link_speed(up);
2225 if (ret < 0)
2226 return ret;
2227 if (sw->link_speed != ret)
2228 change = true;
2229 sw->link_speed = ret;
2230
2231 ret = tb_port_get_link_width(up);
2232 if (ret < 0)
2233 return ret;
2234 if (sw->link_width != ret)
2235 change = true;
2236 sw->link_width = ret;
2237
2238 /* Notify userspace that there is possible link attribute change */
2239 if (device_is_registered(&sw->dev) && change)
2240 kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
2241
2242 return 0;
2243}
2244
2245/**
2246 * tb_switch_lane_bonding_enable() - Enable lane bonding
2247 * @sw: Switch to enable lane bonding
2248 *
2249 * Connection manager can call this function to enable lane bonding of a
2250 * switch. If conditions are correct and both switches support the feature,
2251 * lanes are bonded. It is safe to call this to any switch.
2252 */
2253int tb_switch_lane_bonding_enable(struct tb_switch *sw)
2254{
2255 struct tb_switch *parent = tb_to_switch(sw->dev.parent);
2256 struct tb_port *up, *down;
2257 u64 route = tb_route(sw);
2258 int ret;
2259
2260 if (!route)
2261 return 0;
2262
2263 if (!tb_switch_lane_bonding_possible(sw))
2264 return 0;
2265
2266 up = tb_upstream_port(sw);
2267 down = tb_port_at(route, parent);
2268
2269 if (!tb_port_is_width_supported(up, 2) ||
2270 !tb_port_is_width_supported(down, 2))
2271 return 0;
2272
2273 ret = tb_port_lane_bonding_enable(up);
2274 if (ret) {
2275 tb_port_warn(up, "failed to enable lane bonding\n");
2276 return ret;
2277 }
2278
2279 ret = tb_port_lane_bonding_enable(down);
2280 if (ret) {
2281 tb_port_warn(down, "failed to enable lane bonding\n");
2282 tb_port_lane_bonding_disable(up);
2283 return ret;
2284 }
2285
2286 tb_switch_update_link_attributes(sw);
2287
2288 tb_sw_dbg(sw, "lane bonding enabled\n");
2289 return ret;
2290}
2291
2292/**
2293 * tb_switch_lane_bonding_disable() - Disable lane bonding
2294 * @sw: Switch whose lane bonding to disable
2295 *
2296 * Disables lane bonding between @sw and parent. This can be called even
2297 * if lanes were not bonded originally.
2298 */
2299void tb_switch_lane_bonding_disable(struct tb_switch *sw)
2300{
2301 struct tb_switch *parent = tb_to_switch(sw->dev.parent);
2302 struct tb_port *up, *down;
2303
2304 if (!tb_route(sw))
2305 return;
2306
2307 up = tb_upstream_port(sw);
2308 if (!up->bonded)
2309 return;
2310
2311 down = tb_port_at(tb_route(sw), parent);
2312
2313 tb_port_lane_bonding_disable(up);
2314 tb_port_lane_bonding_disable(down);
2315
2316 tb_switch_update_link_attributes(sw);
2317 tb_sw_dbg(sw, "lane bonding disabled\n");
2318}
2319
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002320/**
2321 * tb_switch_add() - Add a switch to the domain
2322 * @sw: Switch to add
2323 *
2324 * This is the last step in adding switch to the domain. It will read
2325 * identification information from DROM and initializes ports so that
2326 * they can be used to connect other switches. The switch will be
2327 * exposed to the userspace when this function successfully returns. To
2328 * remove and release the switch, call tb_switch_remove().
2329 *
2330 * Return: %0 in case of success and negative errno in case of failure
2331 */
2332int tb_switch_add(struct tb_switch *sw)
2333{
2334 int i, ret;
Andreas Noeverca389f72014-06-03 22:04:04 +02002335
Mika Westerberg3e136762017-06-06 15:25:14 +03002336 /*
2337 * Initialize DMA control port now before we read DROM. Recent
2338 * host controllers have more complete DROM on NVM that includes
2339 * vendor and model identification strings which we then expose
2340 * to the userspace. NVM can be accessed through DMA
2341 * configuration based mailbox.
2342 */
Mika Westerberge6b245c2017-06-06 15:25:17 +03002343 ret = tb_switch_add_dma_port(sw);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002344 if (ret) {
2345 dev_err(&sw->dev, "failed to add DMA port\n");
Mika Westerbergf53e7672017-06-06 15:25:02 +03002346 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002347 }
Andreas Noever343fcb82014-06-12 23:11:47 +02002348
Mika Westerberge6b245c2017-06-06 15:25:17 +03002349 if (!sw->safe_mode) {
2350 /* read drom */
2351 ret = tb_drom_read(sw);
2352 if (ret) {
Mika Westerbergaf99f692019-08-27 15:18:20 +03002353 dev_err(&sw->dev, "reading DROM failed\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002354 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +03002355 }
Mika Westerbergdaa51402018-10-01 12:31:19 +03002356 tb_sw_dbg(sw, "uid: %#llx\n", sw->uid);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002357
Aditya Pakki2cc12752019-03-20 10:57:54 -05002358 ret = tb_switch_set_uuid(sw);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002359 if (ret) {
2360 dev_err(&sw->dev, "failed to set UUID\n");
Aditya Pakki2cc12752019-03-20 10:57:54 -05002361 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002362 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002363
2364 for (i = 0; i <= sw->config.max_port_number; i++) {
2365 if (sw->ports[i].disabled) {
Mika Westerbergdaa51402018-10-01 12:31:19 +03002366 tb_port_dbg(&sw->ports[i], "disabled by eeprom\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002367 continue;
2368 }
2369 ret = tb_init_port(&sw->ports[i]);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002370 if (ret) {
2371 dev_err(&sw->dev, "failed to initialize port %d\n", i);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002372 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002373 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002374 }
Mika Westerberg91c0c122019-03-21 19:03:00 +02002375
Mika Westerberg0d46c082019-08-26 18:19:33 +03002376 tb_switch_default_link_ports(sw);
2377
Mika Westerberg91c0c122019-03-21 19:03:00 +02002378 ret = tb_switch_update_link_attributes(sw);
2379 if (ret)
2380 return ret;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +03002381
2382 ret = tb_switch_tmu_init(sw);
2383 if (ret)
2384 return ret;
Andreas Noever343fcb82014-06-12 23:11:47 +02002385 }
2386
Mika Westerberge6b245c2017-06-06 15:25:17 +03002387 ret = device_add(&sw->dev);
Mika Westerbergaf99f692019-08-27 15:18:20 +03002388 if (ret) {
2389 dev_err(&sw->dev, "failed to add device: %d\n", ret);
Mika Westerberge6b245c2017-06-06 15:25:17 +03002390 return ret;
Mika Westerbergaf99f692019-08-27 15:18:20 +03002391 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002392
Mika Westerberga83bc4a2018-10-01 12:31:20 +03002393 if (tb_route(sw)) {
2394 dev_info(&sw->dev, "new device found, vendor=%#x device=%#x\n",
2395 sw->vendor, sw->device);
2396 if (sw->vendor_name && sw->device_name)
2397 dev_info(&sw->dev, "%s %s\n", sw->vendor_name,
2398 sw->device_name);
2399 }
2400
Mika Westerberge6b245c2017-06-06 15:25:17 +03002401 ret = tb_switch_nvm_add(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002402 if (ret) {
Mika Westerbergaf99f692019-08-27 15:18:20 +03002403 dev_err(&sw->dev, "failed to add NVM devices\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03002404 device_del(&sw->dev);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002405 return ret;
2406 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03002407
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002408 pm_runtime_set_active(&sw->dev);
2409 if (sw->rpm) {
2410 pm_runtime_set_autosuspend_delay(&sw->dev, TB_AUTOSUSPEND_DELAY);
2411 pm_runtime_use_autosuspend(&sw->dev);
2412 pm_runtime_mark_last_busy(&sw->dev);
2413 pm_runtime_enable(&sw->dev);
2414 pm_request_autosuspend(&sw->dev);
2415 }
2416
2417 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002418}
Andreas Noeverc90553b2014-06-03 22:04:11 +02002419
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002420/**
2421 * tb_switch_remove() - Remove and release a switch
2422 * @sw: Switch to remove
2423 *
2424 * This will remove the switch from the domain and release it after last
2425 * reference count drops to zero. If there are switches connected below
2426 * this switch, they will be removed as well.
2427 */
2428void tb_switch_remove(struct tb_switch *sw)
2429{
Mika Westerbergb433d012019-09-30 14:07:22 +03002430 struct tb_port *port;
Andreas Noeverca389f72014-06-03 22:04:04 +02002431
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03002432 if (sw->rpm) {
2433 pm_runtime_get_sync(&sw->dev);
2434 pm_runtime_disable(&sw->dev);
2435 }
2436
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002437 /* port 0 is the switch itself and never has a remote */
Mika Westerbergb433d012019-09-30 14:07:22 +03002438 tb_switch_for_each_port(sw, port) {
2439 if (tb_port_has_remote(port)) {
2440 tb_switch_remove(port->remote->sw);
2441 port->remote = NULL;
2442 } else if (port->xdomain) {
2443 tb_xdomain_remove(port->xdomain);
2444 port->xdomain = NULL;
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02002445 }
Kranthi Kuntaladacb1282020-03-05 16:39:58 +02002446
2447 /* Remove any downstream retimers */
2448 tb_retimer_remove_all(port);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002449 }
2450
2451 if (!sw->is_unplugged)
2452 tb_plug_events_active(sw, false);
Mika Westerbergb0407982019-12-17 15:33:40 +03002453
2454 if (tb_switch_is_usb4(sw))
2455 usb4_switch_unconfigure_link(sw);
2456 else
2457 tb_lc_unconfigure_link(sw);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002458
Mika Westerberge6b245c2017-06-06 15:25:17 +03002459 tb_switch_nvm_remove(sw);
Mika Westerberga83bc4a2018-10-01 12:31:20 +03002460
2461 if (tb_route(sw))
2462 dev_info(&sw->dev, "device disconnected\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03002463 device_unregister(&sw->dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02002464}
2465
Andreas Noever053596d2014-06-03 22:04:06 +02002466/**
Lukas Wunneraae20bb2016-03-20 13:57:20 +01002467 * tb_sw_set_unplugged() - set is_unplugged on switch and downstream switches
Andreas Noever053596d2014-06-03 22:04:06 +02002468 */
Lukas Wunneraae20bb2016-03-20 13:57:20 +01002469void tb_sw_set_unplugged(struct tb_switch *sw)
Andreas Noever053596d2014-06-03 22:04:06 +02002470{
Mika Westerbergb433d012019-09-30 14:07:22 +03002471 struct tb_port *port;
2472
Andreas Noever053596d2014-06-03 22:04:06 +02002473 if (sw == sw->tb->root_switch) {
2474 tb_sw_WARN(sw, "cannot unplug root switch\n");
2475 return;
2476 }
2477 if (sw->is_unplugged) {
2478 tb_sw_WARN(sw, "is_unplugged already set\n");
2479 return;
2480 }
2481 sw->is_unplugged = true;
Mika Westerbergb433d012019-09-30 14:07:22 +03002482 tb_switch_for_each_port(sw, port) {
2483 if (tb_port_has_remote(port))
2484 tb_sw_set_unplugged(port->remote->sw);
2485 else if (port->xdomain)
2486 port->xdomain->is_unplugged = true;
Andreas Noever053596d2014-06-03 22:04:06 +02002487 }
2488}
2489
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002490int tb_switch_resume(struct tb_switch *sw)
2491{
Mika Westerbergb433d012019-09-30 14:07:22 +03002492 struct tb_port *port;
2493 int err;
2494
Mika Westerbergdaa51402018-10-01 12:31:19 +03002495 tb_sw_dbg(sw, "resuming switch\n");
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002496
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03002497 /*
2498 * Check for UID of the connected switches except for root
2499 * switch which we assume cannot be removed.
2500 */
2501 if (tb_route(sw)) {
2502 u64 uid;
2503
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002504 /*
2505 * Check first that we can still read the switch config
2506 * space. It may be that there is now another domain
2507 * connected.
2508 */
2509 err = tb_cfg_get_upstream_port(sw->tb->ctl, tb_route(sw));
2510 if (err < 0) {
2511 tb_sw_info(sw, "switch not present anymore\n");
2512 return err;
2513 }
2514
Mika Westerbergb0407982019-12-17 15:33:40 +03002515 if (tb_switch_is_usb4(sw))
2516 err = usb4_switch_read_uid(sw, &uid);
2517 else
2518 err = tb_drom_read_uid_only(sw, &uid);
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03002519 if (err) {
2520 tb_sw_warn(sw, "uid read failed\n");
2521 return err;
2522 }
2523 if (sw->uid != uid) {
2524 tb_sw_info(sw,
2525 "changed while suspended (uid %#llx -> %#llx)\n",
2526 sw->uid, uid);
2527 return -ENODEV;
2528 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002529 }
2530
Mika Westerbergb0407982019-12-17 15:33:40 +03002531 err = tb_switch_configure(sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002532 if (err)
2533 return err;
2534
2535 /* check for surviving downstream switches */
Mika Westerbergb433d012019-09-30 14:07:22 +03002536 tb_switch_for_each_port(sw, port) {
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002537 if (!tb_port_has_remote(port) && !port->xdomain)
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002538 continue;
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02002539
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002540 if (tb_wait_for_port(port, true) <= 0) {
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002541 tb_port_warn(port,
2542 "lost during suspend, disconnecting\n");
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002543 if (tb_port_has_remote(port))
2544 tb_sw_set_unplugged(port->remote->sw);
2545 else if (port->xdomain)
2546 port->xdomain->is_unplugged = true;
Mika Westerbergb0407982019-12-17 15:33:40 +03002547 } else if (tb_port_has_remote(port) || port->xdomain) {
2548 /*
2549 * Always unlock the port so the downstream
2550 * switch/domain is accessible.
2551 */
2552 if (tb_port_unlock(port))
2553 tb_port_warn(port, "failed to unlock port\n");
2554 if (port->remote && tb_switch_resume(port->remote->sw)) {
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03002555 tb_port_warn(port,
2556 "lost during suspend, disconnecting\n");
2557 tb_sw_set_unplugged(port->remote->sw);
2558 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002559 }
2560 }
2561 return 0;
2562}
2563
2564void tb_switch_suspend(struct tb_switch *sw)
2565{
Mika Westerbergb433d012019-09-30 14:07:22 +03002566 struct tb_port *port;
2567 int err;
2568
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002569 err = tb_plug_events_active(sw, false);
2570 if (err)
2571 return;
2572
Mika Westerbergb433d012019-09-30 14:07:22 +03002573 tb_switch_for_each_port(sw, port) {
2574 if (tb_port_has_remote(port))
2575 tb_switch_suspend(port->remote->sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002576 }
Mika Westerberg5480dfc2019-01-09 17:25:43 +02002577
Mika Westerbergb0407982019-12-17 15:33:40 +03002578 if (tb_switch_is_usb4(sw))
2579 usb4_switch_set_sleep(sw);
2580 else
2581 tb_lc_set_sleep(sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002582}
Mika Westerbergf67cf492017-06-06 15:25:16 +03002583
Mika Westerberg8afe9092019-03-26 15:52:30 +03002584/**
2585 * tb_switch_query_dp_resource() - Query availability of DP resource
2586 * @sw: Switch whose DP resource is queried
2587 * @in: DP IN port
2588 *
2589 * Queries availability of DP resource for DP tunneling using switch
2590 * specific means. Returns %true if resource is available.
2591 */
2592bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in)
2593{
Mika Westerbergb0407982019-12-17 15:33:40 +03002594 if (tb_switch_is_usb4(sw))
2595 return usb4_switch_query_dp_resource(sw, in);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002596 return tb_lc_dp_sink_query(sw, in);
2597}
2598
2599/**
2600 * tb_switch_alloc_dp_resource() - Allocate available DP resource
2601 * @sw: Switch whose DP resource is allocated
2602 * @in: DP IN port
2603 *
2604 * Allocates DP resource for DP tunneling. The resource must be
2605 * available for this to succeed (see tb_switch_query_dp_resource()).
2606 * Returns %0 in success and negative errno otherwise.
2607 */
2608int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
2609{
Mika Westerbergb0407982019-12-17 15:33:40 +03002610 if (tb_switch_is_usb4(sw))
2611 return usb4_switch_alloc_dp_resource(sw, in);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002612 return tb_lc_dp_sink_alloc(sw, in);
2613}
2614
2615/**
2616 * tb_switch_dealloc_dp_resource() - De-allocate DP resource
2617 * @sw: Switch whose DP resource is de-allocated
2618 * @in: DP IN port
2619 *
2620 * De-allocates DP resource that was previously allocated for DP
2621 * tunneling.
2622 */
2623void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in)
2624{
Mika Westerbergb0407982019-12-17 15:33:40 +03002625 int ret;
2626
2627 if (tb_switch_is_usb4(sw))
2628 ret = usb4_switch_dealloc_dp_resource(sw, in);
2629 else
2630 ret = tb_lc_dp_sink_dealloc(sw, in);
2631
2632 if (ret)
Mika Westerberg8afe9092019-03-26 15:52:30 +03002633 tb_sw_warn(sw, "failed to de-allocate DP resource for port %d\n",
2634 in->port);
Mika Westerberg8afe9092019-03-26 15:52:30 +03002635}
2636
Mika Westerbergf67cf492017-06-06 15:25:16 +03002637struct tb_sw_lookup {
2638 struct tb *tb;
2639 u8 link;
2640 u8 depth;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002641 const uuid_t *uuid;
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002642 u64 route;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002643};
2644
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002645static int tb_switch_match(struct device *dev, const void *data)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002646{
2647 struct tb_switch *sw = tb_to_switch(dev);
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002648 const struct tb_sw_lookup *lookup = data;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002649
2650 if (!sw)
2651 return 0;
2652 if (sw->tb != lookup->tb)
2653 return 0;
2654
2655 if (lookup->uuid)
2656 return !memcmp(sw->uuid, lookup->uuid, sizeof(*lookup->uuid));
2657
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002658 if (lookup->route) {
2659 return sw->config.route_lo == lower_32_bits(lookup->route) &&
2660 sw->config.route_hi == upper_32_bits(lookup->route);
2661 }
2662
Mika Westerbergf67cf492017-06-06 15:25:16 +03002663 /* Root switch is matched only by depth */
2664 if (!lookup->depth)
2665 return !sw->depth;
2666
2667 return sw->link == lookup->link && sw->depth == lookup->depth;
2668}
2669
2670/**
2671 * tb_switch_find_by_link_depth() - Find switch by link and depth
2672 * @tb: Domain the switch belongs
2673 * @link: Link number the switch is connected
2674 * @depth: Depth of the switch in link
2675 *
2676 * Returned switch has reference count increased so the caller needs to
2677 * call tb_switch_put() when done with the switch.
2678 */
2679struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link, u8 depth)
2680{
2681 struct tb_sw_lookup lookup;
2682 struct device *dev;
2683
2684 memset(&lookup, 0, sizeof(lookup));
2685 lookup.tb = tb;
2686 lookup.link = link;
2687 lookup.depth = depth;
2688
2689 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2690 if (dev)
2691 return tb_to_switch(dev);
2692
2693 return NULL;
2694}
2695
2696/**
Radion Mirchevsky432019d2017-10-04 15:07:40 +03002697 * tb_switch_find_by_uuid() - Find switch by UUID
Mika Westerbergf67cf492017-06-06 15:25:16 +03002698 * @tb: Domain the switch belongs
2699 * @uuid: UUID to look for
2700 *
2701 * Returned switch has reference count increased so the caller needs to
2702 * call tb_switch_put() when done with the switch.
2703 */
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002704struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002705{
2706 struct tb_sw_lookup lookup;
2707 struct device *dev;
2708
2709 memset(&lookup, 0, sizeof(lookup));
2710 lookup.tb = tb;
2711 lookup.uuid = uuid;
2712
2713 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2714 if (dev)
2715 return tb_to_switch(dev);
2716
2717 return NULL;
2718}
Mika Westerberge6b245c2017-06-06 15:25:17 +03002719
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002720/**
2721 * tb_switch_find_by_route() - Find switch by route string
2722 * @tb: Domain the switch belongs
2723 * @route: Route string to look for
2724 *
2725 * Returned switch has reference count increased so the caller needs to
2726 * call tb_switch_put() when done with the switch.
2727 */
2728struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route)
2729{
2730 struct tb_sw_lookup lookup;
2731 struct device *dev;
2732
2733 if (!route)
2734 return tb_switch_get(tb->root_switch);
2735
2736 memset(&lookup, 0, sizeof(lookup));
2737 lookup.tb = tb;
2738 lookup.route = route;
2739
2740 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2741 if (dev)
2742 return tb_to_switch(dev);
2743
2744 return NULL;
2745}
2746
Mika Westerberg386e5e22019-12-17 15:33:37 +03002747/**
2748 * tb_switch_find_port() - return the first port of @type on @sw or NULL
2749 * @sw: Switch to find the port from
2750 * @type: Port type to look for
2751 */
2752struct tb_port *tb_switch_find_port(struct tb_switch *sw,
2753 enum tb_port_type type)
2754{
2755 struct tb_port *port;
2756
2757 tb_switch_for_each_port(sw, port) {
2758 if (port->config.type == type)
2759 return port;
2760 }
2761
2762 return NULL;
2763}