blob: a2a401876c2e2703dbb68808307b57b1489bb06a [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 Westerbergd1ff7022017-10-02 13:38:34 +0300409 int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
410 int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
Mika Westerberg9490f712020-11-03 13:58:00 +0200411 int (*usb4_switch_op)(struct tb_switch *sw, u16 opcode, u32 *metadata,
412 u8 *status, const void *tx_data, size_t tx_data_len,
413 void *rx_data, size_t rx_data_len);
414 int (*usb4_switch_nvm_authenticate_status)(struct tb_switch *sw,
415 u32 *status);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300416};
Andreas Noever520b6702014-06-03 22:04:07 +0200417
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300418static inline void *tb_priv(struct tb *tb)
419{
420 return (void *)tb->privdata;
421}
422
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300423#define TB_AUTOSUSPEND_DELAY 15000 /* ms */
424
Andreas Noevera25c8b22014-06-03 22:04:02 +0200425/* helper functions & macros */
426
427/**
428 * tb_upstream_port() - return the upstream port of a switch
429 *
430 * Every switch has an upstream port (for the root switch it is the NHI).
431 *
432 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
433 * non root switches (on the NHI port remote is always NULL).
434 *
435 * Return: Returns the upstream port of the switch.
436 */
437static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
438{
439 return &sw->ports[sw->config.upstream_port_number];
440}
441
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200442/**
443 * tb_is_upstream_port() - Is the port upstream facing
444 * @port: Port to check
445 *
446 * Returns true if @port is upstream facing port. In case of dual link
447 * ports both return true.
448 */
449static inline bool tb_is_upstream_port(const struct tb_port *port)
450{
451 const struct tb_port *upstream_port = tb_upstream_port(port->sw);
452 return port == upstream_port || port->dual_link_port == upstream_port;
453}
454
Mika Westerbergb323a982019-03-06 19:23:38 +0200455static inline u64 tb_route(const struct tb_switch *sw)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200456{
457 return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
458}
459
Mika Westerbergf67cf492017-06-06 15:25:16 +0300460static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
461{
462 u8 port;
463
464 port = route >> (sw->config.depth * 8);
465 if (WARN_ON(port > sw->config.max_port_number))
466 return NULL;
467 return &sw->ports[port];
468}
469
Mika Westerbergdfe40ca2019-03-07 15:26:45 +0200470/**
471 * tb_port_has_remote() - Does the port have switch connected downstream
472 * @port: Port to check
473 *
474 * Returns true only when the port is primary port and has remote set.
475 */
476static inline bool tb_port_has_remote(const struct tb_port *port)
477{
478 if (tb_is_upstream_port(port))
479 return false;
480 if (!port->remote)
481 return false;
482 if (port->dual_link_port && port->link_nr)
483 return false;
484
485 return true;
486}
487
Mika Westerberg344e0642017-10-11 17:19:54 +0300488static inline bool tb_port_is_null(const struct tb_port *port)
489{
490 return port && port->port && port->config.type == TB_TYPE_PORT;
491}
492
Mika Westerberga3cfebd2020-07-25 10:32:46 +0300493static inline bool tb_port_is_nhi(const struct tb_port *port)
494{
495 return port && port->config.type == TB_TYPE_NHI;
496}
497
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200498static inline bool tb_port_is_pcie_down(const struct tb_port *port)
499{
500 return port && port->config.type == TB_TYPE_PCIE_DOWN;
501}
502
Mika Westerberg0414bec2017-02-19 23:43:26 +0200503static inline bool tb_port_is_pcie_up(const struct tb_port *port)
504{
505 return port && port->config.type == TB_TYPE_PCIE_UP;
506}
507
Mika Westerberg4f807e42018-09-17 16:30:49 +0300508static inline bool tb_port_is_dpin(const struct tb_port *port)
509{
510 return port && port->config.type == TB_TYPE_DP_HDMI_IN;
511}
512
513static inline bool tb_port_is_dpout(const struct tb_port *port)
514{
515 return port && port->config.type == TB_TYPE_DP_HDMI_OUT;
516}
517
Rajmohan Manie6f81852019-12-17 15:33:44 +0300518static inline bool tb_port_is_usb3_down(const struct tb_port *port)
519{
520 return port && port->config.type == TB_TYPE_USB3_DOWN;
521}
522
523static inline bool tb_port_is_usb3_up(const struct tb_port *port)
524{
525 return port && port->config.type == TB_TYPE_USB3_UP;
526}
527
Andreas Noevera25c8b22014-06-03 22:04:02 +0200528static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
529 enum tb_cfg_space space, u32 offset, u32 length)
530{
Mika Westerberg47083842019-03-19 17:07:37 +0200531 if (sw->is_unplugged)
532 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200533 return tb_cfg_read(sw->tb->ctl,
534 buffer,
535 tb_route(sw),
536 0,
537 space,
538 offset,
539 length);
540}
541
Mika Westerberg826c6a12019-07-01 18:41:51 +0300542static inline int tb_sw_write(struct tb_switch *sw, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200543 enum tb_cfg_space space, u32 offset, u32 length)
544{
Mika Westerberg47083842019-03-19 17:07:37 +0200545 if (sw->is_unplugged)
546 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200547 return tb_cfg_write(sw->tb->ctl,
548 buffer,
549 tb_route(sw),
550 0,
551 space,
552 offset,
553 length);
554}
555
556static inline int tb_port_read(struct tb_port *port, void *buffer,
557 enum tb_cfg_space space, u32 offset, u32 length)
558{
Mika Westerberg47083842019-03-19 17:07:37 +0200559 if (port->sw->is_unplugged)
560 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200561 return tb_cfg_read(port->sw->tb->ctl,
562 buffer,
563 tb_route(port->sw),
564 port->port,
565 space,
566 offset,
567 length);
568}
569
Mika Westerberg16a12582017-06-06 15:24:53 +0300570static inline int tb_port_write(struct tb_port *port, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200571 enum tb_cfg_space space, u32 offset, u32 length)
572{
Mika Westerberg47083842019-03-19 17:07:37 +0200573 if (port->sw->is_unplugged)
574 return -ENODEV;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200575 return tb_cfg_write(port->sw->tb->ctl,
576 buffer,
577 tb_route(port->sw),
578 port->port,
579 space,
580 offset,
581 length);
582}
583
584#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
585#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
586#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
587#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300588#define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200589
590#define __TB_SW_PRINT(level, sw, fmt, arg...) \
591 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200592 const struct tb_switch *__sw = (sw); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200593 level(__sw->tb, "%llx: " fmt, \
594 tb_route(__sw), ## arg); \
595 } while (0)
596#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
597#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
598#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300599#define tb_sw_dbg(sw, fmt, arg...) __TB_SW_PRINT(tb_dbg, sw, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200600
601#define __TB_PORT_PRINT(level, _port, fmt, arg...) \
602 do { \
Mika Westerbergb323a982019-03-06 19:23:38 +0200603 const struct tb_port *__port = (_port); \
Andreas Noevera25c8b22014-06-03 22:04:02 +0200604 level(__port->sw->tb, "%llx:%x: " fmt, \
605 tb_route(__port->sw), __port->port, ## arg); \
606 } while (0)
607#define tb_port_WARN(port, fmt, arg...) \
608 __TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
609#define tb_port_warn(port, fmt, arg...) \
610 __TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
611#define tb_port_info(port, fmt, arg...) \
612 __TB_PORT_PRINT(tb_info, port, fmt, ##arg)
Mika Westerbergdaa51402018-10-01 12:31:19 +0300613#define tb_port_dbg(port, fmt, arg...) \
614 __TB_PORT_PRINT(tb_dbg, port, fmt, ##arg)
Andreas Noevera25c8b22014-06-03 22:04:02 +0200615
Mika Westerbergf67cf492017-06-06 15:25:16 +0300616struct tb *icm_probe(struct tb_nhi *nhi);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300617struct tb *tb_probe(struct tb_nhi *nhi);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200618
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300619extern struct device_type tb_domain_type;
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200620extern struct device_type tb_retimer_type;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300621extern struct device_type tb_switch_type;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300622
623int tb_domain_init(void);
624void tb_domain_exit(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300625int tb_xdomain_init(void);
626void tb_xdomain_exit(void);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300627
Mika Westerberg7f0a34d2020-12-29 13:44:57 +0200628struct tb *tb_domain_alloc(struct tb_nhi *nhi, int timeout_msec, size_t privsize);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300629int tb_domain_add(struct tb *tb);
630void tb_domain_remove(struct tb *tb);
631int tb_domain_suspend_noirq(struct tb *tb);
632int tb_domain_resume_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300633int tb_domain_suspend(struct tb *tb);
Mika Westerberg884e4d52020-08-31 13:05:14 +0300634int tb_domain_freeze_noirq(struct tb *tb);
635int tb_domain_thaw_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300636void tb_domain_complete(struct tb *tb);
Mika Westerberg2d8ff0b2018-07-25 11:48:39 +0300637int tb_domain_runtime_suspend(struct tb *tb);
638int tb_domain_runtime_resume(struct tb *tb);
Mika Westerberg3da88be2020-11-10 11:47:14 +0300639int tb_domain_disapprove_switch(struct tb *tb, struct tb_switch *sw);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300640int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
641int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
642int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300643int tb_domain_disconnect_pcie_paths(struct tb *tb);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300644int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
645int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
646int tb_domain_disconnect_all_paths(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300647
Mika Westerberg559c1e12018-10-22 14:47:01 +0300648static inline struct tb *tb_domain_get(struct tb *tb)
649{
650 if (tb)
651 get_device(&tb->dev);
652 return tb;
653}
654
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300655static inline void tb_domain_put(struct tb *tb)
656{
657 put_device(&tb->dev);
658}
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200659
Mika Westerberg719a5fe2020-03-05 11:37:15 +0200660struct tb_nvm *tb_nvm_alloc(struct device *dev);
661int tb_nvm_add_active(struct tb_nvm *nvm, size_t size, nvmem_reg_read_t reg_read);
662int tb_nvm_write_buf(struct tb_nvm *nvm, unsigned int offset, void *val,
663 size_t bytes);
664int tb_nvm_add_non_active(struct tb_nvm *nvm, size_t size,
665 nvmem_reg_write_t reg_write);
666void tb_nvm_free(struct tb_nvm *nvm);
667void tb_nvm_exit(void);
668
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300669struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
670 u64 route);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300671struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
672 struct device *parent, u64 route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300673int tb_switch_configure(struct tb_switch *sw);
674int tb_switch_add(struct tb_switch *sw);
675void tb_switch_remove(struct tb_switch *sw);
Mika Westerberg6ac6fae2020-06-05 14:25:02 +0300676void tb_switch_suspend(struct tb_switch *sw, bool runtime);
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200677int tb_switch_resume(struct tb_switch *sw);
Mika Westerberg356b6c42019-09-19 15:25:30 +0300678int tb_switch_reset(struct tb_switch *sw);
Lukas Wunneraae20bb2016-03-20 13:57:20 +0100679void tb_sw_set_unplugged(struct tb_switch *sw);
Mika Westerberg386e5e22019-12-17 15:33:37 +0300680struct tb_port *tb_switch_find_port(struct tb_switch *sw,
681 enum tb_port_type type);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300682struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
683 u8 depth);
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200684struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
Radion Mirchevsky8e9267b2017-10-04 15:24:14 +0300685struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300686
Mika Westerbergb433d012019-09-30 14:07:22 +0300687/**
688 * tb_switch_for_each_port() - Iterate over each switch port
689 * @sw: Switch whose ports to iterate
690 * @p: Port used as iterator
691 *
692 * Iterates over each switch port skipping the control port (port %0).
693 */
694#define tb_switch_for_each_port(sw, p) \
695 for ((p) = &(sw)->ports[1]; \
696 (p) <= &(sw)->ports[(sw)->config.max_port_number]; (p)++)
697
Mika Westerbergb6b0ea72017-10-04 15:19:20 +0300698static inline struct tb_switch *tb_switch_get(struct tb_switch *sw)
699{
700 if (sw)
701 get_device(&sw->dev);
702 return sw;
703}
704
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300705static inline void tb_switch_put(struct tb_switch *sw)
706{
707 put_device(&sw->dev);
708}
709
710static inline bool tb_is_switch(const struct device *dev)
711{
712 return dev->type == &tb_switch_type;
713}
714
715static inline struct tb_switch *tb_to_switch(struct device *dev)
716{
717 if (tb_is_switch(dev))
718 return container_of(dev, struct tb_switch, dev);
719 return NULL;
720}
721
Mika Westerberg0414bec2017-02-19 23:43:26 +0200722static inline struct tb_switch *tb_switch_parent(struct tb_switch *sw)
723{
724 return tb_to_switch(sw->dev.parent);
725}
726
Mika Westerberg17a8f812019-10-08 16:42:47 +0300727static inline bool tb_switch_is_light_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200728{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300729 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
730 sw->config.device_id == PCI_DEVICE_ID_INTEL_LIGHT_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200731}
732
Mika Westerberg17a8f812019-10-08 16:42:47 +0300733static inline bool tb_switch_is_eagle_ridge(const struct tb_switch *sw)
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200734{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300735 return sw->config.vendor_id == PCI_VENDOR_ID_INTEL &&
736 sw->config.device_id == PCI_DEVICE_ID_INTEL_EAGLE_RIDGE;
Mika Westerberg8b0110d2019-01-08 18:55:09 +0200737}
738
Mika Westerberg17a8f812019-10-08 16:42:47 +0300739static inline bool tb_switch_is_cactus_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200740{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300741 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
742 switch (sw->config.device_id) {
743 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
744 case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
745 return true;
746 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200747 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300748 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200749}
750
Mika Westerberg17a8f812019-10-08 16:42:47 +0300751static inline bool tb_switch_is_falcon_ridge(const struct tb_switch *sw)
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200752{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300753 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
754 switch (sw->config.device_id) {
755 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
756 case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
757 return true;
758 }
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200759 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300760 return false;
Mika Westerberg99cabbb2018-12-30 21:34:08 +0200761}
762
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200763static inline bool tb_switch_is_alpine_ridge(const struct tb_switch *sw)
764{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300765 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
766 switch (sw->config.device_id) {
767 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
768 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
769 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
770 case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
771 return true;
772 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200773 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300774 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200775}
776
777static inline bool tb_switch_is_titan_ridge(const struct tb_switch *sw)
778{
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300779 if (sw->config.vendor_id == PCI_VENDOR_ID_INTEL) {
780 switch (sw->config.device_id) {
781 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
782 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
783 case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
784 return true;
785 }
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200786 }
Mika Westerberg35ee69e2020-07-25 10:40:47 +0300787 return false;
Mika Westerberg7bffd97e2019-03-22 15:16:53 +0200788}
789
Mika Westerbergf07a3602019-06-25 15:10:01 +0300790/**
Mika Westerbergb0407982019-12-17 15:33:40 +0300791 * tb_switch_is_usb4() - Is the switch USB4 compliant
792 * @sw: Switch to check
793 *
794 * Returns true if the @sw is USB4 compliant router, false otherwise.
795 */
796static inline bool tb_switch_is_usb4(const struct tb_switch *sw)
797{
798 return sw->config.thunderbolt_version == USB4_VERSION_1_0;
799}
800
801/**
Mika Westerbergf07a3602019-06-25 15:10:01 +0300802 * tb_switch_is_icm() - Is the switch handled by ICM firmware
803 * @sw: Switch to check
804 *
805 * In case there is a need to differentiate whether ICM firmware or SW CM
806 * is handling @sw this function can be called. It is valid to call this
807 * after tb_switch_alloc() and tb_switch_configure() has been called
808 * (latter only for SW CM case).
809 */
810static inline bool tb_switch_is_icm(const struct tb_switch *sw)
811{
812 return !sw->config.enabled;
813}
814
Mika Westerberg91c0c122019-03-21 19:03:00 +0200815int tb_switch_lane_bonding_enable(struct tb_switch *sw);
816void tb_switch_lane_bonding_disable(struct tb_switch *sw);
Mika Westerbergde462032020-04-02 14:50:52 +0300817int tb_switch_configure_link(struct tb_switch *sw);
818void tb_switch_unconfigure_link(struct tb_switch *sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +0200819
Mika Westerberg8afe9092019-03-26 15:52:30 +0300820bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
821int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
822void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
823
Rajmohan Manicf29b9af2019-12-17 15:33:43 +0300824int tb_switch_tmu_init(struct tb_switch *sw);
825int tb_switch_tmu_post_time(struct tb_switch *sw);
826int tb_switch_tmu_disable(struct tb_switch *sw);
827int tb_switch_tmu_enable(struct tb_switch *sw);
828
829static inline bool tb_switch_tmu_is_enabled(const struct tb_switch *sw)
830{
831 return sw->tmu.rate == TB_SWITCH_TMU_RATE_HIFI &&
832 !sw->tmu.unidirectional;
833}
834
Andreas Noever9da672a2014-06-03 22:04:05 +0200835int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
Andreas Noever520b6702014-06-03 22:04:07 +0200836int tb_port_add_nfc_credits(struct tb_port *port, int credits);
Mika Westerberg44242d62018-09-28 16:35:32 +0300837int tb_port_set_initial_credits(struct tb_port *port, u32 credits);
Andreas Noever520b6702014-06-03 22:04:07 +0200838int tb_port_clear_counter(struct tb_port *port, int counter);
Mika Westerbergb0407982019-12-17 15:33:40 +0300839int tb_port_unlock(struct tb_port *port);
Mika Westerberg341d4512020-02-21 12:11:54 +0200840int tb_port_enable(struct tb_port *port);
841int tb_port_disable(struct tb_port *port);
Mika Westerberg0b2863a2017-02-19 16:57:27 +0200842int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
843void tb_port_release_in_hopid(struct tb_port *port, int hopid);
844int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
845void tb_port_release_out_hopid(struct tb_port *port, int hopid);
Mika Westerbergfb19fac2017-02-19 21:51:30 +0200846struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
847 struct tb_port *prev);
Andreas Noever9da672a2014-06-03 22:04:05 +0200848
Mika Westerbergc64c3f32020-04-29 17:07:59 +0300849/**
850 * tb_for_each_port_on_path() - Iterate over each port on path
851 * @src: Source port
852 * @dst: Destination port
853 * @p: Port used as iterator
854 *
855 * Walks over each port on path from @src to @dst.
856 */
857#define tb_for_each_port_on_path(src, dst, p) \
858 for ((p) = tb_next_port_on_path((src), (dst), NULL); (p); \
859 (p) = tb_next_port_on_path((src), (dst), (p)))
860
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300861int tb_port_get_link_speed(struct tb_port *port);
Isaac Hazan4210d502020-09-24 11:43:58 +0300862int tb_port_get_link_width(struct tb_port *port);
Isaac Hazan5cc0df92020-09-24 11:44:01 +0300863int tb_port_state(struct tb_port *port);
864int tb_port_lane_bonding_enable(struct tb_port *port);
865void tb_port_lane_bonding_disable(struct tb_port *port);
Mika Westerberg5b7b8c02020-05-08 12:41:34 +0300866
Mika Westerbergda2da042017-06-06 15:24:58 +0300867int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
Rajmohan Maniaa43a9d2019-12-17 15:33:42 +0300868int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap);
Mika Westerberg6de057e2020-06-29 20:21:07 +0300869int tb_switch_next_cap(struct tb_switch *sw, unsigned int offset);
Mika Westerbergda2da042017-06-06 15:24:58 +0300870int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
Mika Westerberg3c8b2282020-06-29 20:15:17 +0300871int tb_port_next_cap(struct tb_port *port, unsigned int offset);
Mika Westerberge78db6f2017-10-12 16:45:50 +0300872bool tb_port_is_enabled(struct tb_port *port);
Andreas Noevere2b87852014-06-03 22:04:03 +0200873
Rajmohan Manie6f81852019-12-17 15:33:44 +0300874bool tb_usb3_port_is_enabled(struct tb_port *port);
875int tb_usb3_port_enable(struct tb_port *port, bool enable);
876
Mika Westerberg0414bec2017-02-19 23:43:26 +0200877bool tb_pci_port_is_enabled(struct tb_port *port);
Mika Westerberg93f36ad2017-02-19 13:48:29 +0200878int tb_pci_port_enable(struct tb_port *port, bool enable);
879
Mika Westerberg4f807e42018-09-17 16:30:49 +0300880int tb_dp_port_hpd_is_active(struct tb_port *port);
881int tb_dp_port_hpd_clear(struct tb_port *port);
882int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
883 unsigned int aux_tx, unsigned int aux_rx);
884bool tb_dp_port_is_enabled(struct tb_port *port);
885int tb_dp_port_enable(struct tb_port *port, bool enable);
886
Mika Westerberg0414bec2017-02-19 23:43:26 +0200887struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
888 struct tb_port *dst, int dst_hopid,
889 struct tb_port **last, const char *name);
Mika Westerberg8c7acaaf2017-02-19 22:11:41 +0200890struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
891 struct tb_port *dst, int dst_hopid, int link_nr,
892 const char *name);
Andreas Noever520b6702014-06-03 22:04:07 +0200893void tb_path_free(struct tb_path *path);
894int tb_path_activate(struct tb_path *path);
895void tb_path_deactivate(struct tb_path *path);
896bool tb_path_is_invalid(struct tb_path *path);
Mika Westerberg0bd680c2020-03-24 14:44:13 +0200897bool tb_path_port_on_path(const struct tb_path *path,
898 const struct tb_port *port);
Andreas Noever520b6702014-06-03 22:04:07 +0200899
Andreas Noevercd22e732014-06-12 23:11:46 +0200900int tb_drom_read(struct tb_switch *sw);
901int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
Andreas Noeverc90553b2014-06-03 22:04:11 +0200902
Mika Westerberga9be5582019-01-09 16:42:12 +0200903int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid);
Mika Westerberge28178b2020-04-02 12:42:44 +0300904int tb_lc_configure_port(struct tb_port *port);
905void tb_lc_unconfigure_port(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +0300906int tb_lc_configure_xdomain(struct tb_port *port);
907void tb_lc_unconfigure_xdomain(struct tb_port *port);
Mika Westerbergfdb08872020-11-26 12:52:43 +0300908int tb_lc_start_lane_initialization(struct tb_port *port);
Mika Westerbergb2911a52019-12-06 18:36:07 +0200909int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerberg5480dfc2019-01-09 17:25:43 +0200910int tb_lc_set_sleep(struct tb_switch *sw);
Mika Westerberg91c0c122019-03-21 19:03:00 +0200911bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
Mika Westerberg8afe9092019-03-26 15:52:30 +0300912bool tb_lc_dp_sink_query(struct tb_switch *sw, struct tb_port *in);
913int tb_lc_dp_sink_alloc(struct tb_switch *sw, struct tb_port *in);
914int tb_lc_dp_sink_dealloc(struct tb_switch *sw, struct tb_port *in);
Mario Limonciello1cb36292020-06-23 11:14:29 -0500915int tb_lc_force_power(struct tb_switch *sw);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200916
917static inline int tb_route_length(u64 route)
918{
919 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
920}
921
Andreas Noever9da672a2014-06-03 22:04:05 +0200922/**
923 * tb_downstream_route() - get route to downstream switch
924 *
925 * Port must not be the upstream port (otherwise a loop is created).
926 *
927 * Return: Returns a route to the switch behind @port.
928 */
929static inline u64 tb_downstream_route(struct tb_port *port)
930{
931 return tb_route(port->sw)
932 | ((u64) port->port << (port->sw->config.depth * 8));
933}
934
Mika Westerberg5ca67682020-10-22 13:22:06 +0300935bool tb_is_xdomain_enabled(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300936bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
937 const void *buf, size_t size);
938struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
939 u64 route, const uuid_t *local_uuid,
940 const uuid_t *remote_uuid);
941void tb_xdomain_add(struct tb_xdomain *xd);
942void tb_xdomain_remove(struct tb_xdomain *xd);
943struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
944 u8 depth);
945
Kranthi Kuntaladacb1282020-03-05 16:39:58 +0200946int tb_retimer_scan(struct tb_port *port);
947void tb_retimer_remove_all(struct tb_port *port);
948
949static inline bool tb_is_retimer(const struct device *dev)
950{
951 return dev->type == &tb_retimer_type;
952}
953
954static inline struct tb_retimer *tb_to_retimer(struct device *dev)
955{
956 if (tb_is_retimer(dev))
957 return container_of(dev, struct tb_retimer, dev);
958 return NULL;
959}
960
Mika Westerbergb0407982019-12-17 15:33:40 +0300961int usb4_switch_setup(struct tb_switch *sw);
962int usb4_switch_read_uid(struct tb_switch *sw, u64 *uid);
963int usb4_switch_drom_read(struct tb_switch *sw, unsigned int address, void *buf,
964 size_t size);
Mika Westerbergb0407982019-12-17 15:33:40 +0300965bool usb4_switch_lane_bonding_possible(struct tb_switch *sw);
Mika Westerbergb2911a52019-12-06 18:36:07 +0200966int usb4_switch_set_wake(struct tb_switch *sw, unsigned int flags);
Mika Westerbergb0407982019-12-17 15:33:40 +0300967int usb4_switch_set_sleep(struct tb_switch *sw);
968int usb4_switch_nvm_sector_size(struct tb_switch *sw);
969int usb4_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
970 size_t size);
971int usb4_switch_nvm_write(struct tb_switch *sw, unsigned int address,
972 const void *buf, size_t size);
973int usb4_switch_nvm_authenticate(struct tb_switch *sw);
Mika Westerberg661b1942020-11-10 11:34:07 +0300974int usb4_switch_nvm_authenticate_status(struct tb_switch *sw, u32 *status);
Mika Westerbergb0407982019-12-17 15:33:40 +0300975bool usb4_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
976int usb4_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
977int usb4_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
978struct tb_port *usb4_switch_map_pcie_down(struct tb_switch *sw,
979 const struct tb_port *port);
Rajmohan Manie6f81852019-12-17 15:33:44 +0300980struct tb_port *usb4_switch_map_usb3_down(struct tb_switch *sw,
981 const struct tb_port *port);
Mika Westerbergb0407982019-12-17 15:33:40 +0300982
983int usb4_port_unlock(struct tb_port *port);
Mika Westerberge28178b2020-04-02 12:42:44 +0300984int usb4_port_configure(struct tb_port *port);
985void usb4_port_unconfigure(struct tb_port *port);
Mika Westerberg284652a2020-04-09 14:23:32 +0300986int usb4_port_configure_xdomain(struct tb_port *port);
987void usb4_port_unconfigure_xdomain(struct tb_port *port);
Rajmohan Mani02d12852020-03-05 16:33:46 +0200988int usb4_port_enumerate_retimers(struct tb_port *port);
989
990int usb4_port_retimer_read(struct tb_port *port, u8 index, u8 reg, void *buf,
991 u8 size);
992int usb4_port_retimer_write(struct tb_port *port, u8 index, u8 reg,
993 const void *buf, u8 size);
994int usb4_port_retimer_is_last(struct tb_port *port, u8 index);
995int usb4_port_retimer_nvm_sector_size(struct tb_port *port, u8 index);
996int usb4_port_retimer_nvm_write(struct tb_port *port, u8 index,
997 unsigned int address, const void *buf,
998 size_t size);
999int usb4_port_retimer_nvm_authenticate(struct tb_port *port, u8 index);
1000int usb4_port_retimer_nvm_authenticate_status(struct tb_port *port, u8 index,
1001 u32 *status);
1002int usb4_port_retimer_nvm_read(struct tb_port *port, u8 index,
1003 unsigned int address, void *buf, size_t size);
Mika Westerberg3b1d8d52020-02-21 23:14:41 +02001004
1005int usb4_usb3_port_max_link_rate(struct tb_port *port);
1006int usb4_usb3_port_actual_link_rate(struct tb_port *port);
1007int usb4_usb3_port_allocated_bandwidth(struct tb_port *port, int *upstream_bw,
1008 int *downstream_bw);
1009int usb4_usb3_port_allocate_bandwidth(struct tb_port *port, int *upstream_bw,
1010 int *downstream_bw);
1011int usb4_usb3_port_release_bandwidth(struct tb_port *port, int *upstream_bw,
1012 int *downstream_bw);
Mario Limonciello1cb36292020-06-23 11:14:29 -05001013
Mika Westerberg810278d2020-08-26 08:58:29 +03001014/* Keep link controller awake during update */
Mario Limonciello1cb36292020-06-23 11:14:29 -05001015#define QUIRK_FORCE_POWER_LINK_CONTROLLER BIT(0)
1016
1017void tb_check_quirks(struct tb_switch *sw);
1018
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001019#ifdef CONFIG_ACPI
1020void tb_acpi_add_links(struct tb_nhi *nhi);
Mika Westerbergc6da62a2020-02-18 16:14:42 +02001021
1022bool tb_acpi_is_native(void);
1023bool tb_acpi_may_tunnel_usb3(void);
1024bool tb_acpi_may_tunnel_dp(void);
1025bool tb_acpi_may_tunnel_pcie(void);
1026bool tb_acpi_is_xdomain_allowed(void);
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001027#else
1028static inline void tb_acpi_add_links(struct tb_nhi *nhi) { }
Mika Westerbergc6da62a2020-02-18 16:14:42 +02001029
1030static inline bool tb_acpi_is_native(void) { return true; }
1031static inline bool tb_acpi_may_tunnel_usb3(void) { return true; }
1032static inline bool tb_acpi_may_tunnel_dp(void) { return true; }
1033static inline bool tb_acpi_may_tunnel_pcie(void) { return true; }
1034static inline bool tb_acpi_is_xdomain_allowed(void) { return true; }
Mika Westerbergb2be2b02019-04-02 15:26:00 +03001035#endif
1036
Gil Fine54e41812020-06-29 20:30:52 +03001037#ifdef CONFIG_DEBUG_FS
1038void tb_debugfs_init(void);
1039void tb_debugfs_exit(void);
1040void tb_switch_debugfs_init(struct tb_switch *sw);
1041void tb_switch_debugfs_remove(struct tb_switch *sw);
Mika Westerberg407ac932020-10-07 17:53:44 +03001042void tb_service_debugfs_init(struct tb_service *svc);
1043void tb_service_debugfs_remove(struct tb_service *svc);
Gil Fine54e41812020-06-29 20:30:52 +03001044#else
1045static inline void tb_debugfs_init(void) { }
1046static inline void tb_debugfs_exit(void) { }
1047static inline void tb_switch_debugfs_init(struct tb_switch *sw) { }
1048static inline void tb_switch_debugfs_remove(struct tb_switch *sw) { }
Mika Westerberg407ac932020-10-07 17:53:44 +03001049static inline void tb_service_debugfs_init(struct tb_service *svc) { }
1050static inline void tb_service_debugfs_remove(struct tb_service *svc) { }
Gil Fine54e41812020-06-29 20:30:52 +03001051#endif
1052
Mika Westerberg2c6ea4e2020-08-24 12:46:52 +03001053#ifdef CONFIG_USB4_KUNIT_TEST
1054int tb_test_init(void);
1055void tb_test_exit(void);
1056#else
1057static inline int tb_test_init(void) { return 0; }
1058static inline void tb_test_exit(void) { }
1059#endif
1060
Andreas Noeverd6cc51c2014-06-03 22:04:00 +02001061#endif