blob: c2277b8ee88d560103655b27d37878016629150a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Andreas Noevere2b87852014-06-03 22:04:03 +02002/*
3 * Thunderbolt Cactus Ridge driver - capabilities lookup
4 *
5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
6 */
7
8#include <linux/slab.h>
9#include <linux/errno.h>
10
11#include "tb.h"
12
Mika Westerbergda2da042017-06-06 15:24:58 +030013#define CAP_OFFSET_MAX 0xff
14#define VSE_CAP_OFFSET_MAX 0xffff
Andreas Noevere2b87852014-06-03 22:04:03 +020015
16struct 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;
21 };
22} __packed;
23
Mika Westerbergda2da042017-06-06 15:24:58 +030024/**
25 * tb_port_find_cap() - Find port capability
26 * @port: Port to find the capability for
27 * @cap: Capability to look
28 *
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.
32 */
33int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap)
Andreas Noevere2b87852014-06-03 22:04:03 +020034{
Mika Westerbergda2da042017-06-06 15:24:58 +030035 u32 offset;
Andreas Noevere2b87852014-06-03 22:04:03 +020036
Andreas Noevere2b87852014-06-03 22:04:03 +020037 /*
Mika Westerbergda2da042017-06-06 15:24:58 +030038 * 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.
Andreas Noevere2b87852014-06-03 22:04:03 +020041 */
Mika Westerbergda2da042017-06-06 15:24:58 +030042 if (port->config.type == TB_TYPE_DP_HDMI_OUT)
43 offset = 0x39;
44 else
45 offset = 0x1;
46
47 do {
48 struct tb_cap_any header;
49 int ret;
50
51 ret = tb_port_read(port, &header, TB_CFG_PORT, offset, 1);
52 if (ret)
53 return ret;
54
55 if (header.basic.cap == cap)
56 return offset;
57
58 offset = header.basic.next;
59 } while (offset);
60
61 return -ENOENT;
62}
63
64static int tb_switch_find_cap(struct tb_switch *sw, enum tb_switch_cap cap)
65{
66 int offset = sw->config.first_cap_offset;
67
68 while (offset > 0 && offset < CAP_OFFSET_MAX) {
69 struct tb_cap_any header;
70 int ret;
71
72 ret = tb_sw_read(sw, &header, TB_CFG_SWITCH, offset, 1);
73 if (ret)
74 return ret;
75
76 if (header.basic.cap == cap)
77 return offset;
78
79 offset = header.basic.next;
80 }
81
82 return -ENOENT;
Andreas Noevere2b87852014-06-03 22:04:03 +020083}
84
85/**
Mika Westerbergda2da042017-06-06 15:24:58 +030086 * 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
Andreas Noevere2b87852014-06-03 22:04:03 +020089 *
Mika Westerbergda2da042017-06-06 15:24:58 +030090 * 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.
Andreas Noevere2b87852014-06-03 22:04:03 +020094 */
Mika Westerbergda2da042017-06-06 15:24:58 +030095int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec)
Andreas Noevere2b87852014-06-03 22:04:03 +020096{
Andreas Noevere2b87852014-06-03 22:04:03 +020097 struct tb_cap_any header;
Mika Westerbergda2da042017-06-06 15:24:58 +030098 int offset;
99
100 offset = tb_switch_find_cap(sw, TB_SWITCH_CAP_VSE);
101 if (offset < 0)
102 return offset;
103
104 while (offset > 0 && offset < VSE_CAP_OFFSET_MAX) {
105 int ret;
106
107 ret = tb_sw_read(sw, &header, TB_CFG_SWITCH, offset, 2);
108 if (ret)
109 return ret;
110
111 /*
112 * Extended vendor specific capabilities come in two
113 * flavors: short and long. The latter is used when
114 * offset is over 0xff.
115 */
116 if (offset >= CAP_OFFSET_MAX) {
117 if (header.extended_long.vsec_id == vsec)
Andreas Noevere2b87852014-06-03 22:04:03 +0200118 return offset;
Mika Westerbergda2da042017-06-06 15:24:58 +0300119 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;
Andreas Noevere2b87852014-06-03 22:04:03 +0200126 }
Andreas Noevere2b87852014-06-03 22:04:03 +0200127 }
Mika Westerbergda2da042017-06-06 15:24:58 +0300128
129 return -ENOENT;
Andreas Noevere2b87852014-06-03 22:04:03 +0200130}