blob: 53f6bb85b178905ecd6bb822a474283e0ba6cdb9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Andreas Noeverd6cc51c2014-06-03 22:04:00 +02002/*
Mika Westerberg15c67842018-10-01 12:31:22 +03003 * Thunderbolt driver - bus logic (NHI independent)
Andreas Noeverd6cc51c2014-06-03 22:04:00 +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 Noeverd6cc51c2014-06-03 22:04:00 +02007 */
8
9#ifndef TB_H_
10#define TB_H_
11
Mika Westerberge6b245c2017-06-06 15:25:17 +030012#include <linux/nvmem-provider.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020013#include <linux/pci.h>
Mika Westerbergd1ff7022017-10-02 13:38:34 +030014#include <linux/thunderbolt.h>
Mika Westerbergbfe778a2017-06-06 15:25:01 +030015#include <linux/uuid.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020016
17#include "tb_regs.h"
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020018#include "ctl.h"
Mika Westerberg3e136762017-06-06 15:25:14 +030019#include "dma_port.h"
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020020
Mika Westerberg719a5fe2020-03-05 11:37:15 +020021#define NVM_MIN_SIZE SZ_32K
22#define NVM_MAX_SIZE SZ_512K
Mika Westerberg9b383032021-04-01 16:54:15 +030023#define NVM_DATA_DWORDS 16
Mika Westerberg719a5fe2020-03-05 11:37:15 +020024
25/* Intel specific NVM offsets */
26#define NVM_DEVID 0x05
27#define NVM_VERSION 0x08
28#define NVM_FLASH_SIZE 0x45
29
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020030/**
Mika Westerberg719a5fe2020-03-05 11:37:15 +020031 * struct tb_nvm - Structure holding NVM information
32 * @dev: Owner of the NVM
Mika Westerberge6b245c2017-06-06 15:25:17 +030033 * @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 * @non_active: Non-active portion NVMem device
38 * @buf: Buffer where the NVM image is stored before it is written to
39 * the actual NVM flash device
40 * @buf_data_size: Number of bytes actually consumed by the new NVM
41 * image
Mika Westerberg719a5fe2020-03-05 11:37:15 +020042 * @authenticating: The device is authenticating the new NVM
Mario Limonciello4b794f82020-06-23 11:14:28 -050043 * @flushed: The image has been flushed to the storage area
Mika Westerberg719a5fe2020-03-05 11:37:15 +020044 *
45 * The user of this structure needs to handle serialization of possible
46 * concurrent access.
Mika Westerberge6b245c2017-06-06 15:25:17 +030047 */
Mika Westerberg719a5fe2020-03-05 11:37:15 +020048struct tb_nvm {
49 struct device *dev;
Mika Westerberge6b245c2017-06-06 15:25:17 +030050 u8 major;
51 u8 minor;
52 int id;
53 struct nvmem_device *active;
54 struct nvmem_device *non_active;
55 void *buf;
56 size_t buf_data_size;
57 bool authenticating;
Mario Limonciello4b794f82020-06-23 11:14:28 -050058 bool flushed;
Mika Westerberge6b245c2017-06-06 15:25:17 +030059};
60
Rajmohan Maniff3a8302021-04-12 14:01:46 +030061enum tb_nvm_write_ops {
62 WRITE_AND_AUTHENTICATE = 1,
63 WRITE_ONLY = 2,
Mika Westerberg1cbf6802021-04-12 15:25:08 +030064 AUTHENTICATE_ONLY = 3,
Rajmohan Maniff3a8302021-04-12 14:01:46 +030065};
66
Mika Westerbergf67cf492017-06-06 15:25:16 +030067#define TB_SWITCH_KEY_SIZE 32
Mika Westerbergf0342e72018-12-30 12:14:46 +020068#define TB_SWITCH_MAX_DEPTH 6
Mika Westerbergb0407982019-12-17 15:33:40 +030069#define USB4_SWITCH_MAX_DEPTH 5
Mika Westerbergf67cf492017-06-06 15:25:16 +030070
71/**
Rajmohan Manicf29b9af2019-12-17 15:33:43 +030072 * enum tb_switch_tmu_rate - TMU refresh rate
73 * @TB_SWITCH_TMU_RATE_OFF: %0 (Disable Time Sync handshake)
74 * @TB_SWITCH_TMU_RATE_HIFI: %16 us time interval between successive
75 * transmission of the Delay Request TSNOS
76 * (Time Sync Notification Ordered Set) on a Link
77 * @TB_SWITCH_TMU_RATE_NORMAL: %1 ms time interval between successive
78 * transmission of the Delay Request TSNOS on
79 * a Link
80 */
81enum tb_switch_tmu_rate {
82 TB_SWITCH_TMU_RATE_OFF = 0,
83 TB_SWITCH_TMU_RATE_HIFI = 16,
84 TB_SWITCH_TMU_RATE_NORMAL = 1000,
85};
86
87/**
88 * struct tb_switch_tmu - Structure holding switch TMU configuration
89 * @cap: Offset to the TMU capability (%0 if not found)
90 * @has_ucap: Does the switch support uni-directional mode
91 * @rate: TMU refresh rate related to upstream switch. In case of root
92 * switch this holds the domain rate.
93 * @unidirectional: Is the TMU in uni-directional or bi-directional mode
94 * related to upstream switch. Don't case for root switch.
95 */
96struct tb_switch_tmu {
97 int cap;
98 bool has_ucap;
99 enum tb_switch_tmu_rate rate;
100 bool unidirectional;
101};
102
103/**
Andreas Noevera25c8b22014-06-03 22:04:02 +0200104 * struct tb_switch - a thunderbolt switch
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300105 * @dev: Device for the switch
106 * @config: Switch configuration
107 * @ports: Ports in this switch
Mika Westerberg3e136762017-06-06 15:25:14 +0300108 * @dma_port: If the switch has port supporting DMA configuration based
109 * mailbox this will hold the pointer to that (%NULL
Mika Westerberge6b245c2017-06-06 15:25:17 +0300110 * otherwise). If set it also means the switch has
111 * upgradeable NVM.
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300112 * @tmu: The switch TMU configuration
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300113 * @tb: Pointer to the domain the switch belongs to
114 * @uid: Unique ID of the switch
115 * @uuid: UUID of the switch (or %NULL if not supported)
116 * @vendor: Vendor ID of the switch
117 * @device: Device ID of the switch
Mika Westerberg72ee3392017-06-06 15:25:05 +0300118 * @vendor_name: Name of the vendor (or %NULL if not known)
119 * @device_name: Name of the device (or %NULL if not known)
Mika Westerberg91c0c122019-03-21 19:03:00 +0200120 * @link_speed: Speed of the link in Gb/s
121 * @link_width: Width of the link (1 or 2)
Mika Westerbergbbcf40b2020-03-04 17:09:14 +0200122 * @link_usb4: Upstream link is USB4
Mika Westerberg2c3c4192017-06-06 15:25:13 +0300123 * @generation: Switch Thunderbolt generation
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300124 * @cap_plug_events: Offset to the plug events capability (%0 if not found)
Mika Westerberga9be5582019-01-09 16:42:12 +0200125 * @cap_lc: Offset to the link controller capability (%0 if not found)
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300126 * @is_unplugged: The switch is going away
127 * @drom: DROM of the switch (%NULL if not found)
Mika Westerberge6b245c2017-06-06 15:25:17 +0300128 * @nvm: Pointer to the NVM if the switch has one (%NULL otherwise)
129 * @no_nvm_upgrade: Prevent NVM upgrade of this switch
130 * @safe_mode: The switch is in safe-mode
Yehezkel Bernat14862ee2018-01-22 12:50:09 +0200131 * @boot: Whether the switch was already authorized on boot or not
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300132 * @rpm: The switch supports runtime PM
Mika Westerbergf67cf492017-06-06 15:25:16 +0300133 * @authorized: Whether the switch is authorized by user or policy
Mika Westerbergf67cf492017-06-06 15:25:16 +0300134 * @security_level: Switch supported security level
Gil Fine54e41812020-06-29 20:30:52 +0300135 * @debugfs_dir: Pointer to the debugfs structure
Mika Westerbergf67cf492017-06-06 15:25:16 +0300136 * @key: Contains the key used to challenge the device or %NULL if not
137 * supported. Size of the key is %TB_SWITCH_KEY_SIZE.
138 * @connection_id: Connection ID used with ICM messaging
139 * @connection_key: Connection key used with ICM messaging
140 * @link: Root switch link this switch is connected (ICM only)
141 * @depth: Depth in the chain this switch is connected (ICM only)
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300142 * @rpm_complete: Completion used to wait for runtime resume to
143 * complete (ICM only)
Mario Limonciello1cb36292020-06-23 11:14:29 -0500144 * @quirks: Quirks used for this Thunderbolt switch
Mika Westerberg56ad3ae2021-03-10 13:34:12 +0200145 * @credit_allocation: Are the below buffer allocation parameters valid
146 * @max_usb3_credits: Router preferred number of buffers for USB 3.x
147 * @min_dp_aux_credits: Router preferred minimum number of buffers for DP AUX
148 * @min_dp_main_credits: Router preferred minimum number of buffers for DP MAIN
149 * @max_pcie_credits: Router preferred number of buffers for PCIe
150 * @max_dma_credits: Router preferred number of buffers for DMA/P2P
Mika Westerbergf67cf492017-06-06 15:25:16 +0300151 *
152 * When the switch is being added or removed to the domain (other
Mika Westerberg09f11b62019-03-19 16:48:41 +0200153 * switches) you need to have domain lock held.
Mika Westerbergc3963a52021-02-01 15:03:00 +0300154 *
155 * In USB4 terminology this structure represents a router.
Andreas Noevera25c8b22014-06-03 22:04:02 +0200156 */
157struct tb_switch {
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300158 struct device dev;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200159 struct tb_regs_switch_header config;
160 struct tb_port *ports;
Mika Westerberg3e136762017-06-06 15:25:14 +0300161 struct tb_dma_port *dma_port;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300162 struct tb_switch_tmu tmu;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200163 struct tb *tb;
Andreas Noeverc90553b2014-06-03 22:04:11 +0200164 u64 uid;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200165 uuid_t *uuid;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300166 u16 vendor;
167 u16 device;
Mika Westerberg72ee3392017-06-06 15:25:05 +0300168 const char *vendor_name;
169 const char *device_name;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200170 unsigned int link_speed;
171 unsigned int link_width;
Mika Westerbergbbcf40b2020-03-04 17:09:14 +0200172 bool link_usb4;
Mika Westerberg2c3c4192017-06-06 15:25:13 +0300173 unsigned int generation;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300174 int cap_plug_events;
Mika Westerberga9be5582019-01-09 16:42:12 +0200175 int cap_lc;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300176 bool is_unplugged;
Andreas Noevercd22e732014-06-12 23:11:46 +0200177 u8 *drom;
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200178 struct tb_nvm *nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300179 bool no_nvm_upgrade;
180 bool safe_mode;
Yehezkel Bernat14862ee2018-01-22 12:50:09 +0200181 bool boot;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300182 bool rpm;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300183 unsigned int authorized;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300184 enum tb_security_level security_level;
Gil Fine54e41812020-06-29 20:30:52 +0300185 struct dentry *debugfs_dir;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300186 u8 *key;
187 u8 connection_id;
188 u8 connection_key;
189 u8 link;
190 u8 depth;
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300191 struct completion rpm_complete;
Mario Limonciello1cb36292020-06-23 11:14:29 -0500192 unsigned long quirks;
Mika Westerberg56ad3ae2021-03-10 13:34:12 +0200193 bool credit_allocation;
194 unsigned int max_usb3_credits;
195 unsigned int min_dp_aux_credits;
196 unsigned int min_dp_main_credits;
197 unsigned int max_pcie_credits;
198 unsigned int max_dma_credits;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200199};
200
201/**
202 * struct tb_port - a thunderbolt port, part of a tb_switch
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300203 * @config: Cached port configuration read from registers
204 * @sw: Switch the port belongs to
205 * @remote: Remote port (%NULL if not connected)
206 * @xdomain: Remote host (%NULL if not connected)
207 * @cap_phy: Offset, zero if not found
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300208 * @cap_tmu: Offset of the adapter specific TMU capability (%0 if not present)
Mika Westerberg56183c82017-02-19 10:39:34 +0200209 * @cap_adap: Offset of the adapter specific capability (%0 if not present)
Mika Westerbergb0407982019-12-17 15:33:40 +0300210 * @cap_usb4: Offset to the USB4 port capability (%0 if not present)
Mika Westerbergcae5f512021-04-01 17:34:20 +0300211 * @usb4: Pointer to the USB4 port structure (only if @cap_usb4 is != %0)
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300212 * @port: Port number on switch
Nikunj A. Dadhania8824d192020-07-21 17:05:23 +0530213 * @disabled: Disabled by eeprom or enabled but not implemented
Mika Westerberg91c0c122019-03-21 19:03:00 +0200214 * @bonded: true if the port is bonded (two lanes combined as one)
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300215 * @dual_link_port: If the switch is connected using two ports, points
216 * to the other port.
217 * @link_nr: Is this primary or secondary port on the dual_link.
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200218 * @in_hopids: Currently allocated input HopIDs
219 * @out_hopids: Currently allocated output HopIDs
Mika Westerberg8afe9092019-03-26 15:52:30 +0300220 * @list: Used to link ports to DP resources list
Mika Westerberg56ad3ae2021-03-10 13:34:12 +0200221 * @total_credits: Total number of buffers available for this port
222 * @ctl_credits: Buffers reserved for control path
Mika Westerberg6ed541c2021-03-22 18:09:35 +0200223 * @dma_credits: Number of credits allocated for DMA tunneling for all
224 * DMA paths through this port.
Mika Westerbergc3963a52021-02-01 15:03:00 +0300225 *
226 * In USB4 terminology this structure represents an adapter (protocol or
227 * lane adapter).
Andreas Noevera25c8b22014-06-03 22:04:02 +0200228 */
229struct tb_port {
230 struct tb_regs_port_header config;
231 struct tb_switch *sw;
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300232 struct tb_port *remote;
233 struct tb_xdomain *xdomain;
234 int cap_phy;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300235 int cap_tmu;
Mika Westerberg56183c82017-02-19 10:39:34 +0200236 int cap_adap;
Mika Westerbergb0407982019-12-17 15:33:40 +0300237 int cap_usb4;
Mika Westerbergcae5f512021-04-01 17:34:20 +0300238 struct usb4_port *usb4;
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300239 u8 port;
240 bool disabled;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200241 bool bonded;
Andreas Noevercd22e732014-06-12 23:11:46 +0200242 struct tb_port *dual_link_port;
243 u8 link_nr:1;
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200244 struct ida in_hopids;
245 struct ida out_hopids;
Mika Westerberg8afe9092019-03-26 15:52:30 +0300246 struct list_head list;
Mika Westerberg56ad3ae2021-03-10 13:34:12 +0200247 unsigned int total_credits;
248 unsigned int ctl_credits;
Mika Westerberg6ed541c2021-03-22 18:09:35 +0200249 unsigned int dma_credits;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200250};
251
252/**
Mika Westerbergcae5f512021-04-01 17:34:20 +0300253 * struct usb4_port - USB4 port device
254 * @dev: Device for the port
255 * @port: Pointer to the lane 0 adapter
Rajmohan Maniccc5cb82021-04-01 18:20:17 +0300256 * @can_offline: Does the port have necessary platform support to moved
257 * it into offline mode and back
Rajmohan Mani3fb10ea2021-04-01 18:42:38 +0300258 * @offline: The port is currently in offline mode
Mika Westerbergcae5f512021-04-01 17:34:20 +0300259 */
260struct usb4_port {
261 struct device dev;
262 struct tb_port *port;
Rajmohan Maniccc5cb82021-04-01 18:20:17 +0300263 bool can_offline;
Rajmohan Mani3fb10ea2021-04-01 18:42:38 +0300264 bool offline;
Mika Westerbergcae5f512021-04-01 17:34:20 +0300265};
266
267/**
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200268 * tb_retimer: Thunderbolt retimer
269 * @dev: Device for the retimer
270 * @tb: Pointer to the domain the retimer belongs to
271 * @index: Retimer index facing the router USB4 port
272 * @vendor: Vendor ID of the retimer
273 * @device: Device ID of the retimer
274 * @port: Pointer to the lane 0 adapter
275 * @nvm: Pointer to the NVM if the retimer has one (%NULL otherwise)
276 * @auth_status: Status of last NVM authentication
277 */
278struct tb_retimer {
279 struct device dev;
280 struct tb *tb;
281 u8 index;
282 u32 vendor;
283 u32 device;
284 struct tb_port *port;
285 struct tb_nvm *nvm;
286 u32 auth_status;
287};
288
289/**
Andreas Noever520b6702014-06-03 22:04:07 +0200290 * struct tb_path_hop - routing information for a tb_path
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200291 * @in_port: Ingress port of a switch
292 * @out_port: Egress port of a switch where the packet is routed out
293 * (must be on the same switch than @in_port)
294 * @in_hop_index: HopID where the path configuration entry is placed in
295 * the path config space of @in_port.
296 * @in_counter_index: Used counter index (not used in the driver
297 * currently, %-1 to disable)
298 * @next_hop_index: HopID of the packet when it is routed out from @out_port
Mika Westerberg0414bec2017-02-19 23:43:26 +0200299 * @initial_credits: Number of initial flow control credits allocated for
300 * the path
Mika Westerberg02c5e7c2020-12-10 16:07:59 +0200301 * @nfc_credits: Number of non-flow controlled buffers allocated for the
302 * @in_port.
Andreas Noever520b6702014-06-03 22:04:07 +0200303 *
304 * Hop configuration is always done on the IN port of a switch.
305 * in_port and out_port have to be on the same switch. Packets arriving on
306 * in_port with "hop" = in_hop_index will get routed to through out_port. The
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200307 * next hop to take (on out_port->remote) is determined by
308 * next_hop_index. When routing packet to another switch (out->remote is
309 * set) the @next_hop_index must match the @in_hop_index of that next
310 * hop to make routing possible.
Andreas Noever520b6702014-06-03 22:04:07 +0200311 *
312 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
313 * port.
314 */
315struct tb_path_hop {
316 struct tb_port *in_port;
317 struct tb_port *out_port;
318 int in_hop_index;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200319 int in_counter_index;
Andreas Noever520b6702014-06-03 22:04:07 +0200320 int next_hop_index;
Mika Westerberg0414bec2017-02-19 23:43:26 +0200321 unsigned int initial_credits;
Mika Westerberg02c5e7c2020-12-10 16:07:59 +0200322 unsigned int nfc_credits;
Andreas Noever520b6702014-06-03 22:04:07 +0200323};
324
325/**
326 * enum tb_path_port - path options mask
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200327 * @TB_PATH_NONE: Do not activate on any hop on path
328 * @TB_PATH_SOURCE: Activate on the first hop (out of src)
329 * @TB_PATH_INTERNAL: Activate on the intermediate hops (not the first/last)
330 * @TB_PATH_DESTINATION: Activate on the last hop (into dst)
331 * @TB_PATH_ALL: Activate on all hops on the path
Andreas Noever520b6702014-06-03 22:04:07 +0200332 */
333enum tb_path_port {
334 TB_PATH_NONE = 0,
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200335 TB_PATH_SOURCE = 1,
336 TB_PATH_INTERNAL = 2,
337 TB_PATH_DESTINATION = 4,
Andreas Noever520b6702014-06-03 22:04:07 +0200338 TB_PATH_ALL = 7,
339};
340
341/**
342 * struct tb_path - a unidirectional path between two ports
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200343 * @tb: Pointer to the domain structure
344 * @name: Name of the path (used for debugging)
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200345 * @ingress_shared_buffer: Shared buffering used for ingress ports on the path
346 * @egress_shared_buffer: Shared buffering used for egress ports on the path
347 * @ingress_fc_enable: Flow control for ingress ports on the path
348 * @egress_fc_enable: Flow control for egress ports on the path
349 * @priority: Priority group if the path
350 * @weight: Weight of the path inside the priority group
351 * @drop_packages: Drop packages from queue tail or head
352 * @activated: Is the path active
Mika Westerberg44242d62018-09-28 16:35:32 +0300353 * @clear_fc: Clear all flow control from the path config space entries
354 * when deactivating this path
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200355 * @hops: Path hops
356 * @path_length: How many hops the path uses
Andreas Noever520b6702014-06-03 22:04:07 +0200357 *
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200358 * A path consists of a number of hops (see &struct tb_path_hop). To
359 * establish a PCIe tunnel two paths have to be created between the two
360 * PCIe ports.
Andreas Noever520b6702014-06-03 22:04:07 +0200361 */
362struct tb_path {
363 struct tb *tb;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200364 const char *name;
Andreas Noever520b6702014-06-03 22:04:07 +0200365 enum tb_path_port ingress_shared_buffer;
366 enum tb_path_port egress_shared_buffer;
367 enum tb_path_port ingress_fc_enable;
368 enum tb_path_port egress_fc_enable;
369
Nathan Chancellor37209782019-04-24 11:34:13 -0700370 unsigned int priority:3;
Andreas Noever520b6702014-06-03 22:04:07 +0200371 int weight:4;
372 bool drop_packages;
373 bool activated;
Mika Westerberg44242d62018-09-28 16:35:32 +0300374 bool clear_fc;
Andreas Noever520b6702014-06-03 22:04:07 +0200375 struct tb_path_hop *hops;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200376 int path_length;
Andreas Noever520b6702014-06-03 22:04:07 +0200377};
378
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200379/* HopIDs 0-7 are reserved by the Thunderbolt protocol */
380#define TB_PATH_MIN_HOPID 8
Mika Westerbergc738a792020-05-08 11:47:00 +0300381/*
382 * Support paths from the farthest (depth 6) router to the host and back
383 * to the same level (not necessarily to the same router).
384 */
385#define TB_PATH_MAX_HOPS (7 * 2)
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200386
Mika Westerbergb2911a52019-12-06 18:36:07 +0200387/* Possible wake types */
388#define TB_WAKE_ON_CONNECT BIT(0)
389#define TB_WAKE_ON_DISCONNECT BIT(1)
390#define TB_WAKE_ON_USB4 BIT(2)
391#define TB_WAKE_ON_USB3 BIT(3)
392#define TB_WAKE_ON_PCIE BIT(4)
Mika Westerberg6026b702021-01-14 16:44:17 +0200393#define TB_WAKE_ON_DP BIT(5)
Mika Westerbergb2911a52019-12-06 18:36:07 +0200394
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300395/**
396 * struct tb_cm_ops - Connection manager specific operations vector
Mika Westerbergf67cf492017-06-06 15:25:16 +0300397 * @driver_ready: Called right after control channel is started. Used by
398 * ICM to send driver ready message to the firmware.
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300399 * @start: Starts the domain
400 * @stop: Stops the domain
401 * @suspend_noirq: Connection manager specific suspend_noirq
402 * @resume_noirq: Connection manager specific resume_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300403 * @suspend: Connection manager specific suspend
Mika Westerberg884e4d52020-08-31 13:05:14 +0300404 * @freeze_noirq: Connection manager specific freeze_noirq
405 * @thaw_noirq: Connection manager specific thaw_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300406 * @complete: Connection manager specific complete
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300407 * @runtime_suspend: Connection manager specific runtime_suspend
408 * @runtime_resume: Connection manager specific runtime_resume
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300409 * @runtime_suspend_switch: Runtime suspend a switch
410 * @runtime_resume_switch: Runtime resume a switch
Mika Westerberg81a54b52017-06-06 15:25:09 +0300411 * @handle_event: Handle thunderbolt event
Mika Westerberg9aaa3b82018-01-21 12:08:04 +0200412 * @get_boot_acl: Get boot ACL list
413 * @set_boot_acl: Set boot ACL list
Mika Westerberg3da88be2020-11-10 11:47:14 +0300414 * @disapprove_switch: Disapprove switch (disconnect PCIe tunnel)
Mika Westerbergf67cf492017-06-06 15:25:16 +0300415 * @approve_switch: Approve switch
416 * @add_switch_key: Add key to switch
417 * @challenge_switch_key: Challenge switch using key
Mika Westerberge6b245c2017-06-06 15:25:17 +0300418 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300419 * @approve_xdomain_paths: Approve (establish) XDomain DMA paths
420 * @disconnect_xdomain_paths: Disconnect XDomain DMA paths
Mika Westerberg9490f712020-11-03 13:58:00 +0200421 * @usb4_switch_op: Optional proxy for USB4 router operations. If set
422 * this will be called whenever USB4 router operation is
423 * performed. If this returns %-EOPNOTSUPP then the
424 * native USB4 router operation is called.
425 * @usb4_switch_nvm_authenticate_status: Optional callback that the CM
426 * implementation can be used to
427 * return status of USB4 NVM_AUTH
428 * router operation.
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300429 */
430struct tb_cm_ops {
Mika Westerbergf67cf492017-06-06 15:25:16 +0300431 int (*driver_ready)(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300432 int (*start)(struct tb *tb);
433 void (*stop)(struct tb *tb);
434 int (*suspend_noirq)(struct tb *tb);
435 int (*resume_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300436 int (*suspend)(struct tb *tb);
Mika Westerberg884e4d52020-08-31 13:05:14 +0300437 int (*freeze_noirq)(struct tb *tb);
438 int (*thaw_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300439 void (*complete)(struct tb *tb);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300440 int (*runtime_suspend)(struct tb *tb);
441 int (*runtime_resume)(struct tb *tb);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300442 int (*runtime_suspend_switch)(struct tb_switch *sw);
443 int (*runtime_resume_switch)(struct tb_switch *sw);
Mika Westerberg81a54b52017-06-06 15:25:09 +0300444 void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
445 const void *buf, size_t size);
Mika Westerberg9aaa3b82018-01-21 12:08:04 +0200446 int (*get_boot_acl)(struct tb *tb, uuid_t *uuids, size_t nuuids);
447 int (*set_boot_acl)(struct tb *tb, const uuid_t *uuids, size_t nuuids);
Mika Westerberg3da88be2020-11-10 11:47:14 +0300448 int (*disapprove_switch)(struct tb *tb, struct tb_switch *sw);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300449 int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
450 int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
451 int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
452 const u8 *challenge, u8 *response);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300453 int (*disconnect_pcie_paths)(struct tb *tb);
Mika Westerberg180b0682021-01-08 16:25:39 +0200454 int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd,
455 int transmit_path, int transmit_ring,
456 int receive_path, int receive_ring);
457 int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd,
458 int transmit_path, int transmit_ring,
459 int receive_path, int receive_ring);
Mika Westerberg9490f712020-11-03 13:58:00 +0200460 int (*usb4_switch_op)(struct tb_switch *sw, u16 opcode, u32 *metadata,
461 u8 *status, const void *tx_data, size_t tx_data_len,
462 void *rx_data, size_t rx_data_len);
463 int (*usb4_switch_nvm_authenticate_status)(struct tb_switch *sw,
464 u32 *status);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300465};
Andreas Noever520b6702014-06-03 22:04:07 +0200466
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300467static inline void *tb_priv(struct tb *tb)
468{
469 return (void *)tb->privdata;
470}
471
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300472#define TB_AUTOSUSPEND_DELAY 15000 /* ms */
473
Andreas Noevera25c8b22014-06-03 22:04:02 +0200474/* helper functions & macros */
475
476/**
477 * tb_upstream_port() - return the upstream port of a switch
478 *
479 * Every switch has an upstream port (for the root switch it is the NHI).
480 *
481 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
482 * non root switches (on the NHI port remote is always NULL).
483 *
484 * Return: Returns the upstream port of the switch.
485 */
486static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
487{
488 return &sw->ports[sw->config.upstream_port_number];
489}
490
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200491/**
492 * tb_is_upstream_port() - Is the port upstream facing
493 * @port: Port to check
494 *
495 * Returns true if @port is upstream facing port. In case of dual link
496 * ports both return true.
497 */
498static inline bool tb_is_upstream_port(const struct tb_port *port)
499{
500 const struct tb_port *upstream_port = tb_upstream_port(port->sw);
501 return port == upstream_port || port->dual_link_port == upstream_port;
502}
503
Mika Westerbergb323a982019-03-06 19:23:38 +0200504static inline u64 tb_route(const struct tb_switch *sw)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200505{
506 return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
507}
508
Mika Westerbergf67cf492017-06-06 15:25:16 +0300509static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
510{
511 u8 port;
512
513 port = route >> (sw->config.depth * 8);
514 if (WARN_ON(port > sw->config.max_port_number))
515 return NULL;
516 return &sw->ports[port];
517}
518
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200519/**
520 * tb_port_has_remote() - Does the port have switch connected downstream
521 * @port: Port to check
522 *
523 * Returns true only when the port is primary port and has remote set.
524 */
525static inline bool tb_port_has_remote(const struct tb_port *port)
526{
527 if (tb_is_upstream_port(port))
528 return false;
529 if (!port->remote)
530 return false;
531 if (port->dual_link_port && port->link_nr)
532 return false;
533
534 return true;
535}
536
Mika Westerberg344e0642017-10-11 17:19:54 +0300537static inline bool tb_port_is_null(const struct tb_port *port)
538{
539 return port && port->port && port->config.type == TB_TYPE_PORT;
540}
541
Mika Westerberga3cfebd2020-07-25 10:32:46 +0300542static inline bool tb_port_is_nhi(const struct tb_port *port)
543{
544 return port && port->config.type == TB_TYPE_NHI;
545}
546
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200547static inline bool tb_port_is_pcie_down(const struct tb_port *port)
548{
549 return port && port->config.type == TB_TYPE_PCIE_DOWN;
550}
551
Mika Westerberg0414bec2017-02-19 23:43:26 +0200552static inline bool tb_port_is_pcie_up(const struct tb_port *port)
553{
554 return port && port->config.type == TB_TYPE_PCIE_UP;
555}
556
Mika Westerberg4f807e42018-09-17 16:30:49 +0300557static inline bool tb_port_is_dpin(const struct tb_port *port)
558{
559 return port && port->config.type == TB_TYPE_DP_HDMI_IN;
560}
561
562static inline bool tb_port_is_dpout(const struct tb_port *port)
563{
564 return port && port->config.type == TB_TYPE_DP_HDMI_OUT;
565}
566
Rajmohan Manie6f81852019-12-17 15:33:44 +0300567static inline bool tb_port_is_usb3_down(const struct tb_port *port)
568{
569 return port && port->config.type == TB_TYPE_USB3_DOWN;
570}
571
572static inline bool tb_port_is_usb3_up(const struct tb_port *port)
573{
574 return port && port->config.type == TB_TYPE_USB3_UP;
575}
576
Andreas Noevera25c8b22014-06-03 22:04:02 +0200577static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
578 enum tb_cfg_space space, u32 offset, u32 length)
579{
Mika Westerberg47083842019-03-19 17:07:37 +0200580 if (sw->is_unplugged)
581 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200582 return tb_cfg_read(sw->tb->ctl,
583 buffer,
584 tb_route(sw),
585 0,
586 space,
587 offset,
588 length);
589}
590
Mika Westerberg826c6a12019-07-01 18:41:51 +0300591static inline int tb_sw_write(struct tb_switch *sw, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200592 enum tb_cfg_space space, u32 offset, u32 length)
593{
Mika Westerberg47083842019-03-19 17:07:37 +0200594 if (sw->is_unplugged)
595 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200596 return tb_cfg_write(sw->tb->ctl,
597 buffer,
598 tb_route(sw),
599 0,
600 space,
601 offset,
602 length);
603}
604
605static inline int tb_port_read(struct tb_port *port, void *buffer,
606 enum tb_cfg_space space, u32 offset, u32 length)
607{
Mika Westerberg47083842019-03-19 17:07:37 +0200608 if (port->sw->is_unplugged)
609 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200610 return tb_cfg_read(port->sw->tb->ctl,
611 buffer,
612 tb_route(port->sw),
613 port->port,
614 space,
615 offset,
616 length);
617}
618
Mika Westerberg16a12582017-06-06 15:24:53 +0300619static inline int tb_port_write(struct tb_port *port, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200620 enum tb_cfg_space space, u32 offset, u32 length)
621{
Mika Westerberg47083842019-03-19 17:07:37 +0200622 if (port->sw->is_unplugged)
623 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200624 return tb_cfg_write(port->sw->tb->ctl,
625 buffer,
626 tb_route(port->sw),
627 port->port,
628 space,
629 offset,
630 length);
631}
632
633#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
634#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
635#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
636#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300637#define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200638
639#define __TB_SW_PRINT(level, sw, fmt, arg...) \
640 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200641 const struct tb_switch *__sw = (sw); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200642 level(__sw->tb, "%llx: " fmt, \
643 tb_route(__sw), ## arg); \
644 } while (0)
645#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
646#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
647#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300648#define tb_sw_dbg(sw, fmt, arg...) __TB_SW_PRINT(tb_dbg, sw, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200649
650#define __TB_PORT_PRINT(level, _port, fmt, arg...) \
651 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200652 const struct tb_port *__port = (_port); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200653 level(__port->sw->tb, "%llx:%x: " fmt, \
654 tb_route(__port->sw), __port->port, ## arg); \
655 } while (0)
656#define tb_port_WARN(port, fmt, arg...) \
657 __TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
658#define tb_port_warn(port, fmt, arg...) \
659 __TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
660#define tb_port_info(port, fmt, arg...) \
661 __TB_PORT_PRINT(tb_info, port, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300662#define tb_port_dbg(port, fmt, arg...) \
663 __TB_PORT_PRINT(tb_dbg, port, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200664
Mika Westerbergf67cf492017-06-06 15:25:16 +0300665struct tb *icm_probe(struct tb_nhi *nhi);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300666struct tb *tb_probe(struct tb_nhi *nhi);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200667
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300668extern struct device_type tb_domain_type;
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200669extern struct device_type tb_retimer_type;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300670extern struct device_type tb_switch_type;
Mika Westerbergcae5f512021-04-01 17:34:20 +0300671extern struct device_type usb4_port_device_type;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300672
673int tb_domain_init(void);
674void tb_domain_exit(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300675int tb_xdomain_init(void);
676void tb_xdomain_exit(void);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300677
Mika Westerberg7f0a34d2020-12-29 13:44:57 +0200678struct tb *tb_domain_alloc(struct tb_nhi *nhi, int timeout_msec, size_t privsize);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300679int tb_domain_add(struct tb *tb);
680void tb_domain_remove(struct tb *tb);
681int tb_domain_suspend_noirq(struct tb *tb);
682int tb_domain_resume_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300683int tb_domain_suspend(struct tb *tb);
Mika Westerberg884e4d52020-08-31 13:05:14 +0300684int tb_domain_freeze_noirq(struct tb *tb);
685int tb_domain_thaw_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300686void tb_domain_complete(struct tb *tb);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300687int tb_domain_runtime_suspend(struct tb *tb);
688int tb_domain_runtime_resume(struct tb *tb);
Mika Westerberg3da88be2020-11-10 11:47:14 +0300689int tb_domain_disapprove_switch(struct tb *tb, struct tb_switch *sw);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300690int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
691int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
692int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300693int tb_domain_disconnect_pcie_paths(struct tb *tb);
Mika Westerberg180b0682021-01-08 16:25:39 +0200694int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
695 int transmit_path, int transmit_ring,
696 int receive_path, int receive_ring);
697int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
698 int transmit_path, int transmit_ring,
699 int receive_path, int receive_ring);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300700int tb_domain_disconnect_all_paths(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300701
Mika Westerberg559c1e12018-10-22 14:47:01 +0300702static inline struct tb *tb_domain_get(struct tb *tb)
703{
704 if (tb)
705 get_device(&tb->dev);
706 return tb;
707}
708
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300709static inline void tb_domain_put(struct tb *tb)
710{
711 put_device(&tb->dev);
712}
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200713
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200714struct tb_nvm *tb_nvm_alloc(struct device *dev);
715int tb_nvm_add_active(struct tb_nvm *nvm, size_t size, nvmem_reg_read_t reg_read);
716int tb_nvm_write_buf(struct tb_nvm *nvm, unsigned int offset, void *val,
717 size_t bytes);
718int tb_nvm_add_non_active(struct tb_nvm *nvm, size_t size,
719 nvmem_reg_write_t reg_write);
720void tb_nvm_free(struct tb_nvm *nvm);
721void tb_nvm_exit(void);
722
Mika Westerberg9b383032021-04-01 16:54:15 +0300723typedef int (*read_block_fn)(void *, unsigned int, void *, size_t);
724typedef int (*write_block_fn)(void *, unsigned int, const void *, size_t);
725
726int tb_nvm_read_data(unsigned int address, void *buf, size_t size,
727 unsigned int retries, read_block_fn read_block,
728 void *read_block_data);
729int tb_nvm_write_data(unsigned int address, const void *buf, size_t size,
730 unsigned int retries, write_block_fn write_next_block,
731 void *write_block_data);
732
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300733struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
734 u64 route);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300735struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
736 struct device *parent, u64 route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300737int tb_switch_configure(struct tb_switch *sw);
738int tb_switch_add(struct tb_switch *sw);
739void tb_switch_remove(struct tb_switch *sw);
Mika Westerberg6ac6fae2020-06-05 14:25:02 +0300740void tb_switch_suspend(struct tb_switch *sw, bool runtime);
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200741int tb_switch_resume(struct tb_switch *sw);
Mika Westerberg356b6c42019-09-19 15:25:30 +0300742int tb_switch_reset(struct tb_switch *sw);
Lukas Wunneraae20bb2016-03-20 13:57:20 +0100743void tb_sw_set_unplugged(struct tb_switch *sw);
Mika Westerberg386e5e22019-12-17 15:33:37 +0300744struct tb_port *tb_switch_find_port(struct tb_switch *sw,
745 enum tb_port_type type);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300746struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
747 u8 depth);
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200748struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +0300749struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300750
Mika Westerbergb433d012019-09-30 14:07:22 +0300751/**
752 * tb_switch_for_each_port() - Iterate over each switch port
753 * @sw: Switch whose ports to iterate
754 * @p: Port used as iterator
755 *
756 * Iterates over each switch port skipping the control port (port %0).
757 */
758#define tb_switch_for_each_port(sw, p) \
759 for ((p) = &(sw)->ports[1]; \
760 (p) <= &(sw)->ports[(sw)->config.max_port_number]; (p)++)
761
Mika Westerbergb6b0ea72017-10-04 15:19:20 +0300762static inline struct tb_switch *tb_switch_get(struct tb_switch *sw)
763{
764 if (sw)
765 get_device(&sw->dev);
766 return sw;
767}
768
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300769static inline void tb_switch_put(struct tb_switch *sw)
770{
771 put_device(&sw->dev);
772}
773
774static inline bool tb_is_switch(const struct device *dev)
775{
776 return dev->type == &tb_switch_type;
777}
778
779static inline struct tb_switch *tb_to_switch(struct device *dev)
780{
781 if (tb_is_switch(dev))
782 return container_of(dev, struct tb_switch, dev);
783 return NULL;
784}
785
Mika Westerberg0414bec2017-02-19 23:43:26 +0200786static inline struct tb_switch *tb_switch_parent(struct tb_switch *sw)
787{
788 return tb_to_switch(sw->dev.parent);
789}
790
Mika Westerberg17a8f812019-10-08 16:42:47 +0300791static inline bool tb_switch_is_light_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200792{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300793 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
794 sw->config.device_id == PCI_DEVICE_ID_INTEL_LIGHT_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200795}
796
Mika Westerberg17a8f812019-10-08 16:42:47 +0300797static inline bool tb_switch_is_eagle_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200798{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300799 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
800 sw->config.device_id == PCI_DEVICE_ID_INTEL_EAGLE_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200801}
802
Mika Westerberg17a8f812019-10-08 16:42:47 +0300803static inline bool tb_switch_is_cactus_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200804{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300805 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
806 switch (sw->config.device_id) {
807 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
808 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
809 return true;
810 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200811 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300812 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200813}
814
Mika Westerberg17a8f812019-10-08 16:42:47 +0300815static inline bool tb_switch_is_falcon_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200816{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300817 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
818 switch (sw->config.device_id) {
819 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
820 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
821 return true;
822 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200823 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300824 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200825}
826
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200827static inline bool tb_switch_is_alpine_ridge(const struct tb_switch *sw)
828{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300829 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
830 switch (sw->config.device_id) {
831 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
832 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
833 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
834 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
835 return true;
836 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200837 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300838 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200839}
840
841static inline bool tb_switch_is_titan_ridge(const struct tb_switch *sw)
842{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300843 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
844 switch (sw->config.device_id) {
845 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
846 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
847 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
848 return true;
849 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200850 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300851 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200852}
853
Mika Westerbergf07a3602019-06-25 15:10:01 +0300854/**
Mika Westerbergb0407982019-12-17 15:33:40 +0300855 * tb_switch_is_usb4() - Is the switch USB4 compliant
856 * @sw: Switch to check
857 *
858 * Returns true if the @sw is USB4 compliant router, false otherwise.
859 */
860static inline bool tb_switch_is_usb4(const struct tb_switch *sw)
861{
862 return sw->config.thunderbolt_version == USB4_VERSION_1_0;
863}
864
865/**
Mika Westerbergf07a3602019-06-25 15:10:01 +0300866 * tb_switch_is_icm() - Is the switch handled by ICM firmware
867 * @sw: Switch to check
868 *
869 * In case there is a need to differentiate whether ICM firmware or SW CM
870 * is handling @sw this function can be called. It is valid to call this
871 * after tb_switch_alloc() and tb_switch_configure() has been called
872 * (latter only for SW CM case).
873 */
874static inline bool tb_switch_is_icm(const struct tb_switch *sw)
875{
876 return !sw->config.enabled;
877}
878
Mika Westerberg91c0c122019-03-21 19:03:00 +0200879int tb_switch_lane_bonding_enable(struct tb_switch *sw);
880void tb_switch_lane_bonding_disable(struct tb_switch *sw);
Mika Westerbergde462032020-04-02 14:50:52 +0300881int tb_switch_configure_link(struct tb_switch *sw);
882void tb_switch_unconfigure_link(struct tb_switch *sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +0200883
Mika Westerberg8afe9092019-03-26 15:52:30 +0300884bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
885int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
886void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
887
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300888int tb_switch_tmu_init(struct tb_switch *sw);
889int tb_switch_tmu_post_time(struct tb_switch *sw);
890int tb_switch_tmu_disable(struct tb_switch *sw);
891int tb_switch_tmu_enable(struct tb_switch *sw);
892
893static inline bool tb_switch_tmu_is_enabled(const struct tb_switch *sw)
894{
895 return sw->tmu.rate == TB_SWITCH_TMU_RATE_HIFI &&
896 !sw->tmu.unidirectional;
897}
898
Andreas Noever9da672a2014-06-03 22:04:05 +0200899int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
Andreas Noever520b6702014-06-03 22:04:07 +0200900int tb_port_add_nfc_credits(struct tb_port *port, int credits);
901int tb_port_clear_counter(struct tb_port *port, int counter);
Mika Westerbergb0407982019-12-17 15:33:40 +0300902int tb_port_unlock(struct tb_port *port);
Mika Westerberg341d4512020-02-21 12:11:54 +0200903int tb_port_enable(struct tb_port *port);
904int tb_port_disable(struct tb_port *port);
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200905int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
906void tb_port_release_in_hopid(struct tb_port *port, int hopid);
907int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
908void tb_port_release_out_hopid(struct tb_port *port, int hopid);
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200909struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
910 struct tb_port *prev);
Andreas Noever9da672a2014-06-03 22:04:05 +0200911
Mika Westerberg56ad3ae2021-03-10 13:34:12 +0200912static inline bool tb_port_use_credit_allocation(const struct tb_port *port)
913{
914 return tb_port_is_null(port) && port->sw->credit_allocation;
915}
916
Mika Westerbergc64c3f32020-04-29 17:07:59 +0300917/**
918 * tb_for_each_port_on_path() - Iterate over each port on path
919 * @src: Source port
920 * @dst: Destination port
921 * @p: Port used as iterator
922 *
923 * Walks over each port on path from @src to @dst.
924 */
925#define tb_for_each_port_on_path(src, dst, p) \
926 for ((p) = tb_next_port_on_path((src), (dst), NULL); (p); \
927 (p) = tb_next_port_on_path((src), (dst), (p)))
928
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300929int tb_port_get_link_speed(struct tb_port *port);
Isaac Hazan4210d502020-09-24 11:43:58 +0300930int tb_port_get_link_width(struct tb_port *port);
Isaac Hazan5cc0df92020-09-24 11:44:01 +0300931int tb_port_state(struct tb_port *port);
932int tb_port_lane_bonding_enable(struct tb_port *port);
933void tb_port_lane_bonding_disable(struct tb_port *port);
Mika Westerberge7051be2021-03-22 16:54:54 +0200934int tb_port_wait_for_link_width(struct tb_port *port, int width,
935 int timeout_msec);
Mika Westerberg69fea372021-03-22 17:01:59 +0200936int tb_port_update_credits(struct tb_port *port);
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300937
Mika Westerbergda2da042017-06-06 15:24:58 +0300938int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
Rajmohan Maniaa43a9d2019-12-17 15:33:42 +0300939int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap);
Mika Westerberg6de057e2020-06-29 20:21:07 +0300940int tb_switch_next_cap(struct tb_switch *sw, unsigned int offset);
Mika Westerbergda2da042017-06-06 15:24:58 +0300941int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
Mika Westerberg3c8b2282020-06-29 20:15:17 +0300942int tb_port_next_cap(struct tb_port *port, unsigned int offset);
Mika Westerberge78db6f2017-10-12 16:45:50 +0300943bool tb_port_is_enabled(struct tb_port *port);
Andreas Noevere2b87852014-06-03 22:04:03 +0200944
Rajmohan Manie6f81852019-12-17 15:33:44 +0300945bool tb_usb3_port_is_enabled(struct tb_port *port);
946int tb_usb3_port_enable(struct tb_port *port, bool enable);
947
Mika Westerberg0414bec2017-02-19 23:43:26 +0200948bool tb_pci_port_is_enabled(struct tb_port *port);
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200949int tb_pci_port_enable(struct tb_port *port, bool enable);
950
Mika Westerberg4f807e42018-09-17 16:30:49 +0300951int tb_dp_port_hpd_is_active(struct tb_port *port);
952int tb_dp_port_hpd_clear(struct tb_port *port);
953int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
954 unsigned int aux_tx, unsigned int aux_rx);
955bool tb_dp_port_is_enabled(struct tb_port *port);
956int tb_dp_port_enable(struct tb_port *port, bool enable);
957
Mika Westerberg0414bec2017-02-19 23:43:26 +0200958struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
959 struct tb_port *dst, int dst_hopid,
960 struct tb_port **last, const char *name);
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200961struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
962 struct tb_port *dst, int dst_hopid, int link_nr,
963 const char *name);
Andreas Noever520b6702014-06-03 22:04:07 +0200964void tb_path_free(struct tb_path *path);
965int tb_path_activate(struct tb_path *path);
966void tb_path_deactivate(struct tb_path *path);
967bool tb_path_is_invalid(struct tb_path *path);
Mika Westerberg0bd680c2020-03-24 14:44:13 +0200968bool tb_path_port_on_path(const struct tb_path *path,
969 const struct tb_port *port);
Andreas Noever520b6702014-06-03 22:04:07 +0200970
Mika Westerberg6ed541c2021-03-22 18:09:35 +0200971/**
972 * tb_path_for_each_hop() - Iterate over each hop on path
973 * @path: Path whose hops to iterate
974 * @hop: Hop used as iterator
975 *
976 * Iterates over each hop on path.
977 */
978#define tb_path_for_each_hop(path, hop) \
979 for ((hop) = &(path)->hops[0]; \
980 (hop) <= &(path)->hops[(path)->path_length - 1]; (hop)++)
981
Andreas Noevercd22e732014-06-12 23:11:46 +0200982int tb_drom_read(struct tb_switch *sw);
983int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
Andreas Noeverc90553b2014-06-03 22:04:11 +0200984
Mika Westerberga9be5582019-01-09 16:42:12 +0200985int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid);
Mika Westerberge28178b2020-04-02 12:42:44 +0300986int tb_lc_configure_port(struct tb_port *port);
987void tb_lc_unconfigure_port(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +0300988int tb_lc_configure_xdomain(struct tb_port *port);
989void tb_lc_unconfigure_xdomain(struct tb_port *port);
Mika Westerbergfdb08872020-11-26 12:52:43 +0300990int tb_lc_start_lane_initialization(struct tb_port *port);
Mika Westerbergb2911a52019-12-06 18:36:07 +0200991int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerberg5480dfc2019-01-09 17:25:43 +0200992int tb_lc_set_sleep(struct tb_switch *sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +0200993bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
Mika Westerberg8afe9092019-03-26 15:52:30 +0300994bool tb_lc_dp_sink_query(struct tb_switch *sw, struct tb_port *in);
995int tb_lc_dp_sink_alloc(struct tb_switch *sw, struct tb_port *in);
996int tb_lc_dp_sink_dealloc(struct tb_switch *sw, struct tb_port *in);
Mario Limonciello1cb36292020-06-23 11:14:29 -0500997int tb_lc_force_power(struct tb_switch *sw);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200998
999static inline int tb_route_length(u64 route)
1000{
1001 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
1002}
1003
Andreas Noever9da672a2014-06-03 22:04:05 +02001004/**
1005 * tb_downstream_route() - get route to downstream switch
1006 *
1007 * Port must not be the upstream port (otherwise a loop is created).
1008 *
1009 * Return: Returns a route to the switch behind @port.
1010 */
1011static inline u64 tb_downstream_route(struct tb_port *port)
1012{
1013 return tb_route(port->sw)
1014 | ((u64) port->port << (port->sw->config.depth * 8));
1015}
1016
Mika Westerberg5ca67682020-10-22 13:22:06 +03001017bool tb_is_xdomain_enabled(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +03001018bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
1019 const void *buf, size_t size);
1020struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
1021 u64 route, const uuid_t *local_uuid,
1022 const uuid_t *remote_uuid);
1023void tb_xdomain_add(struct tb_xdomain *xd);
1024void tb_xdomain_remove(struct tb_xdomain *xd);
1025struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
1026 u8 depth);
1027
Rajmohan Mani3fb10ea2021-04-01 18:42:38 +03001028int tb_retimer_scan(struct tb_port *port, bool add);
Kranthi Kuntaladacb1282020-03-05 16:39:58 +02001029void tb_retimer_remove_all(struct tb_port *port);
1030
1031static inline bool tb_is_retimer(const struct device *dev)
1032{
1033 return dev->type == &tb_retimer_type;
1034}
1035
1036static inline struct tb_retimer *tb_to_retimer(struct device *dev)
1037{
1038 if (tb_is_retimer(dev))
1039 return container_of(dev, struct tb_retimer, dev);
1040 return NULL;
1041}
1042
Mika Westerbergb0407982019-12-17 15:33:40 +03001043int usb4_switch_setup(struct tb_switch *sw);
1044int usb4_switch_read_uid(struct tb_switch *sw, u64 *uid);
1045int usb4_switch_drom_read(struct tb_switch *sw, unsigned int address, void *buf,
1046 size_t size);
Mika Westerbergb0407982019-12-17 15:33:40 +03001047bool usb4_switch_lane_bonding_possible(struct tb_switch *sw);
Mika Westerbergb2911a52019-12-06 18:36:07 +02001048int usb4_switch_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerbergb0407982019-12-17 15:33:40 +03001049int usb4_switch_set_sleep(struct tb_switch *sw);
1050int usb4_switch_nvm_sector_size(struct tb_switch *sw);
1051int usb4_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
1052 size_t size);
Mika Westerberg1cbf6802021-04-12 15:25:08 +03001053int usb4_switch_nvm_set_offset(struct tb_switch *sw, unsigned int address);
Mika Westerbergb0407982019-12-17 15:33:40 +03001054int usb4_switch_nvm_write(struct tb_switch *sw, unsigned int address,
1055 const void *buf, size_t size);
1056int usb4_switch_nvm_authenticate(struct tb_switch *sw);
Mika Westerberg661b1942020-11-10 11:34:07 +03001057int usb4_switch_nvm_authenticate_status(struct tb_switch *sw, u32 *status);
Mika Westerberg56ad3ae2021-03-10 13:34:12 +02001058int usb4_switch_credits_init(struct tb_switch *sw);
Mika Westerbergb0407982019-12-17 15:33:40 +03001059bool usb4_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
1060int usb4_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
1061int usb4_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
1062struct tb_port *usb4_switch_map_pcie_down(struct tb_switch *sw,
1063 const struct tb_port *port);
Rajmohan Manie6f81852019-12-17 15:33:44 +03001064struct tb_port *usb4_switch_map_usb3_down(struct tb_switch *sw,
1065 const struct tb_port *port);
Mika Westerbergcae5f512021-04-01 17:34:20 +03001066int usb4_switch_add_ports(struct tb_switch *sw);
1067void usb4_switch_remove_ports(struct tb_switch *sw);
Mika Westerbergb0407982019-12-17 15:33:40 +03001068
1069int usb4_port_unlock(struct tb_port *port);
Mika Westerberge28178b2020-04-02 12:42:44 +03001070int usb4_port_configure(struct tb_port *port);
1071void usb4_port_unconfigure(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +03001072int usb4_port_configure_xdomain(struct tb_port *port);
1073void usb4_port_unconfigure_xdomain(struct tb_port *port);
Rajmohan Mani3406de72021-04-01 18:38:05 +03001074int usb4_port_router_offline(struct tb_port *port);
1075int usb4_port_router_online(struct tb_port *port);
Rajmohan Mani02d12852020-03-05 16:33:46 +02001076int usb4_port_enumerate_retimers(struct tb_port *port);
1077
Rajmohan Mani3406de72021-04-01 18:38:05 +03001078int usb4_port_retimer_set_inbound_sbtx(struct tb_port *port, u8 index);
Rajmohan Mani02d12852020-03-05 16:33:46 +02001079int usb4_port_retimer_read(struct tb_port *port, u8 index, u8 reg, void *buf,
1080 u8 size);
1081int usb4_port_retimer_write(struct tb_port *port, u8 index, u8 reg,
1082 const void *buf, u8 size);
1083int usb4_port_retimer_is_last(struct tb_port *port, u8 index);
1084int usb4_port_retimer_nvm_sector_size(struct tb_port *port, u8 index);
1085int usb4_port_retimer_nvm_write(struct tb_port *port, u8 index,
1086 unsigned int address, const void *buf,
1087 size_t size);
1088int usb4_port_retimer_nvm_authenticate(struct tb_port *port, u8 index);
1089int usb4_port_retimer_nvm_authenticate_status(struct tb_port *port, u8 index,
1090 u32 *status);
1091int usb4_port_retimer_nvm_read(struct tb_port *port, u8 index,
1092 unsigned int address, void *buf, size_t size);
Mika Westerberg3b1d8d52020-02-21 23:14:41 +02001093
1094int usb4_usb3_port_max_link_rate(struct tb_port *port);
1095int usb4_usb3_port_actual_link_rate(struct tb_port *port);
1096int usb4_usb3_port_allocated_bandwidth(struct tb_port *port, int *upstream_bw,
1097 int *downstream_bw);
1098int usb4_usb3_port_allocate_bandwidth(struct tb_port *port, int *upstream_bw,
1099 int *downstream_bw);
1100int usb4_usb3_port_release_bandwidth(struct tb_port *port, int *upstream_bw,
1101 int *downstream_bw);
Mario Limonciello1cb36292020-06-23 11:14:29 -05001102
Mika Westerbergcae5f512021-04-01 17:34:20 +03001103static inline bool tb_is_usb4_port_device(const struct device *dev)
1104{
1105 return dev->type == &usb4_port_device_type;
1106}
1107
1108static inline struct usb4_port *tb_to_usb4_port_device(struct device *dev)
1109{
1110 if (tb_is_usb4_port_device(dev))
1111 return container_of(dev, struct usb4_port, dev);
1112 return NULL;
1113}
1114
1115struct usb4_port *usb4_port_device_add(struct tb_port *port);
1116void usb4_port_device_remove(struct usb4_port *usb4);
Rajmohan Mani3fb10ea2021-04-01 18:42:38 +03001117int usb4_port_device_resume(struct usb4_port *usb4);
Mika Westerbergcae5f512021-04-01 17:34:20 +03001118
Mika Westerberg810278d2020-08-26 08:58:29 +03001119/* Keep link controller awake during update */
Mario Limonciello1cb36292020-06-23 11:14:29 -05001120#define QUIRK_FORCE_POWER_LINK_CONTROLLER BIT(0)
1121
1122void tb_check_quirks(struct tb_switch *sw);
1123
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001124#ifdef CONFIG_ACPI
1125void tb_acpi_add_links(struct tb_nhi *nhi);
Mika Westerbergc6da62a2020-02-18 16:14:42 +02001126
1127bool tb_acpi_is_native(void);
1128bool tb_acpi_may_tunnel_usb3(void);
1129bool tb_acpi_may_tunnel_dp(void);
1130bool tb_acpi_may_tunnel_pcie(void);
1131bool tb_acpi_is_xdomain_allowed(void);
Rajmohan Maniccc5cb82021-04-01 18:20:17 +03001132
1133int tb_acpi_init(void);
1134void tb_acpi_exit(void);
1135int tb_acpi_power_on_retimers(struct tb_port *port);
1136int tb_acpi_power_off_retimers(struct tb_port *port);
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001137#else
1138static inline void tb_acpi_add_links(struct tb_nhi *nhi) { }
Mika Westerbergc6da62a2020-02-18 16:14:42 +02001139
1140static inline bool tb_acpi_is_native(void) { return true; }
1141static inline bool tb_acpi_may_tunnel_usb3(void) { return true; }
1142static inline bool tb_acpi_may_tunnel_dp(void) { return true; }
1143static inline bool tb_acpi_may_tunnel_pcie(void) { return true; }
1144static inline bool tb_acpi_is_xdomain_allowed(void) { return true; }
Rajmohan Maniccc5cb82021-04-01 18:20:17 +03001145
1146static inline int tb_acpi_init(void) { return 0; }
1147static inline void tb_acpi_exit(void) { }
1148static inline int tb_acpi_power_on_retimers(struct tb_port *port) { return 0; }
1149static inline int tb_acpi_power_off_retimers(struct tb_port *port) { return 0; }
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001150#endif
1151
Gil Fine54e41812020-06-29 20:30:52 +03001152#ifdef CONFIG_DEBUG_FS
1153void tb_debugfs_init(void);
1154void tb_debugfs_exit(void);
1155void tb_switch_debugfs_init(struct tb_switch *sw);
1156void tb_switch_debugfs_remove(struct tb_switch *sw);
Mika Westerberg407ac932020-10-07 17:53:44 +03001157void tb_service_debugfs_init(struct tb_service *svc);
1158void tb_service_debugfs_remove(struct tb_service *svc);
Gil Fine54e41812020-06-29 20:30:52 +03001159#else
1160static inline void tb_debugfs_init(void) { }
1161static inline void tb_debugfs_exit(void) { }
1162static inline void tb_switch_debugfs_init(struct tb_switch *sw) { }
1163static inline void tb_switch_debugfs_remove(struct tb_switch *sw) { }
Mika Westerberg407ac932020-10-07 17:53:44 +03001164static inline void tb_service_debugfs_init(struct tb_service *svc) { }
1165static inline void tb_service_debugfs_remove(struct tb_service *svc) { }
Gil Fine54e41812020-06-29 20:30:52 +03001166#endif
1167
Mika Westerberg2c6ea4e2020-08-24 12:46:52 +03001168#ifdef CONFIG_USB4_KUNIT_TEST
1169int tb_test_init(void);
1170void tb_test_exit(void);
1171#else
1172static inline int tb_test_init(void) { return 0; }
1173static inline void tb_test_exit(void) { }
1174#endif
1175
Andreas Noeverd6cc51c2014-06-03 22:04:00 +02001176#endif