1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Thunderbolt driver - bus logic (NHI independent)
4 *
5 * Copyright (c) 2014 Andreas Noever <[email protected]>
6 * Copyright (C) 2018, Intel Corporation
7 */
8
9 #ifndef TB_H_
10 #define TB_H_
11
12 #include <linux/debugfs.h>
13 #include <linux/nvmem-provider.h>
14 #include <linux/pci.h>
15 #include <linux/thunderbolt.h>
16 #include <linux/uuid.h>
17 #include <linux/bitfield.h>
18
19 #include "tb_regs.h"
20 #include "ctl.h"
21 #include "dma_port.h"
22
23 /* Keep link controller awake during update */
24 #define QUIRK_FORCE_POWER_LINK_CONTROLLER BIT(0)
25 /* Disable CLx if not supported */
26 #define QUIRK_NO_CLX BIT(1)
27 /* Need to keep power on while USB4 port is in redrive mode */
28 #define QUIRK_KEEP_POWER_IN_DP_REDRIVE BIT(2)
29
30 /**
31 * struct tb_nvm - Structure holding NVM information
32 * @dev: Owner of the NVM
33 * @major: Major version number of the active NVM portion
34 * @minor: Minor version number of the active NVM portion
35 * @id: Identifier used with both NVM portions
36 * @active: Active portion NVMem device
37 * @active_size: Size in bytes of the active NVM
38 * @non_active: Non-active portion NVMem device
39 * @buf: Buffer where the NVM image is stored before it is written to
40 * the actual NVM flash device
41 * @buf_data_start: Where the actual image starts after skipping
42 * possible headers
43 * @buf_data_size: Number of bytes actually consumed by the new NVM
44 * image
45 * @authenticating: The device is authenticating the new NVM
46 * @flushed: The image has been flushed to the storage area
47 * @vops: Router vendor specific NVM operations (optional)
48 *
49 * The user of this structure needs to handle serialization of possible
50 * concurrent access.
51 */
52 struct tb_nvm {
53 struct device *dev;
54 u32 major;
55 u32 minor;
56 int id;
57 struct nvmem_device *active;
58 size_t active_size;
59 struct nvmem_device *non_active;
60 void *buf;
61 void *buf_data_start;
62 size_t buf_data_size;
63 bool authenticating;
64 bool flushed;
65 const struct tb_nvm_vendor_ops *vops;
66 };
67
68 enum tb_nvm_write_ops {
69 WRITE_AND_AUTHENTICATE = 1,
70 WRITE_ONLY = 2,
71 AUTHENTICATE_ONLY = 3,
72 };
73
74 #define TB_SWITCH_KEY_SIZE 32
75 #define TB_SWITCH_MAX_DEPTH 6
76 #define USB4_SWITCH_MAX_DEPTH 5
77
78 /**
79 * enum tb_switch_tmu_mode - TMU mode
80 * @TB_SWITCH_TMU_MODE_OFF: TMU is off
81 * @TB_SWITCH_TMU_MODE_LOWRES: Uni-directional, normal mode
82 * @TB_SWITCH_TMU_MODE_HIFI_UNI: Uni-directional, HiFi mode
83 * @TB_SWITCH_TMU_MODE_HIFI_BI: Bi-directional, HiFi mode
84 * @TB_SWITCH_TMU_MODE_MEDRES_ENHANCED_UNI: Enhanced Uni-directional, MedRes mode
85 *
86 * Ordering is based on TMU accuracy level (highest last).
87 */
88 enum tb_switch_tmu_mode {
89 TB_SWITCH_TMU_MODE_OFF,
90 TB_SWITCH_TMU_MODE_LOWRES,
91 TB_SWITCH_TMU_MODE_HIFI_UNI,
92 TB_SWITCH_TMU_MODE_HIFI_BI,
93 TB_SWITCH_TMU_MODE_MEDRES_ENHANCED_UNI,
94 };
95
96 /**
97 * struct tb_switch_tmu - Structure holding router TMU configuration
98 * @cap: Offset to the TMU capability (%0 if not found)
99 * @has_ucap: Does the switch support uni-directional mode
100 * @mode: TMU mode related to the upstream router. Reflects the HW
101 * setting. Don't care for host router.
102 * @mode_request: TMU mode requested to set. Related to upstream router.
103 * Don't care for host router.
104 */
105 struct tb_switch_tmu {
106 int cap;
107 bool has_ucap;
108 enum tb_switch_tmu_mode mode;
109 enum tb_switch_tmu_mode mode_request;
110 };
111
112 /**
113 * struct tb_switch - a thunderbolt switch
114 * @dev: Device for the switch
115 * @config: Switch configuration
116 * @ports: Ports in this switch
117 * @dma_port: If the switch has port supporting DMA configuration based
118 * mailbox this will hold the pointer to that (%NULL
119 * otherwise). If set it also means the switch has
120 * upgradeable NVM.
121 * @tmu: The switch TMU configuration
122 * @tb: Pointer to the domain the switch belongs to
123 * @uid: Unique ID of the switch
124 * @uuid: UUID of the switch (or %NULL if not supported)
125 * @vendor: Vendor ID of the switch
126 * @device: Device ID of the switch
127 * @vendor_name: Name of the vendor (or %NULL if not known)
128 * @device_name: Name of the device (or %NULL if not known)
129 * @link_speed: Speed of the link in Gb/s
130 * @link_width: Width of the upstream facing link
131 * @preferred_link_width: Router preferred link width (only set for Gen 4 links)
132 * @link_usb4: Upstream link is USB4
133 * @generation: Switch Thunderbolt generation
134 * @cap_plug_events: Offset to the plug events capability (%0 if not found)
135 * @cap_vsec_tmu: Offset to the TMU vendor specific capability (%0 if not found)
136 * @cap_lc: Offset to the link controller capability (%0 if not found)
137 * @cap_lp: Offset to the low power (CLx for TBT) capability (%0 if not found)
138 * @is_unplugged: The switch is going away
139 * @drom: DROM of the switch (%NULL if not found)
140 * @nvm: Pointer to the NVM if the switch has one (%NULL otherwise)
141 * @no_nvm_upgrade: Prevent NVM upgrade of this switch
142 * @safe_mode: The switch is in safe-mode
143 * @boot: Whether the switch was already authorized on boot or not
144 * @rpm: The switch supports runtime PM
145 * @authorized: Whether the switch is authorized by user or policy
146 * @security_level: Switch supported security level
147 * @debugfs_dir: Pointer to the debugfs structure
148 * @key: Contains the key used to challenge the device or %NULL if not
149 * supported. Size of the key is %TB_SWITCH_KEY_SIZE.
150 * @connection_id: Connection ID used with ICM messaging
151 * @connection_key: Connection key used with ICM messaging
152 * @link: Root switch link this switch is connected (ICM only)
153 * @depth: Depth in the chain this switch is connected (ICM only)
154 * @rpm_complete: Completion used to wait for runtime resume to
155 * complete (ICM only)
156 * @quirks: Quirks used for this Thunderbolt switch
157 * @credit_allocation: Are the below buffer allocation parameters valid
158 * @max_usb3_credits: Router preferred number of buffers for USB 3.x
159 * @min_dp_aux_credits: Router preferred minimum number of buffers for DP AUX
160 * @min_dp_main_credits: Router preferred minimum number of buffers for DP MAIN
161 * @max_pcie_credits: Router preferred number of buffers for PCIe
162 * @max_dma_credits: Router preferred number of buffers for DMA/P2P
163 * @clx: CLx states on the upstream link of the router
164 * @drom_blob: DROM debugfs blob wrapper
165 *
166 * When the switch is being added or removed to the domain (other
167 * switches) you need to have domain lock held.
168 *
169 * In USB4 terminology this structure represents a router.
170 */
171 struct tb_switch {
172 struct device dev;
173 struct tb_regs_switch_header config;
174 struct tb_port *ports;
175 struct tb_dma_port *dma_port;
176 struct tb_switch_tmu tmu;
177 struct tb *tb;
178 u64 uid;
179 uuid_t *uuid;
180 u16 vendor;
181 u16 device;
182 const char *vendor_name;
183 const char *device_name;
184 unsigned int link_speed;
185 enum tb_link_width link_width;
186 enum tb_link_width preferred_link_width;
187 bool link_usb4;
188 unsigned int generation;
189 int cap_plug_events;
190 int cap_vsec_tmu;
191 int cap_lc;
192 int cap_lp;
193 bool is_unplugged;
194 u8 *drom;
195 struct tb_nvm *nvm;
196 bool no_nvm_upgrade;
197 bool safe_mode;
198 bool boot;
199 bool rpm;
200 unsigned int authorized;
201 enum tb_security_level security_level;
202 struct dentry *debugfs_dir;
203 u8 *key;
204 u8 connection_id;
205 u8 connection_key;
206 u8 link;
207 u8 depth;
208 struct completion rpm_complete;
209 unsigned long quirks;
210 bool credit_allocation;
211 unsigned int max_usb3_credits;
212 unsigned int min_dp_aux_credits;
213 unsigned int min_dp_main_credits;
214 unsigned int max_pcie_credits;
215 unsigned int max_dma_credits;
216 unsigned int clx;
217 #ifdef CONFIG_DEBUG_FS
218 struct debugfs_blob_wrapper drom_blob;
219 #endif
220 };
221
222 /**
223 * struct tb_bandwidth_group - Bandwidth management group
224 * @tb: Pointer to the domain the group belongs to
225 * @index: Index of the group (aka Group_ID). Valid values %1-%7
226 * @ports: DP IN adapters belonging to this group are linked here
227 * @reserved: Bandwidth released by one tunnel in the group, available
228 * to others. This is reported as part of estimated_bw for
229 * the group.
230 * @release_work: Worker to release the @reserved if it is not used by
231 * any of the tunnels.
232 *
233 * Any tunnel that requires isochronous bandwidth (that's DP for now) is
234 * attached to a bandwidth group. All tunnels going through the same
235 * USB4 links share the same group and can dynamically distribute the
236 * bandwidth within the group.
237 */
238 struct tb_bandwidth_group {
239 struct tb *tb;
240 int index;
241 struct list_head ports;
242 int reserved;
243 struct delayed_work release_work;
244 };
245
246 /**
247 * struct tb_port - a thunderbolt port, part of a tb_switch
248 * @config: Cached port configuration read from registers
249 * @sw: Switch the port belongs to
250 * @remote: Remote port (%NULL if not connected)
251 * @xdomain: Remote host (%NULL if not connected)
252 * @cap_phy: Offset, zero if not found
253 * @cap_tmu: Offset of the adapter specific TMU capability (%0 if not present)
254 * @cap_adap: Offset of the adapter specific capability (%0 if not present)
255 * @cap_usb4: Offset to the USB4 port capability (%0 if not present)
256 * @usb4: Pointer to the USB4 port structure (only if @cap_usb4 is != %0)
257 * @port: Port number on switch
258 * @disabled: Disabled by eeprom or enabled but not implemented
259 * @bonded: true if the port is bonded (two lanes combined as one)
260 * @dual_link_port: If the switch is connected using two ports, points
261 * to the other port.
262 * @link_nr: Is this primary or secondary port on the dual_link.
263 * @in_hopids: Currently allocated input HopIDs
264 * @out_hopids: Currently allocated output HopIDs
265 * @list: Used to link ports to DP resources list
266 * @total_credits: Total number of buffers available for this port
267 * @ctl_credits: Buffers reserved for control path
268 * @dma_credits: Number of credits allocated for DMA tunneling for all
269 * DMA paths through this port.
270 * @group: Bandwidth allocation group the adapter is assigned to. Only
271 * used for DP IN adapters for now.
272 * @group_list: The adapter is linked to the group's list of ports through this
273 * @max_bw: Maximum possible bandwidth through this adapter if set to
274 * non-zero.
275 * @redrive: For DP IN, if true the adapter is in redrive mode.
276 *
277 * In USB4 terminology this structure represents an adapter (protocol or
278 * lane adapter).
279 */
280 struct tb_port {
281 struct tb_regs_port_header config;
282 struct tb_switch *sw;
283 struct tb_port *remote;
284 struct tb_xdomain *xdomain;
285 int cap_phy;
286 int cap_tmu;
287 int cap_adap;
288 int cap_usb4;
289 struct usb4_port *usb4;
290 u8 port;
291 bool disabled;
292 bool bonded;
293 struct tb_port *dual_link_port;
294 u8 link_nr:1;
295 struct ida in_hopids;
296 struct ida out_hopids;
297 struct list_head list;
298 unsigned int total_credits;
299 unsigned int ctl_credits;
300 unsigned int dma_credits;
301 struct tb_bandwidth_group *group;
302 struct list_head group_list;
303 unsigned int max_bw;
304 bool redrive;
305 };
306
307 /**
308 * struct usb4_port - USB4 port device
309 * @dev: Device for the port
310 * @port: Pointer to the lane 0 adapter
311 * @can_offline: Does the port have necessary platform support to moved
312 * it into offline mode and back
313 * @offline: The port is currently in offline mode
314 * @margining: Pointer to margining structure if enabled
315 */
316 struct usb4_port {
317 struct device dev;
318 struct tb_port *port;
319 bool can_offline;
320 bool offline;
321 #ifdef CONFIG_USB4_DEBUGFS_MARGINING
322 struct tb_margining *margining;
323 #endif
324 };
325
326 /**
327 * tb_retimer: Thunderbolt retimer
328 * @dev: Device for the retimer
329 * @tb: Pointer to the domain the retimer belongs to
330 * @index: Retimer index facing the router USB4 port
331 * @vendor: Vendor ID of the retimer
332 * @device: Device ID of the retimer
333 * @port: Pointer to the lane 0 adapter
334 * @nvm: Pointer to the NVM if the retimer has one (%NULL otherwise)
335 * @no_nvm_upgrade: Prevent NVM upgrade of this retimer
336 * @auth_status: Status of last NVM authentication
337 * @margining: Pointer to margining structure if enabled
338 */
339 struct tb_retimer {
340 struct device dev;
341 struct tb *tb;
342 u8 index;
343 u32 vendor;
344 u32 device;
345 struct tb_port *port;
346 struct tb_nvm *nvm;
347 bool no_nvm_upgrade;
348 u32 auth_status;
349 #ifdef CONFIG_USB4_DEBUGFS_MARGINING
350 struct tb_margining *margining;
351 #endif
352 };
353
354 /**
355 * struct tb_path_hop - routing information for a tb_path
356 * @in_port: Ingress port of a switch
357 * @out_port: Egress port of a switch where the packet is routed out
358 * (must be on the same switch than @in_port)
359 * @in_hop_index: HopID where the path configuration entry is placed in
360 * the path config space of @in_port.
361 * @in_counter_index: Used counter index (not used in the driver
362 * currently, %-1 to disable)
363 * @next_hop_index: HopID of the packet when it is routed out from @out_port
364 * @initial_credits: Number of initial flow control credits allocated for
365 * the path
366 * @nfc_credits: Number of non-flow controlled buffers allocated for the
367 * @in_port.
368 * @pm_support: Set path PM packet support bit to 1 (for USB4 v2 routers)
369 *
370 * Hop configuration is always done on the IN port of a switch.
371 * in_port and out_port have to be on the same switch. Packets arriving on
372 * in_port with "hop" = in_hop_index will get routed to through out_port. The
373 * next hop to take (on out_port->remote) is determined by
374 * next_hop_index. When routing packet to another switch (out->remote is
375 * set) the @next_hop_index must match the @in_hop_index of that next
376 * hop to make routing possible.
377 *
378 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
379 * port.
380 */
381 struct tb_path_hop {
382 struct tb_port *in_port;
383 struct tb_port *out_port;
384 int in_hop_index;
385 int in_counter_index;
386 int next_hop_index;
387 unsigned int initial_credits;
388 unsigned int nfc_credits;
389 bool pm_support;
390 };
391
392 /**
393 * enum tb_path_port - path options mask
394 * @TB_PATH_NONE: Do not activate on any hop on path
395 * @TB_PATH_SOURCE: Activate on the first hop (out of src)
396 * @TB_PATH_INTERNAL: Activate on the intermediate hops (not the first/last)
397 * @TB_PATH_DESTINATION: Activate on the last hop (into dst)
398 * @TB_PATH_ALL: Activate on all hops on the path
399 */
400 enum tb_path_port {
401 TB_PATH_NONE = 0,
402 TB_PATH_SOURCE = 1,
403 TB_PATH_INTERNAL = 2,
404 TB_PATH_DESTINATION = 4,
405 TB_PATH_ALL = 7,
406 };
407
408 /**
409 * struct tb_path - a unidirectional path between two ports
410 * @tb: Pointer to the domain structure
411 * @name: Name of the path (used for debugging)
412 * @ingress_shared_buffer: Shared buffering used for ingress ports on the path
413 * @egress_shared_buffer: Shared buffering used for egress ports on the path
414 * @ingress_fc_enable: Flow control for ingress ports on the path
415 * @egress_fc_enable: Flow control for egress ports on the path
416 * @priority: Priority group if the path
417 * @weight: Weight of the path inside the priority group
418 * @drop_packages: Drop packages from queue tail or head
419 * @activated: Is the path active
420 * @clear_fc: Clear all flow control from the path config space entries
421 * when deactivating this path
422 * @hops: Path hops
423 * @path_length: How many hops the path uses
424 * @alloc_hopid: Does this path consume port HopID
425 *
426 * A path consists of a number of hops (see &struct tb_path_hop). To
427 * establish a PCIe tunnel two paths have to be created between the two
428 * PCIe ports.
429 */
430 struct tb_path {
431 struct tb *tb;
432 const char *name;
433 enum tb_path_port ingress_shared_buffer;
434 enum tb_path_port egress_shared_buffer;
435 enum tb_path_port ingress_fc_enable;
436 enum tb_path_port egress_fc_enable;
437
438 unsigned int priority:3;
439 int weight:4;
440 bool drop_packages;
441 bool activated;
442 bool clear_fc;
443 struct tb_path_hop *hops;
444 int path_length;
445 bool alloc_hopid;
446 };
447
448 /* HopIDs 0-7 are reserved by the Thunderbolt protocol */
449 #define TB_PATH_MIN_HOPID 8
450 /*
451 * Support paths from the farthest (depth 6) router to the host and back
452 * to the same level (not necessarily to the same router).
453 */
454 #define TB_PATH_MAX_HOPS (7 * 2)
455
456 /* Possible wake types */
457 #define TB_WAKE_ON_CONNECT BIT(0)
458 #define TB_WAKE_ON_DISCONNECT BIT(1)
459 #define TB_WAKE_ON_USB4 BIT(2)
460 #define TB_WAKE_ON_USB3 BIT(3)
461 #define TB_WAKE_ON_PCIE BIT(4)
462 #define TB_WAKE_ON_DP BIT(5)
463
464 /* CL states */
465 #define TB_CL0S BIT(0)
466 #define TB_CL1 BIT(1)
467 #define TB_CL2 BIT(2)
468
469 /**
470 * struct tb_cm_ops - Connection manager specific operations vector
471 * @driver_ready: Called right after control channel is started. Used by
472 * ICM to send driver ready message to the firmware.
473 * @start: Starts the domain
474 * @stop: Stops the domain
475 * @deinit: Perform any cleanup after the domain is stopped but before
476 * it is unregistered. Called without @tb->lock taken. Optional.
477 * @suspend_noirq: Connection manager specific suspend_noirq
478 * @resume_noirq: Connection manager specific resume_noirq
479 * @suspend: Connection manager specific suspend
480 * @freeze_noirq: Connection manager specific freeze_noirq
481 * @thaw_noirq: Connection manager specific thaw_noirq
482 * @complete: Connection manager specific complete
483 * @runtime_suspend: Connection manager specific runtime_suspend
484 * @runtime_resume: Connection manager specific runtime_resume
485 * @runtime_suspend_switch: Runtime suspend a switch
486 * @runtime_resume_switch: Runtime resume a switch
487 * @handle_event: Handle thunderbolt event
488 * @get_boot_acl: Get boot ACL list
489 * @set_boot_acl: Set boot ACL list
490 * @disapprove_switch: Disapprove switch (disconnect PCIe tunnel)
491 * @approve_switch: Approve switch
492 * @add_switch_key: Add key to switch
493 * @challenge_switch_key: Challenge switch using key
494 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
495 * @approve_xdomain_paths: Approve (establish) XDomain DMA paths
496 * @disconnect_xdomain_paths: Disconnect XDomain DMA paths
497 * @usb4_switch_op: Optional proxy for USB4 router operations. If set
498 * this will be called whenever USB4 router operation is
499 * performed. If this returns %-EOPNOTSUPP then the
500 * native USB4 router operation is called.
501 * @usb4_switch_nvm_authenticate_status: Optional callback that the CM
502 * implementation can be used to
503 * return status of USB4 NVM_AUTH
504 * router operation.
505 */
506 struct tb_cm_ops {
507 int (*driver_ready)(struct tb *tb);
508 int (*start)(struct tb *tb, bool reset);
509 void (*stop)(struct tb *tb);
510 void (*deinit)(struct tb *tb);
511 int (*suspend_noirq)(struct tb *tb);
512 int (*resume_noirq)(struct tb *tb);
513 int (*suspend)(struct tb *tb);
514 int (*freeze_noirq)(struct tb *tb);
515 int (*thaw_noirq)(struct tb *tb);
516 void (*complete)(struct tb *tb);
517 int (*runtime_suspend)(struct tb *tb);
518 int (*runtime_resume)(struct tb *tb);
519 int (*runtime_suspend_switch)(struct tb_switch *sw);
520 int (*runtime_resume_switch)(struct tb_switch *sw);
521 void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
522 const void *buf, size_t size);
523 int (*get_boot_acl)(struct tb *tb, uuid_t *uuids, size_t nuuids);
524 int (*set_boot_acl)(struct tb *tb, const uuid_t *uuids, size_t nuuids);
525 int (*disapprove_switch)(struct tb *tb, struct tb_switch *sw);
526 int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
527 int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
528 int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
529 const u8 *challenge, u8 *response);
530 int (*disconnect_pcie_paths)(struct tb *tb);
531 int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd,
532 int transmit_path, int transmit_ring,
533 int receive_path, int receive_ring);
534 int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd,
535 int transmit_path, int transmit_ring,
536 int receive_path, int receive_ring);
537 int (*usb4_switch_op)(struct tb_switch *sw, u16 opcode, u32 *metadata,
538 u8 *status, const void *tx_data, size_t tx_data_len,
539 void *rx_data, size_t rx_data_len);
540 int (*usb4_switch_nvm_authenticate_status)(struct tb_switch *sw,
541 u32 *status);
542 };
543
tb_priv(struct tb * tb)544 static inline void *tb_priv(struct tb *tb)
545 {
546 return (void *)tb->privdata;
547 }
548
549 #define TB_AUTOSUSPEND_DELAY 15000 /* ms */
550
551 /* helper functions & macros */
552
553 /**
554 * tb_upstream_port() - return the upstream port of a switch
555 *
556 * Every switch has an upstream port (for the root switch it is the NHI).
557 *
558 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
559 * non root switches (on the NHI port remote is always NULL).
560 *
561 * Return: Returns the upstream port of the switch.
562 */
tb_upstream_port(struct tb_switch * sw)563 static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
564 {
565 return &sw->ports[sw->config.upstream_port_number];
566 }
567
568 /**
569 * tb_is_upstream_port() - Is the port upstream facing
570 * @port: Port to check
571 *
572 * Returns true if @port is upstream facing port. In case of dual link
573 * ports both return true.
574 */
tb_is_upstream_port(const struct tb_port * port)575 static inline bool tb_is_upstream_port(const struct tb_port *port)
576 {
577 const struct tb_port *upstream_port = tb_upstream_port(port->sw);
578 return port == upstream_port || port->dual_link_port == upstream_port;
579 }
580
tb_route(const struct tb_switch * sw)581 static inline u64 tb_route(const struct tb_switch *sw)
582 {
583 return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
584 }
585
tb_port_at(u64 route,struct tb_switch * sw)586 static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
587 {
588 u8 port;
589
590 port = route >> (sw->config.depth * 8);
591 if (WARN_ON(port > sw->config.max_port_number))
592 return NULL;
593 return &sw->ports[port];
594 }
595
tb_width_name(enum tb_link_width width)596 static inline const char *tb_width_name(enum tb_link_width width)
597 {
598 switch (width) {
599 case TB_LINK_WIDTH_SINGLE:
600 return "symmetric, single lane";
601 case TB_LINK_WIDTH_DUAL:
602 return "symmetric, dual lanes";
603 case TB_LINK_WIDTH_ASYM_TX:
604 return "asymmetric, 3 transmitters, 1 receiver";
605 case TB_LINK_WIDTH_ASYM_RX:
606 return "asymmetric, 3 receivers, 1 transmitter";
607 default:
608 return "unknown";
609 }
610 }
611
612 /**
613 * tb_port_has_remote() - Does the port have switch connected downstream
614 * @port: Port to check
615 *
616 * Returns true only when the port is primary port and has remote set.
617 */
tb_port_has_remote(const struct tb_port * port)618 static inline bool tb_port_has_remote(const struct tb_port *port)
619 {
620 if (tb_is_upstream_port(port))
621 return false;
622 if (!port->remote)
623 return false;
624 if (port->dual_link_port && port->link_nr)
625 return false;
626
627 return true;
628 }
629
tb_port_is_null(const struct tb_port * port)630 static inline bool tb_port_is_null(const struct tb_port *port)
631 {
632 return port && port->port && port->config.type == TB_TYPE_PORT;
633 }
634
tb_port_is_nhi(const struct tb_port * port)635 static inline bool tb_port_is_nhi(const struct tb_port *port)
636 {
637 return port && port->config.type == TB_TYPE_NHI;
638 }
639
tb_port_is_pcie_down(const struct tb_port * port)640 static inline bool tb_port_is_pcie_down(const struct tb_port *port)
641 {
642 return port && port->config.type == TB_TYPE_PCIE_DOWN;
643 }
644
tb_port_is_pcie_up(const struct tb_port * port)645 static inline bool tb_port_is_pcie_up(const struct tb_port *port)
646 {
647 return port && port->config.type == TB_TYPE_PCIE_UP;
648 }
649
tb_port_is_dpin(const struct tb_port * port)650 static inline bool tb_port_is_dpin(const struct tb_port *port)
651 {
652 return port && port->config.type == TB_TYPE_DP_HDMI_IN;
653 }
654
tb_port_is_dpout(const struct tb_port * port)655 static inline bool tb_port_is_dpout(const struct tb_port *port)
656 {
657 return port && port->config.type == TB_TYPE_DP_HDMI_OUT;
658 }
659
tb_port_is_usb3_down(const struct tb_port * port)660 static inline bool tb_port_is_usb3_down(const struct tb_port *port)
661 {
662 return port && port->config.type == TB_TYPE_USB3_DOWN;
663 }
664
tb_port_is_usb3_up(const struct tb_port * port)665 static inline bool tb_port_is_usb3_up(const struct tb_port *port)
666 {
667 return port && port->config.type == TB_TYPE_USB3_UP;
668 }
669
tb_sw_read(struct tb_switch * sw,void * buffer,enum tb_cfg_space space,u32 offset,u32 length)670 static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
671 enum tb_cfg_space space, u32 offset, u32 length)
672 {
673 if (sw->is_unplugged)
674 return -ENODEV;
675 return tb_cfg_read(sw->tb->ctl,
676 buffer,
677 tb_route(sw),
678 0,
679 space,
680 offset,
681 length);
682 }
683
tb_sw_write(struct tb_switch * sw,const void * buffer,enum tb_cfg_space space,u32 offset,u32 length)684 static inline int tb_sw_write(struct tb_switch *sw, const void *buffer,
685 enum tb_cfg_space space, u32 offset, u32 length)
686 {
687 if (sw->is_unplugged)
688 return -ENODEV;
689 return tb_cfg_write(sw->tb->ctl,
690 buffer,
691 tb_route(sw),
692 0,
693 space,
694 offset,
695 length);
696 }
697
tb_port_read(struct tb_port * port,void * buffer,enum tb_cfg_space space,u32 offset,u32 length)698 static inline int tb_port_read(struct tb_port *port, void *buffer,
699 enum tb_cfg_space space, u32 offset, u32 length)
700 {
701 if (port->sw->is_unplugged)
702 return -ENODEV;
703 return tb_cfg_read(port->sw->tb->ctl,
704 buffer,
705 tb_route(port->sw),
706 port->port,
707 space,
708 offset,
709 length);
710 }
711
tb_port_write(struct tb_port * port,const void * buffer,enum tb_cfg_space space,u32 offset,u32 length)712 static inline int tb_port_write(struct tb_port *port, const void *buffer,
713 enum tb_cfg_space space, u32 offset, u32 length)
714 {
715 if (port->sw->is_unplugged)
716 return -ENODEV;
717 return tb_cfg_write(port->sw->tb->ctl,
718 buffer,
719 tb_route(port->sw),
720 port->port,
721 space,
722 offset,
723 length);
724 }
725
726 #define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
727 #define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
728 #define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
729 #define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
730 #define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg)
731
732 #define __TB_SW_PRINT(level, sw, fmt, arg...) \
733 do { \
734 const struct tb_switch *__sw = (sw); \
735 level(__sw->tb, "%llx: " fmt, \
736 tb_route(__sw), ## arg); \
737 } while (0)
738 #define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
739 #define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
740 #define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
741 #define tb_sw_dbg(sw, fmt, arg...) __TB_SW_PRINT(tb_dbg, sw, fmt, ##arg)
742
743 #define __TB_PORT_PRINT(level, _port, fmt, arg...) \
744 do { \
745 const struct tb_port *__port = (_port); \
746 level(__port->sw->tb, "%llx:%u: " fmt, \
747 tb_route(__port->sw), __port->port, ## arg); \
748 } while (0)
749 #define tb_port_WARN(port, fmt, arg...) \
750 __TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
751 #define tb_port_warn(port, fmt, arg...) \
752 __TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
753 #define tb_port_info(port, fmt, arg...) \
754 __TB_PORT_PRINT(tb_info, port, fmt, ##arg)
755 #define tb_port_dbg(port, fmt, arg...) \
756 __TB_PORT_PRINT(tb_dbg, port, fmt, ##arg)
757
758 struct tb *icm_probe(struct tb_nhi *nhi);
759 struct tb *tb_probe(struct tb_nhi *nhi);
760
761 extern const struct device_type tb_domain_type;
762 extern const struct device_type tb_retimer_type;
763 extern const struct device_type tb_switch_type;
764 extern const struct device_type usb4_port_device_type;
765
766 int tb_domain_init(void);
767 void tb_domain_exit(void);
768 int tb_xdomain_init(void);
769 void tb_xdomain_exit(void);
770
771 struct tb *tb_domain_alloc(struct tb_nhi *nhi, int timeout_msec, size_t privsize);
772 int tb_domain_add(struct tb *tb, bool reset);
773 void tb_domain_remove(struct tb *tb);
774 int tb_domain_suspend_noirq(struct tb *tb);
775 int tb_domain_resume_noirq(struct tb *tb);
776 int tb_domain_suspend(struct tb *tb);
777 int tb_domain_freeze_noirq(struct tb *tb);
778 int tb_domain_thaw_noirq(struct tb *tb);
779 void tb_domain_complete(struct tb *tb);
780 int tb_domain_runtime_suspend(struct tb *tb);
781 int tb_domain_runtime_resume(struct tb *tb);
782 int tb_domain_disapprove_switch(struct tb *tb, struct tb_switch *sw);
783 int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
784 int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
785 int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
786 int tb_domain_disconnect_pcie_paths(struct tb *tb);
787 int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
788 int transmit_path, int transmit_ring,
789 int receive_path, int receive_ring);
790 int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
791 int transmit_path, int transmit_ring,
792 int receive_path, int receive_ring);
793 int tb_domain_disconnect_all_paths(struct tb *tb);
794
tb_domain_get(struct tb * tb)795 static inline struct tb *tb_domain_get(struct tb *tb)
796 {
797 if (tb)
798 get_device(&tb->dev);
799 return tb;
800 }
801
tb_domain_put(struct tb * tb)802 static inline void tb_domain_put(struct tb *tb)
803 {
804 put_device(&tb->dev);
805 }
806
807 struct tb_nvm *tb_nvm_alloc(struct device *dev);
808 int tb_nvm_read_version(struct tb_nvm *nvm);
809 int tb_nvm_validate(struct tb_nvm *nvm);
810 int tb_nvm_write_headers(struct tb_nvm *nvm);
811 int tb_nvm_add_active(struct tb_nvm *nvm, nvmem_reg_read_t reg_read);
812 int tb_nvm_write_buf(struct tb_nvm *nvm, unsigned int offset, void *val,
813 size_t bytes);
814 int tb_nvm_add_non_active(struct tb_nvm *nvm, nvmem_reg_write_t reg_write);
815 void tb_nvm_free(struct tb_nvm *nvm);
816 void tb_nvm_exit(void);
817
818 typedef int (*read_block_fn)(void *, unsigned int, void *, size_t);
819 typedef int (*write_block_fn)(void *, unsigned int, const void *, size_t);
820
821 int tb_nvm_read_data(unsigned int address, void *buf, size_t size,
822 unsigned int retries, read_block_fn read_block,
823 void *read_block_data);
824 int tb_nvm_write_data(unsigned int address, const void *buf, size_t size,
825 unsigned int retries, write_block_fn write_next_block,
826 void *write_block_data);
827
828 int tb_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
829 size_t size);
830 struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
831 u64 route);
832 struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
833 struct device *parent, u64 route);
834 int tb_switch_configure(struct tb_switch *sw);
835 int tb_switch_configuration_valid(struct tb_switch *sw);
836 int tb_switch_add(struct tb_switch *sw);
837 void tb_switch_remove(struct tb_switch *sw);
838 void tb_switch_suspend(struct tb_switch *sw, bool runtime);
839 int tb_switch_resume(struct tb_switch *sw, bool runtime);
840 int tb_switch_reset(struct tb_switch *sw);
841 int tb_switch_wait_for_bit(struct tb_switch *sw, u32 offset, u32 bit,
842 u32 value, int timeout_msec);
843 void tb_sw_set_unplugged(struct tb_switch *sw);
844 struct tb_port *tb_switch_find_port(struct tb_switch *sw,
845 enum tb_port_type type);
846 struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
847 u8 depth);
848 struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
849 struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route);
850
851 /**
852 * tb_switch_for_each_port() - Iterate over each switch port
853 * @sw: Switch whose ports to iterate
854 * @p: Port used as iterator
855 *
856 * Iterates over each switch port skipping the control port (port %0).
857 */
858 #define tb_switch_for_each_port(sw, p) \
859 for ((p) = &(sw)->ports[1]; \
860 (p) <= &(sw)->ports[(sw)->config.max_port_number]; (p)++)
861
tb_switch_get(struct tb_switch * sw)862 static inline struct tb_switch *tb_switch_get(struct tb_switch *sw)
863 {
864 if (sw)
865 get_device(&sw->dev);
866 return sw;
867 }
868
tb_switch_put(struct tb_switch * sw)869 static inline void tb_switch_put(struct tb_switch *sw)
870 {
871 put_device(&sw->dev);
872 }
873
tb_is_switch(const struct device * dev)874 static inline bool tb_is_switch(const struct device *dev)
875 {
876 return dev->type == &tb_switch_type;
877 }
878
tb_to_switch(const struct device * dev)879 static inline struct tb_switch *tb_to_switch(const struct device *dev)
880 {
881 if (tb_is_switch(dev))
882 return container_of(dev, struct tb_switch, dev);
883 return NULL;
884 }
885
tb_switch_parent(struct tb_switch * sw)886 static inline struct tb_switch *tb_switch_parent(struct tb_switch *sw)
887 {
888 return tb_to_switch(sw->dev.parent);
889 }
890
891 /**
892 * tb_switch_downstream_port() - Return downstream facing port of parent router
893 * @sw: Device router pointer
894 *
895 * Only call for device routers. Returns the downstream facing port of
896 * the parent router.
897 */
tb_switch_downstream_port(struct tb_switch * sw)898 static inline struct tb_port *tb_switch_downstream_port(struct tb_switch *sw)
899 {
900 if (WARN_ON(!tb_route(sw)))
901 return NULL;
902 return tb_port_at(tb_route(sw), tb_switch_parent(sw));
903 }
904
905 /**
906 * tb_switch_depth() - Returns depth of the connected router
907 * @sw: Router
908 */
tb_switch_depth(const struct tb_switch * sw)909 static inline int tb_switch_depth(const struct tb_switch *sw)
910 {
911 return sw->config.depth;
912 }
913
tb_switch_is_light_ridge(const struct tb_switch * sw)914 static inline bool tb_switch_is_light_ridge(const struct tb_switch *sw)
915 {
916 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
917 sw->config.device_id == PCI_DEVICE_ID_INTEL_LIGHT_RIDGE;
918 }
919
tb_switch_is_eagle_ridge(const struct tb_switch * sw)920 static inline bool tb_switch_is_eagle_ridge(const struct tb_switch *sw)
921 {
922 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
923 sw->config.device_id == PCI_DEVICE_ID_INTEL_EAGLE_RIDGE;
924 }
925
tb_switch_is_cactus_ridge(const struct tb_switch * sw)926 static inline bool tb_switch_is_cactus_ridge(const struct tb_switch *sw)
927 {
928 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
929 switch (sw->config.device_id) {
930 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
931 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
932 return true;
933 }
934 }
935 return false;
936 }
937
tb_switch_is_falcon_ridge(const struct tb_switch * sw)938 static inline bool tb_switch_is_falcon_ridge(const struct tb_switch *sw)
939 {
940 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
941 switch (sw->config.device_id) {
942 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
943 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
944 return true;
945 }
946 }
947 return false;
948 }
949
tb_switch_is_alpine_ridge(const struct tb_switch * sw)950 static inline bool tb_switch_is_alpine_ridge(const struct tb_switch *sw)
951 {
952 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
953 switch (sw->config.device_id) {
954 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
955 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_BRIDGE:
956 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
957 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
958 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
959 return true;
960 }
961 }
962 return false;
963 }
964
tb_switch_is_titan_ridge(const struct tb_switch * sw)965 static inline bool tb_switch_is_titan_ridge(const struct tb_switch *sw)
966 {
967 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
968 switch (sw->config.device_id) {
969 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
970 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
971 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
972 return true;
973 }
974 }
975 return false;
976 }
977
tb_switch_is_tiger_lake(const struct tb_switch * sw)978 static inline bool tb_switch_is_tiger_lake(const struct tb_switch *sw)
979 {
980 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
981 switch (sw->config.device_id) {
982 case PCI_DEVICE_ID_INTEL_TGL_NHI0:
983 case PCI_DEVICE_ID_INTEL_TGL_NHI1:
984 case PCI_DEVICE_ID_INTEL_TGL_H_NHI0:
985 case PCI_DEVICE_ID_INTEL_TGL_H_NHI1:
986 return true;
987 }
988 }
989 return false;
990 }
991
992 /**
993 * tb_switch_is_icm() - Is the switch handled by ICM firmware
994 * @sw: Switch to check
995 *
996 * In case there is a need to differentiate whether ICM firmware or SW CM
997 * is handling @sw this function can be called. It is valid to call this
998 * after tb_switch_alloc() and tb_switch_configure() has been called
999 * (latter only for SW CM case).
1000 */
tb_switch_is_icm(const struct tb_switch * sw)1001 static inline bool tb_switch_is_icm(const struct tb_switch *sw)
1002 {
1003 return !sw->config.enabled;
1004 }
1005
1006 int tb_switch_set_link_width(struct tb_switch *sw, enum tb_link_width width);
1007 int tb_switch_configure_link(struct tb_switch *sw);
1008 void tb_switch_unconfigure_link(struct tb_switch *sw);
1009
1010 bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
1011 int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
1012 void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
1013
1014 int tb_switch_tmu_init(struct tb_switch *sw);
1015 int tb_switch_tmu_post_time(struct tb_switch *sw);
1016 int tb_switch_tmu_disable(struct tb_switch *sw);
1017 int tb_switch_tmu_enable(struct tb_switch *sw);
1018 int tb_switch_tmu_configure(struct tb_switch *sw, enum tb_switch_tmu_mode mode);
1019
1020 /**
1021 * tb_switch_tmu_is_configured() - Is given TMU mode configured
1022 * @sw: Router whose mode to check
1023 * @mode: Mode to check
1024 *
1025 * Checks if given router TMU mode is configured to @mode. Note the
1026 * router TMU might not be enabled to this mode.
1027 */
tb_switch_tmu_is_configured(const struct tb_switch * sw,enum tb_switch_tmu_mode mode)1028 static inline bool tb_switch_tmu_is_configured(const struct tb_switch *sw,
1029 enum tb_switch_tmu_mode mode)
1030 {
1031 return sw->tmu.mode_request == mode;
1032 }
1033
1034 /**
1035 * tb_switch_tmu_is_enabled() - Checks if the specified TMU mode is enabled
1036 * @sw: Router whose TMU mode to check
1037 *
1038 * Return true if hardware TMU configuration matches the requested
1039 * configuration (and is not %TB_SWITCH_TMU_MODE_OFF).
1040 */
tb_switch_tmu_is_enabled(const struct tb_switch * sw)1041 static inline bool tb_switch_tmu_is_enabled(const struct tb_switch *sw)
1042 {
1043 return sw->tmu.mode != TB_SWITCH_TMU_MODE_OFF &&
1044 sw->tmu.mode == sw->tmu.mode_request;
1045 }
1046
1047 bool tb_port_clx_is_enabled(struct tb_port *port, unsigned int clx);
1048
1049 int tb_switch_clx_init(struct tb_switch *sw);
1050 int tb_switch_clx_enable(struct tb_switch *sw, unsigned int clx);
1051 int tb_switch_clx_disable(struct tb_switch *sw);
1052
1053 /**
1054 * tb_switch_clx_is_enabled() - Checks if the CLx is enabled
1055 * @sw: Router to check for the CLx
1056 * @clx: The CLx states to check for
1057 *
1058 * Checks if the specified CLx is enabled on the router upstream link.
1059 * Returns true if any of the given states is enabled.
1060 *
1061 * Not applicable for a host router.
1062 */
tb_switch_clx_is_enabled(const struct tb_switch * sw,unsigned int clx)1063 static inline bool tb_switch_clx_is_enabled(const struct tb_switch *sw,
1064 unsigned int clx)
1065 {
1066 return sw->clx & clx;
1067 }
1068
1069 int tb_switch_pcie_l1_enable(struct tb_switch *sw);
1070
1071 int tb_switch_xhci_connect(struct tb_switch *sw);
1072 void tb_switch_xhci_disconnect(struct tb_switch *sw);
1073
1074 int tb_port_state(struct tb_port *port);
1075 int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
1076 int tb_port_add_nfc_credits(struct tb_port *port, int credits);
1077 int tb_port_clear_counter(struct tb_port *port, int counter);
1078 int tb_port_unlock(struct tb_port *port);
1079 int tb_port_enable(struct tb_port *port);
1080 int tb_port_disable(struct tb_port *port);
1081 int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
1082 void tb_port_release_in_hopid(struct tb_port *port, int hopid);
1083 int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
1084 void tb_port_release_out_hopid(struct tb_port *port, int hopid);
1085 struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
1086 struct tb_port *prev);
1087
1088 /**
1089 * tb_port_path_direction_downstream() - Checks if path directed downstream
1090 * @src: Source adapter
1091 * @dst: Destination adapter
1092 *
1093 * Returns %true only if the specified path from source adapter (@src)
1094 * to destination adapter (@dst) is directed downstream.
1095 */
1096 static inline bool
tb_port_path_direction_downstream(const struct tb_port * src,const struct tb_port * dst)1097 tb_port_path_direction_downstream(const struct tb_port *src,
1098 const struct tb_port *dst)
1099 {
1100 return src->sw->config.depth < dst->sw->config.depth;
1101 }
1102
tb_port_use_credit_allocation(const struct tb_port * port)1103 static inline bool tb_port_use_credit_allocation(const struct tb_port *port)
1104 {
1105 return tb_port_is_null(port) && port->sw->credit_allocation;
1106 }
1107
1108 /**
1109 * tb_for_each_port_on_path() - Iterate over each port on path
1110 * @src: Source port
1111 * @dst: Destination port
1112 * @p: Port used as iterator
1113 *
1114 * Walks over each port on path from @src to @dst.
1115 */
1116 #define tb_for_each_port_on_path(src, dst, p) \
1117 for ((p) = tb_next_port_on_path((src), (dst), NULL); (p); \
1118 (p) = tb_next_port_on_path((src), (dst), (p)))
1119
1120 /**
1121 * tb_for_each_upstream_port_on_path() - Iterate over each upstreamm port on path
1122 * @src: Source port
1123 * @dst: Destination port
1124 * @p: Port used as iterator
1125 *
1126 * Walks over each upstream lane adapter on path from @src to @dst.
1127 */
1128 #define tb_for_each_upstream_port_on_path(src, dst, p) \
1129 for ((p) = tb_next_port_on_path((src), (dst), NULL); (p); \
1130 (p) = tb_next_port_on_path((src), (dst), (p))) \
1131 if (!tb_port_is_null((p)) || !tb_is_upstream_port((p))) {\
1132 continue; \
1133 } else
1134
1135 int tb_port_get_link_speed(struct tb_port *port);
1136 int tb_port_get_link_generation(struct tb_port *port);
1137 int tb_port_get_link_width(struct tb_port *port);
1138 bool tb_port_width_supported(struct tb_port *port, unsigned int width);
1139 int tb_port_set_link_width(struct tb_port *port, enum tb_link_width width);
1140 int tb_port_lane_bonding_enable(struct tb_port *port);
1141 void tb_port_lane_bonding_disable(struct tb_port *port);
1142 int tb_port_wait_for_link_width(struct tb_port *port, unsigned int width,
1143 int timeout_msec);
1144 int tb_port_update_credits(struct tb_port *port);
1145
1146 int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
1147 int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap);
1148 int tb_switch_next_cap(struct tb_switch *sw, unsigned int offset);
1149 int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
1150 int tb_port_next_cap(struct tb_port *port, unsigned int offset);
1151 bool tb_port_is_enabled(struct tb_port *port);
1152
1153 bool tb_usb3_port_is_enabled(struct tb_port *port);
1154 int tb_usb3_port_enable(struct tb_port *port, bool enable);
1155
1156 bool tb_pci_port_is_enabled(struct tb_port *port);
1157 int tb_pci_port_enable(struct tb_port *port, bool enable);
1158
1159 int tb_dp_port_hpd_is_active(struct tb_port *port);
1160 int tb_dp_port_hpd_clear(struct tb_port *port);
1161 int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
1162 unsigned int aux_tx, unsigned int aux_rx);
1163 bool tb_dp_port_is_enabled(struct tb_port *port);
1164 int tb_dp_port_enable(struct tb_port *port, bool enable);
1165
1166 struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
1167 struct tb_port *dst, int dst_hopid,
1168 struct tb_port **last, const char *name,
1169 bool alloc_hopid);
1170 struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
1171 struct tb_port *dst, int dst_hopid, int link_nr,
1172 const char *name);
1173 void tb_path_free(struct tb_path *path);
1174 int tb_path_activate(struct tb_path *path);
1175 void tb_path_deactivate(struct tb_path *path);
1176 int tb_path_deactivate_hop(struct tb_port *port, int hop_index);
1177 bool tb_path_is_invalid(struct tb_path *path);
1178 bool tb_path_port_on_path(const struct tb_path *path,
1179 const struct tb_port *port);
1180
1181 /**
1182 * tb_path_for_each_hop() - Iterate over each hop on path
1183 * @path: Path whose hops to iterate
1184 * @hop: Hop used as iterator
1185 *
1186 * Iterates over each hop on path.
1187 */
1188 #define tb_path_for_each_hop(path, hop) \
1189 for ((hop) = &(path)->hops[0]; \
1190 (hop) <= &(path)->hops[(path)->path_length - 1]; (hop)++)
1191
1192 int tb_drom_read(struct tb_switch *sw);
1193 int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
1194
1195 int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid);
1196 int tb_lc_reset_port(struct tb_port *port);
1197 int tb_lc_configure_port(struct tb_port *port);
1198 void tb_lc_unconfigure_port(struct tb_port *port);
1199 int tb_lc_configure_xdomain(struct tb_port *port);
1200 void tb_lc_unconfigure_xdomain(struct tb_port *port);
1201 int tb_lc_start_lane_initialization(struct tb_port *port);
1202 bool tb_lc_is_clx_supported(struct tb_port *port);
1203 bool tb_lc_is_usb_plugged(struct tb_port *port);
1204 bool tb_lc_is_xhci_connected(struct tb_port *port);
1205 int tb_lc_xhci_connect(struct tb_port *port);
1206 void tb_lc_xhci_disconnect(struct tb_port *port);
1207 int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
1208 int tb_lc_set_sleep(struct tb_switch *sw);
1209 bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
1210 bool tb_lc_dp_sink_query(struct tb_switch *sw, struct tb_port *in);
1211 int tb_lc_dp_sink_alloc(struct tb_switch *sw, struct tb_port *in);
1212 int tb_lc_dp_sink_dealloc(struct tb_switch *sw, struct tb_port *in);
1213 int tb_lc_force_power(struct tb_switch *sw);
1214
tb_route_length(u64 route)1215 static inline int tb_route_length(u64 route)
1216 {
1217 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
1218 }
1219
1220 /**
1221 * tb_downstream_route() - get route to downstream switch
1222 *
1223 * Port must not be the upstream port (otherwise a loop is created).
1224 *
1225 * Return: Returns a route to the switch behind @port.
1226 */
tb_downstream_route(struct tb_port * port)1227 static inline u64 tb_downstream_route(struct tb_port *port)
1228 {
1229 return tb_route(port->sw)
1230 | ((u64) port->port << (port->sw->config.depth * 8));
1231 }
1232
1233 bool tb_is_xdomain_enabled(void);
1234 bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
1235 const void *buf, size_t size);
1236 struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
1237 u64 route, const uuid_t *local_uuid,
1238 const uuid_t *remote_uuid);
1239 void tb_xdomain_add(struct tb_xdomain *xd);
1240 void tb_xdomain_remove(struct tb_xdomain *xd);
1241 struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
1242 u8 depth);
1243
tb_xdomain_parent(struct tb_xdomain * xd)1244 static inline struct tb_switch *tb_xdomain_parent(struct tb_xdomain *xd)
1245 {
1246 return tb_to_switch(xd->dev.parent);
1247 }
1248
1249 /**
1250 * tb_xdomain_downstream_port() - Return downstream facing port of parent router
1251 * @xd: Xdomain pointer
1252 *
1253 * Returns the downstream port the XDomain is connected to.
1254 */
tb_xdomain_downstream_port(struct tb_xdomain * xd)1255 static inline struct tb_port *tb_xdomain_downstream_port(struct tb_xdomain *xd)
1256 {
1257 return tb_port_at(xd->route, tb_xdomain_parent(xd));
1258 }
1259
1260 int tb_retimer_nvm_read(struct tb_retimer *rt, unsigned int address, void *buf,
1261 size_t size);
1262 int tb_retimer_scan(struct tb_port *port, bool add);
1263 void tb_retimer_remove_all(struct tb_port *port);
1264
tb_is_retimer(const struct device * dev)1265 static inline bool tb_is_retimer(const struct device *dev)
1266 {
1267 return dev->type == &tb_retimer_type;
1268 }
1269
tb_to_retimer(struct device * dev)1270 static inline struct tb_retimer *tb_to_retimer(struct device *dev)
1271 {
1272 if (tb_is_retimer(dev))
1273 return container_of(dev, struct tb_retimer, dev);
1274 return NULL;
1275 }
1276
1277 /**
1278 * usb4_switch_version() - Returns USB4 version of the router
1279 * @sw: Router to check
1280 *
1281 * Returns major version of USB4 router (%1 for v1, %2 for v2 and so
1282 * on). Can be called to pre-USB4 router too and in that case returns %0.
1283 */
usb4_switch_version(const struct tb_switch * sw)1284 static inline unsigned int usb4_switch_version(const struct tb_switch *sw)
1285 {
1286 return FIELD_GET(USB4_VERSION_MAJOR_MASK, sw->config.thunderbolt_version);
1287 }
1288
1289 /**
1290 * tb_switch_is_usb4() - Is the switch USB4 compliant
1291 * @sw: Switch to check
1292 *
1293 * Returns true if the @sw is USB4 compliant router, false otherwise.
1294 */
tb_switch_is_usb4(const struct tb_switch * sw)1295 static inline bool tb_switch_is_usb4(const struct tb_switch *sw)
1296 {
1297 return usb4_switch_version(sw) > 0;
1298 }
1299
1300 void usb4_switch_check_wakes(struct tb_switch *sw);
1301 int usb4_switch_setup(struct tb_switch *sw);
1302 int usb4_switch_configuration_valid(struct tb_switch *sw);
1303 int usb4_switch_read_uid(struct tb_switch *sw, u64 *uid);
1304 int usb4_switch_drom_read(struct tb_switch *sw, unsigned int address, void *buf,
1305 size_t size);
1306 bool usb4_switch_lane_bonding_possible(struct tb_switch *sw);
1307 int usb4_switch_set_wake(struct tb_switch *sw, unsigned int flags);
1308 int usb4_switch_set_sleep(struct tb_switch *sw);
1309 int usb4_switch_nvm_sector_size(struct tb_switch *sw);
1310 int usb4_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
1311 size_t size);
1312 int usb4_switch_nvm_set_offset(struct tb_switch *sw, unsigned int address);
1313 int usb4_switch_nvm_write(struct tb_switch *sw, unsigned int address,
1314 const void *buf, size_t size);
1315 int usb4_switch_nvm_authenticate(struct tb_switch *sw);
1316 int usb4_switch_nvm_authenticate_status(struct tb_switch *sw, u32 *status);
1317 int usb4_switch_credits_init(struct tb_switch *sw);
1318 bool usb4_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
1319 int usb4_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
1320 int usb4_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
1321 struct tb_port *usb4_switch_map_pcie_down(struct tb_switch *sw,
1322 const struct tb_port *port);
1323 struct tb_port *usb4_switch_map_usb3_down(struct tb_switch *sw,
1324 const struct tb_port *port);
1325 int usb4_switch_add_ports(struct tb_switch *sw);
1326 void usb4_switch_remove_ports(struct tb_switch *sw);
1327
1328 int usb4_port_unlock(struct tb_port *port);
1329 int usb4_port_hotplug_enable(struct tb_port *port);
1330 int usb4_port_reset(struct tb_port *port);
1331 int usb4_port_configure(struct tb_port *port);
1332 void usb4_port_unconfigure(struct tb_port *port);
1333 int usb4_port_configure_xdomain(struct tb_port *port, struct tb_xdomain *xd);
1334 void usb4_port_unconfigure_xdomain(struct tb_port *port);
1335 int usb4_port_router_offline(struct tb_port *port);
1336 int usb4_port_router_online(struct tb_port *port);
1337 int usb4_port_enumerate_retimers(struct tb_port *port);
1338 bool usb4_port_clx_supported(struct tb_port *port);
1339
1340 bool usb4_port_asym_supported(struct tb_port *port);
1341 int usb4_port_asym_set_link_width(struct tb_port *port, enum tb_link_width width);
1342 int usb4_port_asym_start(struct tb_port *port);
1343
1344 /**
1345 * enum tb_sb_target - Sideband transaction target
1346 * @USB4_SB_TARGET_ROUTER: Target is the router itself
1347 * @USB4_SB_TARGET_PARTNER: Target is partner
1348 * @USB4_SB_TARGET_RETIMER: Target is retimer
1349 */
1350 enum usb4_sb_target {
1351 USB4_SB_TARGET_ROUTER,
1352 USB4_SB_TARGET_PARTNER,
1353 USB4_SB_TARGET_RETIMER,
1354 };
1355
1356 int usb4_port_sb_read(struct tb_port *port, enum usb4_sb_target target, u8 index,
1357 u8 reg, void *buf, u8 size);
1358 int usb4_port_sb_write(struct tb_port *port, enum usb4_sb_target target,
1359 u8 index, u8 reg, const void *buf, u8 size);
1360
1361 /**
1362 * enum usb4_margin_sw_error_counter - Software margining error counter operation
1363 * @USB4_MARGIN_SW_ERROR_COUNTER_NOP: No change in counter setup
1364 * @USB4_MARGIN_SW_ERROR_COUNTER_CLEAR: Set the error counter to 0, enable counter
1365 * @USB4_MARGIN_SW_ERROR_COUNTER_START: Start counter, count from last value
1366 * @USB4_MARGIN_SW_ERROR_COUNTER_STOP: Stop counter, do not clear value
1367 */
1368 enum usb4_margin_sw_error_counter {
1369 USB4_MARGIN_SW_ERROR_COUNTER_NOP,
1370 USB4_MARGIN_SW_ERROR_COUNTER_CLEAR,
1371 USB4_MARGIN_SW_ERROR_COUNTER_START,
1372 USB4_MARGIN_SW_ERROR_COUNTER_STOP,
1373 };
1374
1375 enum usb4_margining_lane {
1376 USB4_MARGINING_LANE_RX0 = 0,
1377 USB4_MARGINING_LANE_RX1 = 1,
1378 USB4_MARGINING_LANE_RX2 = 2,
1379 USB4_MARGINING_LANE_ALL = 7,
1380 };
1381
1382 /**
1383 * struct usb4_port_margining_params - USB4 margining parameters
1384 * @error_counter: Error counter operation for software margining
1385 * @ber_level: Current BER level contour value
1386 * @lanes: Lanes to enable for the margining operation
1387 * @voltage_time_offset: Offset for voltage / time for software margining
1388 * @optional_voltage_offset_range: Enable optional extended voltage range
1389 * @right_high: %false if left/low margin test is performed, %true if right/high
1390 * @time: %true if time margining is used instead of voltage
1391 */
1392 struct usb4_port_margining_params {
1393 enum usb4_margin_sw_error_counter error_counter;
1394 u32 ber_level;
1395 enum usb4_margining_lane lanes;
1396 u32 voltage_time_offset;
1397 bool optional_voltage_offset_range;
1398 bool right_high;
1399 bool upper_eye;
1400 bool time;
1401 };
1402
1403 int usb4_port_margining_caps(struct tb_port *port, enum usb4_sb_target target,
1404 u8 index, u32 *caps, size_t ncaps);
1405 int usb4_port_hw_margin(struct tb_port *port, enum usb4_sb_target target,
1406 u8 index, const struct usb4_port_margining_params *params,
1407 u32 *results, size_t nresults);
1408 int usb4_port_sw_margin(struct tb_port *port, enum usb4_sb_target target,
1409 u8 index, const struct usb4_port_margining_params *params,
1410 u32 *results);
1411 int usb4_port_sw_margin_errors(struct tb_port *port, enum usb4_sb_target target,
1412 u8 index, u32 *errors);
1413
1414 int usb4_port_retimer_set_inbound_sbtx(struct tb_port *port, u8 index);
1415 int usb4_port_retimer_unset_inbound_sbtx(struct tb_port *port, u8 index);
1416 int usb4_port_retimer_is_last(struct tb_port *port, u8 index);
1417 int usb4_port_retimer_is_cable(struct tb_port *port, u8 index);
1418 int usb4_port_retimer_nvm_sector_size(struct tb_port *port, u8 index);
1419 int usb4_port_retimer_nvm_set_offset(struct tb_port *port, u8 index,
1420 unsigned int address);
1421 int usb4_port_retimer_nvm_write(struct tb_port *port, u8 index,
1422 unsigned int address, const void *buf,
1423 size_t size);
1424 int usb4_port_retimer_nvm_authenticate(struct tb_port *port, u8 index);
1425 int usb4_port_retimer_nvm_authenticate_status(struct tb_port *port, u8 index,
1426 u32 *status);
1427 int usb4_port_retimer_nvm_read(struct tb_port *port, u8 index,
1428 unsigned int address, void *buf, size_t size);
1429
1430 int usb4_usb3_port_max_link_rate(struct tb_port *port);
1431 int usb4_usb3_port_allocated_bandwidth(struct tb_port *port, int *upstream_bw,
1432 int *downstream_bw);
1433 int usb4_usb3_port_allocate_bandwidth(struct tb_port *port, int *upstream_bw,
1434 int *downstream_bw);
1435 int usb4_usb3_port_release_bandwidth(struct tb_port *port, int *upstream_bw,
1436 int *downstream_bw);
1437
1438 int usb4_dp_port_set_cm_id(struct tb_port *port, int cm_id);
1439 bool usb4_dp_port_bandwidth_mode_supported(struct tb_port *port);
1440 bool usb4_dp_port_bandwidth_mode_enabled(struct tb_port *port);
1441 int usb4_dp_port_set_cm_bandwidth_mode_supported(struct tb_port *port,
1442 bool supported);
1443 int usb4_dp_port_group_id(struct tb_port *port);
1444 int usb4_dp_port_set_group_id(struct tb_port *port, int group_id);
1445 int usb4_dp_port_nrd(struct tb_port *port, int *rate, int *lanes);
1446 int usb4_dp_port_set_nrd(struct tb_port *port, int rate, int lanes);
1447 int usb4_dp_port_granularity(struct tb_port *port);
1448 int usb4_dp_port_set_granularity(struct tb_port *port, int granularity);
1449 int usb4_dp_port_set_estimated_bandwidth(struct tb_port *port, int bw);
1450 int usb4_dp_port_allocated_bandwidth(struct tb_port *port);
1451 int usb4_dp_port_allocate_bandwidth(struct tb_port *port, int bw);
1452 int usb4_dp_port_requested_bandwidth(struct tb_port *port);
1453
1454 int usb4_pci_port_set_ext_encapsulation(struct tb_port *port, bool enable);
1455
tb_is_usb4_port_device(const struct device * dev)1456 static inline bool tb_is_usb4_port_device(const struct device *dev)
1457 {
1458 return dev->type == &usb4_port_device_type;
1459 }
1460
tb_to_usb4_port_device(struct device * dev)1461 static inline struct usb4_port *tb_to_usb4_port_device(struct device *dev)
1462 {
1463 if (tb_is_usb4_port_device(dev))
1464 return container_of(dev, struct usb4_port, dev);
1465 return NULL;
1466 }
1467
1468 struct usb4_port *usb4_port_device_add(struct tb_port *port);
1469 void usb4_port_device_remove(struct usb4_port *usb4);
1470 int usb4_port_device_resume(struct usb4_port *usb4);
1471
usb4_port_device_is_offline(const struct usb4_port * usb4)1472 static inline bool usb4_port_device_is_offline(const struct usb4_port *usb4)
1473 {
1474 return usb4->offline;
1475 }
1476
1477 void tb_check_quirks(struct tb_switch *sw);
1478
1479 #ifdef CONFIG_ACPI
1480 bool tb_acpi_add_links(struct tb_nhi *nhi);
1481
1482 bool tb_acpi_is_native(void);
1483 bool tb_acpi_may_tunnel_usb3(void);
1484 bool tb_acpi_may_tunnel_dp(void);
1485 bool tb_acpi_may_tunnel_pcie(void);
1486 bool tb_acpi_is_xdomain_allowed(void);
1487
1488 int tb_acpi_init(void);
1489 void tb_acpi_exit(void);
1490 int tb_acpi_power_on_retimers(struct tb_port *port);
1491 int tb_acpi_power_off_retimers(struct tb_port *port);
1492 #else
tb_acpi_add_links(struct tb_nhi * nhi)1493 static inline bool tb_acpi_add_links(struct tb_nhi *nhi) { return false; }
1494
tb_acpi_is_native(void)1495 static inline bool tb_acpi_is_native(void) { return true; }
tb_acpi_may_tunnel_usb3(void)1496 static inline bool tb_acpi_may_tunnel_usb3(void) { return true; }
tb_acpi_may_tunnel_dp(void)1497 static inline bool tb_acpi_may_tunnel_dp(void) { return true; }
tb_acpi_may_tunnel_pcie(void)1498 static inline bool tb_acpi_may_tunnel_pcie(void) { return true; }
tb_acpi_is_xdomain_allowed(void)1499 static inline bool tb_acpi_is_xdomain_allowed(void) { return true; }
1500
tb_acpi_init(void)1501 static inline int tb_acpi_init(void) { return 0; }
tb_acpi_exit(void)1502 static inline void tb_acpi_exit(void) { }
tb_acpi_power_on_retimers(struct tb_port * port)1503 static inline int tb_acpi_power_on_retimers(struct tb_port *port) { return 0; }
tb_acpi_power_off_retimers(struct tb_port * port)1504 static inline int tb_acpi_power_off_retimers(struct tb_port *port) { return 0; }
1505 #endif
1506
1507 #ifdef CONFIG_DEBUG_FS
1508 void tb_debugfs_init(void);
1509 void tb_debugfs_exit(void);
1510 void tb_switch_debugfs_init(struct tb_switch *sw);
1511 void tb_switch_debugfs_remove(struct tb_switch *sw);
1512 void tb_xdomain_debugfs_init(struct tb_xdomain *xd);
1513 void tb_xdomain_debugfs_remove(struct tb_xdomain *xd);
1514 void tb_service_debugfs_init(struct tb_service *svc);
1515 void tb_service_debugfs_remove(struct tb_service *svc);
1516 void tb_retimer_debugfs_init(struct tb_retimer *rt);
1517 void tb_retimer_debugfs_remove(struct tb_retimer *rt);
1518 #else
tb_debugfs_init(void)1519 static inline void tb_debugfs_init(void) { }
tb_debugfs_exit(void)1520 static inline void tb_debugfs_exit(void) { }
tb_switch_debugfs_init(struct tb_switch * sw)1521 static inline void tb_switch_debugfs_init(struct tb_switch *sw) { }
tb_switch_debugfs_remove(struct tb_switch * sw)1522 static inline void tb_switch_debugfs_remove(struct tb_switch *sw) { }
tb_xdomain_debugfs_init(struct tb_xdomain * xd)1523 static inline void tb_xdomain_debugfs_init(struct tb_xdomain *xd) { }
tb_xdomain_debugfs_remove(struct tb_xdomain * xd)1524 static inline void tb_xdomain_debugfs_remove(struct tb_xdomain *xd) { }
tb_service_debugfs_init(struct tb_service * svc)1525 static inline void tb_service_debugfs_init(struct tb_service *svc) { }
tb_service_debugfs_remove(struct tb_service * svc)1526 static inline void tb_service_debugfs_remove(struct tb_service *svc) { }
tb_retimer_debugfs_init(struct tb_retimer * rt)1527 static inline void tb_retimer_debugfs_init(struct tb_retimer *rt) { }
tb_retimer_debugfs_remove(struct tb_retimer * rt)1528 static inline void tb_retimer_debugfs_remove(struct tb_retimer *rt) { }
1529 #endif
1530
1531 #endif
1532