blob: d7ffc159bcf7beb516811b9ce78cec21686d38c7 [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/*
3 * Thunderbolt Cactus Ridge driver - bus logic (NHI independent)
4 *
5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
6 */
7
8#ifndef TB_H_
9#define TB_H_
10
Mika Westerberge6b245c2017-06-06 15:25:17 +030011#include <linux/nvmem-provider.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020012#include <linux/pci.h>
Mika Westerbergbfe778a2017-06-06 15:25:01 +030013#include <linux/uuid.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020014
15#include "tb_regs.h"
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020016#include "ctl.h"
Mika Westerberg3e136762017-06-06 15:25:14 +030017#include "dma_port.h"
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020018
19/**
Mika Westerberge6b245c2017-06-06 15:25:17 +030020 * struct tb_switch_nvm - Structure holding switch NVM information
21 * @major: Major version number of the active NVM portion
22 * @minor: Minor version number of the active NVM portion
23 * @id: Identifier used with both NVM portions
24 * @active: Active portion NVMem device
25 * @non_active: Non-active portion NVMem device
26 * @buf: Buffer where the NVM image is stored before it is written to
27 * the actual NVM flash device
28 * @buf_data_size: Number of bytes actually consumed by the new NVM
29 * image
30 * @authenticating: The switch is authenticating the new NVM
31 */
32struct tb_switch_nvm {
33 u8 major;
34 u8 minor;
35 int id;
36 struct nvmem_device *active;
37 struct nvmem_device *non_active;
38 void *buf;
39 size_t buf_data_size;
40 bool authenticating;
41};
42
43/**
Mika Westerbergf67cf492017-06-06 15:25:16 +030044 * enum tb_security_level - Thunderbolt security level
45 * @TB_SECURITY_NONE: No security, legacy mode
46 * @TB_SECURITY_USER: User approval required at minimum
47 * @TB_SECURITY_SECURE: One time saved key required at minimum
48 * @TB_SECURITY_DPONLY: Only tunnel Display port (and USB)
49 */
50enum tb_security_level {
51 TB_SECURITY_NONE,
52 TB_SECURITY_USER,
53 TB_SECURITY_SECURE,
54 TB_SECURITY_DPONLY,
55};
56
57#define TB_SWITCH_KEY_SIZE 32
58/* Each physical port contains 2 links on modern controllers */
59#define TB_SWITCH_LINKS_PER_PHY_PORT 2
60
61/**
Andreas Noevera25c8b22014-06-03 22:04:02 +020062 * struct tb_switch - a thunderbolt switch
Mika Westerbergbfe778a2017-06-06 15:25:01 +030063 * @dev: Device for the switch
64 * @config: Switch configuration
65 * @ports: Ports in this switch
Mika Westerberg3e136762017-06-06 15:25:14 +030066 * @dma_port: If the switch has port supporting DMA configuration based
67 * mailbox this will hold the pointer to that (%NULL
Mika Westerberge6b245c2017-06-06 15:25:17 +030068 * otherwise). If set it also means the switch has
69 * upgradeable NVM.
Mika Westerbergbfe778a2017-06-06 15:25:01 +030070 * @tb: Pointer to the domain the switch belongs to
71 * @uid: Unique ID of the switch
72 * @uuid: UUID of the switch (or %NULL if not supported)
73 * @vendor: Vendor ID of the switch
74 * @device: Device ID of the switch
Mika Westerberg72ee3392017-06-06 15:25:05 +030075 * @vendor_name: Name of the vendor (or %NULL if not known)
76 * @device_name: Name of the device (or %NULL if not known)
Mika Westerberg2c3c4192017-06-06 15:25:13 +030077 * @generation: Switch Thunderbolt generation
Mika Westerbergbfe778a2017-06-06 15:25:01 +030078 * @cap_plug_events: Offset to the plug events capability (%0 if not found)
79 * @is_unplugged: The switch is going away
80 * @drom: DROM of the switch (%NULL if not found)
Mika Westerberge6b245c2017-06-06 15:25:17 +030081 * @nvm: Pointer to the NVM if the switch has one (%NULL otherwise)
82 * @no_nvm_upgrade: Prevent NVM upgrade of this switch
83 * @safe_mode: The switch is in safe-mode
Mika Westerbergf67cf492017-06-06 15:25:16 +030084 * @authorized: Whether the switch is authorized by user or policy
85 * @work: Work used to automatically authorize a switch
86 * @security_level: Switch supported security level
87 * @key: Contains the key used to challenge the device or %NULL if not
88 * supported. Size of the key is %TB_SWITCH_KEY_SIZE.
89 * @connection_id: Connection ID used with ICM messaging
90 * @connection_key: Connection key used with ICM messaging
91 * @link: Root switch link this switch is connected (ICM only)
92 * @depth: Depth in the chain this switch is connected (ICM only)
93 *
94 * When the switch is being added or removed to the domain (other
95 * switches) you need to have domain lock held. For switch authorization
96 * internal switch_lock is enough.
Andreas Noevera25c8b22014-06-03 22:04:02 +020097 */
98struct tb_switch {
Mika Westerbergbfe778a2017-06-06 15:25:01 +030099 struct device dev;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200100 struct tb_regs_switch_header config;
101 struct tb_port *ports;
Mika Westerberg3e136762017-06-06 15:25:14 +0300102 struct tb_dma_port *dma_port;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200103 struct tb *tb;
Andreas Noeverc90553b2014-06-03 22:04:11 +0200104 u64 uid;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200105 uuid_t *uuid;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300106 u16 vendor;
107 u16 device;
Mika Westerberg72ee3392017-06-06 15:25:05 +0300108 const char *vendor_name;
109 const char *device_name;
Mika Westerberg2c3c4192017-06-06 15:25:13 +0300110 unsigned int generation;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300111 int cap_plug_events;
112 bool is_unplugged;
Andreas Noevercd22e732014-06-12 23:11:46 +0200113 u8 *drom;
Mika Westerberge6b245c2017-06-06 15:25:17 +0300114 struct tb_switch_nvm *nvm;
115 bool no_nvm_upgrade;
116 bool safe_mode;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300117 unsigned int authorized;
118 struct work_struct work;
119 enum tb_security_level security_level;
120 u8 *key;
121 u8 connection_id;
122 u8 connection_key;
123 u8 link;
124 u8 depth;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200125};
126
127/**
128 * struct tb_port - a thunderbolt port, part of a tb_switch
129 */
130struct tb_port {
131 struct tb_regs_port_header config;
132 struct tb_switch *sw;
133 struct tb_port *remote; /* remote port, NULL if not connected */
Andreas Noever9da672a2014-06-03 22:04:05 +0200134 int cap_phy; /* offset, zero if not found */
Andreas Noevera25c8b22014-06-03 22:04:02 +0200135 u8 port; /* port number on switch */
Andreas Noevercd22e732014-06-12 23:11:46 +0200136 bool disabled; /* disabled by eeprom */
137 struct tb_port *dual_link_port;
138 u8 link_nr:1;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200139};
140
141/**
Andreas Noever520b6702014-06-03 22:04:07 +0200142 * struct tb_path_hop - routing information for a tb_path
143 *
144 * Hop configuration is always done on the IN port of a switch.
145 * in_port and out_port have to be on the same switch. Packets arriving on
146 * in_port with "hop" = in_hop_index will get routed to through out_port. The
147 * next hop to take (on out_port->remote) is determined by next_hop_index.
148 *
149 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
150 * port.
151 */
152struct tb_path_hop {
153 struct tb_port *in_port;
154 struct tb_port *out_port;
155 int in_hop_index;
156 int in_counter_index; /* write -1 to disable counters for this hop. */
157 int next_hop_index;
158};
159
160/**
161 * enum tb_path_port - path options mask
162 */
163enum tb_path_port {
164 TB_PATH_NONE = 0,
165 TB_PATH_SOURCE = 1, /* activate on the first hop (out of src) */
166 TB_PATH_INTERNAL = 2, /* activate on other hops (not the first/last) */
167 TB_PATH_DESTINATION = 4, /* activate on the last hop (into dst) */
168 TB_PATH_ALL = 7,
169};
170
171/**
172 * struct tb_path - a unidirectional path between two ports
173 *
174 * A path consists of a number of hops (see tb_path_hop). To establish a PCIe
175 * tunnel two paths have to be created between the two PCIe ports.
176 *
177 */
178struct tb_path {
179 struct tb *tb;
180 int nfc_credits; /* non flow controlled credits */
181 enum tb_path_port ingress_shared_buffer;
182 enum tb_path_port egress_shared_buffer;
183 enum tb_path_port ingress_fc_enable;
184 enum tb_path_port egress_fc_enable;
185
186 int priority:3;
187 int weight:4;
188 bool drop_packages;
189 bool activated;
190 struct tb_path_hop *hops;
191 int path_length; /* number of hops */
192};
193
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300194/**
195 * struct tb_cm_ops - Connection manager specific operations vector
Mika Westerbergf67cf492017-06-06 15:25:16 +0300196 * @driver_ready: Called right after control channel is started. Used by
197 * ICM to send driver ready message to the firmware.
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300198 * @start: Starts the domain
199 * @stop: Stops the domain
200 * @suspend_noirq: Connection manager specific suspend_noirq
201 * @resume_noirq: Connection manager specific resume_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300202 * @suspend: Connection manager specific suspend
203 * @complete: Connection manager specific complete
Mika Westerberg81a54b52017-06-06 15:25:09 +0300204 * @handle_event: Handle thunderbolt event
Mika Westerbergf67cf492017-06-06 15:25:16 +0300205 * @approve_switch: Approve switch
206 * @add_switch_key: Add key to switch
207 * @challenge_switch_key: Challenge switch using key
Mika Westerberge6b245c2017-06-06 15:25:17 +0300208 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300209 */
210struct tb_cm_ops {
Mika Westerbergf67cf492017-06-06 15:25:16 +0300211 int (*driver_ready)(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300212 int (*start)(struct tb *tb);
213 void (*stop)(struct tb *tb);
214 int (*suspend_noirq)(struct tb *tb);
215 int (*resume_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300216 int (*suspend)(struct tb *tb);
217 void (*complete)(struct tb *tb);
Mika Westerberg81a54b52017-06-06 15:25:09 +0300218 void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
219 const void *buf, size_t size);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300220 int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
221 int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
222 int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
223 const u8 *challenge, u8 *response);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300224 int (*disconnect_pcie_paths)(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300225};
Andreas Noever520b6702014-06-03 22:04:07 +0200226
227/**
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200228 * struct tb - main thunderbolt bus structure
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300229 * @dev: Domain device
Mika Westerbergd7f781b2017-06-06 15:25:10 +0300230 * @lock: Big lock. Must be held when accessing any struct
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300231 * tb_switch / struct tb_port.
232 * @nhi: Pointer to the NHI structure
233 * @ctl: Control channel for this domain
234 * @wq: Ordered workqueue for all domain specific work
235 * @root_switch: Root switch of this domain
236 * @cm_ops: Connection manager specific operations vector
237 * @index: Linux assigned domain number
Mika Westerbergf67cf492017-06-06 15:25:16 +0300238 * @security_level: Current security level
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300239 * @privdata: Private connection manager specific data
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200240 */
241struct tb {
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300242 struct device dev;
243 struct mutex lock;
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200244 struct tb_nhi *nhi;
245 struct tb_ctl *ctl;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300246 struct workqueue_struct *wq;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200247 struct tb_switch *root_switch;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300248 const struct tb_cm_ops *cm_ops;
249 int index;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300250 enum tb_security_level security_level;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300251 unsigned long privdata[0];
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200252};
253
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300254static inline void *tb_priv(struct tb *tb)
255{
256 return (void *)tb->privdata;
257}
258
Andreas Noevera25c8b22014-06-03 22:04:02 +0200259/* helper functions & macros */
260
261/**
262 * tb_upstream_port() - return the upstream port of a switch
263 *
264 * Every switch has an upstream port (for the root switch it is the NHI).
265 *
266 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
267 * non root switches (on the NHI port remote is always NULL).
268 *
269 * Return: Returns the upstream port of the switch.
270 */
271static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
272{
273 return &sw->ports[sw->config.upstream_port_number];
274}
275
276static inline u64 tb_route(struct tb_switch *sw)
277{
278 return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
279}
280
Mika Westerbergf67cf492017-06-06 15:25:16 +0300281static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
282{
283 u8 port;
284
285 port = route >> (sw->config.depth * 8);
286 if (WARN_ON(port > sw->config.max_port_number))
287 return NULL;
288 return &sw->ports[port];
289}
290
Andreas Noevera25c8b22014-06-03 22:04:02 +0200291static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
292 enum tb_cfg_space space, u32 offset, u32 length)
293{
294 return tb_cfg_read(sw->tb->ctl,
295 buffer,
296 tb_route(sw),
297 0,
298 space,
299 offset,
300 length);
301}
302
303static inline int tb_sw_write(struct tb_switch *sw, void *buffer,
304 enum tb_cfg_space space, u32 offset, u32 length)
305{
306 return tb_cfg_write(sw->tb->ctl,
307 buffer,
308 tb_route(sw),
309 0,
310 space,
311 offset,
312 length);
313}
314
315static inline int tb_port_read(struct tb_port *port, void *buffer,
316 enum tb_cfg_space space, u32 offset, u32 length)
317{
318 return tb_cfg_read(port->sw->tb->ctl,
319 buffer,
320 tb_route(port->sw),
321 port->port,
322 space,
323 offset,
324 length);
325}
326
Mika Westerberg16a12582017-06-06 15:24:53 +0300327static inline int tb_port_write(struct tb_port *port, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200328 enum tb_cfg_space space, u32 offset, u32 length)
329{
330 return tb_cfg_write(port->sw->tb->ctl,
331 buffer,
332 tb_route(port->sw),
333 port->port,
334 space,
335 offset,
336 length);
337}
338
339#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
340#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
341#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
342#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
343
344
345#define __TB_SW_PRINT(level, sw, fmt, arg...) \
346 do { \
347 struct tb_switch *__sw = (sw); \
348 level(__sw->tb, "%llx: " fmt, \
349 tb_route(__sw), ## arg); \
350 } while (0)
351#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
352#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
353#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
354
355
356#define __TB_PORT_PRINT(level, _port, fmt, arg...) \
357 do { \
358 struct tb_port *__port = (_port); \
359 level(__port->sw->tb, "%llx:%x: " fmt, \
360 tb_route(__port->sw), __port->port, ## arg); \
361 } while (0)
362#define tb_port_WARN(port, fmt, arg...) \
363 __TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
364#define tb_port_warn(port, fmt, arg...) \
365 __TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
366#define tb_port_info(port, fmt, arg...) \
367 __TB_PORT_PRINT(tb_info, port, fmt, ##arg)
368
Mika Westerbergf67cf492017-06-06 15:25:16 +0300369struct tb *icm_probe(struct tb_nhi *nhi);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300370struct tb *tb_probe(struct tb_nhi *nhi);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200371
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300372extern struct bus_type tb_bus_type;
373extern struct device_type tb_domain_type;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300374extern struct device_type tb_switch_type;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300375
376int tb_domain_init(void);
377void tb_domain_exit(void);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300378void tb_switch_exit(void);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300379
380struct tb *tb_domain_alloc(struct tb_nhi *nhi, size_t privsize);
381int tb_domain_add(struct tb *tb);
382void tb_domain_remove(struct tb *tb);
383int tb_domain_suspend_noirq(struct tb *tb);
384int tb_domain_resume_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300385int tb_domain_suspend(struct tb *tb);
386void tb_domain_complete(struct tb *tb);
387int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
388int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
389int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300390int tb_domain_disconnect_pcie_paths(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300391
392static inline void tb_domain_put(struct tb *tb)
393{
394 put_device(&tb->dev);
395}
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200396
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300397struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
398 u64 route);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300399struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
400 struct device *parent, u64 route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300401int tb_switch_configure(struct tb_switch *sw);
402int tb_switch_add(struct tb_switch *sw);
403void tb_switch_remove(struct tb_switch *sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200404void tb_switch_suspend(struct tb_switch *sw);
405int tb_switch_resume(struct tb_switch *sw);
406int tb_switch_reset(struct tb *tb, u64 route);
Lukas Wunneraae20bb2016-03-20 13:57:20 +0100407void tb_sw_set_unplugged(struct tb_switch *sw);
Andreas Noever053596d2014-06-03 22:04:06 +0200408struct tb_switch *get_switch_at_route(struct tb_switch *sw, u64 route);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300409struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
410 u8 depth);
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200411struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300412
413static inline unsigned int tb_switch_phy_port_from_link(unsigned int link)
414{
415 return (link - 1) / TB_SWITCH_LINKS_PER_PHY_PORT;
416}
Andreas Noevera25c8b22014-06-03 22:04:02 +0200417
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300418static inline void tb_switch_put(struct tb_switch *sw)
419{
420 put_device(&sw->dev);
421}
422
423static inline bool tb_is_switch(const struct device *dev)
424{
425 return dev->type == &tb_switch_type;
426}
427
428static inline struct tb_switch *tb_to_switch(struct device *dev)
429{
430 if (tb_is_switch(dev))
431 return container_of(dev, struct tb_switch, dev);
432 return NULL;
433}
434
Andreas Noever9da672a2014-06-03 22:04:05 +0200435int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
Andreas Noever520b6702014-06-03 22:04:07 +0200436int tb_port_add_nfc_credits(struct tb_port *port, int credits);
437int tb_port_clear_counter(struct tb_port *port, int counter);
Andreas Noever9da672a2014-06-03 22:04:05 +0200438
Mika Westerbergda2da042017-06-06 15:24:58 +0300439int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
440int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
Andreas Noevere2b87852014-06-03 22:04:03 +0200441
Andreas Noever520b6702014-06-03 22:04:07 +0200442struct tb_path *tb_path_alloc(struct tb *tb, int num_hops);
443void tb_path_free(struct tb_path *path);
444int tb_path_activate(struct tb_path *path);
445void tb_path_deactivate(struct tb_path *path);
446bool tb_path_is_invalid(struct tb_path *path);
447
Andreas Noevercd22e732014-06-12 23:11:46 +0200448int tb_drom_read(struct tb_switch *sw);
449int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
Andreas Noeverc90553b2014-06-03 22:04:11 +0200450
Andreas Noevera25c8b22014-06-03 22:04:02 +0200451
452static inline int tb_route_length(u64 route)
453{
454 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
455}
456
457static inline bool tb_is_upstream_port(struct tb_port *port)
458{
459 return port == tb_upstream_port(port->sw);
460}
461
Andreas Noever9da672a2014-06-03 22:04:05 +0200462/**
463 * tb_downstream_route() - get route to downstream switch
464 *
465 * Port must not be the upstream port (otherwise a loop is created).
466 *
467 * Return: Returns a route to the switch behind @port.
468 */
469static inline u64 tb_downstream_route(struct tb_port *port)
470{
471 return tb_route(port->sw)
472 | ((u64) port->port << (port->sw->config.depth * 8));
473}
474
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200475#endif