blob: 9790e9f13d2be8b32a221a2372517b79bcec4f58 [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.
Mika Westerbergc3963a52021-02-01 15:03:00 +0300141 *
142 * In USB4 terminology this structure represents a router.
Andreas Noevera25c8b22014-06-03 22:04:02 +0200143 */
144struct tb_switch {
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300145 struct device dev;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200146 struct tb_regs_switch_header config;
147 struct tb_port *ports;
Mika Westerberg3e136762017-06-06 15:25:14 +0300148 struct tb_dma_port *dma_port;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300149 struct tb_switch_tmu tmu;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200150 struct tb *tb;
Andreas Noeverc90553b2014-06-03 22:04:11 +0200151 u64 uid;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200152 uuid_t *uuid;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300153 u16 vendor;
154 u16 device;
Mika Westerberg72ee3392017-06-06 15:25:05 +0300155 const char *vendor_name;
156 const char *device_name;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200157 unsigned int link_speed;
158 unsigned int link_width;
Mika Westerbergbbcf40b2020-03-04 17:09:14 +0200159 bool link_usb4;
Mika Westerberg2c3c4192017-06-06 15:25:13 +0300160 unsigned int generation;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300161 int cap_plug_events;
Mika Westerberga9be5582019-01-09 16:42:12 +0200162 int cap_lc;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300163 bool is_unplugged;
Andreas Noevercd22e732014-06-12 23:11:46 +0200164 u8 *drom;
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200165 struct tb_nvm *nvm;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300166 bool no_nvm_upgrade;
167 bool safe_mode;
Yehezkel Bernat14862ee2018-01-22 12:50:09 +0200168 bool boot;
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300169 bool rpm;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300170 unsigned int authorized;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300171 enum tb_security_level security_level;
Gil Fine54e41812020-06-29 20:30:52 +0300172 struct dentry *debugfs_dir;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300173 u8 *key;
174 u8 connection_id;
175 u8 connection_key;
176 u8 link;
177 u8 depth;
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300178 struct completion rpm_complete;
Mario Limonciello1cb36292020-06-23 11:14:29 -0500179 unsigned long quirks;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200180};
181
182/**
183 * struct tb_port - a thunderbolt port, part of a tb_switch
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300184 * @config: Cached port configuration read from registers
185 * @sw: Switch the port belongs to
186 * @remote: Remote port (%NULL if not connected)
187 * @xdomain: Remote host (%NULL if not connected)
188 * @cap_phy: Offset, zero if not found
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300189 * @cap_tmu: Offset of the adapter specific TMU capability (%0 if not present)
Mika Westerberg56183c82017-02-19 10:39:34 +0200190 * @cap_adap: Offset of the adapter specific capability (%0 if not present)
Mika Westerbergb0407982019-12-17 15:33:40 +0300191 * @cap_usb4: Offset to the USB4 port capability (%0 if not present)
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300192 * @port: Port number on switch
Nikunj A. Dadhania8824d192020-07-21 17:05:23 +0530193 * @disabled: Disabled by eeprom or enabled but not implemented
Mika Westerberg91c0c122019-03-21 19:03:00 +0200194 * @bonded: true if the port is bonded (two lanes combined as one)
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300195 * @dual_link_port: If the switch is connected using two ports, points
196 * to the other port.
197 * @link_nr: Is this primary or secondary port on the dual_link.
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200198 * @in_hopids: Currently allocated input HopIDs
199 * @out_hopids: Currently allocated output HopIDs
Mika Westerberg8afe9092019-03-26 15:52:30 +0300200 * @list: Used to link ports to DP resources list
Mika Westerbergc3963a52021-02-01 15:03:00 +0300201 *
202 * In USB4 terminology this structure represents an adapter (protocol or
203 * lane adapter).
Andreas Noevera25c8b22014-06-03 22:04:02 +0200204 */
205struct tb_port {
206 struct tb_regs_port_header config;
207 struct tb_switch *sw;
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300208 struct tb_port *remote;
209 struct tb_xdomain *xdomain;
210 int cap_phy;
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300211 int cap_tmu;
Mika Westerberg56183c82017-02-19 10:39:34 +0200212 int cap_adap;
Mika Westerbergb0407982019-12-17 15:33:40 +0300213 int cap_usb4;
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300214 u8 port;
215 bool disabled;
Mika Westerberg91c0c122019-03-21 19:03:00 +0200216 bool bonded;
Andreas Noevercd22e732014-06-12 23:11:46 +0200217 struct tb_port *dual_link_port;
218 u8 link_nr:1;
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200219 struct ida in_hopids;
220 struct ida out_hopids;
Mika Westerberg8afe9092019-03-26 15:52:30 +0300221 struct list_head list;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200222};
223
224/**
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200225 * tb_retimer: Thunderbolt retimer
226 * @dev: Device for the retimer
227 * @tb: Pointer to the domain the retimer belongs to
228 * @index: Retimer index facing the router USB4 port
229 * @vendor: Vendor ID of the retimer
230 * @device: Device ID of the retimer
231 * @port: Pointer to the lane 0 adapter
232 * @nvm: Pointer to the NVM if the retimer has one (%NULL otherwise)
233 * @auth_status: Status of last NVM authentication
234 */
235struct tb_retimer {
236 struct device dev;
237 struct tb *tb;
238 u8 index;
239 u32 vendor;
240 u32 device;
241 struct tb_port *port;
242 struct tb_nvm *nvm;
243 u32 auth_status;
244};
245
246/**
Andreas Noever520b6702014-06-03 22:04:07 +0200247 * struct tb_path_hop - routing information for a tb_path
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200248 * @in_port: Ingress port of a switch
249 * @out_port: Egress port of a switch where the packet is routed out
250 * (must be on the same switch than @in_port)
251 * @in_hop_index: HopID where the path configuration entry is placed in
252 * the path config space of @in_port.
253 * @in_counter_index: Used counter index (not used in the driver
254 * currently, %-1 to disable)
255 * @next_hop_index: HopID of the packet when it is routed out from @out_port
Mika Westerberg0414bec2017-02-19 23:43:26 +0200256 * @initial_credits: Number of initial flow control credits allocated for
257 * the path
Andreas Noever520b6702014-06-03 22:04:07 +0200258 *
259 * Hop configuration is always done on the IN port of a switch.
260 * in_port and out_port have to be on the same switch. Packets arriving on
261 * in_port with "hop" = in_hop_index will get routed to through out_port. The
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200262 * next hop to take (on out_port->remote) is determined by
263 * next_hop_index. When routing packet to another switch (out->remote is
264 * set) the @next_hop_index must match the @in_hop_index of that next
265 * hop to make routing possible.
Andreas Noever520b6702014-06-03 22:04:07 +0200266 *
267 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
268 * port.
269 */
270struct tb_path_hop {
271 struct tb_port *in_port;
272 struct tb_port *out_port;
273 int in_hop_index;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200274 int in_counter_index;
Andreas Noever520b6702014-06-03 22:04:07 +0200275 int next_hop_index;
Mika Westerberg0414bec2017-02-19 23:43:26 +0200276 unsigned int initial_credits;
Andreas Noever520b6702014-06-03 22:04:07 +0200277};
278
279/**
280 * enum tb_path_port - path options mask
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200281 * @TB_PATH_NONE: Do not activate on any hop on path
282 * @TB_PATH_SOURCE: Activate on the first hop (out of src)
283 * @TB_PATH_INTERNAL: Activate on the intermediate hops (not the first/last)
284 * @TB_PATH_DESTINATION: Activate on the last hop (into dst)
285 * @TB_PATH_ALL: Activate on all hops on the path
Andreas Noever520b6702014-06-03 22:04:07 +0200286 */
287enum tb_path_port {
288 TB_PATH_NONE = 0,
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200289 TB_PATH_SOURCE = 1,
290 TB_PATH_INTERNAL = 2,
291 TB_PATH_DESTINATION = 4,
Andreas Noever520b6702014-06-03 22:04:07 +0200292 TB_PATH_ALL = 7,
293};
294
295/**
296 * struct tb_path - a unidirectional path between two ports
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200297 * @tb: Pointer to the domain structure
298 * @name: Name of the path (used for debugging)
299 * @nfc_credits: Number of non flow controlled credits allocated for the path
300 * @ingress_shared_buffer: Shared buffering used for ingress ports on the path
301 * @egress_shared_buffer: Shared buffering used for egress ports on the path
302 * @ingress_fc_enable: Flow control for ingress ports on the path
303 * @egress_fc_enable: Flow control for egress ports on the path
304 * @priority: Priority group if the path
305 * @weight: Weight of the path inside the priority group
306 * @drop_packages: Drop packages from queue tail or head
307 * @activated: Is the path active
Mika Westerberg44242d62018-09-28 16:35:32 +0300308 * @clear_fc: Clear all flow control from the path config space entries
309 * when deactivating this path
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200310 * @hops: Path hops
311 * @path_length: How many hops the path uses
Andreas Noever520b6702014-06-03 22:04:07 +0200312 *
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200313 * A path consists of a number of hops (see &struct tb_path_hop). To
314 * establish a PCIe tunnel two paths have to be created between the two
315 * PCIe ports.
Andreas Noever520b6702014-06-03 22:04:07 +0200316 */
317struct tb_path {
318 struct tb *tb;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200319 const char *name;
320 int nfc_credits;
Andreas Noever520b6702014-06-03 22:04:07 +0200321 enum tb_path_port ingress_shared_buffer;
322 enum tb_path_port egress_shared_buffer;
323 enum tb_path_port ingress_fc_enable;
324 enum tb_path_port egress_fc_enable;
325
Nathan Chancellor37209782019-04-24 11:34:13 -0700326 unsigned int priority:3;
Andreas Noever520b6702014-06-03 22:04:07 +0200327 int weight:4;
328 bool drop_packages;
329 bool activated;
Mika Westerberg44242d62018-09-28 16:35:32 +0300330 bool clear_fc;
Andreas Noever520b6702014-06-03 22:04:07 +0200331 struct tb_path_hop *hops;
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200332 int path_length;
Andreas Noever520b6702014-06-03 22:04:07 +0200333};
334
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200335/* HopIDs 0-7 are reserved by the Thunderbolt protocol */
336#define TB_PATH_MIN_HOPID 8
Mika Westerbergc738a792020-05-08 11:47:00 +0300337/*
338 * Support paths from the farthest (depth 6) router to the host and back
339 * to the same level (not necessarily to the same router).
340 */
341#define TB_PATH_MAX_HOPS (7 * 2)
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200342
Mika Westerbergb2911a52019-12-06 18:36:07 +0200343/* Possible wake types */
344#define TB_WAKE_ON_CONNECT BIT(0)
345#define TB_WAKE_ON_DISCONNECT BIT(1)
346#define TB_WAKE_ON_USB4 BIT(2)
347#define TB_WAKE_ON_USB3 BIT(3)
348#define TB_WAKE_ON_PCIE BIT(4)
349
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300350/**
351 * struct tb_cm_ops - Connection manager specific operations vector
Mika Westerbergf67cf492017-06-06 15:25:16 +0300352 * @driver_ready: Called right after control channel is started. Used by
353 * ICM to send driver ready message to the firmware.
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300354 * @start: Starts the domain
355 * @stop: Stops the domain
356 * @suspend_noirq: Connection manager specific suspend_noirq
357 * @resume_noirq: Connection manager specific resume_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300358 * @suspend: Connection manager specific suspend
Mika Westerberg884e4d52020-08-31 13:05:14 +0300359 * @freeze_noirq: Connection manager specific freeze_noirq
360 * @thaw_noirq: Connection manager specific thaw_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300361 * @complete: Connection manager specific complete
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300362 * @runtime_suspend: Connection manager specific runtime_suspend
363 * @runtime_resume: Connection manager specific runtime_resume
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300364 * @runtime_suspend_switch: Runtime suspend a switch
365 * @runtime_resume_switch: Runtime resume a switch
Mika Westerberg81a54b52017-06-06 15:25:09 +0300366 * @handle_event: Handle thunderbolt event
Mika Westerberg9aaa3b82018-01-21 12:08:04 +0200367 * @get_boot_acl: Get boot ACL list
368 * @set_boot_acl: Set boot ACL list
Mika Westerberg3da88be2020-11-10 11:47:14 +0300369 * @disapprove_switch: Disapprove switch (disconnect PCIe tunnel)
Mika Westerbergf67cf492017-06-06 15:25:16 +0300370 * @approve_switch: Approve switch
371 * @add_switch_key: Add key to switch
372 * @challenge_switch_key: Challenge switch using key
Mika Westerberge6b245c2017-06-06 15:25:17 +0300373 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300374 * @approve_xdomain_paths: Approve (establish) XDomain DMA paths
375 * @disconnect_xdomain_paths: Disconnect XDomain DMA paths
Mika Westerberg9490f712020-11-03 13:58:00 +0200376 * @usb4_switch_op: Optional proxy for USB4 router operations. If set
377 * this will be called whenever USB4 router operation is
378 * performed. If this returns %-EOPNOTSUPP then the
379 * native USB4 router operation is called.
380 * @usb4_switch_nvm_authenticate_status: Optional callback that the CM
381 * implementation can be used to
382 * return status of USB4 NVM_AUTH
383 * router operation.
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300384 */
385struct tb_cm_ops {
Mika Westerbergf67cf492017-06-06 15:25:16 +0300386 int (*driver_ready)(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300387 int (*start)(struct tb *tb);
388 void (*stop)(struct tb *tb);
389 int (*suspend_noirq)(struct tb *tb);
390 int (*resume_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300391 int (*suspend)(struct tb *tb);
Mika Westerberg884e4d52020-08-31 13:05:14 +0300392 int (*freeze_noirq)(struct tb *tb);
393 int (*thaw_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300394 void (*complete)(struct tb *tb);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300395 int (*runtime_suspend)(struct tb *tb);
396 int (*runtime_resume)(struct tb *tb);
Mika Westerberg4f7c2e02019-05-28 18:56:20 +0300397 int (*runtime_suspend_switch)(struct tb_switch *sw);
398 int (*runtime_resume_switch)(struct tb_switch *sw);
Mika Westerberg81a54b52017-06-06 15:25:09 +0300399 void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
400 const void *buf, size_t size);
Mika Westerberg9aaa3b82018-01-21 12:08:04 +0200401 int (*get_boot_acl)(struct tb *tb, uuid_t *uuids, size_t nuuids);
402 int (*set_boot_acl)(struct tb *tb, const uuid_t *uuids, size_t nuuids);
Mika Westerberg3da88be2020-11-10 11:47:14 +0300403 int (*disapprove_switch)(struct tb *tb, struct tb_switch *sw);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300404 int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
405 int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
406 int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
407 const u8 *challenge, u8 *response);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300408 int (*disconnect_pcie_paths)(struct tb *tb);
Mika Westerberg180b0682021-01-08 16:25:39 +0200409 int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd,
410 int transmit_path, int transmit_ring,
411 int receive_path, int receive_ring);
412 int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd,
413 int transmit_path, int transmit_ring,
414 int receive_path, int receive_ring);
Mika Westerberg9490f712020-11-03 13:58:00 +0200415 int (*usb4_switch_op)(struct tb_switch *sw, u16 opcode, u32 *metadata,
416 u8 *status, const void *tx_data, size_t tx_data_len,
417 void *rx_data, size_t rx_data_len);
418 int (*usb4_switch_nvm_authenticate_status)(struct tb_switch *sw,
419 u32 *status);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300420};
Andreas Noever520b6702014-06-03 22:04:07 +0200421
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300422static inline void *tb_priv(struct tb *tb)
423{
424 return (void *)tb->privdata;
425}
426
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300427#define TB_AUTOSUSPEND_DELAY 15000 /* ms */
428
Andreas Noevera25c8b22014-06-03 22:04:02 +0200429/* helper functions & macros */
430
431/**
432 * tb_upstream_port() - return the upstream port of a switch
433 *
434 * Every switch has an upstream port (for the root switch it is the NHI).
435 *
436 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
437 * non root switches (on the NHI port remote is always NULL).
438 *
439 * Return: Returns the upstream port of the switch.
440 */
441static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
442{
443 return &sw->ports[sw->config.upstream_port_number];
444}
445
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200446/**
447 * tb_is_upstream_port() - Is the port upstream facing
448 * @port: Port to check
449 *
450 * Returns true if @port is upstream facing port. In case of dual link
451 * ports both return true.
452 */
453static inline bool tb_is_upstream_port(const struct tb_port *port)
454{
455 const struct tb_port *upstream_port = tb_upstream_port(port->sw);
456 return port == upstream_port || port->dual_link_port == upstream_port;
457}
458
Mika Westerbergb323a982019-03-06 19:23:38 +0200459static inline u64 tb_route(const struct tb_switch *sw)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200460{
461 return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
462}
463
Mika Westerbergf67cf492017-06-06 15:25:16 +0300464static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
465{
466 u8 port;
467
468 port = route >> (sw->config.depth * 8);
469 if (WARN_ON(port > sw->config.max_port_number))
470 return NULL;
471 return &sw->ports[port];
472}
473
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200474/**
475 * tb_port_has_remote() - Does the port have switch connected downstream
476 * @port: Port to check
477 *
478 * Returns true only when the port is primary port and has remote set.
479 */
480static inline bool tb_port_has_remote(const struct tb_port *port)
481{
482 if (tb_is_upstream_port(port))
483 return false;
484 if (!port->remote)
485 return false;
486 if (port->dual_link_port && port->link_nr)
487 return false;
488
489 return true;
490}
491
Mika Westerberg344e0642017-10-11 17:19:54 +0300492static inline bool tb_port_is_null(const struct tb_port *port)
493{
494 return port && port->port && port->config.type == TB_TYPE_PORT;
495}
496
Mika Westerberga3cfebd2020-07-25 10:32:46 +0300497static inline bool tb_port_is_nhi(const struct tb_port *port)
498{
499 return port && port->config.type == TB_TYPE_NHI;
500}
501
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200502static inline bool tb_port_is_pcie_down(const struct tb_port *port)
503{
504 return port && port->config.type == TB_TYPE_PCIE_DOWN;
505}
506
Mika Westerberg0414bec2017-02-19 23:43:26 +0200507static inline bool tb_port_is_pcie_up(const struct tb_port *port)
508{
509 return port && port->config.type == TB_TYPE_PCIE_UP;
510}
511
Mika Westerberg4f807e42018-09-17 16:30:49 +0300512static inline bool tb_port_is_dpin(const struct tb_port *port)
513{
514 return port && port->config.type == TB_TYPE_DP_HDMI_IN;
515}
516
517static inline bool tb_port_is_dpout(const struct tb_port *port)
518{
519 return port && port->config.type == TB_TYPE_DP_HDMI_OUT;
520}
521
Rajmohan Manie6f81852019-12-17 15:33:44 +0300522static inline bool tb_port_is_usb3_down(const struct tb_port *port)
523{
524 return port && port->config.type == TB_TYPE_USB3_DOWN;
525}
526
527static inline bool tb_port_is_usb3_up(const struct tb_port *port)
528{
529 return port && port->config.type == TB_TYPE_USB3_UP;
530}
531
Andreas Noevera25c8b22014-06-03 22:04:02 +0200532static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
533 enum tb_cfg_space space, u32 offset, u32 length)
534{
Mika Westerberg47083842019-03-19 17:07:37 +0200535 if (sw->is_unplugged)
536 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200537 return tb_cfg_read(sw->tb->ctl,
538 buffer,
539 tb_route(sw),
540 0,
541 space,
542 offset,
543 length);
544}
545
Mika Westerberg826c6a12019-07-01 18:41:51 +0300546static inline int tb_sw_write(struct tb_switch *sw, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200547 enum tb_cfg_space space, u32 offset, u32 length)
548{
Mika Westerberg47083842019-03-19 17:07:37 +0200549 if (sw->is_unplugged)
550 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200551 return tb_cfg_write(sw->tb->ctl,
552 buffer,
553 tb_route(sw),
554 0,
555 space,
556 offset,
557 length);
558}
559
560static inline int tb_port_read(struct tb_port *port, void *buffer,
561 enum tb_cfg_space space, u32 offset, u32 length)
562{
Mika Westerberg47083842019-03-19 17:07:37 +0200563 if (port->sw->is_unplugged)
564 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200565 return tb_cfg_read(port->sw->tb->ctl,
566 buffer,
567 tb_route(port->sw),
568 port->port,
569 space,
570 offset,
571 length);
572}
573
Mika Westerberg16a12582017-06-06 15:24:53 +0300574static inline int tb_port_write(struct tb_port *port, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200575 enum tb_cfg_space space, u32 offset, u32 length)
576{
Mika Westerberg47083842019-03-19 17:07:37 +0200577 if (port->sw->is_unplugged)
578 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200579 return tb_cfg_write(port->sw->tb->ctl,
580 buffer,
581 tb_route(port->sw),
582 port->port,
583 space,
584 offset,
585 length);
586}
587
588#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
589#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
590#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
591#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300592#define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200593
594#define __TB_SW_PRINT(level, sw, fmt, arg...) \
595 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200596 const struct tb_switch *__sw = (sw); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200597 level(__sw->tb, "%llx: " fmt, \
598 tb_route(__sw), ## arg); \
599 } while (0)
600#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
601#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
602#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300603#define tb_sw_dbg(sw, fmt, arg...) __TB_SW_PRINT(tb_dbg, sw, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200604
605#define __TB_PORT_PRINT(level, _port, fmt, arg...) \
606 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200607 const struct tb_port *__port = (_port); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200608 level(__port->sw->tb, "%llx:%x: " fmt, \
609 tb_route(__port->sw), __port->port, ## arg); \
610 } while (0)
611#define tb_port_WARN(port, fmt, arg...) \
612 __TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
613#define tb_port_warn(port, fmt, arg...) \
614 __TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
615#define tb_port_info(port, fmt, arg...) \
616 __TB_PORT_PRINT(tb_info, port, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300617#define tb_port_dbg(port, fmt, arg...) \
618 __TB_PORT_PRINT(tb_dbg, port, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200619
Mika Westerbergf67cf492017-06-06 15:25:16 +0300620struct tb *icm_probe(struct tb_nhi *nhi);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300621struct tb *tb_probe(struct tb_nhi *nhi);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200622
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300623extern struct device_type tb_domain_type;
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200624extern struct device_type tb_retimer_type;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300625extern struct device_type tb_switch_type;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300626
627int tb_domain_init(void);
628void tb_domain_exit(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300629int tb_xdomain_init(void);
630void tb_xdomain_exit(void);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300631
Mika Westerberg7f0a34d2020-12-29 13:44:57 +0200632struct tb *tb_domain_alloc(struct tb_nhi *nhi, int timeout_msec, size_t privsize);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300633int tb_domain_add(struct tb *tb);
634void tb_domain_remove(struct tb *tb);
635int tb_domain_suspend_noirq(struct tb *tb);
636int tb_domain_resume_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300637int tb_domain_suspend(struct tb *tb);
Mika Westerberg884e4d52020-08-31 13:05:14 +0300638int tb_domain_freeze_noirq(struct tb *tb);
639int tb_domain_thaw_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300640void tb_domain_complete(struct tb *tb);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300641int tb_domain_runtime_suspend(struct tb *tb);
642int tb_domain_runtime_resume(struct tb *tb);
Mika Westerberg3da88be2020-11-10 11:47:14 +0300643int tb_domain_disapprove_switch(struct tb *tb, struct tb_switch *sw);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300644int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
645int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
646int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300647int tb_domain_disconnect_pcie_paths(struct tb *tb);
Mika Westerberg180b0682021-01-08 16:25:39 +0200648int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
649 int transmit_path, int transmit_ring,
650 int receive_path, int receive_ring);
651int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd,
652 int transmit_path, int transmit_ring,
653 int receive_path, int receive_ring);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300654int tb_domain_disconnect_all_paths(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300655
Mika Westerberg559c1e12018-10-22 14:47:01 +0300656static inline struct tb *tb_domain_get(struct tb *tb)
657{
658 if (tb)
659 get_device(&tb->dev);
660 return tb;
661}
662
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300663static inline void tb_domain_put(struct tb *tb)
664{
665 put_device(&tb->dev);
666}
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200667
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200668struct tb_nvm *tb_nvm_alloc(struct device *dev);
669int tb_nvm_add_active(struct tb_nvm *nvm, size_t size, nvmem_reg_read_t reg_read);
670int tb_nvm_write_buf(struct tb_nvm *nvm, unsigned int offset, void *val,
671 size_t bytes);
672int tb_nvm_add_non_active(struct tb_nvm *nvm, size_t size,
673 nvmem_reg_write_t reg_write);
674void tb_nvm_free(struct tb_nvm *nvm);
675void tb_nvm_exit(void);
676
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300677struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
678 u64 route);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300679struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
680 struct device *parent, u64 route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300681int tb_switch_configure(struct tb_switch *sw);
682int tb_switch_add(struct tb_switch *sw);
683void tb_switch_remove(struct tb_switch *sw);
Mika Westerberg6ac6fae2020-06-05 14:25:02 +0300684void tb_switch_suspend(struct tb_switch *sw, bool runtime);
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200685int tb_switch_resume(struct tb_switch *sw);
Mika Westerberg356b6c42019-09-19 15:25:30 +0300686int tb_switch_reset(struct tb_switch *sw);
Lukas Wunneraae20bb2016-03-20 13:57:20 +0100687void tb_sw_set_unplugged(struct tb_switch *sw);
Mika Westerberg386e5e22019-12-17 15:33:37 +0300688struct tb_port *tb_switch_find_port(struct tb_switch *sw,
689 enum tb_port_type type);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300690struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
691 u8 depth);
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200692struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +0300693struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300694
Mika Westerbergb433d012019-09-30 14:07:22 +0300695/**
696 * tb_switch_for_each_port() - Iterate over each switch port
697 * @sw: Switch whose ports to iterate
698 * @p: Port used as iterator
699 *
700 * Iterates over each switch port skipping the control port (port %0).
701 */
702#define tb_switch_for_each_port(sw, p) \
703 for ((p) = &(sw)->ports[1]; \
704 (p) <= &(sw)->ports[(sw)->config.max_port_number]; (p)++)
705
Mika Westerbergb6b0ea72017-10-04 15:19:20 +0300706static inline struct tb_switch *tb_switch_get(struct tb_switch *sw)
707{
708 if (sw)
709 get_device(&sw->dev);
710 return sw;
711}
712
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300713static inline void tb_switch_put(struct tb_switch *sw)
714{
715 put_device(&sw->dev);
716}
717
718static inline bool tb_is_switch(const struct device *dev)
719{
720 return dev->type == &tb_switch_type;
721}
722
723static inline struct tb_switch *tb_to_switch(struct device *dev)
724{
725 if (tb_is_switch(dev))
726 return container_of(dev, struct tb_switch, dev);
727 return NULL;
728}
729
Mika Westerberg0414bec2017-02-19 23:43:26 +0200730static inline struct tb_switch *tb_switch_parent(struct tb_switch *sw)
731{
732 return tb_to_switch(sw->dev.parent);
733}
734
Mika Westerberg17a8f812019-10-08 16:42:47 +0300735static inline bool tb_switch_is_light_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200736{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300737 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
738 sw->config.device_id == PCI_DEVICE_ID_INTEL_LIGHT_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200739}
740
Mika Westerberg17a8f812019-10-08 16:42:47 +0300741static inline bool tb_switch_is_eagle_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200742{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300743 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
744 sw->config.device_id == PCI_DEVICE_ID_INTEL_EAGLE_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200745}
746
Mika Westerberg17a8f812019-10-08 16:42:47 +0300747static inline bool tb_switch_is_cactus_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200748{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300749 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
750 switch (sw->config.device_id) {
751 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
752 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
753 return true;
754 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200755 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300756 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200757}
758
Mika Westerberg17a8f812019-10-08 16:42:47 +0300759static inline bool tb_switch_is_falcon_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200760{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300761 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
762 switch (sw->config.device_id) {
763 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
764 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
765 return true;
766 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200767 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300768 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200769}
770
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200771static inline bool tb_switch_is_alpine_ridge(const struct tb_switch *sw)
772{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300773 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
774 switch (sw->config.device_id) {
775 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
776 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
777 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
778 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
779 return true;
780 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200781 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300782 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200783}
784
785static inline bool tb_switch_is_titan_ridge(const struct tb_switch *sw)
786{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300787 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
788 switch (sw->config.device_id) {
789 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
790 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
791 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
792 return true;
793 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200794 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300795 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200796}
797
Mika Westerbergf07a3602019-06-25 15:10:01 +0300798/**
Mika Westerbergb0407982019-12-17 15:33:40 +0300799 * tb_switch_is_usb4() - Is the switch USB4 compliant
800 * @sw: Switch to check
801 *
802 * Returns true if the @sw is USB4 compliant router, false otherwise.
803 */
804static inline bool tb_switch_is_usb4(const struct tb_switch *sw)
805{
806 return sw->config.thunderbolt_version == USB4_VERSION_1_0;
807}
808
809/**
Mika Westerbergf07a3602019-06-25 15:10:01 +0300810 * tb_switch_is_icm() - Is the switch handled by ICM firmware
811 * @sw: Switch to check
812 *
813 * In case there is a need to differentiate whether ICM firmware or SW CM
814 * is handling @sw this function can be called. It is valid to call this
815 * after tb_switch_alloc() and tb_switch_configure() has been called
816 * (latter only for SW CM case).
817 */
818static inline bool tb_switch_is_icm(const struct tb_switch *sw)
819{
820 return !sw->config.enabled;
821}
822
Mika Westerberg91c0c122019-03-21 19:03:00 +0200823int tb_switch_lane_bonding_enable(struct tb_switch *sw);
824void tb_switch_lane_bonding_disable(struct tb_switch *sw);
Mika Westerbergde462032020-04-02 14:50:52 +0300825int tb_switch_configure_link(struct tb_switch *sw);
826void tb_switch_unconfigure_link(struct tb_switch *sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +0200827
Mika Westerberg8afe9092019-03-26 15:52:30 +0300828bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
829int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
830void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
831
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300832int tb_switch_tmu_init(struct tb_switch *sw);
833int tb_switch_tmu_post_time(struct tb_switch *sw);
834int tb_switch_tmu_disable(struct tb_switch *sw);
835int tb_switch_tmu_enable(struct tb_switch *sw);
836
837static inline bool tb_switch_tmu_is_enabled(const struct tb_switch *sw)
838{
839 return sw->tmu.rate == TB_SWITCH_TMU_RATE_HIFI &&
840 !sw->tmu.unidirectional;
841}
842
Andreas Noever9da672a2014-06-03 22:04:05 +0200843int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
Andreas Noever520b6702014-06-03 22:04:07 +0200844int tb_port_add_nfc_credits(struct tb_port *port, int credits);
845int tb_port_clear_counter(struct tb_port *port, int counter);
Mika Westerbergb0407982019-12-17 15:33:40 +0300846int tb_port_unlock(struct tb_port *port);
Mika Westerberg341d4512020-02-21 12:11:54 +0200847int tb_port_enable(struct tb_port *port);
848int tb_port_disable(struct tb_port *port);
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200849int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
850void tb_port_release_in_hopid(struct tb_port *port, int hopid);
851int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
852void tb_port_release_out_hopid(struct tb_port *port, int hopid);
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200853struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
854 struct tb_port *prev);
Andreas Noever9da672a2014-06-03 22:04:05 +0200855
Mika Westerbergc64c3f32020-04-29 17:07:59 +0300856/**
857 * tb_for_each_port_on_path() - Iterate over each port on path
858 * @src: Source port
859 * @dst: Destination port
860 * @p: Port used as iterator
861 *
862 * Walks over each port on path from @src to @dst.
863 */
864#define tb_for_each_port_on_path(src, dst, p) \
865 for ((p) = tb_next_port_on_path((src), (dst), NULL); (p); \
866 (p) = tb_next_port_on_path((src), (dst), (p)))
867
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300868int tb_port_get_link_speed(struct tb_port *port);
Isaac Hazan4210d502020-09-24 11:43:58 +0300869int tb_port_get_link_width(struct tb_port *port);
Isaac Hazan5cc0df92020-09-24 11:44:01 +0300870int tb_port_state(struct tb_port *port);
871int tb_port_lane_bonding_enable(struct tb_port *port);
872void tb_port_lane_bonding_disable(struct tb_port *port);
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300873
Mika Westerbergda2da042017-06-06 15:24:58 +0300874int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
Rajmohan Maniaa43a9d2019-12-17 15:33:42 +0300875int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap);
Mika Westerberg6de057e2020-06-29 20:21:07 +0300876int tb_switch_next_cap(struct tb_switch *sw, unsigned int offset);
Mika Westerbergda2da042017-06-06 15:24:58 +0300877int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
Mika Westerberg3c8b2282020-06-29 20:15:17 +0300878int tb_port_next_cap(struct tb_port *port, unsigned int offset);
Mika Westerberge78db6f2017-10-12 16:45:50 +0300879bool tb_port_is_enabled(struct tb_port *port);
Andreas Noevere2b87852014-06-03 22:04:03 +0200880
Rajmohan Manie6f81852019-12-17 15:33:44 +0300881bool tb_usb3_port_is_enabled(struct tb_port *port);
882int tb_usb3_port_enable(struct tb_port *port, bool enable);
883
Mika Westerberg0414bec2017-02-19 23:43:26 +0200884bool tb_pci_port_is_enabled(struct tb_port *port);
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200885int tb_pci_port_enable(struct tb_port *port, bool enable);
886
Mika Westerberg4f807e42018-09-17 16:30:49 +0300887int tb_dp_port_hpd_is_active(struct tb_port *port);
888int tb_dp_port_hpd_clear(struct tb_port *port);
889int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
890 unsigned int aux_tx, unsigned int aux_rx);
891bool tb_dp_port_is_enabled(struct tb_port *port);
892int tb_dp_port_enable(struct tb_port *port, bool enable);
893
Mika Westerberg0414bec2017-02-19 23:43:26 +0200894struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
895 struct tb_port *dst, int dst_hopid,
896 struct tb_port **last, const char *name);
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200897struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
898 struct tb_port *dst, int dst_hopid, int link_nr,
899 const char *name);
Andreas Noever520b6702014-06-03 22:04:07 +0200900void tb_path_free(struct tb_path *path);
901int tb_path_activate(struct tb_path *path);
902void tb_path_deactivate(struct tb_path *path);
903bool tb_path_is_invalid(struct tb_path *path);
Mika Westerberg0bd680c2020-03-24 14:44:13 +0200904bool tb_path_port_on_path(const struct tb_path *path,
905 const struct tb_port *port);
Andreas Noever520b6702014-06-03 22:04:07 +0200906
Andreas Noevercd22e732014-06-12 23:11:46 +0200907int tb_drom_read(struct tb_switch *sw);
908int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
Andreas Noeverc90553b2014-06-03 22:04:11 +0200909
Mika Westerberga9be5582019-01-09 16:42:12 +0200910int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid);
Mika Westerberge28178b2020-04-02 12:42:44 +0300911int tb_lc_configure_port(struct tb_port *port);
912void tb_lc_unconfigure_port(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +0300913int tb_lc_configure_xdomain(struct tb_port *port);
914void tb_lc_unconfigure_xdomain(struct tb_port *port);
Mika Westerbergfdb08872020-11-26 12:52:43 +0300915int tb_lc_start_lane_initialization(struct tb_port *port);
Mika Westerbergb2911a52019-12-06 18:36:07 +0200916int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerberg5480dfc2019-01-09 17:25:43 +0200917int tb_lc_set_sleep(struct tb_switch *sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +0200918bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
Mika Westerberg8afe9092019-03-26 15:52:30 +0300919bool tb_lc_dp_sink_query(struct tb_switch *sw, struct tb_port *in);
920int tb_lc_dp_sink_alloc(struct tb_switch *sw, struct tb_port *in);
921int tb_lc_dp_sink_dealloc(struct tb_switch *sw, struct tb_port *in);
Mario Limonciello1cb36292020-06-23 11:14:29 -0500922int tb_lc_force_power(struct tb_switch *sw);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200923
924static inline int tb_route_length(u64 route)
925{
926 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
927}
928
Andreas Noever9da672a2014-06-03 22:04:05 +0200929/**
930 * tb_downstream_route() - get route to downstream switch
931 *
932 * Port must not be the upstream port (otherwise a loop is created).
933 *
934 * Return: Returns a route to the switch behind @port.
935 */
936static inline u64 tb_downstream_route(struct tb_port *port)
937{
938 return tb_route(port->sw)
939 | ((u64) port->port << (port->sw->config.depth * 8));
940}
941
Mika Westerberg5ca67682020-10-22 13:22:06 +0300942bool tb_is_xdomain_enabled(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300943bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
944 const void *buf, size_t size);
945struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
946 u64 route, const uuid_t *local_uuid,
947 const uuid_t *remote_uuid);
948void tb_xdomain_add(struct tb_xdomain *xd);
949void tb_xdomain_remove(struct tb_xdomain *xd);
950struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
951 u8 depth);
952
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200953int tb_retimer_scan(struct tb_port *port);
954void tb_retimer_remove_all(struct tb_port *port);
955
956static inline bool tb_is_retimer(const struct device *dev)
957{
958 return dev->type == &tb_retimer_type;
959}
960
961static inline struct tb_retimer *tb_to_retimer(struct device *dev)
962{
963 if (tb_is_retimer(dev))
964 return container_of(dev, struct tb_retimer, dev);
965 return NULL;
966}
967
Mika Westerbergb0407982019-12-17 15:33:40 +0300968int usb4_switch_setup(struct tb_switch *sw);
969int usb4_switch_read_uid(struct tb_switch *sw, u64 *uid);
970int usb4_switch_drom_read(struct tb_switch *sw, unsigned int address, void *buf,
971 size_t size);
Mika Westerbergb0407982019-12-17 15:33:40 +0300972bool usb4_switch_lane_bonding_possible(struct tb_switch *sw);
Mika Westerbergb2911a52019-12-06 18:36:07 +0200973int usb4_switch_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerbergb0407982019-12-17 15:33:40 +0300974int usb4_switch_set_sleep(struct tb_switch *sw);
975int usb4_switch_nvm_sector_size(struct tb_switch *sw);
976int usb4_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
977 size_t size);
978int usb4_switch_nvm_write(struct tb_switch *sw, unsigned int address,
979 const void *buf, size_t size);
980int usb4_switch_nvm_authenticate(struct tb_switch *sw);
Mika Westerberg661b1942020-11-10 11:34:07 +0300981int usb4_switch_nvm_authenticate_status(struct tb_switch *sw, u32 *status);
Mika Westerbergb0407982019-12-17 15:33:40 +0300982bool usb4_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
983int usb4_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
984int usb4_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
985struct tb_port *usb4_switch_map_pcie_down(struct tb_switch *sw,
986 const struct tb_port *port);
Rajmohan Manie6f81852019-12-17 15:33:44 +0300987struct tb_port *usb4_switch_map_usb3_down(struct tb_switch *sw,
988 const struct tb_port *port);
Mika Westerbergb0407982019-12-17 15:33:40 +0300989
990int usb4_port_unlock(struct tb_port *port);
Mika Westerberge28178b2020-04-02 12:42:44 +0300991int usb4_port_configure(struct tb_port *port);
992void usb4_port_unconfigure(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +0300993int usb4_port_configure_xdomain(struct tb_port *port);
994void usb4_port_unconfigure_xdomain(struct tb_port *port);
Rajmohan Mani02d12852020-03-05 16:33:46 +0200995int usb4_port_enumerate_retimers(struct tb_port *port);
996
997int usb4_port_retimer_read(struct tb_port *port, u8 index, u8 reg, void *buf,
998 u8 size);
999int usb4_port_retimer_write(struct tb_port *port, u8 index, u8 reg,
1000 const void *buf, u8 size);
1001int usb4_port_retimer_is_last(struct tb_port *port, u8 index);
1002int usb4_port_retimer_nvm_sector_size(struct tb_port *port, u8 index);
1003int usb4_port_retimer_nvm_write(struct tb_port *port, u8 index,
1004 unsigned int address, const void *buf,
1005 size_t size);
1006int usb4_port_retimer_nvm_authenticate(struct tb_port *port, u8 index);
1007int usb4_port_retimer_nvm_authenticate_status(struct tb_port *port, u8 index,
1008 u32 *status);
1009int usb4_port_retimer_nvm_read(struct tb_port *port, u8 index,
1010 unsigned int address, void *buf, size_t size);
Mika Westerberg3b1d8d52020-02-21 23:14:41 +02001011
1012int usb4_usb3_port_max_link_rate(struct tb_port *port);
1013int usb4_usb3_port_actual_link_rate(struct tb_port *port);
1014int usb4_usb3_port_allocated_bandwidth(struct tb_port *port, int *upstream_bw,
1015 int *downstream_bw);
1016int usb4_usb3_port_allocate_bandwidth(struct tb_port *port, int *upstream_bw,
1017 int *downstream_bw);
1018int usb4_usb3_port_release_bandwidth(struct tb_port *port, int *upstream_bw,
1019 int *downstream_bw);
Mario Limonciello1cb36292020-06-23 11:14:29 -05001020
Mika Westerberg810278d2020-08-26 08:58:29 +03001021/* Keep link controller awake during update */
Mario Limonciello1cb36292020-06-23 11:14:29 -05001022#define QUIRK_FORCE_POWER_LINK_CONTROLLER BIT(0)
1023
1024void tb_check_quirks(struct tb_switch *sw);
1025
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001026#ifdef CONFIG_ACPI
1027void tb_acpi_add_links(struct tb_nhi *nhi);
Mika Westerbergc6da62a2020-02-18 16:14:42 +02001028
1029bool tb_acpi_is_native(void);
1030bool tb_acpi_may_tunnel_usb3(void);
1031bool tb_acpi_may_tunnel_dp(void);
1032bool tb_acpi_may_tunnel_pcie(void);
1033bool tb_acpi_is_xdomain_allowed(void);
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001034#else
1035static inline void tb_acpi_add_links(struct tb_nhi *nhi) { }
Mika Westerbergc6da62a2020-02-18 16:14:42 +02001036
1037static inline bool tb_acpi_is_native(void) { return true; }
1038static inline bool tb_acpi_may_tunnel_usb3(void) { return true; }
1039static inline bool tb_acpi_may_tunnel_dp(void) { return true; }
1040static inline bool tb_acpi_may_tunnel_pcie(void) { return true; }
1041static inline bool tb_acpi_is_xdomain_allowed(void) { return true; }
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001042#endif
1043
Gil Fine54e41812020-06-29 20:30:52 +03001044#ifdef CONFIG_DEBUG_FS
1045void tb_debugfs_init(void);
1046void tb_debugfs_exit(void);
1047void tb_switch_debugfs_init(struct tb_switch *sw);
1048void tb_switch_debugfs_remove(struct tb_switch *sw);
Mika Westerberg407ac932020-10-07 17:53:44 +03001049void tb_service_debugfs_init(struct tb_service *svc);
1050void tb_service_debugfs_remove(struct tb_service *svc);
Gil Fine54e41812020-06-29 20:30:52 +03001051#else
1052static inline void tb_debugfs_init(void) { }
1053static inline void tb_debugfs_exit(void) { }
1054static inline void tb_switch_debugfs_init(struct tb_switch *sw) { }
1055static inline void tb_switch_debugfs_remove(struct tb_switch *sw) { }
Mika Westerberg407ac932020-10-07 17:53:44 +03001056static inline void tb_service_debugfs_init(struct tb_service *svc) { }
1057static inline void tb_service_debugfs_remove(struct tb_service *svc) { }
Gil Fine54e41812020-06-29 20:30:52 +03001058#endif
1059
Mika Westerberg2c6ea4e2020-08-24 12:46:52 +03001060#ifdef CONFIG_USB4_KUNIT_TEST
1061int tb_test_init(void);
1062void tb_test_exit(void);
1063#else
1064static inline int tb_test_init(void) { return 0; }
1065static inline void tb_test_exit(void) { }
1066#endif
1067
Andreas Noeverd6cc51c2014-06-03 22:04:00 +02001068#endif