iio: ep93xx: remove redundant return value check of platform_get_resource()
[linux-2.6/btrfs-unstable.git] / drivers / thunderbolt / cap.c
blobc2277b8ee88d560103655b27d37878016629150a
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Thunderbolt Cactus Ridge driver - capabilities lookup
5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
6 */
8 #include <linux/slab.h>
9 #include <linux/errno.h>
11 #include "tb.h"
13 #define CAP_OFFSET_MAX 0xff
14 #define VSE_CAP_OFFSET_MAX 0xffff
16 struct tb_cap_any {
17 union {
18 struct tb_cap_basic basic;
19 struct tb_cap_extended_short extended_short;
20 struct tb_cap_extended_long extended_long;
22 } __packed;
24 /**
25 * tb_port_find_cap() - Find port capability
26 * @port: Port to find the capability for
27 * @cap: Capability to look
29 * Returns offset to start of capability or %-ENOENT if no such
30 * capability was found. Negative errno is returned if there was an
31 * error.
33 int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap)
35 u32 offset;
38 * DP out adapters claim to implement TMU capability but in
39 * reality they do not so we hard code the adapter specific
40 * capability offset here.
42 if (port->config.type == TB_TYPE_DP_HDMI_OUT)
43 offset = 0x39;
44 else
45 offset = 0x1;
47 do {
48 struct tb_cap_any header;
49 int ret;
51 ret = tb_port_read(port, &header, TB_CFG_PORT, offset, 1);
52 if (ret)
53 return ret;
55 if (header.basic.cap == cap)
56 return offset;
58 offset = header.basic.next;
59 } while (offset);
61 return -ENOENT;
64 static int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap)
66 int offset = sw->config.first_cap_offset;
68 while (offset > 0 && offset < CAP_OFFSET_MAX) {
69 struct tb_cap_any header;
70 int ret;
72 ret = tb_sw_read(sw, &header, TB_CFG_SWITCH, offset, 1);
73 if (ret)
74 return ret;
76 if (header.basic.cap == cap)
77 return offset;
79 offset = header.basic.next;
82 return -ENOENT;
85 /**
86 * tb_switch_find_vse_cap() - Find switch vendor specific capability
87 * @sw: Switch to find the capability for
88 * @vsec: Vendor specific capability to look
90 * Functions enumerates vendor specific capabilities (VSEC) of a switch
91 * and returns offset when capability matching @vsec is found. If no
92 * such capability is found returns %-ENOENT. In case of error returns
93 * negative errno.
95 int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec)
97 struct tb_cap_any header;
98 int offset;
100 offset = tb_switch_find_cap(sw, TB_SWITCH_CAP_VSE);
101 if (offset < 0)
102 return offset;
104 while (offset > 0 && offset < VSE_CAP_OFFSET_MAX) {
105 int ret;
107 ret = tb_sw_read(sw, &header, TB_CFG_SWITCH, offset, 2);
108 if (ret)
109 return ret;
112 * Extended vendor specific capabilities come in two
113 * flavors: short and long. The latter is used when
114 * offset is over 0xff.
116 if (offset >= CAP_OFFSET_MAX) {
117 if (header.extended_long.vsec_id == vsec)
118 return offset;
119 offset = header.extended_long.next;
120 } else {
121 if (header.extended_short.vsec_id == vsec)
122 return offset;
123 if (!header.extended_short.length)
124 return -ENOENT;
125 offset = header.extended_short.next;
129 return -ENOENT;