2 * Copyright © 2014 Red Hat
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23 #include <linux/delay.h>
24 #include <linux/errno.h>
25 #include <linux/i2c.h>
26 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/sched.h>
29 #include <linux/seq_file.h>
31 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
32 #include <linux/stacktrace.h>
33 #include <linux/sort.h>
34 #include <linux/timekeeping.h>
35 #include <linux/math64.h>
38 #include <drm/drm_atomic.h>
39 #include <drm/drm_atomic_helper.h>
40 #include <drm/drm_dp_mst_helper.h>
41 #include <drm/drm_drv.h>
42 #include <drm/drm_print.h>
43 #include <drm/drm_probe_helper.h>
45 #include "drm_crtc_helper_internal.h"
46 #include "drm_dp_mst_topology_internal.h"
51 * These functions contain parts of the DisplayPort 1.2a MultiStream Transport
52 * protocol. The helpers contain a topology manager and bandwidth manager.
53 * The helpers encapsulate the sending and received of sideband msgs.
55 struct drm_dp_pending_up_req
{
56 struct drm_dp_sideband_msg_hdr hdr
;
57 struct drm_dp_sideband_msg_req_body msg
;
58 struct list_head next
;
61 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr
*mgr
,
64 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port
*port
);
66 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr
*mgr
,
68 struct drm_dp_payload
*payload
);
70 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr
*mgr
,
71 struct drm_dp_mst_port
*port
,
72 int offset
, int size
, u8
*bytes
);
73 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr
*mgr
,
74 struct drm_dp_mst_port
*port
,
75 int offset
, int size
, u8
*bytes
);
77 static int drm_dp_send_link_address(struct drm_dp_mst_topology_mgr
*mgr
,
78 struct drm_dp_mst_branch
*mstb
);
81 drm_dp_send_clear_payload_id_table(struct drm_dp_mst_topology_mgr
*mgr
,
82 struct drm_dp_mst_branch
*mstb
);
84 static int drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr
*mgr
,
85 struct drm_dp_mst_branch
*mstb
,
86 struct drm_dp_mst_port
*port
);
87 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr
*mgr
,
90 static int drm_dp_mst_register_i2c_bus(struct drm_dp_aux
*aux
);
91 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_aux
*aux
);
92 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr
*mgr
);
94 #define DBG_PREFIX "[dp_mst]"
96 #define DP_STR(x) [DP_ ## x] = #x
98 static const char *drm_dp_mst_req_type_str(u8 req_type
)
100 static const char * const req_type_str
[] = {
101 DP_STR(GET_MSG_TRANSACTION_VERSION
),
102 DP_STR(LINK_ADDRESS
),
103 DP_STR(CONNECTION_STATUS_NOTIFY
),
104 DP_STR(ENUM_PATH_RESOURCES
),
105 DP_STR(ALLOCATE_PAYLOAD
),
106 DP_STR(QUERY_PAYLOAD
),
107 DP_STR(RESOURCE_STATUS_NOTIFY
),
108 DP_STR(CLEAR_PAYLOAD_ID_TABLE
),
109 DP_STR(REMOTE_DPCD_READ
),
110 DP_STR(REMOTE_DPCD_WRITE
),
111 DP_STR(REMOTE_I2C_READ
),
112 DP_STR(REMOTE_I2C_WRITE
),
113 DP_STR(POWER_UP_PHY
),
114 DP_STR(POWER_DOWN_PHY
),
115 DP_STR(SINK_EVENT_NOTIFY
),
116 DP_STR(QUERY_STREAM_ENC_STATUS
),
119 if (req_type
>= ARRAY_SIZE(req_type_str
) ||
120 !req_type_str
[req_type
])
123 return req_type_str
[req_type
];
127 #define DP_STR(x) [DP_NAK_ ## x] = #x
129 static const char *drm_dp_mst_nak_reason_str(u8 nak_reason
)
131 static const char * const nak_reason_str
[] = {
132 DP_STR(WRITE_FAILURE
),
133 DP_STR(INVALID_READ
),
137 DP_STR(LINK_FAILURE
),
138 DP_STR(NO_RESOURCES
),
141 DP_STR(ALLOCATE_FAIL
),
144 if (nak_reason
>= ARRAY_SIZE(nak_reason_str
) ||
145 !nak_reason_str
[nak_reason
])
148 return nak_reason_str
[nak_reason
];
152 #define DP_STR(x) [DRM_DP_SIDEBAND_TX_ ## x] = #x
154 static const char *drm_dp_mst_sideband_tx_state_str(int state
)
156 static const char * const sideband_reason_str
[] = {
164 if (state
>= ARRAY_SIZE(sideband_reason_str
) ||
165 !sideband_reason_str
[state
])
168 return sideband_reason_str
[state
];
172 drm_dp_mst_rad_to_str(const u8 rad
[8], u8 lct
, char *out
, size_t len
)
177 for (i
= 0; i
< lct
; i
++) {
179 unpacked_rad
[i
] = rad
[i
/ 2] >> 4;
181 unpacked_rad
[i
] = rad
[i
/ 2] & BIT_MASK(4);
184 /* TODO: Eventually add something to printk so we can format the rad
187 return snprintf(out
, len
, "%*phC", lct
, unpacked_rad
);
190 /* sideband msg handling */
191 static u8
drm_dp_msg_header_crc4(const uint8_t *data
, size_t num_nibbles
)
196 int number_of_bits
= num_nibbles
* 4;
199 while (number_of_bits
!= 0) {
202 remainder
|= (data
[array_index
] & bitmask
) >> bitshift
;
210 if ((remainder
& 0x10) == 0x10)
215 while (number_of_bits
!= 0) {
218 if ((remainder
& 0x10) != 0)
225 static u8
drm_dp_msg_data_crc4(const uint8_t *data
, u8 number_of_bytes
)
230 int number_of_bits
= number_of_bytes
* 8;
233 while (number_of_bits
!= 0) {
236 remainder
|= (data
[array_index
] & bitmask
) >> bitshift
;
244 if ((remainder
& 0x100) == 0x100)
249 while (number_of_bits
!= 0) {
252 if ((remainder
& 0x100) != 0)
256 return remainder
& 0xff;
258 static inline u8
drm_dp_calc_sb_hdr_size(struct drm_dp_sideband_msg_hdr
*hdr
)
261 size
+= (hdr
->lct
/ 2);
265 static void drm_dp_encode_sideband_msg_hdr(struct drm_dp_sideband_msg_hdr
*hdr
,
271 buf
[idx
++] = ((hdr
->lct
& 0xf) << 4) | (hdr
->lcr
& 0xf);
272 for (i
= 0; i
< (hdr
->lct
/ 2); i
++)
273 buf
[idx
++] = hdr
->rad
[i
];
274 buf
[idx
++] = (hdr
->broadcast
<< 7) | (hdr
->path_msg
<< 6) |
275 (hdr
->msg_len
& 0x3f);
276 buf
[idx
++] = (hdr
->somt
<< 7) | (hdr
->eomt
<< 6) | (hdr
->seqno
<< 4);
278 crc4
= drm_dp_msg_header_crc4(buf
, (idx
* 2) - 1);
279 buf
[idx
- 1] |= (crc4
& 0xf);
284 static bool drm_dp_decode_sideband_msg_hdr(struct drm_dp_sideband_msg_hdr
*hdr
,
285 u8
*buf
, int buflen
, u8
*hdrlen
)
294 len
+= ((buf
[0] & 0xf0) >> 4) / 2;
297 crc4
= drm_dp_msg_header_crc4(buf
, (len
* 2) - 1);
299 if ((crc4
& 0xf) != (buf
[len
- 1] & 0xf)) {
300 DRM_DEBUG_KMS("crc4 mismatch 0x%x 0x%x\n", crc4
, buf
[len
- 1]);
304 hdr
->lct
= (buf
[0] & 0xf0) >> 4;
305 hdr
->lcr
= (buf
[0] & 0xf);
307 for (i
= 0; i
< (hdr
->lct
/ 2); i
++)
308 hdr
->rad
[i
] = buf
[idx
++];
309 hdr
->broadcast
= (buf
[idx
] >> 7) & 0x1;
310 hdr
->path_msg
= (buf
[idx
] >> 6) & 0x1;
311 hdr
->msg_len
= buf
[idx
] & 0x3f;
313 hdr
->somt
= (buf
[idx
] >> 7) & 0x1;
314 hdr
->eomt
= (buf
[idx
] >> 6) & 0x1;
315 hdr
->seqno
= (buf
[idx
] >> 4) & 0x1;
322 drm_dp_encode_sideband_req(const struct drm_dp_sideband_msg_req_body
*req
,
323 struct drm_dp_sideband_msg_tx
*raw
)
328 buf
[idx
++] = req
->req_type
& 0x7f;
330 switch (req
->req_type
) {
331 case DP_ENUM_PATH_RESOURCES
:
332 case DP_POWER_DOWN_PHY
:
333 case DP_POWER_UP_PHY
:
334 buf
[idx
] = (req
->u
.port_num
.port_number
& 0xf) << 4;
337 case DP_ALLOCATE_PAYLOAD
:
338 buf
[idx
] = (req
->u
.allocate_payload
.port_number
& 0xf) << 4 |
339 (req
->u
.allocate_payload
.number_sdp_streams
& 0xf);
341 buf
[idx
] = (req
->u
.allocate_payload
.vcpi
& 0x7f);
343 buf
[idx
] = (req
->u
.allocate_payload
.pbn
>> 8);
345 buf
[idx
] = (req
->u
.allocate_payload
.pbn
& 0xff);
347 for (i
= 0; i
< req
->u
.allocate_payload
.number_sdp_streams
/ 2; i
++) {
348 buf
[idx
] = ((req
->u
.allocate_payload
.sdp_stream_sink
[i
* 2] & 0xf) << 4) |
349 (req
->u
.allocate_payload
.sdp_stream_sink
[i
* 2 + 1] & 0xf);
352 if (req
->u
.allocate_payload
.number_sdp_streams
& 1) {
353 i
= req
->u
.allocate_payload
.number_sdp_streams
- 1;
354 buf
[idx
] = (req
->u
.allocate_payload
.sdp_stream_sink
[i
] & 0xf) << 4;
358 case DP_QUERY_PAYLOAD
:
359 buf
[idx
] = (req
->u
.query_payload
.port_number
& 0xf) << 4;
361 buf
[idx
] = (req
->u
.query_payload
.vcpi
& 0x7f);
364 case DP_REMOTE_DPCD_READ
:
365 buf
[idx
] = (req
->u
.dpcd_read
.port_number
& 0xf) << 4;
366 buf
[idx
] |= ((req
->u
.dpcd_read
.dpcd_address
& 0xf0000) >> 16) & 0xf;
368 buf
[idx
] = (req
->u
.dpcd_read
.dpcd_address
& 0xff00) >> 8;
370 buf
[idx
] = (req
->u
.dpcd_read
.dpcd_address
& 0xff);
372 buf
[idx
] = (req
->u
.dpcd_read
.num_bytes
);
376 case DP_REMOTE_DPCD_WRITE
:
377 buf
[idx
] = (req
->u
.dpcd_write
.port_number
& 0xf) << 4;
378 buf
[idx
] |= ((req
->u
.dpcd_write
.dpcd_address
& 0xf0000) >> 16) & 0xf;
380 buf
[idx
] = (req
->u
.dpcd_write
.dpcd_address
& 0xff00) >> 8;
382 buf
[idx
] = (req
->u
.dpcd_write
.dpcd_address
& 0xff);
384 buf
[idx
] = (req
->u
.dpcd_write
.num_bytes
);
386 memcpy(&buf
[idx
], req
->u
.dpcd_write
.bytes
, req
->u
.dpcd_write
.num_bytes
);
387 idx
+= req
->u
.dpcd_write
.num_bytes
;
389 case DP_REMOTE_I2C_READ
:
390 buf
[idx
] = (req
->u
.i2c_read
.port_number
& 0xf) << 4;
391 buf
[idx
] |= (req
->u
.i2c_read
.num_transactions
& 0x3);
393 for (i
= 0; i
< (req
->u
.i2c_read
.num_transactions
& 0x3); i
++) {
394 buf
[idx
] = req
->u
.i2c_read
.transactions
[i
].i2c_dev_id
& 0x7f;
396 buf
[idx
] = req
->u
.i2c_read
.transactions
[i
].num_bytes
;
398 memcpy(&buf
[idx
], req
->u
.i2c_read
.transactions
[i
].bytes
, req
->u
.i2c_read
.transactions
[i
].num_bytes
);
399 idx
+= req
->u
.i2c_read
.transactions
[i
].num_bytes
;
401 buf
[idx
] = (req
->u
.i2c_read
.transactions
[i
].no_stop_bit
& 0x1) << 4;
402 buf
[idx
] |= (req
->u
.i2c_read
.transactions
[i
].i2c_transaction_delay
& 0xf);
405 buf
[idx
] = (req
->u
.i2c_read
.read_i2c_device_id
) & 0x7f;
407 buf
[idx
] = (req
->u
.i2c_read
.num_bytes_read
);
411 case DP_REMOTE_I2C_WRITE
:
412 buf
[idx
] = (req
->u
.i2c_write
.port_number
& 0xf) << 4;
414 buf
[idx
] = (req
->u
.i2c_write
.write_i2c_device_id
) & 0x7f;
416 buf
[idx
] = (req
->u
.i2c_write
.num_bytes
);
418 memcpy(&buf
[idx
], req
->u
.i2c_write
.bytes
, req
->u
.i2c_write
.num_bytes
);
419 idx
+= req
->u
.i2c_write
.num_bytes
;
424 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_encode_sideband_req
);
426 /* Decode a sideband request we've encoded, mainly used for debugging */
428 drm_dp_decode_sideband_req(const struct drm_dp_sideband_msg_tx
*raw
,
429 struct drm_dp_sideband_msg_req_body
*req
)
431 const u8
*buf
= raw
->msg
;
434 req
->req_type
= buf
[idx
++] & 0x7f;
435 switch (req
->req_type
) {
436 case DP_ENUM_PATH_RESOURCES
:
437 case DP_POWER_DOWN_PHY
:
438 case DP_POWER_UP_PHY
:
439 req
->u
.port_num
.port_number
= (buf
[idx
] >> 4) & 0xf;
441 case DP_ALLOCATE_PAYLOAD
:
443 struct drm_dp_allocate_payload
*a
=
444 &req
->u
.allocate_payload
;
446 a
->number_sdp_streams
= buf
[idx
] & 0xf;
447 a
->port_number
= (buf
[idx
] >> 4) & 0xf;
449 WARN_ON(buf
[++idx
] & 0x80);
450 a
->vcpi
= buf
[idx
] & 0x7f;
452 a
->pbn
= buf
[++idx
] << 8;
453 a
->pbn
|= buf
[++idx
];
456 for (i
= 0; i
< a
->number_sdp_streams
; i
++) {
457 a
->sdp_stream_sink
[i
] =
458 (buf
[idx
+ (i
/ 2)] >> ((i
% 2) ? 0 : 4)) & 0xf;
462 case DP_QUERY_PAYLOAD
:
463 req
->u
.query_payload
.port_number
= (buf
[idx
] >> 4) & 0xf;
464 WARN_ON(buf
[++idx
] & 0x80);
465 req
->u
.query_payload
.vcpi
= buf
[idx
] & 0x7f;
467 case DP_REMOTE_DPCD_READ
:
469 struct drm_dp_remote_dpcd_read
*r
= &req
->u
.dpcd_read
;
471 r
->port_number
= (buf
[idx
] >> 4) & 0xf;
473 r
->dpcd_address
= (buf
[idx
] << 16) & 0xf0000;
474 r
->dpcd_address
|= (buf
[++idx
] << 8) & 0xff00;
475 r
->dpcd_address
|= buf
[++idx
] & 0xff;
477 r
->num_bytes
= buf
[++idx
];
480 case DP_REMOTE_DPCD_WRITE
:
482 struct drm_dp_remote_dpcd_write
*w
=
485 w
->port_number
= (buf
[idx
] >> 4) & 0xf;
487 w
->dpcd_address
= (buf
[idx
] << 16) & 0xf0000;
488 w
->dpcd_address
|= (buf
[++idx
] << 8) & 0xff00;
489 w
->dpcd_address
|= buf
[++idx
] & 0xff;
491 w
->num_bytes
= buf
[++idx
];
493 w
->bytes
= kmemdup(&buf
[++idx
], w
->num_bytes
,
499 case DP_REMOTE_I2C_READ
:
501 struct drm_dp_remote_i2c_read
*r
= &req
->u
.i2c_read
;
502 struct drm_dp_remote_i2c_read_tx
*tx
;
505 r
->num_transactions
= buf
[idx
] & 0x3;
506 r
->port_number
= (buf
[idx
] >> 4) & 0xf;
507 for (i
= 0; i
< r
->num_transactions
; i
++) {
508 tx
= &r
->transactions
[i
];
510 tx
->i2c_dev_id
= buf
[++idx
] & 0x7f;
511 tx
->num_bytes
= buf
[++idx
];
512 tx
->bytes
= kmemdup(&buf
[++idx
],
519 idx
+= tx
->num_bytes
;
520 tx
->no_stop_bit
= (buf
[idx
] >> 5) & 0x1;
521 tx
->i2c_transaction_delay
= buf
[idx
] & 0xf;
525 for (i
= 0; i
< r
->num_transactions
; i
++) {
526 tx
= &r
->transactions
[i
];
532 r
->read_i2c_device_id
= buf
[++idx
] & 0x7f;
533 r
->num_bytes_read
= buf
[++idx
];
536 case DP_REMOTE_I2C_WRITE
:
538 struct drm_dp_remote_i2c_write
*w
= &req
->u
.i2c_write
;
540 w
->port_number
= (buf
[idx
] >> 4) & 0xf;
541 w
->write_i2c_device_id
= buf
[++idx
] & 0x7f;
542 w
->num_bytes
= buf
[++idx
];
543 w
->bytes
= kmemdup(&buf
[++idx
], w
->num_bytes
,
553 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_decode_sideband_req
);
556 drm_dp_dump_sideband_msg_req_body(const struct drm_dp_sideband_msg_req_body
*req
,
557 int indent
, struct drm_printer
*printer
)
561 #define P(f, ...) drm_printf_indent(printer, indent, f, ##__VA_ARGS__)
562 if (req
->req_type
== DP_LINK_ADDRESS
) {
563 /* No contents to print */
564 P("type=%s\n", drm_dp_mst_req_type_str(req
->req_type
));
568 P("type=%s contents:\n", drm_dp_mst_req_type_str(req
->req_type
));
571 switch (req
->req_type
) {
572 case DP_ENUM_PATH_RESOURCES
:
573 case DP_POWER_DOWN_PHY
:
574 case DP_POWER_UP_PHY
:
575 P("port=%d\n", req
->u
.port_num
.port_number
);
577 case DP_ALLOCATE_PAYLOAD
:
578 P("port=%d vcpi=%d pbn=%d sdp_streams=%d %*ph\n",
579 req
->u
.allocate_payload
.port_number
,
580 req
->u
.allocate_payload
.vcpi
, req
->u
.allocate_payload
.pbn
,
581 req
->u
.allocate_payload
.number_sdp_streams
,
582 req
->u
.allocate_payload
.number_sdp_streams
,
583 req
->u
.allocate_payload
.sdp_stream_sink
);
585 case DP_QUERY_PAYLOAD
:
586 P("port=%d vcpi=%d\n",
587 req
->u
.query_payload
.port_number
,
588 req
->u
.query_payload
.vcpi
);
590 case DP_REMOTE_DPCD_READ
:
591 P("port=%d dpcd_addr=%05x len=%d\n",
592 req
->u
.dpcd_read
.port_number
, req
->u
.dpcd_read
.dpcd_address
,
593 req
->u
.dpcd_read
.num_bytes
);
595 case DP_REMOTE_DPCD_WRITE
:
596 P("port=%d addr=%05x len=%d: %*ph\n",
597 req
->u
.dpcd_write
.port_number
,
598 req
->u
.dpcd_write
.dpcd_address
,
599 req
->u
.dpcd_write
.num_bytes
, req
->u
.dpcd_write
.num_bytes
,
600 req
->u
.dpcd_write
.bytes
);
602 case DP_REMOTE_I2C_READ
:
603 P("port=%d num_tx=%d id=%d size=%d:\n",
604 req
->u
.i2c_read
.port_number
,
605 req
->u
.i2c_read
.num_transactions
,
606 req
->u
.i2c_read
.read_i2c_device_id
,
607 req
->u
.i2c_read
.num_bytes_read
);
610 for (i
= 0; i
< req
->u
.i2c_read
.num_transactions
; i
++) {
611 const struct drm_dp_remote_i2c_read_tx
*rtx
=
612 &req
->u
.i2c_read
.transactions
[i
];
614 P("%d: id=%03d size=%03d no_stop_bit=%d tx_delay=%03d: %*ph\n",
615 i
, rtx
->i2c_dev_id
, rtx
->num_bytes
,
616 rtx
->no_stop_bit
, rtx
->i2c_transaction_delay
,
617 rtx
->num_bytes
, rtx
->bytes
);
620 case DP_REMOTE_I2C_WRITE
:
621 P("port=%d id=%d size=%d: %*ph\n",
622 req
->u
.i2c_write
.port_number
,
623 req
->u
.i2c_write
.write_i2c_device_id
,
624 req
->u
.i2c_write
.num_bytes
, req
->u
.i2c_write
.num_bytes
,
625 req
->u
.i2c_write
.bytes
);
633 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_dump_sideband_msg_req_body
);
636 drm_dp_mst_dump_sideband_msg_tx(struct drm_printer
*p
,
637 const struct drm_dp_sideband_msg_tx
*txmsg
)
639 struct drm_dp_sideband_msg_req_body req
;
644 drm_dp_mst_rad_to_str(txmsg
->dst
->rad
, txmsg
->dst
->lct
, buf
,
646 drm_printf(p
, "txmsg cur_offset=%x cur_len=%x seqno=%x state=%s path_msg=%d dst=%s\n",
647 txmsg
->cur_offset
, txmsg
->cur_len
, txmsg
->seqno
,
648 drm_dp_mst_sideband_tx_state_str(txmsg
->state
),
649 txmsg
->path_msg
, buf
);
651 ret
= drm_dp_decode_sideband_req(txmsg
, &req
);
653 drm_printf(p
, "<failed to decode sideband req: %d>\n", ret
);
656 drm_dp_dump_sideband_msg_req_body(&req
, 1, p
);
658 switch (req
.req_type
) {
659 case DP_REMOTE_DPCD_WRITE
:
660 kfree(req
.u
.dpcd_write
.bytes
);
662 case DP_REMOTE_I2C_READ
:
663 for (i
= 0; i
< req
.u
.i2c_read
.num_transactions
; i
++)
664 kfree(req
.u
.i2c_read
.transactions
[i
].bytes
);
666 case DP_REMOTE_I2C_WRITE
:
667 kfree(req
.u
.i2c_write
.bytes
);
672 static void drm_dp_crc_sideband_chunk_req(u8
*msg
, u8 len
)
675 crc4
= drm_dp_msg_data_crc4(msg
, len
);
679 static void drm_dp_encode_sideband_reply(struct drm_dp_sideband_msg_reply_body
*rep
,
680 struct drm_dp_sideband_msg_tx
*raw
)
685 buf
[idx
++] = (rep
->reply_type
& 0x1) << 7 | (rep
->req_type
& 0x7f);
690 /* this adds a chunk of msg to the builder to get the final msg */
691 static bool drm_dp_sideband_msg_build(struct drm_dp_sideband_msg_rx
*msg
,
692 u8
*replybuf
, u8 replybuflen
, bool hdr
)
699 struct drm_dp_sideband_msg_hdr recv_hdr
;
700 ret
= drm_dp_decode_sideband_msg_hdr(&recv_hdr
, replybuf
, replybuflen
, &hdrlen
);
702 print_hex_dump(KERN_DEBUG
, "failed hdr", DUMP_PREFIX_NONE
, 16, 1, replybuf
, replybuflen
, false);
707 * ignore out-of-order messages or messages that are part of a
710 if (!recv_hdr
.somt
&& !msg
->have_somt
)
713 /* get length contained in this portion */
714 msg
->curchunk_len
= recv_hdr
.msg_len
;
715 msg
->curchunk_hdrlen
= hdrlen
;
717 /* we have already gotten an somt - don't bother parsing */
718 if (recv_hdr
.somt
&& msg
->have_somt
)
722 memcpy(&msg
->initial_hdr
, &recv_hdr
, sizeof(struct drm_dp_sideband_msg_hdr
));
723 msg
->have_somt
= true;
726 msg
->have_eomt
= true;
728 /* copy the bytes for the remainder of this header chunk */
729 msg
->curchunk_idx
= min(msg
->curchunk_len
, (u8
)(replybuflen
- hdrlen
));
730 memcpy(&msg
->chunk
[0], replybuf
+ hdrlen
, msg
->curchunk_idx
);
732 memcpy(&msg
->chunk
[msg
->curchunk_idx
], replybuf
, replybuflen
);
733 msg
->curchunk_idx
+= replybuflen
;
736 if (msg
->curchunk_idx
>= msg
->curchunk_len
) {
738 crc4
= drm_dp_msg_data_crc4(msg
->chunk
, msg
->curchunk_len
- 1);
739 /* copy chunk into bigger msg */
740 memcpy(&msg
->msg
[msg
->curlen
], msg
->chunk
, msg
->curchunk_len
- 1);
741 msg
->curlen
+= msg
->curchunk_len
- 1;
746 static bool drm_dp_sideband_parse_link_address(struct drm_dp_sideband_msg_rx
*raw
,
747 struct drm_dp_sideband_msg_reply_body
*repmsg
)
751 memcpy(repmsg
->u
.link_addr
.guid
, &raw
->msg
[idx
], 16);
753 repmsg
->u
.link_addr
.nports
= raw
->msg
[idx
] & 0xf;
755 if (idx
> raw
->curlen
)
757 for (i
= 0; i
< repmsg
->u
.link_addr
.nports
; i
++) {
758 if (raw
->msg
[idx
] & 0x80)
759 repmsg
->u
.link_addr
.ports
[i
].input_port
= 1;
761 repmsg
->u
.link_addr
.ports
[i
].peer_device_type
= (raw
->msg
[idx
] >> 4) & 0x7;
762 repmsg
->u
.link_addr
.ports
[i
].port_number
= (raw
->msg
[idx
] & 0xf);
765 if (idx
> raw
->curlen
)
767 repmsg
->u
.link_addr
.ports
[i
].mcs
= (raw
->msg
[idx
] >> 7) & 0x1;
768 repmsg
->u
.link_addr
.ports
[i
].ddps
= (raw
->msg
[idx
] >> 6) & 0x1;
769 if (repmsg
->u
.link_addr
.ports
[i
].input_port
== 0)
770 repmsg
->u
.link_addr
.ports
[i
].legacy_device_plug_status
= (raw
->msg
[idx
] >> 5) & 0x1;
772 if (idx
> raw
->curlen
)
774 if (repmsg
->u
.link_addr
.ports
[i
].input_port
== 0) {
775 repmsg
->u
.link_addr
.ports
[i
].dpcd_revision
= (raw
->msg
[idx
]);
777 if (idx
> raw
->curlen
)
779 memcpy(repmsg
->u
.link_addr
.ports
[i
].peer_guid
, &raw
->msg
[idx
], 16);
781 if (idx
> raw
->curlen
)
783 repmsg
->u
.link_addr
.ports
[i
].num_sdp_streams
= (raw
->msg
[idx
] >> 4) & 0xf;
784 repmsg
->u
.link_addr
.ports
[i
].num_sdp_stream_sinks
= (raw
->msg
[idx
] & 0xf);
788 if (idx
> raw
->curlen
)
794 DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx
, raw
->curlen
);
798 static bool drm_dp_sideband_parse_remote_dpcd_read(struct drm_dp_sideband_msg_rx
*raw
,
799 struct drm_dp_sideband_msg_reply_body
*repmsg
)
802 repmsg
->u
.remote_dpcd_read_ack
.port_number
= raw
->msg
[idx
] & 0xf;
804 if (idx
> raw
->curlen
)
806 repmsg
->u
.remote_dpcd_read_ack
.num_bytes
= raw
->msg
[idx
];
808 if (idx
> raw
->curlen
)
811 memcpy(repmsg
->u
.remote_dpcd_read_ack
.bytes
, &raw
->msg
[idx
], repmsg
->u
.remote_dpcd_read_ack
.num_bytes
);
814 DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx
, raw
->curlen
);
818 static bool drm_dp_sideband_parse_remote_dpcd_write(struct drm_dp_sideband_msg_rx
*raw
,
819 struct drm_dp_sideband_msg_reply_body
*repmsg
)
822 repmsg
->u
.remote_dpcd_write_ack
.port_number
= raw
->msg
[idx
] & 0xf;
824 if (idx
> raw
->curlen
)
828 DRM_DEBUG_KMS("parse length fail %d %d\n", idx
, raw
->curlen
);
832 static bool drm_dp_sideband_parse_remote_i2c_read_ack(struct drm_dp_sideband_msg_rx
*raw
,
833 struct drm_dp_sideband_msg_reply_body
*repmsg
)
837 repmsg
->u
.remote_i2c_read_ack
.port_number
= (raw
->msg
[idx
] & 0xf);
839 if (idx
> raw
->curlen
)
841 repmsg
->u
.remote_i2c_read_ack
.num_bytes
= raw
->msg
[idx
];
844 memcpy(repmsg
->u
.remote_i2c_read_ack
.bytes
, &raw
->msg
[idx
], repmsg
->u
.remote_i2c_read_ack
.num_bytes
);
847 DRM_DEBUG_KMS("remote i2c reply parse length fail %d %d\n", idx
, raw
->curlen
);
851 static bool drm_dp_sideband_parse_enum_path_resources_ack(struct drm_dp_sideband_msg_rx
*raw
,
852 struct drm_dp_sideband_msg_reply_body
*repmsg
)
855 repmsg
->u
.path_resources
.port_number
= (raw
->msg
[idx
] >> 4) & 0xf;
856 repmsg
->u
.path_resources
.fec_capable
= raw
->msg
[idx
] & 0x1;
858 if (idx
> raw
->curlen
)
860 repmsg
->u
.path_resources
.full_payload_bw_number
= (raw
->msg
[idx
] << 8) | (raw
->msg
[idx
+1]);
862 if (idx
> raw
->curlen
)
864 repmsg
->u
.path_resources
.avail_payload_bw_number
= (raw
->msg
[idx
] << 8) | (raw
->msg
[idx
+1]);
866 if (idx
> raw
->curlen
)
870 DRM_DEBUG_KMS("enum resource parse length fail %d %d\n", idx
, raw
->curlen
);
874 static bool drm_dp_sideband_parse_allocate_payload_ack(struct drm_dp_sideband_msg_rx
*raw
,
875 struct drm_dp_sideband_msg_reply_body
*repmsg
)
878 repmsg
->u
.allocate_payload
.port_number
= (raw
->msg
[idx
] >> 4) & 0xf;
880 if (idx
> raw
->curlen
)
882 repmsg
->u
.allocate_payload
.vcpi
= raw
->msg
[idx
];
884 if (idx
> raw
->curlen
)
886 repmsg
->u
.allocate_payload
.allocated_pbn
= (raw
->msg
[idx
] << 8) | (raw
->msg
[idx
+1]);
888 if (idx
> raw
->curlen
)
892 DRM_DEBUG_KMS("allocate payload parse length fail %d %d\n", idx
, raw
->curlen
);
896 static bool drm_dp_sideband_parse_query_payload_ack(struct drm_dp_sideband_msg_rx
*raw
,
897 struct drm_dp_sideband_msg_reply_body
*repmsg
)
900 repmsg
->u
.query_payload
.port_number
= (raw
->msg
[idx
] >> 4) & 0xf;
902 if (idx
> raw
->curlen
)
904 repmsg
->u
.query_payload
.allocated_pbn
= (raw
->msg
[idx
] << 8) | (raw
->msg
[idx
+ 1]);
906 if (idx
> raw
->curlen
)
910 DRM_DEBUG_KMS("query payload parse length fail %d %d\n", idx
, raw
->curlen
);
914 static bool drm_dp_sideband_parse_power_updown_phy_ack(struct drm_dp_sideband_msg_rx
*raw
,
915 struct drm_dp_sideband_msg_reply_body
*repmsg
)
919 repmsg
->u
.port_number
.port_number
= (raw
->msg
[idx
] >> 4) & 0xf;
921 if (idx
> raw
->curlen
) {
922 DRM_DEBUG_KMS("power up/down phy parse length fail %d %d\n",
929 static bool drm_dp_sideband_parse_reply(struct drm_dp_sideband_msg_rx
*raw
,
930 struct drm_dp_sideband_msg_reply_body
*msg
)
932 memset(msg
, 0, sizeof(*msg
));
933 msg
->reply_type
= (raw
->msg
[0] & 0x80) >> 7;
934 msg
->req_type
= (raw
->msg
[0] & 0x7f);
936 if (msg
->reply_type
== DP_SIDEBAND_REPLY_NAK
) {
937 memcpy(msg
->u
.nak
.guid
, &raw
->msg
[1], 16);
938 msg
->u
.nak
.reason
= raw
->msg
[17];
939 msg
->u
.nak
.nak_data
= raw
->msg
[18];
943 switch (msg
->req_type
) {
944 case DP_LINK_ADDRESS
:
945 return drm_dp_sideband_parse_link_address(raw
, msg
);
946 case DP_QUERY_PAYLOAD
:
947 return drm_dp_sideband_parse_query_payload_ack(raw
, msg
);
948 case DP_REMOTE_DPCD_READ
:
949 return drm_dp_sideband_parse_remote_dpcd_read(raw
, msg
);
950 case DP_REMOTE_DPCD_WRITE
:
951 return drm_dp_sideband_parse_remote_dpcd_write(raw
, msg
);
952 case DP_REMOTE_I2C_READ
:
953 return drm_dp_sideband_parse_remote_i2c_read_ack(raw
, msg
);
954 case DP_ENUM_PATH_RESOURCES
:
955 return drm_dp_sideband_parse_enum_path_resources_ack(raw
, msg
);
956 case DP_ALLOCATE_PAYLOAD
:
957 return drm_dp_sideband_parse_allocate_payload_ack(raw
, msg
);
958 case DP_POWER_DOWN_PHY
:
959 case DP_POWER_UP_PHY
:
960 return drm_dp_sideband_parse_power_updown_phy_ack(raw
, msg
);
961 case DP_CLEAR_PAYLOAD_ID_TABLE
:
962 return true; /* since there's nothing to parse */
964 DRM_ERROR("Got unknown reply 0x%02x (%s)\n", msg
->req_type
,
965 drm_dp_mst_req_type_str(msg
->req_type
));
970 static bool drm_dp_sideband_parse_connection_status_notify(struct drm_dp_sideband_msg_rx
*raw
,
971 struct drm_dp_sideband_msg_req_body
*msg
)
975 msg
->u
.conn_stat
.port_number
= (raw
->msg
[idx
] & 0xf0) >> 4;
977 if (idx
> raw
->curlen
)
980 memcpy(msg
->u
.conn_stat
.guid
, &raw
->msg
[idx
], 16);
982 if (idx
> raw
->curlen
)
985 msg
->u
.conn_stat
.legacy_device_plug_status
= (raw
->msg
[idx
] >> 6) & 0x1;
986 msg
->u
.conn_stat
.displayport_device_plug_status
= (raw
->msg
[idx
] >> 5) & 0x1;
987 msg
->u
.conn_stat
.message_capability_status
= (raw
->msg
[idx
] >> 4) & 0x1;
988 msg
->u
.conn_stat
.input_port
= (raw
->msg
[idx
] >> 3) & 0x1;
989 msg
->u
.conn_stat
.peer_device_type
= (raw
->msg
[idx
] & 0x7);
993 DRM_DEBUG_KMS("connection status reply parse length fail %d %d\n", idx
, raw
->curlen
);
997 static bool drm_dp_sideband_parse_resource_status_notify(struct drm_dp_sideband_msg_rx
*raw
,
998 struct drm_dp_sideband_msg_req_body
*msg
)
1002 msg
->u
.resource_stat
.port_number
= (raw
->msg
[idx
] & 0xf0) >> 4;
1004 if (idx
> raw
->curlen
)
1007 memcpy(msg
->u
.resource_stat
.guid
, &raw
->msg
[idx
], 16);
1009 if (idx
> raw
->curlen
)
1012 msg
->u
.resource_stat
.available_pbn
= (raw
->msg
[idx
] << 8) | (raw
->msg
[idx
+ 1]);
1016 DRM_DEBUG_KMS("resource status reply parse length fail %d %d\n", idx
, raw
->curlen
);
1020 static bool drm_dp_sideband_parse_req(struct drm_dp_sideband_msg_rx
*raw
,
1021 struct drm_dp_sideband_msg_req_body
*msg
)
1023 memset(msg
, 0, sizeof(*msg
));
1024 msg
->req_type
= (raw
->msg
[0] & 0x7f);
1026 switch (msg
->req_type
) {
1027 case DP_CONNECTION_STATUS_NOTIFY
:
1028 return drm_dp_sideband_parse_connection_status_notify(raw
, msg
);
1029 case DP_RESOURCE_STATUS_NOTIFY
:
1030 return drm_dp_sideband_parse_resource_status_notify(raw
, msg
);
1032 DRM_ERROR("Got unknown request 0x%02x (%s)\n", msg
->req_type
,
1033 drm_dp_mst_req_type_str(msg
->req_type
));
1038 static int build_dpcd_write(struct drm_dp_sideband_msg_tx
*msg
, u8 port_num
, u32 offset
, u8 num_bytes
, u8
*bytes
)
1040 struct drm_dp_sideband_msg_req_body req
;
1042 req
.req_type
= DP_REMOTE_DPCD_WRITE
;
1043 req
.u
.dpcd_write
.port_number
= port_num
;
1044 req
.u
.dpcd_write
.dpcd_address
= offset
;
1045 req
.u
.dpcd_write
.num_bytes
= num_bytes
;
1046 req
.u
.dpcd_write
.bytes
= bytes
;
1047 drm_dp_encode_sideband_req(&req
, msg
);
1052 static int build_link_address(struct drm_dp_sideband_msg_tx
*msg
)
1054 struct drm_dp_sideband_msg_req_body req
;
1056 req
.req_type
= DP_LINK_ADDRESS
;
1057 drm_dp_encode_sideband_req(&req
, msg
);
1061 static int build_clear_payload_id_table(struct drm_dp_sideband_msg_tx
*msg
)
1063 struct drm_dp_sideband_msg_req_body req
;
1065 req
.req_type
= DP_CLEAR_PAYLOAD_ID_TABLE
;
1066 drm_dp_encode_sideband_req(&req
, msg
);
1070 static int build_enum_path_resources(struct drm_dp_sideband_msg_tx
*msg
, int port_num
)
1072 struct drm_dp_sideband_msg_req_body req
;
1074 req
.req_type
= DP_ENUM_PATH_RESOURCES
;
1075 req
.u
.port_num
.port_number
= port_num
;
1076 drm_dp_encode_sideband_req(&req
, msg
);
1077 msg
->path_msg
= true;
1081 static int build_allocate_payload(struct drm_dp_sideband_msg_tx
*msg
, int port_num
,
1082 u8 vcpi
, uint16_t pbn
,
1083 u8 number_sdp_streams
,
1084 u8
*sdp_stream_sink
)
1086 struct drm_dp_sideband_msg_req_body req
;
1087 memset(&req
, 0, sizeof(req
));
1088 req
.req_type
= DP_ALLOCATE_PAYLOAD
;
1089 req
.u
.allocate_payload
.port_number
= port_num
;
1090 req
.u
.allocate_payload
.vcpi
= vcpi
;
1091 req
.u
.allocate_payload
.pbn
= pbn
;
1092 req
.u
.allocate_payload
.number_sdp_streams
= number_sdp_streams
;
1093 memcpy(req
.u
.allocate_payload
.sdp_stream_sink
, sdp_stream_sink
,
1094 number_sdp_streams
);
1095 drm_dp_encode_sideband_req(&req
, msg
);
1096 msg
->path_msg
= true;
1100 static int build_power_updown_phy(struct drm_dp_sideband_msg_tx
*msg
,
1101 int port_num
, bool power_up
)
1103 struct drm_dp_sideband_msg_req_body req
;
1106 req
.req_type
= DP_POWER_UP_PHY
;
1108 req
.req_type
= DP_POWER_DOWN_PHY
;
1110 req
.u
.port_num
.port_number
= port_num
;
1111 drm_dp_encode_sideband_req(&req
, msg
);
1112 msg
->path_msg
= true;
1116 static int drm_dp_mst_assign_payload_id(struct drm_dp_mst_topology_mgr
*mgr
,
1117 struct drm_dp_vcpi
*vcpi
)
1121 mutex_lock(&mgr
->payload_lock
);
1122 ret
= find_first_zero_bit(&mgr
->payload_mask
, mgr
->max_payloads
+ 1);
1123 if (ret
> mgr
->max_payloads
) {
1125 DRM_DEBUG_KMS("out of payload ids %d\n", ret
);
1129 vcpi_ret
= find_first_zero_bit(&mgr
->vcpi_mask
, mgr
->max_payloads
+ 1);
1130 if (vcpi_ret
> mgr
->max_payloads
) {
1132 DRM_DEBUG_KMS("out of vcpi ids %d\n", ret
);
1136 set_bit(ret
, &mgr
->payload_mask
);
1137 set_bit(vcpi_ret
, &mgr
->vcpi_mask
);
1138 vcpi
->vcpi
= vcpi_ret
+ 1;
1139 mgr
->proposed_vcpis
[ret
- 1] = vcpi
;
1141 mutex_unlock(&mgr
->payload_lock
);
1145 static void drm_dp_mst_put_payload_id(struct drm_dp_mst_topology_mgr
*mgr
,
1152 mutex_lock(&mgr
->payload_lock
);
1153 DRM_DEBUG_KMS("putting payload %d\n", vcpi
);
1154 clear_bit(vcpi
- 1, &mgr
->vcpi_mask
);
1156 for (i
= 0; i
< mgr
->max_payloads
; i
++) {
1157 if (mgr
->proposed_vcpis
[i
] &&
1158 mgr
->proposed_vcpis
[i
]->vcpi
== vcpi
) {
1159 mgr
->proposed_vcpis
[i
] = NULL
;
1160 clear_bit(i
+ 1, &mgr
->payload_mask
);
1163 mutex_unlock(&mgr
->payload_lock
);
1166 static bool check_txmsg_state(struct drm_dp_mst_topology_mgr
*mgr
,
1167 struct drm_dp_sideband_msg_tx
*txmsg
)
1172 * All updates to txmsg->state are protected by mgr->qlock, and the two
1173 * cases we check here are terminal states. For those the barriers
1174 * provided by the wake_up/wait_event pair are enough.
1176 state
= READ_ONCE(txmsg
->state
);
1177 return (state
== DRM_DP_SIDEBAND_TX_RX
||
1178 state
== DRM_DP_SIDEBAND_TX_TIMEOUT
);
1181 static int drm_dp_mst_wait_tx_reply(struct drm_dp_mst_branch
*mstb
,
1182 struct drm_dp_sideband_msg_tx
*txmsg
)
1184 struct drm_dp_mst_topology_mgr
*mgr
= mstb
->mgr
;
1187 ret
= wait_event_timeout(mgr
->tx_waitq
,
1188 check_txmsg_state(mgr
, txmsg
),
1190 mutex_lock(&mstb
->mgr
->qlock
);
1192 if (txmsg
->state
== DRM_DP_SIDEBAND_TX_TIMEOUT
) {
1197 DRM_DEBUG_KMS("timedout msg send %p %d %d\n", txmsg
, txmsg
->state
, txmsg
->seqno
);
1199 /* dump some state */
1203 if (txmsg
->state
== DRM_DP_SIDEBAND_TX_QUEUED
||
1204 txmsg
->state
== DRM_DP_SIDEBAND_TX_START_SEND
) {
1205 list_del(&txmsg
->next
);
1208 if (txmsg
->state
== DRM_DP_SIDEBAND_TX_START_SEND
||
1209 txmsg
->state
== DRM_DP_SIDEBAND_TX_SENT
) {
1210 mstb
->tx_slots
[txmsg
->seqno
] = NULL
;
1212 mgr
->is_waiting_for_dwn_reply
= false;
1216 if (unlikely(ret
== -EIO
) && drm_debug_enabled(DRM_UT_DP
)) {
1217 struct drm_printer p
= drm_debug_printer(DBG_PREFIX
);
1219 drm_dp_mst_dump_sideband_msg_tx(&p
, txmsg
);
1221 mutex_unlock(&mgr
->qlock
);
1223 drm_dp_mst_kick_tx(mgr
);
1227 static struct drm_dp_mst_branch
*drm_dp_add_mst_branch_device(u8 lct
, u8
*rad
)
1229 struct drm_dp_mst_branch
*mstb
;
1231 mstb
= kzalloc(sizeof(*mstb
), GFP_KERNEL
);
1237 memcpy(mstb
->rad
, rad
, lct
/ 2);
1238 INIT_LIST_HEAD(&mstb
->ports
);
1239 kref_init(&mstb
->topology_kref
);
1240 kref_init(&mstb
->malloc_kref
);
1244 static void drm_dp_free_mst_branch_device(struct kref
*kref
)
1246 struct drm_dp_mst_branch
*mstb
=
1247 container_of(kref
, struct drm_dp_mst_branch
, malloc_kref
);
1249 if (mstb
->port_parent
)
1250 drm_dp_mst_put_port_malloc(mstb
->port_parent
);
1256 * DOC: Branch device and port refcounting
1258 * Topology refcount overview
1259 * ~~~~~~~~~~~~~~~~~~~~~~~~~~
1261 * The refcounting schemes for &struct drm_dp_mst_branch and &struct
1262 * drm_dp_mst_port are somewhat unusual. Both ports and branch devices have
1263 * two different kinds of refcounts: topology refcounts, and malloc refcounts.
1265 * Topology refcounts are not exposed to drivers, and are handled internally
1266 * by the DP MST helpers. The helpers use them in order to prevent the
1267 * in-memory topology state from being changed in the middle of critical
1268 * operations like changing the internal state of payload allocations. This
1269 * means each branch and port will be considered to be connected to the rest
1270 * of the topology until its topology refcount reaches zero. Additionally,
1271 * for ports this means that their associated &struct drm_connector will stay
1272 * registered with userspace until the port's refcount reaches 0.
1274 * Malloc refcount overview
1275 * ~~~~~~~~~~~~~~~~~~~~~~~~
1277 * Malloc references are used to keep a &struct drm_dp_mst_port or &struct
1278 * drm_dp_mst_branch allocated even after all of its topology references have
1279 * been dropped, so that the driver or MST helpers can safely access each
1280 * branch's last known state before it was disconnected from the topology.
1281 * When the malloc refcount of a port or branch reaches 0, the memory
1282 * allocation containing the &struct drm_dp_mst_branch or &struct
1283 * drm_dp_mst_port respectively will be freed.
1285 * For &struct drm_dp_mst_branch, malloc refcounts are not currently exposed
1286 * to drivers. As of writing this documentation, there are no drivers that
1287 * have a usecase for accessing &struct drm_dp_mst_branch outside of the MST
1288 * helpers. Exposing this API to drivers in a race-free manner would take more
1289 * tweaking of the refcounting scheme, however patches are welcome provided
1290 * there is a legitimate driver usecase for this.
1292 * Refcount relationships in a topology
1293 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1295 * Let's take a look at why the relationship between topology and malloc
1296 * refcounts is designed the way it is.
1298 * .. kernel-figure:: dp-mst/topology-figure-1.dot
1300 * An example of topology and malloc refs in a DP MST topology with two
1301 * active payloads. Topology refcount increments are indicated by solid
1302 * lines, and malloc refcount increments are indicated by dashed lines.
1303 * Each starts from the branch which incremented the refcount, and ends at
1304 * the branch to which the refcount belongs to, i.e. the arrow points the
1305 * same way as the C pointers used to reference a structure.
1307 * As you can see in the above figure, every branch increments the topology
1308 * refcount of its children, and increments the malloc refcount of its
1309 * parent. Additionally, every payload increments the malloc refcount of its
1310 * assigned port by 1.
1312 * So, what would happen if MSTB #3 from the above figure was unplugged from
1313 * the system, but the driver hadn't yet removed payload #2 from port #3? The
1314 * topology would start to look like the figure below.
1316 * .. kernel-figure:: dp-mst/topology-figure-2.dot
1318 * Ports and branch devices which have been released from memory are
1319 * colored grey, and references which have been removed are colored red.
1321 * Whenever a port or branch device's topology refcount reaches zero, it will
1322 * decrement the topology refcounts of all its children, the malloc refcount
1323 * of its parent, and finally its own malloc refcount. For MSTB #4 and port
1324 * #4, this means they both have been disconnected from the topology and freed
1325 * from memory. But, because payload #2 is still holding a reference to port
1326 * #3, port #3 is removed from the topology but its &struct drm_dp_mst_port
1327 * is still accessible from memory. This also means port #3 has not yet
1328 * decremented the malloc refcount of MSTB #3, so its &struct
1329 * drm_dp_mst_branch will also stay allocated in memory until port #3's
1330 * malloc refcount reaches 0.
1332 * This relationship is necessary because in order to release payload #2, we
1333 * need to be able to figure out the last relative of port #3 that's still
1334 * connected to the topology. In this case, we would travel up the topology as
1337 * .. kernel-figure:: dp-mst/topology-figure-3.dot
1339 * And finally, remove payload #2 by communicating with port #2 through
1340 * sideband transactions.
1344 * drm_dp_mst_get_mstb_malloc() - Increment the malloc refcount of a branch
1346 * @mstb: The &struct drm_dp_mst_branch to increment the malloc refcount of
1348 * Increments &drm_dp_mst_branch.malloc_kref. When
1349 * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1350 * will be released and @mstb may no longer be used.
1352 * See also: drm_dp_mst_put_mstb_malloc()
1355 drm_dp_mst_get_mstb_malloc(struct drm_dp_mst_branch
*mstb
)
1357 kref_get(&mstb
->malloc_kref
);
1358 DRM_DEBUG("mstb %p (%d)\n", mstb
, kref_read(&mstb
->malloc_kref
));
1362 * drm_dp_mst_put_mstb_malloc() - Decrement the malloc refcount of a branch
1364 * @mstb: The &struct drm_dp_mst_branch to decrement the malloc refcount of
1366 * Decrements &drm_dp_mst_branch.malloc_kref. When
1367 * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1368 * will be released and @mstb may no longer be used.
1370 * See also: drm_dp_mst_get_mstb_malloc()
1373 drm_dp_mst_put_mstb_malloc(struct drm_dp_mst_branch
*mstb
)
1375 DRM_DEBUG("mstb %p (%d)\n", mstb
, kref_read(&mstb
->malloc_kref
) - 1);
1376 kref_put(&mstb
->malloc_kref
, drm_dp_free_mst_branch_device
);
1379 static void drm_dp_free_mst_port(struct kref
*kref
)
1381 struct drm_dp_mst_port
*port
=
1382 container_of(kref
, struct drm_dp_mst_port
, malloc_kref
);
1384 drm_dp_mst_put_mstb_malloc(port
->parent
);
1389 * drm_dp_mst_get_port_malloc() - Increment the malloc refcount of an MST port
1390 * @port: The &struct drm_dp_mst_port to increment the malloc refcount of
1392 * Increments &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1393 * reaches 0, the memory allocation for @port will be released and @port may
1394 * no longer be used.
1396 * Because @port could potentially be freed at any time by the DP MST helpers
1397 * if &drm_dp_mst_port.malloc_kref reaches 0, including during a call to this
1398 * function, drivers that which to make use of &struct drm_dp_mst_port should
1399 * ensure that they grab at least one main malloc reference to their MST ports
1400 * in &drm_dp_mst_topology_cbs.add_connector. This callback is called before
1401 * there is any chance for &drm_dp_mst_port.malloc_kref to reach 0.
1403 * See also: drm_dp_mst_put_port_malloc()
1406 drm_dp_mst_get_port_malloc(struct drm_dp_mst_port
*port
)
1408 kref_get(&port
->malloc_kref
);
1409 DRM_DEBUG("port %p (%d)\n", port
, kref_read(&port
->malloc_kref
));
1411 EXPORT_SYMBOL(drm_dp_mst_get_port_malloc
);
1414 * drm_dp_mst_put_port_malloc() - Decrement the malloc refcount of an MST port
1415 * @port: The &struct drm_dp_mst_port to decrement the malloc refcount of
1417 * Decrements &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1418 * reaches 0, the memory allocation for @port will be released and @port may
1419 * no longer be used.
1421 * See also: drm_dp_mst_get_port_malloc()
1424 drm_dp_mst_put_port_malloc(struct drm_dp_mst_port
*port
)
1426 DRM_DEBUG("port %p (%d)\n", port
, kref_read(&port
->malloc_kref
) - 1);
1427 kref_put(&port
->malloc_kref
, drm_dp_free_mst_port
);
1429 EXPORT_SYMBOL(drm_dp_mst_put_port_malloc
);
1431 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
1433 #define STACK_DEPTH 8
1435 static noinline
void
1436 __topology_ref_save(struct drm_dp_mst_topology_mgr
*mgr
,
1437 struct drm_dp_mst_topology_ref_history
*history
,
1438 enum drm_dp_mst_topology_ref_type type
)
1440 struct drm_dp_mst_topology_ref_entry
*entry
= NULL
;
1441 depot_stack_handle_t backtrace
;
1442 ulong stack_entries
[STACK_DEPTH
];
1446 n
= stack_trace_save(stack_entries
, ARRAY_SIZE(stack_entries
), 1);
1447 backtrace
= stack_depot_save(stack_entries
, n
, GFP_KERNEL
);
1451 /* Try to find an existing entry for this backtrace */
1452 for (i
= 0; i
< history
->len
; i
++) {
1453 if (history
->entries
[i
].backtrace
== backtrace
) {
1454 entry
= &history
->entries
[i
];
1459 /* Otherwise add one */
1461 struct drm_dp_mst_topology_ref_entry
*new;
1462 int new_len
= history
->len
+ 1;
1464 new = krealloc(history
->entries
, sizeof(*new) * new_len
,
1469 entry
= &new[history
->len
];
1470 history
->len
= new_len
;
1471 history
->entries
= new;
1473 entry
->backtrace
= backtrace
;
1478 entry
->ts_nsec
= ktime_get_ns();
1482 topology_ref_history_cmp(const void *a
, const void *b
)
1484 const struct drm_dp_mst_topology_ref_entry
*entry_a
= a
, *entry_b
= b
;
1486 if (entry_a
->ts_nsec
> entry_b
->ts_nsec
)
1488 else if (entry_a
->ts_nsec
< entry_b
->ts_nsec
)
1494 static inline const char *
1495 topology_ref_type_to_str(enum drm_dp_mst_topology_ref_type type
)
1497 if (type
== DRM_DP_MST_TOPOLOGY_REF_GET
)
1504 __dump_topology_ref_history(struct drm_dp_mst_topology_ref_history
*history
,
1505 void *ptr
, const char *type_str
)
1507 struct drm_printer p
= drm_debug_printer(DBG_PREFIX
);
1508 char *buf
= kzalloc(PAGE_SIZE
, GFP_KERNEL
);
1517 /* First, sort the list so that it goes from oldest to newest
1520 sort(history
->entries
, history
->len
, sizeof(*history
->entries
),
1521 topology_ref_history_cmp
, NULL
);
1523 drm_printf(&p
, "%s (%p) topology count reached 0, dumping history:\n",
1526 for (i
= 0; i
< history
->len
; i
++) {
1527 const struct drm_dp_mst_topology_ref_entry
*entry
=
1528 &history
->entries
[i
];
1531 u64 ts_nsec
= entry
->ts_nsec
;
1532 u32 rem_nsec
= do_div(ts_nsec
, 1000000000);
1534 nr_entries
= stack_depot_fetch(entry
->backtrace
, &entries
);
1535 stack_trace_snprint(buf
, PAGE_SIZE
, entries
, nr_entries
, 4);
1537 drm_printf(&p
, " %d %ss (last at %5llu.%06u):\n%s",
1539 topology_ref_type_to_str(entry
->type
),
1540 ts_nsec
, rem_nsec
/ 1000, buf
);
1543 /* Now free the history, since this is the only time we expose it */
1544 kfree(history
->entries
);
1549 static __always_inline
void
1550 drm_dp_mst_dump_mstb_topology_history(struct drm_dp_mst_branch
*mstb
)
1552 __dump_topology_ref_history(&mstb
->topology_ref_history
, mstb
,
1556 static __always_inline
void
1557 drm_dp_mst_dump_port_topology_history(struct drm_dp_mst_port
*port
)
1559 __dump_topology_ref_history(&port
->topology_ref_history
, port
,
1563 static __always_inline
void
1564 save_mstb_topology_ref(struct drm_dp_mst_branch
*mstb
,
1565 enum drm_dp_mst_topology_ref_type type
)
1567 __topology_ref_save(mstb
->mgr
, &mstb
->topology_ref_history
, type
);
1570 static __always_inline
void
1571 save_port_topology_ref(struct drm_dp_mst_port
*port
,
1572 enum drm_dp_mst_topology_ref_type type
)
1574 __topology_ref_save(port
->mgr
, &port
->topology_ref_history
, type
);
1578 topology_ref_history_lock(struct drm_dp_mst_topology_mgr
*mgr
)
1580 mutex_lock(&mgr
->topology_ref_history_lock
);
1584 topology_ref_history_unlock(struct drm_dp_mst_topology_mgr
*mgr
)
1586 mutex_unlock(&mgr
->topology_ref_history_lock
);
1590 topology_ref_history_lock(struct drm_dp_mst_topology_mgr
*mgr
) {}
1592 topology_ref_history_unlock(struct drm_dp_mst_topology_mgr
*mgr
) {}
1594 drm_dp_mst_dump_mstb_topology_history(struct drm_dp_mst_branch
*mstb
) {}
1596 drm_dp_mst_dump_port_topology_history(struct drm_dp_mst_port
*port
) {}
1597 #define save_mstb_topology_ref(mstb, type)
1598 #define save_port_topology_ref(port, type)
1601 static void drm_dp_destroy_mst_branch_device(struct kref
*kref
)
1603 struct drm_dp_mst_branch
*mstb
=
1604 container_of(kref
, struct drm_dp_mst_branch
, topology_kref
);
1605 struct drm_dp_mst_topology_mgr
*mgr
= mstb
->mgr
;
1607 drm_dp_mst_dump_mstb_topology_history(mstb
);
1609 INIT_LIST_HEAD(&mstb
->destroy_next
);
1612 * This can get called under mgr->mutex, so we need to perform the
1613 * actual destruction of the mstb in another worker
1615 mutex_lock(&mgr
->delayed_destroy_lock
);
1616 list_add(&mstb
->destroy_next
, &mgr
->destroy_branch_device_list
);
1617 mutex_unlock(&mgr
->delayed_destroy_lock
);
1618 schedule_work(&mgr
->delayed_destroy_work
);
1622 * drm_dp_mst_topology_try_get_mstb() - Increment the topology refcount of a
1623 * branch device unless it's zero
1624 * @mstb: &struct drm_dp_mst_branch to increment the topology refcount of
1626 * Attempts to grab a topology reference to @mstb, if it hasn't yet been
1627 * removed from the topology (e.g. &drm_dp_mst_branch.topology_kref has
1628 * reached 0). Holding a topology reference implies that a malloc reference
1629 * will be held to @mstb as long as the user holds the topology reference.
1631 * Care should be taken to ensure that the user has at least one malloc
1632 * reference to @mstb. If you already have a topology reference to @mstb, you
1633 * should use drm_dp_mst_topology_get_mstb() instead.
1636 * drm_dp_mst_topology_get_mstb()
1637 * drm_dp_mst_topology_put_mstb()
1640 * * 1: A topology reference was grabbed successfully
1641 * * 0: @port is no longer in the topology, no reference was grabbed
1643 static int __must_check
1644 drm_dp_mst_topology_try_get_mstb(struct drm_dp_mst_branch
*mstb
)
1648 topology_ref_history_lock(mstb
->mgr
);
1649 ret
= kref_get_unless_zero(&mstb
->topology_kref
);
1651 DRM_DEBUG("mstb %p (%d)\n",
1652 mstb
, kref_read(&mstb
->topology_kref
));
1653 save_mstb_topology_ref(mstb
, DRM_DP_MST_TOPOLOGY_REF_GET
);
1656 topology_ref_history_unlock(mstb
->mgr
);
1662 * drm_dp_mst_topology_get_mstb() - Increment the topology refcount of a
1664 * @mstb: The &struct drm_dp_mst_branch to increment the topology refcount of
1666 * Increments &drm_dp_mst_branch.topology_refcount without checking whether or
1667 * not it's already reached 0. This is only valid to use in scenarios where
1668 * you are already guaranteed to have at least one active topology reference
1669 * to @mstb. Otherwise, drm_dp_mst_topology_try_get_mstb() must be used.
1672 * drm_dp_mst_topology_try_get_mstb()
1673 * drm_dp_mst_topology_put_mstb()
1675 static void drm_dp_mst_topology_get_mstb(struct drm_dp_mst_branch
*mstb
)
1677 topology_ref_history_lock(mstb
->mgr
);
1679 save_mstb_topology_ref(mstb
, DRM_DP_MST_TOPOLOGY_REF_GET
);
1680 WARN_ON(kref_read(&mstb
->topology_kref
) == 0);
1681 kref_get(&mstb
->topology_kref
);
1682 DRM_DEBUG("mstb %p (%d)\n", mstb
, kref_read(&mstb
->topology_kref
));
1684 topology_ref_history_unlock(mstb
->mgr
);
1688 * drm_dp_mst_topology_put_mstb() - release a topology reference to a branch
1690 * @mstb: The &struct drm_dp_mst_branch to release the topology reference from
1692 * Releases a topology reference from @mstb by decrementing
1693 * &drm_dp_mst_branch.topology_kref.
1696 * drm_dp_mst_topology_try_get_mstb()
1697 * drm_dp_mst_topology_get_mstb()
1700 drm_dp_mst_topology_put_mstb(struct drm_dp_mst_branch
*mstb
)
1702 topology_ref_history_lock(mstb
->mgr
);
1704 DRM_DEBUG("mstb %p (%d)\n",
1705 mstb
, kref_read(&mstb
->topology_kref
) - 1);
1706 save_mstb_topology_ref(mstb
, DRM_DP_MST_TOPOLOGY_REF_PUT
);
1708 topology_ref_history_unlock(mstb
->mgr
);
1709 kref_put(&mstb
->topology_kref
, drm_dp_destroy_mst_branch_device
);
1712 static void drm_dp_destroy_port(struct kref
*kref
)
1714 struct drm_dp_mst_port
*port
=
1715 container_of(kref
, struct drm_dp_mst_port
, topology_kref
);
1716 struct drm_dp_mst_topology_mgr
*mgr
= port
->mgr
;
1718 drm_dp_mst_dump_port_topology_history(port
);
1720 /* There's nothing that needs locking to destroy an input port yet */
1722 drm_dp_mst_put_port_malloc(port
);
1726 kfree(port
->cached_edid
);
1729 * we can't destroy the connector here, as we might be holding the
1730 * mode_config.mutex from an EDID retrieval
1732 mutex_lock(&mgr
->delayed_destroy_lock
);
1733 list_add(&port
->next
, &mgr
->destroy_port_list
);
1734 mutex_unlock(&mgr
->delayed_destroy_lock
);
1735 schedule_work(&mgr
->delayed_destroy_work
);
1739 * drm_dp_mst_topology_try_get_port() - Increment the topology refcount of a
1740 * port unless it's zero
1741 * @port: &struct drm_dp_mst_port to increment the topology refcount of
1743 * Attempts to grab a topology reference to @port, if it hasn't yet been
1744 * removed from the topology (e.g. &drm_dp_mst_port.topology_kref has reached
1745 * 0). Holding a topology reference implies that a malloc reference will be
1746 * held to @port as long as the user holds the topology reference.
1748 * Care should be taken to ensure that the user has at least one malloc
1749 * reference to @port. If you already have a topology reference to @port, you
1750 * should use drm_dp_mst_topology_get_port() instead.
1753 * drm_dp_mst_topology_get_port()
1754 * drm_dp_mst_topology_put_port()
1757 * * 1: A topology reference was grabbed successfully
1758 * * 0: @port is no longer in the topology, no reference was grabbed
1760 static int __must_check
1761 drm_dp_mst_topology_try_get_port(struct drm_dp_mst_port
*port
)
1765 topology_ref_history_lock(port
->mgr
);
1766 ret
= kref_get_unless_zero(&port
->topology_kref
);
1768 DRM_DEBUG("port %p (%d)\n",
1769 port
, kref_read(&port
->topology_kref
));
1770 save_port_topology_ref(port
, DRM_DP_MST_TOPOLOGY_REF_GET
);
1773 topology_ref_history_unlock(port
->mgr
);
1778 * drm_dp_mst_topology_get_port() - Increment the topology refcount of a port
1779 * @port: The &struct drm_dp_mst_port to increment the topology refcount of
1781 * Increments &drm_dp_mst_port.topology_refcount without checking whether or
1782 * not it's already reached 0. This is only valid to use in scenarios where
1783 * you are already guaranteed to have at least one active topology reference
1784 * to @port. Otherwise, drm_dp_mst_topology_try_get_port() must be used.
1787 * drm_dp_mst_topology_try_get_port()
1788 * drm_dp_mst_topology_put_port()
1790 static void drm_dp_mst_topology_get_port(struct drm_dp_mst_port
*port
)
1792 topology_ref_history_lock(port
->mgr
);
1794 WARN_ON(kref_read(&port
->topology_kref
) == 0);
1795 kref_get(&port
->topology_kref
);
1796 DRM_DEBUG("port %p (%d)\n", port
, kref_read(&port
->topology_kref
));
1797 save_port_topology_ref(port
, DRM_DP_MST_TOPOLOGY_REF_GET
);
1799 topology_ref_history_unlock(port
->mgr
);
1803 * drm_dp_mst_topology_put_port() - release a topology reference to a port
1804 * @port: The &struct drm_dp_mst_port to release the topology reference from
1806 * Releases a topology reference from @port by decrementing
1807 * &drm_dp_mst_port.topology_kref.
1810 * drm_dp_mst_topology_try_get_port()
1811 * drm_dp_mst_topology_get_port()
1813 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port
*port
)
1815 topology_ref_history_lock(port
->mgr
);
1817 DRM_DEBUG("port %p (%d)\n",
1818 port
, kref_read(&port
->topology_kref
) - 1);
1819 save_port_topology_ref(port
, DRM_DP_MST_TOPOLOGY_REF_PUT
);
1821 topology_ref_history_unlock(port
->mgr
);
1822 kref_put(&port
->topology_kref
, drm_dp_destroy_port
);
1825 static struct drm_dp_mst_branch
*
1826 drm_dp_mst_topology_get_mstb_validated_locked(struct drm_dp_mst_branch
*mstb
,
1827 struct drm_dp_mst_branch
*to_find
)
1829 struct drm_dp_mst_port
*port
;
1830 struct drm_dp_mst_branch
*rmstb
;
1832 if (to_find
== mstb
)
1835 list_for_each_entry(port
, &mstb
->ports
, next
) {
1837 rmstb
= drm_dp_mst_topology_get_mstb_validated_locked(
1838 port
->mstb
, to_find
);
1846 static struct drm_dp_mst_branch
*
1847 drm_dp_mst_topology_get_mstb_validated(struct drm_dp_mst_topology_mgr
*mgr
,
1848 struct drm_dp_mst_branch
*mstb
)
1850 struct drm_dp_mst_branch
*rmstb
= NULL
;
1852 mutex_lock(&mgr
->lock
);
1853 if (mgr
->mst_primary
) {
1854 rmstb
= drm_dp_mst_topology_get_mstb_validated_locked(
1855 mgr
->mst_primary
, mstb
);
1857 if (rmstb
&& !drm_dp_mst_topology_try_get_mstb(rmstb
))
1860 mutex_unlock(&mgr
->lock
);
1864 static struct drm_dp_mst_port
*
1865 drm_dp_mst_topology_get_port_validated_locked(struct drm_dp_mst_branch
*mstb
,
1866 struct drm_dp_mst_port
*to_find
)
1868 struct drm_dp_mst_port
*port
, *mport
;
1870 list_for_each_entry(port
, &mstb
->ports
, next
) {
1871 if (port
== to_find
)
1875 mport
= drm_dp_mst_topology_get_port_validated_locked(
1876 port
->mstb
, to_find
);
1884 static struct drm_dp_mst_port
*
1885 drm_dp_mst_topology_get_port_validated(struct drm_dp_mst_topology_mgr
*mgr
,
1886 struct drm_dp_mst_port
*port
)
1888 struct drm_dp_mst_port
*rport
= NULL
;
1890 mutex_lock(&mgr
->lock
);
1891 if (mgr
->mst_primary
) {
1892 rport
= drm_dp_mst_topology_get_port_validated_locked(
1893 mgr
->mst_primary
, port
);
1895 if (rport
&& !drm_dp_mst_topology_try_get_port(rport
))
1898 mutex_unlock(&mgr
->lock
);
1902 static struct drm_dp_mst_port
*drm_dp_get_port(struct drm_dp_mst_branch
*mstb
, u8 port_num
)
1904 struct drm_dp_mst_port
*port
;
1907 list_for_each_entry(port
, &mstb
->ports
, next
) {
1908 if (port
->port_num
== port_num
) {
1909 ret
= drm_dp_mst_topology_try_get_port(port
);
1910 return ret
? port
: NULL
;
1918 * calculate a new RAD for this MST branch device
1919 * if parent has an LCT of 2 then it has 1 nibble of RAD,
1920 * if parent has an LCT of 3 then it has 2 nibbles of RAD,
1922 static u8
drm_dp_calculate_rad(struct drm_dp_mst_port
*port
,
1925 int parent_lct
= port
->parent
->lct
;
1927 int idx
= (parent_lct
- 1) / 2;
1928 if (parent_lct
> 1) {
1929 memcpy(rad
, port
->parent
->rad
, idx
+ 1);
1930 shift
= (parent_lct
% 2) ? 4 : 0;
1934 rad
[idx
] |= port
->port_num
<< shift
;
1935 return parent_lct
+ 1;
1938 static bool drm_dp_mst_is_dp_mst_end_device(u8 pdt
, bool mcs
)
1941 case DP_PEER_DEVICE_DP_LEGACY_CONV
:
1942 case DP_PEER_DEVICE_SST_SINK
:
1944 case DP_PEER_DEVICE_MST_BRANCHING
:
1945 /* For sst branch device */
1955 drm_dp_port_set_pdt(struct drm_dp_mst_port
*port
, u8 new_pdt
,
1958 struct drm_dp_mst_topology_mgr
*mgr
= port
->mgr
;
1959 struct drm_dp_mst_branch
*mstb
;
1963 if (port
->pdt
== new_pdt
&& port
->mcs
== new_mcs
)
1966 /* Teardown the old pdt, if there is one */
1967 if (port
->pdt
!= DP_PEER_DEVICE_NONE
) {
1968 if (drm_dp_mst_is_dp_mst_end_device(port
->pdt
, port
->mcs
)) {
1970 * If the new PDT would also have an i2c bus,
1971 * don't bother with reregistering it
1973 if (new_pdt
!= DP_PEER_DEVICE_NONE
&&
1974 drm_dp_mst_is_dp_mst_end_device(new_pdt
, new_mcs
)) {
1975 port
->pdt
= new_pdt
;
1976 port
->mcs
= new_mcs
;
1980 /* remove i2c over sideband */
1981 drm_dp_mst_unregister_i2c_bus(&port
->aux
);
1983 mutex_lock(&mgr
->lock
);
1984 drm_dp_mst_topology_put_mstb(port
->mstb
);
1986 mutex_unlock(&mgr
->lock
);
1990 port
->pdt
= new_pdt
;
1991 port
->mcs
= new_mcs
;
1993 if (port
->pdt
!= DP_PEER_DEVICE_NONE
) {
1994 if (drm_dp_mst_is_dp_mst_end_device(port
->pdt
, port
->mcs
)) {
1995 /* add i2c over sideband */
1996 ret
= drm_dp_mst_register_i2c_bus(&port
->aux
);
1998 lct
= drm_dp_calculate_rad(port
, rad
);
1999 mstb
= drm_dp_add_mst_branch_device(lct
, rad
);
2002 DRM_ERROR("Failed to create MSTB for port %p",
2007 mutex_lock(&mgr
->lock
);
2009 mstb
->mgr
= port
->mgr
;
2010 mstb
->port_parent
= port
;
2013 * Make sure this port's memory allocation stays
2014 * around until its child MSTB releases it
2016 drm_dp_mst_get_port_malloc(port
);
2017 mutex_unlock(&mgr
->lock
);
2019 /* And make sure we send a link address for this */
2026 port
->pdt
= DP_PEER_DEVICE_NONE
;
2031 * drm_dp_mst_dpcd_read() - read a series of bytes from the DPCD via sideband
2032 * @aux: Fake sideband AUX CH
2033 * @offset: address of the (first) register to read
2034 * @buffer: buffer to store the register values
2035 * @size: number of bytes in @buffer
2037 * Performs the same functionality for remote devices via
2038 * sideband messaging as drm_dp_dpcd_read() does for local
2039 * devices via actual AUX CH.
2041 * Return: Number of bytes read, or negative error code on failure.
2043 ssize_t
drm_dp_mst_dpcd_read(struct drm_dp_aux
*aux
,
2044 unsigned int offset
, void *buffer
, size_t size
)
2046 struct drm_dp_mst_port
*port
= container_of(aux
, struct drm_dp_mst_port
,
2049 return drm_dp_send_dpcd_read(port
->mgr
, port
,
2050 offset
, size
, buffer
);
2054 * drm_dp_mst_dpcd_write() - write a series of bytes to the DPCD via sideband
2055 * @aux: Fake sideband AUX CH
2056 * @offset: address of the (first) register to write
2057 * @buffer: buffer containing the values to write
2058 * @size: number of bytes in @buffer
2060 * Performs the same functionality for remote devices via
2061 * sideband messaging as drm_dp_dpcd_write() does for local
2062 * devices via actual AUX CH.
2064 * Return: 0 on success, negative error code on failure.
2066 ssize_t
drm_dp_mst_dpcd_write(struct drm_dp_aux
*aux
,
2067 unsigned int offset
, void *buffer
, size_t size
)
2069 struct drm_dp_mst_port
*port
= container_of(aux
, struct drm_dp_mst_port
,
2072 return drm_dp_send_dpcd_write(port
->mgr
, port
,
2073 offset
, size
, buffer
);
2076 static void drm_dp_check_mstb_guid(struct drm_dp_mst_branch
*mstb
, u8
*guid
)
2080 memcpy(mstb
->guid
, guid
, 16);
2082 if (!drm_dp_validate_guid(mstb
->mgr
, mstb
->guid
)) {
2083 if (mstb
->port_parent
) {
2084 ret
= drm_dp_send_dpcd_write(
2092 ret
= drm_dp_dpcd_write(
2101 static void build_mst_prop_path(const struct drm_dp_mst_branch
*mstb
,
2104 size_t proppath_size
)
2108 snprintf(proppath
, proppath_size
, "mst:%d", mstb
->mgr
->conn_base_id
);
2109 for (i
= 0; i
< (mstb
->lct
- 1); i
++) {
2110 int shift
= (i
% 2) ? 0 : 4;
2111 int port_num
= (mstb
->rad
[i
/ 2] >> shift
) & 0xf;
2112 snprintf(temp
, sizeof(temp
), "-%d", port_num
);
2113 strlcat(proppath
, temp
, proppath_size
);
2115 snprintf(temp
, sizeof(temp
), "-%d", pnum
);
2116 strlcat(proppath
, temp
, proppath_size
);
2120 * drm_dp_mst_connector_late_register() - Late MST connector registration
2121 * @connector: The MST connector
2122 * @port: The MST port for this connector
2124 * Helper to register the remote aux device for this MST port. Drivers should
2125 * call this from their mst connector's late_register hook to enable MST aux
2128 * Return: 0 on success, negative error code on failure.
2130 int drm_dp_mst_connector_late_register(struct drm_connector
*connector
,
2131 struct drm_dp_mst_port
*port
)
2133 DRM_DEBUG_KMS("registering %s remote bus for %s\n",
2134 port
->aux
.name
, connector
->kdev
->kobj
.name
);
2136 port
->aux
.dev
= connector
->kdev
;
2137 return drm_dp_aux_register_devnode(&port
->aux
);
2139 EXPORT_SYMBOL(drm_dp_mst_connector_late_register
);
2142 * drm_dp_mst_connector_early_unregister() - Early MST connector unregistration
2143 * @connector: The MST connector
2144 * @port: The MST port for this connector
2146 * Helper to unregister the remote aux device for this MST port, registered by
2147 * drm_dp_mst_connector_late_register(). Drivers should call this from their mst
2148 * connector's early_unregister hook.
2150 void drm_dp_mst_connector_early_unregister(struct drm_connector
*connector
,
2151 struct drm_dp_mst_port
*port
)
2153 DRM_DEBUG_KMS("unregistering %s remote bus for %s\n",
2154 port
->aux
.name
, connector
->kdev
->kobj
.name
);
2155 drm_dp_aux_unregister_devnode(&port
->aux
);
2157 EXPORT_SYMBOL(drm_dp_mst_connector_early_unregister
);
2160 drm_dp_mst_port_add_connector(struct drm_dp_mst_branch
*mstb
,
2161 struct drm_dp_mst_port
*port
)
2163 struct drm_dp_mst_topology_mgr
*mgr
= port
->mgr
;
2167 build_mst_prop_path(mstb
, port
->port_num
, proppath
, sizeof(proppath
));
2168 port
->connector
= mgr
->cbs
->add_connector(mgr
, port
, proppath
);
2169 if (!port
->connector
) {
2174 if (port
->pdt
!= DP_PEER_DEVICE_NONE
&&
2175 drm_dp_mst_is_dp_mst_end_device(port
->pdt
, port
->mcs
)) {
2176 port
->cached_edid
= drm_get_edid(port
->connector
,
2178 drm_connector_set_tile_property(port
->connector
);
2181 mgr
->cbs
->register_connector(port
->connector
);
2185 DRM_ERROR("Failed to create connector for port %p: %d\n", port
, ret
);
2189 * Drop a topology reference, and unlink the port from the in-memory topology
2193 drm_dp_mst_topology_unlink_port(struct drm_dp_mst_topology_mgr
*mgr
,
2194 struct drm_dp_mst_port
*port
)
2196 mutex_lock(&mgr
->lock
);
2197 port
->parent
->num_ports
--;
2198 list_del(&port
->next
);
2199 mutex_unlock(&mgr
->lock
);
2200 drm_dp_mst_topology_put_port(port
);
2203 static struct drm_dp_mst_port
*
2204 drm_dp_mst_add_port(struct drm_device
*dev
,
2205 struct drm_dp_mst_topology_mgr
*mgr
,
2206 struct drm_dp_mst_branch
*mstb
, u8 port_number
)
2208 struct drm_dp_mst_port
*port
= kzalloc(sizeof(*port
), GFP_KERNEL
);
2213 kref_init(&port
->topology_kref
);
2214 kref_init(&port
->malloc_kref
);
2215 port
->parent
= mstb
;
2216 port
->port_num
= port_number
;
2218 port
->aux
.name
= "DPMST";
2219 port
->aux
.dev
= dev
->dev
;
2220 port
->aux
.is_remote
= true;
2222 /* initialize the MST downstream port's AUX crc work queue */
2223 drm_dp_remote_aux_init(&port
->aux
);
2226 * Make sure the memory allocation for our parent branch stays
2227 * around until our own memory allocation is released
2229 drm_dp_mst_get_mstb_malloc(mstb
);
2235 drm_dp_mst_handle_link_address_port(struct drm_dp_mst_branch
*mstb
,
2236 struct drm_device
*dev
,
2237 struct drm_dp_link_addr_reply_port
*port_msg
)
2239 struct drm_dp_mst_topology_mgr
*mgr
= mstb
->mgr
;
2240 struct drm_dp_mst_port
*port
;
2241 int old_ddps
= 0, ret
;
2242 u8 new_pdt
= DP_PEER_DEVICE_NONE
;
2244 bool created
= false, send_link_addr
= false, changed
= false;
2246 port
= drm_dp_get_port(mstb
, port_msg
->port_number
);
2248 port
= drm_dp_mst_add_port(dev
, mgr
, mstb
,
2249 port_msg
->port_number
);
2254 } else if (!port
->input
&& port_msg
->input_port
&& port
->connector
) {
2255 /* Since port->connector can't be changed here, we create a
2256 * new port if input_port changes from 0 to 1
2258 drm_dp_mst_topology_unlink_port(mgr
, port
);
2259 drm_dp_mst_topology_put_port(port
);
2260 port
= drm_dp_mst_add_port(dev
, mgr
, mstb
,
2261 port_msg
->port_number
);
2266 } else if (port
->input
&& !port_msg
->input_port
) {
2268 } else if (port
->connector
) {
2269 /* We're updating a port that's exposed to userspace, so do it
2272 drm_modeset_lock(&mgr
->base
.lock
, NULL
);
2274 old_ddps
= port
->ddps
;
2275 changed
= port
->ddps
!= port_msg
->ddps
||
2277 (port
->ldps
!= port_msg
->legacy_device_plug_status
||
2278 port
->dpcd_rev
!= port_msg
->dpcd_revision
||
2279 port
->mcs
!= port_msg
->mcs
||
2280 port
->pdt
!= port_msg
->peer_device_type
||
2281 port
->num_sdp_stream_sinks
!=
2282 port_msg
->num_sdp_stream_sinks
));
2285 port
->input
= port_msg
->input_port
;
2287 new_pdt
= port_msg
->peer_device_type
;
2288 new_mcs
= port_msg
->mcs
;
2289 port
->ddps
= port_msg
->ddps
;
2290 port
->ldps
= port_msg
->legacy_device_plug_status
;
2291 port
->dpcd_rev
= port_msg
->dpcd_revision
;
2292 port
->num_sdp_streams
= port_msg
->num_sdp_streams
;
2293 port
->num_sdp_stream_sinks
= port_msg
->num_sdp_stream_sinks
;
2295 /* manage mstb port lists with mgr lock - take a reference
2298 mutex_lock(&mgr
->lock
);
2299 drm_dp_mst_topology_get_port(port
);
2300 list_add(&port
->next
, &mstb
->ports
);
2302 mutex_unlock(&mgr
->lock
);
2305 if (old_ddps
!= port
->ddps
) {
2308 drm_dp_send_enum_path_resources(mgr
, mstb
,
2312 port
->available_pbn
= 0;
2316 ret
= drm_dp_port_set_pdt(port
, new_pdt
, new_mcs
);
2318 send_link_addr
= true;
2319 } else if (ret
< 0) {
2320 DRM_ERROR("Failed to change PDT on port %p: %d\n",
2326 * If this port wasn't just created, then we're reprobing because
2327 * we're coming out of suspend. In this case, always resend the link
2328 * address if there's an MSTB on this port
2330 if (!created
&& port
->pdt
== DP_PEER_DEVICE_MST_BRANCHING
&&
2332 send_link_addr
= true;
2334 if (port
->connector
)
2335 drm_modeset_unlock(&mgr
->base
.lock
);
2336 else if (!port
->input
)
2337 drm_dp_mst_port_add_connector(mstb
, port
);
2339 if (send_link_addr
&& port
->mstb
) {
2340 ret
= drm_dp_send_link_address(mgr
, port
->mstb
);
2341 if (ret
== 1) /* MSTB below us changed */
2347 /* put reference to this port */
2348 drm_dp_mst_topology_put_port(port
);
2352 drm_dp_mst_topology_unlink_port(mgr
, port
);
2353 if (port
->connector
)
2354 drm_modeset_unlock(&mgr
->base
.lock
);
2356 drm_dp_mst_topology_put_port(port
);
2361 drm_dp_mst_handle_conn_stat(struct drm_dp_mst_branch
*mstb
,
2362 struct drm_dp_connection_status_notify
*conn_stat
)
2364 struct drm_dp_mst_topology_mgr
*mgr
= mstb
->mgr
;
2365 struct drm_dp_mst_port
*port
;
2366 int old_ddps
, old_input
, ret
, i
;
2369 bool dowork
= false, create_connector
= false;
2371 port
= drm_dp_get_port(mstb
, conn_stat
->port_number
);
2375 if (port
->connector
) {
2376 if (!port
->input
&& conn_stat
->input_port
) {
2378 * We can't remove a connector from an already exposed
2379 * port, so just throw the port out and make sure we
2380 * reprobe the link address of it's parent MSTB
2382 drm_dp_mst_topology_unlink_port(mgr
, port
);
2383 mstb
->link_address_sent
= false;
2388 /* Locking is only needed if the port's exposed to userspace */
2389 drm_modeset_lock(&mgr
->base
.lock
, NULL
);
2390 } else if (port
->input
&& !conn_stat
->input_port
) {
2391 create_connector
= true;
2392 /* Reprobe link address so we get num_sdp_streams */
2393 mstb
->link_address_sent
= false;
2397 old_ddps
= port
->ddps
;
2398 old_input
= port
->input
;
2399 port
->input
= conn_stat
->input_port
;
2400 port
->ldps
= conn_stat
->legacy_device_plug_status
;
2401 port
->ddps
= conn_stat
->displayport_device_plug_status
;
2403 if (old_ddps
!= port
->ddps
) {
2407 port
->available_pbn
= 0;
2411 new_pdt
= port
->input
? DP_PEER_DEVICE_NONE
: conn_stat
->peer_device_type
;
2412 new_mcs
= conn_stat
->message_capability_status
;
2413 ret
= drm_dp_port_set_pdt(port
, new_pdt
, new_mcs
);
2416 } else if (ret
< 0) {
2417 DRM_ERROR("Failed to change PDT for port %p: %d\n",
2422 if (!old_input
&& old_ddps
!= port
->ddps
&& !port
->ddps
) {
2423 for (i
= 0; i
< mgr
->max_payloads
; i
++) {
2424 struct drm_dp_vcpi
*vcpi
= mgr
->proposed_vcpis
[i
];
2425 struct drm_dp_mst_port
*port_validated
;
2431 container_of(vcpi
, struct drm_dp_mst_port
, vcpi
);
2433 drm_dp_mst_topology_get_port_validated(mgr
, port_validated
);
2434 if (!port_validated
) {
2435 mutex_lock(&mgr
->payload_lock
);
2436 vcpi
->num_slots
= 0;
2437 mutex_unlock(&mgr
->payload_lock
);
2439 drm_dp_mst_topology_put_port(port_validated
);
2444 if (port
->connector
)
2445 drm_modeset_unlock(&mgr
->base
.lock
);
2446 else if (create_connector
)
2447 drm_dp_mst_port_add_connector(mstb
, port
);
2450 drm_dp_mst_topology_put_port(port
);
2452 queue_work(system_long_wq
, &mstb
->mgr
->work
);
2455 static struct drm_dp_mst_branch
*drm_dp_get_mst_branch_device(struct drm_dp_mst_topology_mgr
*mgr
,
2458 struct drm_dp_mst_branch
*mstb
;
2459 struct drm_dp_mst_port
*port
;
2461 /* find the port by iterating down */
2463 mutex_lock(&mgr
->lock
);
2464 mstb
= mgr
->mst_primary
;
2469 for (i
= 0; i
< lct
- 1; i
++) {
2470 int shift
= (i
% 2) ? 0 : 4;
2471 int port_num
= (rad
[i
/ 2] >> shift
) & 0xf;
2473 list_for_each_entry(port
, &mstb
->ports
, next
) {
2474 if (port
->port_num
== port_num
) {
2477 DRM_ERROR("failed to lookup MSTB with lct %d, rad %02x\n", lct
, rad
[0]);
2485 ret
= drm_dp_mst_topology_try_get_mstb(mstb
);
2489 mutex_unlock(&mgr
->lock
);
2493 static struct drm_dp_mst_branch
*get_mst_branch_device_by_guid_helper(
2494 struct drm_dp_mst_branch
*mstb
,
2495 const uint8_t *guid
)
2497 struct drm_dp_mst_branch
*found_mstb
;
2498 struct drm_dp_mst_port
*port
;
2500 if (memcmp(mstb
->guid
, guid
, 16) == 0)
2504 list_for_each_entry(port
, &mstb
->ports
, next
) {
2508 found_mstb
= get_mst_branch_device_by_guid_helper(port
->mstb
, guid
);
2517 static struct drm_dp_mst_branch
*
2518 drm_dp_get_mst_branch_device_by_guid(struct drm_dp_mst_topology_mgr
*mgr
,
2519 const uint8_t *guid
)
2521 struct drm_dp_mst_branch
*mstb
;
2524 /* find the port by iterating down */
2525 mutex_lock(&mgr
->lock
);
2527 mstb
= get_mst_branch_device_by_guid_helper(mgr
->mst_primary
, guid
);
2529 ret
= drm_dp_mst_topology_try_get_mstb(mstb
);
2534 mutex_unlock(&mgr
->lock
);
2538 static int drm_dp_check_and_send_link_address(struct drm_dp_mst_topology_mgr
*mgr
,
2539 struct drm_dp_mst_branch
*mstb
)
2541 struct drm_dp_mst_port
*port
;
2543 bool changed
= false;
2545 if (!mstb
->link_address_sent
) {
2546 ret
= drm_dp_send_link_address(mgr
, mstb
);
2553 list_for_each_entry(port
, &mstb
->ports
, next
) {
2554 struct drm_dp_mst_branch
*mstb_child
= NULL
;
2556 if (port
->input
|| !port
->ddps
)
2559 if (!port
->available_pbn
) {
2560 drm_modeset_lock(&mgr
->base
.lock
, NULL
);
2561 drm_dp_send_enum_path_resources(mgr
, mstb
, port
);
2562 drm_modeset_unlock(&mgr
->base
.lock
);
2567 mstb_child
= drm_dp_mst_topology_get_mstb_validated(
2571 ret
= drm_dp_check_and_send_link_address(mgr
,
2573 drm_dp_mst_topology_put_mstb(mstb_child
);
2584 static void drm_dp_mst_link_probe_work(struct work_struct
*work
)
2586 struct drm_dp_mst_topology_mgr
*mgr
=
2587 container_of(work
, struct drm_dp_mst_topology_mgr
, work
);
2588 struct drm_device
*dev
= mgr
->dev
;
2589 struct drm_dp_mst_branch
*mstb
;
2591 bool clear_payload_id_table
;
2593 mutex_lock(&mgr
->probe_lock
);
2595 mutex_lock(&mgr
->lock
);
2596 clear_payload_id_table
= !mgr
->payload_id_table_cleared
;
2597 mgr
->payload_id_table_cleared
= true;
2599 mstb
= mgr
->mst_primary
;
2601 ret
= drm_dp_mst_topology_try_get_mstb(mstb
);
2605 mutex_unlock(&mgr
->lock
);
2607 mutex_unlock(&mgr
->probe_lock
);
2612 * Certain branch devices seem to incorrectly report an available_pbn
2613 * of 0 on downstream sinks, even after clearing the
2614 * DP_PAYLOAD_ALLOCATE_* registers in
2615 * drm_dp_mst_topology_mgr_set_mst(). Namely, the CableMatters USB-C
2616 * 2x DP hub. Sending a CLEAR_PAYLOAD_ID_TABLE message seems to make
2617 * things work again.
2619 if (clear_payload_id_table
) {
2620 DRM_DEBUG_KMS("Clearing payload ID table\n");
2621 drm_dp_send_clear_payload_id_table(mgr
, mstb
);
2624 ret
= drm_dp_check_and_send_link_address(mgr
, mstb
);
2625 drm_dp_mst_topology_put_mstb(mstb
);
2627 mutex_unlock(&mgr
->probe_lock
);
2629 drm_kms_helper_hotplug_event(dev
);
2632 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr
*mgr
,
2637 if (memchr_inv(guid
, 0, 16))
2640 salt
= get_jiffies_64();
2642 memcpy(&guid
[0], &salt
, sizeof(u64
));
2643 memcpy(&guid
[8], &salt
, sizeof(u64
));
2648 static int build_dpcd_read(struct drm_dp_sideband_msg_tx
*msg
, u8 port_num
, u32 offset
, u8 num_bytes
)
2650 struct drm_dp_sideband_msg_req_body req
;
2652 req
.req_type
= DP_REMOTE_DPCD_READ
;
2653 req
.u
.dpcd_read
.port_number
= port_num
;
2654 req
.u
.dpcd_read
.dpcd_address
= offset
;
2655 req
.u
.dpcd_read
.num_bytes
= num_bytes
;
2656 drm_dp_encode_sideband_req(&req
, msg
);
2661 static int drm_dp_send_sideband_msg(struct drm_dp_mst_topology_mgr
*mgr
,
2662 bool up
, u8
*msg
, int len
)
2665 int regbase
= up
? DP_SIDEBAND_MSG_UP_REP_BASE
: DP_SIDEBAND_MSG_DOWN_REQ_BASE
;
2666 int tosend
, total
, offset
;
2673 tosend
= min3(mgr
->max_dpcd_transaction_bytes
, 16, total
);
2675 ret
= drm_dp_dpcd_write(mgr
->aux
, regbase
+ offset
,
2678 if (ret
!= tosend
) {
2679 if (ret
== -EIO
&& retries
< 5) {
2683 DRM_DEBUG_KMS("failed to dpcd write %d %d\n", tosend
, ret
);
2689 } while (total
> 0);
2693 static int set_hdr_from_dst_qlock(struct drm_dp_sideband_msg_hdr
*hdr
,
2694 struct drm_dp_sideband_msg_tx
*txmsg
)
2696 struct drm_dp_mst_branch
*mstb
= txmsg
->dst
;
2699 /* both msg slots are full */
2700 if (txmsg
->seqno
== -1) {
2701 if (mstb
->tx_slots
[0] && mstb
->tx_slots
[1]) {
2702 DRM_DEBUG_KMS("%s: failed to find slot\n", __func__
);
2705 if (mstb
->tx_slots
[0] == NULL
&& mstb
->tx_slots
[1] == NULL
) {
2706 txmsg
->seqno
= mstb
->last_seqno
;
2707 mstb
->last_seqno
^= 1;
2708 } else if (mstb
->tx_slots
[0] == NULL
)
2712 mstb
->tx_slots
[txmsg
->seqno
] = txmsg
;
2715 req_type
= txmsg
->msg
[0] & 0x7f;
2716 if (req_type
== DP_CONNECTION_STATUS_NOTIFY
||
2717 req_type
== DP_RESOURCE_STATUS_NOTIFY
)
2721 hdr
->path_msg
= txmsg
->path_msg
;
2722 hdr
->lct
= mstb
->lct
;
2723 hdr
->lcr
= mstb
->lct
- 1;
2725 memcpy(hdr
->rad
, mstb
->rad
, mstb
->lct
/ 2);
2726 hdr
->seqno
= txmsg
->seqno
;
2730 * process a single block of the next message in the sideband queue
2732 static int process_single_tx_qlock(struct drm_dp_mst_topology_mgr
*mgr
,
2733 struct drm_dp_sideband_msg_tx
*txmsg
,
2737 struct drm_dp_sideband_msg_hdr hdr
;
2738 int len
, space
, idx
, tosend
;
2741 memset(&hdr
, 0, sizeof(struct drm_dp_sideband_msg_hdr
));
2743 if (txmsg
->state
== DRM_DP_SIDEBAND_TX_QUEUED
) {
2745 txmsg
->state
= DRM_DP_SIDEBAND_TX_START_SEND
;
2748 /* make hdr from dst mst - for replies use seqno
2749 otherwise assign one */
2750 ret
= set_hdr_from_dst_qlock(&hdr
, txmsg
);
2754 /* amount left to send in this message */
2755 len
= txmsg
->cur_len
- txmsg
->cur_offset
;
2757 /* 48 - sideband msg size - 1 byte for data CRC, x header bytes */
2758 space
= 48 - 1 - drm_dp_calc_sb_hdr_size(&hdr
);
2760 tosend
= min(len
, space
);
2761 if (len
== txmsg
->cur_len
)
2767 hdr
.msg_len
= tosend
+ 1;
2768 drm_dp_encode_sideband_msg_hdr(&hdr
, chunk
, &idx
);
2769 memcpy(&chunk
[idx
], &txmsg
->msg
[txmsg
->cur_offset
], tosend
);
2770 /* add crc at end */
2771 drm_dp_crc_sideband_chunk_req(&chunk
[idx
], tosend
);
2774 ret
= drm_dp_send_sideband_msg(mgr
, up
, chunk
, idx
);
2775 if (unlikely(ret
) && drm_debug_enabled(DRM_UT_DP
)) {
2776 struct drm_printer p
= drm_debug_printer(DBG_PREFIX
);
2778 drm_printf(&p
, "sideband msg failed to send\n");
2779 drm_dp_mst_dump_sideband_msg_tx(&p
, txmsg
);
2783 txmsg
->cur_offset
+= tosend
;
2784 if (txmsg
->cur_offset
== txmsg
->cur_len
) {
2785 txmsg
->state
= DRM_DP_SIDEBAND_TX_SENT
;
2791 static void process_single_down_tx_qlock(struct drm_dp_mst_topology_mgr
*mgr
)
2793 struct drm_dp_sideband_msg_tx
*txmsg
;
2796 WARN_ON(!mutex_is_locked(&mgr
->qlock
));
2798 /* construct a chunk from the first msg in the tx_msg queue */
2799 if (list_empty(&mgr
->tx_msg_downq
))
2802 txmsg
= list_first_entry(&mgr
->tx_msg_downq
, struct drm_dp_sideband_msg_tx
, next
);
2803 ret
= process_single_tx_qlock(mgr
, txmsg
, false);
2805 /* txmsg is sent it should be in the slots now */
2806 mgr
->is_waiting_for_dwn_reply
= true;
2807 list_del(&txmsg
->next
);
2809 DRM_DEBUG_KMS("failed to send msg in q %d\n", ret
);
2810 mgr
->is_waiting_for_dwn_reply
= false;
2811 list_del(&txmsg
->next
);
2812 if (txmsg
->seqno
!= -1)
2813 txmsg
->dst
->tx_slots
[txmsg
->seqno
] = NULL
;
2814 txmsg
->state
= DRM_DP_SIDEBAND_TX_TIMEOUT
;
2815 wake_up_all(&mgr
->tx_waitq
);
2819 /* called holding qlock */
2820 static void process_single_up_tx_qlock(struct drm_dp_mst_topology_mgr
*mgr
,
2821 struct drm_dp_sideband_msg_tx
*txmsg
)
2825 /* construct a chunk from the first msg in the tx_msg queue */
2826 ret
= process_single_tx_qlock(mgr
, txmsg
, true);
2829 DRM_DEBUG_KMS("failed to send msg in q %d\n", ret
);
2831 if (txmsg
->seqno
!= -1) {
2832 WARN_ON((unsigned int)txmsg
->seqno
>
2833 ARRAY_SIZE(txmsg
->dst
->tx_slots
));
2834 txmsg
->dst
->tx_slots
[txmsg
->seqno
] = NULL
;
2838 static void drm_dp_queue_down_tx(struct drm_dp_mst_topology_mgr
*mgr
,
2839 struct drm_dp_sideband_msg_tx
*txmsg
)
2841 mutex_lock(&mgr
->qlock
);
2842 list_add_tail(&txmsg
->next
, &mgr
->tx_msg_downq
);
2844 if (drm_debug_enabled(DRM_UT_DP
)) {
2845 struct drm_printer p
= drm_debug_printer(DBG_PREFIX
);
2847 drm_dp_mst_dump_sideband_msg_tx(&p
, txmsg
);
2850 if (list_is_singular(&mgr
->tx_msg_downq
) &&
2851 !mgr
->is_waiting_for_dwn_reply
)
2852 process_single_down_tx_qlock(mgr
);
2853 mutex_unlock(&mgr
->qlock
);
2857 drm_dp_dump_link_address(struct drm_dp_link_address_ack_reply
*reply
)
2859 struct drm_dp_link_addr_reply_port
*port_reply
;
2862 for (i
= 0; i
< reply
->nports
; i
++) {
2863 port_reply
= &reply
->ports
[i
];
2864 DRM_DEBUG_KMS("port %d: input %d, pdt: %d, pn: %d, dpcd_rev: %02x, mcs: %d, ddps: %d, ldps %d, sdp %d/%d\n",
2866 port_reply
->input_port
,
2867 port_reply
->peer_device_type
,
2868 port_reply
->port_number
,
2869 port_reply
->dpcd_revision
,
2872 port_reply
->legacy_device_plug_status
,
2873 port_reply
->num_sdp_streams
,
2874 port_reply
->num_sdp_stream_sinks
);
2878 static int drm_dp_send_link_address(struct drm_dp_mst_topology_mgr
*mgr
,
2879 struct drm_dp_mst_branch
*mstb
)
2881 struct drm_dp_sideband_msg_tx
*txmsg
;
2882 struct drm_dp_link_address_ack_reply
*reply
;
2883 struct drm_dp_mst_port
*port
, *tmp
;
2884 int i
, len
, ret
, port_mask
= 0;
2885 bool changed
= false;
2887 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
2892 len
= build_link_address(txmsg
);
2894 mstb
->link_address_sent
= true;
2895 drm_dp_queue_down_tx(mgr
, txmsg
);
2897 /* FIXME: Actually do some real error handling here */
2898 ret
= drm_dp_mst_wait_tx_reply(mstb
, txmsg
);
2900 DRM_ERROR("Sending link address failed with %d\n", ret
);
2903 if (txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
) {
2904 DRM_ERROR("link address NAK received\n");
2909 reply
= &txmsg
->reply
.u
.link_addr
;
2910 DRM_DEBUG_KMS("link address reply: %d\n", reply
->nports
);
2911 drm_dp_dump_link_address(reply
);
2913 drm_dp_check_mstb_guid(mstb
, reply
->guid
);
2915 for (i
= 0; i
< reply
->nports
; i
++) {
2916 port_mask
|= BIT(reply
->ports
[i
].port_number
);
2917 ret
= drm_dp_mst_handle_link_address_port(mstb
, mgr
->dev
,
2925 /* Prune any ports that are currently a part of mstb in our in-memory
2926 * topology, but were not seen in this link address. Usually this
2927 * means that they were removed while the topology was out of sync,
2928 * e.g. during suspend/resume
2930 mutex_lock(&mgr
->lock
);
2931 list_for_each_entry_safe(port
, tmp
, &mstb
->ports
, next
) {
2932 if (port_mask
& BIT(port
->port_num
))
2935 DRM_DEBUG_KMS("port %d was not in link address, removing\n",
2937 list_del(&port
->next
);
2938 drm_dp_mst_topology_put_port(port
);
2941 mutex_unlock(&mgr
->lock
);
2945 mstb
->link_address_sent
= false;
2947 return ret
< 0 ? ret
: changed
;
2950 void drm_dp_send_clear_payload_id_table(struct drm_dp_mst_topology_mgr
*mgr
,
2951 struct drm_dp_mst_branch
*mstb
)
2953 struct drm_dp_sideband_msg_tx
*txmsg
;
2956 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
2961 len
= build_clear_payload_id_table(txmsg
);
2963 drm_dp_queue_down_tx(mgr
, txmsg
);
2965 ret
= drm_dp_mst_wait_tx_reply(mstb
, txmsg
);
2966 if (ret
> 0 && txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
)
2967 DRM_DEBUG_KMS("clear payload table id nak received\n");
2973 drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr
*mgr
,
2974 struct drm_dp_mst_branch
*mstb
,
2975 struct drm_dp_mst_port
*port
)
2977 struct drm_dp_enum_path_resources_ack_reply
*path_res
;
2978 struct drm_dp_sideband_msg_tx
*txmsg
;
2982 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
2987 len
= build_enum_path_resources(txmsg
, port
->port_num
);
2989 drm_dp_queue_down_tx(mgr
, txmsg
);
2991 ret
= drm_dp_mst_wait_tx_reply(mstb
, txmsg
);
2993 path_res
= &txmsg
->reply
.u
.path_resources
;
2995 if (txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
) {
2996 DRM_DEBUG_KMS("enum path resources nak received\n");
2998 if (port
->port_num
!= path_res
->port_number
)
2999 DRM_ERROR("got incorrect port in response\n");
3001 DRM_DEBUG_KMS("enum path resources %d: %d %d\n",
3002 path_res
->port_number
,
3003 path_res
->full_payload_bw_number
,
3004 path_res
->avail_payload_bw_number
);
3005 port
->available_pbn
=
3006 path_res
->avail_payload_bw_number
;
3007 port
->fec_capable
= path_res
->fec_capable
;
3015 static struct drm_dp_mst_port
*drm_dp_get_last_connected_port_to_mstb(struct drm_dp_mst_branch
*mstb
)
3017 if (!mstb
->port_parent
)
3020 if (mstb
->port_parent
->mstb
!= mstb
)
3021 return mstb
->port_parent
;
3023 return drm_dp_get_last_connected_port_to_mstb(mstb
->port_parent
->parent
);
3027 * Searches upwards in the topology starting from mstb to try to find the
3028 * closest available parent of mstb that's still connected to the rest of the
3029 * topology. This can be used in order to perform operations like releasing
3030 * payloads, where the branch device which owned the payload may no longer be
3031 * around and thus would require that the payload on the last living relative
3034 static struct drm_dp_mst_branch
*
3035 drm_dp_get_last_connected_port_and_mstb(struct drm_dp_mst_topology_mgr
*mgr
,
3036 struct drm_dp_mst_branch
*mstb
,
3039 struct drm_dp_mst_branch
*rmstb
= NULL
;
3040 struct drm_dp_mst_port
*found_port
;
3042 mutex_lock(&mgr
->lock
);
3043 if (!mgr
->mst_primary
)
3047 found_port
= drm_dp_get_last_connected_port_to_mstb(mstb
);
3051 if (drm_dp_mst_topology_try_get_mstb(found_port
->parent
)) {
3052 rmstb
= found_port
->parent
;
3053 *port_num
= found_port
->port_num
;
3055 /* Search again, starting from this parent */
3056 mstb
= found_port
->parent
;
3060 mutex_unlock(&mgr
->lock
);
3064 static int drm_dp_payload_send_msg(struct drm_dp_mst_topology_mgr
*mgr
,
3065 struct drm_dp_mst_port
*port
,
3069 struct drm_dp_sideband_msg_tx
*txmsg
;
3070 struct drm_dp_mst_branch
*mstb
;
3071 int len
, ret
, port_num
;
3072 u8 sinks
[DRM_DP_MAX_SDP_STREAMS
];
3075 port_num
= port
->port_num
;
3076 mstb
= drm_dp_mst_topology_get_mstb_validated(mgr
, port
->parent
);
3078 mstb
= drm_dp_get_last_connected_port_and_mstb(mgr
,
3086 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
3092 for (i
= 0; i
< port
->num_sdp_streams
; i
++)
3096 len
= build_allocate_payload(txmsg
, port_num
,
3098 pbn
, port
->num_sdp_streams
, sinks
);
3100 drm_dp_queue_down_tx(mgr
, txmsg
);
3103 * FIXME: there is a small chance that between getting the last
3104 * connected mstb and sending the payload message, the last connected
3105 * mstb could also be removed from the topology. In the future, this
3106 * needs to be fixed by restarting the
3107 * drm_dp_get_last_connected_port_and_mstb() search in the event of a
3108 * timeout if the topology is still connected to the system.
3110 ret
= drm_dp_mst_wait_tx_reply(mstb
, txmsg
);
3112 if (txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
)
3119 drm_dp_mst_topology_put_mstb(mstb
);
3123 int drm_dp_send_power_updown_phy(struct drm_dp_mst_topology_mgr
*mgr
,
3124 struct drm_dp_mst_port
*port
, bool power_up
)
3126 struct drm_dp_sideband_msg_tx
*txmsg
;
3129 port
= drm_dp_mst_topology_get_port_validated(mgr
, port
);
3133 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
3135 drm_dp_mst_topology_put_port(port
);
3139 txmsg
->dst
= port
->parent
;
3140 len
= build_power_updown_phy(txmsg
, port
->port_num
, power_up
);
3141 drm_dp_queue_down_tx(mgr
, txmsg
);
3143 ret
= drm_dp_mst_wait_tx_reply(port
->parent
, txmsg
);
3145 if (txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
)
3151 drm_dp_mst_topology_put_port(port
);
3155 EXPORT_SYMBOL(drm_dp_send_power_updown_phy
);
3157 static int drm_dp_create_payload_step1(struct drm_dp_mst_topology_mgr
*mgr
,
3159 struct drm_dp_payload
*payload
)
3163 ret
= drm_dp_dpcd_write_payload(mgr
, id
, payload
);
3165 payload
->payload_state
= 0;
3168 payload
->payload_state
= DP_PAYLOAD_LOCAL
;
3172 static int drm_dp_create_payload_step2(struct drm_dp_mst_topology_mgr
*mgr
,
3173 struct drm_dp_mst_port
*port
,
3175 struct drm_dp_payload
*payload
)
3178 ret
= drm_dp_payload_send_msg(mgr
, port
, id
, port
->vcpi
.pbn
);
3181 payload
->payload_state
= DP_PAYLOAD_REMOTE
;
3185 static int drm_dp_destroy_payload_step1(struct drm_dp_mst_topology_mgr
*mgr
,
3186 struct drm_dp_mst_port
*port
,
3188 struct drm_dp_payload
*payload
)
3190 DRM_DEBUG_KMS("\n");
3191 /* it's okay for these to fail */
3193 drm_dp_payload_send_msg(mgr
, port
, id
, 0);
3196 drm_dp_dpcd_write_payload(mgr
, id
, payload
);
3197 payload
->payload_state
= DP_PAYLOAD_DELETE_LOCAL
;
3201 static int drm_dp_destroy_payload_step2(struct drm_dp_mst_topology_mgr
*mgr
,
3203 struct drm_dp_payload
*payload
)
3205 payload
->payload_state
= 0;
3210 * drm_dp_update_payload_part1() - Execute payload update part 1
3211 * @mgr: manager to use.
3213 * This iterates over all proposed virtual channels, and tries to
3214 * allocate space in the link for them. For 0->slots transitions,
3215 * this step just writes the VCPI to the MST device. For slots->0
3216 * transitions, this writes the updated VCPIs and removes the
3217 * remote VC payloads.
3219 * after calling this the driver should generate ACT and payload
3222 int drm_dp_update_payload_part1(struct drm_dp_mst_topology_mgr
*mgr
)
3224 struct drm_dp_payload req_payload
;
3225 struct drm_dp_mst_port
*port
;
3229 mutex_lock(&mgr
->payload_lock
);
3230 for (i
= 0; i
< mgr
->max_payloads
; i
++) {
3231 struct drm_dp_vcpi
*vcpi
= mgr
->proposed_vcpis
[i
];
3232 struct drm_dp_payload
*payload
= &mgr
->payloads
[i
];
3233 bool put_port
= false;
3235 /* solve the current payloads - compare to the hw ones
3236 - update the hw view */
3237 req_payload
.start_slot
= cur_slots
;
3239 port
= container_of(vcpi
, struct drm_dp_mst_port
,
3242 /* Validated ports don't matter if we're releasing
3245 if (vcpi
->num_slots
) {
3246 port
= drm_dp_mst_topology_get_port_validated(
3249 mutex_unlock(&mgr
->payload_lock
);
3255 req_payload
.num_slots
= vcpi
->num_slots
;
3256 req_payload
.vcpi
= vcpi
->vcpi
;
3259 req_payload
.num_slots
= 0;
3262 payload
->start_slot
= req_payload
.start_slot
;
3263 /* work out what is required to happen with this payload */
3264 if (payload
->num_slots
!= req_payload
.num_slots
) {
3266 /* need to push an update for this payload */
3267 if (req_payload
.num_slots
) {
3268 drm_dp_create_payload_step1(mgr
, vcpi
->vcpi
,
3270 payload
->num_slots
= req_payload
.num_slots
;
3271 payload
->vcpi
= req_payload
.vcpi
;
3273 } else if (payload
->num_slots
) {
3274 payload
->num_slots
= 0;
3275 drm_dp_destroy_payload_step1(mgr
, port
,
3278 req_payload
.payload_state
=
3279 payload
->payload_state
;
3280 payload
->start_slot
= 0;
3282 payload
->payload_state
= req_payload
.payload_state
;
3284 cur_slots
+= req_payload
.num_slots
;
3287 drm_dp_mst_topology_put_port(port
);
3290 for (i
= 0; i
< mgr
->max_payloads
; /* do nothing */) {
3291 if (mgr
->payloads
[i
].payload_state
!= DP_PAYLOAD_DELETE_LOCAL
) {
3296 DRM_DEBUG_KMS("removing payload %d\n", i
);
3297 for (j
= i
; j
< mgr
->max_payloads
- 1; j
++) {
3298 mgr
->payloads
[j
] = mgr
->payloads
[j
+ 1];
3299 mgr
->proposed_vcpis
[j
] = mgr
->proposed_vcpis
[j
+ 1];
3301 if (mgr
->proposed_vcpis
[j
] &&
3302 mgr
->proposed_vcpis
[j
]->num_slots
) {
3303 set_bit(j
+ 1, &mgr
->payload_mask
);
3305 clear_bit(j
+ 1, &mgr
->payload_mask
);
3309 memset(&mgr
->payloads
[mgr
->max_payloads
- 1], 0,
3310 sizeof(struct drm_dp_payload
));
3311 mgr
->proposed_vcpis
[mgr
->max_payloads
- 1] = NULL
;
3312 clear_bit(mgr
->max_payloads
, &mgr
->payload_mask
);
3314 mutex_unlock(&mgr
->payload_lock
);
3318 EXPORT_SYMBOL(drm_dp_update_payload_part1
);
3321 * drm_dp_update_payload_part2() - Execute payload update part 2
3322 * @mgr: manager to use.
3324 * This iterates over all proposed virtual channels, and tries to
3325 * allocate space in the link for them. For 0->slots transitions,
3326 * this step writes the remote VC payload commands. For slots->0
3327 * this just resets some internal state.
3329 int drm_dp_update_payload_part2(struct drm_dp_mst_topology_mgr
*mgr
)
3331 struct drm_dp_mst_port
*port
;
3334 mutex_lock(&mgr
->payload_lock
);
3335 for (i
= 0; i
< mgr
->max_payloads
; i
++) {
3337 if (!mgr
->proposed_vcpis
[i
])
3340 port
= container_of(mgr
->proposed_vcpis
[i
], struct drm_dp_mst_port
, vcpi
);
3342 DRM_DEBUG_KMS("payload %d %d\n", i
, mgr
->payloads
[i
].payload_state
);
3343 if (mgr
->payloads
[i
].payload_state
== DP_PAYLOAD_LOCAL
) {
3344 ret
= drm_dp_create_payload_step2(mgr
, port
, mgr
->proposed_vcpis
[i
]->vcpi
, &mgr
->payloads
[i
]);
3345 } else if (mgr
->payloads
[i
].payload_state
== DP_PAYLOAD_DELETE_LOCAL
) {
3346 ret
= drm_dp_destroy_payload_step2(mgr
, mgr
->proposed_vcpis
[i
]->vcpi
, &mgr
->payloads
[i
]);
3349 mutex_unlock(&mgr
->payload_lock
);
3353 mutex_unlock(&mgr
->payload_lock
);
3356 EXPORT_SYMBOL(drm_dp_update_payload_part2
);
3358 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr
*mgr
,
3359 struct drm_dp_mst_port
*port
,
3360 int offset
, int size
, u8
*bytes
)
3364 struct drm_dp_sideband_msg_tx
*txmsg
;
3365 struct drm_dp_mst_branch
*mstb
;
3367 mstb
= drm_dp_mst_topology_get_mstb_validated(mgr
, port
->parent
);
3371 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
3377 len
= build_dpcd_read(txmsg
, port
->port_num
, offset
, size
);
3378 txmsg
->dst
= port
->parent
;
3380 drm_dp_queue_down_tx(mgr
, txmsg
);
3382 ret
= drm_dp_mst_wait_tx_reply(mstb
, txmsg
);
3386 /* DPCD read should never be NACKed */
3387 if (txmsg
->reply
.reply_type
== 1) {
3388 DRM_ERROR("mstb %p port %d: DPCD read on addr 0x%x for %d bytes NAKed\n",
3389 mstb
, port
->port_num
, offset
, size
);
3394 if (txmsg
->reply
.u
.remote_dpcd_read_ack
.num_bytes
!= size
) {
3399 ret
= min_t(size_t, txmsg
->reply
.u
.remote_dpcd_read_ack
.num_bytes
,
3401 memcpy(bytes
, txmsg
->reply
.u
.remote_dpcd_read_ack
.bytes
, ret
);
3406 drm_dp_mst_topology_put_mstb(mstb
);
3411 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr
*mgr
,
3412 struct drm_dp_mst_port
*port
,
3413 int offset
, int size
, u8
*bytes
)
3417 struct drm_dp_sideband_msg_tx
*txmsg
;
3418 struct drm_dp_mst_branch
*mstb
;
3420 mstb
= drm_dp_mst_topology_get_mstb_validated(mgr
, port
->parent
);
3424 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
3430 len
= build_dpcd_write(txmsg
, port
->port_num
, offset
, size
, bytes
);
3433 drm_dp_queue_down_tx(mgr
, txmsg
);
3435 ret
= drm_dp_mst_wait_tx_reply(mstb
, txmsg
);
3437 if (txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
)
3444 drm_dp_mst_topology_put_mstb(mstb
);
3448 static int drm_dp_encode_up_ack_reply(struct drm_dp_sideband_msg_tx
*msg
, u8 req_type
)
3450 struct drm_dp_sideband_msg_reply_body reply
;
3452 reply
.reply_type
= DP_SIDEBAND_REPLY_ACK
;
3453 reply
.req_type
= req_type
;
3454 drm_dp_encode_sideband_reply(&reply
, msg
);
3458 static int drm_dp_send_up_ack_reply(struct drm_dp_mst_topology_mgr
*mgr
,
3459 struct drm_dp_mst_branch
*mstb
,
3460 int req_type
, int seqno
, bool broadcast
)
3462 struct drm_dp_sideband_msg_tx
*txmsg
;
3464 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
3469 txmsg
->seqno
= seqno
;
3470 drm_dp_encode_up_ack_reply(txmsg
, req_type
);
3472 mutex_lock(&mgr
->qlock
);
3474 process_single_up_tx_qlock(mgr
, txmsg
);
3476 mutex_unlock(&mgr
->qlock
);
3482 static int drm_dp_get_vc_payload_bw(u8 dp_link_bw
, u8 dp_link_count
)
3484 if (dp_link_bw
== 0 || dp_link_count
== 0)
3485 DRM_DEBUG_KMS("invalid link bandwidth in DPCD: %x (link count: %d)\n",
3486 dp_link_bw
, dp_link_count
);
3488 return dp_link_bw
* dp_link_count
/ 2;
3492 * drm_dp_mst_topology_mgr_set_mst() - Set the MST state for a topology manager
3493 * @mgr: manager to set state for
3494 * @mst_state: true to enable MST on this connector - false to disable.
3496 * This is called by the driver when it detects an MST capable device plugged
3497 * into a DP MST capable port, or when a DP MST capable device is unplugged.
3499 int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr
*mgr
, bool mst_state
)
3503 struct drm_dp_mst_branch
*mstb
= NULL
;
3505 mutex_lock(&mgr
->lock
);
3506 if (mst_state
== mgr
->mst_state
)
3509 mgr
->mst_state
= mst_state
;
3510 /* set the device into MST mode */
3512 WARN_ON(mgr
->mst_primary
);
3515 ret
= drm_dp_dpcd_read(mgr
->aux
, DP_DPCD_REV
, mgr
->dpcd
, DP_RECEIVER_CAP_SIZE
);
3516 if (ret
!= DP_RECEIVER_CAP_SIZE
) {
3517 DRM_DEBUG_KMS("failed to read DPCD\n");
3521 mgr
->pbn_div
= drm_dp_get_vc_payload_bw(mgr
->dpcd
[1],
3522 mgr
->dpcd
[2] & DP_MAX_LANE_COUNT_MASK
);
3523 if (mgr
->pbn_div
== 0) {
3528 /* add initial branch device at LCT 1 */
3529 mstb
= drm_dp_add_mst_branch_device(1, NULL
);
3536 /* give this the main reference */
3537 mgr
->mst_primary
= mstb
;
3538 drm_dp_mst_topology_get_mstb(mgr
->mst_primary
);
3540 ret
= drm_dp_dpcd_writeb(mgr
->aux
, DP_MSTM_CTRL
,
3541 DP_MST_EN
| DP_UP_REQ_EN
| DP_UPSTREAM_IS_SRC
);
3547 struct drm_dp_payload reset_pay
;
3548 reset_pay
.start_slot
= 0;
3549 reset_pay
.num_slots
= 0x3f;
3550 drm_dp_dpcd_write_payload(mgr
, 0, &reset_pay
);
3553 queue_work(system_long_wq
, &mgr
->work
);
3557 /* disable MST on the device */
3558 mstb
= mgr
->mst_primary
;
3559 mgr
->mst_primary
= NULL
;
3560 /* this can fail if the device is gone */
3561 drm_dp_dpcd_writeb(mgr
->aux
, DP_MSTM_CTRL
, 0);
3563 mutex_lock(&mgr
->payload_lock
);
3564 memset(mgr
->payloads
, 0, mgr
->max_payloads
* sizeof(struct drm_dp_payload
));
3565 mgr
->payload_mask
= 0;
3566 set_bit(0, &mgr
->payload_mask
);
3567 for (i
= 0; i
< mgr
->max_payloads
; i
++) {
3568 struct drm_dp_vcpi
*vcpi
= mgr
->proposed_vcpis
[i
];
3572 vcpi
->num_slots
= 0;
3574 mgr
->proposed_vcpis
[i
] = NULL
;
3577 mutex_unlock(&mgr
->payload_lock
);
3579 mgr
->payload_id_table_cleared
= false;
3583 mutex_unlock(&mgr
->lock
);
3585 drm_dp_mst_topology_put_mstb(mstb
);
3589 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_set_mst
);
3592 drm_dp_mst_topology_mgr_invalidate_mstb(struct drm_dp_mst_branch
*mstb
)
3594 struct drm_dp_mst_port
*port
;
3596 /* The link address will need to be re-sent on resume */
3597 mstb
->link_address_sent
= false;
3599 list_for_each_entry(port
, &mstb
->ports
, next
) {
3600 /* The PBN for each port will also need to be re-probed */
3601 port
->available_pbn
= 0;
3604 drm_dp_mst_topology_mgr_invalidate_mstb(port
->mstb
);
3609 * drm_dp_mst_topology_mgr_suspend() - suspend the MST manager
3610 * @mgr: manager to suspend
3612 * This function tells the MST device that we can't handle UP messages
3613 * anymore. This should stop it from sending any since we are suspended.
3615 void drm_dp_mst_topology_mgr_suspend(struct drm_dp_mst_topology_mgr
*mgr
)
3617 mutex_lock(&mgr
->lock
);
3618 drm_dp_dpcd_writeb(mgr
->aux
, DP_MSTM_CTRL
,
3619 DP_MST_EN
| DP_UPSTREAM_IS_SRC
);
3620 mutex_unlock(&mgr
->lock
);
3621 flush_work(&mgr
->up_req_work
);
3622 flush_work(&mgr
->work
);
3623 flush_work(&mgr
->delayed_destroy_work
);
3625 mutex_lock(&mgr
->lock
);
3626 if (mgr
->mst_state
&& mgr
->mst_primary
)
3627 drm_dp_mst_topology_mgr_invalidate_mstb(mgr
->mst_primary
);
3628 mutex_unlock(&mgr
->lock
);
3630 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_suspend
);
3633 * drm_dp_mst_topology_mgr_resume() - resume the MST manager
3634 * @mgr: manager to resume
3635 * @sync: whether or not to perform topology reprobing synchronously
3637 * This will fetch DPCD and see if the device is still there,
3638 * if it is, it will rewrite the MSTM control bits, and return.
3640 * If the device fails this returns -1, and the driver should do
3641 * a full MST reprobe, in case we were undocked.
3643 * During system resume (where it is assumed that the driver will be calling
3644 * drm_atomic_helper_resume()) this function should be called beforehand with
3645 * @sync set to true. In contexts like runtime resume where the driver is not
3646 * expected to be calling drm_atomic_helper_resume(), this function should be
3647 * called with @sync set to false in order to avoid deadlocking.
3649 * Returns: -1 if the MST topology was removed while we were suspended, 0
3652 int drm_dp_mst_topology_mgr_resume(struct drm_dp_mst_topology_mgr
*mgr
,
3658 mutex_lock(&mgr
->lock
);
3659 if (!mgr
->mst_primary
)
3662 ret
= drm_dp_dpcd_read(mgr
->aux
, DP_DPCD_REV
, mgr
->dpcd
,
3663 DP_RECEIVER_CAP_SIZE
);
3664 if (ret
!= DP_RECEIVER_CAP_SIZE
) {
3665 DRM_DEBUG_KMS("dpcd read failed - undocked during suspend?\n");
3669 ret
= drm_dp_dpcd_writeb(mgr
->aux
, DP_MSTM_CTRL
,
3672 DP_UPSTREAM_IS_SRC
);
3674 DRM_DEBUG_KMS("mst write failed - undocked during suspend?\n");
3678 /* Some hubs forget their guids after they resume */
3679 ret
= drm_dp_dpcd_read(mgr
->aux
, DP_GUID
, guid
, 16);
3681 DRM_DEBUG_KMS("dpcd read failed - undocked during suspend?\n");
3684 drm_dp_check_mstb_guid(mgr
->mst_primary
, guid
);
3687 * For the final step of resuming the topology, we need to bring the
3688 * state of our in-memory topology back into sync with reality. So,
3689 * restart the probing process as if we're probing a new hub
3691 queue_work(system_long_wq
, &mgr
->work
);
3692 mutex_unlock(&mgr
->lock
);
3695 DRM_DEBUG_KMS("Waiting for link probe work to finish re-syncing topology...\n");
3696 flush_work(&mgr
->work
);
3702 mutex_unlock(&mgr
->lock
);
3705 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_resume
);
3707 static bool drm_dp_get_one_sb_msg(struct drm_dp_mst_topology_mgr
*mgr
, bool up
)
3711 int replylen
, origlen
, curreply
;
3713 struct drm_dp_sideband_msg_rx
*msg
;
3714 int basereg
= up
? DP_SIDEBAND_MSG_UP_REQ_BASE
: DP_SIDEBAND_MSG_DOWN_REP_BASE
;
3715 msg
= up
? &mgr
->up_req_recv
: &mgr
->down_rep_recv
;
3717 len
= min(mgr
->max_dpcd_transaction_bytes
, 16);
3718 ret
= drm_dp_dpcd_read(mgr
->aux
, basereg
,
3721 DRM_DEBUG_KMS("failed to read DPCD down rep %d %d\n", len
, ret
);
3724 ret
= drm_dp_sideband_msg_build(msg
, replyblock
, len
, true);
3726 DRM_DEBUG_KMS("sideband msg build failed %d\n", replyblock
[0]);
3729 replylen
= msg
->curchunk_len
+ msg
->curchunk_hdrlen
;
3734 while (replylen
> 0) {
3735 len
= min3(replylen
, mgr
->max_dpcd_transaction_bytes
, 16);
3736 ret
= drm_dp_dpcd_read(mgr
->aux
, basereg
+ curreply
,
3739 DRM_DEBUG_KMS("failed to read a chunk (len %d, ret %d)\n",
3744 ret
= drm_dp_sideband_msg_build(msg
, replyblock
, len
, false);
3746 DRM_DEBUG_KMS("failed to build sideband msg\n");
3756 static int drm_dp_mst_handle_down_rep(struct drm_dp_mst_topology_mgr
*mgr
)
3758 struct drm_dp_sideband_msg_tx
*txmsg
;
3759 struct drm_dp_mst_branch
*mstb
;
3760 struct drm_dp_sideband_msg_hdr
*hdr
= &mgr
->down_rep_recv
.initial_hdr
;
3763 if (!drm_dp_get_one_sb_msg(mgr
, false))
3764 goto clear_down_rep_recv
;
3766 if (!mgr
->down_rep_recv
.have_eomt
)
3769 mstb
= drm_dp_get_mst_branch_device(mgr
, hdr
->lct
, hdr
->rad
);
3771 DRM_DEBUG_KMS("Got MST reply from unknown device %d\n",
3773 goto clear_down_rep_recv
;
3776 /* find the message */
3778 mutex_lock(&mgr
->qlock
);
3779 txmsg
= mstb
->tx_slots
[slot
];
3780 /* remove from slots */
3781 mutex_unlock(&mgr
->qlock
);
3784 DRM_DEBUG_KMS("Got MST reply with no msg %p %d %d %02x %02x\n",
3785 mstb
, hdr
->seqno
, hdr
->lct
, hdr
->rad
[0],
3786 mgr
->down_rep_recv
.msg
[0]);
3790 drm_dp_sideband_parse_reply(&mgr
->down_rep_recv
, &txmsg
->reply
);
3792 if (txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
)
3793 DRM_DEBUG_KMS("Got NAK reply: req 0x%02x (%s), reason 0x%02x (%s), nak data 0x%02x\n",
3794 txmsg
->reply
.req_type
,
3795 drm_dp_mst_req_type_str(txmsg
->reply
.req_type
),
3796 txmsg
->reply
.u
.nak
.reason
,
3797 drm_dp_mst_nak_reason_str(txmsg
->reply
.u
.nak
.reason
),
3798 txmsg
->reply
.u
.nak
.nak_data
);
3800 memset(&mgr
->down_rep_recv
, 0, sizeof(struct drm_dp_sideband_msg_rx
));
3801 drm_dp_mst_topology_put_mstb(mstb
);
3803 mutex_lock(&mgr
->qlock
);
3804 txmsg
->state
= DRM_DP_SIDEBAND_TX_RX
;
3805 mstb
->tx_slots
[slot
] = NULL
;
3806 mgr
->is_waiting_for_dwn_reply
= false;
3807 mutex_unlock(&mgr
->qlock
);
3809 wake_up_all(&mgr
->tx_waitq
);
3814 drm_dp_mst_topology_put_mstb(mstb
);
3815 clear_down_rep_recv
:
3816 mutex_lock(&mgr
->qlock
);
3817 mgr
->is_waiting_for_dwn_reply
= false;
3818 mutex_unlock(&mgr
->qlock
);
3819 memset(&mgr
->down_rep_recv
, 0, sizeof(struct drm_dp_sideband_msg_rx
));
3825 drm_dp_mst_process_up_req(struct drm_dp_mst_topology_mgr
*mgr
,
3826 struct drm_dp_pending_up_req
*up_req
)
3828 struct drm_dp_mst_branch
*mstb
= NULL
;
3829 struct drm_dp_sideband_msg_req_body
*msg
= &up_req
->msg
;
3830 struct drm_dp_sideband_msg_hdr
*hdr
= &up_req
->hdr
;
3831 bool hotplug
= false;
3833 if (hdr
->broadcast
) {
3834 const u8
*guid
= NULL
;
3836 if (msg
->req_type
== DP_CONNECTION_STATUS_NOTIFY
)
3837 guid
= msg
->u
.conn_stat
.guid
;
3838 else if (msg
->req_type
== DP_RESOURCE_STATUS_NOTIFY
)
3839 guid
= msg
->u
.resource_stat
.guid
;
3841 mstb
= drm_dp_get_mst_branch_device_by_guid(mgr
, guid
);
3843 mstb
= drm_dp_get_mst_branch_device(mgr
, hdr
->lct
, hdr
->rad
);
3847 DRM_DEBUG_KMS("Got MST reply from unknown device %d\n",
3852 /* TODO: Add missing handler for DP_RESOURCE_STATUS_NOTIFY events */
3853 if (msg
->req_type
== DP_CONNECTION_STATUS_NOTIFY
) {
3854 drm_dp_mst_handle_conn_stat(mstb
, &msg
->u
.conn_stat
);
3858 drm_dp_mst_topology_put_mstb(mstb
);
3862 static void drm_dp_mst_up_req_work(struct work_struct
*work
)
3864 struct drm_dp_mst_topology_mgr
*mgr
=
3865 container_of(work
, struct drm_dp_mst_topology_mgr
,
3867 struct drm_dp_pending_up_req
*up_req
;
3868 bool send_hotplug
= false;
3870 mutex_lock(&mgr
->probe_lock
);
3872 mutex_lock(&mgr
->up_req_lock
);
3873 up_req
= list_first_entry_or_null(&mgr
->up_req_list
,
3874 struct drm_dp_pending_up_req
,
3877 list_del(&up_req
->next
);
3878 mutex_unlock(&mgr
->up_req_lock
);
3883 send_hotplug
|= drm_dp_mst_process_up_req(mgr
, up_req
);
3886 mutex_unlock(&mgr
->probe_lock
);
3889 drm_kms_helper_hotplug_event(mgr
->dev
);
3892 static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr
*mgr
)
3894 struct drm_dp_sideband_msg_hdr
*hdr
= &mgr
->up_req_recv
.initial_hdr
;
3895 struct drm_dp_pending_up_req
*up_req
;
3898 if (!drm_dp_get_one_sb_msg(mgr
, true))
3901 if (!mgr
->up_req_recv
.have_eomt
)
3904 up_req
= kzalloc(sizeof(*up_req
), GFP_KERNEL
);
3906 DRM_ERROR("Not enough memory to process MST up req\n");
3909 INIT_LIST_HEAD(&up_req
->next
);
3912 drm_dp_sideband_parse_req(&mgr
->up_req_recv
, &up_req
->msg
);
3914 if (up_req
->msg
.req_type
!= DP_CONNECTION_STATUS_NOTIFY
&&
3915 up_req
->msg
.req_type
!= DP_RESOURCE_STATUS_NOTIFY
) {
3916 DRM_DEBUG_KMS("Received unknown up req type, ignoring: %x\n",
3917 up_req
->msg
.req_type
);
3922 drm_dp_send_up_ack_reply(mgr
, mgr
->mst_primary
, up_req
->msg
.req_type
,
3925 if (up_req
->msg
.req_type
== DP_CONNECTION_STATUS_NOTIFY
) {
3926 const struct drm_dp_connection_status_notify
*conn_stat
=
3927 &up_req
->msg
.u
.conn_stat
;
3929 DRM_DEBUG_KMS("Got CSN: pn: %d ldps:%d ddps: %d mcs: %d ip: %d pdt: %d\n",
3930 conn_stat
->port_number
,
3931 conn_stat
->legacy_device_plug_status
,
3932 conn_stat
->displayport_device_plug_status
,
3933 conn_stat
->message_capability_status
,
3934 conn_stat
->input_port
,
3935 conn_stat
->peer_device_type
);
3936 } else if (up_req
->msg
.req_type
== DP_RESOURCE_STATUS_NOTIFY
) {
3937 const struct drm_dp_resource_status_notify
*res_stat
=
3938 &up_req
->msg
.u
.resource_stat
;
3940 DRM_DEBUG_KMS("Got RSN: pn: %d avail_pbn %d\n",
3941 res_stat
->port_number
,
3942 res_stat
->available_pbn
);
3946 mutex_lock(&mgr
->up_req_lock
);
3947 list_add_tail(&up_req
->next
, &mgr
->up_req_list
);
3948 mutex_unlock(&mgr
->up_req_lock
);
3949 queue_work(system_long_wq
, &mgr
->up_req_work
);
3952 memset(&mgr
->up_req_recv
, 0, sizeof(struct drm_dp_sideband_msg_rx
));
3957 * drm_dp_mst_hpd_irq() - MST hotplug IRQ notify
3958 * @mgr: manager to notify irq for.
3959 * @esi: 4 bytes from SINK_COUNT_ESI
3960 * @handled: whether the hpd interrupt was consumed or not
3962 * This should be called from the driver when it detects a short IRQ,
3963 * along with the value of the DEVICE_SERVICE_IRQ_VECTOR_ESI0. The
3964 * topology manager will process the sideband messages received as a result
3967 int drm_dp_mst_hpd_irq(struct drm_dp_mst_topology_mgr
*mgr
, u8
*esi
, bool *handled
)
3974 if (sc
!= mgr
->sink_count
) {
3975 mgr
->sink_count
= sc
;
3979 if (esi
[1] & DP_DOWN_REP_MSG_RDY
) {
3980 ret
= drm_dp_mst_handle_down_rep(mgr
);
3984 if (esi
[1] & DP_UP_REQ_MSG_RDY
) {
3985 ret
|= drm_dp_mst_handle_up_req(mgr
);
3989 drm_dp_mst_kick_tx(mgr
);
3992 EXPORT_SYMBOL(drm_dp_mst_hpd_irq
);
3995 * drm_dp_mst_detect_port() - get connection status for an MST port
3996 * @connector: DRM connector for this port
3997 * @ctx: The acquisition context to use for grabbing locks
3998 * @mgr: manager for this port
3999 * @port: pointer to a port
4001 * This returns the current connection state for a port.
4004 drm_dp_mst_detect_port(struct drm_connector
*connector
,
4005 struct drm_modeset_acquire_ctx
*ctx
,
4006 struct drm_dp_mst_topology_mgr
*mgr
,
4007 struct drm_dp_mst_port
*port
)
4011 /* we need to search for the port in the mgr in case it's gone */
4012 port
= drm_dp_mst_topology_get_port_validated(mgr
, port
);
4014 return connector_status_disconnected
;
4016 ret
= drm_modeset_lock(&mgr
->base
.lock
, ctx
);
4020 ret
= connector_status_disconnected
;
4025 switch (port
->pdt
) {
4026 case DP_PEER_DEVICE_NONE
:
4027 case DP_PEER_DEVICE_MST_BRANCHING
:
4029 ret
= connector_status_connected
;
4032 case DP_PEER_DEVICE_SST_SINK
:
4033 ret
= connector_status_connected
;
4034 /* for logical ports - cache the EDID */
4035 if (port
->port_num
>= 8 && !port
->cached_edid
) {
4036 port
->cached_edid
= drm_get_edid(connector
, &port
->aux
.ddc
);
4039 case DP_PEER_DEVICE_DP_LEGACY_CONV
:
4041 ret
= connector_status_connected
;
4045 drm_dp_mst_topology_put_port(port
);
4048 EXPORT_SYMBOL(drm_dp_mst_detect_port
);
4051 * drm_dp_mst_port_has_audio() - Check whether port has audio capability or not
4052 * @mgr: manager for this port
4053 * @port: unverified pointer to a port.
4055 * This returns whether the port supports audio or not.
4057 bool drm_dp_mst_port_has_audio(struct drm_dp_mst_topology_mgr
*mgr
,
4058 struct drm_dp_mst_port
*port
)
4062 port
= drm_dp_mst_topology_get_port_validated(mgr
, port
);
4065 ret
= port
->has_audio
;
4066 drm_dp_mst_topology_put_port(port
);
4069 EXPORT_SYMBOL(drm_dp_mst_port_has_audio
);
4072 * drm_dp_mst_get_edid() - get EDID for an MST port
4073 * @connector: toplevel connector to get EDID for
4074 * @mgr: manager for this port
4075 * @port: unverified pointer to a port.
4077 * This returns an EDID for the port connected to a connector,
4078 * It validates the pointer still exists so the caller doesn't require a
4081 struct edid
*drm_dp_mst_get_edid(struct drm_connector
*connector
, struct drm_dp_mst_topology_mgr
*mgr
, struct drm_dp_mst_port
*port
)
4083 struct edid
*edid
= NULL
;
4085 /* we need to search for the port in the mgr in case it's gone */
4086 port
= drm_dp_mst_topology_get_port_validated(mgr
, port
);
4090 if (port
->cached_edid
)
4091 edid
= drm_edid_duplicate(port
->cached_edid
);
4093 edid
= drm_get_edid(connector
, &port
->aux
.ddc
);
4095 port
->has_audio
= drm_detect_monitor_audio(edid
);
4096 drm_dp_mst_topology_put_port(port
);
4099 EXPORT_SYMBOL(drm_dp_mst_get_edid
);
4102 * drm_dp_find_vcpi_slots() - Find VCPI slots for this PBN value
4103 * @mgr: manager to use
4104 * @pbn: payload bandwidth to convert into slots.
4106 * Calculate the number of VCPI slots that will be required for the given PBN
4107 * value. This function is deprecated, and should not be used in atomic
4111 * The total slots required for this port, or error.
4113 int drm_dp_find_vcpi_slots(struct drm_dp_mst_topology_mgr
*mgr
,
4118 num_slots
= DIV_ROUND_UP(pbn
, mgr
->pbn_div
);
4120 /* max. time slots - one slot for MTP header */
4125 EXPORT_SYMBOL(drm_dp_find_vcpi_slots
);
4127 static int drm_dp_init_vcpi(struct drm_dp_mst_topology_mgr
*mgr
,
4128 struct drm_dp_vcpi
*vcpi
, int pbn
, int slots
)
4132 /* max. time slots - one slot for MTP header */
4137 vcpi
->aligned_pbn
= slots
* mgr
->pbn_div
;
4138 vcpi
->num_slots
= slots
;
4140 ret
= drm_dp_mst_assign_payload_id(mgr
, vcpi
);
4147 * drm_dp_atomic_find_vcpi_slots() - Find and add VCPI slots to the state
4148 * @state: global atomic state
4149 * @mgr: MST topology manager for the port
4150 * @port: port to find vcpi slots for
4151 * @pbn: bandwidth required for the mode in PBN
4152 * @pbn_div: divider for DSC mode that takes FEC into account
4154 * Allocates VCPI slots to @port, replacing any previous VCPI allocations it
4155 * may have had. Any atomic drivers which support MST must call this function
4156 * in their &drm_encoder_helper_funcs.atomic_check() callback to change the
4157 * current VCPI allocation for the new state, but only when
4158 * &drm_crtc_state.mode_changed or &drm_crtc_state.connectors_changed is set
4159 * to ensure compatibility with userspace applications that still use the
4160 * legacy modesetting UAPI.
4162 * Allocations set by this function are not checked against the bandwidth
4163 * restraints of @mgr until the driver calls drm_dp_mst_atomic_check().
4165 * Additionally, it is OK to call this function multiple times on the same
4166 * @port as needed. It is not OK however, to call this function and
4167 * drm_dp_atomic_release_vcpi_slots() in the same atomic check phase.
4170 * drm_dp_atomic_release_vcpi_slots()
4171 * drm_dp_mst_atomic_check()
4174 * Total slots in the atomic state assigned for this port, or a negative error
4175 * code if the port no longer exists
4177 int drm_dp_atomic_find_vcpi_slots(struct drm_atomic_state
*state
,
4178 struct drm_dp_mst_topology_mgr
*mgr
,
4179 struct drm_dp_mst_port
*port
, int pbn
,
4182 struct drm_dp_mst_topology_state
*topology_state
;
4183 struct drm_dp_vcpi_allocation
*pos
, *vcpi
= NULL
;
4184 int prev_slots
, prev_bw
, req_slots
;
4186 topology_state
= drm_atomic_get_mst_topology_state(state
, mgr
);
4187 if (IS_ERR(topology_state
))
4188 return PTR_ERR(topology_state
);
4190 /* Find the current allocation for this port, if any */
4191 list_for_each_entry(pos
, &topology_state
->vcpis
, next
) {
4192 if (pos
->port
== port
) {
4194 prev_slots
= vcpi
->vcpi
;
4195 prev_bw
= vcpi
->pbn
;
4198 * This should never happen, unless the driver tries
4199 * releasing and allocating the same VCPI allocation,
4202 if (WARN_ON(!prev_slots
)) {
4203 DRM_ERROR("cannot allocate and release VCPI on [MST PORT:%p] in the same state\n",
4217 pbn_div
= mgr
->pbn_div
;
4219 req_slots
= DIV_ROUND_UP(pbn
, pbn_div
);
4221 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] [MST PORT:%p] VCPI %d -> %d\n",
4222 port
->connector
->base
.id
, port
->connector
->name
,
4223 port
, prev_slots
, req_slots
);
4224 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] [MST PORT:%p] PBN %d -> %d\n",
4225 port
->connector
->base
.id
, port
->connector
->name
,
4226 port
, prev_bw
, pbn
);
4228 /* Add the new allocation to the state */
4230 vcpi
= kzalloc(sizeof(*vcpi
), GFP_KERNEL
);
4234 drm_dp_mst_get_port_malloc(port
);
4236 list_add(&vcpi
->next
, &topology_state
->vcpis
);
4238 vcpi
->vcpi
= req_slots
;
4243 EXPORT_SYMBOL(drm_dp_atomic_find_vcpi_slots
);
4246 * drm_dp_atomic_release_vcpi_slots() - Release allocated vcpi slots
4247 * @state: global atomic state
4248 * @mgr: MST topology manager for the port
4249 * @port: The port to release the VCPI slots from
4251 * Releases any VCPI slots that have been allocated to a port in the atomic
4252 * state. Any atomic drivers which support MST must call this function in
4253 * their &drm_connector_helper_funcs.atomic_check() callback when the
4254 * connector will no longer have VCPI allocated (e.g. because its CRTC was
4255 * removed) when it had VCPI allocated in the previous atomic state.
4257 * It is OK to call this even if @port has been removed from the system.
4258 * Additionally, it is OK to call this function multiple times on the same
4259 * @port as needed. It is not OK however, to call this function and
4260 * drm_dp_atomic_find_vcpi_slots() on the same @port in a single atomic check
4264 * drm_dp_atomic_find_vcpi_slots()
4265 * drm_dp_mst_atomic_check()
4268 * 0 if all slots for this port were added back to
4269 * &drm_dp_mst_topology_state.avail_slots or negative error code
4271 int drm_dp_atomic_release_vcpi_slots(struct drm_atomic_state
*state
,
4272 struct drm_dp_mst_topology_mgr
*mgr
,
4273 struct drm_dp_mst_port
*port
)
4275 struct drm_dp_mst_topology_state
*topology_state
;
4276 struct drm_dp_vcpi_allocation
*pos
;
4279 topology_state
= drm_atomic_get_mst_topology_state(state
, mgr
);
4280 if (IS_ERR(topology_state
))
4281 return PTR_ERR(topology_state
);
4283 list_for_each_entry(pos
, &topology_state
->vcpis
, next
) {
4284 if (pos
->port
== port
) {
4289 if (WARN_ON(!found
)) {
4290 DRM_ERROR("no VCPI for [MST PORT:%p] found in mst state %p\n",
4291 port
, &topology_state
->base
);
4295 DRM_DEBUG_ATOMIC("[MST PORT:%p] VCPI %d -> 0\n", port
, pos
->vcpi
);
4297 drm_dp_mst_put_port_malloc(port
);
4303 EXPORT_SYMBOL(drm_dp_atomic_release_vcpi_slots
);
4306 * drm_dp_mst_allocate_vcpi() - Allocate a virtual channel
4307 * @mgr: manager for this port
4308 * @port: port to allocate a virtual channel for.
4309 * @pbn: payload bandwidth number to request
4310 * @slots: returned number of slots for this PBN.
4312 bool drm_dp_mst_allocate_vcpi(struct drm_dp_mst_topology_mgr
*mgr
,
4313 struct drm_dp_mst_port
*port
, int pbn
, int slots
)
4317 port
= drm_dp_mst_topology_get_port_validated(mgr
, port
);
4324 if (port
->vcpi
.vcpi
> 0) {
4325 DRM_DEBUG_KMS("payload: vcpi %d already allocated for pbn %d - requested pbn %d\n",
4326 port
->vcpi
.vcpi
, port
->vcpi
.pbn
, pbn
);
4327 if (pbn
== port
->vcpi
.pbn
) {
4328 drm_dp_mst_topology_put_port(port
);
4333 ret
= drm_dp_init_vcpi(mgr
, &port
->vcpi
, pbn
, slots
);
4335 DRM_DEBUG_KMS("failed to init vcpi slots=%d max=63 ret=%d\n",
4336 DIV_ROUND_UP(pbn
, mgr
->pbn_div
), ret
);
4339 DRM_DEBUG_KMS("initing vcpi for pbn=%d slots=%d\n",
4340 pbn
, port
->vcpi
.num_slots
);
4342 /* Keep port allocated until its payload has been removed */
4343 drm_dp_mst_get_port_malloc(port
);
4344 drm_dp_mst_topology_put_port(port
);
4349 EXPORT_SYMBOL(drm_dp_mst_allocate_vcpi
);
4351 int drm_dp_mst_get_vcpi_slots(struct drm_dp_mst_topology_mgr
*mgr
, struct drm_dp_mst_port
*port
)
4354 port
= drm_dp_mst_topology_get_port_validated(mgr
, port
);
4358 slots
= port
->vcpi
.num_slots
;
4359 drm_dp_mst_topology_put_port(port
);
4362 EXPORT_SYMBOL(drm_dp_mst_get_vcpi_slots
);
4365 * drm_dp_mst_reset_vcpi_slots() - Reset number of slots to 0 for VCPI
4366 * @mgr: manager for this port
4367 * @port: unverified pointer to a port.
4369 * This just resets the number of slots for the ports VCPI for later programming.
4371 void drm_dp_mst_reset_vcpi_slots(struct drm_dp_mst_topology_mgr
*mgr
, struct drm_dp_mst_port
*port
)
4374 * A port with VCPI will remain allocated until its VCPI is
4375 * released, no verified ref needed
4378 port
->vcpi
.num_slots
= 0;
4380 EXPORT_SYMBOL(drm_dp_mst_reset_vcpi_slots
);
4383 * drm_dp_mst_deallocate_vcpi() - deallocate a VCPI
4384 * @mgr: manager for this port
4385 * @port: port to deallocate vcpi for
4387 * This can be called unconditionally, regardless of whether
4388 * drm_dp_mst_allocate_vcpi() succeeded or not.
4390 void drm_dp_mst_deallocate_vcpi(struct drm_dp_mst_topology_mgr
*mgr
,
4391 struct drm_dp_mst_port
*port
)
4393 if (!port
->vcpi
.vcpi
)
4396 drm_dp_mst_put_payload_id(mgr
, port
->vcpi
.vcpi
);
4397 port
->vcpi
.num_slots
= 0;
4399 port
->vcpi
.aligned_pbn
= 0;
4400 port
->vcpi
.vcpi
= 0;
4401 drm_dp_mst_put_port_malloc(port
);
4403 EXPORT_SYMBOL(drm_dp_mst_deallocate_vcpi
);
4405 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr
*mgr
,
4406 int id
, struct drm_dp_payload
*payload
)
4408 u8 payload_alloc
[3], status
;
4412 drm_dp_dpcd_writeb(mgr
->aux
, DP_PAYLOAD_TABLE_UPDATE_STATUS
,
4413 DP_PAYLOAD_TABLE_UPDATED
);
4415 payload_alloc
[0] = id
;
4416 payload_alloc
[1] = payload
->start_slot
;
4417 payload_alloc
[2] = payload
->num_slots
;
4419 ret
= drm_dp_dpcd_write(mgr
->aux
, DP_PAYLOAD_ALLOCATE_SET
, payload_alloc
, 3);
4421 DRM_DEBUG_KMS("failed to write payload allocation %d\n", ret
);
4426 ret
= drm_dp_dpcd_readb(mgr
->aux
, DP_PAYLOAD_TABLE_UPDATE_STATUS
, &status
);
4428 DRM_DEBUG_KMS("failed to read payload table status %d\n", ret
);
4432 if (!(status
& DP_PAYLOAD_TABLE_UPDATED
)) {
4435 usleep_range(10000, 20000);
4438 DRM_DEBUG_KMS("status not set after read payload table status %d\n", status
);
4449 * drm_dp_check_act_status() - Check ACT handled status.
4450 * @mgr: manager to use
4452 * Check the payload status bits in the DPCD for ACT handled completion.
4454 int drm_dp_check_act_status(struct drm_dp_mst_topology_mgr
*mgr
)
4461 ret
= drm_dp_dpcd_readb(mgr
->aux
, DP_PAYLOAD_TABLE_UPDATE_STATUS
, &status
);
4464 DRM_DEBUG_KMS("failed to read payload table status %d\n", ret
);
4468 if (status
& DP_PAYLOAD_ACT_HANDLED
)
4473 } while (count
< 30);
4475 if (!(status
& DP_PAYLOAD_ACT_HANDLED
)) {
4476 DRM_DEBUG_KMS("failed to get ACT bit %d after %d retries\n", status
, count
);
4484 EXPORT_SYMBOL(drm_dp_check_act_status
);
4487 * drm_dp_calc_pbn_mode() - Calculate the PBN for a mode.
4488 * @clock: dot clock for the mode
4489 * @bpp: bpp for the mode.
4490 * @dsc: DSC mode. If true, bpp has units of 1/16 of a bit per pixel
4492 * This uses the formula in the spec to calculate the PBN value for a mode.
4494 int drm_dp_calc_pbn_mode(int clock
, int bpp
, bool dsc
)
4497 * margin 5300ppm + 300ppm ~ 0.6% as per spec, factor is 1.006
4498 * The unit of 54/64Mbytes/sec is an arbitrary unit chosen based on
4499 * common multiplier to render an integer PBN for all link rate/lane
4500 * counts combinations
4502 * peak_kbps *= (1006/1000)
4503 * peak_kbps *= (64/54)
4504 * peak_kbps *= 8 convert to bytes
4506 * If the bpp is in units of 1/16, further divide by 16. Put this
4507 * factor in the numerator rather than the denominator to avoid
4512 return DIV_ROUND_UP_ULL(mul_u32_u32(clock
* (bpp
/ 16), 64 * 1006),
4513 8 * 54 * 1000 * 1000);
4515 return DIV_ROUND_UP_ULL(mul_u32_u32(clock
* bpp
, 64 * 1006),
4516 8 * 54 * 1000 * 1000);
4518 EXPORT_SYMBOL(drm_dp_calc_pbn_mode
);
4520 /* we want to kick the TX after we've ack the up/down IRQs. */
4521 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr
*mgr
)
4523 queue_work(system_long_wq
, &mgr
->tx_work
);
4526 static void drm_dp_mst_dump_mstb(struct seq_file
*m
,
4527 struct drm_dp_mst_branch
*mstb
)
4529 struct drm_dp_mst_port
*port
;
4530 int tabs
= mstb
->lct
;
4534 for (i
= 0; i
< tabs
; i
++)
4538 seq_printf(m
, "%smst: %p, %d\n", prefix
, mstb
, mstb
->num_ports
);
4539 list_for_each_entry(port
, &mstb
->ports
, next
) {
4540 seq_printf(m
, "%sport: %d: input: %d: pdt: %d, ddps: %d ldps: %d, sdp: %d/%d, %p, conn: %p\n", prefix
, port
->port_num
, port
->input
, port
->pdt
, port
->ddps
, port
->ldps
, port
->num_sdp_streams
, port
->num_sdp_stream_sinks
, port
, port
->connector
);
4542 drm_dp_mst_dump_mstb(m
, port
->mstb
);
4546 #define DP_PAYLOAD_TABLE_SIZE 64
4548 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr
*mgr
,
4553 for (i
= 0; i
< DP_PAYLOAD_TABLE_SIZE
; i
+= 16) {
4554 if (drm_dp_dpcd_read(mgr
->aux
,
4555 DP_PAYLOAD_TABLE_UPDATE_STATUS
+ i
,
4562 static void fetch_monitor_name(struct drm_dp_mst_topology_mgr
*mgr
,
4563 struct drm_dp_mst_port
*port
, char *name
,
4566 struct edid
*mst_edid
;
4568 mst_edid
= drm_dp_mst_get_edid(port
->connector
, mgr
, port
);
4569 drm_edid_get_monitor_name(mst_edid
, name
, namelen
);
4573 * drm_dp_mst_dump_topology(): dump topology to seq file.
4574 * @m: seq_file to dump output to
4575 * @mgr: manager to dump current topology for.
4577 * helper to dump MST topology to a seq file for debugfs.
4579 void drm_dp_mst_dump_topology(struct seq_file
*m
,
4580 struct drm_dp_mst_topology_mgr
*mgr
)
4583 struct drm_dp_mst_port
*port
;
4585 mutex_lock(&mgr
->lock
);
4586 if (mgr
->mst_primary
)
4587 drm_dp_mst_dump_mstb(m
, mgr
->mst_primary
);
4590 mutex_unlock(&mgr
->lock
);
4592 mutex_lock(&mgr
->payload_lock
);
4593 seq_printf(m
, "vcpi: %lx %lx %d\n", mgr
->payload_mask
, mgr
->vcpi_mask
,
4596 for (i
= 0; i
< mgr
->max_payloads
; i
++) {
4597 if (mgr
->proposed_vcpis
[i
]) {
4600 port
= container_of(mgr
->proposed_vcpis
[i
], struct drm_dp_mst_port
, vcpi
);
4601 fetch_monitor_name(mgr
, port
, name
, sizeof(name
));
4602 seq_printf(m
, "vcpi %d: %d %d %d sink name: %s\n", i
,
4603 port
->port_num
, port
->vcpi
.vcpi
,
4604 port
->vcpi
.num_slots
,
4605 (*name
!= 0) ? name
: "Unknown");
4607 seq_printf(m
, "vcpi %d:unused\n", i
);
4609 for (i
= 0; i
< mgr
->max_payloads
; i
++) {
4610 seq_printf(m
, "payload %d: %d, %d, %d\n",
4612 mgr
->payloads
[i
].payload_state
,
4613 mgr
->payloads
[i
].start_slot
,
4614 mgr
->payloads
[i
].num_slots
);
4618 mutex_unlock(&mgr
->payload_lock
);
4620 mutex_lock(&mgr
->lock
);
4621 if (mgr
->mst_primary
) {
4622 u8 buf
[DP_PAYLOAD_TABLE_SIZE
];
4625 ret
= drm_dp_dpcd_read(mgr
->aux
, DP_DPCD_REV
, buf
, DP_RECEIVER_CAP_SIZE
);
4626 seq_printf(m
, "dpcd: %*ph\n", DP_RECEIVER_CAP_SIZE
, buf
);
4627 ret
= drm_dp_dpcd_read(mgr
->aux
, DP_FAUX_CAP
, buf
, 2);
4628 seq_printf(m
, "faux/mst: %*ph\n", 2, buf
);
4629 ret
= drm_dp_dpcd_read(mgr
->aux
, DP_MSTM_CTRL
, buf
, 1);
4630 seq_printf(m
, "mst ctrl: %*ph\n", 1, buf
);
4632 /* dump the standard OUI branch header */
4633 ret
= drm_dp_dpcd_read(mgr
->aux
, DP_BRANCH_OUI
, buf
, DP_BRANCH_OUI_HEADER_SIZE
);
4634 seq_printf(m
, "branch oui: %*phN devid: ", 3, buf
);
4635 for (i
= 0x3; i
< 0x8 && buf
[i
]; i
++)
4636 seq_printf(m
, "%c", buf
[i
]);
4637 seq_printf(m
, " revision: hw: %x.%x sw: %x.%x\n",
4638 buf
[0x9] >> 4, buf
[0x9] & 0xf, buf
[0xa], buf
[0xb]);
4639 if (dump_dp_payload_table(mgr
, buf
))
4640 seq_printf(m
, "payload table: %*ph\n", DP_PAYLOAD_TABLE_SIZE
, buf
);
4643 mutex_unlock(&mgr
->lock
);
4646 EXPORT_SYMBOL(drm_dp_mst_dump_topology
);
4648 static void drm_dp_tx_work(struct work_struct
*work
)
4650 struct drm_dp_mst_topology_mgr
*mgr
= container_of(work
, struct drm_dp_mst_topology_mgr
, tx_work
);
4652 mutex_lock(&mgr
->qlock
);
4653 if (!list_empty(&mgr
->tx_msg_downq
) && !mgr
->is_waiting_for_dwn_reply
)
4654 process_single_down_tx_qlock(mgr
);
4655 mutex_unlock(&mgr
->qlock
);
4659 drm_dp_delayed_destroy_port(struct drm_dp_mst_port
*port
)
4661 if (port
->connector
)
4662 port
->mgr
->cbs
->destroy_connector(port
->mgr
, port
->connector
);
4664 drm_dp_port_set_pdt(port
, DP_PEER_DEVICE_NONE
, port
->mcs
);
4665 drm_dp_mst_put_port_malloc(port
);
4669 drm_dp_delayed_destroy_mstb(struct drm_dp_mst_branch
*mstb
)
4671 struct drm_dp_mst_topology_mgr
*mgr
= mstb
->mgr
;
4672 struct drm_dp_mst_port
*port
, *tmp
;
4673 bool wake_tx
= false;
4675 mutex_lock(&mgr
->lock
);
4676 list_for_each_entry_safe(port
, tmp
, &mstb
->ports
, next
) {
4677 list_del(&port
->next
);
4678 drm_dp_mst_topology_put_port(port
);
4680 mutex_unlock(&mgr
->lock
);
4682 /* drop any tx slots msg */
4683 mutex_lock(&mstb
->mgr
->qlock
);
4684 if (mstb
->tx_slots
[0]) {
4685 mstb
->tx_slots
[0]->state
= DRM_DP_SIDEBAND_TX_TIMEOUT
;
4686 mstb
->tx_slots
[0] = NULL
;
4689 if (mstb
->tx_slots
[1]) {
4690 mstb
->tx_slots
[1]->state
= DRM_DP_SIDEBAND_TX_TIMEOUT
;
4691 mstb
->tx_slots
[1] = NULL
;
4694 mutex_unlock(&mstb
->mgr
->qlock
);
4697 wake_up_all(&mstb
->mgr
->tx_waitq
);
4699 drm_dp_mst_put_mstb_malloc(mstb
);
4702 static void drm_dp_delayed_destroy_work(struct work_struct
*work
)
4704 struct drm_dp_mst_topology_mgr
*mgr
=
4705 container_of(work
, struct drm_dp_mst_topology_mgr
,
4706 delayed_destroy_work
);
4707 bool send_hotplug
= false, go_again
;
4710 * Not a regular list traverse as we have to drop the destroy
4711 * connector lock before destroying the mstb/port, to avoid AB->BA
4712 * ordering between this lock and the config mutex.
4718 struct drm_dp_mst_branch
*mstb
;
4720 mutex_lock(&mgr
->delayed_destroy_lock
);
4721 mstb
= list_first_entry_or_null(&mgr
->destroy_branch_device_list
,
4722 struct drm_dp_mst_branch
,
4725 list_del(&mstb
->destroy_next
);
4726 mutex_unlock(&mgr
->delayed_destroy_lock
);
4731 drm_dp_delayed_destroy_mstb(mstb
);
4736 struct drm_dp_mst_port
*port
;
4738 mutex_lock(&mgr
->delayed_destroy_lock
);
4739 port
= list_first_entry_or_null(&mgr
->destroy_port_list
,
4740 struct drm_dp_mst_port
,
4743 list_del(&port
->next
);
4744 mutex_unlock(&mgr
->delayed_destroy_lock
);
4749 drm_dp_delayed_destroy_port(port
);
4750 send_hotplug
= true;
4756 drm_kms_helper_hotplug_event(mgr
->dev
);
4759 static struct drm_private_state
*
4760 drm_dp_mst_duplicate_state(struct drm_private_obj
*obj
)
4762 struct drm_dp_mst_topology_state
*state
, *old_state
=
4763 to_dp_mst_topology_state(obj
->state
);
4764 struct drm_dp_vcpi_allocation
*pos
, *vcpi
;
4766 state
= kmemdup(old_state
, sizeof(*state
), GFP_KERNEL
);
4770 __drm_atomic_helper_private_obj_duplicate_state(obj
, &state
->base
);
4772 INIT_LIST_HEAD(&state
->vcpis
);
4774 list_for_each_entry(pos
, &old_state
->vcpis
, next
) {
4775 /* Prune leftover freed VCPI allocations */
4779 vcpi
= kmemdup(pos
, sizeof(*vcpi
), GFP_KERNEL
);
4783 drm_dp_mst_get_port_malloc(vcpi
->port
);
4784 list_add(&vcpi
->next
, &state
->vcpis
);
4787 return &state
->base
;
4790 list_for_each_entry_safe(pos
, vcpi
, &state
->vcpis
, next
) {
4791 drm_dp_mst_put_port_malloc(pos
->port
);
4799 static void drm_dp_mst_destroy_state(struct drm_private_obj
*obj
,
4800 struct drm_private_state
*state
)
4802 struct drm_dp_mst_topology_state
*mst_state
=
4803 to_dp_mst_topology_state(state
);
4804 struct drm_dp_vcpi_allocation
*pos
, *tmp
;
4806 list_for_each_entry_safe(pos
, tmp
, &mst_state
->vcpis
, next
) {
4807 /* We only keep references to ports with non-zero VCPIs */
4809 drm_dp_mst_put_port_malloc(pos
->port
);
4816 static bool drm_dp_mst_port_downstream_of_branch(struct drm_dp_mst_port
*port
,
4817 struct drm_dp_mst_branch
*branch
)
4819 while (port
->parent
) {
4820 if (port
->parent
== branch
)
4823 if (port
->parent
->port_parent
)
4824 port
= port
->parent
->port_parent
;
4832 int drm_dp_mst_atomic_check_bw_limit(struct drm_dp_mst_branch
*branch
,
4833 struct drm_dp_mst_topology_state
*mst_state
)
4835 struct drm_dp_mst_port
*port
;
4836 struct drm_dp_vcpi_allocation
*vcpi
;
4837 int pbn_limit
= 0, pbn_used
= 0;
4839 list_for_each_entry(port
, &branch
->ports
, next
) {
4841 if (drm_dp_mst_atomic_check_bw_limit(port
->mstb
, mst_state
))
4844 if (port
->available_pbn
> 0)
4845 pbn_limit
= port
->available_pbn
;
4847 DRM_DEBUG_ATOMIC("[MST BRANCH:%p] branch has %d PBN available\n",
4850 list_for_each_entry(vcpi
, &mst_state
->vcpis
, next
) {
4854 if (drm_dp_mst_port_downstream_of_branch(vcpi
->port
, branch
))
4855 pbn_used
+= vcpi
->pbn
;
4857 DRM_DEBUG_ATOMIC("[MST BRANCH:%p] branch used %d PBN\n",
4860 if (pbn_used
> pbn_limit
) {
4861 DRM_DEBUG_ATOMIC("[MST BRANCH:%p] No available bandwidth\n",
4869 drm_dp_mst_atomic_check_vcpi_alloc_limit(struct drm_dp_mst_topology_mgr
*mgr
,
4870 struct drm_dp_mst_topology_state
*mst_state
)
4872 struct drm_dp_vcpi_allocation
*vcpi
;
4873 int avail_slots
= 63, payload_count
= 0;
4875 list_for_each_entry(vcpi
, &mst_state
->vcpis
, next
) {
4876 /* Releasing VCPI is always OK-even if the port is gone */
4878 DRM_DEBUG_ATOMIC("[MST PORT:%p] releases all VCPI slots\n",
4883 DRM_DEBUG_ATOMIC("[MST PORT:%p] requires %d vcpi slots\n",
4884 vcpi
->port
, vcpi
->vcpi
);
4886 avail_slots
-= vcpi
->vcpi
;
4887 if (avail_slots
< 0) {
4888 DRM_DEBUG_ATOMIC("[MST PORT:%p] not enough VCPI slots in mst state %p (avail=%d)\n",
4889 vcpi
->port
, mst_state
,
4890 avail_slots
+ vcpi
->vcpi
);
4894 if (++payload_count
> mgr
->max_payloads
) {
4895 DRM_DEBUG_ATOMIC("[MST MGR:%p] state %p has too many payloads (max=%d)\n",
4896 mgr
, mst_state
, mgr
->max_payloads
);
4900 DRM_DEBUG_ATOMIC("[MST MGR:%p] mst state %p VCPI avail=%d used=%d\n",
4901 mgr
, mst_state
, avail_slots
,
4908 * drm_dp_mst_add_affected_dsc_crtcs
4909 * @state: Pointer to the new struct drm_dp_mst_topology_state
4910 * @mgr: MST topology manager
4912 * Whenever there is a change in mst topology
4913 * DSC configuration would have to be recalculated
4914 * therefore we need to trigger modeset on all affected
4915 * CRTCs in that topology
4918 * drm_dp_mst_atomic_enable_dsc()
4920 int drm_dp_mst_add_affected_dsc_crtcs(struct drm_atomic_state
*state
, struct drm_dp_mst_topology_mgr
*mgr
)
4922 struct drm_dp_mst_topology_state
*mst_state
;
4923 struct drm_dp_vcpi_allocation
*pos
;
4924 struct drm_connector
*connector
;
4925 struct drm_connector_state
*conn_state
;
4926 struct drm_crtc
*crtc
;
4927 struct drm_crtc_state
*crtc_state
;
4929 mst_state
= drm_atomic_get_mst_topology_state(state
, mgr
);
4931 if (IS_ERR(mst_state
))
4934 list_for_each_entry(pos
, &mst_state
->vcpis
, next
) {
4936 connector
= pos
->port
->connector
;
4941 conn_state
= drm_atomic_get_connector_state(state
, connector
);
4943 if (IS_ERR(conn_state
))
4944 return PTR_ERR(conn_state
);
4946 crtc
= conn_state
->crtc
;
4951 if (!drm_dp_mst_dsc_aux_for_port(pos
->port
))
4954 crtc_state
= drm_atomic_get_crtc_state(mst_state
->base
.state
, crtc
);
4956 if (IS_ERR(crtc_state
))
4957 return PTR_ERR(crtc_state
);
4959 DRM_DEBUG_ATOMIC("[MST MGR:%p] Setting mode_changed flag on CRTC %p\n",
4962 crtc_state
->mode_changed
= true;
4966 EXPORT_SYMBOL(drm_dp_mst_add_affected_dsc_crtcs
);
4969 * drm_dp_mst_atomic_enable_dsc - Set DSC Enable Flag to On/Off
4970 * @state: Pointer to the new drm_atomic_state
4971 * @port: Pointer to the affected MST Port
4972 * @pbn: Newly recalculated bw required for link with DSC enabled
4973 * @pbn_div: Divider to calculate correct number of pbn per slot
4974 * @enable: Boolean flag to enable or disable DSC on the port
4976 * This function enables DSC on the given Port
4977 * by recalculating its vcpi from pbn provided
4978 * and sets dsc_enable flag to keep track of which
4979 * ports have DSC enabled
4982 int drm_dp_mst_atomic_enable_dsc(struct drm_atomic_state
*state
,
4983 struct drm_dp_mst_port
*port
,
4984 int pbn
, int pbn_div
,
4987 struct drm_dp_mst_topology_state
*mst_state
;
4988 struct drm_dp_vcpi_allocation
*pos
;
4992 mst_state
= drm_atomic_get_mst_topology_state(state
, port
->mgr
);
4994 if (IS_ERR(mst_state
))
4995 return PTR_ERR(mst_state
);
4997 list_for_each_entry(pos
, &mst_state
->vcpis
, next
) {
4998 if (pos
->port
== port
) {
5005 DRM_DEBUG_ATOMIC("[MST PORT:%p] Couldn't find VCPI allocation in mst state %p\n",
5010 if (pos
->dsc_enabled
== enable
) {
5011 DRM_DEBUG_ATOMIC("[MST PORT:%p] DSC flag is already set to %d, returning %d VCPI slots\n",
5012 port
, enable
, pos
->vcpi
);
5017 vcpi
= drm_dp_atomic_find_vcpi_slots(state
, port
->mgr
, port
, pbn
, pbn_div
);
5018 DRM_DEBUG_ATOMIC("[MST PORT:%p] Enabling DSC flag, reallocating %d VCPI slots on the port\n",
5024 pos
->dsc_enabled
= enable
;
5028 EXPORT_SYMBOL(drm_dp_mst_atomic_enable_dsc
);
5030 * drm_dp_mst_atomic_check - Check that the new state of an MST topology in an
5031 * atomic update is valid
5032 * @state: Pointer to the new &struct drm_dp_mst_topology_state
5034 * Checks the given topology state for an atomic update to ensure that it's
5035 * valid. This includes checking whether there's enough bandwidth to support
5036 * the new VCPI allocations in the atomic update.
5038 * Any atomic drivers supporting DP MST must make sure to call this after
5039 * checking the rest of their state in their
5040 * &drm_mode_config_funcs.atomic_check() callback.
5043 * drm_dp_atomic_find_vcpi_slots()
5044 * drm_dp_atomic_release_vcpi_slots()
5048 * 0 if the new state is valid, negative error code otherwise.
5050 int drm_dp_mst_atomic_check(struct drm_atomic_state
*state
)
5052 struct drm_dp_mst_topology_mgr
*mgr
;
5053 struct drm_dp_mst_topology_state
*mst_state
;
5056 for_each_new_mst_mgr_in_state(state
, mgr
, mst_state
, i
) {
5057 if (!mgr
->mst_state
)
5060 ret
= drm_dp_mst_atomic_check_vcpi_alloc_limit(mgr
, mst_state
);
5063 ret
= drm_dp_mst_atomic_check_bw_limit(mgr
->mst_primary
, mst_state
);
5070 EXPORT_SYMBOL(drm_dp_mst_atomic_check
);
5072 const struct drm_private_state_funcs drm_dp_mst_topology_state_funcs
= {
5073 .atomic_duplicate_state
= drm_dp_mst_duplicate_state
,
5074 .atomic_destroy_state
= drm_dp_mst_destroy_state
,
5076 EXPORT_SYMBOL(drm_dp_mst_topology_state_funcs
);
5079 * drm_atomic_get_mst_topology_state: get MST topology state
5081 * @state: global atomic state
5082 * @mgr: MST topology manager, also the private object in this case
5084 * This function wraps drm_atomic_get_priv_obj_state() passing in the MST atomic
5085 * state vtable so that the private object state returned is that of a MST
5086 * topology object. Also, drm_atomic_get_private_obj_state() expects the caller
5087 * to care of the locking, so warn if don't hold the connection_mutex.
5091 * The MST topology state or error pointer.
5093 struct drm_dp_mst_topology_state
*drm_atomic_get_mst_topology_state(struct drm_atomic_state
*state
,
5094 struct drm_dp_mst_topology_mgr
*mgr
)
5096 return to_dp_mst_topology_state(drm_atomic_get_private_obj_state(state
, &mgr
->base
));
5098 EXPORT_SYMBOL(drm_atomic_get_mst_topology_state
);
5101 * drm_dp_mst_topology_mgr_init - initialise a topology manager
5102 * @mgr: manager struct to initialise
5103 * @dev: device providing this structure - for i2c addition.
5104 * @aux: DP helper aux channel to talk to this device
5105 * @max_dpcd_transaction_bytes: hw specific DPCD transaction limit
5106 * @max_payloads: maximum number of payloads this GPU can source
5107 * @conn_base_id: the connector object ID the MST device is connected to.
5109 * Return 0 for success, or negative error code on failure
5111 int drm_dp_mst_topology_mgr_init(struct drm_dp_mst_topology_mgr
*mgr
,
5112 struct drm_device
*dev
, struct drm_dp_aux
*aux
,
5113 int max_dpcd_transaction_bytes
,
5114 int max_payloads
, int conn_base_id
)
5116 struct drm_dp_mst_topology_state
*mst_state
;
5118 mutex_init(&mgr
->lock
);
5119 mutex_init(&mgr
->qlock
);
5120 mutex_init(&mgr
->payload_lock
);
5121 mutex_init(&mgr
->delayed_destroy_lock
);
5122 mutex_init(&mgr
->up_req_lock
);
5123 mutex_init(&mgr
->probe_lock
);
5124 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
5125 mutex_init(&mgr
->topology_ref_history_lock
);
5127 INIT_LIST_HEAD(&mgr
->tx_msg_downq
);
5128 INIT_LIST_HEAD(&mgr
->destroy_port_list
);
5129 INIT_LIST_HEAD(&mgr
->destroy_branch_device_list
);
5130 INIT_LIST_HEAD(&mgr
->up_req_list
);
5131 INIT_WORK(&mgr
->work
, drm_dp_mst_link_probe_work
);
5132 INIT_WORK(&mgr
->tx_work
, drm_dp_tx_work
);
5133 INIT_WORK(&mgr
->delayed_destroy_work
, drm_dp_delayed_destroy_work
);
5134 INIT_WORK(&mgr
->up_req_work
, drm_dp_mst_up_req_work
);
5135 init_waitqueue_head(&mgr
->tx_waitq
);
5138 mgr
->max_dpcd_transaction_bytes
= max_dpcd_transaction_bytes
;
5139 mgr
->max_payloads
= max_payloads
;
5140 mgr
->conn_base_id
= conn_base_id
;
5141 if (max_payloads
+ 1 > sizeof(mgr
->payload_mask
) * 8 ||
5142 max_payloads
+ 1 > sizeof(mgr
->vcpi_mask
) * 8)
5144 mgr
->payloads
= kcalloc(max_payloads
, sizeof(struct drm_dp_payload
), GFP_KERNEL
);
5147 mgr
->proposed_vcpis
= kcalloc(max_payloads
, sizeof(struct drm_dp_vcpi
*), GFP_KERNEL
);
5148 if (!mgr
->proposed_vcpis
)
5150 set_bit(0, &mgr
->payload_mask
);
5152 mst_state
= kzalloc(sizeof(*mst_state
), GFP_KERNEL
);
5153 if (mst_state
== NULL
)
5156 mst_state
->mgr
= mgr
;
5157 INIT_LIST_HEAD(&mst_state
->vcpis
);
5159 drm_atomic_private_obj_init(dev
, &mgr
->base
,
5161 &drm_dp_mst_topology_state_funcs
);
5165 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_init
);
5168 * drm_dp_mst_topology_mgr_destroy() - destroy topology manager.
5169 * @mgr: manager to destroy
5171 void drm_dp_mst_topology_mgr_destroy(struct drm_dp_mst_topology_mgr
*mgr
)
5173 drm_dp_mst_topology_mgr_set_mst(mgr
, false);
5174 flush_work(&mgr
->work
);
5175 cancel_work_sync(&mgr
->delayed_destroy_work
);
5176 mutex_lock(&mgr
->payload_lock
);
5177 kfree(mgr
->payloads
);
5178 mgr
->payloads
= NULL
;
5179 kfree(mgr
->proposed_vcpis
);
5180 mgr
->proposed_vcpis
= NULL
;
5181 mutex_unlock(&mgr
->payload_lock
);
5184 drm_atomic_private_obj_fini(&mgr
->base
);
5187 mutex_destroy(&mgr
->delayed_destroy_lock
);
5188 mutex_destroy(&mgr
->payload_lock
);
5189 mutex_destroy(&mgr
->qlock
);
5190 mutex_destroy(&mgr
->lock
);
5191 mutex_destroy(&mgr
->up_req_lock
);
5192 mutex_destroy(&mgr
->probe_lock
);
5193 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
5194 mutex_destroy(&mgr
->topology_ref_history_lock
);
5197 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_destroy
);
5199 static bool remote_i2c_read_ok(const struct i2c_msg msgs
[], int num
)
5203 if (num
- 1 > DP_REMOTE_I2C_READ_MAX_TRANSACTIONS
)
5206 for (i
= 0; i
< num
- 1; i
++) {
5207 if (msgs
[i
].flags
& I2C_M_RD
||
5212 return msgs
[num
- 1].flags
& I2C_M_RD
&&
5213 msgs
[num
- 1].len
<= 0xff;
5217 static int drm_dp_mst_i2c_xfer(struct i2c_adapter
*adapter
, struct i2c_msg
*msgs
,
5220 struct drm_dp_aux
*aux
= adapter
->algo_data
;
5221 struct drm_dp_mst_port
*port
= container_of(aux
, struct drm_dp_mst_port
, aux
);
5222 struct drm_dp_mst_branch
*mstb
;
5223 struct drm_dp_mst_topology_mgr
*mgr
= port
->mgr
;
5225 struct drm_dp_sideband_msg_req_body msg
;
5226 struct drm_dp_sideband_msg_tx
*txmsg
= NULL
;
5229 mstb
= drm_dp_mst_topology_get_mstb_validated(mgr
, port
->parent
);
5233 if (!remote_i2c_read_ok(msgs
, num
)) {
5234 DRM_DEBUG_KMS("Unsupported I2C transaction for MST device\n");
5239 memset(&msg
, 0, sizeof(msg
));
5240 msg
.req_type
= DP_REMOTE_I2C_READ
;
5241 msg
.u
.i2c_read
.num_transactions
= num
- 1;
5242 msg
.u
.i2c_read
.port_number
= port
->port_num
;
5243 for (i
= 0; i
< num
- 1; i
++) {
5244 msg
.u
.i2c_read
.transactions
[i
].i2c_dev_id
= msgs
[i
].addr
;
5245 msg
.u
.i2c_read
.transactions
[i
].num_bytes
= msgs
[i
].len
;
5246 msg
.u
.i2c_read
.transactions
[i
].bytes
= msgs
[i
].buf
;
5247 msg
.u
.i2c_read
.transactions
[i
].no_stop_bit
= !(msgs
[i
].flags
& I2C_M_STOP
);
5249 msg
.u
.i2c_read
.read_i2c_device_id
= msgs
[num
- 1].addr
;
5250 msg
.u
.i2c_read
.num_bytes_read
= msgs
[num
- 1].len
;
5252 txmsg
= kzalloc(sizeof(*txmsg
), GFP_KERNEL
);
5259 drm_dp_encode_sideband_req(&msg
, txmsg
);
5261 drm_dp_queue_down_tx(mgr
, txmsg
);
5263 ret
= drm_dp_mst_wait_tx_reply(mstb
, txmsg
);
5266 if (txmsg
->reply
.reply_type
== DP_SIDEBAND_REPLY_NAK
) {
5270 if (txmsg
->reply
.u
.remote_i2c_read_ack
.num_bytes
!= msgs
[num
- 1].len
) {
5274 memcpy(msgs
[num
- 1].buf
, txmsg
->reply
.u
.remote_i2c_read_ack
.bytes
, msgs
[num
- 1].len
);
5279 drm_dp_mst_topology_put_mstb(mstb
);
5283 static u32
drm_dp_mst_i2c_functionality(struct i2c_adapter
*adapter
)
5285 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
|
5286 I2C_FUNC_SMBUS_READ_BLOCK_DATA
|
5287 I2C_FUNC_SMBUS_BLOCK_PROC_CALL
|
5288 I2C_FUNC_10BIT_ADDR
;
5291 static const struct i2c_algorithm drm_dp_mst_i2c_algo
= {
5292 .functionality
= drm_dp_mst_i2c_functionality
,
5293 .master_xfer
= drm_dp_mst_i2c_xfer
,
5297 * drm_dp_mst_register_i2c_bus() - register an I2C adapter for I2C-over-AUX
5298 * @aux: DisplayPort AUX channel
5300 * Returns 0 on success or a negative error code on failure.
5302 static int drm_dp_mst_register_i2c_bus(struct drm_dp_aux
*aux
)
5304 aux
->ddc
.algo
= &drm_dp_mst_i2c_algo
;
5305 aux
->ddc
.algo_data
= aux
;
5306 aux
->ddc
.retries
= 3;
5308 aux
->ddc
.class = I2C_CLASS_DDC
;
5309 aux
->ddc
.owner
= THIS_MODULE
;
5310 aux
->ddc
.dev
.parent
= aux
->dev
;
5311 aux
->ddc
.dev
.of_node
= aux
->dev
->of_node
;
5313 strlcpy(aux
->ddc
.name
, aux
->name
? aux
->name
: dev_name(aux
->dev
),
5314 sizeof(aux
->ddc
.name
));
5316 return i2c_add_adapter(&aux
->ddc
);
5320 * drm_dp_mst_unregister_i2c_bus() - unregister an I2C-over-AUX adapter
5321 * @aux: DisplayPort AUX channel
5323 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_aux
*aux
)
5325 i2c_del_adapter(&aux
->ddc
);
5329 * drm_dp_mst_is_virtual_dpcd() - Is the given port a virtual DP Peer Device
5330 * @port: The port to check
5332 * A single physical MST hub object can be represented in the topology
5333 * by multiple branches, with virtual ports between those branches.
5335 * As of DP1.4, An MST hub with internal (virtual) ports must expose
5336 * certain DPCD registers over those ports. See sections 2.6.1.1.1
5337 * and 2.6.1.1.2 of Display Port specification v1.4 for details.
5339 * May acquire mgr->lock
5342 * true if the port is a virtual DP peer device, false otherwise
5344 static bool drm_dp_mst_is_virtual_dpcd(struct drm_dp_mst_port
*port
)
5346 struct drm_dp_mst_port
*downstream_port
;
5348 if (!port
|| port
->dpcd_rev
< DP_DPCD_REV_14
)
5351 /* Virtual DP Sink (Internal Display Panel) */
5352 if (port
->port_num
>= 8)
5355 /* DP-to-HDMI Protocol Converter */
5356 if (port
->pdt
== DP_PEER_DEVICE_DP_LEGACY_CONV
&&
5362 mutex_lock(&port
->mgr
->lock
);
5363 if (port
->pdt
== DP_PEER_DEVICE_MST_BRANCHING
&&
5365 port
->mstb
->num_ports
== 2) {
5366 list_for_each_entry(downstream_port
, &port
->mstb
->ports
, next
) {
5367 if (downstream_port
->pdt
== DP_PEER_DEVICE_SST_SINK
&&
5368 !downstream_port
->input
) {
5369 mutex_unlock(&port
->mgr
->lock
);
5374 mutex_unlock(&port
->mgr
->lock
);
5380 * drm_dp_mst_dsc_aux_for_port() - Find the correct aux for DSC
5381 * @port: The port to check. A leaf of the MST tree with an attached display.
5383 * Depending on the situation, DSC may be enabled via the endpoint aux,
5384 * the immediately upstream aux, or the connector's physical aux.
5386 * This is both the correct aux to read DSC_CAPABILITY and the
5387 * correct aux to write DSC_ENABLED.
5389 * This operation can be expensive (up to four aux reads), so
5390 * the caller should cache the return.
5393 * NULL if DSC cannot be enabled on this port, otherwise the aux device
5395 struct drm_dp_aux
*drm_dp_mst_dsc_aux_for_port(struct drm_dp_mst_port
*port
)
5397 struct drm_dp_mst_port
*immediate_upstream_port
;
5398 struct drm_dp_mst_port
*fec_port
;
5399 struct drm_dp_desc desc
= { 0 };
5406 if (port
->parent
->port_parent
)
5407 immediate_upstream_port
= port
->parent
->port_parent
;
5409 immediate_upstream_port
= NULL
;
5411 fec_port
= immediate_upstream_port
;
5414 * Each physical link (i.e. not a virtual port) between the
5415 * output and the primary device must support FEC
5417 if (!drm_dp_mst_is_virtual_dpcd(fec_port
) &&
5418 !fec_port
->fec_capable
)
5421 fec_port
= fec_port
->parent
->port_parent
;
5424 /* DP-to-DP peer device */
5425 if (drm_dp_mst_is_virtual_dpcd(immediate_upstream_port
)) {
5428 if (drm_dp_dpcd_read(&port
->aux
,
5429 DP_DSC_SUPPORT
, &endpoint_dsc
, 1) != 1)
5431 if (drm_dp_dpcd_read(&port
->aux
,
5432 DP_FEC_CAPABILITY
, &endpoint_fec
, 1) != 1)
5434 if (drm_dp_dpcd_read(&immediate_upstream_port
->aux
,
5435 DP_DSC_SUPPORT
, &upstream_dsc
, 1) != 1)
5438 /* Enpoint decompression with DP-to-DP peer device */
5439 if ((endpoint_dsc
& DP_DSC_DECOMPRESSION_IS_SUPPORTED
) &&
5440 (endpoint_fec
& DP_FEC_CAPABLE
) &&
5441 (upstream_dsc
& 0x2) /* DSC passthrough */)
5444 /* Virtual DPCD decompression with DP-to-DP peer device */
5445 return &immediate_upstream_port
->aux
;
5448 /* Virtual DPCD decompression with DP-to-HDMI or Virtual DP Sink */
5449 if (drm_dp_mst_is_virtual_dpcd(port
))
5454 * Applies to ports for which:
5455 * - Physical aux has Synaptics OUI
5456 * - DPv1.4 or higher
5457 * - Port is on primary branch device
5458 * - Not a VGA adapter (DP_DWN_STRM_PORT_TYPE_ANALOG)
5460 if (drm_dp_read_desc(port
->mgr
->aux
, &desc
, true))
5463 if (drm_dp_has_quirk(&desc
, DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD
) &&
5464 port
->mgr
->dpcd
[DP_DPCD_REV
] >= DP_DPCD_REV_14
&&
5465 port
->parent
== port
->mgr
->mst_primary
) {
5468 if (drm_dp_dpcd_read(&port
->aux
, DP_DOWNSTREAMPORT_PRESENT
,
5469 &downstreamport
, 1) < 0)
5472 if ((downstreamport
& DP_DWN_STRM_PORT_PRESENT
) &&
5473 ((downstreamport
& DP_DWN_STRM_PORT_TYPE_MASK
)
5474 != DP_DWN_STRM_PORT_TYPE_ANALOG
))
5475 return port
->mgr
->aux
;
5479 * The check below verifies if the MST sink
5480 * connected to the GPU is capable of DSC -
5481 * therefore the endpoint needs to be
5482 * both DSC and FEC capable.
5484 if (drm_dp_dpcd_read(&port
->aux
,
5485 DP_DSC_SUPPORT
, &endpoint_dsc
, 1) != 1)
5487 if (drm_dp_dpcd_read(&port
->aux
,
5488 DP_FEC_CAPABILITY
, &endpoint_fec
, 1) != 1)
5490 if ((endpoint_dsc
& DP_DSC_DECOMPRESSION_IS_SUPPORTED
) &&
5491 (endpoint_fec
& DP_FEC_CAPABLE
))
5496 EXPORT_SYMBOL(drm_dp_mst_dsc_aux_for_port
);