1 // SPDX-License-Identifier: GPL-2.0
3 * Thunderbolt link controller support
5 * Copyright (C) 2019, Intel Corporation
6 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
12 * tb_lc_read_uuid() - Read switch UUID from link controller common register
13 * @sw: Switch whose UUID is read
14 * @uuid: UUID is placed here
16 int tb_lc_read_uuid(struct tb_switch *sw, u32 *uuid)
20 return tb_sw_read(sw, uuid, TB_CFG_SWITCH, sw->cap_lc + TB_LC_FUSE, 4);
23 static int read_lc_desc(struct tb_switch *sw, u32 *desc)
27 return tb_sw_read(sw, desc, TB_CFG_SWITCH, sw->cap_lc + TB_LC_DESC, 1);
30 static int find_port_lc_cap(struct tb_port *port)
32 struct tb_switch *sw = port->sw;
33 int start, phys, ret, size;
36 ret = read_lc_desc(sw, &desc);
40 /* Start of port LC registers */
41 start = (desc & TB_LC_DESC_SIZE_MASK) >> TB_LC_DESC_SIZE_SHIFT;
42 size = (desc & TB_LC_DESC_PORT_SIZE_MASK) >> TB_LC_DESC_PORT_SIZE_SHIFT;
43 phys = tb_phy_port_from_link(port->port);
45 return sw->cap_lc + start + phys * size;
48 static int tb_lc_set_port_configured(struct tb_port *port, bool configured)
50 bool upstream = tb_is_upstream_port(port);
51 struct tb_switch *sw = port->sw;
55 if (sw->generation < 2)
58 cap = find_port_lc_cap(port);
62 ret = tb_sw_read(sw, &ctrl, TB_CFG_SWITCH, cap + TB_LC_SX_CTRL, 1);
66 /* Resolve correct lane */
68 lane = TB_LC_SX_CTRL_L1C;
70 lane = TB_LC_SX_CTRL_L2C;
75 ctrl |= TB_LC_SX_CTRL_UPSTREAM;
79 ctrl &= ~TB_LC_SX_CTRL_UPSTREAM;
82 return tb_sw_write(sw, &ctrl, TB_CFG_SWITCH, cap + TB_LC_SX_CTRL, 1);
86 * tb_lc_configure_port() - Let LC know about configured port
87 * @port: Port that is set as configured
89 * Sets the port configured for power management purposes.
91 int tb_lc_configure_port(struct tb_port *port)
93 return tb_lc_set_port_configured(port, true);
97 * tb_lc_unconfigure_port() - Let LC know about unconfigured port
98 * @port: Port that is set as configured
100 * Sets the port unconfigured for power management purposes.
102 void tb_lc_unconfigure_port(struct tb_port *port)
104 tb_lc_set_port_configured(port, false);
107 static int tb_lc_set_xdomain_configured(struct tb_port *port, bool configure)
109 struct tb_switch *sw = port->sw;
113 if (sw->generation < 2)
116 cap = find_port_lc_cap(port);
120 ret = tb_sw_read(sw, &ctrl, TB_CFG_SWITCH, cap + TB_LC_SX_CTRL, 1);
124 /* Resolve correct lane */
126 lane = TB_LC_SX_CTRL_L1D;
128 lane = TB_LC_SX_CTRL_L2D;
135 return tb_sw_write(sw, &ctrl, TB_CFG_SWITCH, cap + TB_LC_SX_CTRL, 1);
139 * tb_lc_configure_xdomain() - Inform LC that the link is XDomain
140 * @port: Switch downstream port connected to another host
142 * Sets the lane configured for XDomain accordingly so that the LC knows
143 * about this. Returns %0 in success and negative errno in failure.
145 int tb_lc_configure_xdomain(struct tb_port *port)
147 return tb_lc_set_xdomain_configured(port, true);
151 * tb_lc_unconfigure_xdomain() - Unconfigure XDomain from port
152 * @port: Switch downstream port that was connected to another host
154 * Unsets the lane XDomain configuration.
156 void tb_lc_unconfigure_xdomain(struct tb_port *port)
158 tb_lc_set_xdomain_configured(port, false);
162 * tb_lc_start_lane_initialization() - Start lane initialization
163 * @port: Device router lane 0 adapter
165 * Starts lane initialization for @port after the router resumed from
166 * sleep. Should be called for those downstream lane adapters that were
167 * not connected (tb_lc_configure_port() was not called) before sleep.
169 * Returns %0 in success and negative errno in case of failure.
171 int tb_lc_start_lane_initialization(struct tb_port *port)
173 struct tb_switch *sw = port->sw;
180 if (sw->generation < 2)
183 cap = find_port_lc_cap(port);
187 ret = tb_sw_read(sw, &ctrl, TB_CFG_SWITCH, cap + TB_LC_SX_CTRL, 1);
191 ctrl |= TB_LC_SX_CTRL_SLI;
193 return tb_sw_write(sw, &ctrl, TB_CFG_SWITCH, cap + TB_LC_SX_CTRL, 1);
197 * tb_lc_is_clx_supported() - Check whether CLx is supported by the lane adapter
198 * @port: Lane adapter
200 * TB_LC_LINK_ATTR_CPS bit reflects if the link supports CLx including
201 * active cables (if connected on the link).
203 bool tb_lc_is_clx_supported(struct tb_port *port)
205 struct tb_switch *sw = port->sw;
209 cap = find_port_lc_cap(port);
213 ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, cap + TB_LC_LINK_ATTR, 1);
217 return !!(val & TB_LC_LINK_ATTR_CPS);
220 static int tb_lc_set_wake_one(struct tb_switch *sw, unsigned int offset,
227 * Enable wake on PCIe and USB4 (wake coming from another
230 ret = tb_sw_read(sw, &ctrl, TB_CFG_SWITCH,
231 offset + TB_LC_SX_CTRL, 1);
235 ctrl &= ~(TB_LC_SX_CTRL_WOC | TB_LC_SX_CTRL_WOD | TB_LC_SX_CTRL_WODPC |
236 TB_LC_SX_CTRL_WODPD | TB_LC_SX_CTRL_WOP | TB_LC_SX_CTRL_WOU4);
238 if (flags & TB_WAKE_ON_CONNECT)
239 ctrl |= TB_LC_SX_CTRL_WOC | TB_LC_SX_CTRL_WOD;
240 if (flags & TB_WAKE_ON_USB4)
241 ctrl |= TB_LC_SX_CTRL_WOU4;
242 if (flags & TB_WAKE_ON_PCIE)
243 ctrl |= TB_LC_SX_CTRL_WOP;
244 if (flags & TB_WAKE_ON_DP)
245 ctrl |= TB_LC_SX_CTRL_WODPC | TB_LC_SX_CTRL_WODPD;
247 return tb_sw_write(sw, &ctrl, TB_CFG_SWITCH, offset + TB_LC_SX_CTRL, 1);
251 * tb_lc_set_wake() - Enable/disable wake
252 * @sw: Switch whose wakes to configure
253 * @flags: Wakeup flags (%0 to disable)
255 * For each LC sets wake bits accordingly.
257 int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags)
259 int start, size, nlc, ret, i;
262 if (sw->generation < 2)
268 ret = read_lc_desc(sw, &desc);
272 /* Figure out number of link controllers */
273 nlc = desc & TB_LC_DESC_NLC_MASK;
274 start = (desc & TB_LC_DESC_SIZE_MASK) >> TB_LC_DESC_SIZE_SHIFT;
275 size = (desc & TB_LC_DESC_PORT_SIZE_MASK) >> TB_LC_DESC_PORT_SIZE_SHIFT;
277 /* For each link controller set sleep bit */
278 for (i = 0; i < nlc; i++) {
279 unsigned int offset = sw->cap_lc + start + i * size;
281 ret = tb_lc_set_wake_one(sw, offset, flags);
290 * tb_lc_set_sleep() - Inform LC that the switch is going to sleep
291 * @sw: Switch to set sleep
293 * Let the switch link controllers know that the switch is going to
296 int tb_lc_set_sleep(struct tb_switch *sw)
298 int start, size, nlc, ret, i;
301 if (sw->generation < 2)
304 ret = read_lc_desc(sw, &desc);
308 /* Figure out number of link controllers */
309 nlc = desc & TB_LC_DESC_NLC_MASK;
310 start = (desc & TB_LC_DESC_SIZE_MASK) >> TB_LC_DESC_SIZE_SHIFT;
311 size = (desc & TB_LC_DESC_PORT_SIZE_MASK) >> TB_LC_DESC_PORT_SIZE_SHIFT;
313 /* For each link controller set sleep bit */
314 for (i = 0; i < nlc; i++) {
315 unsigned int offset = sw->cap_lc + start + i * size;
318 ret = tb_sw_read(sw, &ctrl, TB_CFG_SWITCH,
319 offset + TB_LC_SX_CTRL, 1);
323 ctrl |= TB_LC_SX_CTRL_SLP;
324 ret = tb_sw_write(sw, &ctrl, TB_CFG_SWITCH,
325 offset + TB_LC_SX_CTRL, 1);
334 * tb_lc_lane_bonding_possible() - Is lane bonding possible towards switch
335 * @sw: Switch to check
337 * Checks whether conditions for lane bonding from parent to @sw are
340 bool tb_lc_lane_bonding_possible(struct tb_switch *sw)
346 if (sw->generation < 2)
349 up = tb_upstream_port(sw);
350 cap = find_port_lc_cap(up);
354 ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_ATTR, 1);
358 return !!(val & TB_LC_PORT_ATTR_BE);
361 static int tb_lc_dp_sink_from_port(const struct tb_switch *sw,
364 struct tb_port *port;
366 /* The first DP IN port is sink 0 and second is sink 1 */
367 tb_switch_for_each_port(sw, port) {
368 if (tb_port_is_dpin(port))
375 static int tb_lc_dp_sink_available(struct tb_switch *sw, int sink)
380 ret = tb_sw_read(sw, &val, TB_CFG_SWITCH,
381 sw->cap_lc + TB_LC_SNK_ALLOCATION, 1);
386 * Sink is available for CM/SW to use if the allocation valie is
390 alloc = val & TB_LC_SNK_ALLOCATION_SNK0_MASK;
391 if (!alloc || alloc == TB_LC_SNK_ALLOCATION_SNK0_CM)
394 alloc = (val & TB_LC_SNK_ALLOCATION_SNK1_MASK) >>
395 TB_LC_SNK_ALLOCATION_SNK1_SHIFT;
396 if (!alloc || alloc == TB_LC_SNK_ALLOCATION_SNK1_CM)
404 * tb_lc_dp_sink_query() - Is DP sink available for DP IN port
405 * @sw: Switch whose DP sink is queried
406 * @in: DP IN port to check
408 * Queries through LC SNK_ALLOCATION registers whether DP sink is available
409 * for the given DP IN port or not.
411 bool tb_lc_dp_sink_query(struct tb_switch *sw, struct tb_port *in)
416 * For older generations sink is always available as there is no
417 * allocation mechanism.
419 if (sw->generation < 3)
422 sink = tb_lc_dp_sink_from_port(sw, in);
426 return !tb_lc_dp_sink_available(sw, sink);
430 * tb_lc_dp_sink_alloc() - Allocate DP sink
431 * @sw: Switch whose DP sink is allocated
432 * @in: DP IN port the DP sink is allocated for
434 * Allocate DP sink for @in via LC SNK_ALLOCATION registers. If the
435 * resource is available and allocation is successful returns %0. In all
436 * other cases returs negative errno. In particular %-EBUSY is returned if
437 * the resource was not available.
439 int tb_lc_dp_sink_alloc(struct tb_switch *sw, struct tb_port *in)
444 if (sw->generation < 3)
447 sink = tb_lc_dp_sink_from_port(sw, in);
451 ret = tb_lc_dp_sink_available(sw, sink);
455 ret = tb_sw_read(sw, &val, TB_CFG_SWITCH,
456 sw->cap_lc + TB_LC_SNK_ALLOCATION, 1);
461 val &= ~TB_LC_SNK_ALLOCATION_SNK0_MASK;
462 val |= TB_LC_SNK_ALLOCATION_SNK0_CM;
464 val &= ~TB_LC_SNK_ALLOCATION_SNK1_MASK;
465 val |= TB_LC_SNK_ALLOCATION_SNK1_CM <<
466 TB_LC_SNK_ALLOCATION_SNK1_SHIFT;
469 ret = tb_sw_write(sw, &val, TB_CFG_SWITCH,
470 sw->cap_lc + TB_LC_SNK_ALLOCATION, 1);
475 tb_port_dbg(in, "sink %d allocated\n", sink);
480 * tb_lc_dp_sink_dealloc() - De-allocate DP sink
481 * @sw: Switch whose DP sink is de-allocated
482 * @in: DP IN port whose DP sink is de-allocated
484 * De-allocate DP sink from @in using LC SNK_ALLOCATION registers.
486 int tb_lc_dp_sink_dealloc(struct tb_switch *sw, struct tb_port *in)
491 if (sw->generation < 3)
494 sink = tb_lc_dp_sink_from_port(sw, in);
498 /* Needs to be owned by CM/SW */
499 ret = tb_lc_dp_sink_available(sw, sink);
503 ret = tb_sw_read(sw, &val, TB_CFG_SWITCH,
504 sw->cap_lc + TB_LC_SNK_ALLOCATION, 1);
509 val &= ~TB_LC_SNK_ALLOCATION_SNK0_MASK;
511 val &= ~TB_LC_SNK_ALLOCATION_SNK1_MASK;
513 ret = tb_sw_write(sw, &val, TB_CFG_SWITCH,
514 sw->cap_lc + TB_LC_SNK_ALLOCATION, 1);
518 tb_port_dbg(in, "sink %d de-allocated\n", sink);
523 * tb_lc_force_power() - Forces LC to be powered on
524 * @sw: Thunderbolt switch
526 * This is useful to let authentication cycle pass even without
527 * a Thunderbolt link present.
529 int tb_lc_force_power(struct tb_switch *sw)
533 return tb_sw_write(sw, &in, TB_CFG_SWITCH, TB_LC_POWER, 1);