Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Apr 14-17, 2025
Register
Loading...
v5.9
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Thunderbolt driver - bus logic (NHI independent)
  4 *
  5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
  6 * Copyright (C) 2018, Intel Corporation
  7 */
  8
  9#ifndef TB_H_
 10#define TB_H_
 11
 12#include <linux/nvmem-provider.h>
 13#include <linux/pci.h>
 14#include <linux/thunderbolt.h>
 15#include <linux/uuid.h>
 16
 17#include "tb_regs.h"
 18#include "ctl.h"
 19#include "dma_port.h"
 20
 21#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
 29/**
 30 * struct tb_nvm - Structure holding NVM information
 31 * @dev: Owner of the NVM
 32 * @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
 41 * @authenticating: The device is authenticating the new NVM
 42 * @flushed: The image has been flushed to the storage area
 43 *
 44 * The user of this structure needs to handle serialization of possible
 45 * concurrent access.
 46 */
 47struct tb_nvm {
 48	struct device *dev;
 49	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;
 57	bool flushed;
 58};
 59
 60#define TB_SWITCH_KEY_SIZE		32
 61#define TB_SWITCH_MAX_DEPTH		6
 62#define USB4_SWITCH_MAX_DEPTH		5
 63
 64/**
 65 * 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/**
 97 * struct tb_switch - a thunderbolt switch
 98 * @dev: Device for the switch
 99 * @config: Switch configuration
100 * @ports: Ports in this switch
101 * @dma_port: If the switch has port supporting DMA configuration based
102 *	      mailbox this will hold the pointer to that (%NULL
103 *	      otherwise). If set it also means the switch has
104 *	      upgradeable NVM.
105 * @tmu: The switch TMU configuration
106 * @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
111 * @vendor_name: Name of the vendor (or %NULL if not known)
112 * @device_name: Name of the device (or %NULL if not known)
113 * @link_speed: Speed of the link in Gb/s
114 * @link_width: Width of the link (1 or 2)
115 * @link_usb4: Upstream link is USB4
116 * @generation: Switch Thunderbolt generation
117 * @cap_plug_events: Offset to the plug events capability (%0 if not found)
118 * @cap_lc: Offset to the link controller capability (%0 if not found)
119 * @is_unplugged: The switch is going away
120 * @drom: DROM of the switch (%NULL if not found)
121 * @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
124 * @boot: Whether the switch was already authorized on boot or not
125 * @rpm: The switch supports runtime PM
126 * @authorized: Whether the switch is authorized by user or policy
127 * @security_level: Switch supported security level
128 * @key: Contains the key used to challenge the device or %NULL if not
129 *	 supported. Size of the key is %TB_SWITCH_KEY_SIZE.
130 * @connection_id: Connection ID used with ICM messaging
131 * @connection_key: Connection key used with ICM messaging
132 * @link: Root switch link this switch is connected (ICM only)
133 * @depth: Depth in the chain this switch is connected (ICM only)
134 * @rpm_complete: Completion used to wait for runtime resume to
135 *		  complete (ICM only)
136 * @quirks: Quirks used for this Thunderbolt switch
137 *
138 * When the switch is being added or removed to the domain (other
139 * switches) you need to have domain lock held.
140 */
141struct tb_switch {
142	struct device dev;
143	struct tb_regs_switch_header config;
144	struct tb_port *ports;
145	struct tb_dma_port *dma_port;
146	struct tb_switch_tmu tmu;
147	struct tb *tb;
148	u64 uid;
149	uuid_t *uuid;
150	u16 vendor;
151	u16 device;
152	const char *vendor_name;
153	const char *device_name;
154	unsigned int link_speed;
155	unsigned int link_width;
156	bool link_usb4;
157	unsigned int generation;
158	int cap_plug_events;
159	int cap_lc;
160	bool is_unplugged;
161	u8 *drom;
162	struct tb_nvm *nvm;
163	bool no_nvm_upgrade;
164	bool safe_mode;
165	bool boot;
166	bool rpm;
167	unsigned int authorized;
168	enum tb_security_level security_level;
169	u8 *key;
170	u8 connection_id;
171	u8 connection_key;
172	u8 link;
173	u8 depth;
174	struct completion rpm_complete;
175	unsigned long quirks;
176};
177
178/**
179 * struct tb_port - a thunderbolt port, part of a tb_switch
180 * @config: Cached port configuration read from registers
181 * @sw: Switch the port belongs to
182 * @remote: Remote port (%NULL if not connected)
183 * @xdomain: Remote host (%NULL if not connected)
184 * @cap_phy: Offset, zero if not found
185 * @cap_tmu: Offset of the adapter specific TMU capability (%0 if not present)
186 * @cap_adap: Offset of the adapter specific capability (%0 if not present)
187 * @cap_usb4: Offset to the USB4 port capability (%0 if not present)
188 * @port: Port number on switch
189 * @disabled: Disabled by eeprom or enabled but not implemented
190 * @bonded: true if the port is bonded (two lanes combined as one)
191 * @dual_link_port: If the switch is connected using two ports, points
192 *		    to the other port.
193 * @link_nr: Is this primary or secondary port on the dual_link.
194 * @in_hopids: Currently allocated input HopIDs
195 * @out_hopids: Currently allocated output HopIDs
196 * @list: Used to link ports to DP resources list
197 */
198struct tb_port {
199	struct tb_regs_port_header config;
200	struct tb_switch *sw;
201	struct tb_port *remote;
202	struct tb_xdomain *xdomain;
203	int cap_phy;
204	int cap_tmu;
205	int cap_adap;
206	int cap_usb4;
207	u8 port;
208	bool disabled;
209	bool bonded;
210	struct tb_port *dual_link_port;
211	u8 link_nr:1;
212	struct ida in_hopids;
213	struct ida out_hopids;
214	struct list_head list;
215};
216
217/**
218 * tb_retimer: Thunderbolt retimer
219 * @dev: Device for the retimer
220 * @tb: Pointer to the domain the retimer belongs to
221 * @index: Retimer index facing the router USB4 port
222 * @vendor: Vendor ID of the retimer
223 * @device: Device ID of the retimer
224 * @port: Pointer to the lane 0 adapter
225 * @nvm: Pointer to the NVM if the retimer has one (%NULL otherwise)
226 * @auth_status: Status of last NVM authentication
227 */
228struct tb_retimer {
229	struct device dev;
230	struct tb *tb;
231	u8 index;
232	u32 vendor;
233	u32 device;
234	struct tb_port *port;
235	struct tb_nvm *nvm;
236	u32 auth_status;
237};
238
239/**
240 * struct tb_path_hop - routing information for a tb_path
241 * @in_port: Ingress port of a switch
242 * @out_port: Egress port of a switch where the packet is routed out
243 *	      (must be on the same switch than @in_port)
244 * @in_hop_index: HopID where the path configuration entry is placed in
245 *		  the path config space of @in_port.
246 * @in_counter_index: Used counter index (not used in the driver
247 *		      currently, %-1 to disable)
248 * @next_hop_index: HopID of the packet when it is routed out from @out_port
249 * @initial_credits: Number of initial flow control credits allocated for
250 *		     the path
251 *
252 * Hop configuration is always done on the IN port of a switch.
253 * in_port and out_port have to be on the same switch. Packets arriving on
254 * in_port with "hop" = in_hop_index will get routed to through out_port. The
255 * next hop to take (on out_port->remote) is determined by
256 * next_hop_index. When routing packet to another switch (out->remote is
257 * set) the @next_hop_index must match the @in_hop_index of that next
258 * hop to make routing possible.
259 *
260 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
261 * port.
262 */
263struct tb_path_hop {
264	struct tb_port *in_port;
265	struct tb_port *out_port;
266	int in_hop_index;
267	int in_counter_index;
268	int next_hop_index;
269	unsigned int initial_credits;
270};
271
272/**
273 * enum tb_path_port - path options mask
274 * @TB_PATH_NONE: Do not activate on any hop on path
275 * @TB_PATH_SOURCE: Activate on the first hop (out of src)
276 * @TB_PATH_INTERNAL: Activate on the intermediate hops (not the first/last)
277 * @TB_PATH_DESTINATION: Activate on the last hop (into dst)
278 * @TB_PATH_ALL: Activate on all hops on the path
279 */
280enum tb_path_port {
281	TB_PATH_NONE = 0,
282	TB_PATH_SOURCE = 1,
283	TB_PATH_INTERNAL = 2,
284	TB_PATH_DESTINATION = 4,
285	TB_PATH_ALL = 7,
286};
287
288/**
289 * struct tb_path - a unidirectional path between two ports
290 * @tb: Pointer to the domain structure
291 * @name: Name of the path (used for debugging)
292 * @nfc_credits: Number of non flow controlled credits allocated for the path
293 * @ingress_shared_buffer: Shared buffering used for ingress ports on the path
294 * @egress_shared_buffer: Shared buffering used for egress ports on the path
295 * @ingress_fc_enable: Flow control for ingress ports on the path
296 * @egress_fc_enable: Flow control for egress ports on the path
297 * @priority: Priority group if the path
298 * @weight: Weight of the path inside the priority group
299 * @drop_packages: Drop packages from queue tail or head
300 * @activated: Is the path active
301 * @clear_fc: Clear all flow control from the path config space entries
302 *	      when deactivating this path
303 * @hops: Path hops
304 * @path_length: How many hops the path uses
305 *
306 * A path consists of a number of hops (see &struct tb_path_hop). To
307 * establish a PCIe tunnel two paths have to be created between the two
308 * PCIe ports.
309 */
310struct tb_path {
311	struct tb *tb;
312	const char *name;
313	int nfc_credits;
314	enum tb_path_port ingress_shared_buffer;
315	enum tb_path_port egress_shared_buffer;
316	enum tb_path_port ingress_fc_enable;
317	enum tb_path_port egress_fc_enable;
318
319	unsigned int priority:3;
320	int weight:4;
321	bool drop_packages;
322	bool activated;
323	bool clear_fc;
324	struct tb_path_hop *hops;
325	int path_length;
326};
327
328/* HopIDs 0-7 are reserved by the Thunderbolt protocol */
329#define TB_PATH_MIN_HOPID	8
330/*
331 * Support paths from the farthest (depth 6) router to the host and back
332 * to the same level (not necessarily to the same router).
333 */
334#define TB_PATH_MAX_HOPS	(7 * 2)
335
336/**
337 * struct tb_cm_ops - Connection manager specific operations vector
338 * @driver_ready: Called right after control channel is started. Used by
339 *		  ICM to send driver ready message to the firmware.
340 * @start: Starts the domain
341 * @stop: Stops the domain
342 * @suspend_noirq: Connection manager specific suspend_noirq
343 * @resume_noirq: Connection manager specific resume_noirq
344 * @suspend: Connection manager specific suspend
345 * @complete: Connection manager specific complete
346 * @runtime_suspend: Connection manager specific runtime_suspend
347 * @runtime_resume: Connection manager specific runtime_resume
348 * @runtime_suspend_switch: Runtime suspend a switch
349 * @runtime_resume_switch: Runtime resume a switch
350 * @handle_event: Handle thunderbolt event
351 * @get_boot_acl: Get boot ACL list
352 * @set_boot_acl: Set boot ACL list
353 * @approve_switch: Approve switch
354 * @add_switch_key: Add key to switch
355 * @challenge_switch_key: Challenge switch using key
356 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
357 * @approve_xdomain_paths: Approve (establish) XDomain DMA paths
358 * @disconnect_xdomain_paths: Disconnect XDomain DMA paths
359 */
360struct tb_cm_ops {
361	int (*driver_ready)(struct tb *tb);
362	int (*start)(struct tb *tb);
363	void (*stop)(struct tb *tb);
364	int (*suspend_noirq)(struct tb *tb);
365	int (*resume_noirq)(struct tb *tb);
366	int (*suspend)(struct tb *tb);
367	void (*complete)(struct tb *tb);
368	int (*runtime_suspend)(struct tb *tb);
369	int (*runtime_resume)(struct tb *tb);
370	int (*runtime_suspend_switch)(struct tb_switch *sw);
371	int (*runtime_resume_switch)(struct tb_switch *sw);
372	void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
373			     const void *buf, size_t size);
374	int (*get_boot_acl)(struct tb *tb, uuid_t *uuids, size_t nuuids);
375	int (*set_boot_acl)(struct tb *tb, const uuid_t *uuids, size_t nuuids);
376	int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
377	int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
378	int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
379				    const u8 *challenge, u8 *response);
380	int (*disconnect_pcie_paths)(struct tb *tb);
381	int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
382	int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
383};
384
385static inline void *tb_priv(struct tb *tb)
386{
387	return (void *)tb->privdata;
388}
389
390#define TB_AUTOSUSPEND_DELAY		15000 /* ms */
391
392/* helper functions & macros */
393
394/**
395 * tb_upstream_port() - return the upstream port of a switch
396 *
397 * Every switch has an upstream port (for the root switch it is the NHI).
398 *
399 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
400 * non root switches (on the NHI port remote is always NULL).
401 *
402 * Return: Returns the upstream port of the switch.
403 */
404static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
405{
406	return &sw->ports[sw->config.upstream_port_number];
407}
408
409/**
410 * tb_is_upstream_port() - Is the port upstream facing
411 * @port: Port to check
412 *
413 * Returns true if @port is upstream facing port. In case of dual link
414 * ports both return true.
415 */
416static inline bool tb_is_upstream_port(const struct tb_port *port)
417{
418	const struct tb_port *upstream_port = tb_upstream_port(port->sw);
419	return port == upstream_port || port->dual_link_port == upstream_port;
420}
421
422static inline u64 tb_route(const struct tb_switch *sw)
423{
424	return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
425}
426
427static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
428{
429	u8 port;
430
431	port = route >> (sw->config.depth * 8);
432	if (WARN_ON(port > sw->config.max_port_number))
433		return NULL;
434	return &sw->ports[port];
435}
436
437/**
438 * tb_port_has_remote() - Does the port have switch connected downstream
439 * @port: Port to check
440 *
441 * Returns true only when the port is primary port and has remote set.
442 */
443static inline bool tb_port_has_remote(const struct tb_port *port)
444{
445	if (tb_is_upstream_port(port))
446		return false;
447	if (!port->remote)
448		return false;
449	if (port->dual_link_port && port->link_nr)
450		return false;
451
452	return true;
453}
454
455static inline bool tb_port_is_null(const struct tb_port *port)
456{
457	return port && port->port && port->config.type == TB_TYPE_PORT;
458}
459
460static inline bool tb_port_is_pcie_down(const struct tb_port *port)
461{
462	return port && port->config.type == TB_TYPE_PCIE_DOWN;
463}
464
465static inline bool tb_port_is_pcie_up(const struct tb_port *port)
466{
467	return port && port->config.type == TB_TYPE_PCIE_UP;
468}
469
470static inline bool tb_port_is_dpin(const struct tb_port *port)
471{
472	return port && port->config.type == TB_TYPE_DP_HDMI_IN;
473}
474
475static inline bool tb_port_is_dpout(const struct tb_port *port)
476{
477	return port && port->config.type == TB_TYPE_DP_HDMI_OUT;
478}
479
480static inline bool tb_port_is_usb3_down(const struct tb_port *port)
481{
482	return port && port->config.type == TB_TYPE_USB3_DOWN;
483}
484
485static inline bool tb_port_is_usb3_up(const struct tb_port *port)
486{
487	return port && port->config.type == TB_TYPE_USB3_UP;
488}
489
490static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
491			     enum tb_cfg_space space, u32 offset, u32 length)
492{
493	if (sw->is_unplugged)
494		return -ENODEV;
495	return tb_cfg_read(sw->tb->ctl,
496			   buffer,
497			   tb_route(sw),
498			   0,
499			   space,
500			   offset,
501			   length);
502}
503
504static inline int tb_sw_write(struct tb_switch *sw, const void *buffer,
505			      enum tb_cfg_space space, u32 offset, u32 length)
506{
507	if (sw->is_unplugged)
508		return -ENODEV;
509	return tb_cfg_write(sw->tb->ctl,
510			    buffer,
511			    tb_route(sw),
512			    0,
513			    space,
514			    offset,
515			    length);
516}
517
518static inline int tb_port_read(struct tb_port *port, void *buffer,
519			       enum tb_cfg_space space, u32 offset, u32 length)
520{
521	if (port->sw->is_unplugged)
522		return -ENODEV;
523	return tb_cfg_read(port->sw->tb->ctl,
524			   buffer,
525			   tb_route(port->sw),
526			   port->port,
527			   space,
528			   offset,
529			   length);
530}
531
532static inline int tb_port_write(struct tb_port *port, const void *buffer,
533				enum tb_cfg_space space, u32 offset, u32 length)
534{
535	if (port->sw->is_unplugged)
536		return -ENODEV;
537	return tb_cfg_write(port->sw->tb->ctl,
538			    buffer,
539			    tb_route(port->sw),
540			    port->port,
541			    space,
542			    offset,
543			    length);
544}
545
546#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
547#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
548#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
549#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
550#define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg)
551
552#define __TB_SW_PRINT(level, sw, fmt, arg...)           \
553	do {                                            \
554		const struct tb_switch *__sw = (sw);    \
555		level(__sw->tb, "%llx: " fmt,           \
556		      tb_route(__sw), ## arg);          \
557	} while (0)
558#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
559#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
560#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
561#define tb_sw_dbg(sw, fmt, arg...) __TB_SW_PRINT(tb_dbg, sw, fmt, ##arg)
562
563#define __TB_PORT_PRINT(level, _port, fmt, arg...)                      \
564	do {                                                            \
565		const struct tb_port *__port = (_port);                 \
566		level(__port->sw->tb, "%llx:%x: " fmt,                  \
567		      tb_route(__port->sw), __port->port, ## arg);      \
568	} while (0)
569#define tb_port_WARN(port, fmt, arg...) \
570	__TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
571#define tb_port_warn(port, fmt, arg...) \
572	__TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
573#define tb_port_info(port, fmt, arg...) \
574	__TB_PORT_PRINT(tb_info, port, fmt, ##arg)
575#define tb_port_dbg(port, fmt, arg...) \
576	__TB_PORT_PRINT(tb_dbg, port, fmt, ##arg)
577
578struct tb *icm_probe(struct tb_nhi *nhi);
579struct tb *tb_probe(struct tb_nhi *nhi);
580
581extern struct device_type tb_domain_type;
582extern struct device_type tb_retimer_type;
583extern struct device_type tb_switch_type;
584
585int tb_domain_init(void);
586void tb_domain_exit(void);
 
587int tb_xdomain_init(void);
588void tb_xdomain_exit(void);
589
590struct tb *tb_domain_alloc(struct tb_nhi *nhi, size_t privsize);
591int tb_domain_add(struct tb *tb);
592void tb_domain_remove(struct tb *tb);
593int tb_domain_suspend_noirq(struct tb *tb);
594int tb_domain_resume_noirq(struct tb *tb);
595int tb_domain_suspend(struct tb *tb);
596void tb_domain_complete(struct tb *tb);
597int tb_domain_runtime_suspend(struct tb *tb);
598int tb_domain_runtime_resume(struct tb *tb);
599int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
600int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
601int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
602int tb_domain_disconnect_pcie_paths(struct tb *tb);
603int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
604int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
605int tb_domain_disconnect_all_paths(struct tb *tb);
606
607static inline struct tb *tb_domain_get(struct tb *tb)
608{
609	if (tb)
610		get_device(&tb->dev);
611	return tb;
612}
613
614static inline void tb_domain_put(struct tb *tb)
615{
616	put_device(&tb->dev);
617}
618
619struct tb_nvm *tb_nvm_alloc(struct device *dev);
620int tb_nvm_add_active(struct tb_nvm *nvm, size_t size, nvmem_reg_read_t reg_read);
621int tb_nvm_write_buf(struct tb_nvm *nvm, unsigned int offset, void *val,
622		     size_t bytes);
623int tb_nvm_add_non_active(struct tb_nvm *nvm, size_t size,
624			  nvmem_reg_write_t reg_write);
625void tb_nvm_free(struct tb_nvm *nvm);
626void tb_nvm_exit(void);
627
628struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
629				  u64 route);
630struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
631			struct device *parent, u64 route);
632int tb_switch_configure(struct tb_switch *sw);
633int tb_switch_add(struct tb_switch *sw);
634void tb_switch_remove(struct tb_switch *sw);
635void tb_switch_suspend(struct tb_switch *sw);
636int tb_switch_resume(struct tb_switch *sw);
637int tb_switch_reset(struct tb *tb, u64 route);
638void tb_sw_set_unplugged(struct tb_switch *sw);
639struct tb_port *tb_switch_find_port(struct tb_switch *sw,
640				    enum tb_port_type type);
641struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
642					       u8 depth);
643struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
644struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route);
645
646/**
647 * tb_switch_for_each_port() - Iterate over each switch port
648 * @sw: Switch whose ports to iterate
649 * @p: Port used as iterator
650 *
651 * Iterates over each switch port skipping the control port (port %0).
652 */
653#define tb_switch_for_each_port(sw, p)					\
654	for ((p) = &(sw)->ports[1];					\
655	     (p) <= &(sw)->ports[(sw)->config.max_port_number]; (p)++)
656
657static inline struct tb_switch *tb_switch_get(struct tb_switch *sw)
658{
659	if (sw)
660		get_device(&sw->dev);
661	return sw;
662}
663
664static inline void tb_switch_put(struct tb_switch *sw)
665{
666	put_device(&sw->dev);
667}
668
669static inline bool tb_is_switch(const struct device *dev)
670{
671	return dev->type == &tb_switch_type;
672}
673
674static inline struct tb_switch *tb_to_switch(struct device *dev)
675{
676	if (tb_is_switch(dev))
677		return container_of(dev, struct tb_switch, dev);
678	return NULL;
679}
680
681static inline struct tb_switch *tb_switch_parent(struct tb_switch *sw)
682{
683	return tb_to_switch(sw->dev.parent);
684}
685
686static inline bool tb_switch_is_light_ridge(const struct tb_switch *sw)
687{
688	return sw->config.device_id == PCI_DEVICE_ID_INTEL_LIGHT_RIDGE;
689}
690
691static inline bool tb_switch_is_eagle_ridge(const struct tb_switch *sw)
692{
693	return sw->config.device_id == PCI_DEVICE_ID_INTEL_EAGLE_RIDGE;
694}
695
696static inline bool tb_switch_is_cactus_ridge(const struct tb_switch *sw)
697{
698	switch (sw->config.device_id) {
699	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
700	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
701		return true;
702	default:
703		return false;
704	}
705}
706
707static inline bool tb_switch_is_falcon_ridge(const struct tb_switch *sw)
708{
709	switch (sw->config.device_id) {
710	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
711	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
712		return true;
713	default:
714		return false;
715	}
716}
717
718static inline bool tb_switch_is_alpine_ridge(const struct tb_switch *sw)
719{
720	switch (sw->config.device_id) {
721	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_BRIDGE:
722	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_BRIDGE:
723	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_BRIDGE:
724	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_BRIDGE:
725		return true;
726	default:
727		return false;
728	}
729}
730
731static inline bool tb_switch_is_titan_ridge(const struct tb_switch *sw)
732{
733	switch (sw->config.device_id) {
734	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_BRIDGE:
735	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_BRIDGE:
736	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE:
737		return true;
738	default:
739		return false;
740	}
741}
742
743/**
744 * tb_switch_is_usb4() - Is the switch USB4 compliant
745 * @sw: Switch to check
746 *
747 * Returns true if the @sw is USB4 compliant router, false otherwise.
748 */
749static inline bool tb_switch_is_usb4(const struct tb_switch *sw)
750{
751	return sw->config.thunderbolt_version == USB4_VERSION_1_0;
752}
753
754/**
755 * tb_switch_is_icm() - Is the switch handled by ICM firmware
756 * @sw: Switch to check
757 *
758 * In case there is a need to differentiate whether ICM firmware or SW CM
759 * is handling @sw this function can be called. It is valid to call this
760 * after tb_switch_alloc() and tb_switch_configure() has been called
761 * (latter only for SW CM case).
762 */
763static inline bool tb_switch_is_icm(const struct tb_switch *sw)
764{
765	return !sw->config.enabled;
766}
767
768int tb_switch_lane_bonding_enable(struct tb_switch *sw);
769void tb_switch_lane_bonding_disable(struct tb_switch *sw);
770
771bool tb_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
772int tb_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
773void tb_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
774
775int tb_switch_tmu_init(struct tb_switch *sw);
776int tb_switch_tmu_post_time(struct tb_switch *sw);
777int tb_switch_tmu_disable(struct tb_switch *sw);
778int tb_switch_tmu_enable(struct tb_switch *sw);
779
780static inline bool tb_switch_tmu_is_enabled(const struct tb_switch *sw)
781{
782	return sw->tmu.rate == TB_SWITCH_TMU_RATE_HIFI &&
783	       !sw->tmu.unidirectional;
784}
785
786int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
787int tb_port_add_nfc_credits(struct tb_port *port, int credits);
788int tb_port_set_initial_credits(struct tb_port *port, u32 credits);
789int tb_port_clear_counter(struct tb_port *port, int counter);
790int tb_port_unlock(struct tb_port *port);
791int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
792void tb_port_release_in_hopid(struct tb_port *port, int hopid);
793int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
794void tb_port_release_out_hopid(struct tb_port *port, int hopid);
795struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
796				     struct tb_port *prev);
797
798/**
799 * tb_for_each_port_on_path() - Iterate over each port on path
800 * @src: Source port
801 * @dst: Destination port
802 * @p: Port used as iterator
803 *
804 * Walks over each port on path from @src to @dst.
805 */
806#define tb_for_each_port_on_path(src, dst, p)				\
807	for ((p) = tb_next_port_on_path((src), (dst), NULL); (p);	\
808	     (p) = tb_next_port_on_path((src), (dst), (p)))
809
810int tb_port_get_link_speed(struct tb_port *port);
811
812int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
813int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap);
814int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
815bool tb_port_is_enabled(struct tb_port *port);
816
817bool tb_usb3_port_is_enabled(struct tb_port *port);
818int tb_usb3_port_enable(struct tb_port *port, bool enable);
819
820bool tb_pci_port_is_enabled(struct tb_port *port);
821int tb_pci_port_enable(struct tb_port *port, bool enable);
822
823int tb_dp_port_hpd_is_active(struct tb_port *port);
824int tb_dp_port_hpd_clear(struct tb_port *port);
825int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
826			unsigned int aux_tx, unsigned int aux_rx);
827bool tb_dp_port_is_enabled(struct tb_port *port);
828int tb_dp_port_enable(struct tb_port *port, bool enable);
829
830struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
831				 struct tb_port *dst, int dst_hopid,
832				 struct tb_port **last, const char *name);
833struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
834			      struct tb_port *dst, int dst_hopid, int link_nr,
835			      const char *name);
836void tb_path_free(struct tb_path *path);
837int tb_path_activate(struct tb_path *path);
838void tb_path_deactivate(struct tb_path *path);
839bool tb_path_is_invalid(struct tb_path *path);
840bool tb_path_port_on_path(const struct tb_path *path,
841			  const struct tb_port *port);
842
843int tb_drom_read(struct tb_switch *sw);
844int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
845
846int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid);
847int tb_lc_configure_link(struct tb_switch *sw);
848void tb_lc_unconfigure_link(struct tb_switch *sw);
849int tb_lc_set_sleep(struct tb_switch *sw);
850bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
851bool tb_lc_dp_sink_query(struct tb_switch *sw, struct tb_port *in);
852int tb_lc_dp_sink_alloc(struct tb_switch *sw, struct tb_port *in);
853int tb_lc_dp_sink_dealloc(struct tb_switch *sw, struct tb_port *in);
854int tb_lc_force_power(struct tb_switch *sw);
855
856static inline int tb_route_length(u64 route)
857{
858	return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
859}
860
861/**
862 * tb_downstream_route() - get route to downstream switch
863 *
864 * Port must not be the upstream port (otherwise a loop is created).
865 *
866 * Return: Returns a route to the switch behind @port.
867 */
868static inline u64 tb_downstream_route(struct tb_port *port)
869{
870	return tb_route(port->sw)
871	       | ((u64) port->port << (port->sw->config.depth * 8));
872}
873
874bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
875			       const void *buf, size_t size);
876struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
877				    u64 route, const uuid_t *local_uuid,
878				    const uuid_t *remote_uuid);
879void tb_xdomain_add(struct tb_xdomain *xd);
880void tb_xdomain_remove(struct tb_xdomain *xd);
881struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
882						 u8 depth);
883
884int tb_retimer_scan(struct tb_port *port);
885void tb_retimer_remove_all(struct tb_port *port);
886
887static inline bool tb_is_retimer(const struct device *dev)
888{
889	return dev->type == &tb_retimer_type;
890}
891
892static inline struct tb_retimer *tb_to_retimer(struct device *dev)
893{
894	if (tb_is_retimer(dev))
895		return container_of(dev, struct tb_retimer, dev);
896	return NULL;
897}
898
899int usb4_switch_setup(struct tb_switch *sw);
900int usb4_switch_read_uid(struct tb_switch *sw, u64 *uid);
901int usb4_switch_drom_read(struct tb_switch *sw, unsigned int address, void *buf,
902			  size_t size);
903int usb4_switch_configure_link(struct tb_switch *sw);
904void usb4_switch_unconfigure_link(struct tb_switch *sw);
905bool usb4_switch_lane_bonding_possible(struct tb_switch *sw);
906int usb4_switch_set_sleep(struct tb_switch *sw);
907int usb4_switch_nvm_sector_size(struct tb_switch *sw);
908int usb4_switch_nvm_read(struct tb_switch *sw, unsigned int address, void *buf,
909			 size_t size);
910int usb4_switch_nvm_write(struct tb_switch *sw, unsigned int address,
911			  const void *buf, size_t size);
912int usb4_switch_nvm_authenticate(struct tb_switch *sw);
913bool usb4_switch_query_dp_resource(struct tb_switch *sw, struct tb_port *in);
914int usb4_switch_alloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
915int usb4_switch_dealloc_dp_resource(struct tb_switch *sw, struct tb_port *in);
916struct tb_port *usb4_switch_map_pcie_down(struct tb_switch *sw,
917					  const struct tb_port *port);
918struct tb_port *usb4_switch_map_usb3_down(struct tb_switch *sw,
919					  const struct tb_port *port);
920
921int usb4_port_unlock(struct tb_port *port);
922int usb4_port_enumerate_retimers(struct tb_port *port);
923
924int usb4_port_retimer_read(struct tb_port *port, u8 index, u8 reg, void *buf,
925			   u8 size);
926int usb4_port_retimer_write(struct tb_port *port, u8 index, u8 reg,
927			    const void *buf, u8 size);
928int usb4_port_retimer_is_last(struct tb_port *port, u8 index);
929int usb4_port_retimer_nvm_sector_size(struct tb_port *port, u8 index);
930int usb4_port_retimer_nvm_write(struct tb_port *port, u8 index,
931				unsigned int address, const void *buf,
932				size_t size);
933int usb4_port_retimer_nvm_authenticate(struct tb_port *port, u8 index);
934int usb4_port_retimer_nvm_authenticate_status(struct tb_port *port, u8 index,
935					      u32 *status);
936int usb4_port_retimer_nvm_read(struct tb_port *port, u8 index,
937			       unsigned int address, void *buf, size_t size);
938
939int usb4_usb3_port_max_link_rate(struct tb_port *port);
940int usb4_usb3_port_actual_link_rate(struct tb_port *port);
941int usb4_usb3_port_allocated_bandwidth(struct tb_port *port, int *upstream_bw,
942				       int *downstream_bw);
943int usb4_usb3_port_allocate_bandwidth(struct tb_port *port, int *upstream_bw,
944				      int *downstream_bw);
945int usb4_usb3_port_release_bandwidth(struct tb_port *port, int *upstream_bw,
946				     int *downstream_bw);
947
948/* keep link controller awake during update */
949#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
950
951void tb_check_quirks(struct tb_switch *sw);
952
953#endif
v5.4
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Thunderbolt driver - bus logic (NHI independent)
  4 *
  5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
  6 * Copyright (C) 2018, Intel Corporation
  7 */
  8
  9#ifndef TB_H_
 10#define TB_H_
 11
 12#include <linux/nvmem-provider.h>
 13#include <linux/pci.h>
 14#include <linux/thunderbolt.h>
 15#include <linux/uuid.h>
 16
 17#include "tb_regs.h"
 18#include "ctl.h"
 19#include "dma_port.h"
 20
 
 
 
 
 
 
 
 
 21/**
 22 * struct tb_switch_nvm - Structure holding switch NVM information
 
 23 * @major: Major version number of the active NVM portion
 24 * @minor: Minor version number of the active NVM portion
 25 * @id: Identifier used with both NVM portions
 26 * @active: Active portion NVMem device
 27 * @non_active: Non-active portion NVMem device
 28 * @buf: Buffer where the NVM image is stored before it is written to
 29 *	 the actual NVM flash device
 30 * @buf_data_size: Number of bytes actually consumed by the new NVM
 31 *		   image
 32 * @authenticating: The switch is authenticating the new NVM
 
 
 
 
 33 */
 34struct tb_switch_nvm {
 
 35	u8 major;
 36	u8 minor;
 37	int id;
 38	struct nvmem_device *active;
 39	struct nvmem_device *non_active;
 40	void *buf;
 41	size_t buf_data_size;
 42	bool authenticating;
 
 43};
 44
 45#define TB_SWITCH_KEY_SIZE		32
 46#define TB_SWITCH_MAX_DEPTH		6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 47
 48/**
 49 * struct tb_switch - a thunderbolt switch
 50 * @dev: Device for the switch
 51 * @config: Switch configuration
 52 * @ports: Ports in this switch
 53 * @dma_port: If the switch has port supporting DMA configuration based
 54 *	      mailbox this will hold the pointer to that (%NULL
 55 *	      otherwise). If set it also means the switch has
 56 *	      upgradeable NVM.
 
 57 * @tb: Pointer to the domain the switch belongs to
 58 * @uid: Unique ID of the switch
 59 * @uuid: UUID of the switch (or %NULL if not supported)
 60 * @vendor: Vendor ID of the switch
 61 * @device: Device ID of the switch
 62 * @vendor_name: Name of the vendor (or %NULL if not known)
 63 * @device_name: Name of the device (or %NULL if not known)
 
 
 
 64 * @generation: Switch Thunderbolt generation
 65 * @cap_plug_events: Offset to the plug events capability (%0 if not found)
 66 * @cap_lc: Offset to the link controller capability (%0 if not found)
 67 * @is_unplugged: The switch is going away
 68 * @drom: DROM of the switch (%NULL if not found)
 69 * @nvm: Pointer to the NVM if the switch has one (%NULL otherwise)
 70 * @no_nvm_upgrade: Prevent NVM upgrade of this switch
 71 * @safe_mode: The switch is in safe-mode
 72 * @boot: Whether the switch was already authorized on boot or not
 73 * @rpm: The switch supports runtime PM
 74 * @authorized: Whether the switch is authorized by user or policy
 75 * @security_level: Switch supported security level
 76 * @key: Contains the key used to challenge the device or %NULL if not
 77 *	 supported. Size of the key is %TB_SWITCH_KEY_SIZE.
 78 * @connection_id: Connection ID used with ICM messaging
 79 * @connection_key: Connection key used with ICM messaging
 80 * @link: Root switch link this switch is connected (ICM only)
 81 * @depth: Depth in the chain this switch is connected (ICM only)
 82 * @rpm_complete: Completion used to wait for runtime resume to
 83 *		  complete (ICM only)
 
 84 *
 85 * When the switch is being added or removed to the domain (other
 86 * switches) you need to have domain lock held.
 87 */
 88struct tb_switch {
 89	struct device dev;
 90	struct tb_regs_switch_header config;
 91	struct tb_port *ports;
 92	struct tb_dma_port *dma_port;
 
 93	struct tb *tb;
 94	u64 uid;
 95	uuid_t *uuid;
 96	u16 vendor;
 97	u16 device;
 98	const char *vendor_name;
 99	const char *device_name;
 
 
 
100	unsigned int generation;
101	int cap_plug_events;
102	int cap_lc;
103	bool is_unplugged;
104	u8 *drom;
105	struct tb_switch_nvm *nvm;
106	bool no_nvm_upgrade;
107	bool safe_mode;
108	bool boot;
109	bool rpm;
110	unsigned int authorized;
111	enum tb_security_level security_level;
112	u8 *key;
113	u8 connection_id;
114	u8 connection_key;
115	u8 link;
116	u8 depth;
117	struct completion rpm_complete;
 
118};
119
120/**
121 * struct tb_port - a thunderbolt port, part of a tb_switch
122 * @config: Cached port configuration read from registers
123 * @sw: Switch the port belongs to
124 * @remote: Remote port (%NULL if not connected)
125 * @xdomain: Remote host (%NULL if not connected)
126 * @cap_phy: Offset, zero if not found
 
127 * @cap_adap: Offset of the adapter specific capability (%0 if not present)
 
128 * @port: Port number on switch
129 * @disabled: Disabled by eeprom
 
130 * @dual_link_port: If the switch is connected using two ports, points
131 *		    to the other port.
132 * @link_nr: Is this primary or secondary port on the dual_link.
133 * @in_hopids: Currently allocated input HopIDs
134 * @out_hopids: Currently allocated output HopIDs
 
135 */
136struct tb_port {
137	struct tb_regs_port_header config;
138	struct tb_switch *sw;
139	struct tb_port *remote;
140	struct tb_xdomain *xdomain;
141	int cap_phy;
 
142	int cap_adap;
 
143	u8 port;
144	bool disabled;
 
145	struct tb_port *dual_link_port;
146	u8 link_nr:1;
147	struct ida in_hopids;
148	struct ida out_hopids;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149};
150
151/**
152 * struct tb_path_hop - routing information for a tb_path
153 * @in_port: Ingress port of a switch
154 * @out_port: Egress port of a switch where the packet is routed out
155 *	      (must be on the same switch than @in_port)
156 * @in_hop_index: HopID where the path configuration entry is placed in
157 *		  the path config space of @in_port.
158 * @in_counter_index: Used counter index (not used in the driver
159 *		      currently, %-1 to disable)
160 * @next_hop_index: HopID of the packet when it is routed out from @out_port
161 * @initial_credits: Number of initial flow control credits allocated for
162 *		     the path
163 *
164 * Hop configuration is always done on the IN port of a switch.
165 * in_port and out_port have to be on the same switch. Packets arriving on
166 * in_port with "hop" = in_hop_index will get routed to through out_port. The
167 * next hop to take (on out_port->remote) is determined by
168 * next_hop_index. When routing packet to another switch (out->remote is
169 * set) the @next_hop_index must match the @in_hop_index of that next
170 * hop to make routing possible.
171 *
172 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
173 * port.
174 */
175struct tb_path_hop {
176	struct tb_port *in_port;
177	struct tb_port *out_port;
178	int in_hop_index;
179	int in_counter_index;
180	int next_hop_index;
181	unsigned int initial_credits;
182};
183
184/**
185 * enum tb_path_port - path options mask
186 * @TB_PATH_NONE: Do not activate on any hop on path
187 * @TB_PATH_SOURCE: Activate on the first hop (out of src)
188 * @TB_PATH_INTERNAL: Activate on the intermediate hops (not the first/last)
189 * @TB_PATH_DESTINATION: Activate on the last hop (into dst)
190 * @TB_PATH_ALL: Activate on all hops on the path
191 */
192enum tb_path_port {
193	TB_PATH_NONE = 0,
194	TB_PATH_SOURCE = 1,
195	TB_PATH_INTERNAL = 2,
196	TB_PATH_DESTINATION = 4,
197	TB_PATH_ALL = 7,
198};
199
200/**
201 * struct tb_path - a unidirectional path between two ports
202 * @tb: Pointer to the domain structure
203 * @name: Name of the path (used for debugging)
204 * @nfc_credits: Number of non flow controlled credits allocated for the path
205 * @ingress_shared_buffer: Shared buffering used for ingress ports on the path
206 * @egress_shared_buffer: Shared buffering used for egress ports on the path
207 * @ingress_fc_enable: Flow control for ingress ports on the path
208 * @egress_fc_enable: Flow control for egress ports on the path
209 * @priority: Priority group if the path
210 * @weight: Weight of the path inside the priority group
211 * @drop_packages: Drop packages from queue tail or head
212 * @activated: Is the path active
213 * @clear_fc: Clear all flow control from the path config space entries
214 *	      when deactivating this path
215 * @hops: Path hops
216 * @path_length: How many hops the path uses
217 *
218 * A path consists of a number of hops (see &struct tb_path_hop). To
219 * establish a PCIe tunnel two paths have to be created between the two
220 * PCIe ports.
221 */
222struct tb_path {
223	struct tb *tb;
224	const char *name;
225	int nfc_credits;
226	enum tb_path_port ingress_shared_buffer;
227	enum tb_path_port egress_shared_buffer;
228	enum tb_path_port ingress_fc_enable;
229	enum tb_path_port egress_fc_enable;
230
231	unsigned int priority:3;
232	int weight:4;
233	bool drop_packages;
234	bool activated;
235	bool clear_fc;
236	struct tb_path_hop *hops;
237	int path_length;
238};
239
240/* HopIDs 0-7 are reserved by the Thunderbolt protocol */
241#define TB_PATH_MIN_HOPID	8
242#define TB_PATH_MAX_HOPS	7
 
 
 
 
243
244/**
245 * struct tb_cm_ops - Connection manager specific operations vector
246 * @driver_ready: Called right after control channel is started. Used by
247 *		  ICM to send driver ready message to the firmware.
248 * @start: Starts the domain
249 * @stop: Stops the domain
250 * @suspend_noirq: Connection manager specific suspend_noirq
251 * @resume_noirq: Connection manager specific resume_noirq
252 * @suspend: Connection manager specific suspend
253 * @complete: Connection manager specific complete
254 * @runtime_suspend: Connection manager specific runtime_suspend
255 * @runtime_resume: Connection manager specific runtime_resume
256 * @runtime_suspend_switch: Runtime suspend a switch
257 * @runtime_resume_switch: Runtime resume a switch
258 * @handle_event: Handle thunderbolt event
259 * @get_boot_acl: Get boot ACL list
260 * @set_boot_acl: Set boot ACL list
261 * @approve_switch: Approve switch
262 * @add_switch_key: Add key to switch
263 * @challenge_switch_key: Challenge switch using key
264 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
265 * @approve_xdomain_paths: Approve (establish) XDomain DMA paths
266 * @disconnect_xdomain_paths: Disconnect XDomain DMA paths
267 */
268struct tb_cm_ops {
269	int (*driver_ready)(struct tb *tb);
270	int (*start)(struct tb *tb);
271	void (*stop)(struct tb *tb);
272	int (*suspend_noirq)(struct tb *tb);
273	int (*resume_noirq)(struct tb *tb);
274	int (*suspend)(struct tb *tb);
275	void (*complete)(struct tb *tb);
276	int (*runtime_suspend)(struct tb *tb);
277	int (*runtime_resume)(struct tb *tb);
278	int (*runtime_suspend_switch)(struct tb_switch *sw);
279	int (*runtime_resume_switch)(struct tb_switch *sw);
280	void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
281			     const void *buf, size_t size);
282	int (*get_boot_acl)(struct tb *tb, uuid_t *uuids, size_t nuuids);
283	int (*set_boot_acl)(struct tb *tb, const uuid_t *uuids, size_t nuuids);
284	int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
285	int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
286	int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
287				    const u8 *challenge, u8 *response);
288	int (*disconnect_pcie_paths)(struct tb *tb);
289	int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
290	int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
291};
292
293static inline void *tb_priv(struct tb *tb)
294{
295	return (void *)tb->privdata;
296}
297
298#define TB_AUTOSUSPEND_DELAY		15000 /* ms */
299
300/* helper functions & macros */
301
302/**
303 * tb_upstream_port() - return the upstream port of a switch
304 *
305 * Every switch has an upstream port (for the root switch it is the NHI).
306 *
307 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
308 * non root switches (on the NHI port remote is always NULL).
309 *
310 * Return: Returns the upstream port of the switch.
311 */
312static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
313{
314	return &sw->ports[sw->config.upstream_port_number];
315}
316
317/**
318 * tb_is_upstream_port() - Is the port upstream facing
319 * @port: Port to check
320 *
321 * Returns true if @port is upstream facing port. In case of dual link
322 * ports both return true.
323 */
324static inline bool tb_is_upstream_port(const struct tb_port *port)
325{
326	const struct tb_port *upstream_port = tb_upstream_port(port->sw);
327	return port == upstream_port || port->dual_link_port == upstream_port;
328}
329
330static inline u64 tb_route(const struct tb_switch *sw)
331{
332	return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
333}
334
335static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
336{
337	u8 port;
338
339	port = route >> (sw->config.depth * 8);
340	if (WARN_ON(port > sw->config.max_port_number))
341		return NULL;
342	return &sw->ports[port];
343}
344
345/**
346 * tb_port_has_remote() - Does the port have switch connected downstream
347 * @port: Port to check
348 *
349 * Returns true only when the port is primary port and has remote set.
350 */
351static inline bool tb_port_has_remote(const struct tb_port *port)
352{
353	if (tb_is_upstream_port(port))
354		return false;
355	if (!port->remote)
356		return false;
357	if (port->dual_link_port && port->link_nr)
358		return false;
359
360	return true;
361}
362
363static inline bool tb_port_is_null(const struct tb_port *port)
364{
365	return port && port->port && port->config.type == TB_TYPE_PORT;
366}
367
368static inline bool tb_port_is_pcie_down(const struct tb_port *port)
369{
370	return port && port->config.type == TB_TYPE_PCIE_DOWN;
371}
372
373static inline bool tb_port_is_pcie_up(const struct tb_port *port)
374{
375	return port && port->config.type == TB_TYPE_PCIE_UP;
376}
377
378static inline bool tb_port_is_dpin(const struct tb_port *port)
379{
380	return port && port->config.type == TB_TYPE_DP_HDMI_IN;
381}
382
383static inline bool tb_port_is_dpout(const struct tb_port *port)
384{
385	return port && port->config.type == TB_TYPE_DP_HDMI_OUT;
386}
387
 
 
 
 
 
 
 
 
 
 
388static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
389			     enum tb_cfg_space space, u32 offset, u32 length)
390{
391	if (sw->is_unplugged)
392		return -ENODEV;
393	return tb_cfg_read(sw->tb->ctl,
394			   buffer,
395			   tb_route(sw),
396			   0,
397			   space,
398			   offset,
399			   length);
400}
401
402static inline int tb_sw_write(struct tb_switch *sw, void *buffer,
403			      enum tb_cfg_space space, u32 offset, u32 length)
404{
405	if (sw->is_unplugged)
406		return -ENODEV;
407	return tb_cfg_write(sw->tb->ctl,
408			    buffer,
409			    tb_route(sw),
410			    0,
411			    space,
412			    offset,
413			    length);
414}
415
416static inline int tb_port_read(struct tb_port *port, void *buffer,
417			       enum tb_cfg_space space, u32 offset, u32 length)
418{
419	if (port->sw->is_unplugged)
420		return -ENODEV;
421	return tb_cfg_read(port->sw->tb->ctl,
422			   buffer,
423			   tb_route(port->sw),
424			   port->port,
425			   space,
426			   offset,
427			   length);
428}
429
430static inline int tb_port_write(struct tb_port *port, const void *buffer,
431				enum tb_cfg_space space, u32 offset, u32 length)
432{
433	if (port->sw->is_unplugged)
434		return -ENODEV;
435	return tb_cfg_write(port->sw->tb->ctl,
436			    buffer,
437			    tb_route(port->sw),
438			    port->port,
439			    space,
440			    offset,
441			    length);
442}
443
444#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
445#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
446#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
447#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
448#define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg)
449
450#define __TB_SW_PRINT(level, sw, fmt, arg...)           \
451	do {                                            \
452		const struct tb_switch *__sw = (sw);    \
453		level(__sw->tb, "%llx: " fmt,           \
454		      tb_route(__sw), ## arg);          \
455	} while (0)
456#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
457#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
458#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
459#define tb_sw_dbg(sw, fmt, arg...) __TB_SW_PRINT(tb_dbg, sw, fmt, ##arg)
460
461#define __TB_PORT_PRINT(level, _port, fmt, arg...)                      \
462	do {                                                            \
463		const struct tb_port *__port = (_port);                 \
464		level(__port->sw->tb, "%llx:%x: " fmt,                  \
465		      tb_route(__port->sw), __port->port, ## arg);      \
466	} while (0)
467#define tb_port_WARN(port, fmt, arg...) \
468	__TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
469#define tb_port_warn(port, fmt, arg...) \
470	__TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
471#define tb_port_info(port, fmt, arg...) \
472	__TB_PORT_PRINT(tb_info, port, fmt, ##arg)
473#define tb_port_dbg(port, fmt, arg...) \
474	__TB_PORT_PRINT(tb_dbg, port, fmt, ##arg)
475
476struct tb *icm_probe(struct tb_nhi *nhi);
477struct tb *tb_probe(struct tb_nhi *nhi);
478
479extern struct device_type tb_domain_type;
 
480extern struct device_type tb_switch_type;
481
482int tb_domain_init(void);
483void tb_domain_exit(void);
484void tb_switch_exit(void);
485int tb_xdomain_init(void);
486void tb_xdomain_exit(void);
487
488struct tb *tb_domain_alloc(struct tb_nhi *nhi, size_t privsize);
489int tb_domain_add(struct tb *tb);
490void tb_domain_remove(struct tb *tb);
491int tb_domain_suspend_noirq(struct tb *tb);
492int tb_domain_resume_noirq(struct tb *tb);
493int tb_domain_suspend(struct tb *tb);
494void tb_domain_complete(struct tb *tb);
495int tb_domain_runtime_suspend(struct tb *tb);
496int tb_domain_runtime_resume(struct tb *tb);
497int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
498int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
499int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
500int tb_domain_disconnect_pcie_paths(struct tb *tb);
501int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
502int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
503int tb_domain_disconnect_all_paths(struct tb *tb);
504
505static inline struct tb *tb_domain_get(struct tb *tb)
506{
507	if (tb)
508		get_device(&tb->dev);
509	return tb;
510}
511
512static inline void tb_domain_put(struct tb *tb)
513{
514	put_device(&tb->dev);
515}
516
 
 
 
 
 
 
 
 
 
517struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
518				  u64 route);
519struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
520			struct device *parent, u64 route);
521int tb_switch_configure(struct tb_switch *sw);
522int tb_switch_add(struct tb_switch *sw);
523void tb_switch_remove(struct tb_switch *sw);
524void tb_switch_suspend(struct tb_switch *sw);
525int tb_switch_resume(struct tb_switch *sw);
526int tb_switch_reset(struct tb *tb, u64 route);
527void tb_sw_set_unplugged(struct tb_switch *sw);
 
 
528struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
529					       u8 depth);
530struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
531struct tb_switch *tb_switch_find_by_route(struct tb *tb, u64 route);
532
 
 
 
 
 
 
 
 
 
 
 
533static inline struct tb_switch *tb_switch_get(struct tb_switch *sw)
534{
535	if (sw)
536		get_device(&sw->dev);
537	return sw;
538}
539
540static inline void tb_switch_put(struct tb_switch *sw)
541{
542	put_device(&sw->dev);
543}
544
545static inline bool tb_is_switch(const struct device *dev)
546{
547	return dev->type == &tb_switch_type;
548}
549
550static inline struct tb_switch *tb_to_switch(struct device *dev)
551{
552	if (tb_is_switch(dev))
553		return container_of(dev, struct tb_switch, dev);
554	return NULL;
555}
556
557static inline struct tb_switch *tb_switch_parent(struct tb_switch *sw)
558{
559	return tb_to_switch(sw->dev.parent);
560}
561
562static inline bool tb_switch_is_lr(const struct tb_switch *sw)
563{
564	return sw->config.device_id == PCI_DEVICE_ID_INTEL_LIGHT_RIDGE;
565}
566
567static inline bool tb_switch_is_er(const struct tb_switch *sw)
568{
569	return sw->config.device_id == PCI_DEVICE_ID_INTEL_EAGLE_RIDGE;
570}
571
572static inline bool tb_switch_is_cr(const struct tb_switch *sw)
573{
574	switch (sw->config.device_id) {
575	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_2C:
576	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
577		return true;
578	default:
579		return false;
580	}
581}
582
583static inline bool tb_switch_is_fr(const struct tb_switch *sw)
584{
585	switch (sw->config.device_id) {
586	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE:
587	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_BRIDGE:
588		return true;
589	default:
590		return false;
591	}
592}
593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
595int tb_port_add_nfc_credits(struct tb_port *port, int credits);
596int tb_port_set_initial_credits(struct tb_port *port, u32 credits);
597int tb_port_clear_counter(struct tb_port *port, int counter);
 
598int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
599void tb_port_release_in_hopid(struct tb_port *port, int hopid);
600int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
601void tb_port_release_out_hopid(struct tb_port *port, int hopid);
602struct tb_port *tb_next_port_on_path(struct tb_port *start, struct tb_port *end,
603				     struct tb_port *prev);
604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
605int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
 
606int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
607bool tb_port_is_enabled(struct tb_port *port);
608
 
 
 
609bool tb_pci_port_is_enabled(struct tb_port *port);
610int tb_pci_port_enable(struct tb_port *port, bool enable);
611
612int tb_dp_port_hpd_is_active(struct tb_port *port);
613int tb_dp_port_hpd_clear(struct tb_port *port);
614int tb_dp_port_set_hops(struct tb_port *port, unsigned int video,
615			unsigned int aux_tx, unsigned int aux_rx);
616bool tb_dp_port_is_enabled(struct tb_port *port);
617int tb_dp_port_enable(struct tb_port *port, bool enable);
618
619struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
620				 struct tb_port *dst, int dst_hopid,
621				 struct tb_port **last, const char *name);
622struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
623			      struct tb_port *dst, int dst_hopid, int link_nr,
624			      const char *name);
625void tb_path_free(struct tb_path *path);
626int tb_path_activate(struct tb_path *path);
627void tb_path_deactivate(struct tb_path *path);
628bool tb_path_is_invalid(struct tb_path *path);
 
 
629
630int tb_drom_read(struct tb_switch *sw);
631int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
632
633int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid);
634int tb_lc_configure_link(struct tb_switch *sw);
635void tb_lc_unconfigure_link(struct tb_switch *sw);
636int tb_lc_set_sleep(struct tb_switch *sw);
 
 
 
 
 
637
638static inline int tb_route_length(u64 route)
639{
640	return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
641}
642
643/**
644 * tb_downstream_route() - get route to downstream switch
645 *
646 * Port must not be the upstream port (otherwise a loop is created).
647 *
648 * Return: Returns a route to the switch behind @port.
649 */
650static inline u64 tb_downstream_route(struct tb_port *port)
651{
652	return tb_route(port->sw)
653	       | ((u64) port->port << (port->sw->config.depth * 8));
654}
655
656bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
657			       const void *buf, size_t size);
658struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
659				    u64 route, const uuid_t *local_uuid,
660				    const uuid_t *remote_uuid);
661void tb_xdomain_add(struct tb_xdomain *xd);
662void tb_xdomain_remove(struct tb_xdomain *xd);
663struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
664						 u8 depth);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
665
666#endif