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