1 // SPDX-License-Identifier: GPL-2.0
3 * Thunderbolt driver - capabilities lookup
5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
6 * Copyright (C) 2018, Intel Corporation
9 #include <linux/slab.h>
10 #include <linux/errno.h>
14 #define CAP_OFFSET_MAX 0xff
15 #define VSE_CAP_OFFSET_MAX 0xffff
19 struct tb_cap_basic basic
;
20 struct tb_cap_extended_short extended_short
;
21 struct tb_cap_extended_long extended_long
;
26 * tb_port_find_cap() - Find port capability
27 * @port: Port to find the capability for
28 * @cap: Capability to look
30 * Returns offset to start of capability or %-ENOENT if no such
31 * capability was found. Negative errno is returned if there was an
34 int tb_port_find_cap(struct tb_port
*port
, enum tb_port_cap cap
)
39 * DP out adapters claim to implement TMU capability but in
40 * reality they do not so we hard code the adapter specific
41 * capability offset here.
43 if (port
->config
.type
== TB_TYPE_DP_HDMI_OUT
)
49 struct tb_cap_any header
;
52 ret
= tb_port_read(port
, &header
, TB_CFG_PORT
, offset
, 1);
56 if (header
.basic
.cap
== cap
)
59 offset
= header
.basic
.next
;
65 static int tb_switch_find_cap(struct tb_switch
*sw
, enum tb_switch_cap cap
)
67 int offset
= sw
->config
.first_cap_offset
;
69 while (offset
> 0 && offset
< CAP_OFFSET_MAX
) {
70 struct tb_cap_any header
;
73 ret
= tb_sw_read(sw
, &header
, TB_CFG_SWITCH
, offset
, 1);
77 if (header
.basic
.cap
== cap
)
80 offset
= header
.basic
.next
;
87 * tb_switch_find_vse_cap() - Find switch vendor specific capability
88 * @sw: Switch to find the capability for
89 * @vsec: Vendor specific capability to look
91 * Functions enumerates vendor specific capabilities (VSEC) of a switch
92 * and returns offset when capability matching @vsec is found. If no
93 * such capability is found returns %-ENOENT. In case of error returns
96 int tb_switch_find_vse_cap(struct tb_switch
*sw
, enum tb_switch_vse_cap vsec
)
98 struct tb_cap_any header
;
101 offset
= tb_switch_find_cap(sw
, TB_SWITCH_CAP_VSE
);
105 while (offset
> 0 && offset
< VSE_CAP_OFFSET_MAX
) {
108 ret
= tb_sw_read(sw
, &header
, TB_CFG_SWITCH
, offset
, 2);
113 * Extended vendor specific capabilities come in two
114 * flavors: short and long. The latter is used when
115 * offset is over 0xff.
117 if (offset
>= CAP_OFFSET_MAX
) {
118 if (header
.extended_long
.vsec_id
== vsec
)
120 offset
= header
.extended_long
.next
;
122 if (header
.extended_short
.vsec_id
== vsec
)
124 if (!header
.extended_short
.length
)
126 offset
= header
.extended_short
.next
;