1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Thunderbolt driver - Port/Switch config area registers
5 * Every thunderbolt device consists (logically) of a switch with multiple
6 * ports. Every port contains up to four config regions (HOPS, PORT, SWITCH,
7 * COUNTERS) which are used to configure the device.
9 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
10 * Copyright (C) 2018, Intel Corporation
16 #include <linux/types.h>
19 #define TB_ROUTE_SHIFT 8 /* number of bits in a port entry of a route */
23 * TODO: should be 63? But we do not know how to receive frames larger than 256
24 * bytes at the frame level. (header + checksum = 16, 60*4 = 240)
26 #define TB_MAX_CONFIG_RW_LENGTH 60
29 TB_SWITCH_CAP_TMU
= 0x03,
30 TB_SWITCH_CAP_VSE
= 0x05,
33 enum tb_switch_vse_cap
{
34 TB_VSE_CAP_PLUG_EVENTS
= 0x01, /* also EEPROM */
35 TB_VSE_CAP_TIME2
= 0x03,
36 TB_VSE_CAP_IECS
= 0x04,
37 TB_VSE_CAP_LINK_CONTROLLER
= 0x06, /* also IECS */
41 TB_PORT_CAP_PHY
= 0x01,
42 TB_PORT_CAP_TIME1
= 0x03,
43 TB_PORT_CAP_ADAP
= 0x04,
44 TB_PORT_CAP_VSE
= 0x05,
45 TB_PORT_CAP_USB4
= 0x06,
49 TB_PORT_DISABLED
= 0, /* tb_cap_phy.disable == 1 */
50 TB_PORT_CONNECTING
= 1, /* retry */
52 TB_PORT_UNPLUGGED
= 7,
55 /* capability headers */
59 /* enum tb_cap cap:8; prevent "narrower than values of its type" */
60 u8 cap
; /* if cap == 0x05 then we have a extended capability */
64 * struct tb_cap_extended_short - Switch extended short capability
65 * @next: Pointer to the next capability. If @next and @length are zero
66 * then we have a long cap.
67 * @cap: Base capability ID (see &enum tb_switch_cap)
68 * @vsec_id: Vendor specific capability ID (see &enum switch_vse_cap)
69 * @length: Length of this capability
71 struct tb_cap_extended_short
{
79 * struct tb_cap_extended_long - Switch extended long capability
80 * @zero1: This field should be zero
81 * @cap: Base capability ID (see &enum tb_switch_cap)
82 * @vsec_id: Vendor specific capability ID (see &enum switch_vse_cap)
83 * @zero2: This field should be zero
84 * @next: Pointer to the next capability
85 * @length: Length of this capability
87 struct tb_cap_extended_long
{
98 struct tb_cap_link_controller
{
99 struct tb_cap_extended_long cap_header
;
100 u32 count
:4; /* number of link controllers */
102 u32 base_offset
:8; /*
103 * offset (into this capability) of the configuration
104 * area of the first link controller
106 u32 length
:12; /* link controller configuration area length */
107 u32 unknown2
:4; /* TODO check that length is correct */
111 struct tb_cap_basic cap_header
;
116 enum tb_port_state state
:4;
120 struct tb_eeprom_ctl
{
121 bool clock
:1; /* send pulse to transfer one bit */
122 bool access_low
:1; /* set to 0 before access */
123 bool data_out
:1; /* to eeprom */
124 bool data_in
:1; /* from eeprom */
125 bool access_high
:1; /* set to 1 before access */
126 bool not_present
:1; /* should be 0 */
128 bool present
:1; /* should be 1 */
132 struct tb_cap_plug_events
{
133 struct tb_cap_extended_short cap_header
;
139 struct tb_eeprom_ctl eeprom_ctl
;
141 u32 drom_offset
; /* 32 bit register, but eeprom addresses are 16 bit */
146 /* Present on port 0 in TB_CFG_SWITCH at address zero. */
147 struct tb_regs_switch_header
{
152 u32 first_cap_offset
:8;
153 u32 upstream_port_number
:6;
154 u32 max_port_number
:6;
164 u32 plug_events_delay
:8; /*
165 * RW, pause between plug events in
166 * milliseconds. Writing 0x00 is interpreted
171 u32 thunderbolt_version
:8;
174 /* USB4 version 1.0 */
175 #define USB4_VERSION_1_0 0x20
177 #define ROUTER_CS_1 0x01
178 #define ROUTER_CS_4 0x04
179 #define ROUTER_CS_5 0x05
180 #define ROUTER_CS_5_SLP BIT(0)
181 #define ROUTER_CS_5_C3S BIT(23)
182 #define ROUTER_CS_5_PTO BIT(24)
183 #define ROUTER_CS_5_UTO BIT(25)
184 #define ROUTER_CS_5_HCO BIT(26)
185 #define ROUTER_CS_5_CV BIT(31)
186 #define ROUTER_CS_6 0x06
187 #define ROUTER_CS_6_SLPR BIT(0)
188 #define ROUTER_CS_6_TNS BIT(1)
189 #define ROUTER_CS_6_HCI BIT(18)
190 #define ROUTER_CS_6_CR BIT(25)
191 #define ROUTER_CS_7 0x07
192 #define ROUTER_CS_9 0x09
193 #define ROUTER_CS_25 0x19
194 #define ROUTER_CS_26 0x1a
195 #define ROUTER_CS_26_STATUS_MASK GENMASK(29, 24)
196 #define ROUTER_CS_26_STATUS_SHIFT 24
197 #define ROUTER_CS_26_ONS BIT(30)
198 #define ROUTER_CS_26_OV BIT(31)
200 /* Router TMU configuration */
201 #define TMU_RTR_CS_0 0x00
202 #define TMU_RTR_CS_0_TD BIT(27)
203 #define TMU_RTR_CS_0_UCAP BIT(30)
204 #define TMU_RTR_CS_1 0x01
205 #define TMU_RTR_CS_1_LOCAL_TIME_NS_MASK GENMASK(31, 16)
206 #define TMU_RTR_CS_1_LOCAL_TIME_NS_SHIFT 16
207 #define TMU_RTR_CS_2 0x02
208 #define TMU_RTR_CS_3 0x03
209 #define TMU_RTR_CS_3_LOCAL_TIME_NS_MASK GENMASK(15, 0)
210 #define TMU_RTR_CS_3_TS_PACKET_INTERVAL_MASK GENMASK(31, 16)
211 #define TMU_RTR_CS_3_TS_PACKET_INTERVAL_SHIFT 16
212 #define TMU_RTR_CS_22 0x16
213 #define TMU_RTR_CS_24 0x18
216 TB_TYPE_INACTIVE
= 0x000000,
217 TB_TYPE_PORT
= 0x000001,
218 TB_TYPE_NHI
= 0x000002,
219 /* TB_TYPE_ETHERNET = 0x020000, lower order bits are not known */
220 /* TB_TYPE_SATA = 0x080000, lower order bits are not known */
221 TB_TYPE_DP_HDMI_IN
= 0x0e0101,
222 TB_TYPE_DP_HDMI_OUT
= 0x0e0102,
223 TB_TYPE_PCIE_DOWN
= 0x100101,
224 TB_TYPE_PCIE_UP
= 0x100102,
225 TB_TYPE_USB3_DOWN
= 0x200101,
226 TB_TYPE_USB3_UP
= 0x200102,
229 /* Present on every port in TB_CF_PORT at address zero. */
230 struct tb_regs_port_header
{
235 u32 first_cap_offset
:8;
240 enum tb_port_type type
:24;
241 u32 thunderbolt_version
:8;
249 u32 max_in_hop_id
:11;
250 u32 max_out_hop_id
:11;
259 /* Basic adapter configuration registers */
260 #define ADP_CS_4 0x04
261 #define ADP_CS_4_NFC_BUFFERS_MASK GENMASK(9, 0)
262 #define ADP_CS_4_TOTAL_BUFFERS_MASK GENMASK(29, 20)
263 #define ADP_CS_4_TOTAL_BUFFERS_SHIFT 20
264 #define ADP_CS_4_LCK BIT(31)
265 #define ADP_CS_5 0x05
266 #define ADP_CS_5_LCA_MASK GENMASK(28, 22)
267 #define ADP_CS_5_LCA_SHIFT 22
269 /* TMU adapter registers */
270 #define TMU_ADP_CS_3 0x03
271 #define TMU_ADP_CS_3_UDM BIT(29)
273 /* Lane adapter registers */
274 #define LANE_ADP_CS_0 0x00
275 #define LANE_ADP_CS_0_SUPPORTED_WIDTH_MASK GENMASK(25, 20)
276 #define LANE_ADP_CS_0_SUPPORTED_WIDTH_SHIFT 20
277 #define LANE_ADP_CS_1 0x01
278 #define LANE_ADP_CS_1_TARGET_WIDTH_MASK GENMASK(9, 4)
279 #define LANE_ADP_CS_1_TARGET_WIDTH_SHIFT 4
280 #define LANE_ADP_CS_1_TARGET_WIDTH_SINGLE 0x1
281 #define LANE_ADP_CS_1_TARGET_WIDTH_DUAL 0x3
282 #define LANE_ADP_CS_1_LB BIT(15)
283 #define LANE_ADP_CS_1_CURRENT_SPEED_MASK GENMASK(19, 16)
284 #define LANE_ADP_CS_1_CURRENT_SPEED_SHIFT 16
285 #define LANE_ADP_CS_1_CURRENT_SPEED_GEN2 0x8
286 #define LANE_ADP_CS_1_CURRENT_SPEED_GEN3 0x4
287 #define LANE_ADP_CS_1_CURRENT_WIDTH_MASK GENMASK(25, 20)
288 #define LANE_ADP_CS_1_CURRENT_WIDTH_SHIFT 20
290 /* USB4 port registers */
291 #define PORT_CS_18 0x12
292 #define PORT_CS_18_BE BIT(8)
293 #define PORT_CS_19 0x13
294 #define PORT_CS_19_PC BIT(3)
296 /* Display Port adapter registers */
297 #define ADP_DP_CS_0 0x00
298 #define ADP_DP_CS_0_VIDEO_HOPID_MASK GENMASK(26, 16)
299 #define ADP_DP_CS_0_VIDEO_HOPID_SHIFT 16
300 #define ADP_DP_CS_0_AE BIT(30)
301 #define ADP_DP_CS_0_VE BIT(31)
302 #define ADP_DP_CS_1_AUX_TX_HOPID_MASK GENMASK(10, 0)
303 #define ADP_DP_CS_1_AUX_RX_HOPID_MASK GENMASK(21, 11)
304 #define ADP_DP_CS_1_AUX_RX_HOPID_SHIFT 11
305 #define ADP_DP_CS_2 0x02
306 #define ADP_DP_CS_2_HDP BIT(6)
307 #define ADP_DP_CS_3 0x03
308 #define ADP_DP_CS_3_HDPC BIT(9)
309 #define DP_LOCAL_CAP 0x04
310 #define DP_REMOTE_CAP 0x05
311 #define DP_STATUS_CTRL 0x06
312 #define DP_STATUS_CTRL_CMHS BIT(25)
313 #define DP_STATUS_CTRL_UF BIT(26)
314 #define DP_COMMON_CAP 0x07
316 * DP_COMMON_CAP offsets work also for DP_LOCAL_CAP and DP_REMOTE_CAP
317 * with exception of DPRX done.
319 #define DP_COMMON_CAP_RATE_MASK GENMASK(11, 8)
320 #define DP_COMMON_CAP_RATE_SHIFT 8
321 #define DP_COMMON_CAP_RATE_RBR 0x0
322 #define DP_COMMON_CAP_RATE_HBR 0x1
323 #define DP_COMMON_CAP_RATE_HBR2 0x2
324 #define DP_COMMON_CAP_RATE_HBR3 0x3
325 #define DP_COMMON_CAP_LANES_MASK GENMASK(14, 12)
326 #define DP_COMMON_CAP_LANES_SHIFT 12
327 #define DP_COMMON_CAP_1_LANE 0x0
328 #define DP_COMMON_CAP_2_LANES 0x1
329 #define DP_COMMON_CAP_4_LANES 0x2
330 #define DP_COMMON_CAP_DPRX_DONE BIT(31)
332 /* PCIe adapter registers */
333 #define ADP_PCIE_CS_0 0x00
334 #define ADP_PCIE_CS_0_PE BIT(31)
336 /* USB adapter registers */
337 #define ADP_USB3_CS_0 0x00
338 #define ADP_USB3_CS_0_V BIT(30)
339 #define ADP_USB3_CS_0_PE BIT(31)
341 /* Hop register from TB_CFG_HOPS. 8 byte per entry. */
345 * hop to take after sending the packet through
346 * out_port (on the incoming port of the next switch)
348 u32 out_port
:6; /* next port of the path (on the same switch) */
349 u32 initial_credits
:8;
350 u32 unknown1
:6; /* set to zero */
355 u32 unknown2
:4; /* set to zero */
357 bool drop_packages
:1;
358 u32 counter
:11; /* index into TB_CFG_COUNTERS on this port */
359 bool counter_enable
:1;
362 bool ingress_shared_buffer
:1;
363 bool egress_shared_buffer
:1;
365 u32 unknown3
:3; /* set to zero */
368 /* Common link controller registers */
369 #define TB_LC_DESC 0x02
370 #define TB_LC_DESC_NLC_MASK GENMASK(3, 0)
371 #define TB_LC_DESC_SIZE_SHIFT 8
372 #define TB_LC_DESC_SIZE_MASK GENMASK(15, 8)
373 #define TB_LC_DESC_PORT_SIZE_SHIFT 16
374 #define TB_LC_DESC_PORT_SIZE_MASK GENMASK(27, 16)
375 #define TB_LC_FUSE 0x03
376 #define TB_LC_SNK_ALLOCATION 0x10
377 #define TB_LC_SNK_ALLOCATION_SNK0_MASK GENMASK(3, 0)
378 #define TB_LC_SNK_ALLOCATION_SNK0_CM 0x1
379 #define TB_LC_SNK_ALLOCATION_SNK1_SHIFT 4
380 #define TB_LC_SNK_ALLOCATION_SNK1_MASK GENMASK(7, 4)
381 #define TB_LC_SNK_ALLOCATION_SNK1_CM 0x1
383 /* Link controller registers */
384 #define TB_LC_PORT_ATTR 0x8d
385 #define TB_LC_PORT_ATTR_BE BIT(12)
387 #define TB_LC_SX_CTRL 0x96
388 #define TB_LC_SX_CTRL_L1C BIT(16)
389 #define TB_LC_SX_CTRL_L2C BIT(20)
390 #define TB_LC_SX_CTRL_UPSTREAM BIT(30)
391 #define TB_LC_SX_CTRL_SLP BIT(31)