blob: 3885f2515aaeae2e1f4b3ec53daa98df45e9b2b4 [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
23
24/* Intel specific NVM offsets */
25#define NVM_DEVID 0x05
26#define NVM_VERSION 0x08
27#define NVM_FLASH_SIZE 0x45
28
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020029/**
Mika Westerberg719a5fe2020-03-05 11:37:15 +020030 * struct tb_nvm - Structure holding NVM information
31 * @dev: Owner of the NVM
Mika Westerberge6b245c2017-06-06 15:25:17 +030032 * @major: Major version number of the active NVM portion
33 * @minor: Minor version number of the active NVM portion
34 * @id: Identifier used with both NVM portions
35 * @active: Active portion NVMem device
36 * @non_active: Non-active portion NVMem device
37 * @buf: Buffer where the NVM image is stored before it is written to
38 * the actual NVM flash device
39 * @buf_data_size: Number of bytes actually consumed by the new NVM
40 * image
Mika Westerberg719a5fe2020-03-05 11:37:15 +020041 * @authenticating: The device is authenticating the new NVM
Mario Limonciello4b794f82020-06-23 11:14:28 -050042 * @flushed: The image has been flushed to the storage area
Mika Westerberg719a5fe2020-03-05 11:37:15 +020043 *
44 * The user of this structure needs to handle serialization of possible
45 * concurrent access.
Mika Westerberge6b245c2017-06-06 15:25:17 +030046 */
Mika Westerberg719a5fe2020-03-05 11:37:15 +020047struct tb_nvm {
48 struct device *dev;
Mika Westerberge6b245c2017-06-06 15:25:17 +030049 u8 major;
50 u8 minor;
51 int id;
52 struct nvmem_device *active;
53 struct nvmem_device *non_active;
54 void *buf;
55 size_t buf_data_size;
56 bool authenticating;
Mario Limonciello4b794f82020-06-23 11:14:28 -050057 bool flushed;
Mika Westerberge6b245c2017-06-06 15:25:17 +030058};
59
Mika Westerbergf67cf492017-06-06 15:25:16 +030060#define TB_SWITCH_KEY_SIZE 32
Mika Westerbergf0342e72018-12-30 12:14:46 +020061#define TB_SWITCH_MAX_DEPTH 6
Mika Westerbergb0407982019-12-17 15:33:40 +030062#define USB4_SWITCH_MAX_DEPTH 5
Mika Westerbergf67cf492017-06-06 15:25:16 +030063
64/**
Rajmohan Manicf29b9af2019-12-17 15:33:43 +030065 * enum tb_switch_tmu_rate - TMU refresh rate
66 * @TB_SWITCH_TMU_RATE_OFF: %0 (Disable Time Sync handshake)
67 * @TB_SWITCH_TMU_RATE_HIFI: %16 us time interval between successive
68 * transmission of the Delay Request TSNOS
69 * (Time Sync Notification Ordered Set) on a Link
70 * @TB_SWITCH_TMU_RATE_NORMAL: %1 ms time interval between successive
71 * transmission of the Delay Request TSNOS on
72 * a Link
73 */
74enum tb_switch_tmu_rate {
75 TB_SWITCH_TMU_RATE_OFF = 0,
76 TB_SWITCH_TMU_RATE_HIFI = 16,
77 TB_SWITCH_TMU_RATE_NORMAL = 1000,
78};
79
80/**
81 * struct tb_switch_tmu - Structure holding switch TMU configuration
82 * @cap: Offset to the TMU capability (%0 if not found)
83 * @has_ucap: Does the switch support uni-directional mode
84 * @rate: TMU refresh rate related to upstream switch. In case of root
85 * switch this holds the domain rate.
86 * @unidirectional: Is the TMU in uni-directional or bi-directional mode
87 * related to upstream switch. Don't case for root switch.
88 */
89struct tb_switch_tmu {
90 int cap;
91 bool has_ucap;
92 enum tb_switch_tmu_rate rate;
93 bool unidirectional;
94};
95
96/**
Andreas Noevera25c8b22014-06-03 22:04:02 +020097 * struct tb_switch - a thunderbolt switch
Mika Westerbergbfe778a2017-06-06 15:25:01 +030098 * @dev: Device for the switch
99 * @config: Switch configuration
100 * @ports: Ports in this switch
Mika Westerberg3e136762017-06-06 15:25:14 +0300101 * @dma_port: If the switch has port supporting DMA configuration based
102 * mailbox this will hold the pointer to that (%NULL
Mika Westerberge6b245c2017-06-06 15:25:17 +0300103 * otherwise). If set it also means the switch has
104 * upgradeable NVM.
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300105 * @tmu: The switch TMU configuration
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300106 * @tb: Pointer to the domain the switch belongs to
107 * @uid: Unique ID of the switch
108 * @uuid: UUID of the switch (or %NULL if not supported)
109 * @vendor: Vendor ID of the switch
110 * @device: Device ID of the switch
Mika Westerberg72ee3392017-06-06 15:25:05 +0300111 * @vendor_name: Name of the vendor (or %NULL if not known)
112 * @device_name: Name of the device (or %NULL if not known)
Mika Westerberg91c0c122019-03-21 19:03:00 +0200113 * @link_speed: Speed of the link in Gb/s
114 * @link_width: Width of the link (1 or 2)
Mika Westerbergbbcf40b2020-03-04 17:09:14 +0200115 * @link_usb4: Upstream link is USB4
Mika Westerberg2c3c4192017-06-06 15:25:13 +0300116 * @generation: Switch Thunderbolt generation
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300117 * @cap_plug_events: Offset to the plug events capability (%0 if not found)
Mika Westerberga9be5582019-01-09 16:42:12 +0200118 * @cap_lc: Offset to the link controller capability (%0 if not found)
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300119 * @is_unplugged: The switch is going away
120 * @drom: DROM of the switch (%NULL if not found)
Mika Westerberge6b245c2017-06-06 15:25:17 +0300121 * @nvm: Pointer to the NVM if the switch has one (%NULL otherwise)
122 * @no_nvm_upgrade: Prevent NVM upgrade of this switch
123 * @safe_mode: The switch is in safe-mode
Yehezkel Bernat14862ee2018-01-22 12:50:09 +0200124 * @boot: Whether the switch was already authorized on boot or not
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300125 * @rpm: The switch supports runtime PM
Mika Westerbergf67cf492017-06-06 15:25:16 +0300126 * @authorized: Whether the switch is authorized by user or policy
Mika Westerbergf67cf492017-06-06 15:25:16 +0300127 * @security_level: Switch supported security level
Gil Fine54e41812020-06-29 20:30:52 +0300128 * @debugfs_dir: Pointer to the debugfs structure
Mika Westerbergf67cf492017-06-06 15:25:16 +0300129 * @key: Contains the key used to challenge the device or %NULL if not
130 * supported. Size of the key is %TB_SWITCH_KEY_SIZE.
131 * @connection_id: Connection ID used with ICM messaging
132 * @connection_key: Connection key used with ICM messaging
133 * @link: Root switch link this switch is connected (ICM only)
134 * @depth: Depth in the chain this switch is connected (ICM only)
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300135 * @rpm_complete: Completion used to wait for runtime resume to
136 * complete (ICM only)
Mario Limonciello1cb36292020-06-23 11:14:29 -0500137 * @quirks: Quirks used for this Thunderbolt switch
Mika Westerbergf67cf492017-06-06 15:25:16 +0300138 *
139 * When the switch is being added or removed to the domain (other
Mika Westerberg09f11b62019-03-19 16:48:41 +0200140 * switches) you need to have domain lock held.
Andreas Noevera25c8b22014-06-03 22:04:02 +0200141 */
142struct tb_switch {
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300143 struct device dev;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200144 struct tb_regs_switch_header config;
145 struct tb_port *ports;
Mika Westerberg3e136762017-06-06 15:25:14 +0300146 struct tb_dma_port *dma_port;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300147 struct tb_switch_tmu tmu;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200148 struct tb *tb;
Andreas Noeverc90553b2014-06-03 22:04:11 +0200149 u64 uid;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200150 uuid_t *uuid;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300151 u16 vendor;
152 u16 device;
Mika Westerberg72ee3392017-06-06 15:25:05 +0300153 const char *vendor_name;
154 const char *device_name;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200155 unsigned int link_speed;
156 unsigned int link_width;
Mika Westerbergbbcf40b2020-03-04 17:09:14 +0200157 bool link_usb4;
Mika Westerberg2c3c4192017-06-06 15:25:13 +0300158 unsigned int generation;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300159 int cap_plug_events;
Mika Westerberga9be5582019-01-09 16:42:12 +0200160 int cap_lc;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300161 bool is_unplugged;
Andreas Noevercd22e732014-06-12 23:11:46 +0200162 u8 *drom;
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200163 struct tb_nvm *nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300164 bool no_nvm_upgrade;
165 bool safe_mode;
Yehezkel Bernat14862ee2018-01-22 12:50:09 +0200166 bool boot;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300167 bool rpm;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300168 unsigned int authorized;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300169 enum tb_security_level security_level;
Gil Fine54e41812020-06-29 20:30:52 +0300170 struct dentry *debugfs_dir;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300171 u8 *key;
172 u8 connection_id;
173 u8 connection_key;
174 u8 link;
175 u8 depth;
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300176 struct completion rpm_complete;
Mario Limonciello1cb36292020-06-23 11:14:29 -0500177 unsigned long quirks;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200178};
179
180/**
181 * struct tb_port - a thunderbolt port, part of a tb_switch
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300182 * @config: Cached port configuration read from registers
183 * @sw: Switch the port belongs to
184 * @remote: Remote port (%NULL if not connected)
185 * @xdomain: Remote host (%NULL if not connected)
186 * @cap_phy: Offset, zero if not found
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300187 * @cap_tmu: Offset of the adapter specific TMU capability (%0 if not present)
Mika Westerberg56183c82017-02-19 10:39:34 +0200188 * @cap_adap: Offset of the adapter specific capability (%0 if not present)
Mika Westerbergb0407982019-12-17 15:33:40 +0300189 * @cap_usb4: Offset to the USB4 port capability (%0 if not present)
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300190 * @port: Port number on switch
Nikunj A. Dadhania8824d192020-07-21 17:05:23 +0530191 * @disabled: Disabled by eeprom or enabled but not implemented
Mika Westerberg91c0c122019-03-21 19:03:00 +0200192 * @bonded: true if the port is bonded (two lanes combined as one)
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300193 * @dual_link_port: If the switch is connected using two ports, points
194 * to the other port.
195 * @link_nr: Is this primary or secondary port on the dual_link.
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200196 * @in_hopids: Currently allocated input HopIDs
197 * @out_hopids: Currently allocated output HopIDs
Mika Westerberg8afe9092019-03-26 15:52:30 +0300198 * @list: Used to link ports to DP resources list
Andreas Noevera25c8b22014-06-03 22:04:02 +0200199 */
200struct tb_port {
201 struct tb_regs_port_header config;
202 struct tb_switch *sw;
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300203 struct tb_port *remote;
204 struct tb_xdomain *xdomain;
205 int cap_phy;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300206 int cap_tmu;
Mika Westerberg56183c82017-02-19 10:39:34 +0200207 int cap_adap;
Mika Westerbergb0407982019-12-17 15:33:40 +0300208 int cap_usb4;
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300209 u8 port;
210 bool disabled;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200211 bool bonded;
Andreas Noevercd22e732014-06-12 23:11:46 +0200212 struct tb_port *dual_link_port;
213 u8 link_nr:1;
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200214 struct ida in_hopids;
215 struct ida out_hopids;
Mika Westerberg8afe9092019-03-26 15:52:30 +0300216 struct list_head list;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200217};
218
219/**
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200220 * tb_retimer: Thunderbolt retimer
221 * @dev: Device for the retimer
222 * @tb: Pointer to the domain the retimer belongs to
223 * @index: Retimer index facing the router USB4 port
224 * @vendor: Vendor ID of the retimer
225 * @device: Device ID of the retimer
226 * @port: Pointer to the lane 0 adapter
227 * @nvm: Pointer to the NVM if the retimer has one (%NULL otherwise)
228 * @auth_status: Status of last NVM authentication
229 */
230struct tb_retimer {
231 struct device dev;
232 struct tb *tb;
233 u8 index;
234 u32 vendor;
235 u32 device;
236 struct tb_port *port;
237 struct tb_nvm *nvm;
238 u32 auth_status;
239};
240
241/**
Andreas Noever520b6702014-06-03 22:04:07 +0200242 * struct tb_path_hop - routing information for a tb_path
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200243 * @in_port: Ingress port of a switch
244 * @out_port: Egress port of a switch where the packet is routed out
245 * (must be on the same switch than @in_port)
246 * @in_hop_index: HopID where the path configuration entry is placed in
247 * the path config space of @in_port.
248 * @in_counter_index: Used counter index (not used in the driver
249 * currently, %-1 to disable)
250 * @next_hop_index: HopID of the packet when it is routed out from @out_port
Mika Westerberg0414bec2017-02-19 23:43:26 +0200251 * @initial_credits: Number of initial flow control credits allocated for
252 * the path
Andreas Noever520b6702014-06-03 22:04:07 +0200253 *
254 * Hop configuration is always done on the IN port of a switch.
255 * in_port and out_port have to be on the same switch. Packets arriving on
256 * in_port with "hop" = in_hop_index will get routed to through out_port. The
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200257 * next hop to take (on out_port->remote) is determined by
258 * next_hop_index. When routing packet to another switch (out->remote is
259 * set) the @next_hop_index must match the @in_hop_index of that next
260 * hop to make routing possible.
Andreas Noever520b6702014-06-03 22:04:07 +0200261 *
262 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
263 * port.
264 */
265struct tb_path_hop {
266 struct tb_port *in_port;
267 struct tb_port *out_port;
268 int in_hop_index;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200269 int in_counter_index;
Andreas Noever520b6702014-06-03 22:04:07 +0200270 int next_hop_index;
Mika Westerberg0414bec2017-02-19 23:43:26 +0200271 unsigned int initial_credits;
Andreas Noever520b6702014-06-03 22:04:07 +0200272};
273
274/**
275 * enum tb_path_port - path options mask
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200276 * @TB_PATH_NONE: Do not activate on any hop on path
277 * @TB_PATH_SOURCE: Activate on the first hop (out of src)
278 * @TB_PATH_INTERNAL: Activate on the intermediate hops (not the first/last)
279 * @TB_PATH_DESTINATION: Activate on the last hop (into dst)
280 * @TB_PATH_ALL: Activate on all hops on the path
Andreas Noever520b6702014-06-03 22:04:07 +0200281 */
282enum tb_path_port {
283 TB_PATH_NONE = 0,
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200284 TB_PATH_SOURCE = 1,
285 TB_PATH_INTERNAL = 2,
286 TB_PATH_DESTINATION = 4,
Andreas Noever520b6702014-06-03 22:04:07 +0200287 TB_PATH_ALL = 7,
288};
289
290/**
291 * struct tb_path - a unidirectional path between two ports
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200292 * @tb: Pointer to the domain structure
293 * @name: Name of the path (used for debugging)
294 * @nfc_credits: Number of non flow controlled credits allocated for the path
295 * @ingress_shared_buffer: Shared buffering used for ingress ports on the path
296 * @egress_shared_buffer: Shared buffering used for egress ports on the path
297 * @ingress_fc_enable: Flow control for ingress ports on the path
298 * @egress_fc_enable: Flow control for egress ports on the path
299 * @priority: Priority group if the path
300 * @weight: Weight of the path inside the priority group
301 * @drop_packages: Drop packages from queue tail or head
302 * @activated: Is the path active
Mika Westerberg44242d62018-09-28 16:35:32 +0300303 * @clear_fc: Clear all flow control from the path config space entries
304 * when deactivating this path
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200305 * @hops: Path hops
306 * @path_length: How many hops the path uses
Andreas Noever520b6702014-06-03 22:04:07 +0200307 *
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200308 * A path consists of a number of hops (see &struct tb_path_hop). To
309 * establish a PCIe tunnel two paths have to be created between the two
310 * PCIe ports.
Andreas Noever520b6702014-06-03 22:04:07 +0200311 */
312struct tb_path {
313 struct tb *tb;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200314 const char *name;
315 int nfc_credits;
Andreas Noever520b6702014-06-03 22:04:07 +0200316 enum tb_path_port ingress_shared_buffer;
317 enum tb_path_port egress_shared_buffer;
318 enum tb_path_port ingress_fc_enable;
319 enum tb_path_port egress_fc_enable;
320
Nathan Chancellor37209782019-04-24 11:34:13 -0700321 unsigned int priority:3;
Andreas Noever520b6702014-06-03 22:04:07 +0200322 int weight:4;
323 bool drop_packages;
324 bool activated;
Mika Westerberg44242d62018-09-28 16:35:32 +0300325 bool clear_fc;
Andreas Noever520b6702014-06-03 22:04:07 +0200326 struct tb_path_hop *hops;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200327 int path_length;
Andreas Noever520b6702014-06-03 22:04:07 +0200328};
329
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200330/* HopIDs 0-7 are reserved by the Thunderbolt protocol */
331#define TB_PATH_MIN_HOPID 8
Mika Westerbergc738a792020-05-08 11:47:00 +0300332/*
333 * Support paths from the farthest (depth 6) router to the host and back
334 * to the same level (not necessarily to the same router).
335 */
336#define TB_PATH_MAX_HOPS (7 * 2)
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200337
Mika Westerbergb2911a52019-12-06 18:36:07 +0200338/* Possible wake types */
339#define TB_WAKE_ON_CONNECT BIT(0)
340#define TB_WAKE_ON_DISCONNECT BIT(1)
341#define TB_WAKE_ON_USB4 BIT(2)
342#define TB_WAKE_ON_USB3 BIT(3)
343#define TB_WAKE_ON_PCIE BIT(4)
344
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300345/**
346 * struct tb_cm_ops - Connection manager specific operations vector
Mika Westerbergf67cf492017-06-06 15:25:16 +0300347 * @driver_ready: Called right after control channel is started. Used by
348 * ICM to send driver ready message to the firmware.
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300349 * @start: Starts the domain
350 * @stop: Stops the domain
351 * @suspend_noirq: Connection manager specific suspend_noirq
352 * @resume_noirq: Connection manager specific resume_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300353 * @suspend: Connection manager specific suspend
Mika Westerberg884e4d52020-08-31 13:05:14 +0300354 * @freeze_noirq: Connection manager specific freeze_noirq
355 * @thaw_noirq: Connection manager specific thaw_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300356 * @complete: Connection manager specific complete
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300357 * @runtime_suspend: Connection manager specific runtime_suspend
358 * @runtime_resume: Connection manager specific runtime_resume
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300359 * @runtime_suspend_switch: Runtime suspend a switch
360 * @runtime_resume_switch: Runtime resume a switch
Mika Westerberg81a54b52017-06-06 15:25:09 +0300361 * @handle_event: Handle thunderbolt event
Mika Westerberg9aaa3b82018-01-21 12:08:04 +0200362 * @get_boot_acl: Get boot ACL list
363 * @set_boot_acl: Set boot ACL list
Mika Westerbergf67cf492017-06-06 15:25:16 +0300364 * @approve_switch: Approve switch
365 * @add_switch_key: Add key to switch
366 * @challenge_switch_key: Challenge switch using key
Mika Westerberge6b245c2017-06-06 15:25:17 +0300367 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300368 * @approve_xdomain_paths: Approve (establish) XDomain DMA paths
369 * @disconnect_xdomain_paths: Disconnect XDomain DMA paths
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300370 */
371struct tb_cm_ops {
Mika Westerbergf67cf492017-06-06 15:25:16 +0300372 int (*driver_ready)(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300373 int (*start)(struct tb *tb);
374 void (*stop)(struct tb *tb);
375 int (*suspend_noirq)(struct tb *tb);
376 int (*resume_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300377 int (*suspend)(struct tb *tb);
Mika Westerberg884e4d52020-08-31 13:05:14 +0300378 int (*freeze_noirq)(struct tb *tb);
379 int (*thaw_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300380 void (*complete)(struct tb *tb);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300381 int (*runtime_suspend)(struct tb *tb);
382 int (*runtime_resume)(struct tb *tb);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300383 int (*runtime_suspend_switch)(struct tb_switch *sw);
384 int (*runtime_resume_switch)(struct tb_switch *sw);
Mika Westerberg81a54b52017-06-06 15:25:09 +0300385 void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
386 const void *buf, size_t size);
Mika Westerberg9aaa3b82018-01-21 12:08:04 +0200387 int (*get_boot_acl)(struct tb *tb, uuid_t *uuids, size_t nuuids);
388 int (*set_boot_acl)(struct tb *tb, const uuid_t *uuids, size_t nuuids);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300389 int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
390 int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
391 int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
392 const u8 *challenge, u8 *response);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300393 int (*disconnect_pcie_paths)(struct tb *tb);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300394 int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
395 int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300396};
Andreas Noever520b6702014-06-03 22:04:07 +0200397
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300398static inline void *tb_priv(struct tb *tb)
399{
400 return (void *)tb->privdata;
401}
402
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300403#define TB_AUTOSUSPEND_DELAY 15000 /* ms */
404
Andreas Noevera25c8b22014-06-03 22:04:02 +0200405/* helper functions & macros */
406
407/**
408 * tb_upstream_port() - return the upstream port of a switch
409 *
410 * Every switch has an upstream port (for the root switch it is the NHI).
411 *
412 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
413 * non root switches (on the NHI port remote is always NULL).
414 *
415 * Return: Returns the upstream port of the switch.
416 */
417static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
418{
419 return &sw->ports[sw->config.upstream_port_number];
420}
421
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200422/**
423 * tb_is_upstream_port() - Is the port upstream facing
424 * @port: Port to check
425 *
426 * Returns true if @port is upstream facing port. In case of dual link
427 * ports both return true.
428 */
429static inline bool tb_is_upstream_port(const struct tb_port *port)
430{
431 const struct tb_port *upstream_port = tb_upstream_port(port->sw);
432 return port == upstream_port || port->dual_link_port == upstream_port;
433}
434
Mika Westerbergb323a982019-03-06 19:23:38 +0200435static inline u64 tb_route(const struct tb_switch *sw)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200436{
437 return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
438}
439
Mika Westerbergf67cf492017-06-06 15:25:16 +0300440static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
441{
442 u8 port;
443
444 port = route >> (sw->config.depth * 8);
445 if (WARN_ON(port > sw->config.max_port_number))
446 return NULL;
447 return &sw->ports[port];
448}
449
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200450/**
451 * tb_port_has_remote() - Does the port have switch connected downstream
452 * @port: Port to check
453 *
454 * Returns true only when the port is primary port and has remote set.
455 */
456static inline bool tb_port_has_remote(const struct tb_port *port)
457{
458 if (tb_is_upstream_port(port))
459 return false;
460 if (!port->remote)
461 return false;
462 if (port->dual_link_port && port->link_nr)
463 return false;
464
465 return true;
466}
467
Mika Westerberg344e0642017-10-11 17:19:54 +0300468static inline bool tb_port_is_null(const struct tb_port *port)
469{
470 return port && port->port && port->config.type == TB_TYPE_PORT;
471}
472
Mika Westerberga3cfebd2020-07-25 10:32:46 +0300473static inline bool tb_port_is_nhi(const struct tb_port *port)
474{
475 return port && port->config.type == TB_TYPE_NHI;
476}
477
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200478static inline bool tb_port_is_pcie_down(const struct tb_port *port)
479{
480 return port && port->config.type == TB_TYPE_PCIE_DOWN;
481}
482
Mika Westerberg0414bec2017-02-19 23:43:26 +0200483static inline bool tb_port_is_pcie_up(const struct tb_port *port)
484{
485 return port && port->config.type == TB_TYPE_PCIE_UP;
486}
487
Mika Westerberg4f807e42018-09-17 16:30:49 +0300488static inline bool tb_port_is_dpin(const struct tb_port *port)
489{
490 return port && port->config.type == TB_TYPE_DP_HDMI_IN;
491}
492
493static inline bool tb_port_is_dpout(const struct tb_port *port)
494{
495 return port && port->config.type == TB_TYPE_DP_HDMI_OUT;
496}
497
Rajmohan Manie6f81852019-12-17 15:33:44 +0300498static inline bool tb_port_is_usb3_down(const struct tb_port *port)
499{
500 return port && port->config.type == TB_TYPE_USB3_DOWN;
501}
502
503static inline bool tb_port_is_usb3_up(const struct tb_port *port)
504{
505 return port && port->config.type == TB_TYPE_USB3_UP;
506}
507
Andreas Noevera25c8b22014-06-03 22:04:02 +0200508static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
509 enum tb_cfg_space space, u32 offset, u32 length)
510{
Mika Westerberg47083842019-03-19 17:07:37 +0200511 if (sw->is_unplugged)
512 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200513 return tb_cfg_read(sw->tb->ctl,
514 buffer,
515 tb_route(sw),
516 0,
517 space,
518 offset,
519 length);
520}
521
Mika Westerberg826c6a12019-07-01 18:41:51 +0300522static inline int tb_sw_write(struct tb_switch *sw, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200523 enum tb_cfg_space space, u32 offset, u32 length)
524{
Mika Westerberg47083842019-03-19 17:07:37 +0200525 if (sw->is_unplugged)
526 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200527 return tb_cfg_write(sw->tb->ctl,
528 buffer,
529 tb_route(sw),
530 0,
531 space,
532 offset,
533 length);
534}
535
536static inline int tb_port_read(struct tb_port *port, void *buffer,
537 enum tb_cfg_space space, u32 offset, u32 length)
538{
Mika Westerberg47083842019-03-19 17:07:37 +0200539 if (port->sw->is_unplugged)
540 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200541 return tb_cfg_read(port->sw->tb->ctl,
542 buffer,
543 tb_route(port->sw),
544 port->port,
545 space,
546 offset,
547 length);
548}
549
Mika Westerberg16a12582017-06-06 15:24:53 +0300550static inline int tb_port_write(struct tb_port *port, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200551 enum tb_cfg_space space, u32 offset, u32 length)
552{
Mika Westerberg47083842019-03-19 17:07:37 +0200553 if (port->sw->is_unplugged)
554 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200555 return tb_cfg_write(port->sw->tb->ctl,
556 buffer,
557 tb_route(port->sw),
558 port->port,
559 space,
560 offset,
561 length);
562}
563
564#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
565#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
566#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
567#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300568#define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200569
570#define __TB_SW_PRINT(level, sw, fmt, arg...) \
571 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200572 const struct tb_switch *__sw = (sw); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200573 level(__sw->tb, "%llx: " fmt, \
574 tb_route(__sw), ## arg); \
575 } while (0)
576#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
577#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
578#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300579#define tb_sw_dbg(sw, fmt, arg...) __TB_SW_PRINT(tb_dbg, sw, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200580
581#define __TB_PORT_PRINT(level, _port, fmt, arg...) \
582 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200583 const struct tb_port *__port = (_port); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200584 level(__port->sw->tb, "%llx:%x: " fmt, \
585 tb_route(__port->sw), __port->port, ## arg); \
586 } while (0)
587#define tb_port_WARN(port, fmt, arg...) \
588 __TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
589#define tb_port_warn(port, fmt, arg...) \
590 __TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
591#define tb_port_info(port, fmt, arg...) \
592 __TB_PORT_PRINT(tb_info, port, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300593#define tb_port_dbg(port, fmt, arg...) \
594 __TB_PORT_PRINT(tb_dbg, port, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200595
Mika Westerbergf67cf492017-06-06 15:25:16 +0300596struct tb *icm_probe(struct tb_nhi *nhi);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300597struct tb *tb_probe(struct tb_nhi *nhi);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200598
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300599extern struct device_type tb_domain_type;
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200600extern struct device_type tb_retimer_type;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300601extern struct device_type tb_switch_type;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300602
603int tb_domain_init(void);
604void tb_domain_exit(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300605int tb_xdomain_init(void);
606void tb_xdomain_exit(void);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300607
608struct tb *tb_domain_alloc(struct tb_nhi *nhi, size_t privsize);
609int tb_domain_add(struct tb *tb);
610void tb_domain_remove(struct tb *tb);
611int tb_domain_suspend_noirq(struct tb *tb);
612int tb_domain_resume_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300613int tb_domain_suspend(struct tb *tb);
Mika Westerberg884e4d52020-08-31 13:05:14 +0300614int tb_domain_freeze_noirq(struct tb *tb);
615int tb_domain_thaw_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300616void tb_domain_complete(struct tb *tb);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300617int tb_domain_runtime_suspend(struct tb *tb);
618int tb_domain_runtime_resume(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300619int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
620int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
621int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300622int tb_domain_disconnect_pcie_paths(struct tb *tb);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300623int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
624int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
625int tb_domain_disconnect_all_paths(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300626
Mika Westerberg559c1e12018-10-22 14:47:01 +0300627static inline struct tb *tb_domain_get(struct tb *tb)
628{
629 if (tb)
630 get_device(&tb->dev);
631 return tb;
632}
633
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300634static inline void tb_domain_put(struct tb *tb)
635{
636 put_device(&tb->dev);
637}
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200638
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200639struct tb_nvm *tb_nvm_alloc(struct device *dev);
640int tb_nvm_add_active(struct tb_nvm *nvm, size_t size, nvmem_reg_read_t reg_read);
641int tb_nvm_write_buf(struct tb_nvm *nvm, unsigned int offset, void *val,
642 size_t bytes);
643int tb_nvm_add_non_active(struct tb_nvm *nvm, size_t size,
644 nvmem_reg_write_t reg_write);
645void tb_nvm_free(struct tb_nvm *nvm);
646void tb_nvm_exit(void);
647
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300648struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
649 u64 route);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300650struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
651 struct device *parent, u64 route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300652int tb_switch_configure(struct tb_switch *sw);
653int tb_switch_add(struct tb_switch *sw);
654void tb_switch_remove(struct tb_switch *sw);
Mika Westerberg6ac6fae2020-06-05 14:25:02 +0300655void tb_switch_suspend(struct tb_switch *sw, bool runtime);
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200656int tb_switch_resume(struct tb_switch *sw);
Mika Westerberg356b6c42019-09-19 15:25:30 +0300657int tb_switch_reset(struct tb_switch *sw);
Lukas Wunneraae20bb2016-03-20 13:57:20 +0100658void tb_sw_set_unplugged(struct tb_switch *sw);
Mika Westerberg386e5e22019-12-17 15:33:37 +0300659struct tb_port *tb_switch_find_port(struct tb_switch *sw,
660 enum tb_port_type type);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300661struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
662 u8 depth);
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200663struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +0300664struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300665
Mika Westerbergb433d012019-09-30 14:07:22 +0300666/**
667 * tb_switch_for_each_port() - Iterate over each switch port
668 * @sw: Switch whose ports to iterate
669 * @p: Port used as iterator
670 *
671 * Iterates over each switch port skipping the control port (port %0).
672 */
673#define tb_switch_for_each_port(sw, p) \
674 for ((p) = &(sw)->ports[1]; \
675 (p) <= &(sw)->ports[(sw)->config.max_port_number]; (p)++)
676
Mika Westerbergb6b0ea72017-10-04 15:19:20 +0300677static inline struct tb_switch *tb_switch_get(struct tb_switch *sw)
678{
679 if (sw)
680 get_device(&sw->dev);
681 return sw;
682}
683
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300684static inline void tb_switch_put(struct tb_switch *sw)
685{
686 put_device(&sw->dev);
687}
688
689static inline bool tb_is_switch(const struct device *dev)
690{
691 return dev->type == &tb_switch_type;
692}
693
694static inline struct tb_switch *tb_to_switch(struct device *dev)
695{
696 if (tb_is_switch(dev))
697 return container_of(dev, struct tb_switch, dev);
698 return NULL;
699}
700
Mika Westerberg0414bec2017-02-19 23:43:26 +0200701static inline struct tb_switch *tb_switch_parent(struct tb_switch *sw)
702{
703 return tb_to_switch(sw->dev.parent);
704}
705
Mika Westerberg17a8f812019-10-08 16:42:47 +0300706static inline bool tb_switch_is_light_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200707{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300708 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
709 sw->config.device_id == PCI_DEVICE_ID_INTEL_LIGHT_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200710}
711
Mika Westerberg17a8f812019-10-08 16:42:47 +0300712static inline bool tb_switch_is_eagle_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200713{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300714 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
715 sw->config.device_id == PCI_DEVICE_ID_INTEL_EAGLE_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200716}
717
Mika Westerberg17a8f812019-10-08 16:42:47 +0300718static inline bool tb_switch_is_cactus_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200719{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300720 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
721 switch (sw->config.device_id) {
722 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
723 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
724 return true;
725 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200726 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300727 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200728}
729
Mika Westerberg17a8f812019-10-08 16:42:47 +0300730static inline bool tb_switch_is_falcon_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200731{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300732 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
733 switch (sw->config.device_id) {
734 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
735 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
736 return true;
737 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200738 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300739 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200740}
741
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200742static inline bool tb_switch_is_alpine_ridge(const struct tb_switch *sw)
743{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300744 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
745 switch (sw->config.device_id) {
746 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
747 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
748 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
749 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
750 return true;
751 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200752 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300753 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200754}
755
756static inline bool tb_switch_is_titan_ridge(const struct tb_switch *sw)
757{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300758 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
759 switch (sw->config.device_id) {
760 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
761 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
762 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
763 return true;
764 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200765 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300766 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200767}
768
Mika Westerberg8c3b15a2020-08-21 09:11:50 +0300769static inline bool tb_switch_is_ice_lake(const struct tb_switch *sw)
770{
771 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
772 switch (sw->config.device_id) {
773 case PCI_DEVICE_ID_INTEL_ICL_NHI0:
774 case PCI_DEVICE_ID_INTEL_ICL_NHI1:
775 return true;
776 }
777 }
778 return false;
779}
780
Gil Fine0637e3d2020-07-25 10:44:16 +0300781static inline bool tb_switch_is_tiger_lake(const struct tb_switch *sw)
782{
783 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
784 switch (sw->config.device_id) {
785 case PCI_DEVICE_ID_INTEL_TGL_NHI0:
786 case PCI_DEVICE_ID_INTEL_TGL_NHI1:
787 return true;
788 }
789 }
790 return false;
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200791}
792
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200793/**
Mika Westerbergb0407982019-12-17 15:33:40 +0300794 * tb_switch_is_usb4() - Is the switch USB4 compliant
795 * @sw: Switch to check
796 *
797 * Returns true if the @sw is USB4 compliant router, false otherwise.
798 */
799static inline bool tb_switch_is_usb4(const struct tb_switch *sw)
800{
801 return sw->config.thunderbolt_version == USB4_VERSION_1_0;
802}
803
804/**
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200805 * tb_switch_is_icm() - Is the switch handled by ICM firmware
Andreas Noever520b6702014-06-03 22:04:07 +0200806 * @sw: Switch to check
807 *
808 * In case there is a need to differentiate whether ICM firmware or SW CM
809 * is handling @sw this function can be called. It is valid to call this
810 * after tb_switch_alloc() and tb_switch_configure() has been called
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200811 * (latter only for SW CM case).
812 */
Andreas Noever9da672a2014-06-03 22:04:05 +0200813static inline bool tb_switch_is_icm(const struct tb_switch *sw)
Andreas Noevere2b87852014-06-03 22:04:03 +0200814{
815 return !sw->config.enabled;
Mika Westerberge78db6f2017-10-12 16:45:50 +0300816}
Andreas Noevera25c8b22014-06-03 22:04:02 +0200817
Mika Westerberg0414bec2017-02-19 23:43:26 +0200818int tb_switch_lane_bonding_enable(struct tb_switch *sw);
Andreas Noever520b6702014-06-03 22:04:07 +0200819void tb_switch_lane_bonding_disable(struct tb_switch *sw);
Mika Westerbergde462032020-04-02 14:50:52 +0300820int tb_switch_configure_link(struct tb_switch *sw);
821void tb_switch_unconfigure_link(struct tb_switch *sw);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200822
Mika Westerberg8afe9092019-03-26 15:52:30 +0300823bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
824int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
825void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
826
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300827int tb_switch_tmu_init(struct tb_switch *sw);
828int tb_switch_tmu_post_time(struct tb_switch *sw);
829int tb_switch_tmu_disable(struct tb_switch *sw);
830int tb_switch_tmu_enable(struct tb_switch *sw);
831
832static inline bool tb_switch_tmu_is_enabled(const struct tb_switch *sw)
833{
834 return sw->tmu.rate == TB_SWITCH_TMU_RATE_HIFI &&
835 !sw->tmu.unidirectional;
836}
837
Andreas Noever520b6702014-06-03 22:04:07 +0200838int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
839int tb_port_add_nfc_credits(struct tb_port *port, int credits);
840int tb_port_set_initial_credits(struct tb_port *port, u32 credits);
841int tb_port_clear_counter(struct tb_port *port, int counter);
Mika Westerbergb0407982019-12-17 15:33:40 +0300842int tb_port_unlock(struct tb_port *port);
Mika Westerberg341d4512020-02-21 12:11:54 +0200843int tb_port_enable(struct tb_port *port);
844int tb_port_disable(struct tb_port *port);
Andreas Noever520b6702014-06-03 22:04:07 +0200845int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
846void tb_port_release_in_hopid(struct tb_port *port, int hopid);
847int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
848void tb_port_release_out_hopid(struct tb_port *port, int hopid);
849struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
850 struct tb_port *prev);
Andreas Noevercd22e732014-06-12 23:11:46 +0200851
Mika Westerbergc64c3f32020-04-29 17:07:59 +0300852/**
853 * tb_for_each_port_on_path() - Iterate over each port on path
854 * @src: Source port
855 * @dst: Destination port
856 * @p: Port used as iterator
857 *
858 * Walks over each port on path from @src to @dst.
859 */
860#define tb_for_each_port_on_path(src, dst, p) \
861 for ((p) = tb_next_port_on_path((src), (dst), NULL); (p); \
862 (p) = tb_next_port_on_path((src), (dst), (p)))
863
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300864int tb_port_get_link_speed(struct tb_port *port);
Isaac Hazan4210d502020-09-24 11:43:58 +0300865int tb_port_get_link_width(struct tb_port *port);
Isaac Hazan5cc0df92020-09-24 11:44:01 +0300866int tb_port_state(struct tb_port *port);
867int tb_port_lane_bonding_enable(struct tb_port *port);
868void tb_port_lane_bonding_disable(struct tb_port *port);
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300869
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200870int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
Rajmohan Maniaa43a9d2019-12-17 15:33:42 +0300871int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap);
Mika Westerberg6de057e2020-06-29 20:21:07 +0300872int tb_switch_next_cap(struct tb_switch *sw, unsigned int offset);
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200873int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
Mika Westerberg3c8b2282020-06-29 20:15:17 +0300874int tb_port_next_cap(struct tb_port *port, unsigned int offset);
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200875bool tb_port_is_enabled(struct tb_port *port);
876
Rajmohan Manie6f81852019-12-17 15:33:44 +0300877bool tb_usb3_port_is_enabled(struct tb_port *port);
878int tb_usb3_port_enable(struct tb_port *port, bool enable);
879
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200880bool tb_pci_port_is_enabled(struct tb_port *port);
881int tb_pci_port_enable(struct tb_port *port, bool enable);
882
Mika Westerberg4f807e42018-09-17 16:30:49 +0300883int tb_dp_port_hpd_is_active(struct tb_port *port);
884int tb_dp_port_hpd_clear(struct tb_port *port);
885int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
886 unsigned int aux_tx, unsigned int aux_rx);
887bool tb_dp_port_is_enabled(struct tb_port *port);
888int tb_dp_port_enable(struct tb_port *port, bool enable);
889
Mika Westerberg0414bec2017-02-19 23:43:26 +0200890struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
891 struct tb_port *dst, int dst_hopid,
892 struct tb_port **last, const char *name);
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200893struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
894 struct tb_port *dst, int dst_hopid, int link_nr,
895 const char *name);
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200896void tb_path_free(struct tb_path *path);
897int tb_path_activate(struct tb_path *path);
898void tb_path_deactivate(struct tb_path *path);
899bool tb_path_is_invalid(struct tb_path *path);
Mika Westerberg0bd680c2020-03-24 14:44:13 +0200900bool tb_path_port_on_path(const struct tb_path *path,
901 const struct tb_port *port);
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200902
Andreas Noevercd22e732014-06-12 23:11:46 +0200903int tb_drom_read(struct tb_switch *sw);
904int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
Andreas Noeverc90553b2014-06-03 22:04:11 +0200905
Mika Westerberga9be5582019-01-09 16:42:12 +0200906int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid);
Mika Westerberge28178b2020-04-02 12:42:44 +0300907int tb_lc_configure_port(struct tb_port *port);
908void tb_lc_unconfigure_port(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +0300909int tb_lc_configure_xdomain(struct tb_port *port);
910void tb_lc_unconfigure_xdomain(struct tb_port *port);
Mika Westerbergb2911a52019-12-06 18:36:07 +0200911int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerberg5480dfc2019-01-09 17:25:43 +0200912int tb_lc_set_sleep(struct tb_switch *sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +0200913bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
Mika Westerberg8afe9092019-03-26 15:52:30 +0300914bool tb_lc_dp_sink_query(struct tb_switch *sw, struct tb_port *in);
915int tb_lc_dp_sink_alloc(struct tb_switch *sw, struct tb_port *in);
916int tb_lc_dp_sink_dealloc(struct tb_switch *sw, struct tb_port *in);
Mario Limonciello1cb36292020-06-23 11:14:29 -0500917int tb_lc_force_power(struct tb_switch *sw);
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200918
919static inline int tb_route_length(u64 route)
920{
921 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
922}
923
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200924/**
925 * tb_downstream_route() - get route to downstream switch
926 *
927 * Port must not be the upstream port (otherwise a loop is created).
928 *
929 * Return: Returns a route to the switch behind @port.
930 */
931static inline u64 tb_downstream_route(struct tb_port *port)
932{
933 return tb_route(port->sw)
934 | ((u64) port->port << (port->sw->config.depth * 8));
935}
936
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300937bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
938 const void *buf, size_t size);
939struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
940 u64 route, const uuid_t *local_uuid,
941 const uuid_t *remote_uuid);
942void tb_xdomain_add(struct tb_xdomain *xd);
943void tb_xdomain_remove(struct tb_xdomain *xd);
944struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
945 u8 depth);
946
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200947int tb_retimer_scan(struct tb_port *port);
948void tb_retimer_remove_all(struct tb_port *port);
949
950static inline bool tb_is_retimer(const struct device *dev)
951{
952 return dev->type == &tb_retimer_type;
953}
954
955static inline struct tb_retimer *tb_to_retimer(struct device *dev)
956{
957 if (tb_is_retimer(dev))
958 return container_of(dev, struct tb_retimer, dev);
959 return NULL;
960}
961
Mika Westerbergb0407982019-12-17 15:33:40 +0300962int usb4_switch_setup(struct tb_switch *sw);
963int usb4_switch_read_uid(struct tb_switch *sw, u64 *uid);
964int usb4_switch_drom_read(struct tb_switch *sw, unsigned int address, void *buf,
965 size_t size);
Mika Westerbergb0407982019-12-17 15:33:40 +0300966bool usb4_switch_lane_bonding_possible(struct tb_switch *sw);
Mika Westerbergb2911a52019-12-06 18:36:07 +0200967int usb4_switch_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerbergb0407982019-12-17 15:33:40 +0300968int usb4_switch_set_sleep(struct tb_switch *sw);
969int usb4_switch_nvm_sector_size(struct tb_switch *sw);
970int usb4_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
971 size_t size);
972int usb4_switch_nvm_write(struct tb_switch *sw, unsigned int address,
973 const void *buf, size_t size);
974int usb4_switch_nvm_authenticate(struct tb_switch *sw);
Mika Westerberg661b1942020-11-10 11:34:07 +0300975int usb4_switch_nvm_authenticate_status(struct tb_switch *sw, u32 *status);
Mika Westerbergb0407982019-12-17 15:33:40 +0300976bool usb4_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
977int usb4_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
978int usb4_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
979struct tb_port *usb4_switch_map_pcie_down(struct tb_switch *sw,
980 const struct tb_port *port);
Rajmohan Manie6f81852019-12-17 15:33:44 +0300981struct tb_port *usb4_switch_map_usb3_down(struct tb_switch *sw,
982 const struct tb_port *port);
Mika Westerbergb0407982019-12-17 15:33:40 +0300983
984int usb4_port_unlock(struct tb_port *port);
Mika Westerberge28178b2020-04-02 12:42:44 +0300985int usb4_port_configure(struct tb_port *port);
986void usb4_port_unconfigure(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +0300987int usb4_port_configure_xdomain(struct tb_port *port);
988void usb4_port_unconfigure_xdomain(struct tb_port *port);
Rajmohan Mani02d12852020-03-05 16:33:46 +0200989int usb4_port_enumerate_retimers(struct tb_port *port);
990
991int usb4_port_retimer_read(struct tb_port *port, u8 index, u8 reg, void *buf,
992 u8 size);
993int usb4_port_retimer_write(struct tb_port *port, u8 index, u8 reg,
994 const void *buf, u8 size);
995int usb4_port_retimer_is_last(struct tb_port *port, u8 index);
996int usb4_port_retimer_nvm_sector_size(struct tb_port *port, u8 index);
997int usb4_port_retimer_nvm_write(struct tb_port *port, u8 index,
998 unsigned int address, const void *buf,
999 size_t size);
1000int usb4_port_retimer_nvm_authenticate(struct tb_port *port, u8 index);
1001int usb4_port_retimer_nvm_authenticate_status(struct tb_port *port, u8 index,
1002 u32 *status);
1003int usb4_port_retimer_nvm_read(struct tb_port *port, u8 index,
1004 unsigned int address, void *buf, size_t size);
Mika Westerberg3b1d8d52020-02-21 23:14:41 +02001005
1006int usb4_usb3_port_max_link_rate(struct tb_port *port);
1007int usb4_usb3_port_actual_link_rate(struct tb_port *port);
1008int usb4_usb3_port_allocated_bandwidth(struct tb_port *port, int *upstream_bw,
1009 int *downstream_bw);
1010int usb4_usb3_port_allocate_bandwidth(struct tb_port *port, int *upstream_bw,
1011 int *downstream_bw);
1012int usb4_usb3_port_release_bandwidth(struct tb_port *port, int *upstream_bw,
1013 int *downstream_bw);
Mario Limonciello1cb36292020-06-23 11:14:29 -05001014
Mika Westerberg810278d2020-08-26 08:58:29 +03001015/* Keep link controller awake during update */
Mario Limonciello1cb36292020-06-23 11:14:29 -05001016#define QUIRK_FORCE_POWER_LINK_CONTROLLER BIT(0)
1017
1018void tb_check_quirks(struct tb_switch *sw);
1019
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001020#ifdef CONFIG_ACPI
1021void tb_acpi_add_links(struct tb_nhi *nhi);
1022#else
1023static inline void tb_acpi_add_links(struct tb_nhi *nhi) { }
1024#endif
1025
Gil Fine54e41812020-06-29 20:30:52 +03001026#ifdef CONFIG_DEBUG_FS
1027void tb_debugfs_init(void);
1028void tb_debugfs_exit(void);
1029void tb_switch_debugfs_init(struct tb_switch *sw);
1030void tb_switch_debugfs_remove(struct tb_switch *sw);
Mika Westerberg407ac932020-10-07 17:53:44 +03001031void tb_service_debugfs_init(struct tb_service *svc);
1032void tb_service_debugfs_remove(struct tb_service *svc);
Gil Fine54e41812020-06-29 20:30:52 +03001033#else
1034static inline void tb_debugfs_init(void) { }
1035static inline void tb_debugfs_exit(void) { }
1036static inline void tb_switch_debugfs_init(struct tb_switch *sw) { }
1037static inline void tb_switch_debugfs_remove(struct tb_switch *sw) { }
Mika Westerberg407ac932020-10-07 17:53:44 +03001038static inline void tb_service_debugfs_init(struct tb_service *svc) { }
1039static inline void tb_service_debugfs_remove(struct tb_service *svc) { }
Gil Fine54e41812020-06-29 20:30:52 +03001040#endif
1041
Mika Westerberg2c6ea4e2020-08-24 12:46:52 +03001042#ifdef CONFIG_USB4_KUNIT_TEST
1043int tb_test_init(void);
1044void tb_test_exit(void);
1045#else
1046static inline int tb_test_init(void) { return 0; }
1047static inline void tb_test_exit(void) { }
1048#endif
1049
Andreas Noeverd6cc51c2014-06-03 22:04:00 +02001050#endif