blob: ac9fa274080099bba41822717158b1fca913fb01 [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>
Mika Westerberge6b245c2017-06-06 15:25:17 +030016#include <linux/vmalloc.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020017
18#include "tb.h"
19
Mika Westerberge6b245c2017-06-06 15:25:17 +030020/* Switch NVM support */
21
22#define NVM_DEVID 0x05
23#define NVM_VERSION 0x08
24#define NVM_CSS 0x10
25#define NVM_FLASH_SIZE 0x45
26
27#define NVM_MIN_SIZE SZ_32K
28#define NVM_MAX_SIZE SZ_512K
29
30static DEFINE_IDA(nvm_ida);
31
32struct nvm_auth_status {
33 struct list_head list;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +020034 uuid_t uuid;
Mika Westerberge6b245c2017-06-06 15:25:17 +030035 u32 status;
36};
37
38/*
39 * Hold NVM authentication failure status per switch This information
40 * needs to stay around even when the switch gets power cycled so we
41 * keep it separately.
42 */
43static LIST_HEAD(nvm_auth_status_cache);
44static DEFINE_MUTEX(nvm_auth_status_lock);
45
46static struct nvm_auth_status *__nvm_get_auth_status(const struct tb_switch *sw)
47{
48 struct nvm_auth_status *st;
49
50 list_for_each_entry(st, &nvm_auth_status_cache, list) {
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +020051 if (uuid_equal(&st->uuid, sw->uuid))
Mika Westerberge6b245c2017-06-06 15:25:17 +030052 return st;
53 }
54
55 return NULL;
56}
57
58static void nvm_get_auth_status(const struct tb_switch *sw, u32 *status)
59{
60 struct nvm_auth_status *st;
61
62 mutex_lock(&nvm_auth_status_lock);
63 st = __nvm_get_auth_status(sw);
64 mutex_unlock(&nvm_auth_status_lock);
65
66 *status = st ? st->status : 0;
67}
68
69static void nvm_set_auth_status(const struct tb_switch *sw, u32 status)
70{
71 struct nvm_auth_status *st;
72
73 if (WARN_ON(!sw->uuid))
74 return;
75
76 mutex_lock(&nvm_auth_status_lock);
77 st = __nvm_get_auth_status(sw);
78
79 if (!st) {
80 st = kzalloc(sizeof(*st), GFP_KERNEL);
81 if (!st)
82 goto unlock;
83
84 memcpy(&st->uuid, sw->uuid, sizeof(st->uuid));
85 INIT_LIST_HEAD(&st->list);
86 list_add_tail(&st->list, &nvm_auth_status_cache);
87 }
88
89 st->status = status;
90unlock:
91 mutex_unlock(&nvm_auth_status_lock);
92}
93
94static void nvm_clear_auth_status(const struct tb_switch *sw)
95{
96 struct nvm_auth_status *st;
97
98 mutex_lock(&nvm_auth_status_lock);
99 st = __nvm_get_auth_status(sw);
100 if (st) {
101 list_del(&st->list);
102 kfree(st);
103 }
104 mutex_unlock(&nvm_auth_status_lock);
105}
106
107static int nvm_validate_and_write(struct tb_switch *sw)
108{
109 unsigned int image_size, hdr_size;
110 const u8 *buf = sw->nvm->buf;
111 u16 ds_size;
112 int ret;
113
114 if (!buf)
115 return -EINVAL;
116
117 image_size = sw->nvm->buf_data_size;
118 if (image_size < NVM_MIN_SIZE || image_size > NVM_MAX_SIZE)
119 return -EINVAL;
120
121 /*
122 * FARB pointer must point inside the image and must at least
123 * contain parts of the digital section we will be reading here.
124 */
125 hdr_size = (*(u32 *)buf) & 0xffffff;
126 if (hdr_size + NVM_DEVID + 2 >= image_size)
127 return -EINVAL;
128
129 /* Digital section start should be aligned to 4k page */
130 if (!IS_ALIGNED(hdr_size, SZ_4K))
131 return -EINVAL;
132
133 /*
134 * Read digital section size and check that it also fits inside
135 * the image.
136 */
137 ds_size = *(u16 *)(buf + hdr_size);
138 if (ds_size >= image_size)
139 return -EINVAL;
140
141 if (!sw->safe_mode) {
142 u16 device_id;
143
144 /*
145 * Make sure the device ID in the image matches the one
146 * we read from the switch config space.
147 */
148 device_id = *(u16 *)(buf + hdr_size + NVM_DEVID);
149 if (device_id != sw->config.device_id)
150 return -EINVAL;
151
152 if (sw->generation < 3) {
153 /* Write CSS headers first */
154 ret = dma_port_flash_write(sw->dma_port,
155 DMA_PORT_CSS_ADDRESS, buf + NVM_CSS,
156 DMA_PORT_CSS_MAX_SIZE);
157 if (ret)
158 return ret;
159 }
160
161 /* Skip headers in the image */
162 buf += hdr_size;
163 image_size -= hdr_size;
164 }
165
166 return dma_port_flash_write(sw->dma_port, 0, buf, image_size);
167}
168
169static int nvm_authenticate_host(struct tb_switch *sw)
170{
171 int ret;
172
173 /*
174 * Root switch NVM upgrade requires that we disconnect the
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300175 * existing paths first (in case it is not in safe mode
Mika Westerberge6b245c2017-06-06 15:25:17 +0300176 * already).
177 */
178 if (!sw->safe_mode) {
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300179 ret = tb_domain_disconnect_all_paths(sw->tb);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300180 if (ret)
181 return ret;
182 /*
183 * The host controller goes away pretty soon after this if
184 * everything goes well so getting timeout is expected.
185 */
186 ret = dma_port_flash_update_auth(sw->dma_port);
187 return ret == -ETIMEDOUT ? 0 : ret;
188 }
189
190 /*
191 * From safe mode we can get out by just power cycling the
192 * switch.
193 */
194 dma_port_power_cycle(sw->dma_port);
195 return 0;
196}
197
198static int nvm_authenticate_device(struct tb_switch *sw)
199{
200 int ret, retries = 10;
201
202 ret = dma_port_flash_update_auth(sw->dma_port);
203 if (ret && ret != -ETIMEDOUT)
204 return ret;
205
206 /*
207 * Poll here for the authentication status. It takes some time
208 * for the device to respond (we get timeout for a while). Once
209 * we get response the device needs to be power cycled in order
210 * to the new NVM to be taken into use.
211 */
212 do {
213 u32 status;
214
215 ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
216 if (ret < 0 && ret != -ETIMEDOUT)
217 return ret;
218 if (ret > 0) {
219 if (status) {
220 tb_sw_warn(sw, "failed to authenticate NVM\n");
221 nvm_set_auth_status(sw, status);
222 }
223
224 tb_sw_info(sw, "power cycling the switch now\n");
225 dma_port_power_cycle(sw->dma_port);
226 return 0;
227 }
228
229 msleep(500);
230 } while (--retries);
231
232 return -ETIMEDOUT;
233}
234
235static int tb_switch_nvm_read(void *priv, unsigned int offset, void *val,
236 size_t bytes)
237{
238 struct tb_switch *sw = priv;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300239 int ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300240
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300241 pm_runtime_get_sync(&sw->dev);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300242
243 if (!mutex_trylock(&sw->tb->lock)) {
244 ret = restart_syscall();
245 goto out;
246 }
247
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300248 ret = dma_port_flash_read(sw->dma_port, offset, val, bytes);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300249 mutex_unlock(&sw->tb->lock);
250
251out:
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300252 pm_runtime_mark_last_busy(&sw->dev);
253 pm_runtime_put_autosuspend(&sw->dev);
254
255 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300256}
257
258static int tb_switch_nvm_write(void *priv, unsigned int offset, void *val,
259 size_t bytes)
260{
261 struct tb_switch *sw = priv;
262 int ret = 0;
263
Mika Westerberg09f11b62019-03-19 16:48:41 +0200264 if (!mutex_trylock(&sw->tb->lock))
265 return restart_syscall();
Mika Westerberge6b245c2017-06-06 15:25:17 +0300266
267 /*
268 * Since writing the NVM image might require some special steps,
269 * for example when CSS headers are written, we cache the image
270 * locally here and handle the special cases when the user asks
271 * us to authenticate the image.
272 */
273 if (!sw->nvm->buf) {
274 sw->nvm->buf = vmalloc(NVM_MAX_SIZE);
275 if (!sw->nvm->buf) {
276 ret = -ENOMEM;
277 goto unlock;
278 }
279 }
280
281 sw->nvm->buf_data_size = offset + bytes;
282 memcpy(sw->nvm->buf + offset, val, bytes);
283
284unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +0200285 mutex_unlock(&sw->tb->lock);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300286
287 return ret;
288}
289
290static struct nvmem_device *register_nvmem(struct tb_switch *sw, int id,
291 size_t size, bool active)
292{
293 struct nvmem_config config;
294
295 memset(&config, 0, sizeof(config));
296
297 if (active) {
298 config.name = "nvm_active";
299 config.reg_read = tb_switch_nvm_read;
Mika Westerberg800161b2017-06-29 14:19:50 +0300300 config.read_only = true;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300301 } else {
302 config.name = "nvm_non_active";
303 config.reg_write = tb_switch_nvm_write;
Mika Westerberg800161b2017-06-29 14:19:50 +0300304 config.root_only = true;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300305 }
306
307 config.id = id;
308 config.stride = 4;
309 config.word_size = 4;
310 config.size = size;
311 config.dev = &sw->dev;
312 config.owner = THIS_MODULE;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300313 config.priv = sw;
314
315 return nvmem_register(&config);
316}
317
318static int tb_switch_nvm_add(struct tb_switch *sw)
319{
320 struct nvmem_device *nvm_dev;
321 struct tb_switch_nvm *nvm;
322 u32 val;
323 int ret;
324
325 if (!sw->dma_port)
326 return 0;
327
328 nvm = kzalloc(sizeof(*nvm), GFP_KERNEL);
329 if (!nvm)
330 return -ENOMEM;
331
332 nvm->id = ida_simple_get(&nvm_ida, 0, 0, GFP_KERNEL);
333
334 /*
335 * If the switch is in safe-mode the only accessible portion of
336 * the NVM is the non-active one where userspace is expected to
337 * write new functional NVM.
338 */
339 if (!sw->safe_mode) {
340 u32 nvm_size, hdr_size;
341
342 ret = dma_port_flash_read(sw->dma_port, NVM_FLASH_SIZE, &val,
343 sizeof(val));
344 if (ret)
345 goto err_ida;
346
347 hdr_size = sw->generation < 3 ? SZ_8K : SZ_16K;
348 nvm_size = (SZ_1M << (val & 7)) / 8;
349 nvm_size = (nvm_size - hdr_size) / 2;
350
351 ret = dma_port_flash_read(sw->dma_port, NVM_VERSION, &val,
352 sizeof(val));
353 if (ret)
354 goto err_ida;
355
356 nvm->major = val >> 16;
357 nvm->minor = val >> 8;
358
359 nvm_dev = register_nvmem(sw, nvm->id, nvm_size, true);
360 if (IS_ERR(nvm_dev)) {
361 ret = PTR_ERR(nvm_dev);
362 goto err_ida;
363 }
364 nvm->active = nvm_dev;
365 }
366
Mika Westerberg3f415e52019-02-05 12:51:40 +0300367 if (!sw->no_nvm_upgrade) {
368 nvm_dev = register_nvmem(sw, nvm->id, NVM_MAX_SIZE, false);
369 if (IS_ERR(nvm_dev)) {
370 ret = PTR_ERR(nvm_dev);
371 goto err_nvm_active;
372 }
373 nvm->non_active = nvm_dev;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300374 }
Mika Westerberge6b245c2017-06-06 15:25:17 +0300375
Mika Westerberge6b245c2017-06-06 15:25:17 +0300376 sw->nvm = nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300377 return 0;
378
379err_nvm_active:
380 if (nvm->active)
381 nvmem_unregister(nvm->active);
382err_ida:
383 ida_simple_remove(&nvm_ida, nvm->id);
384 kfree(nvm);
385
386 return ret;
387}
388
389static void tb_switch_nvm_remove(struct tb_switch *sw)
390{
391 struct tb_switch_nvm *nvm;
392
Mika Westerberge6b245c2017-06-06 15:25:17 +0300393 nvm = sw->nvm;
394 sw->nvm = NULL;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300395
396 if (!nvm)
397 return;
398
399 /* Remove authentication status in case the switch is unplugged */
400 if (!nvm->authenticating)
401 nvm_clear_auth_status(sw);
402
Mika Westerberg3f415e52019-02-05 12:51:40 +0300403 if (nvm->non_active)
404 nvmem_unregister(nvm->non_active);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300405 if (nvm->active)
406 nvmem_unregister(nvm->active);
407 ida_simple_remove(&nvm_ida, nvm->id);
408 vfree(nvm->buf);
409 kfree(nvm);
410}
411
Andreas Noevera25c8b22014-06-03 22:04:02 +0200412/* port utility functions */
413
414static const char *tb_port_type(struct tb_regs_port_header *port)
415{
416 switch (port->type >> 16) {
417 case 0:
418 switch ((u8) port->type) {
419 case 0:
420 return "Inactive";
421 case 1:
422 return "Port";
423 case 2:
424 return "NHI";
425 default:
426 return "unknown";
427 }
428 case 0x2:
429 return "Ethernet";
430 case 0x8:
431 return "SATA";
432 case 0xe:
433 return "DP/HDMI";
434 case 0x10:
435 return "PCIe";
436 case 0x20:
437 return "USB";
438 default:
439 return "unknown";
440 }
441}
442
443static void tb_dump_port(struct tb *tb, struct tb_regs_port_header *port)
444{
Mika Westerbergdaa51402018-10-01 12:31:19 +0300445 tb_dbg(tb,
446 " Port %d: %x:%x (Revision: %d, TB Version: %d, Type: %s (%#x))\n",
447 port->port_number, port->vendor_id, port->device_id,
448 port->revision, port->thunderbolt_version, tb_port_type(port),
449 port->type);
450 tb_dbg(tb, " Max hop id (in/out): %d/%d\n",
451 port->max_in_hop_id, port->max_out_hop_id);
452 tb_dbg(tb, " Max counters: %d\n", port->max_counters);
453 tb_dbg(tb, " NFC Credits: %#x\n", port->nfc_credits);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200454}
455
456/**
Andreas Noever9da672a2014-06-03 22:04:05 +0200457 * tb_port_state() - get connectedness state of a port
458 *
459 * The port must have a TB_CAP_PHY (i.e. it should be a real port).
460 *
461 * Return: Returns an enum tb_port_state on success or an error code on failure.
462 */
463static int tb_port_state(struct tb_port *port)
464{
465 struct tb_cap_phy phy;
466 int res;
467 if (port->cap_phy == 0) {
468 tb_port_WARN(port, "does not have a PHY\n");
469 return -EINVAL;
470 }
471 res = tb_port_read(port, &phy, TB_CFG_PORT, port->cap_phy, 2);
472 if (res)
473 return res;
474 return phy.state;
475}
476
477/**
478 * tb_wait_for_port() - wait for a port to become ready
479 *
480 * Wait up to 1 second for a port to reach state TB_PORT_UP. If
481 * wait_if_unplugged is set then we also wait if the port is in state
482 * TB_PORT_UNPLUGGED (it takes a while for the device to be registered after
483 * switch resume). Otherwise we only wait if a device is registered but the link
484 * has not yet been established.
485 *
486 * Return: Returns an error code on failure. Returns 0 if the port is not
487 * connected or failed to reach state TB_PORT_UP within one second. Returns 1
488 * if the port is connected and in state TB_PORT_UP.
489 */
490int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged)
491{
492 int retries = 10;
493 int state;
494 if (!port->cap_phy) {
495 tb_port_WARN(port, "does not have PHY\n");
496 return -EINVAL;
497 }
498 if (tb_is_upstream_port(port)) {
499 tb_port_WARN(port, "is the upstream port\n");
500 return -EINVAL;
501 }
502
503 while (retries--) {
504 state = tb_port_state(port);
505 if (state < 0)
506 return state;
507 if (state == TB_PORT_DISABLED) {
Mika Westerberg62efe692018-09-17 16:32:13 +0300508 tb_port_dbg(port, "is disabled (state: 0)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200509 return 0;
510 }
511 if (state == TB_PORT_UNPLUGGED) {
512 if (wait_if_unplugged) {
513 /* used during resume */
Mika Westerberg62efe692018-09-17 16:32:13 +0300514 tb_port_dbg(port,
515 "is unplugged (state: 7), retrying...\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200516 msleep(100);
517 continue;
518 }
Mika Westerberg62efe692018-09-17 16:32:13 +0300519 tb_port_dbg(port, "is unplugged (state: 7)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200520 return 0;
521 }
522 if (state == TB_PORT_UP) {
Mika Westerberg62efe692018-09-17 16:32:13 +0300523 tb_port_dbg(port, "is connected, link is up (state: 2)\n");
Andreas Noever9da672a2014-06-03 22:04:05 +0200524 return 1;
525 }
526
527 /*
528 * After plug-in the state is TB_PORT_CONNECTING. Give it some
529 * time.
530 */
Mika Westerberg62efe692018-09-17 16:32:13 +0300531 tb_port_dbg(port,
532 "is connected, link is not up (state: %d), retrying...\n",
533 state);
Andreas Noever9da672a2014-06-03 22:04:05 +0200534 msleep(100);
535 }
536 tb_port_warn(port,
537 "failed to reach state TB_PORT_UP. Ignoring port...\n");
538 return 0;
539}
540
541/**
Andreas Noever520b6702014-06-03 22:04:07 +0200542 * tb_port_add_nfc_credits() - add/remove non flow controlled credits to port
543 *
544 * Change the number of NFC credits allocated to @port by @credits. To remove
545 * NFC credits pass a negative amount of credits.
546 *
547 * Return: Returns 0 on success or an error code on failure.
548 */
549int tb_port_add_nfc_credits(struct tb_port *port, int credits)
550{
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300551 u32 nfc_credits;
552
553 if (credits == 0 || port->sw->is_unplugged)
Andreas Noever520b6702014-06-03 22:04:07 +0200554 return 0;
Mika Westerbergc5ee6fe2018-10-11 11:38:22 +0300555
556 nfc_credits = port->config.nfc_credits & TB_PORT_NFC_CREDITS_MASK;
557 nfc_credits += credits;
558
559 tb_port_dbg(port, "adding %d NFC credits to %lu",
560 credits, port->config.nfc_credits & TB_PORT_NFC_CREDITS_MASK);
561
562 port->config.nfc_credits &= ~TB_PORT_NFC_CREDITS_MASK;
563 port->config.nfc_credits |= nfc_credits;
564
Andreas Noever520b6702014-06-03 22:04:07 +0200565 return tb_port_write(port, &port->config.nfc_credits,
566 TB_CFG_PORT, 4, 1);
567}
568
569/**
Mika Westerberg44242d62018-09-28 16:35:32 +0300570 * tb_port_set_initial_credits() - Set initial port link credits allocated
571 * @port: Port to set the initial credits
572 * @credits: Number of credits to to allocate
573 *
574 * Set initial credits value to be used for ingress shared buffering.
575 */
576int tb_port_set_initial_credits(struct tb_port *port, u32 credits)
577{
578 u32 data;
579 int ret;
580
581 ret = tb_port_read(port, &data, TB_CFG_PORT, 5, 1);
582 if (ret)
583 return ret;
584
585 data &= ~TB_PORT_LCA_MASK;
586 data |= (credits << TB_PORT_LCA_SHIFT) & TB_PORT_LCA_MASK;
587
588 return tb_port_write(port, &data, TB_CFG_PORT, 5, 1);
589}
590
591/**
Andreas Noever520b6702014-06-03 22:04:07 +0200592 * tb_port_clear_counter() - clear a counter in TB_CFG_COUNTER
593 *
594 * Return: Returns 0 on success or an error code on failure.
595 */
596int tb_port_clear_counter(struct tb_port *port, int counter)
597{
598 u32 zero[3] = { 0, 0, 0 };
Mika Westerberg62efe692018-09-17 16:32:13 +0300599 tb_port_dbg(port, "clearing counter %d\n", counter);
Andreas Noever520b6702014-06-03 22:04:07 +0200600 return tb_port_write(port, zero, TB_CFG_COUNTERS, 3 * counter, 3);
601}
602
603/**
Andreas Noevera25c8b22014-06-03 22:04:02 +0200604 * tb_init_port() - initialize a port
605 *
606 * This is a helper method for tb_switch_alloc. Does not check or initialize
607 * any downstream switches.
608 *
609 * Return: Returns 0 on success or an error code on failure.
610 */
Andreas Noever343fcb82014-06-12 23:11:47 +0200611static int tb_init_port(struct tb_port *port)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200612{
613 int res;
Andreas Noever9da672a2014-06-03 22:04:05 +0200614 int cap;
Andreas Noever343fcb82014-06-12 23:11:47 +0200615
Andreas Noevera25c8b22014-06-03 22:04:02 +0200616 res = tb_port_read(port, &port->config, TB_CFG_PORT, 0, 8);
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300617 if (res) {
618 if (res == -ENODEV) {
619 tb_dbg(port->sw->tb, " Port %d: not implemented\n",
620 port->port);
621 return 0;
622 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200623 return res;
Mika Westerbergd94dcbb2018-07-04 08:50:01 +0300624 }
Andreas Noevera25c8b22014-06-03 22:04:02 +0200625
Andreas Noever9da672a2014-06-03 22:04:05 +0200626 /* Port 0 is the switch itself and has no PHY. */
Andreas Noever343fcb82014-06-12 23:11:47 +0200627 if (port->config.type == TB_TYPE_PORT && port->port != 0) {
Mika Westerbergda2da042017-06-06 15:24:58 +0300628 cap = tb_port_find_cap(port, TB_PORT_CAP_PHY);
Andreas Noever9da672a2014-06-03 22:04:05 +0200629
630 if (cap > 0)
631 port->cap_phy = cap;
632 else
633 tb_port_WARN(port, "non switch port without a PHY\n");
Mika Westerberg56183c82017-02-19 10:39:34 +0200634 } else if (port->port != 0) {
635 cap = tb_port_find_cap(port, TB_PORT_CAP_ADAP);
636 if (cap > 0)
637 port->cap_adap = cap;
Andreas Noever9da672a2014-06-03 22:04:05 +0200638 }
639
Andreas Noever343fcb82014-06-12 23:11:47 +0200640 tb_dump_port(port->sw->tb, &port->config);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200641
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200642 /* Control port does not need HopID allocation */
643 if (port->port) {
644 ida_init(&port->in_hopids);
645 ida_init(&port->out_hopids);
646 }
647
Andreas Noevera25c8b22014-06-03 22:04:02 +0200648 return 0;
649
650}
651
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200652static int tb_port_alloc_hopid(struct tb_port *port, bool in, int min_hopid,
653 int max_hopid)
654{
655 int port_max_hopid;
656 struct ida *ida;
657
658 if (in) {
659 port_max_hopid = port->config.max_in_hop_id;
660 ida = &port->in_hopids;
661 } else {
662 port_max_hopid = port->config.max_out_hop_id;
663 ida = &port->out_hopids;
664 }
665
666 /* HopIDs 0-7 are reserved */
667 if (min_hopid < TB_PATH_MIN_HOPID)
668 min_hopid = TB_PATH_MIN_HOPID;
669
670 if (max_hopid < 0 || max_hopid > port_max_hopid)
671 max_hopid = port_max_hopid;
672
673 return ida_simple_get(ida, min_hopid, max_hopid + 1, GFP_KERNEL);
674}
675
676/**
677 * tb_port_alloc_in_hopid() - Allocate input HopID from port
678 * @port: Port to allocate HopID for
679 * @min_hopid: Minimum acceptable input HopID
680 * @max_hopid: Maximum acceptable input HopID
681 *
682 * Return: HopID between @min_hopid and @max_hopid or negative errno in
683 * case of error.
684 */
685int tb_port_alloc_in_hopid(struct tb_port *port, int min_hopid, int max_hopid)
686{
687 return tb_port_alloc_hopid(port, true, min_hopid, max_hopid);
688}
689
690/**
691 * tb_port_alloc_out_hopid() - Allocate output HopID from port
692 * @port: Port to allocate HopID for
693 * @min_hopid: Minimum acceptable output HopID
694 * @max_hopid: Maximum acceptable output HopID
695 *
696 * Return: HopID between @min_hopid and @max_hopid or negative errno in
697 * case of error.
698 */
699int tb_port_alloc_out_hopid(struct tb_port *port, int min_hopid, int max_hopid)
700{
701 return tb_port_alloc_hopid(port, false, min_hopid, max_hopid);
702}
703
704/**
705 * tb_port_release_in_hopid() - Release allocated input HopID from port
706 * @port: Port whose HopID to release
707 * @hopid: HopID to release
708 */
709void tb_port_release_in_hopid(struct tb_port *port, int hopid)
710{
711 ida_simple_remove(&port->in_hopids, hopid);
712}
713
714/**
715 * tb_port_release_out_hopid() - Release allocated output HopID from port
716 * @port: Port whose HopID to release
717 * @hopid: HopID to release
718 */
719void tb_port_release_out_hopid(struct tb_port *port, int hopid)
720{
721 ida_simple_remove(&port->out_hopids, hopid);
722}
723
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200724/**
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200725 * tb_next_port_on_path() - Return next port for given port on a path
726 * @start: Start port of the walk
727 * @end: End port of the walk
728 * @prev: Previous port (%NULL if this is the first)
729 *
730 * This function can be used to walk from one port to another if they
731 * are connected through zero or more switches. If the @prev is dual
732 * link port, the function follows that link and returns another end on
733 * that same link.
734 *
735 * If the @end port has been reached, return %NULL.
736 *
737 * Domain tb->lock must be held when this function is called.
738 */
739struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
740 struct tb_port *prev)
741{
742 struct tb_port *next;
743
744 if (!prev)
745 return start;
746
747 if (prev->sw == end->sw) {
748 if (prev == end)
749 return NULL;
750 return end;
751 }
752
753 if (start->sw->config.depth < end->sw->config.depth) {
754 if (prev->remote &&
755 prev->remote->sw->config.depth > prev->sw->config.depth)
756 next = prev->remote;
757 else
758 next = tb_port_at(tb_route(end->sw), prev->sw);
759 } else {
760 if (tb_is_upstream_port(prev)) {
761 next = prev->remote;
762 } else {
763 next = tb_upstream_port(prev->sw);
764 /*
765 * Keep the same link if prev and next are both
766 * dual link ports.
767 */
768 if (next->dual_link_port &&
769 next->link_nr != prev->link_nr) {
770 next = next->dual_link_port;
771 }
772 }
773 }
774
775 return next;
776}
777
778/**
Mika Westerberge78db6f2017-10-12 16:45:50 +0300779 * tb_port_is_enabled() - Is the adapter port enabled
780 * @port: Port to check
781 */
782bool tb_port_is_enabled(struct tb_port *port)
783{
784 switch (port->config.type) {
785 case TB_TYPE_PCIE_UP:
786 case TB_TYPE_PCIE_DOWN:
787 return tb_pci_port_is_enabled(port);
788
Mika Westerberg4f807e42018-09-17 16:30:49 +0300789 case TB_TYPE_DP_HDMI_IN:
790 case TB_TYPE_DP_HDMI_OUT:
791 return tb_dp_port_is_enabled(port);
792
Mika Westerberge78db6f2017-10-12 16:45:50 +0300793 default:
794 return false;
795 }
796}
797
798/**
Mika Westerberg0414bec2017-02-19 23:43:26 +0200799 * tb_pci_port_is_enabled() - Is the PCIe adapter port enabled
800 * @port: PCIe port to check
801 */
802bool tb_pci_port_is_enabled(struct tb_port *port)
803{
804 u32 data;
805
806 if (tb_port_read(port, &data, TB_CFG_PORT, port->cap_adap, 1))
807 return false;
808
809 return !!(data & TB_PCI_EN);
810}
811
812/**
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200813 * tb_pci_port_enable() - Enable PCIe adapter port
814 * @port: PCIe port to enable
815 * @enable: Enable/disable the PCIe adapter
816 */
817int tb_pci_port_enable(struct tb_port *port, bool enable)
818{
819 u32 word = enable ? TB_PCI_EN : 0x0;
820 if (!port->cap_adap)
821 return -ENXIO;
822 return tb_port_write(port, &word, TB_CFG_PORT, port->cap_adap, 1);
823}
824
Mika Westerberg4f807e42018-09-17 16:30:49 +0300825/**
826 * tb_dp_port_hpd_is_active() - Is HPD already active
827 * @port: DP out port to check
828 *
829 * Checks if the DP OUT adapter port has HDP bit already set.
830 */
831int tb_dp_port_hpd_is_active(struct tb_port *port)
832{
833 u32 data;
834 int ret;
835
836 ret = tb_port_read(port, &data, TB_CFG_PORT, port->cap_adap + 2, 1);
837 if (ret)
838 return ret;
839
840 return !!(data & TB_DP_HDP);
841}
842
843/**
844 * tb_dp_port_hpd_clear() - Clear HPD from DP IN port
845 * @port: Port to clear HPD
846 *
847 * If the DP IN port has HDP set, this function can be used to clear it.
848 */
849int tb_dp_port_hpd_clear(struct tb_port *port)
850{
851 u32 data;
852 int ret;
853
854 ret = tb_port_read(port, &data, TB_CFG_PORT, port->cap_adap + 3, 1);
855 if (ret)
856 return ret;
857
858 data |= TB_DP_HPDC;
859 return tb_port_write(port, &data, TB_CFG_PORT, port->cap_adap + 3, 1);
860}
861
862/**
863 * tb_dp_port_set_hops() - Set video/aux Hop IDs for DP port
864 * @port: DP IN/OUT port to set hops
865 * @video: Video Hop ID
866 * @aux_tx: AUX TX Hop ID
867 * @aux_rx: AUX RX Hop ID
868 *
869 * Programs specified Hop IDs for DP IN/OUT port.
870 */
871int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
872 unsigned int aux_tx, unsigned int aux_rx)
873{
874 u32 data[2];
875 int ret;
876
877 ret = tb_port_read(port, data, TB_CFG_PORT, port->cap_adap,
878 ARRAY_SIZE(data));
879 if (ret)
880 return ret;
881
882 data[0] &= ~TB_DP_VIDEO_HOPID_MASK;
883 data[1] &= ~(TB_DP_AUX_RX_HOPID_MASK | TB_DP_AUX_TX_HOPID_MASK);
884
885 data[0] |= (video << TB_DP_VIDEO_HOPID_SHIFT) & TB_DP_VIDEO_HOPID_MASK;
886 data[1] |= aux_tx & TB_DP_AUX_TX_HOPID_MASK;
887 data[1] |= (aux_rx << TB_DP_AUX_RX_HOPID_SHIFT) & TB_DP_AUX_RX_HOPID_MASK;
888
889 return tb_port_write(port, data, TB_CFG_PORT, port->cap_adap,
890 ARRAY_SIZE(data));
891}
892
893/**
894 * tb_dp_port_is_enabled() - Is DP adapter port enabled
895 * @port: DP adapter port to check
896 */
897bool tb_dp_port_is_enabled(struct tb_port *port)
898{
899 u32 data;
900
901 if (tb_port_read(port, &data, TB_CFG_PORT, port->cap_adap, 1))
902 return false;
903
904 return !!(data & (TB_DP_VIDEO_EN | TB_DP_AUX_EN));
905}
906
907/**
908 * tb_dp_port_enable() - Enables/disables DP paths of a port
909 * @port: DP IN/OUT port
910 * @enable: Enable/disable DP path
911 *
912 * Once Hop IDs are programmed DP paths can be enabled or disabled by
913 * calling this function.
914 */
915int tb_dp_port_enable(struct tb_port *port, bool enable)
916{
917 u32 data;
918 int ret;
919
920 ret = tb_port_read(port, &data, TB_CFG_PORT, port->cap_adap, 1);
921 if (ret)
922 return ret;
923
924 if (enable)
925 data |= TB_DP_VIDEO_EN | TB_DP_AUX_EN;
926 else
927 data &= ~(TB_DP_VIDEO_EN | TB_DP_AUX_EN);
928
929 return tb_port_write(port, &data, TB_CFG_PORT, port->cap_adap, 1);
930}
931
Andreas Noevera25c8b22014-06-03 22:04:02 +0200932/* switch utility functions */
933
934static void tb_dump_switch(struct tb *tb, struct tb_regs_switch_header *sw)
935{
Mika Westerbergdaa51402018-10-01 12:31:19 +0300936 tb_dbg(tb, " Switch: %x:%x (Revision: %d, TB Version: %d)\n",
937 sw->vendor_id, sw->device_id, sw->revision,
938 sw->thunderbolt_version);
939 tb_dbg(tb, " Max Port Number: %d\n", sw->max_port_number);
940 tb_dbg(tb, " Config:\n");
941 tb_dbg(tb,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200942 " Upstream Port Number: %d Depth: %d Route String: %#llx Enabled: %d, PlugEventsDelay: %dms\n",
Mika Westerbergdaa51402018-10-01 12:31:19 +0300943 sw->upstream_port_number, sw->depth,
944 (((u64) sw->route_hi) << 32) | sw->route_lo,
945 sw->enabled, sw->plug_events_delay);
946 tb_dbg(tb, " unknown1: %#x unknown4: %#x\n",
947 sw->__unknown1, sw->__unknown4);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200948}
949
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200950/**
951 * reset_switch() - reconfigure route, enable and send TB_CFG_PKG_RESET
952 *
953 * Return: Returns 0 on success or an error code on failure.
954 */
955int tb_switch_reset(struct tb *tb, u64 route)
956{
957 struct tb_cfg_result res;
958 struct tb_regs_switch_header header = {
959 header.route_hi = route >> 32,
960 header.route_lo = route,
961 header.enabled = true,
962 };
Mika Westerbergdaa51402018-10-01 12:31:19 +0300963 tb_dbg(tb, "resetting switch at %llx\n", route);
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200964 res.err = tb_cfg_write(tb->ctl, ((u32 *) &header) + 2, route,
965 0, 2, 2, 2);
966 if (res.err)
967 return res.err;
968 res = tb_cfg_reset(tb->ctl, route, TB_CFG_DEFAULT_TIMEOUT);
969 if (res.err > 0)
970 return -EIO;
971 return res.err;
972}
973
Andreas Noevera25c8b22014-06-03 22:04:02 +0200974/**
Andreas Noeverca389f72014-06-03 22:04:04 +0200975 * tb_plug_events_active() - enable/disable plug events on a switch
976 *
977 * Also configures a sane plug_events_delay of 255ms.
978 *
979 * Return: Returns 0 on success or an error code on failure.
980 */
981static int tb_plug_events_active(struct tb_switch *sw, bool active)
982{
983 u32 data;
984 int res;
985
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300986 if (!sw->config.enabled)
987 return 0;
988
Andreas Noeverca389f72014-06-03 22:04:04 +0200989 sw->config.plug_events_delay = 0xff;
990 res = tb_sw_write(sw, ((u32 *) &sw->config) + 4, TB_CFG_SWITCH, 4, 1);
991 if (res)
992 return res;
993
994 res = tb_sw_read(sw, &data, TB_CFG_SWITCH, sw->cap_plug_events + 1, 1);
995 if (res)
996 return res;
997
998 if (active) {
999 data = data & 0xFFFFFF83;
1000 switch (sw->config.device_id) {
Lukas Wunner1d111402016-03-20 13:57:20 +01001001 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1002 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1003 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
Andreas Noeverca389f72014-06-03 22:04:04 +02001004 break;
1005 default:
1006 data |= 4;
1007 }
1008 } else {
1009 data = data | 0x7c;
1010 }
1011 return tb_sw_write(sw, &data, TB_CFG_SWITCH,
1012 sw->cap_plug_events + 1, 1);
1013}
1014
Mika Westerbergf67cf492017-06-06 15:25:16 +03001015static ssize_t authorized_show(struct device *dev,
1016 struct device_attribute *attr,
1017 char *buf)
1018{
1019 struct tb_switch *sw = tb_to_switch(dev);
1020
1021 return sprintf(buf, "%u\n", sw->authorized);
1022}
1023
1024static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val)
1025{
1026 int ret = -EINVAL;
1027
Mika Westerberg09f11b62019-03-19 16:48:41 +02001028 if (!mutex_trylock(&sw->tb->lock))
1029 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001030
1031 if (sw->authorized)
1032 goto unlock;
1033
Mika Westerberga03e8282018-01-18 20:27:47 +03001034 /*
1035 * Make sure there is no PCIe rescan ongoing when a new PCIe
1036 * tunnel is created. Otherwise the PCIe rescan code might find
1037 * the new tunnel too early.
1038 */
1039 pci_lock_rescan_remove();
1040
Mika Westerbergf67cf492017-06-06 15:25:16 +03001041 switch (val) {
1042 /* Approve switch */
1043 case 1:
1044 if (sw->key)
1045 ret = tb_domain_approve_switch_key(sw->tb, sw);
1046 else
1047 ret = tb_domain_approve_switch(sw->tb, sw);
1048 break;
1049
1050 /* Challenge switch */
1051 case 2:
1052 if (sw->key)
1053 ret = tb_domain_challenge_switch_key(sw->tb, sw);
1054 break;
1055
1056 default:
1057 break;
1058 }
1059
Mika Westerberga03e8282018-01-18 20:27:47 +03001060 pci_unlock_rescan_remove();
1061
Mika Westerbergf67cf492017-06-06 15:25:16 +03001062 if (!ret) {
1063 sw->authorized = val;
1064 /* Notify status change to the userspace */
1065 kobject_uevent(&sw->dev.kobj, KOBJ_CHANGE);
1066 }
1067
1068unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001069 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001070 return ret;
1071}
1072
1073static ssize_t authorized_store(struct device *dev,
1074 struct device_attribute *attr,
1075 const char *buf, size_t count)
1076{
1077 struct tb_switch *sw = tb_to_switch(dev);
1078 unsigned int val;
1079 ssize_t ret;
1080
1081 ret = kstrtouint(buf, 0, &val);
1082 if (ret)
1083 return ret;
1084 if (val > 2)
1085 return -EINVAL;
1086
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001087 pm_runtime_get_sync(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001088 ret = tb_switch_set_authorized(sw, val);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001089 pm_runtime_mark_last_busy(&sw->dev);
1090 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001091
1092 return ret ? ret : count;
1093}
1094static DEVICE_ATTR_RW(authorized);
1095
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001096static ssize_t boot_show(struct device *dev, struct device_attribute *attr,
1097 char *buf)
1098{
1099 struct tb_switch *sw = tb_to_switch(dev);
1100
1101 return sprintf(buf, "%u\n", sw->boot);
1102}
1103static DEVICE_ATTR_RO(boot);
1104
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001105static ssize_t device_show(struct device *dev, struct device_attribute *attr,
1106 char *buf)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001107{
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001108 struct tb_switch *sw = tb_to_switch(dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001109
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001110 return sprintf(buf, "%#x\n", sw->device);
1111}
1112static DEVICE_ATTR_RO(device);
Andreas Noeverca389f72014-06-03 22:04:04 +02001113
Mika Westerberg72ee3392017-06-06 15:25:05 +03001114static ssize_t
1115device_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1116{
1117 struct tb_switch *sw = tb_to_switch(dev);
1118
1119 return sprintf(buf, "%s\n", sw->device_name ? sw->device_name : "");
1120}
1121static DEVICE_ATTR_RO(device_name);
1122
Christian Kellnerb4063572019-10-03 19:32:40 +02001123static ssize_t
1124generation_show(struct device *dev, struct device_attribute *attr, char *buf)
1125{
1126 struct tb_switch *sw = tb_to_switch(dev);
1127
1128 return sprintf(buf, "%u\n", sw->generation);
1129}
1130static DEVICE_ATTR_RO(generation);
1131
Mika Westerbergf67cf492017-06-06 15:25:16 +03001132static ssize_t key_show(struct device *dev, struct device_attribute *attr,
1133 char *buf)
1134{
1135 struct tb_switch *sw = tb_to_switch(dev);
1136 ssize_t ret;
1137
Mika Westerberg09f11b62019-03-19 16:48:41 +02001138 if (!mutex_trylock(&sw->tb->lock))
1139 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001140
1141 if (sw->key)
1142 ret = sprintf(buf, "%*phN\n", TB_SWITCH_KEY_SIZE, sw->key);
1143 else
1144 ret = sprintf(buf, "\n");
1145
Mika Westerberg09f11b62019-03-19 16:48:41 +02001146 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001147 return ret;
1148}
1149
1150static ssize_t key_store(struct device *dev, struct device_attribute *attr,
1151 const char *buf, size_t count)
1152{
1153 struct tb_switch *sw = tb_to_switch(dev);
1154 u8 key[TB_SWITCH_KEY_SIZE];
1155 ssize_t ret = count;
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001156 bool clear = false;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001157
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001158 if (!strcmp(buf, "\n"))
1159 clear = true;
1160 else if (hex2bin(key, buf, sizeof(key)))
Mika Westerbergf67cf492017-06-06 15:25:16 +03001161 return -EINVAL;
1162
Mika Westerberg09f11b62019-03-19 16:48:41 +02001163 if (!mutex_trylock(&sw->tb->lock))
1164 return restart_syscall();
Mika Westerbergf67cf492017-06-06 15:25:16 +03001165
1166 if (sw->authorized) {
1167 ret = -EBUSY;
1168 } else {
1169 kfree(sw->key);
Bernat, Yehezkele545f0d2017-08-15 08:19:20 +03001170 if (clear) {
1171 sw->key = NULL;
1172 } else {
1173 sw->key = kmemdup(key, sizeof(key), GFP_KERNEL);
1174 if (!sw->key)
1175 ret = -ENOMEM;
1176 }
Mika Westerbergf67cf492017-06-06 15:25:16 +03001177 }
1178
Mika Westerberg09f11b62019-03-19 16:48:41 +02001179 mutex_unlock(&sw->tb->lock);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001180 return ret;
1181}
Bernat, Yehezkel0956e412017-08-15 08:19:12 +03001182static DEVICE_ATTR(key, 0600, key_show, key_store);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001183
Mika Westerberg1830b6e2018-11-26 12:47:46 +03001184static void nvm_authenticate_start(struct tb_switch *sw)
1185{
1186 struct pci_dev *root_port;
1187
1188 /*
1189 * During host router NVM upgrade we should not allow root port to
1190 * go into D3cold because some root ports cannot trigger PME
1191 * itself. To be on the safe side keep the root port in D0 during
1192 * the whole upgrade process.
1193 */
1194 root_port = pci_find_pcie_root_port(sw->tb->nhi->pdev);
1195 if (root_port)
1196 pm_runtime_get_noresume(&root_port->dev);
1197}
1198
1199static void nvm_authenticate_complete(struct tb_switch *sw)
1200{
1201 struct pci_dev *root_port;
1202
1203 root_port = pci_find_pcie_root_port(sw->tb->nhi->pdev);
1204 if (root_port)
1205 pm_runtime_put(&root_port->dev);
1206}
1207
Mika Westerberge6b245c2017-06-06 15:25:17 +03001208static ssize_t nvm_authenticate_show(struct device *dev,
1209 struct device_attribute *attr, char *buf)
1210{
1211 struct tb_switch *sw = tb_to_switch(dev);
1212 u32 status;
1213
1214 nvm_get_auth_status(sw, &status);
1215 return sprintf(buf, "%#x\n", status);
1216}
1217
1218static ssize_t nvm_authenticate_store(struct device *dev,
1219 struct device_attribute *attr, const char *buf, size_t count)
1220{
1221 struct tb_switch *sw = tb_to_switch(dev);
1222 bool val;
1223 int ret;
1224
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001225 pm_runtime_get_sync(&sw->dev);
1226
1227 if (!mutex_trylock(&sw->tb->lock)) {
1228 ret = restart_syscall();
1229 goto exit_rpm;
1230 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001231
1232 /* If NVMem devices are not yet added */
1233 if (!sw->nvm) {
1234 ret = -EAGAIN;
1235 goto exit_unlock;
1236 }
1237
1238 ret = kstrtobool(buf, &val);
1239 if (ret)
1240 goto exit_unlock;
1241
1242 /* Always clear the authentication status */
1243 nvm_clear_auth_status(sw);
1244
1245 if (val) {
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001246 if (!sw->nvm->buf) {
1247 ret = -EINVAL;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001248 goto exit_unlock;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001249 }
1250
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001251 ret = nvm_validate_and_write(sw);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001252 if (ret)
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001253 goto exit_unlock;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001254
1255 sw->nvm->authenticating = true;
1256
Mika Westerberg1830b6e2018-11-26 12:47:46 +03001257 if (!tb_route(sw)) {
1258 /*
1259 * Keep root port from suspending as long as the
1260 * NVM upgrade process is running.
1261 */
1262 nvm_authenticate_start(sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001263 ret = nvm_authenticate_host(sw);
Mika Westerberg1830b6e2018-11-26 12:47:46 +03001264 if (ret)
1265 nvm_authenticate_complete(sw);
1266 } else {
Mika Westerberge6b245c2017-06-06 15:25:17 +03001267 ret = nvm_authenticate_device(sw);
Mika Westerberg1830b6e2018-11-26 12:47:46 +03001268 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001269 }
1270
1271exit_unlock:
Mika Westerberg09f11b62019-03-19 16:48:41 +02001272 mutex_unlock(&sw->tb->lock);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001273exit_rpm:
1274 pm_runtime_mark_last_busy(&sw->dev);
1275 pm_runtime_put_autosuspend(&sw->dev);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001276
1277 if (ret)
1278 return ret;
1279 return count;
1280}
1281static DEVICE_ATTR_RW(nvm_authenticate);
1282
1283static ssize_t nvm_version_show(struct device *dev,
1284 struct device_attribute *attr, char *buf)
1285{
1286 struct tb_switch *sw = tb_to_switch(dev);
1287 int ret;
1288
Mika Westerberg09f11b62019-03-19 16:48:41 +02001289 if (!mutex_trylock(&sw->tb->lock))
1290 return restart_syscall();
Mika Westerberge6b245c2017-06-06 15:25:17 +03001291
1292 if (sw->safe_mode)
1293 ret = -ENODATA;
1294 else if (!sw->nvm)
1295 ret = -EAGAIN;
1296 else
1297 ret = sprintf(buf, "%x.%x\n", sw->nvm->major, sw->nvm->minor);
1298
Mika Westerberg09f11b62019-03-19 16:48:41 +02001299 mutex_unlock(&sw->tb->lock);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001300
1301 return ret;
1302}
1303static DEVICE_ATTR_RO(nvm_version);
1304
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001305static ssize_t vendor_show(struct device *dev, struct device_attribute *attr,
1306 char *buf)
1307{
1308 struct tb_switch *sw = tb_to_switch(dev);
1309
1310 return sprintf(buf, "%#x\n", sw->vendor);
1311}
1312static DEVICE_ATTR_RO(vendor);
1313
Mika Westerberg72ee3392017-06-06 15:25:05 +03001314static ssize_t
1315vendor_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1316{
1317 struct tb_switch *sw = tb_to_switch(dev);
1318
1319 return sprintf(buf, "%s\n", sw->vendor_name ? sw->vendor_name : "");
1320}
1321static DEVICE_ATTR_RO(vendor_name);
1322
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001323static ssize_t unique_id_show(struct device *dev, struct device_attribute *attr,
1324 char *buf)
1325{
1326 struct tb_switch *sw = tb_to_switch(dev);
1327
1328 return sprintf(buf, "%pUb\n", sw->uuid);
1329}
1330static DEVICE_ATTR_RO(unique_id);
1331
1332static struct attribute *switch_attrs[] = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001333 &dev_attr_authorized.attr,
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001334 &dev_attr_boot.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001335 &dev_attr_device.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001336 &dev_attr_device_name.attr,
Christian Kellnerb4063572019-10-03 19:32:40 +02001337 &dev_attr_generation.attr,
Mika Westerbergf67cf492017-06-06 15:25:16 +03001338 &dev_attr_key.attr,
Mika Westerberge6b245c2017-06-06 15:25:17 +03001339 &dev_attr_nvm_authenticate.attr,
1340 &dev_attr_nvm_version.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001341 &dev_attr_vendor.attr,
Mika Westerberg72ee3392017-06-06 15:25:05 +03001342 &dev_attr_vendor_name.attr,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001343 &dev_attr_unique_id.attr,
1344 NULL,
1345};
1346
Mika Westerbergf67cf492017-06-06 15:25:16 +03001347static umode_t switch_attr_is_visible(struct kobject *kobj,
1348 struct attribute *attr, int n)
1349{
1350 struct device *dev = container_of(kobj, struct device, kobj);
1351 struct tb_switch *sw = tb_to_switch(dev);
1352
Mika Westerberg58f414f2018-09-11 15:34:23 +03001353 if (attr == &dev_attr_device.attr) {
1354 if (!sw->device)
1355 return 0;
1356 } else if (attr == &dev_attr_device_name.attr) {
1357 if (!sw->device_name)
1358 return 0;
1359 } else if (attr == &dev_attr_vendor.attr) {
1360 if (!sw->vendor)
1361 return 0;
1362 } else if (attr == &dev_attr_vendor_name.attr) {
1363 if (!sw->vendor_name)
1364 return 0;
1365 } else if (attr == &dev_attr_key.attr) {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001366 if (tb_route(sw) &&
1367 sw->tb->security_level == TB_SECURITY_SECURE &&
1368 sw->security_level == TB_SECURITY_SECURE)
1369 return attr->mode;
1370 return 0;
Mika Westerberg3f415e52019-02-05 12:51:40 +03001371 } else if (attr == &dev_attr_nvm_authenticate.attr) {
1372 if (sw->dma_port && !sw->no_nvm_upgrade)
1373 return attr->mode;
1374 return 0;
1375 } else if (attr == &dev_attr_nvm_version.attr) {
Mika Westerberge6b245c2017-06-06 15:25:17 +03001376 if (sw->dma_port)
1377 return attr->mode;
1378 return 0;
Yehezkel Bernat14862ee2018-01-22 12:50:09 +02001379 } else if (attr == &dev_attr_boot.attr) {
1380 if (tb_route(sw))
1381 return attr->mode;
1382 return 0;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001383 }
1384
Mika Westerberge6b245c2017-06-06 15:25:17 +03001385 return sw->safe_mode ? 0 : attr->mode;
Mika Westerbergf67cf492017-06-06 15:25:16 +03001386}
1387
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001388static struct attribute_group switch_group = {
Mika Westerbergf67cf492017-06-06 15:25:16 +03001389 .is_visible = switch_attr_is_visible,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001390 .attrs = switch_attrs,
1391};
1392
1393static const struct attribute_group *switch_groups[] = {
1394 &switch_group,
1395 NULL,
1396};
1397
1398static void tb_switch_release(struct device *dev)
1399{
1400 struct tb_switch *sw = tb_to_switch(dev);
Mika Westerberg0b2863a2017-02-19 16:57:27 +02001401 int i;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001402
Mika Westerberg3e136762017-06-06 15:25:14 +03001403 dma_port_free(sw->dma_port);
1404
Mika Westerberg0b2863a2017-02-19 16:57:27 +02001405 for (i = 1; i <= sw->config.max_port_number; i++) {
1406 if (!sw->ports[i].disabled) {
1407 ida_destroy(&sw->ports[i].in_hopids);
1408 ida_destroy(&sw->ports[i].out_hopids);
1409 }
1410 }
1411
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001412 kfree(sw->uuid);
Mika Westerberg72ee3392017-06-06 15:25:05 +03001413 kfree(sw->device_name);
1414 kfree(sw->vendor_name);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001415 kfree(sw->ports);
Andreas Noever343fcb82014-06-12 23:11:47 +02001416 kfree(sw->drom);
Mika Westerbergf67cf492017-06-06 15:25:16 +03001417 kfree(sw->key);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001418 kfree(sw);
1419}
1420
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001421/*
1422 * Currently only need to provide the callbacks. Everything else is handled
1423 * in the connection manager.
1424 */
1425static int __maybe_unused tb_switch_runtime_suspend(struct device *dev)
1426{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001427 struct tb_switch *sw = tb_to_switch(dev);
1428 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1429
1430 if (cm_ops->runtime_suspend_switch)
1431 return cm_ops->runtime_suspend_switch(sw);
1432
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001433 return 0;
1434}
1435
1436static int __maybe_unused tb_switch_runtime_resume(struct device *dev)
1437{
Mika Westerberg4f7c2e02019-05-28 18:56:20 +03001438 struct tb_switch *sw = tb_to_switch(dev);
1439 const struct tb_cm_ops *cm_ops = sw->tb->cm_ops;
1440
1441 if (cm_ops->runtime_resume_switch)
1442 return cm_ops->runtime_resume_switch(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001443 return 0;
1444}
1445
1446static const struct dev_pm_ops tb_switch_pm_ops = {
1447 SET_RUNTIME_PM_OPS(tb_switch_runtime_suspend, tb_switch_runtime_resume,
1448 NULL)
1449};
1450
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001451struct device_type tb_switch_type = {
1452 .name = "thunderbolt_device",
1453 .release = tb_switch_release,
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001454 .pm = &tb_switch_pm_ops,
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001455};
1456
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001457static int tb_switch_get_generation(struct tb_switch *sw)
1458{
1459 switch (sw->config.device_id) {
1460 case PCI_DEVICE_ID_INTEL_LIGHT_RIDGE:
1461 case PCI_DEVICE_ID_INTEL_EAGLE_RIDGE:
1462 case PCI_DEVICE_ID_INTEL_LIGHT_PEAK:
1463 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
1464 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
1465 case PCI_DEVICE_ID_INTEL_PORT_RIDGE:
1466 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_2C_BRIDGE:
1467 case PCI_DEVICE_ID_INTEL_REDWOOD_RIDGE_4C_BRIDGE:
1468 return 1;
1469
1470 case PCI_DEVICE_ID_INTEL_WIN_RIDGE_2C_BRIDGE:
1471 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
1472 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
1473 return 2;
1474
1475 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
1476 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
1477 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_BRIDGE:
1478 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
1479 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
Radion Mirchevsky4bac4712017-10-04 16:43:43 +03001480 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
1481 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
1482 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
Mika Westerberg3cdb9442018-01-16 22:19:00 +02001483 case PCI_DEVICE_ID_INTEL_ICL_NHI0:
1484 case PCI_DEVICE_ID_INTEL_ICL_NHI1:
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001485 return 3;
1486
1487 default:
1488 /*
1489 * For unknown switches assume generation to be 1 to be
1490 * on the safe side.
1491 */
1492 tb_sw_warn(sw, "unsupported switch device id %#x\n",
1493 sw->config.device_id);
1494 return 1;
1495 }
1496}
1497
Andreas Noevera25c8b22014-06-03 22:04:02 +02001498/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001499 * tb_switch_alloc() - allocate a switch
1500 * @tb: Pointer to the owning domain
1501 * @parent: Parent device for this switch
1502 * @route: Route string for this switch
Andreas Noevera25c8b22014-06-03 22:04:02 +02001503 *
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001504 * Allocates and initializes a switch. Will not upload configuration to
1505 * the switch. For that you need to call tb_switch_configure()
1506 * separately. The returned switch should be released by calling
1507 * tb_switch_put().
1508 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001509 * Return: Pointer to the allocated switch or ERR_PTR() in case of
1510 * failure.
Andreas Noevera25c8b22014-06-03 22:04:02 +02001511 */
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001512struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
1513 u64 route)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001514{
Andreas Noevera25c8b22014-06-03 22:04:02 +02001515 struct tb_switch *sw;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001516 int upstream_port;
Mika Westerberg444ac382018-12-30 12:17:52 +02001517 int i, ret, depth;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001518
1519 /* Make sure we do not exceed maximum topology limit */
1520 depth = tb_route_length(route);
1521 if (depth > TB_SWITCH_MAX_DEPTH)
Mika Westerberg444ac382018-12-30 12:17:52 +02001522 return ERR_PTR(-EADDRNOTAVAIL);
Mika Westerbergf0342e72018-12-30 12:14:46 +02001523
1524 upstream_port = tb_cfg_get_upstream_port(tb->ctl, route);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001525 if (upstream_port < 0)
Mika Westerberg444ac382018-12-30 12:17:52 +02001526 return ERR_PTR(upstream_port);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001527
1528 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1529 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02001530 return ERR_PTR(-ENOMEM);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001531
1532 sw->tb = tb;
Mika Westerberg444ac382018-12-30 12:17:52 +02001533 ret = tb_cfg_read(tb->ctl, &sw->config, route, 0, TB_CFG_SWITCH, 0, 5);
1534 if (ret)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001535 goto err_free_sw_ports;
1536
Mika Westerbergdaa51402018-10-01 12:31:19 +03001537 tb_dbg(tb, "current switch config:\n");
Andreas Noevera25c8b22014-06-03 22:04:02 +02001538 tb_dump_switch(tb, &sw->config);
1539
1540 /* configure switch */
1541 sw->config.upstream_port_number = upstream_port;
Mika Westerbergf0342e72018-12-30 12:14:46 +02001542 sw->config.depth = depth;
1543 sw->config.route_hi = upper_32_bits(route);
1544 sw->config.route_lo = lower_32_bits(route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001545 sw->config.enabled = 0;
Andreas Noevera25c8b22014-06-03 22:04:02 +02001546
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001547 /* initialize ports */
1548 sw->ports = kcalloc(sw->config.max_port_number + 1, sizeof(*sw->ports),
1549 GFP_KERNEL);
Mika Westerberg444ac382018-12-30 12:17:52 +02001550 if (!sw->ports) {
1551 ret = -ENOMEM;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001552 goto err_free_sw_ports;
Mika Westerberg444ac382018-12-30 12:17:52 +02001553 }
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001554
1555 for (i = 0; i <= sw->config.max_port_number; i++) {
1556 /* minimum setup for tb_find_cap and tb_drom_read to work */
1557 sw->ports[i].sw = sw;
1558 sw->ports[i].port = i;
1559 }
1560
Mika Westerberg2c3c4192017-06-06 15:25:13 +03001561 sw->generation = tb_switch_get_generation(sw);
1562
Mika Westerberg444ac382018-12-30 12:17:52 +02001563 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_PLUG_EVENTS);
1564 if (ret < 0) {
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001565 tb_sw_warn(sw, "cannot find TB_VSE_CAP_PLUG_EVENTS aborting\n");
1566 goto err_free_sw_ports;
1567 }
Mika Westerberg444ac382018-12-30 12:17:52 +02001568 sw->cap_plug_events = ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001569
Mika Westerberg444ac382018-12-30 12:17:52 +02001570 ret = tb_switch_find_vse_cap(sw, TB_VSE_CAP_LINK_CONTROLLER);
1571 if (ret > 0)
1572 sw->cap_lc = ret;
Mika Westerberga9be5582019-01-09 16:42:12 +02001573
Mika Westerbergf67cf492017-06-06 15:25:16 +03001574 /* Root switch is always authorized */
1575 if (!route)
1576 sw->authorized = true;
1577
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001578 device_initialize(&sw->dev);
1579 sw->dev.parent = parent;
1580 sw->dev.bus = &tb_bus_type;
1581 sw->dev.type = &tb_switch_type;
1582 sw->dev.groups = switch_groups;
1583 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
1584
1585 return sw;
1586
1587err_free_sw_ports:
1588 kfree(sw->ports);
1589 kfree(sw);
1590
Mika Westerberg444ac382018-12-30 12:17:52 +02001591 return ERR_PTR(ret);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001592}
1593
1594/**
Mika Westerberge6b245c2017-06-06 15:25:17 +03001595 * tb_switch_alloc_safe_mode() - allocate a switch that is in safe mode
1596 * @tb: Pointer to the owning domain
1597 * @parent: Parent device for this switch
1598 * @route: Route string for this switch
1599 *
1600 * This creates a switch in safe mode. This means the switch pretty much
1601 * lacks all capabilities except DMA configuration port before it is
1602 * flashed with a valid NVM firmware.
1603 *
1604 * The returned switch must be released by calling tb_switch_put().
1605 *
Mika Westerberg444ac382018-12-30 12:17:52 +02001606 * Return: Pointer to the allocated switch or ERR_PTR() in case of failure
Mika Westerberge6b245c2017-06-06 15:25:17 +03001607 */
1608struct tb_switch *
1609tb_switch_alloc_safe_mode(struct tb *tb, struct device *parent, u64 route)
1610{
1611 struct tb_switch *sw;
1612
1613 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
1614 if (!sw)
Mika Westerberg444ac382018-12-30 12:17:52 +02001615 return ERR_PTR(-ENOMEM);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001616
1617 sw->tb = tb;
1618 sw->config.depth = tb_route_length(route);
1619 sw->config.route_hi = upper_32_bits(route);
1620 sw->config.route_lo = lower_32_bits(route);
1621 sw->safe_mode = true;
1622
1623 device_initialize(&sw->dev);
1624 sw->dev.parent = parent;
1625 sw->dev.bus = &tb_bus_type;
1626 sw->dev.type = &tb_switch_type;
1627 sw->dev.groups = switch_groups;
1628 dev_set_name(&sw->dev, "%u-%llx", tb->index, tb_route(sw));
1629
1630 return sw;
1631}
1632
1633/**
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001634 * tb_switch_configure() - Uploads configuration to the switch
1635 * @sw: Switch to configure
1636 *
1637 * Call this function before the switch is added to the system. It will
1638 * upload configuration to the switch and makes it available for the
1639 * connection manager to use.
1640 *
1641 * Return: %0 in case of success and negative errno in case of failure
1642 */
1643int tb_switch_configure(struct tb_switch *sw)
1644{
1645 struct tb *tb = sw->tb;
1646 u64 route;
1647 int ret;
1648
1649 route = tb_route(sw);
Mika Westerbergdaa51402018-10-01 12:31:19 +03001650 tb_dbg(tb, "initializing Switch at %#llx (depth: %d, up port: %d)\n",
1651 route, tb_route_length(route), sw->config.upstream_port_number);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001652
1653 if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL)
Andreas Noevera25c8b22014-06-03 22:04:02 +02001654 tb_sw_warn(sw, "unknown switch vendor id %#x\n",
1655 sw->config.vendor_id);
1656
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001657 sw->config.enabled = 1;
1658
Andreas Noevera25c8b22014-06-03 22:04:02 +02001659 /* upload configuration */
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001660 ret = tb_sw_write(sw, 1 + (u32 *)&sw->config, TB_CFG_SWITCH, 1, 3);
1661 if (ret)
1662 return ret;
Andreas Noevera25c8b22014-06-03 22:04:02 +02001663
Mika Westerberge879a702018-10-11 12:33:08 +03001664 ret = tb_lc_configure_link(sw);
1665 if (ret)
1666 return ret;
1667
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001668 return tb_plug_events_active(sw, true);
1669}
Andreas Noevera25c8b22014-06-03 22:04:02 +02001670
Aditya Pakki2cc12752019-03-20 10:57:54 -05001671static int tb_switch_set_uuid(struct tb_switch *sw)
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001672{
1673 u32 uuid[4];
Mika Westerberga9be5582019-01-09 16:42:12 +02001674 int ret;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001675
1676 if (sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02001677 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001678
1679 /*
1680 * The newer controllers include fused UUID as part of link
1681 * controller specific registers
1682 */
Mika Westerberga9be5582019-01-09 16:42:12 +02001683 ret = tb_lc_read_uuid(sw, uuid);
1684 if (ret) {
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001685 /*
1686 * ICM generates UUID based on UID and fills the upper
1687 * two words with ones. This is not strictly following
1688 * UUID format but we want to be compatible with it so
1689 * we do the same here.
1690 */
1691 uuid[0] = sw->uid & 0xffffffff;
1692 uuid[1] = (sw->uid >> 32) & 0xffffffff;
1693 uuid[2] = 0xffffffff;
1694 uuid[3] = 0xffffffff;
Andreas Noevera25c8b22014-06-03 22:04:02 +02001695 }
1696
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001697 sw->uuid = kmemdup(uuid, sizeof(uuid), GFP_KERNEL);
Aditya Pakki2cc12752019-03-20 10:57:54 -05001698 if (!sw->uuid)
Mika Westerberga9be5582019-01-09 16:42:12 +02001699 return -ENOMEM;
1700 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001701}
1702
Mika Westerberge6b245c2017-06-06 15:25:17 +03001703static int tb_switch_add_dma_port(struct tb_switch *sw)
Mika Westerberg3e136762017-06-06 15:25:14 +03001704{
Mika Westerberge6b245c2017-06-06 15:25:17 +03001705 u32 status;
1706 int ret;
1707
Mika Westerberg3e136762017-06-06 15:25:14 +03001708 switch (sw->generation) {
1709 case 3:
1710 break;
1711
1712 case 2:
1713 /* Only root switch can be upgraded */
1714 if (tb_route(sw))
Mika Westerberge6b245c2017-06-06 15:25:17 +03001715 return 0;
Mika Westerberg3e136762017-06-06 15:25:14 +03001716 break;
1717
1718 default:
Mika Westerberge6b245c2017-06-06 15:25:17 +03001719 /*
1720 * DMA port is the only thing available when the switch
1721 * is in safe mode.
1722 */
1723 if (!sw->safe_mode)
1724 return 0;
1725 break;
Mika Westerberg3e136762017-06-06 15:25:14 +03001726 }
1727
Mika Westerberg3f415e52019-02-05 12:51:40 +03001728 /* Root switch DMA port requires running firmware */
1729 if (!tb_route(sw) && sw->config.enabled)
Mika Westerberge6b245c2017-06-06 15:25:17 +03001730 return 0;
1731
Mika Westerberg3e136762017-06-06 15:25:14 +03001732 sw->dma_port = dma_port_alloc(sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001733 if (!sw->dma_port)
1734 return 0;
1735
Mika Westerberg3f415e52019-02-05 12:51:40 +03001736 if (sw->no_nvm_upgrade)
1737 return 0;
1738
Mika Westerberge6b245c2017-06-06 15:25:17 +03001739 /*
1740 * Check status of the previous flash authentication. If there
1741 * is one we need to power cycle the switch in any case to make
1742 * it functional again.
1743 */
1744 ret = dma_port_flash_update_auth_status(sw->dma_port, &status);
1745 if (ret <= 0)
1746 return ret;
1747
Mika Westerberg1830b6e2018-11-26 12:47:46 +03001748 /* Now we can allow root port to suspend again */
1749 if (!tb_route(sw))
1750 nvm_authenticate_complete(sw);
1751
Mika Westerberge6b245c2017-06-06 15:25:17 +03001752 if (status) {
1753 tb_sw_info(sw, "switch flash authentication failed\n");
Aditya Pakki2cc12752019-03-20 10:57:54 -05001754 ret = tb_switch_set_uuid(sw);
1755 if (ret)
1756 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001757 nvm_set_auth_status(sw, status);
1758 }
1759
1760 tb_sw_info(sw, "power cycling the switch now\n");
1761 dma_port_power_cycle(sw->dma_port);
1762
1763 /*
1764 * We return error here which causes the switch adding failure.
1765 * It should appear back after power cycle is complete.
1766 */
1767 return -ESHUTDOWN;
Mika Westerberg3e136762017-06-06 15:25:14 +03001768}
1769
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001770/**
1771 * tb_switch_add() - Add a switch to the domain
1772 * @sw: Switch to add
1773 *
1774 * This is the last step in adding switch to the domain. It will read
1775 * identification information from DROM and initializes ports so that
1776 * they can be used to connect other switches. The switch will be
1777 * exposed to the userspace when this function successfully returns. To
1778 * remove and release the switch, call tb_switch_remove().
1779 *
1780 * Return: %0 in case of success and negative errno in case of failure
1781 */
1782int tb_switch_add(struct tb_switch *sw)
1783{
1784 int i, ret;
Andreas Noeverca389f72014-06-03 22:04:04 +02001785
Mika Westerberg3e136762017-06-06 15:25:14 +03001786 /*
1787 * Initialize DMA control port now before we read DROM. Recent
1788 * host controllers have more complete DROM on NVM that includes
1789 * vendor and model identification strings which we then expose
1790 * to the userspace. NVM can be accessed through DMA
1791 * configuration based mailbox.
1792 */
Mika Westerberge6b245c2017-06-06 15:25:17 +03001793 ret = tb_switch_add_dma_port(sw);
1794 if (ret)
Mika Westerbergf53e7672017-06-06 15:25:02 +03001795 return ret;
Andreas Noever343fcb82014-06-12 23:11:47 +02001796
Mika Westerberge6b245c2017-06-06 15:25:17 +03001797 if (!sw->safe_mode) {
1798 /* read drom */
1799 ret = tb_drom_read(sw);
1800 if (ret) {
1801 tb_sw_warn(sw, "tb_eeprom_read_rom failed\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001802 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001803 }
Mika Westerbergdaa51402018-10-01 12:31:19 +03001804 tb_sw_dbg(sw, "uid: %#llx\n", sw->uid);
Mika Westerberge6b245c2017-06-06 15:25:17 +03001805
Aditya Pakki2cc12752019-03-20 10:57:54 -05001806 ret = tb_switch_set_uuid(sw);
1807 if (ret)
1808 return ret;
Mika Westerberge6b245c2017-06-06 15:25:17 +03001809
1810 for (i = 0; i <= sw->config.max_port_number; i++) {
1811 if (sw->ports[i].disabled) {
Mika Westerbergdaa51402018-10-01 12:31:19 +03001812 tb_port_dbg(&sw->ports[i], "disabled by eeprom\n");
Mika Westerberge6b245c2017-06-06 15:25:17 +03001813 continue;
1814 }
1815 ret = tb_init_port(&sw->ports[i]);
1816 if (ret)
1817 return ret;
1818 }
Andreas Noever343fcb82014-06-12 23:11:47 +02001819 }
1820
Mika Westerberge6b245c2017-06-06 15:25:17 +03001821 ret = device_add(&sw->dev);
1822 if (ret)
1823 return ret;
1824
Mika Westerberga83bc4a2018-10-01 12:31:20 +03001825 if (tb_route(sw)) {
1826 dev_info(&sw->dev, "new device found, vendor=%#x device=%#x\n",
1827 sw->vendor, sw->device);
1828 if (sw->vendor_name && sw->device_name)
1829 dev_info(&sw->dev, "%s %s\n", sw->vendor_name,
1830 sw->device_name);
1831 }
1832
Mika Westerberge6b245c2017-06-06 15:25:17 +03001833 ret = tb_switch_nvm_add(sw);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001834 if (ret) {
Mika Westerberge6b245c2017-06-06 15:25:17 +03001835 device_del(&sw->dev);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001836 return ret;
1837 }
Mika Westerberge6b245c2017-06-06 15:25:17 +03001838
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001839 pm_runtime_set_active(&sw->dev);
1840 if (sw->rpm) {
1841 pm_runtime_set_autosuspend_delay(&sw->dev, TB_AUTOSUSPEND_DELAY);
1842 pm_runtime_use_autosuspend(&sw->dev);
1843 pm_runtime_mark_last_busy(&sw->dev);
1844 pm_runtime_enable(&sw->dev);
1845 pm_request_autosuspend(&sw->dev);
1846 }
1847
1848 return 0;
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001849}
Andreas Noeverc90553b2014-06-03 22:04:11 +02001850
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001851/**
1852 * tb_switch_remove() - Remove and release a switch
1853 * @sw: Switch to remove
1854 *
1855 * This will remove the switch from the domain and release it after last
1856 * reference count drops to zero. If there are switches connected below
1857 * this switch, they will be removed as well.
1858 */
1859void tb_switch_remove(struct tb_switch *sw)
1860{
1861 int i;
Andreas Noeverca389f72014-06-03 22:04:04 +02001862
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +03001863 if (sw->rpm) {
1864 pm_runtime_get_sync(&sw->dev);
1865 pm_runtime_disable(&sw->dev);
1866 }
1867
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001868 /* port 0 is the switch itself and never has a remote */
1869 for (i = 1; i <= sw->config.max_port_number; i++) {
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02001870 if (tb_port_has_remote(&sw->ports[i])) {
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001871 tb_switch_remove(sw->ports[i].remote->sw);
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02001872 sw->ports[i].remote = NULL;
1873 } else if (sw->ports[i].xdomain) {
Mika Westerbergd1ff7022017-10-02 13:38:34 +03001874 tb_xdomain_remove(sw->ports[i].xdomain);
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02001875 sw->ports[i].xdomain = NULL;
1876 }
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001877 }
1878
1879 if (!sw->is_unplugged)
1880 tb_plug_events_active(sw, false);
Mika Westerberge879a702018-10-11 12:33:08 +03001881 tb_lc_unconfigure_link(sw);
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001882
Mika Westerberge6b245c2017-06-06 15:25:17 +03001883 tb_switch_nvm_remove(sw);
Mika Westerberga83bc4a2018-10-01 12:31:20 +03001884
1885 if (tb_route(sw))
1886 dev_info(&sw->dev, "device disconnected\n");
Mika Westerbergbfe778a2017-06-06 15:25:01 +03001887 device_unregister(&sw->dev);
Andreas Noevera25c8b22014-06-03 22:04:02 +02001888}
1889
Andreas Noever053596d2014-06-03 22:04:06 +02001890/**
Lukas Wunneraae20bb2016-03-20 13:57:20 +01001891 * tb_sw_set_unplugged() - set is_unplugged on switch and downstream switches
Andreas Noever053596d2014-06-03 22:04:06 +02001892 */
Lukas Wunneraae20bb2016-03-20 13:57:20 +01001893void tb_sw_set_unplugged(struct tb_switch *sw)
Andreas Noever053596d2014-06-03 22:04:06 +02001894{
1895 int i;
1896 if (sw == sw->tb->root_switch) {
1897 tb_sw_WARN(sw, "cannot unplug root switch\n");
1898 return;
1899 }
1900 if (sw->is_unplugged) {
1901 tb_sw_WARN(sw, "is_unplugged already set\n");
1902 return;
1903 }
1904 sw->is_unplugged = true;
1905 for (i = 0; i <= sw->config.max_port_number; i++) {
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02001906 if (tb_port_has_remote(&sw->ports[i]))
Lukas Wunneraae20bb2016-03-20 13:57:20 +01001907 tb_sw_set_unplugged(sw->ports[i].remote->sw);
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03001908 else if (sw->ports[i].xdomain)
1909 sw->ports[i].xdomain->is_unplugged = true;
Andreas Noever053596d2014-06-03 22:04:06 +02001910 }
1911}
1912
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001913int tb_switch_resume(struct tb_switch *sw)
1914{
1915 int i, err;
Mika Westerbergdaa51402018-10-01 12:31:19 +03001916 tb_sw_dbg(sw, "resuming switch\n");
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001917
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03001918 /*
1919 * Check for UID of the connected switches except for root
1920 * switch which we assume cannot be removed.
1921 */
1922 if (tb_route(sw)) {
1923 u64 uid;
1924
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03001925 /*
1926 * Check first that we can still read the switch config
1927 * space. It may be that there is now another domain
1928 * connected.
1929 */
1930 err = tb_cfg_get_upstream_port(sw->tb->ctl, tb_route(sw));
1931 if (err < 0) {
1932 tb_sw_info(sw, "switch not present anymore\n");
1933 return err;
1934 }
1935
Mika Westerberg08a5e4c2017-06-06 15:24:54 +03001936 err = tb_drom_read_uid_only(sw, &uid);
1937 if (err) {
1938 tb_sw_warn(sw, "uid read failed\n");
1939 return err;
1940 }
1941 if (sw->uid != uid) {
1942 tb_sw_info(sw,
1943 "changed while suspended (uid %#llx -> %#llx)\n",
1944 sw->uid, uid);
1945 return -ENODEV;
1946 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001947 }
1948
1949 /* upload configuration */
1950 err = tb_sw_write(sw, 1 + (u32 *) &sw->config, TB_CFG_SWITCH, 1, 3);
1951 if (err)
1952 return err;
1953
Mika Westerberge879a702018-10-11 12:33:08 +03001954 err = tb_lc_configure_link(sw);
1955 if (err)
1956 return err;
1957
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001958 err = tb_plug_events_active(sw, true);
1959 if (err)
1960 return err;
1961
1962 /* check for surviving downstream switches */
1963 for (i = 1; i <= sw->config.max_port_number; i++) {
1964 struct tb_port *port = &sw->ports[i];
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02001965
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03001966 if (!tb_port_has_remote(port) && !port->xdomain)
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001967 continue;
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02001968
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03001969 if (tb_wait_for_port(port, true) <= 0) {
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001970 tb_port_warn(port,
1971 "lost during suspend, disconnecting\n");
Mika Westerberg7ea4cd62018-09-28 16:41:01 +03001972 if (tb_port_has_remote(port))
1973 tb_sw_set_unplugged(port->remote->sw);
1974 else if (port->xdomain)
1975 port->xdomain->is_unplugged = true;
1976 } else if (tb_port_has_remote(port)) {
1977 if (tb_switch_resume(port->remote->sw)) {
1978 tb_port_warn(port,
1979 "lost during suspend, disconnecting\n");
1980 tb_sw_set_unplugged(port->remote->sw);
1981 }
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001982 }
1983 }
1984 return 0;
1985}
1986
1987void tb_switch_suspend(struct tb_switch *sw)
1988{
1989 int i, err;
1990 err = tb_plug_events_active(sw, false);
1991 if (err)
1992 return;
1993
1994 for (i = 1; i <= sw->config.max_port_number; i++) {
Mika Westerbergdfe40ca2019-03-07 15:26:45 +02001995 if (tb_port_has_remote(&sw->ports[i]))
Andreas Noever23dd5bb2014-06-03 22:04:12 +02001996 tb_switch_suspend(sw->ports[i].remote->sw);
1997 }
Mika Westerberg5480dfc2019-01-09 17:25:43 +02001998
1999 tb_lc_set_sleep(sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +02002000}
Mika Westerbergf67cf492017-06-06 15:25:16 +03002001
2002struct tb_sw_lookup {
2003 struct tb *tb;
2004 u8 link;
2005 u8 depth;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002006 const uuid_t *uuid;
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002007 u64 route;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002008};
2009
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002010static int tb_switch_match(struct device *dev, const void *data)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002011{
2012 struct tb_switch *sw = tb_to_switch(dev);
Suzuki K Poulose418e3ea2019-06-14 18:53:59 +01002013 const struct tb_sw_lookup *lookup = data;
Mika Westerbergf67cf492017-06-06 15:25:16 +03002014
2015 if (!sw)
2016 return 0;
2017 if (sw->tb != lookup->tb)
2018 return 0;
2019
2020 if (lookup->uuid)
2021 return !memcmp(sw->uuid, lookup->uuid, sizeof(*lookup->uuid));
2022
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002023 if (lookup->route) {
2024 return sw->config.route_lo == lower_32_bits(lookup->route) &&
2025 sw->config.route_hi == upper_32_bits(lookup->route);
2026 }
2027
Mika Westerbergf67cf492017-06-06 15:25:16 +03002028 /* Root switch is matched only by depth */
2029 if (!lookup->depth)
2030 return !sw->depth;
2031
2032 return sw->link == lookup->link && sw->depth == lookup->depth;
2033}
2034
2035/**
2036 * tb_switch_find_by_link_depth() - Find switch by link and depth
2037 * @tb: Domain the switch belongs
2038 * @link: Link number the switch is connected
2039 * @depth: Depth of the switch in link
2040 *
2041 * Returned switch has reference count increased so the caller needs to
2042 * call tb_switch_put() when done with the switch.
2043 */
2044struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link, u8 depth)
2045{
2046 struct tb_sw_lookup lookup;
2047 struct device *dev;
2048
2049 memset(&lookup, 0, sizeof(lookup));
2050 lookup.tb = tb;
2051 lookup.link = link;
2052 lookup.depth = depth;
2053
2054 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2055 if (dev)
2056 return tb_to_switch(dev);
2057
2058 return NULL;
2059}
2060
2061/**
Radion Mirchevsky432019d2017-10-04 15:07:40 +03002062 * tb_switch_find_by_uuid() - Find switch by UUID
Mika Westerbergf67cf492017-06-06 15:25:16 +03002063 * @tb: Domain the switch belongs
2064 * @uuid: UUID to look for
2065 *
2066 * Returned switch has reference count increased so the caller needs to
2067 * call tb_switch_put() when done with the switch.
2068 */
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +02002069struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid)
Mika Westerbergf67cf492017-06-06 15:25:16 +03002070{
2071 struct tb_sw_lookup lookup;
2072 struct device *dev;
2073
2074 memset(&lookup, 0, sizeof(lookup));
2075 lookup.tb = tb;
2076 lookup.uuid = uuid;
2077
2078 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2079 if (dev)
2080 return tb_to_switch(dev);
2081
2082 return NULL;
2083}
Mika Westerberge6b245c2017-06-06 15:25:17 +03002084
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +03002085/**
2086 * tb_switch_find_by_route() - Find switch by route string
2087 * @tb: Domain the switch belongs
2088 * @route: Route string to look for
2089 *
2090 * Returned switch has reference count increased so the caller needs to
2091 * call tb_switch_put() when done with the switch.
2092 */
2093struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route)
2094{
2095 struct tb_sw_lookup lookup;
2096 struct device *dev;
2097
2098 if (!route)
2099 return tb_switch_get(tb->root_switch);
2100
2101 memset(&lookup, 0, sizeof(lookup));
2102 lookup.tb = tb;
2103 lookup.route = route;
2104
2105 dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
2106 if (dev)
2107 return tb_to_switch(dev);
2108
2109 return NULL;
2110}
2111
Mika Westerberge6b245c2017-06-06 15:25:17 +03002112void tb_switch_exit(void)
2113{
2114 ida_destroy(&nvm_ida);
2115}