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/bitfield.h>
24 #include <linux/delay.h>
25 #include <linux/errno.h>
26 #include <linux/i2c.h>
27 #include <linux/init.h>
28 #include <linux/kernel.h>
29 #include <linux/random.h>
30 #include <linux/sched.h>
31 #include <linux/seq_file.h>
32 #include <linux/iopoll.h>
34 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
35 #include <linux/stacktrace.h>
36 #include <linux/sort.h>
37 #include <linux/timekeeping.h>
38 #include <linux/math64.h>
41 #include <drm/display/drm_dp_mst_helper.h>
42 #include <drm/drm_atomic.h>
43 #include <drm/drm_atomic_helper.h>
44 #include <drm/drm_drv.h>
45 #include <drm/drm_edid.h>
46 #include <drm/drm_fixed.h>
47 #include <drm/drm_print.h>
48 #include <drm/drm_probe_helper.h>
50 #include "drm_dp_helper_internal.h"
51 #include "drm_dp_mst_topology_internal.h"
56 * These functions contain parts of the DisplayPort 1.2a MultiStream Transport
57 * protocol. The helpers contain a topology manager and bandwidth manager.
58 * The helpers encapsulate the sending and received of sideband msgs.
60 struct drm_dp_pending_up_req {
61 struct drm_dp_sideband_msg_hdr hdr;
62 struct drm_dp_sideband_msg_req_body msg;
63 struct list_head next;
66 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr *mgr,
69 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port *port);
71 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr *mgr,
72 int id, u8 start_slot, u8 num_slots);
74 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr *mgr,
75 struct drm_dp_mst_port *port,
76 int offset, int size, u8 *bytes);
77 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr *mgr,
78 struct drm_dp_mst_port *port,
79 int offset, int size, u8 *bytes);
81 static int drm_dp_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
82 struct drm_dp_mst_branch *mstb);
85 drm_dp_send_clear_payload_id_table(struct drm_dp_mst_topology_mgr *mgr,
86 struct drm_dp_mst_branch *mstb);
88 static int drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr *mgr,
89 struct drm_dp_mst_branch *mstb,
90 struct drm_dp_mst_port *port);
91 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
94 static int drm_dp_mst_register_i2c_bus(struct drm_dp_mst_port *port);
95 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_mst_port *port);
96 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr *mgr);
98 static bool drm_dp_mst_port_downstream_of_branch(struct drm_dp_mst_port *port,
99 struct drm_dp_mst_branch *branch);
101 #define DBG_PREFIX "[dp_mst]"
103 #define DP_STR(x) [DP_ ## x] = #x
105 static const char *drm_dp_mst_req_type_str(u8 req_type)
107 static const char * const req_type_str[] = {
108 DP_STR(GET_MSG_TRANSACTION_VERSION),
109 DP_STR(LINK_ADDRESS),
110 DP_STR(CONNECTION_STATUS_NOTIFY),
111 DP_STR(ENUM_PATH_RESOURCES),
112 DP_STR(ALLOCATE_PAYLOAD),
113 DP_STR(QUERY_PAYLOAD),
114 DP_STR(RESOURCE_STATUS_NOTIFY),
115 DP_STR(CLEAR_PAYLOAD_ID_TABLE),
116 DP_STR(REMOTE_DPCD_READ),
117 DP_STR(REMOTE_DPCD_WRITE),
118 DP_STR(REMOTE_I2C_READ),
119 DP_STR(REMOTE_I2C_WRITE),
120 DP_STR(POWER_UP_PHY),
121 DP_STR(POWER_DOWN_PHY),
122 DP_STR(SINK_EVENT_NOTIFY),
123 DP_STR(QUERY_STREAM_ENC_STATUS),
126 if (req_type >= ARRAY_SIZE(req_type_str) ||
127 !req_type_str[req_type])
130 return req_type_str[req_type];
134 #define DP_STR(x) [DP_NAK_ ## x] = #x
136 static const char *drm_dp_mst_nak_reason_str(u8 nak_reason)
138 static const char * const nak_reason_str[] = {
139 DP_STR(WRITE_FAILURE),
140 DP_STR(INVALID_READ),
144 DP_STR(LINK_FAILURE),
145 DP_STR(NO_RESOURCES),
148 DP_STR(ALLOCATE_FAIL),
151 if (nak_reason >= ARRAY_SIZE(nak_reason_str) ||
152 !nak_reason_str[nak_reason])
155 return nak_reason_str[nak_reason];
159 #define DP_STR(x) [DRM_DP_SIDEBAND_TX_ ## x] = #x
161 static const char *drm_dp_mst_sideband_tx_state_str(int state)
163 static const char * const sideband_reason_str[] = {
171 if (state >= ARRAY_SIZE(sideband_reason_str) ||
172 !sideband_reason_str[state])
175 return sideband_reason_str[state];
179 drm_dp_mst_rad_to_str(const u8 rad[8], u8 lct, char *out, size_t len)
184 for (i = 0; i < lct; i++) {
186 unpacked_rad[i] = rad[i / 2] >> 4;
188 unpacked_rad[i] = rad[i / 2] & BIT_MASK(4);
191 /* TODO: Eventually add something to printk so we can format the rad
194 return snprintf(out, len, "%*phC", lct, unpacked_rad);
197 /* sideband msg handling */
198 static u8 drm_dp_msg_header_crc4(const uint8_t *data, size_t num_nibbles)
203 int number_of_bits = num_nibbles * 4;
206 while (number_of_bits != 0) {
209 remainder |= (data[array_index] & bitmask) >> bitshift;
217 if ((remainder & 0x10) == 0x10)
222 while (number_of_bits != 0) {
225 if ((remainder & 0x10) != 0)
232 static u8 drm_dp_msg_data_crc4(const uint8_t *data, u8 number_of_bytes)
237 int number_of_bits = number_of_bytes * 8;
240 while (number_of_bits != 0) {
243 remainder |= (data[array_index] & bitmask) >> bitshift;
251 if ((remainder & 0x100) == 0x100)
256 while (number_of_bits != 0) {
259 if ((remainder & 0x100) != 0)
263 return remainder & 0xff;
265 static inline u8 drm_dp_calc_sb_hdr_size(struct drm_dp_sideband_msg_hdr *hdr)
269 size += (hdr->lct / 2);
273 static void drm_dp_encode_sideband_msg_hdr(struct drm_dp_sideband_msg_hdr *hdr,
280 buf[idx++] = ((hdr->lct & 0xf) << 4) | (hdr->lcr & 0xf);
281 for (i = 0; i < (hdr->lct / 2); i++)
282 buf[idx++] = hdr->rad[i];
283 buf[idx++] = (hdr->broadcast << 7) | (hdr->path_msg << 6) |
284 (hdr->msg_len & 0x3f);
285 buf[idx++] = (hdr->somt << 7) | (hdr->eomt << 6) | (hdr->seqno << 4);
287 crc4 = drm_dp_msg_header_crc4(buf, (idx * 2) - 1);
288 buf[idx - 1] |= (crc4 & 0xf);
293 static bool drm_dp_decode_sideband_msg_hdr(const struct drm_dp_mst_topology_mgr *mgr,
294 struct drm_dp_sideband_msg_hdr *hdr,
295 u8 *buf, int buflen, u8 *hdrlen)
305 len += ((buf[0] & 0xf0) >> 4) / 2;
308 crc4 = drm_dp_msg_header_crc4(buf, (len * 2) - 1);
310 if ((crc4 & 0xf) != (buf[len - 1] & 0xf)) {
311 drm_dbg_kms(mgr->dev, "crc4 mismatch 0x%x 0x%x\n", crc4, buf[len - 1]);
315 hdr->lct = (buf[0] & 0xf0) >> 4;
316 hdr->lcr = (buf[0] & 0xf);
318 for (i = 0; i < (hdr->lct / 2); i++)
319 hdr->rad[i] = buf[idx++];
320 hdr->broadcast = (buf[idx] >> 7) & 0x1;
321 hdr->path_msg = (buf[idx] >> 6) & 0x1;
322 hdr->msg_len = buf[idx] & 0x3f;
324 hdr->somt = (buf[idx] >> 7) & 0x1;
325 hdr->eomt = (buf[idx] >> 6) & 0x1;
326 hdr->seqno = (buf[idx] >> 4) & 0x1;
333 drm_dp_encode_sideband_req(const struct drm_dp_sideband_msg_req_body *req,
334 struct drm_dp_sideband_msg_tx *raw)
340 buf[idx++] = req->req_type & 0x7f;
342 switch (req->req_type) {
343 case DP_ENUM_PATH_RESOURCES:
344 case DP_POWER_DOWN_PHY:
345 case DP_POWER_UP_PHY:
346 buf[idx] = (req->u.port_num.port_number & 0xf) << 4;
349 case DP_ALLOCATE_PAYLOAD:
350 buf[idx] = (req->u.allocate_payload.port_number & 0xf) << 4 |
351 (req->u.allocate_payload.number_sdp_streams & 0xf);
353 buf[idx] = (req->u.allocate_payload.vcpi & 0x7f);
355 buf[idx] = (req->u.allocate_payload.pbn >> 8);
357 buf[idx] = (req->u.allocate_payload.pbn & 0xff);
359 for (i = 0; i < req->u.allocate_payload.number_sdp_streams / 2; i++) {
360 buf[idx] = ((req->u.allocate_payload.sdp_stream_sink[i * 2] & 0xf) << 4) |
361 (req->u.allocate_payload.sdp_stream_sink[i * 2 + 1] & 0xf);
364 if (req->u.allocate_payload.number_sdp_streams & 1) {
365 i = req->u.allocate_payload.number_sdp_streams - 1;
366 buf[idx] = (req->u.allocate_payload.sdp_stream_sink[i] & 0xf) << 4;
370 case DP_QUERY_PAYLOAD:
371 buf[idx] = (req->u.query_payload.port_number & 0xf) << 4;
373 buf[idx] = (req->u.query_payload.vcpi & 0x7f);
376 case DP_REMOTE_DPCD_READ:
377 buf[idx] = (req->u.dpcd_read.port_number & 0xf) << 4;
378 buf[idx] |= ((req->u.dpcd_read.dpcd_address & 0xf0000) >> 16) & 0xf;
380 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff00) >> 8;
382 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff);
384 buf[idx] = (req->u.dpcd_read.num_bytes);
388 case DP_REMOTE_DPCD_WRITE:
389 buf[idx] = (req->u.dpcd_write.port_number & 0xf) << 4;
390 buf[idx] |= ((req->u.dpcd_write.dpcd_address & 0xf0000) >> 16) & 0xf;
392 buf[idx] = (req->u.dpcd_write.dpcd_address & 0xff00) >> 8;
394 buf[idx] = (req->u.dpcd_write.dpcd_address & 0xff);
396 buf[idx] = (req->u.dpcd_write.num_bytes);
398 memcpy(&buf[idx], req->u.dpcd_write.bytes, req->u.dpcd_write.num_bytes);
399 idx += req->u.dpcd_write.num_bytes;
401 case DP_REMOTE_I2C_READ:
402 buf[idx] = (req->u.i2c_read.port_number & 0xf) << 4;
403 buf[idx] |= (req->u.i2c_read.num_transactions & 0x3);
405 for (i = 0; i < (req->u.i2c_read.num_transactions & 0x3); i++) {
406 buf[idx] = req->u.i2c_read.transactions[i].i2c_dev_id & 0x7f;
408 buf[idx] = req->u.i2c_read.transactions[i].num_bytes;
410 memcpy(&buf[idx], req->u.i2c_read.transactions[i].bytes, req->u.i2c_read.transactions[i].num_bytes);
411 idx += req->u.i2c_read.transactions[i].num_bytes;
413 buf[idx] = (req->u.i2c_read.transactions[i].no_stop_bit & 0x1) << 4;
414 buf[idx] |= (req->u.i2c_read.transactions[i].i2c_transaction_delay & 0xf);
417 buf[idx] = (req->u.i2c_read.read_i2c_device_id) & 0x7f;
419 buf[idx] = (req->u.i2c_read.num_bytes_read);
423 case DP_REMOTE_I2C_WRITE:
424 buf[idx] = (req->u.i2c_write.port_number & 0xf) << 4;
426 buf[idx] = (req->u.i2c_write.write_i2c_device_id) & 0x7f;
428 buf[idx] = (req->u.i2c_write.num_bytes);
430 memcpy(&buf[idx], req->u.i2c_write.bytes, req->u.i2c_write.num_bytes);
431 idx += req->u.i2c_write.num_bytes;
433 case DP_QUERY_STREAM_ENC_STATUS: {
434 const struct drm_dp_query_stream_enc_status *msg;
436 msg = &req->u.enc_status;
437 buf[idx] = msg->stream_id;
439 memcpy(&buf[idx], msg->client_id, sizeof(msg->client_id));
440 idx += sizeof(msg->client_id);
442 buf[idx] |= FIELD_PREP(GENMASK(1, 0), msg->stream_event);
443 buf[idx] |= msg->valid_stream_event ? BIT(2) : 0;
444 buf[idx] |= FIELD_PREP(GENMASK(4, 3), msg->stream_behavior);
445 buf[idx] |= msg->valid_stream_behavior ? BIT(5) : 0;
452 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_encode_sideband_req);
454 /* Decode a sideband request we've encoded, mainly used for debugging */
456 drm_dp_decode_sideband_req(const struct drm_dp_sideband_msg_tx *raw,
457 struct drm_dp_sideband_msg_req_body *req)
459 const u8 *buf = raw->msg;
462 req->req_type = buf[idx++] & 0x7f;
463 switch (req->req_type) {
464 case DP_ENUM_PATH_RESOURCES:
465 case DP_POWER_DOWN_PHY:
466 case DP_POWER_UP_PHY:
467 req->u.port_num.port_number = (buf[idx] >> 4) & 0xf;
469 case DP_ALLOCATE_PAYLOAD:
471 struct drm_dp_allocate_payload *a =
472 &req->u.allocate_payload;
474 a->number_sdp_streams = buf[idx] & 0xf;
475 a->port_number = (buf[idx] >> 4) & 0xf;
477 WARN_ON(buf[++idx] & 0x80);
478 a->vcpi = buf[idx] & 0x7f;
480 a->pbn = buf[++idx] << 8;
481 a->pbn |= buf[++idx];
484 for (i = 0; i < a->number_sdp_streams; i++) {
485 a->sdp_stream_sink[i] =
486 (buf[idx + (i / 2)] >> ((i % 2) ? 0 : 4)) & 0xf;
490 case DP_QUERY_PAYLOAD:
491 req->u.query_payload.port_number = (buf[idx] >> 4) & 0xf;
492 WARN_ON(buf[++idx] & 0x80);
493 req->u.query_payload.vcpi = buf[idx] & 0x7f;
495 case DP_REMOTE_DPCD_READ:
497 struct drm_dp_remote_dpcd_read *r = &req->u.dpcd_read;
499 r->port_number = (buf[idx] >> 4) & 0xf;
501 r->dpcd_address = (buf[idx] << 16) & 0xf0000;
502 r->dpcd_address |= (buf[++idx] << 8) & 0xff00;
503 r->dpcd_address |= buf[++idx] & 0xff;
505 r->num_bytes = buf[++idx];
508 case DP_REMOTE_DPCD_WRITE:
510 struct drm_dp_remote_dpcd_write *w =
513 w->port_number = (buf[idx] >> 4) & 0xf;
515 w->dpcd_address = (buf[idx] << 16) & 0xf0000;
516 w->dpcd_address |= (buf[++idx] << 8) & 0xff00;
517 w->dpcd_address |= buf[++idx] & 0xff;
519 w->num_bytes = buf[++idx];
521 w->bytes = kmemdup(&buf[++idx], w->num_bytes,
527 case DP_REMOTE_I2C_READ:
529 struct drm_dp_remote_i2c_read *r = &req->u.i2c_read;
530 struct drm_dp_remote_i2c_read_tx *tx;
533 r->num_transactions = buf[idx] & 0x3;
534 r->port_number = (buf[idx] >> 4) & 0xf;
535 for (i = 0; i < r->num_transactions; i++) {
536 tx = &r->transactions[i];
538 tx->i2c_dev_id = buf[++idx] & 0x7f;
539 tx->num_bytes = buf[++idx];
540 tx->bytes = kmemdup(&buf[++idx],
547 idx += tx->num_bytes;
548 tx->no_stop_bit = (buf[idx] >> 5) & 0x1;
549 tx->i2c_transaction_delay = buf[idx] & 0xf;
553 for (i = 0; i < r->num_transactions; i++) {
554 tx = &r->transactions[i];
560 r->read_i2c_device_id = buf[++idx] & 0x7f;
561 r->num_bytes_read = buf[++idx];
564 case DP_REMOTE_I2C_WRITE:
566 struct drm_dp_remote_i2c_write *w = &req->u.i2c_write;
568 w->port_number = (buf[idx] >> 4) & 0xf;
569 w->write_i2c_device_id = buf[++idx] & 0x7f;
570 w->num_bytes = buf[++idx];
571 w->bytes = kmemdup(&buf[++idx], w->num_bytes,
577 case DP_QUERY_STREAM_ENC_STATUS:
578 req->u.enc_status.stream_id = buf[idx++];
579 for (i = 0; i < sizeof(req->u.enc_status.client_id); i++)
580 req->u.enc_status.client_id[i] = buf[idx++];
582 req->u.enc_status.stream_event = FIELD_GET(GENMASK(1, 0),
584 req->u.enc_status.valid_stream_event = FIELD_GET(BIT(2),
586 req->u.enc_status.stream_behavior = FIELD_GET(GENMASK(4, 3),
588 req->u.enc_status.valid_stream_behavior = FIELD_GET(BIT(5),
595 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_decode_sideband_req);
598 drm_dp_dump_sideband_msg_req_body(const struct drm_dp_sideband_msg_req_body *req,
599 int indent, struct drm_printer *printer)
603 #define P(f, ...) drm_printf_indent(printer, indent, f, ##__VA_ARGS__)
604 if (req->req_type == DP_LINK_ADDRESS) {
605 /* No contents to print */
606 P("type=%s\n", drm_dp_mst_req_type_str(req->req_type));
610 P("type=%s contents:\n", drm_dp_mst_req_type_str(req->req_type));
613 switch (req->req_type) {
614 case DP_ENUM_PATH_RESOURCES:
615 case DP_POWER_DOWN_PHY:
616 case DP_POWER_UP_PHY:
617 P("port=%d\n", req->u.port_num.port_number);
619 case DP_ALLOCATE_PAYLOAD:
620 P("port=%d vcpi=%d pbn=%d sdp_streams=%d %*ph\n",
621 req->u.allocate_payload.port_number,
622 req->u.allocate_payload.vcpi, req->u.allocate_payload.pbn,
623 req->u.allocate_payload.number_sdp_streams,
624 req->u.allocate_payload.number_sdp_streams,
625 req->u.allocate_payload.sdp_stream_sink);
627 case DP_QUERY_PAYLOAD:
628 P("port=%d vcpi=%d\n",
629 req->u.query_payload.port_number,
630 req->u.query_payload.vcpi);
632 case DP_REMOTE_DPCD_READ:
633 P("port=%d dpcd_addr=%05x len=%d\n",
634 req->u.dpcd_read.port_number, req->u.dpcd_read.dpcd_address,
635 req->u.dpcd_read.num_bytes);
637 case DP_REMOTE_DPCD_WRITE:
638 P("port=%d addr=%05x len=%d: %*ph\n",
639 req->u.dpcd_write.port_number,
640 req->u.dpcd_write.dpcd_address,
641 req->u.dpcd_write.num_bytes, req->u.dpcd_write.num_bytes,
642 req->u.dpcd_write.bytes);
644 case DP_REMOTE_I2C_READ:
645 P("port=%d num_tx=%d id=%d size=%d:\n",
646 req->u.i2c_read.port_number,
647 req->u.i2c_read.num_transactions,
648 req->u.i2c_read.read_i2c_device_id,
649 req->u.i2c_read.num_bytes_read);
652 for (i = 0; i < req->u.i2c_read.num_transactions; i++) {
653 const struct drm_dp_remote_i2c_read_tx *rtx =
654 &req->u.i2c_read.transactions[i];
656 P("%d: id=%03d size=%03d no_stop_bit=%d tx_delay=%03d: %*ph\n",
657 i, rtx->i2c_dev_id, rtx->num_bytes,
658 rtx->no_stop_bit, rtx->i2c_transaction_delay,
659 rtx->num_bytes, rtx->bytes);
662 case DP_REMOTE_I2C_WRITE:
663 P("port=%d id=%d size=%d: %*ph\n",
664 req->u.i2c_write.port_number,
665 req->u.i2c_write.write_i2c_device_id,
666 req->u.i2c_write.num_bytes, req->u.i2c_write.num_bytes,
667 req->u.i2c_write.bytes);
669 case DP_QUERY_STREAM_ENC_STATUS:
670 P("stream_id=%u client_id=%*ph stream_event=%x "
671 "valid_event=%d stream_behavior=%x valid_behavior=%d",
672 req->u.enc_status.stream_id,
673 (int)ARRAY_SIZE(req->u.enc_status.client_id),
674 req->u.enc_status.client_id, req->u.enc_status.stream_event,
675 req->u.enc_status.valid_stream_event,
676 req->u.enc_status.stream_behavior,
677 req->u.enc_status.valid_stream_behavior);
685 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_dump_sideband_msg_req_body);
688 drm_dp_mst_dump_sideband_msg_tx(struct drm_printer *p,
689 const struct drm_dp_sideband_msg_tx *txmsg)
691 struct drm_dp_sideband_msg_req_body req;
696 drm_dp_mst_rad_to_str(txmsg->dst->rad, txmsg->dst->lct, buf,
698 drm_printf(p, "txmsg cur_offset=%x cur_len=%x seqno=%x state=%s path_msg=%d dst=%s\n",
699 txmsg->cur_offset, txmsg->cur_len, txmsg->seqno,
700 drm_dp_mst_sideband_tx_state_str(txmsg->state),
701 txmsg->path_msg, buf);
703 ret = drm_dp_decode_sideband_req(txmsg, &req);
705 drm_printf(p, "<failed to decode sideband req: %d>\n", ret);
708 drm_dp_dump_sideband_msg_req_body(&req, 1, p);
710 switch (req.req_type) {
711 case DP_REMOTE_DPCD_WRITE:
712 kfree(req.u.dpcd_write.bytes);
714 case DP_REMOTE_I2C_READ:
715 for (i = 0; i < req.u.i2c_read.num_transactions; i++)
716 kfree(req.u.i2c_read.transactions[i].bytes);
718 case DP_REMOTE_I2C_WRITE:
719 kfree(req.u.i2c_write.bytes);
724 static void drm_dp_crc_sideband_chunk_req(u8 *msg, u8 len)
728 crc4 = drm_dp_msg_data_crc4(msg, len);
732 static void drm_dp_encode_sideband_reply(struct drm_dp_sideband_msg_reply_body *rep,
733 struct drm_dp_sideband_msg_tx *raw)
738 buf[idx++] = (rep->reply_type & 0x1) << 7 | (rep->req_type & 0x7f);
743 static int drm_dp_sideband_msg_set_header(struct drm_dp_sideband_msg_rx *msg,
744 struct drm_dp_sideband_msg_hdr *hdr,
748 * ignore out-of-order messages or messages that are part of a
751 if (!hdr->somt && !msg->have_somt)
754 /* get length contained in this portion */
755 msg->curchunk_idx = 0;
756 msg->curchunk_len = hdr->msg_len;
757 msg->curchunk_hdrlen = hdrlen;
759 /* we have already gotten an somt - don't bother parsing */
760 if (hdr->somt && msg->have_somt)
764 memcpy(&msg->initial_hdr, hdr,
765 sizeof(struct drm_dp_sideband_msg_hdr));
766 msg->have_somt = true;
769 msg->have_eomt = true;
774 /* this adds a chunk of msg to the builder to get the final msg */
775 static bool drm_dp_sideband_append_payload(struct drm_dp_sideband_msg_rx *msg,
776 u8 *replybuf, u8 replybuflen)
780 memcpy(&msg->chunk[msg->curchunk_idx], replybuf, replybuflen);
781 msg->curchunk_idx += replybuflen;
783 if (msg->curchunk_idx >= msg->curchunk_len) {
785 crc4 = drm_dp_msg_data_crc4(msg->chunk, msg->curchunk_len - 1);
786 if (crc4 != msg->chunk[msg->curchunk_len - 1])
787 print_hex_dump(KERN_DEBUG, "wrong crc",
788 DUMP_PREFIX_NONE, 16, 1,
789 msg->chunk, msg->curchunk_len, false);
790 /* copy chunk into bigger msg */
791 memcpy(&msg->msg[msg->curlen], msg->chunk, msg->curchunk_len - 1);
792 msg->curlen += msg->curchunk_len - 1;
797 static bool drm_dp_sideband_parse_link_address(const struct drm_dp_mst_topology_mgr *mgr,
798 struct drm_dp_sideband_msg_rx *raw,
799 struct drm_dp_sideband_msg_reply_body *repmsg)
804 memcpy(repmsg->u.link_addr.guid, &raw->msg[idx], 16);
806 repmsg->u.link_addr.nports = raw->msg[idx] & 0xf;
808 if (idx > raw->curlen)
810 for (i = 0; i < repmsg->u.link_addr.nports; i++) {
811 if (raw->msg[idx] & 0x80)
812 repmsg->u.link_addr.ports[i].input_port = 1;
814 repmsg->u.link_addr.ports[i].peer_device_type = (raw->msg[idx] >> 4) & 0x7;
815 repmsg->u.link_addr.ports[i].port_number = (raw->msg[idx] & 0xf);
818 if (idx > raw->curlen)
820 repmsg->u.link_addr.ports[i].mcs = (raw->msg[idx] >> 7) & 0x1;
821 repmsg->u.link_addr.ports[i].ddps = (raw->msg[idx] >> 6) & 0x1;
822 if (repmsg->u.link_addr.ports[i].input_port == 0)
823 repmsg->u.link_addr.ports[i].legacy_device_plug_status = (raw->msg[idx] >> 5) & 0x1;
825 if (idx > raw->curlen)
827 if (repmsg->u.link_addr.ports[i].input_port == 0) {
828 repmsg->u.link_addr.ports[i].dpcd_revision = (raw->msg[idx]);
830 if (idx > raw->curlen)
832 memcpy(repmsg->u.link_addr.ports[i].peer_guid, &raw->msg[idx], 16);
834 if (idx > raw->curlen)
836 repmsg->u.link_addr.ports[i].num_sdp_streams = (raw->msg[idx] >> 4) & 0xf;
837 repmsg->u.link_addr.ports[i].num_sdp_stream_sinks = (raw->msg[idx] & 0xf);
841 if (idx > raw->curlen)
847 DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx, raw->curlen);
851 static bool drm_dp_sideband_parse_remote_dpcd_read(struct drm_dp_sideband_msg_rx *raw,
852 struct drm_dp_sideband_msg_reply_body *repmsg)
856 repmsg->u.remote_dpcd_read_ack.port_number = raw->msg[idx] & 0xf;
858 if (idx > raw->curlen)
860 repmsg->u.remote_dpcd_read_ack.num_bytes = raw->msg[idx];
862 if (idx > raw->curlen)
865 memcpy(repmsg->u.remote_dpcd_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_dpcd_read_ack.num_bytes);
868 DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx, raw->curlen);
872 static bool drm_dp_sideband_parse_remote_dpcd_write(struct drm_dp_sideband_msg_rx *raw,
873 struct drm_dp_sideband_msg_reply_body *repmsg)
877 repmsg->u.remote_dpcd_write_ack.port_number = raw->msg[idx] & 0xf;
879 if (idx > raw->curlen)
883 DRM_DEBUG_KMS("parse length fail %d %d\n", idx, raw->curlen);
887 static bool drm_dp_sideband_parse_remote_i2c_read_ack(struct drm_dp_sideband_msg_rx *raw,
888 struct drm_dp_sideband_msg_reply_body *repmsg)
892 repmsg->u.remote_i2c_read_ack.port_number = (raw->msg[idx] & 0xf);
894 if (idx > raw->curlen)
896 repmsg->u.remote_i2c_read_ack.num_bytes = raw->msg[idx];
899 memcpy(repmsg->u.remote_i2c_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_i2c_read_ack.num_bytes);
902 DRM_DEBUG_KMS("remote i2c reply parse length fail %d %d\n", idx, raw->curlen);
906 static bool drm_dp_sideband_parse_enum_path_resources_ack(struct drm_dp_sideband_msg_rx *raw,
907 struct drm_dp_sideband_msg_reply_body *repmsg)
911 repmsg->u.path_resources.port_number = (raw->msg[idx] >> 4) & 0xf;
912 repmsg->u.path_resources.fec_capable = raw->msg[idx] & 0x1;
914 if (idx > raw->curlen)
916 repmsg->u.path_resources.full_payload_bw_number = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
918 if (idx > raw->curlen)
920 repmsg->u.path_resources.avail_payload_bw_number = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
922 if (idx > raw->curlen)
926 DRM_DEBUG_KMS("enum resource parse length fail %d %d\n", idx, raw->curlen);
930 static bool drm_dp_sideband_parse_allocate_payload_ack(struct drm_dp_sideband_msg_rx *raw,
931 struct drm_dp_sideband_msg_reply_body *repmsg)
935 repmsg->u.allocate_payload.port_number = (raw->msg[idx] >> 4) & 0xf;
937 if (idx > raw->curlen)
939 repmsg->u.allocate_payload.vcpi = raw->msg[idx];
941 if (idx > raw->curlen)
943 repmsg->u.allocate_payload.allocated_pbn = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
945 if (idx > raw->curlen)
949 DRM_DEBUG_KMS("allocate payload parse length fail %d %d\n", idx, raw->curlen);
953 static bool drm_dp_sideband_parse_query_payload_ack(struct drm_dp_sideband_msg_rx *raw,
954 struct drm_dp_sideband_msg_reply_body *repmsg)
958 repmsg->u.query_payload.port_number = (raw->msg[idx] >> 4) & 0xf;
960 if (idx > raw->curlen)
962 repmsg->u.query_payload.allocated_pbn = (raw->msg[idx] << 8) | (raw->msg[idx + 1]);
964 if (idx > raw->curlen)
968 DRM_DEBUG_KMS("query payload parse length fail %d %d\n", idx, raw->curlen);
972 static bool drm_dp_sideband_parse_power_updown_phy_ack(struct drm_dp_sideband_msg_rx *raw,
973 struct drm_dp_sideband_msg_reply_body *repmsg)
977 repmsg->u.port_number.port_number = (raw->msg[idx] >> 4) & 0xf;
979 if (idx > raw->curlen) {
980 DRM_DEBUG_KMS("power up/down phy parse length fail %d %d\n",
988 drm_dp_sideband_parse_query_stream_enc_status(
989 struct drm_dp_sideband_msg_rx *raw,
990 struct drm_dp_sideband_msg_reply_body *repmsg)
992 struct drm_dp_query_stream_enc_status_ack_reply *reply;
994 reply = &repmsg->u.enc_status;
996 reply->stream_id = raw->msg[3];
998 reply->reply_signed = raw->msg[2] & BIT(0);
1001 * NOTE: It's my impression from reading the spec that the below parsing
1002 * is correct. However I noticed while testing with an HDCP 1.4 display
1003 * through an HDCP 2.2 hub that only bit 3 was set. In that case, I
1004 * would expect both bits to be set. So keep the parsing following the
1005 * spec, but beware reality might not match the spec (at least for some
1008 reply->hdcp_1x_device_present = raw->msg[2] & BIT(4);
1009 reply->hdcp_2x_device_present = raw->msg[2] & BIT(3);
1011 reply->query_capable_device_present = raw->msg[2] & BIT(5);
1012 reply->legacy_device_present = raw->msg[2] & BIT(6);
1013 reply->unauthorizable_device_present = raw->msg[2] & BIT(7);
1015 reply->auth_completed = !!(raw->msg[1] & BIT(3));
1016 reply->encryption_enabled = !!(raw->msg[1] & BIT(4));
1017 reply->repeater_present = !!(raw->msg[1] & BIT(5));
1018 reply->state = (raw->msg[1] & GENMASK(7, 6)) >> 6;
1023 static bool drm_dp_sideband_parse_reply(const struct drm_dp_mst_topology_mgr *mgr,
1024 struct drm_dp_sideband_msg_rx *raw,
1025 struct drm_dp_sideband_msg_reply_body *msg)
1027 memset(msg, 0, sizeof(*msg));
1028 msg->reply_type = (raw->msg[0] & 0x80) >> 7;
1029 msg->req_type = (raw->msg[0] & 0x7f);
1031 if (msg->reply_type == DP_SIDEBAND_REPLY_NAK) {
1032 memcpy(msg->u.nak.guid, &raw->msg[1], 16);
1033 msg->u.nak.reason = raw->msg[17];
1034 msg->u.nak.nak_data = raw->msg[18];
1038 switch (msg->req_type) {
1039 case DP_LINK_ADDRESS:
1040 return drm_dp_sideband_parse_link_address(mgr, raw, msg);
1041 case DP_QUERY_PAYLOAD:
1042 return drm_dp_sideband_parse_query_payload_ack(raw, msg);
1043 case DP_REMOTE_DPCD_READ:
1044 return drm_dp_sideband_parse_remote_dpcd_read(raw, msg);
1045 case DP_REMOTE_DPCD_WRITE:
1046 return drm_dp_sideband_parse_remote_dpcd_write(raw, msg);
1047 case DP_REMOTE_I2C_READ:
1048 return drm_dp_sideband_parse_remote_i2c_read_ack(raw, msg);
1049 case DP_REMOTE_I2C_WRITE:
1050 return true; /* since there's nothing to parse */
1051 case DP_ENUM_PATH_RESOURCES:
1052 return drm_dp_sideband_parse_enum_path_resources_ack(raw, msg);
1053 case DP_ALLOCATE_PAYLOAD:
1054 return drm_dp_sideband_parse_allocate_payload_ack(raw, msg);
1055 case DP_POWER_DOWN_PHY:
1056 case DP_POWER_UP_PHY:
1057 return drm_dp_sideband_parse_power_updown_phy_ack(raw, msg);
1058 case DP_CLEAR_PAYLOAD_ID_TABLE:
1059 return true; /* since there's nothing to parse */
1060 case DP_QUERY_STREAM_ENC_STATUS:
1061 return drm_dp_sideband_parse_query_stream_enc_status(raw, msg);
1063 drm_err(mgr->dev, "Got unknown reply 0x%02x (%s)\n",
1064 msg->req_type, drm_dp_mst_req_type_str(msg->req_type));
1070 drm_dp_sideband_parse_connection_status_notify(const struct drm_dp_mst_topology_mgr *mgr,
1071 struct drm_dp_sideband_msg_rx *raw,
1072 struct drm_dp_sideband_msg_req_body *msg)
1076 msg->u.conn_stat.port_number = (raw->msg[idx] & 0xf0) >> 4;
1078 if (idx > raw->curlen)
1081 memcpy(msg->u.conn_stat.guid, &raw->msg[idx], 16);
1083 if (idx > raw->curlen)
1086 msg->u.conn_stat.legacy_device_plug_status = (raw->msg[idx] >> 6) & 0x1;
1087 msg->u.conn_stat.displayport_device_plug_status = (raw->msg[idx] >> 5) & 0x1;
1088 msg->u.conn_stat.message_capability_status = (raw->msg[idx] >> 4) & 0x1;
1089 msg->u.conn_stat.input_port = (raw->msg[idx] >> 3) & 0x1;
1090 msg->u.conn_stat.peer_device_type = (raw->msg[idx] & 0x7);
1094 drm_dbg_kms(mgr->dev, "connection status reply parse length fail %d %d\n",
1099 static bool drm_dp_sideband_parse_resource_status_notify(const struct drm_dp_mst_topology_mgr *mgr,
1100 struct drm_dp_sideband_msg_rx *raw,
1101 struct drm_dp_sideband_msg_req_body *msg)
1105 msg->u.resource_stat.port_number = (raw->msg[idx] & 0xf0) >> 4;
1107 if (idx > raw->curlen)
1110 memcpy(msg->u.resource_stat.guid, &raw->msg[idx], 16);
1112 if (idx > raw->curlen)
1115 msg->u.resource_stat.available_pbn = (raw->msg[idx] << 8) | (raw->msg[idx + 1]);
1119 drm_dbg_kms(mgr->dev, "resource status reply parse length fail %d %d\n", idx, raw->curlen);
1123 static bool drm_dp_sideband_parse_req(const struct drm_dp_mst_topology_mgr *mgr,
1124 struct drm_dp_sideband_msg_rx *raw,
1125 struct drm_dp_sideband_msg_req_body *msg)
1127 memset(msg, 0, sizeof(*msg));
1128 msg->req_type = (raw->msg[0] & 0x7f);
1130 switch (msg->req_type) {
1131 case DP_CONNECTION_STATUS_NOTIFY:
1132 return drm_dp_sideband_parse_connection_status_notify(mgr, raw, msg);
1133 case DP_RESOURCE_STATUS_NOTIFY:
1134 return drm_dp_sideband_parse_resource_status_notify(mgr, raw, msg);
1136 drm_err(mgr->dev, "Got unknown request 0x%02x (%s)\n",
1137 msg->req_type, drm_dp_mst_req_type_str(msg->req_type));
1142 static void build_dpcd_write(struct drm_dp_sideband_msg_tx *msg,
1143 u8 port_num, u32 offset, u8 num_bytes, u8 *bytes)
1145 struct drm_dp_sideband_msg_req_body req;
1147 req.req_type = DP_REMOTE_DPCD_WRITE;
1148 req.u.dpcd_write.port_number = port_num;
1149 req.u.dpcd_write.dpcd_address = offset;
1150 req.u.dpcd_write.num_bytes = num_bytes;
1151 req.u.dpcd_write.bytes = bytes;
1152 drm_dp_encode_sideband_req(&req, msg);
1155 static void build_link_address(struct drm_dp_sideband_msg_tx *msg)
1157 struct drm_dp_sideband_msg_req_body req;
1159 req.req_type = DP_LINK_ADDRESS;
1160 drm_dp_encode_sideband_req(&req, msg);
1163 static void build_clear_payload_id_table(struct drm_dp_sideband_msg_tx *msg)
1165 struct drm_dp_sideband_msg_req_body req;
1167 req.req_type = DP_CLEAR_PAYLOAD_ID_TABLE;
1168 drm_dp_encode_sideband_req(&req, msg);
1169 msg->path_msg = true;
1172 static int build_enum_path_resources(struct drm_dp_sideband_msg_tx *msg,
1175 struct drm_dp_sideband_msg_req_body req;
1177 req.req_type = DP_ENUM_PATH_RESOURCES;
1178 req.u.port_num.port_number = port_num;
1179 drm_dp_encode_sideband_req(&req, msg);
1180 msg->path_msg = true;
1184 static void build_allocate_payload(struct drm_dp_sideband_msg_tx *msg,
1186 u8 vcpi, uint16_t pbn,
1187 u8 number_sdp_streams,
1188 u8 *sdp_stream_sink)
1190 struct drm_dp_sideband_msg_req_body req;
1192 memset(&req, 0, sizeof(req));
1193 req.req_type = DP_ALLOCATE_PAYLOAD;
1194 req.u.allocate_payload.port_number = port_num;
1195 req.u.allocate_payload.vcpi = vcpi;
1196 req.u.allocate_payload.pbn = pbn;
1197 req.u.allocate_payload.number_sdp_streams = number_sdp_streams;
1198 memcpy(req.u.allocate_payload.sdp_stream_sink, sdp_stream_sink,
1199 number_sdp_streams);
1200 drm_dp_encode_sideband_req(&req, msg);
1201 msg->path_msg = true;
1204 static void build_power_updown_phy(struct drm_dp_sideband_msg_tx *msg,
1205 int port_num, bool power_up)
1207 struct drm_dp_sideband_msg_req_body req;
1210 req.req_type = DP_POWER_UP_PHY;
1212 req.req_type = DP_POWER_DOWN_PHY;
1214 req.u.port_num.port_number = port_num;
1215 drm_dp_encode_sideband_req(&req, msg);
1216 msg->path_msg = true;
1220 build_query_stream_enc_status(struct drm_dp_sideband_msg_tx *msg, u8 stream_id,
1223 struct drm_dp_sideband_msg_req_body req;
1225 req.req_type = DP_QUERY_STREAM_ENC_STATUS;
1226 req.u.enc_status.stream_id = stream_id;
1227 memcpy(req.u.enc_status.client_id, q_id,
1228 sizeof(req.u.enc_status.client_id));
1229 req.u.enc_status.stream_event = 0;
1230 req.u.enc_status.valid_stream_event = false;
1231 req.u.enc_status.stream_behavior = 0;
1232 req.u.enc_status.valid_stream_behavior = false;
1234 drm_dp_encode_sideband_req(&req, msg);
1238 static bool check_txmsg_state(struct drm_dp_mst_topology_mgr *mgr,
1239 struct drm_dp_sideband_msg_tx *txmsg)
1244 * All updates to txmsg->state are protected by mgr->qlock, and the two
1245 * cases we check here are terminal states. For those the barriers
1246 * provided by the wake_up/wait_event pair are enough.
1248 state = READ_ONCE(txmsg->state);
1249 return (state == DRM_DP_SIDEBAND_TX_RX ||
1250 state == DRM_DP_SIDEBAND_TX_TIMEOUT);
1253 static int drm_dp_mst_wait_tx_reply(struct drm_dp_mst_branch *mstb,
1254 struct drm_dp_sideband_msg_tx *txmsg)
1256 struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
1257 unsigned long wait_timeout = msecs_to_jiffies(4000);
1258 unsigned long wait_expires = jiffies + wait_timeout;
1263 * If the driver provides a way for this, change to
1264 * poll-waiting for the MST reply interrupt if we didn't receive
1265 * it for 50 msec. This would cater for cases where the HPD
1266 * pulse signal got lost somewhere, even though the sink raised
1267 * the corresponding MST interrupt correctly. One example is the
1268 * Club 3D CAC-1557 TypeC -> DP adapter which for some reason
1269 * filters out short pulses with a duration less than ~540 usec.
1271 * The poll period is 50 msec to avoid missing an interrupt
1272 * after the sink has cleared it (after a 110msec timeout
1273 * since it raised the interrupt).
1275 ret = wait_event_timeout(mgr->tx_waitq,
1276 check_txmsg_state(mgr, txmsg),
1277 mgr->cbs->poll_hpd_irq ?
1278 msecs_to_jiffies(50) :
1281 if (ret || !mgr->cbs->poll_hpd_irq ||
1282 time_after(jiffies, wait_expires))
1285 mgr->cbs->poll_hpd_irq(mgr);
1288 mutex_lock(&mgr->qlock);
1290 if (txmsg->state == DRM_DP_SIDEBAND_TX_TIMEOUT) {
1295 drm_dbg_kms(mgr->dev, "timedout msg send %p %d %d\n",
1296 txmsg, txmsg->state, txmsg->seqno);
1298 /* dump some state */
1302 if (txmsg->state == DRM_DP_SIDEBAND_TX_QUEUED ||
1303 txmsg->state == DRM_DP_SIDEBAND_TX_START_SEND ||
1304 txmsg->state == DRM_DP_SIDEBAND_TX_SENT)
1305 list_del(&txmsg->next);
1308 if (unlikely(ret == -EIO) && drm_debug_enabled(DRM_UT_DP)) {
1309 struct drm_printer p = drm_dbg_printer(mgr->dev, DRM_UT_DP,
1312 drm_dp_mst_dump_sideband_msg_tx(&p, txmsg);
1314 mutex_unlock(&mgr->qlock);
1316 drm_dp_mst_kick_tx(mgr);
1320 static struct drm_dp_mst_branch *drm_dp_add_mst_branch_device(u8 lct, u8 *rad)
1322 struct drm_dp_mst_branch *mstb;
1324 mstb = kzalloc(sizeof(*mstb), GFP_KERNEL);
1330 memcpy(mstb->rad, rad, lct / 2);
1331 INIT_LIST_HEAD(&mstb->ports);
1332 kref_init(&mstb->topology_kref);
1333 kref_init(&mstb->malloc_kref);
1337 static void drm_dp_free_mst_branch_device(struct kref *kref)
1339 struct drm_dp_mst_branch *mstb =
1340 container_of(kref, struct drm_dp_mst_branch, malloc_kref);
1342 if (mstb->port_parent)
1343 drm_dp_mst_put_port_malloc(mstb->port_parent);
1349 * DOC: Branch device and port refcounting
1351 * Topology refcount overview
1352 * ~~~~~~~~~~~~~~~~~~~~~~~~~~
1354 * The refcounting schemes for &struct drm_dp_mst_branch and &struct
1355 * drm_dp_mst_port are somewhat unusual. Both ports and branch devices have
1356 * two different kinds of refcounts: topology refcounts, and malloc refcounts.
1358 * Topology refcounts are not exposed to drivers, and are handled internally
1359 * by the DP MST helpers. The helpers use them in order to prevent the
1360 * in-memory topology state from being changed in the middle of critical
1361 * operations like changing the internal state of payload allocations. This
1362 * means each branch and port will be considered to be connected to the rest
1363 * of the topology until its topology refcount reaches zero. Additionally,
1364 * for ports this means that their associated &struct drm_connector will stay
1365 * registered with userspace until the port's refcount reaches 0.
1367 * Malloc refcount overview
1368 * ~~~~~~~~~~~~~~~~~~~~~~~~
1370 * Malloc references are used to keep a &struct drm_dp_mst_port or &struct
1371 * drm_dp_mst_branch allocated even after all of its topology references have
1372 * been dropped, so that the driver or MST helpers can safely access each
1373 * branch's last known state before it was disconnected from the topology.
1374 * When the malloc refcount of a port or branch reaches 0, the memory
1375 * allocation containing the &struct drm_dp_mst_branch or &struct
1376 * drm_dp_mst_port respectively will be freed.
1378 * For &struct drm_dp_mst_branch, malloc refcounts are not currently exposed
1379 * to drivers. As of writing this documentation, there are no drivers that
1380 * have a usecase for accessing &struct drm_dp_mst_branch outside of the MST
1381 * helpers. Exposing this API to drivers in a race-free manner would take more
1382 * tweaking of the refcounting scheme, however patches are welcome provided
1383 * there is a legitimate driver usecase for this.
1385 * Refcount relationships in a topology
1386 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1388 * Let's take a look at why the relationship between topology and malloc
1389 * refcounts is designed the way it is.
1391 * .. kernel-figure:: dp-mst/topology-figure-1.dot
1393 * An example of topology and malloc refs in a DP MST topology with two
1394 * active payloads. Topology refcount increments are indicated by solid
1395 * lines, and malloc refcount increments are indicated by dashed lines.
1396 * Each starts from the branch which incremented the refcount, and ends at
1397 * the branch to which the refcount belongs to, i.e. the arrow points the
1398 * same way as the C pointers used to reference a structure.
1400 * As you can see in the above figure, every branch increments the topology
1401 * refcount of its children, and increments the malloc refcount of its
1402 * parent. Additionally, every payload increments the malloc refcount of its
1403 * assigned port by 1.
1405 * So, what would happen if MSTB #3 from the above figure was unplugged from
1406 * the system, but the driver hadn't yet removed payload #2 from port #3? The
1407 * topology would start to look like the figure below.
1409 * .. kernel-figure:: dp-mst/topology-figure-2.dot
1411 * Ports and branch devices which have been released from memory are
1412 * colored grey, and references which have been removed are colored red.
1414 * Whenever a port or branch device's topology refcount reaches zero, it will
1415 * decrement the topology refcounts of all its children, the malloc refcount
1416 * of its parent, and finally its own malloc refcount. For MSTB #4 and port
1417 * #4, this means they both have been disconnected from the topology and freed
1418 * from memory. But, because payload #2 is still holding a reference to port
1419 * #3, port #3 is removed from the topology but its &struct drm_dp_mst_port
1420 * is still accessible from memory. This also means port #3 has not yet
1421 * decremented the malloc refcount of MSTB #3, so its &struct
1422 * drm_dp_mst_branch will also stay allocated in memory until port #3's
1423 * malloc refcount reaches 0.
1425 * This relationship is necessary because in order to release payload #2, we
1426 * need to be able to figure out the last relative of port #3 that's still
1427 * connected to the topology. In this case, we would travel up the topology as
1430 * .. kernel-figure:: dp-mst/topology-figure-3.dot
1432 * And finally, remove payload #2 by communicating with port #2 through
1433 * sideband transactions.
1437 * drm_dp_mst_get_mstb_malloc() - Increment the malloc refcount of a branch
1439 * @mstb: The &struct drm_dp_mst_branch to increment the malloc refcount of
1441 * Increments &drm_dp_mst_branch.malloc_kref. When
1442 * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1443 * will be released and @mstb may no longer be used.
1445 * See also: drm_dp_mst_put_mstb_malloc()
1448 drm_dp_mst_get_mstb_malloc(struct drm_dp_mst_branch *mstb)
1450 kref_get(&mstb->malloc_kref);
1451 drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->malloc_kref));
1455 * drm_dp_mst_put_mstb_malloc() - Decrement the malloc refcount of a branch
1457 * @mstb: The &struct drm_dp_mst_branch to decrement the malloc refcount of
1459 * Decrements &drm_dp_mst_branch.malloc_kref. When
1460 * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1461 * will be released and @mstb may no longer be used.
1463 * See also: drm_dp_mst_get_mstb_malloc()
1466 drm_dp_mst_put_mstb_malloc(struct drm_dp_mst_branch *mstb)
1468 drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->malloc_kref) - 1);
1469 kref_put(&mstb->malloc_kref, drm_dp_free_mst_branch_device);
1472 static void drm_dp_free_mst_port(struct kref *kref)
1474 struct drm_dp_mst_port *port =
1475 container_of(kref, struct drm_dp_mst_port, malloc_kref);
1477 drm_dp_mst_put_mstb_malloc(port->parent);
1482 * drm_dp_mst_get_port_malloc() - Increment the malloc refcount of an MST port
1483 * @port: The &struct drm_dp_mst_port to increment the malloc refcount of
1485 * Increments &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1486 * reaches 0, the memory allocation for @port will be released and @port may
1487 * no longer be used.
1489 * Because @port could potentially be freed at any time by the DP MST helpers
1490 * if &drm_dp_mst_port.malloc_kref reaches 0, including during a call to this
1491 * function, drivers that which to make use of &struct drm_dp_mst_port should
1492 * ensure that they grab at least one main malloc reference to their MST ports
1493 * in &drm_dp_mst_topology_cbs.add_connector. This callback is called before
1494 * there is any chance for &drm_dp_mst_port.malloc_kref to reach 0.
1496 * See also: drm_dp_mst_put_port_malloc()
1499 drm_dp_mst_get_port_malloc(struct drm_dp_mst_port *port)
1501 kref_get(&port->malloc_kref);
1502 drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->malloc_kref));
1504 EXPORT_SYMBOL(drm_dp_mst_get_port_malloc);
1507 * drm_dp_mst_put_port_malloc() - Decrement the malloc refcount of an MST port
1508 * @port: The &struct drm_dp_mst_port to decrement the malloc refcount of
1510 * Decrements &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1511 * reaches 0, the memory allocation for @port will be released and @port may
1512 * no longer be used.
1514 * See also: drm_dp_mst_get_port_malloc()
1517 drm_dp_mst_put_port_malloc(struct drm_dp_mst_port *port)
1519 drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->malloc_kref) - 1);
1520 kref_put(&port->malloc_kref, drm_dp_free_mst_port);
1522 EXPORT_SYMBOL(drm_dp_mst_put_port_malloc);
1524 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
1526 #define STACK_DEPTH 8
1528 static noinline void
1529 __topology_ref_save(struct drm_dp_mst_topology_mgr *mgr,
1530 struct drm_dp_mst_topology_ref_history *history,
1531 enum drm_dp_mst_topology_ref_type type)
1533 struct drm_dp_mst_topology_ref_entry *entry = NULL;
1534 depot_stack_handle_t backtrace;
1535 ulong stack_entries[STACK_DEPTH];
1539 n = stack_trace_save(stack_entries, ARRAY_SIZE(stack_entries), 1);
1540 backtrace = stack_depot_save(stack_entries, n, GFP_KERNEL);
1544 /* Try to find an existing entry for this backtrace */
1545 for (i = 0; i < history->len; i++) {
1546 if (history->entries[i].backtrace == backtrace) {
1547 entry = &history->entries[i];
1552 /* Otherwise add one */
1554 struct drm_dp_mst_topology_ref_entry *new;
1555 int new_len = history->len + 1;
1557 new = krealloc(history->entries, sizeof(*new) * new_len,
1562 entry = &new[history->len];
1563 history->len = new_len;
1564 history->entries = new;
1566 entry->backtrace = backtrace;
1571 entry->ts_nsec = ktime_get_ns();
1575 topology_ref_history_cmp(const void *a, const void *b)
1577 const struct drm_dp_mst_topology_ref_entry *entry_a = a, *entry_b = b;
1579 if (entry_a->ts_nsec > entry_b->ts_nsec)
1581 else if (entry_a->ts_nsec < entry_b->ts_nsec)
1587 static inline const char *
1588 topology_ref_type_to_str(enum drm_dp_mst_topology_ref_type type)
1590 if (type == DRM_DP_MST_TOPOLOGY_REF_GET)
1597 __dump_topology_ref_history(struct drm_device *drm,
1598 struct drm_dp_mst_topology_ref_history *history,
1599 void *ptr, const char *type_str)
1601 struct drm_printer p = drm_dbg_printer(drm, DRM_UT_DP, DBG_PREFIX);
1602 char *buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
1611 /* First, sort the list so that it goes from oldest to newest
1614 sort(history->entries, history->len, sizeof(*history->entries),
1615 topology_ref_history_cmp, NULL);
1617 drm_printf(&p, "%s (%p) topology count reached 0, dumping history:\n",
1620 for (i = 0; i < history->len; i++) {
1621 const struct drm_dp_mst_topology_ref_entry *entry =
1622 &history->entries[i];
1623 u64 ts_nsec = entry->ts_nsec;
1624 u32 rem_nsec = do_div(ts_nsec, 1000000000);
1626 stack_depot_snprint(entry->backtrace, buf, PAGE_SIZE, 4);
1628 drm_printf(&p, " %d %ss (last at %5llu.%06u):\n%s",
1630 topology_ref_type_to_str(entry->type),
1631 ts_nsec, rem_nsec / 1000, buf);
1634 /* Now free the history, since this is the only time we expose it */
1635 kfree(history->entries);
1640 static __always_inline void
1641 drm_dp_mst_dump_mstb_topology_history(struct drm_dp_mst_branch *mstb)
1643 __dump_topology_ref_history(mstb->mgr->dev, &mstb->topology_ref_history,
1647 static __always_inline void
1648 drm_dp_mst_dump_port_topology_history(struct drm_dp_mst_port *port)
1650 __dump_topology_ref_history(port->mgr->dev, &port->topology_ref_history,
1654 static __always_inline void
1655 save_mstb_topology_ref(struct drm_dp_mst_branch *mstb,
1656 enum drm_dp_mst_topology_ref_type type)
1658 __topology_ref_save(mstb->mgr, &mstb->topology_ref_history, type);
1661 static __always_inline void
1662 save_port_topology_ref(struct drm_dp_mst_port *port,
1663 enum drm_dp_mst_topology_ref_type type)
1665 __topology_ref_save(port->mgr, &port->topology_ref_history, type);
1669 topology_ref_history_lock(struct drm_dp_mst_topology_mgr *mgr)
1671 mutex_lock(&mgr->topology_ref_history_lock);
1675 topology_ref_history_unlock(struct drm_dp_mst_topology_mgr *mgr)
1677 mutex_unlock(&mgr->topology_ref_history_lock);
1681 topology_ref_history_lock(struct drm_dp_mst_topology_mgr *mgr) {}
1683 topology_ref_history_unlock(struct drm_dp_mst_topology_mgr *mgr) {}
1685 drm_dp_mst_dump_mstb_topology_history(struct drm_dp_mst_branch *mstb) {}
1687 drm_dp_mst_dump_port_topology_history(struct drm_dp_mst_port *port) {}
1688 #define save_mstb_topology_ref(mstb, type)
1689 #define save_port_topology_ref(port, type)
1692 struct drm_dp_mst_atomic_payload *
1693 drm_atomic_get_mst_payload_state(struct drm_dp_mst_topology_state *state,
1694 struct drm_dp_mst_port *port)
1696 struct drm_dp_mst_atomic_payload *payload;
1698 list_for_each_entry(payload, &state->payloads, next)
1699 if (payload->port == port)
1704 EXPORT_SYMBOL(drm_atomic_get_mst_payload_state);
1706 static void drm_dp_destroy_mst_branch_device(struct kref *kref)
1708 struct drm_dp_mst_branch *mstb =
1709 container_of(kref, struct drm_dp_mst_branch, topology_kref);
1710 struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
1712 drm_dp_mst_dump_mstb_topology_history(mstb);
1714 INIT_LIST_HEAD(&mstb->destroy_next);
1717 * This can get called under mgr->mutex, so we need to perform the
1718 * actual destruction of the mstb in another worker
1720 mutex_lock(&mgr->delayed_destroy_lock);
1721 list_add(&mstb->destroy_next, &mgr->destroy_branch_device_list);
1722 mutex_unlock(&mgr->delayed_destroy_lock);
1723 queue_work(mgr->delayed_destroy_wq, &mgr->delayed_destroy_work);
1727 * drm_dp_mst_topology_try_get_mstb() - Increment the topology refcount of a
1728 * branch device unless it's zero
1729 * @mstb: &struct drm_dp_mst_branch to increment the topology refcount of
1731 * Attempts to grab a topology reference to @mstb, if it hasn't yet been
1732 * removed from the topology (e.g. &drm_dp_mst_branch.topology_kref has
1733 * reached 0). Holding a topology reference implies that a malloc reference
1734 * will be held to @mstb as long as the user holds the topology reference.
1736 * Care should be taken to ensure that the user has at least one malloc
1737 * reference to @mstb. If you already have a topology reference to @mstb, you
1738 * should use drm_dp_mst_topology_get_mstb() instead.
1741 * drm_dp_mst_topology_get_mstb()
1742 * drm_dp_mst_topology_put_mstb()
1745 * * 1: A topology reference was grabbed successfully
1746 * * 0: @port is no longer in the topology, no reference was grabbed
1748 static int __must_check
1749 drm_dp_mst_topology_try_get_mstb(struct drm_dp_mst_branch *mstb)
1753 topology_ref_history_lock(mstb->mgr);
1754 ret = kref_get_unless_zero(&mstb->topology_kref);
1756 drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->topology_kref));
1757 save_mstb_topology_ref(mstb, DRM_DP_MST_TOPOLOGY_REF_GET);
1760 topology_ref_history_unlock(mstb->mgr);
1766 * drm_dp_mst_topology_get_mstb() - Increment the topology refcount of a
1768 * @mstb: The &struct drm_dp_mst_branch to increment the topology refcount of
1770 * Increments &drm_dp_mst_branch.topology_refcount without checking whether or
1771 * not it's already reached 0. This is only valid to use in scenarios where
1772 * you are already guaranteed to have at least one active topology reference
1773 * to @mstb. Otherwise, drm_dp_mst_topology_try_get_mstb() must be used.
1776 * drm_dp_mst_topology_try_get_mstb()
1777 * drm_dp_mst_topology_put_mstb()
1779 static void drm_dp_mst_topology_get_mstb(struct drm_dp_mst_branch *mstb)
1781 topology_ref_history_lock(mstb->mgr);
1783 save_mstb_topology_ref(mstb, DRM_DP_MST_TOPOLOGY_REF_GET);
1784 WARN_ON(kref_read(&mstb->topology_kref) == 0);
1785 kref_get(&mstb->topology_kref);
1786 drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->topology_kref));
1788 topology_ref_history_unlock(mstb->mgr);
1792 * drm_dp_mst_topology_put_mstb() - release a topology reference to a branch
1794 * @mstb: The &struct drm_dp_mst_branch to release the topology reference from
1796 * Releases a topology reference from @mstb by decrementing
1797 * &drm_dp_mst_branch.topology_kref.
1800 * drm_dp_mst_topology_try_get_mstb()
1801 * drm_dp_mst_topology_get_mstb()
1804 drm_dp_mst_topology_put_mstb(struct drm_dp_mst_branch *mstb)
1806 topology_ref_history_lock(mstb->mgr);
1808 drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->topology_kref) - 1);
1809 save_mstb_topology_ref(mstb, DRM_DP_MST_TOPOLOGY_REF_PUT);
1811 topology_ref_history_unlock(mstb->mgr);
1812 kref_put(&mstb->topology_kref, drm_dp_destroy_mst_branch_device);
1815 static void drm_dp_destroy_port(struct kref *kref)
1817 struct drm_dp_mst_port *port =
1818 container_of(kref, struct drm_dp_mst_port, topology_kref);
1819 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
1821 drm_dp_mst_dump_port_topology_history(port);
1823 /* There's nothing that needs locking to destroy an input port yet */
1825 drm_dp_mst_put_port_malloc(port);
1829 drm_edid_free(port->cached_edid);
1832 * we can't destroy the connector here, as we might be holding the
1833 * mode_config.mutex from an EDID retrieval
1835 mutex_lock(&mgr->delayed_destroy_lock);
1836 list_add(&port->next, &mgr->destroy_port_list);
1837 mutex_unlock(&mgr->delayed_destroy_lock);
1838 queue_work(mgr->delayed_destroy_wq, &mgr->delayed_destroy_work);
1842 * drm_dp_mst_topology_try_get_port() - Increment the topology refcount of a
1843 * port unless it's zero
1844 * @port: &struct drm_dp_mst_port to increment the topology refcount of
1846 * Attempts to grab a topology reference to @port, if it hasn't yet been
1847 * removed from the topology (e.g. &drm_dp_mst_port.topology_kref has reached
1848 * 0). Holding a topology reference implies that a malloc reference will be
1849 * held to @port as long as the user holds the topology reference.
1851 * Care should be taken to ensure that the user has at least one malloc
1852 * reference to @port. If you already have a topology reference to @port, you
1853 * should use drm_dp_mst_topology_get_port() instead.
1856 * drm_dp_mst_topology_get_port()
1857 * drm_dp_mst_topology_put_port()
1860 * * 1: A topology reference was grabbed successfully
1861 * * 0: @port is no longer in the topology, no reference was grabbed
1863 static int __must_check
1864 drm_dp_mst_topology_try_get_port(struct drm_dp_mst_port *port)
1868 topology_ref_history_lock(port->mgr);
1869 ret = kref_get_unless_zero(&port->topology_kref);
1871 drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->topology_kref));
1872 save_port_topology_ref(port, DRM_DP_MST_TOPOLOGY_REF_GET);
1875 topology_ref_history_unlock(port->mgr);
1880 * drm_dp_mst_topology_get_port() - Increment the topology refcount of a port
1881 * @port: The &struct drm_dp_mst_port to increment the topology refcount of
1883 * Increments &drm_dp_mst_port.topology_refcount without checking whether or
1884 * not it's already reached 0. This is only valid to use in scenarios where
1885 * you are already guaranteed to have at least one active topology reference
1886 * to @port. Otherwise, drm_dp_mst_topology_try_get_port() must be used.
1889 * drm_dp_mst_topology_try_get_port()
1890 * drm_dp_mst_topology_put_port()
1892 static void drm_dp_mst_topology_get_port(struct drm_dp_mst_port *port)
1894 topology_ref_history_lock(port->mgr);
1896 WARN_ON(kref_read(&port->topology_kref) == 0);
1897 kref_get(&port->topology_kref);
1898 drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->topology_kref));
1899 save_port_topology_ref(port, DRM_DP_MST_TOPOLOGY_REF_GET);
1901 topology_ref_history_unlock(port->mgr);
1905 * drm_dp_mst_topology_put_port() - release a topology reference to a port
1906 * @port: The &struct drm_dp_mst_port to release the topology reference from
1908 * Releases a topology reference from @port by decrementing
1909 * &drm_dp_mst_port.topology_kref.
1912 * drm_dp_mst_topology_try_get_port()
1913 * drm_dp_mst_topology_get_port()
1915 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port *port)
1917 topology_ref_history_lock(port->mgr);
1919 drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->topology_kref) - 1);
1920 save_port_topology_ref(port, DRM_DP_MST_TOPOLOGY_REF_PUT);
1922 topology_ref_history_unlock(port->mgr);
1923 kref_put(&port->topology_kref, drm_dp_destroy_port);
1926 static struct drm_dp_mst_branch *
1927 drm_dp_mst_topology_get_mstb_validated_locked(struct drm_dp_mst_branch *mstb,
1928 struct drm_dp_mst_branch *to_find)
1930 struct drm_dp_mst_port *port;
1931 struct drm_dp_mst_branch *rmstb;
1933 if (to_find == mstb)
1936 list_for_each_entry(port, &mstb->ports, next) {
1938 rmstb = drm_dp_mst_topology_get_mstb_validated_locked(
1939 port->mstb, to_find);
1947 static struct drm_dp_mst_branch *
1948 drm_dp_mst_topology_get_mstb_validated(struct drm_dp_mst_topology_mgr *mgr,
1949 struct drm_dp_mst_branch *mstb)
1951 struct drm_dp_mst_branch *rmstb = NULL;
1953 mutex_lock(&mgr->lock);
1954 if (mgr->mst_primary) {
1955 rmstb = drm_dp_mst_topology_get_mstb_validated_locked(
1956 mgr->mst_primary, mstb);
1958 if (rmstb && !drm_dp_mst_topology_try_get_mstb(rmstb))
1961 mutex_unlock(&mgr->lock);
1965 static struct drm_dp_mst_port *
1966 drm_dp_mst_topology_get_port_validated_locked(struct drm_dp_mst_branch *mstb,
1967 struct drm_dp_mst_port *to_find)
1969 struct drm_dp_mst_port *port, *mport;
1971 list_for_each_entry(port, &mstb->ports, next) {
1972 if (port == to_find)
1976 mport = drm_dp_mst_topology_get_port_validated_locked(
1977 port->mstb, to_find);
1985 static struct drm_dp_mst_port *
1986 drm_dp_mst_topology_get_port_validated(struct drm_dp_mst_topology_mgr *mgr,
1987 struct drm_dp_mst_port *port)
1989 struct drm_dp_mst_port *rport = NULL;
1991 mutex_lock(&mgr->lock);
1992 if (mgr->mst_primary) {
1993 rport = drm_dp_mst_topology_get_port_validated_locked(
1994 mgr->mst_primary, port);
1996 if (rport && !drm_dp_mst_topology_try_get_port(rport))
1999 mutex_unlock(&mgr->lock);
2003 static struct drm_dp_mst_port *drm_dp_get_port(struct drm_dp_mst_branch *mstb, u8 port_num)
2005 struct drm_dp_mst_port *port;
2008 list_for_each_entry(port, &mstb->ports, next) {
2009 if (port->port_num == port_num) {
2010 ret = drm_dp_mst_topology_try_get_port(port);
2011 return ret ? port : NULL;
2019 * calculate a new RAD for this MST branch device
2020 * if parent has an LCT of 2 then it has 1 nibble of RAD,
2021 * if parent has an LCT of 3 then it has 2 nibbles of RAD,
2023 static u8 drm_dp_calculate_rad(struct drm_dp_mst_port *port,
2026 int parent_lct = port->parent->lct;
2028 int idx = (parent_lct - 1) / 2;
2030 if (parent_lct > 1) {
2031 memcpy(rad, port->parent->rad, idx + 1);
2032 shift = (parent_lct % 2) ? 4 : 0;
2036 rad[idx] |= port->port_num << shift;
2037 return parent_lct + 1;
2040 static bool drm_dp_mst_is_end_device(u8 pdt, bool mcs)
2043 case DP_PEER_DEVICE_DP_LEGACY_CONV:
2044 case DP_PEER_DEVICE_SST_SINK:
2046 case DP_PEER_DEVICE_MST_BRANCHING:
2047 /* For sst branch device */
2057 drm_dp_port_set_pdt(struct drm_dp_mst_port *port, u8 new_pdt,
2060 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
2061 struct drm_dp_mst_branch *mstb;
2065 if (port->pdt == new_pdt && port->mcs == new_mcs)
2068 /* Teardown the old pdt, if there is one */
2069 if (port->pdt != DP_PEER_DEVICE_NONE) {
2070 if (drm_dp_mst_is_end_device(port->pdt, port->mcs)) {
2072 * If the new PDT would also have an i2c bus,
2073 * don't bother with reregistering it
2075 if (new_pdt != DP_PEER_DEVICE_NONE &&
2076 drm_dp_mst_is_end_device(new_pdt, new_mcs)) {
2077 port->pdt = new_pdt;
2078 port->mcs = new_mcs;
2082 /* remove i2c over sideband */
2083 drm_dp_mst_unregister_i2c_bus(port);
2085 mutex_lock(&mgr->lock);
2086 drm_dp_mst_topology_put_mstb(port->mstb);
2088 mutex_unlock(&mgr->lock);
2092 port->pdt = new_pdt;
2093 port->mcs = new_mcs;
2095 if (port->pdt != DP_PEER_DEVICE_NONE) {
2096 if (drm_dp_mst_is_end_device(port->pdt, port->mcs)) {
2097 /* add i2c over sideband */
2098 ret = drm_dp_mst_register_i2c_bus(port);
2100 lct = drm_dp_calculate_rad(port, rad);
2101 mstb = drm_dp_add_mst_branch_device(lct, rad);
2104 drm_err(mgr->dev, "Failed to create MSTB for port %p", port);
2108 mutex_lock(&mgr->lock);
2110 mstb->mgr = port->mgr;
2111 mstb->port_parent = port;
2114 * Make sure this port's memory allocation stays
2115 * around until its child MSTB releases it
2117 drm_dp_mst_get_port_malloc(port);
2118 mutex_unlock(&mgr->lock);
2120 /* And make sure we send a link address for this */
2127 port->pdt = DP_PEER_DEVICE_NONE;
2132 * drm_dp_mst_dpcd_read() - read a series of bytes from the DPCD via sideband
2133 * @aux: Fake sideband AUX CH
2134 * @offset: address of the (first) register to read
2135 * @buffer: buffer to store the register values
2136 * @size: number of bytes in @buffer
2138 * Performs the same functionality for remote devices via
2139 * sideband messaging as drm_dp_dpcd_read() does for local
2140 * devices via actual AUX CH.
2142 * Return: Number of bytes read, or negative error code on failure.
2144 ssize_t drm_dp_mst_dpcd_read(struct drm_dp_aux *aux,
2145 unsigned int offset, void *buffer, size_t size)
2147 struct drm_dp_mst_port *port = container_of(aux, struct drm_dp_mst_port,
2150 return drm_dp_send_dpcd_read(port->mgr, port,
2151 offset, size, buffer);
2155 * drm_dp_mst_dpcd_write() - write a series of bytes to the DPCD via sideband
2156 * @aux: Fake sideband AUX CH
2157 * @offset: address of the (first) register to write
2158 * @buffer: buffer containing the values to write
2159 * @size: number of bytes in @buffer
2161 * Performs the same functionality for remote devices via
2162 * sideband messaging as drm_dp_dpcd_write() does for local
2163 * devices via actual AUX CH.
2165 * Return: number of bytes written on success, negative error code on failure.
2167 ssize_t drm_dp_mst_dpcd_write(struct drm_dp_aux *aux,
2168 unsigned int offset, void *buffer, size_t size)
2170 struct drm_dp_mst_port *port = container_of(aux, struct drm_dp_mst_port,
2173 return drm_dp_send_dpcd_write(port->mgr, port,
2174 offset, size, buffer);
2177 static int drm_dp_check_mstb_guid(struct drm_dp_mst_branch *mstb, u8 *guid)
2181 memcpy(mstb->guid, guid, 16);
2183 if (!drm_dp_validate_guid(mstb->mgr, mstb->guid)) {
2184 if (mstb->port_parent) {
2185 ret = drm_dp_send_dpcd_write(mstb->mgr,
2187 DP_GUID, 16, mstb->guid);
2189 ret = drm_dp_dpcd_write(mstb->mgr->aux,
2190 DP_GUID, mstb->guid, 16);
2194 if (ret < 16 && ret > 0)
2197 return ret == 16 ? 0 : ret;
2200 static void build_mst_prop_path(const struct drm_dp_mst_branch *mstb,
2203 size_t proppath_size)
2208 snprintf(proppath, proppath_size, "mst:%d", mstb->mgr->conn_base_id);
2209 for (i = 0; i < (mstb->lct - 1); i++) {
2210 int shift = (i % 2) ? 0 : 4;
2211 int port_num = (mstb->rad[i / 2] >> shift) & 0xf;
2213 snprintf(temp, sizeof(temp), "-%d", port_num);
2214 strlcat(proppath, temp, proppath_size);
2216 snprintf(temp, sizeof(temp), "-%d", pnum);
2217 strlcat(proppath, temp, proppath_size);
2221 * drm_dp_mst_connector_late_register() - Late MST connector registration
2222 * @connector: The MST connector
2223 * @port: The MST port for this connector
2225 * Helper to register the remote aux device for this MST port. Drivers should
2226 * call this from their mst connector's late_register hook to enable MST aux
2229 * Return: 0 on success, negative error code on failure.
2231 int drm_dp_mst_connector_late_register(struct drm_connector *connector,
2232 struct drm_dp_mst_port *port)
2234 drm_dbg_kms(port->mgr->dev, "registering %s remote bus for %s\n",
2235 port->aux.name, connector->kdev->kobj.name);
2237 port->aux.dev = connector->kdev;
2238 return drm_dp_aux_register_devnode(&port->aux);
2240 EXPORT_SYMBOL(drm_dp_mst_connector_late_register);
2243 * drm_dp_mst_connector_early_unregister() - Early MST connector unregistration
2244 * @connector: The MST connector
2245 * @port: The MST port for this connector
2247 * Helper to unregister the remote aux device for this MST port, registered by
2248 * drm_dp_mst_connector_late_register(). Drivers should call this from their mst
2249 * connector's early_unregister hook.
2251 void drm_dp_mst_connector_early_unregister(struct drm_connector *connector,
2252 struct drm_dp_mst_port *port)
2254 drm_dbg_kms(port->mgr->dev, "unregistering %s remote bus for %s\n",
2255 port->aux.name, connector->kdev->kobj.name);
2256 drm_dp_aux_unregister_devnode(&port->aux);
2258 EXPORT_SYMBOL(drm_dp_mst_connector_early_unregister);
2261 drm_dp_mst_port_add_connector(struct drm_dp_mst_branch *mstb,
2262 struct drm_dp_mst_port *port)
2264 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
2268 build_mst_prop_path(mstb, port->port_num, proppath, sizeof(proppath));
2269 port->connector = mgr->cbs->add_connector(mgr, port, proppath);
2270 if (!port->connector) {
2275 if (port->pdt != DP_PEER_DEVICE_NONE &&
2276 drm_dp_mst_is_end_device(port->pdt, port->mcs) &&
2277 drm_dp_mst_port_is_logical(port))
2278 port->cached_edid = drm_edid_read_ddc(port->connector,
2281 drm_connector_register(port->connector);
2285 drm_err(mgr->dev, "Failed to create connector for port %p: %d\n", port, ret);
2289 * Drop a topology reference, and unlink the port from the in-memory topology
2293 drm_dp_mst_topology_unlink_port(struct drm_dp_mst_topology_mgr *mgr,
2294 struct drm_dp_mst_port *port)
2296 mutex_lock(&mgr->lock);
2297 port->parent->num_ports--;
2298 list_del(&port->next);
2299 mutex_unlock(&mgr->lock);
2300 drm_dp_mst_topology_put_port(port);
2303 static struct drm_dp_mst_port *
2304 drm_dp_mst_add_port(struct drm_device *dev,
2305 struct drm_dp_mst_topology_mgr *mgr,
2306 struct drm_dp_mst_branch *mstb, u8 port_number)
2308 struct drm_dp_mst_port *port = kzalloc(sizeof(*port), GFP_KERNEL);
2313 kref_init(&port->topology_kref);
2314 kref_init(&port->malloc_kref);
2315 port->parent = mstb;
2316 port->port_num = port_number;
2318 port->aux.name = "DPMST";
2319 port->aux.dev = dev->dev;
2320 port->aux.is_remote = true;
2322 /* initialize the MST downstream port's AUX crc work queue */
2323 port->aux.drm_dev = dev;
2324 drm_dp_remote_aux_init(&port->aux);
2327 * Make sure the memory allocation for our parent branch stays
2328 * around until our own memory allocation is released
2330 drm_dp_mst_get_mstb_malloc(mstb);
2336 drm_dp_mst_handle_link_address_port(struct drm_dp_mst_branch *mstb,
2337 struct drm_device *dev,
2338 struct drm_dp_link_addr_reply_port *port_msg)
2340 struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
2341 struct drm_dp_mst_port *port;
2342 int old_ddps = 0, ret;
2343 u8 new_pdt = DP_PEER_DEVICE_NONE;
2345 bool created = false, send_link_addr = false, changed = false;
2347 port = drm_dp_get_port(mstb, port_msg->port_number);
2349 port = drm_dp_mst_add_port(dev, mgr, mstb,
2350 port_msg->port_number);
2355 } else if (!port->input && port_msg->input_port && port->connector) {
2356 /* Since port->connector can't be changed here, we create a
2357 * new port if input_port changes from 0 to 1
2359 drm_dp_mst_topology_unlink_port(mgr, port);
2360 drm_dp_mst_topology_put_port(port);
2361 port = drm_dp_mst_add_port(dev, mgr, mstb,
2362 port_msg->port_number);
2367 } else if (port->input && !port_msg->input_port) {
2369 } else if (port->connector) {
2370 /* We're updating a port that's exposed to userspace, so do it
2373 drm_modeset_lock(&mgr->base.lock, NULL);
2375 old_ddps = port->ddps;
2376 changed = port->ddps != port_msg->ddps ||
2378 (port->ldps != port_msg->legacy_device_plug_status ||
2379 port->dpcd_rev != port_msg->dpcd_revision ||
2380 port->mcs != port_msg->mcs ||
2381 port->pdt != port_msg->peer_device_type ||
2382 port->num_sdp_stream_sinks !=
2383 port_msg->num_sdp_stream_sinks));
2386 port->input = port_msg->input_port;
2388 new_pdt = port_msg->peer_device_type;
2389 new_mcs = port_msg->mcs;
2390 port->ddps = port_msg->ddps;
2391 port->ldps = port_msg->legacy_device_plug_status;
2392 port->dpcd_rev = port_msg->dpcd_revision;
2393 port->num_sdp_streams = port_msg->num_sdp_streams;
2394 port->num_sdp_stream_sinks = port_msg->num_sdp_stream_sinks;
2396 /* manage mstb port lists with mgr lock - take a reference
2399 mutex_lock(&mgr->lock);
2400 drm_dp_mst_topology_get_port(port);
2401 list_add(&port->next, &mstb->ports);
2403 mutex_unlock(&mgr->lock);
2407 * Reprobe PBN caps on both hotplug, and when re-probing the link
2408 * for our parent mstb
2410 if (old_ddps != port->ddps || !created) {
2411 if (port->ddps && !port->input) {
2412 ret = drm_dp_send_enum_path_resources(mgr, mstb,
2421 ret = drm_dp_port_set_pdt(port, new_pdt, new_mcs);
2423 send_link_addr = true;
2424 } else if (ret < 0) {
2425 drm_err(dev, "Failed to change PDT on port %p: %d\n", port, ret);
2430 * If this port wasn't just created, then we're reprobing because
2431 * we're coming out of suspend. In this case, always resend the link
2432 * address if there's an MSTB on this port
2434 if (!created && port->pdt == DP_PEER_DEVICE_MST_BRANCHING &&
2436 send_link_addr = true;
2438 if (port->connector)
2439 drm_modeset_unlock(&mgr->base.lock);
2440 else if (!port->input)
2441 drm_dp_mst_port_add_connector(mstb, port);
2443 if (send_link_addr && port->mstb) {
2444 ret = drm_dp_send_link_address(mgr, port->mstb);
2445 if (ret == 1) /* MSTB below us changed */
2451 /* put reference to this port */
2452 drm_dp_mst_topology_put_port(port);
2456 drm_dp_mst_topology_unlink_port(mgr, port);
2457 if (port->connector)
2458 drm_modeset_unlock(&mgr->base.lock);
2460 drm_dp_mst_topology_put_port(port);
2465 drm_dp_mst_handle_conn_stat(struct drm_dp_mst_branch *mstb,
2466 struct drm_dp_connection_status_notify *conn_stat)
2468 struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
2469 struct drm_dp_mst_port *port;
2473 bool dowork = false, create_connector = false;
2475 port = drm_dp_get_port(mstb, conn_stat->port_number);
2479 if (port->connector) {
2480 if (!port->input && conn_stat->input_port) {
2482 * We can't remove a connector from an already exposed
2483 * port, so just throw the port out and make sure we
2484 * reprobe the link address of it's parent MSTB
2486 drm_dp_mst_topology_unlink_port(mgr, port);
2487 mstb->link_address_sent = false;
2492 /* Locking is only needed if the port's exposed to userspace */
2493 drm_modeset_lock(&mgr->base.lock, NULL);
2494 } else if (port->input && !conn_stat->input_port) {
2495 create_connector = true;
2496 /* Reprobe link address so we get num_sdp_streams */
2497 mstb->link_address_sent = false;
2501 old_ddps = port->ddps;
2502 port->input = conn_stat->input_port;
2503 port->ldps = conn_stat->legacy_device_plug_status;
2504 port->ddps = conn_stat->displayport_device_plug_status;
2506 if (old_ddps != port->ddps) {
2507 if (port->ddps && !port->input)
2508 drm_dp_send_enum_path_resources(mgr, mstb, port);
2513 new_pdt = port->input ? DP_PEER_DEVICE_NONE : conn_stat->peer_device_type;
2514 new_mcs = conn_stat->message_capability_status;
2515 ret = drm_dp_port_set_pdt(port, new_pdt, new_mcs);
2518 } else if (ret < 0) {
2519 drm_err(mgr->dev, "Failed to change PDT for port %p: %d\n", port, ret);
2523 if (port->connector)
2524 drm_modeset_unlock(&mgr->base.lock);
2525 else if (create_connector)
2526 drm_dp_mst_port_add_connector(mstb, port);
2529 drm_dp_mst_topology_put_port(port);
2533 static struct drm_dp_mst_branch *drm_dp_get_mst_branch_device(struct drm_dp_mst_topology_mgr *mgr,
2536 struct drm_dp_mst_branch *mstb;
2537 struct drm_dp_mst_port *port;
2539 /* find the port by iterating down */
2541 mutex_lock(&mgr->lock);
2542 mstb = mgr->mst_primary;
2547 for (i = 0; i < lct - 1; i++) {
2548 int shift = (i % 2) ? 0 : 4;
2549 int port_num = (rad[i / 2] >> shift) & 0xf;
2551 list_for_each_entry(port, &mstb->ports, next) {
2552 if (port->port_num == port_num) {
2556 "failed to lookup MSTB with lct %d, rad %02x\n",
2565 ret = drm_dp_mst_topology_try_get_mstb(mstb);
2569 mutex_unlock(&mgr->lock);
2573 static struct drm_dp_mst_branch *get_mst_branch_device_by_guid_helper(
2574 struct drm_dp_mst_branch *mstb,
2575 const uint8_t *guid)
2577 struct drm_dp_mst_branch *found_mstb;
2578 struct drm_dp_mst_port *port;
2583 if (memcmp(mstb->guid, guid, 16) == 0)
2587 list_for_each_entry(port, &mstb->ports, next) {
2588 found_mstb = get_mst_branch_device_by_guid_helper(port->mstb, guid);
2597 static struct drm_dp_mst_branch *
2598 drm_dp_get_mst_branch_device_by_guid(struct drm_dp_mst_topology_mgr *mgr,
2599 const uint8_t *guid)
2601 struct drm_dp_mst_branch *mstb;
2604 /* find the port by iterating down */
2605 mutex_lock(&mgr->lock);
2607 mstb = get_mst_branch_device_by_guid_helper(mgr->mst_primary, guid);
2609 ret = drm_dp_mst_topology_try_get_mstb(mstb);
2614 mutex_unlock(&mgr->lock);
2618 static int drm_dp_check_and_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
2619 struct drm_dp_mst_branch *mstb)
2621 struct drm_dp_mst_port *port;
2623 bool changed = false;
2625 if (!mstb->link_address_sent) {
2626 ret = drm_dp_send_link_address(mgr, mstb);
2633 list_for_each_entry(port, &mstb->ports, next) {
2634 if (port->input || !port->ddps || !port->mstb)
2637 ret = drm_dp_check_and_send_link_address(mgr, port->mstb);
2647 static void drm_dp_mst_link_probe_work(struct work_struct *work)
2649 struct drm_dp_mst_topology_mgr *mgr =
2650 container_of(work, struct drm_dp_mst_topology_mgr, work);
2651 struct drm_device *dev = mgr->dev;
2652 struct drm_dp_mst_branch *mstb;
2654 bool clear_payload_id_table;
2656 mutex_lock(&mgr->probe_lock);
2658 mutex_lock(&mgr->lock);
2659 clear_payload_id_table = !mgr->payload_id_table_cleared;
2660 mgr->payload_id_table_cleared = true;
2662 mstb = mgr->mst_primary;
2664 ret = drm_dp_mst_topology_try_get_mstb(mstb);
2668 mutex_unlock(&mgr->lock);
2670 mutex_unlock(&mgr->probe_lock);
2675 * Certain branch devices seem to incorrectly report an available_pbn
2676 * of 0 on downstream sinks, even after clearing the
2677 * DP_PAYLOAD_ALLOCATE_* registers in
2678 * drm_dp_mst_topology_mgr_set_mst(). Namely, the CableMatters USB-C
2679 * 2x DP hub. Sending a CLEAR_PAYLOAD_ID_TABLE message seems to make
2680 * things work again.
2682 if (clear_payload_id_table) {
2683 drm_dbg_kms(dev, "Clearing payload ID table\n");
2684 drm_dp_send_clear_payload_id_table(mgr, mstb);
2687 ret = drm_dp_check_and_send_link_address(mgr, mstb);
2688 drm_dp_mst_topology_put_mstb(mstb);
2690 mutex_unlock(&mgr->probe_lock);
2692 drm_kms_helper_hotplug_event(dev);
2695 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
2700 if (memchr_inv(guid, 0, 16))
2703 salt = get_jiffies_64();
2705 memcpy(&guid[0], &salt, sizeof(u64));
2706 memcpy(&guid[8], &salt, sizeof(u64));
2711 static void build_dpcd_read(struct drm_dp_sideband_msg_tx *msg,
2712 u8 port_num, u32 offset, u8 num_bytes)
2714 struct drm_dp_sideband_msg_req_body req;
2716 req.req_type = DP_REMOTE_DPCD_READ;
2717 req.u.dpcd_read.port_number = port_num;
2718 req.u.dpcd_read.dpcd_address = offset;
2719 req.u.dpcd_read.num_bytes = num_bytes;
2720 drm_dp_encode_sideband_req(&req, msg);
2723 static int drm_dp_send_sideband_msg(struct drm_dp_mst_topology_mgr *mgr,
2724 bool up, u8 *msg, int len)
2727 int regbase = up ? DP_SIDEBAND_MSG_UP_REP_BASE : DP_SIDEBAND_MSG_DOWN_REQ_BASE;
2728 int tosend, total, offset;
2735 tosend = min3(mgr->max_dpcd_transaction_bytes, 16, total);
2737 ret = drm_dp_dpcd_write(mgr->aux, regbase + offset,
2740 if (ret != tosend) {
2741 if (ret == -EIO && retries < 5) {
2745 drm_dbg_kms(mgr->dev, "failed to dpcd write %d %d\n", tosend, ret);
2751 } while (total > 0);
2755 static int set_hdr_from_dst_qlock(struct drm_dp_sideband_msg_hdr *hdr,
2756 struct drm_dp_sideband_msg_tx *txmsg)
2758 struct drm_dp_mst_branch *mstb = txmsg->dst;
2761 req_type = txmsg->msg[0] & 0x7f;
2762 if (req_type == DP_CONNECTION_STATUS_NOTIFY ||
2763 req_type == DP_RESOURCE_STATUS_NOTIFY ||
2764 req_type == DP_CLEAR_PAYLOAD_ID_TABLE)
2768 hdr->path_msg = txmsg->path_msg;
2769 if (hdr->broadcast) {
2773 hdr->lct = mstb->lct;
2774 hdr->lcr = mstb->lct - 1;
2777 memcpy(hdr->rad, mstb->rad, hdr->lct / 2);
2782 * process a single block of the next message in the sideband queue
2784 static int process_single_tx_qlock(struct drm_dp_mst_topology_mgr *mgr,
2785 struct drm_dp_sideband_msg_tx *txmsg,
2789 struct drm_dp_sideband_msg_hdr hdr;
2790 int len, space, idx, tosend;
2793 if (txmsg->state == DRM_DP_SIDEBAND_TX_SENT)
2796 memset(&hdr, 0, sizeof(struct drm_dp_sideband_msg_hdr));
2798 if (txmsg->state == DRM_DP_SIDEBAND_TX_QUEUED)
2799 txmsg->state = DRM_DP_SIDEBAND_TX_START_SEND;
2801 /* make hdr from dst mst */
2802 ret = set_hdr_from_dst_qlock(&hdr, txmsg);
2806 /* amount left to send in this message */
2807 len = txmsg->cur_len - txmsg->cur_offset;
2809 /* 48 - sideband msg size - 1 byte for data CRC, x header bytes */
2810 space = 48 - 1 - drm_dp_calc_sb_hdr_size(&hdr);
2812 tosend = min(len, space);
2813 if (len == txmsg->cur_len)
2819 hdr.msg_len = tosend + 1;
2820 drm_dp_encode_sideband_msg_hdr(&hdr, chunk, &idx);
2821 memcpy(&chunk[idx], &txmsg->msg[txmsg->cur_offset], tosend);
2822 /* add crc at end */
2823 drm_dp_crc_sideband_chunk_req(&chunk[idx], tosend);
2826 ret = drm_dp_send_sideband_msg(mgr, up, chunk, idx);
2828 if (drm_debug_enabled(DRM_UT_DP)) {
2829 struct drm_printer p = drm_dbg_printer(mgr->dev,
2833 drm_printf(&p, "sideband msg failed to send\n");
2834 drm_dp_mst_dump_sideband_msg_tx(&p, txmsg);
2839 txmsg->cur_offset += tosend;
2840 if (txmsg->cur_offset == txmsg->cur_len) {
2841 txmsg->state = DRM_DP_SIDEBAND_TX_SENT;
2847 static void process_single_down_tx_qlock(struct drm_dp_mst_topology_mgr *mgr)
2849 struct drm_dp_sideband_msg_tx *txmsg;
2852 WARN_ON(!mutex_is_locked(&mgr->qlock));
2854 /* construct a chunk from the first msg in the tx_msg queue */
2855 if (list_empty(&mgr->tx_msg_downq))
2858 txmsg = list_first_entry(&mgr->tx_msg_downq,
2859 struct drm_dp_sideband_msg_tx, next);
2860 ret = process_single_tx_qlock(mgr, txmsg, false);
2862 drm_dbg_kms(mgr->dev, "failed to send msg in q %d\n", ret);
2863 list_del(&txmsg->next);
2864 txmsg->state = DRM_DP_SIDEBAND_TX_TIMEOUT;
2865 wake_up_all(&mgr->tx_waitq);
2869 static void drm_dp_queue_down_tx(struct drm_dp_mst_topology_mgr *mgr,
2870 struct drm_dp_sideband_msg_tx *txmsg)
2872 mutex_lock(&mgr->qlock);
2873 list_add_tail(&txmsg->next, &mgr->tx_msg_downq);
2875 if (drm_debug_enabled(DRM_UT_DP)) {
2876 struct drm_printer p = drm_dbg_printer(mgr->dev, DRM_UT_DP,
2879 drm_dp_mst_dump_sideband_msg_tx(&p, txmsg);
2882 if (list_is_singular(&mgr->tx_msg_downq))
2883 process_single_down_tx_qlock(mgr);
2884 mutex_unlock(&mgr->qlock);
2888 drm_dp_dump_link_address(const struct drm_dp_mst_topology_mgr *mgr,
2889 struct drm_dp_link_address_ack_reply *reply)
2891 struct drm_dp_link_addr_reply_port *port_reply;
2894 for (i = 0; i < reply->nports; i++) {
2895 port_reply = &reply->ports[i];
2896 drm_dbg_kms(mgr->dev,
2897 "port %d: input %d, pdt: %d, pn: %d, dpcd_rev: %02x, mcs: %d, ddps: %d, ldps %d, sdp %d/%d\n",
2899 port_reply->input_port,
2900 port_reply->peer_device_type,
2901 port_reply->port_number,
2902 port_reply->dpcd_revision,
2905 port_reply->legacy_device_plug_status,
2906 port_reply->num_sdp_streams,
2907 port_reply->num_sdp_stream_sinks);
2911 static int drm_dp_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
2912 struct drm_dp_mst_branch *mstb)
2914 struct drm_dp_sideband_msg_tx *txmsg;
2915 struct drm_dp_link_address_ack_reply *reply;
2916 struct drm_dp_mst_port *port, *tmp;
2917 int i, ret, port_mask = 0;
2918 bool changed = false;
2920 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2925 build_link_address(txmsg);
2927 mstb->link_address_sent = true;
2928 drm_dp_queue_down_tx(mgr, txmsg);
2930 /* FIXME: Actually do some real error handling here */
2931 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
2933 drm_err(mgr->dev, "Sending link address failed with %d\n", ret);
2936 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
2937 drm_err(mgr->dev, "link address NAK received\n");
2942 reply = &txmsg->reply.u.link_addr;
2943 drm_dbg_kms(mgr->dev, "link address reply: %d\n", reply->nports);
2944 drm_dp_dump_link_address(mgr, reply);
2946 ret = drm_dp_check_mstb_guid(mstb, reply->guid);
2950 drm_dp_mst_rad_to_str(mstb->rad, mstb->lct, buf, sizeof(buf));
2951 drm_err(mgr->dev, "GUID check on %s failed: %d\n", buf, ret);
2955 for (i = 0; i < reply->nports; i++) {
2956 port_mask |= BIT(reply->ports[i].port_number);
2957 ret = drm_dp_mst_handle_link_address_port(mstb, mgr->dev,
2965 /* Prune any ports that are currently a part of mstb in our in-memory
2966 * topology, but were not seen in this link address. Usually this
2967 * means that they were removed while the topology was out of sync,
2968 * e.g. during suspend/resume
2970 mutex_lock(&mgr->lock);
2971 list_for_each_entry_safe(port, tmp, &mstb->ports, next) {
2972 if (port_mask & BIT(port->port_num))
2975 drm_dbg_kms(mgr->dev, "port %d was not in link address, removing\n",
2977 list_del(&port->next);
2978 drm_dp_mst_topology_put_port(port);
2981 mutex_unlock(&mgr->lock);
2985 mstb->link_address_sent = false;
2987 return ret < 0 ? ret : changed;
2991 drm_dp_send_clear_payload_id_table(struct drm_dp_mst_topology_mgr *mgr,
2992 struct drm_dp_mst_branch *mstb)
2994 struct drm_dp_sideband_msg_tx *txmsg;
2997 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3002 build_clear_payload_id_table(txmsg);
3004 drm_dp_queue_down_tx(mgr, txmsg);
3006 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3007 if (ret > 0 && txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3008 drm_dbg_kms(mgr->dev, "clear payload table id nak received\n");
3014 drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr *mgr,
3015 struct drm_dp_mst_branch *mstb,
3016 struct drm_dp_mst_port *port)
3018 struct drm_dp_enum_path_resources_ack_reply *path_res;
3019 struct drm_dp_sideband_msg_tx *txmsg;
3022 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3027 build_enum_path_resources(txmsg, port->port_num);
3029 drm_dp_queue_down_tx(mgr, txmsg);
3031 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3034 path_res = &txmsg->reply.u.path_resources;
3036 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
3037 drm_dbg_kms(mgr->dev, "enum path resources nak received\n");
3039 if (port->port_num != path_res->port_number)
3040 DRM_ERROR("got incorrect port in response\n");
3042 drm_dbg_kms(mgr->dev, "enum path resources %d: %d %d\n",
3043 path_res->port_number,
3044 path_res->full_payload_bw_number,
3045 path_res->avail_payload_bw_number);
3048 * If something changed, make sure we send a
3051 if (port->full_pbn != path_res->full_payload_bw_number ||
3052 port->fec_capable != path_res->fec_capable)
3055 port->full_pbn = path_res->full_payload_bw_number;
3056 port->fec_capable = path_res->fec_capable;
3064 static struct drm_dp_mst_port *drm_dp_get_last_connected_port_to_mstb(struct drm_dp_mst_branch *mstb)
3066 if (!mstb->port_parent)
3069 if (mstb->port_parent->mstb != mstb)
3070 return mstb->port_parent;
3072 return drm_dp_get_last_connected_port_to_mstb(mstb->port_parent->parent);
3076 * Searches upwards in the topology starting from mstb to try to find the
3077 * closest available parent of mstb that's still connected to the rest of the
3078 * topology. This can be used in order to perform operations like releasing
3079 * payloads, where the branch device which owned the payload may no longer be
3080 * around and thus would require that the payload on the last living relative
3083 static struct drm_dp_mst_branch *
3084 drm_dp_get_last_connected_port_and_mstb(struct drm_dp_mst_topology_mgr *mgr,
3085 struct drm_dp_mst_branch *mstb,
3088 struct drm_dp_mst_branch *rmstb = NULL;
3089 struct drm_dp_mst_port *found_port;
3091 mutex_lock(&mgr->lock);
3092 if (!mgr->mst_primary)
3096 found_port = drm_dp_get_last_connected_port_to_mstb(mstb);
3100 if (drm_dp_mst_topology_try_get_mstb(found_port->parent)) {
3101 rmstb = found_port->parent;
3102 *port_num = found_port->port_num;
3104 /* Search again, starting from this parent */
3105 mstb = found_port->parent;
3109 mutex_unlock(&mgr->lock);
3113 static int drm_dp_payload_send_msg(struct drm_dp_mst_topology_mgr *mgr,
3114 struct drm_dp_mst_port *port,
3118 struct drm_dp_sideband_msg_tx *txmsg;
3119 struct drm_dp_mst_branch *mstb;
3121 u8 sinks[DRM_DP_MAX_SDP_STREAMS];
3124 port_num = port->port_num;
3125 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
3127 mstb = drm_dp_get_last_connected_port_and_mstb(mgr,
3135 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3141 for (i = 0; i < port->num_sdp_streams; i++)
3145 build_allocate_payload(txmsg, port_num,
3147 pbn, port->num_sdp_streams, sinks);
3149 drm_dp_queue_down_tx(mgr, txmsg);
3152 * FIXME: there is a small chance that between getting the last
3153 * connected mstb and sending the payload message, the last connected
3154 * mstb could also be removed from the topology. In the future, this
3155 * needs to be fixed by restarting the
3156 * drm_dp_get_last_connected_port_and_mstb() search in the event of a
3157 * timeout if the topology is still connected to the system.
3159 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3161 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3168 drm_dp_mst_topology_put_mstb(mstb);
3172 int drm_dp_send_power_updown_phy(struct drm_dp_mst_topology_mgr *mgr,
3173 struct drm_dp_mst_port *port, bool power_up)
3175 struct drm_dp_sideband_msg_tx *txmsg;
3178 port = drm_dp_mst_topology_get_port_validated(mgr, port);
3182 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3184 drm_dp_mst_topology_put_port(port);
3188 txmsg->dst = port->parent;
3189 build_power_updown_phy(txmsg, port->port_num, power_up);
3190 drm_dp_queue_down_tx(mgr, txmsg);
3192 ret = drm_dp_mst_wait_tx_reply(port->parent, txmsg);
3194 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3200 drm_dp_mst_topology_put_port(port);
3204 EXPORT_SYMBOL(drm_dp_send_power_updown_phy);
3206 int drm_dp_send_query_stream_enc_status(struct drm_dp_mst_topology_mgr *mgr,
3207 struct drm_dp_mst_port *port,
3208 struct drm_dp_query_stream_enc_status_ack_reply *status)
3210 struct drm_dp_mst_topology_state *state;
3211 struct drm_dp_mst_atomic_payload *payload;
3212 struct drm_dp_sideband_msg_tx *txmsg;
3216 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3220 port = drm_dp_mst_topology_get_port_validated(mgr, port);
3226 get_random_bytes(nonce, sizeof(nonce));
3228 drm_modeset_lock(&mgr->base.lock, NULL);
3229 state = to_drm_dp_mst_topology_state(mgr->base.state);
3230 payload = drm_atomic_get_mst_payload_state(state, port);
3233 * "Source device targets the QUERY_STREAM_ENCRYPTION_STATUS message
3234 * transaction at the MST Branch device directly connected to the
3237 txmsg->dst = mgr->mst_primary;
3239 build_query_stream_enc_status(txmsg, payload->vcpi, nonce);
3241 drm_dp_queue_down_tx(mgr, txmsg);
3243 ret = drm_dp_mst_wait_tx_reply(mgr->mst_primary, txmsg);
3246 } else if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
3247 drm_dbg_kms(mgr->dev, "query encryption status nak received\n");
3253 memcpy(status, &txmsg->reply.u.enc_status, sizeof(*status));
3256 drm_modeset_unlock(&mgr->base.lock);
3257 drm_dp_mst_topology_put_port(port);
3262 EXPORT_SYMBOL(drm_dp_send_query_stream_enc_status);
3264 static int drm_dp_create_payload_at_dfp(struct drm_dp_mst_topology_mgr *mgr,
3265 struct drm_dp_mst_atomic_payload *payload)
3267 return drm_dp_dpcd_write_payload(mgr, payload->vcpi, payload->vc_start_slot,
3268 payload->time_slots);
3271 static int drm_dp_create_payload_to_remote(struct drm_dp_mst_topology_mgr *mgr,
3272 struct drm_dp_mst_atomic_payload *payload)
3275 struct drm_dp_mst_port *port = drm_dp_mst_topology_get_port_validated(mgr, payload->port);
3280 ret = drm_dp_payload_send_msg(mgr, port, payload->vcpi, payload->pbn);
3281 drm_dp_mst_topology_put_port(port);
3285 static void drm_dp_destroy_payload_at_remote_and_dfp(struct drm_dp_mst_topology_mgr *mgr,
3286 struct drm_dp_mst_topology_state *mst_state,
3287 struct drm_dp_mst_atomic_payload *payload)
3289 drm_dbg_kms(mgr->dev, "\n");
3291 /* it's okay for these to fail */
3292 if (payload->payload_allocation_status == DRM_DP_MST_PAYLOAD_ALLOCATION_REMOTE) {
3293 drm_dp_payload_send_msg(mgr, payload->port, payload->vcpi, 0);
3294 payload->payload_allocation_status = DRM_DP_MST_PAYLOAD_ALLOCATION_DFP;
3297 if (payload->payload_allocation_status == DRM_DP_MST_PAYLOAD_ALLOCATION_DFP)
3298 drm_dp_dpcd_write_payload(mgr, payload->vcpi, payload->vc_start_slot, 0);
3302 * drm_dp_add_payload_part1() - Execute payload update part 1
3303 * @mgr: Manager to use.
3304 * @mst_state: The MST atomic state
3305 * @payload: The payload to write
3307 * Determines the starting time slot for the given payload, and programs the VCPI for this payload
3308 * into the DPCD of DPRX. After calling this, the driver should generate ACT and payload packets.
3310 * Returns: 0 on success, error code on failure.
3312 int drm_dp_add_payload_part1(struct drm_dp_mst_topology_mgr *mgr,
3313 struct drm_dp_mst_topology_state *mst_state,
3314 struct drm_dp_mst_atomic_payload *payload)
3316 struct drm_dp_mst_port *port;
3319 /* Update mst mgr info */
3320 if (mgr->payload_count == 0)
3321 mgr->next_start_slot = mst_state->start_slot;
3323 payload->vc_start_slot = mgr->next_start_slot;
3325 mgr->payload_count++;
3326 mgr->next_start_slot += payload->time_slots;
3328 payload->payload_allocation_status = DRM_DP_MST_PAYLOAD_ALLOCATION_LOCAL;
3330 /* Allocate payload to immediate downstream facing port */
3331 port = drm_dp_mst_topology_get_port_validated(mgr, payload->port);
3333 drm_dbg_kms(mgr->dev,
3334 "VCPI %d for port %p not in topology, not creating a payload to remote\n",
3335 payload->vcpi, payload->port);
3339 ret = drm_dp_create_payload_at_dfp(mgr, payload);
3341 drm_dbg_kms(mgr->dev, "Failed to create MST payload for port %p: %d\n",
3342 payload->port, ret);
3346 payload->payload_allocation_status = DRM_DP_MST_PAYLOAD_ALLOCATION_DFP;
3349 drm_dp_mst_topology_put_port(port);
3353 EXPORT_SYMBOL(drm_dp_add_payload_part1);
3356 * drm_dp_remove_payload_part1() - Remove an MST payload along the virtual channel
3357 * @mgr: Manager to use.
3358 * @mst_state: The MST atomic state
3359 * @payload: The payload to remove
3361 * Removes a payload along the virtual channel if it was successfully allocated.
3362 * After calling this, the driver should set HW to generate ACT and then switch to new
3363 * payload allocation state.
3365 void drm_dp_remove_payload_part1(struct drm_dp_mst_topology_mgr *mgr,
3366 struct drm_dp_mst_topology_state *mst_state,
3367 struct drm_dp_mst_atomic_payload *payload)
3369 /* Remove remote payload allocation */
3370 bool send_remove = false;
3372 mutex_lock(&mgr->lock);
3373 send_remove = drm_dp_mst_port_downstream_of_branch(payload->port, mgr->mst_primary);
3374 mutex_unlock(&mgr->lock);
3377 drm_dp_destroy_payload_at_remote_and_dfp(mgr, mst_state, payload);
3379 drm_dbg_kms(mgr->dev, "Payload for VCPI %d not in topology, not sending remove\n",
3382 payload->payload_allocation_status = DRM_DP_MST_PAYLOAD_ALLOCATION_LOCAL;
3384 EXPORT_SYMBOL(drm_dp_remove_payload_part1);
3387 * drm_dp_remove_payload_part2() - Remove an MST payload locally
3388 * @mgr: Manager to use.
3389 * @mst_state: The MST atomic state
3390 * @old_payload: The payload with its old state
3391 * @new_payload: The payload with its latest state
3393 * Updates the starting time slots of all other payloads which would have been shifted towards
3394 * the start of the payload ID table as a result of removing a payload. Driver should call this
3395 * function whenever it removes a payload in its HW. It's independent to the result of payload
3396 * allocation/deallocation at branch devices along the virtual channel.
3398 void drm_dp_remove_payload_part2(struct drm_dp_mst_topology_mgr *mgr,
3399 struct drm_dp_mst_topology_state *mst_state,
3400 const struct drm_dp_mst_atomic_payload *old_payload,
3401 struct drm_dp_mst_atomic_payload *new_payload)
3403 struct drm_dp_mst_atomic_payload *pos;
3405 /* Remove local payload allocation */
3406 list_for_each_entry(pos, &mst_state->payloads, next) {
3407 if (pos != new_payload && pos->vc_start_slot > new_payload->vc_start_slot)
3408 pos->vc_start_slot -= old_payload->time_slots;
3410 new_payload->vc_start_slot = -1;
3412 mgr->payload_count--;
3413 mgr->next_start_slot -= old_payload->time_slots;
3415 if (new_payload->delete)
3416 drm_dp_mst_put_port_malloc(new_payload->port);
3418 new_payload->payload_allocation_status = DRM_DP_MST_PAYLOAD_ALLOCATION_NONE;
3420 EXPORT_SYMBOL(drm_dp_remove_payload_part2);
3422 * drm_dp_add_payload_part2() - Execute payload update part 2
3423 * @mgr: Manager to use.
3424 * @payload: The payload to update
3426 * If @payload was successfully assigned a starting time slot by drm_dp_add_payload_part1(), this
3427 * function will send the sideband messages to finish allocating this payload.
3429 * Returns: 0 on success, negative error code on failure.
3431 int drm_dp_add_payload_part2(struct drm_dp_mst_topology_mgr *mgr,
3432 struct drm_dp_mst_atomic_payload *payload)
3436 /* Skip failed payloads */
3437 if (payload->payload_allocation_status != DRM_DP_MST_PAYLOAD_ALLOCATION_DFP) {
3438 drm_dbg_kms(mgr->dev, "Part 1 of payload creation for %s failed, skipping part 2\n",
3439 payload->port->connector->name);
3443 /* Allocate payload to remote end */
3444 ret = drm_dp_create_payload_to_remote(mgr, payload);
3446 drm_err(mgr->dev, "Step 2 of creating MST payload for %p failed: %d\n",
3447 payload->port, ret);
3449 payload->payload_allocation_status = DRM_DP_MST_PAYLOAD_ALLOCATION_REMOTE;
3453 EXPORT_SYMBOL(drm_dp_add_payload_part2);
3455 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr *mgr,
3456 struct drm_dp_mst_port *port,
3457 int offset, int size, u8 *bytes)
3460 struct drm_dp_sideband_msg_tx *txmsg;
3461 struct drm_dp_mst_branch *mstb;
3463 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
3467 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3473 build_dpcd_read(txmsg, port->port_num, offset, size);
3474 txmsg->dst = port->parent;
3476 drm_dp_queue_down_tx(mgr, txmsg);
3478 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3482 if (txmsg->reply.reply_type == 1) {
3483 drm_dbg_kms(mgr->dev, "mstb %p port %d: DPCD read on addr 0x%x for %d bytes NAKed\n",
3484 mstb, port->port_num, offset, size);
3489 if (txmsg->reply.u.remote_dpcd_read_ack.num_bytes != size) {
3494 ret = min_t(size_t, txmsg->reply.u.remote_dpcd_read_ack.num_bytes,
3496 memcpy(bytes, txmsg->reply.u.remote_dpcd_read_ack.bytes, ret);
3501 drm_dp_mst_topology_put_mstb(mstb);
3506 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr *mgr,
3507 struct drm_dp_mst_port *port,
3508 int offset, int size, u8 *bytes)
3511 struct drm_dp_sideband_msg_tx *txmsg;
3512 struct drm_dp_mst_branch *mstb;
3514 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
3518 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3524 build_dpcd_write(txmsg, port->port_num, offset, size, bytes);
3527 drm_dp_queue_down_tx(mgr, txmsg);
3529 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3531 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3539 drm_dp_mst_topology_put_mstb(mstb);
3543 static int drm_dp_encode_up_ack_reply(struct drm_dp_sideband_msg_tx *msg, u8 req_type)
3545 struct drm_dp_sideband_msg_reply_body reply;
3547 reply.reply_type = DP_SIDEBAND_REPLY_ACK;
3548 reply.req_type = req_type;
3549 drm_dp_encode_sideband_reply(&reply, msg);
3553 static int drm_dp_send_up_ack_reply(struct drm_dp_mst_topology_mgr *mgr,
3554 struct drm_dp_mst_branch *mstb,
3555 int req_type, bool broadcast)
3557 struct drm_dp_sideband_msg_tx *txmsg;
3559 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3564 drm_dp_encode_up_ack_reply(txmsg, req_type);
3566 mutex_lock(&mgr->qlock);
3567 /* construct a chunk from the first msg in the tx_msg queue */
3568 process_single_tx_qlock(mgr, txmsg, true);
3569 mutex_unlock(&mgr->qlock);
3576 * drm_dp_get_vc_payload_bw - get the VC payload BW for an MST link
3577 * @mgr: The &drm_dp_mst_topology_mgr to use
3578 * @link_rate: link rate in 10kbits/s units
3579 * @link_lane_count: lane count
3581 * Calculate the total bandwidth of a MultiStream Transport link. The returned
3582 * value is in units of PBNs/(timeslots/1 MTP). This value can be used to
3583 * convert the number of PBNs required for a given stream to the number of
3584 * timeslots this stream requires in each MTP.
3586 * Returns the BW / timeslot value in 20.12 fixed point format.
3588 fixed20_12 drm_dp_get_vc_payload_bw(const struct drm_dp_mst_topology_mgr *mgr,
3589 int link_rate, int link_lane_count)
3591 int ch_coding_efficiency =
3592 drm_dp_bw_channel_coding_efficiency(drm_dp_is_uhbr_rate(link_rate));
3595 if (link_rate == 0 || link_lane_count == 0)
3596 drm_dbg_kms(mgr->dev, "invalid link rate/lane count: (%d / %d)\n",
3597 link_rate, link_lane_count);
3599 /* See DP v2.0 2.6.4.2, 2.7.6.3 VCPayload_Bandwidth_for_OneTimeSlotPer_MTP_Allocation */
3600 ret.full = DIV_ROUND_DOWN_ULL(mul_u32_u32(link_rate * link_lane_count,
3601 ch_coding_efficiency),
3602 (1000000ULL * 8 * 5400) >> 12);
3606 EXPORT_SYMBOL(drm_dp_get_vc_payload_bw);
3609 * drm_dp_read_mst_cap() - Read the sink's MST mode capability
3610 * @aux: The DP AUX channel to use
3611 * @dpcd: A cached copy of the DPCD capabilities for this sink
3613 * Returns: enum drm_dp_mst_mode to indicate MST mode capability
3615 enum drm_dp_mst_mode drm_dp_read_mst_cap(struct drm_dp_aux *aux,
3616 const u8 dpcd[DP_RECEIVER_CAP_SIZE])
3620 if (dpcd[DP_DPCD_REV] < DP_DPCD_REV_12)
3623 if (drm_dp_dpcd_readb(aux, DP_MSTM_CAP, &mstm_cap) != 1)
3626 if (mstm_cap & DP_MST_CAP)
3629 if (mstm_cap & DP_SINGLE_STREAM_SIDEBAND_MSG)
3630 return DRM_DP_SST_SIDEBAND_MSG;
3634 EXPORT_SYMBOL(drm_dp_read_mst_cap);
3637 * drm_dp_mst_topology_mgr_set_mst() - Set the MST state for a topology manager
3638 * @mgr: manager to set state for
3639 * @mst_state: true to enable MST on this connector - false to disable.
3641 * This is called by the driver when it detects an MST capable device plugged
3642 * into a DP MST capable port, or when a DP MST capable device is unplugged.
3644 int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool mst_state)
3647 struct drm_dp_mst_branch *mstb = NULL;
3649 mutex_lock(&mgr->lock);
3650 if (mst_state == mgr->mst_state)
3653 mgr->mst_state = mst_state;
3654 /* set the device into MST mode */
3656 WARN_ON(mgr->mst_primary);
3659 ret = drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd);
3661 drm_dbg_kms(mgr->dev, "%s: failed to read DPCD, ret %d\n",
3662 mgr->aux->name, ret);
3666 /* add initial branch device at LCT 1 */
3667 mstb = drm_dp_add_mst_branch_device(1, NULL);
3674 /* give this the main reference */
3675 mgr->mst_primary = mstb;
3676 drm_dp_mst_topology_get_mstb(mgr->mst_primary);
3678 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
3681 DP_UPSTREAM_IS_SRC);
3685 /* Write reset payload */
3686 drm_dp_dpcd_write_payload(mgr, 0, 0, 0x3f);
3688 queue_work(system_long_wq, &mgr->work);
3692 /* disable MST on the device */
3693 mstb = mgr->mst_primary;
3694 mgr->mst_primary = NULL;
3695 /* this can fail if the device is gone */
3696 drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL, 0);
3698 mgr->payload_id_table_cleared = false;
3700 memset(&mgr->down_rep_recv, 0, sizeof(mgr->down_rep_recv));
3701 memset(&mgr->up_req_recv, 0, sizeof(mgr->up_req_recv));
3705 mutex_unlock(&mgr->lock);
3707 drm_dp_mst_topology_put_mstb(mstb);
3711 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_set_mst);
3714 drm_dp_mst_topology_mgr_invalidate_mstb(struct drm_dp_mst_branch *mstb)
3716 struct drm_dp_mst_port *port;
3718 /* The link address will need to be re-sent on resume */
3719 mstb->link_address_sent = false;
3721 list_for_each_entry(port, &mstb->ports, next)
3723 drm_dp_mst_topology_mgr_invalidate_mstb(port->mstb);
3727 * drm_dp_mst_topology_mgr_suspend() - suspend the MST manager
3728 * @mgr: manager to suspend
3730 * This function tells the MST device that we can't handle UP messages
3731 * anymore. This should stop it from sending any since we are suspended.
3733 void drm_dp_mst_topology_mgr_suspend(struct drm_dp_mst_topology_mgr *mgr)
3735 mutex_lock(&mgr->lock);
3736 drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
3737 DP_MST_EN | DP_UPSTREAM_IS_SRC);
3738 mutex_unlock(&mgr->lock);
3739 flush_work(&mgr->up_req_work);
3740 flush_work(&mgr->work);
3741 flush_work(&mgr->delayed_destroy_work);
3743 mutex_lock(&mgr->lock);
3744 if (mgr->mst_state && mgr->mst_primary)
3745 drm_dp_mst_topology_mgr_invalidate_mstb(mgr->mst_primary);
3746 mutex_unlock(&mgr->lock);
3748 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_suspend);
3751 * drm_dp_mst_topology_mgr_resume() - resume the MST manager
3752 * @mgr: manager to resume
3753 * @sync: whether or not to perform topology reprobing synchronously
3755 * This will fetch DPCD and see if the device is still there,
3756 * if it is, it will rewrite the MSTM control bits, and return.
3758 * If the device fails this returns -1, and the driver should do
3759 * a full MST reprobe, in case we were undocked.
3761 * During system resume (where it is assumed that the driver will be calling
3762 * drm_atomic_helper_resume()) this function should be called beforehand with
3763 * @sync set to true. In contexts like runtime resume where the driver is not
3764 * expected to be calling drm_atomic_helper_resume(), this function should be
3765 * called with @sync set to false in order to avoid deadlocking.
3767 * Returns: -1 if the MST topology was removed while we were suspended, 0
3770 int drm_dp_mst_topology_mgr_resume(struct drm_dp_mst_topology_mgr *mgr,
3776 mutex_lock(&mgr->lock);
3777 if (!mgr->mst_primary)
3780 if (drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd) < 0) {
3781 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
3785 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
3788 DP_UPSTREAM_IS_SRC);
3790 drm_dbg_kms(mgr->dev, "mst write failed - undocked during suspend?\n");
3794 /* Some hubs forget their guids after they resume */
3795 ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, guid, 16);
3797 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
3801 ret = drm_dp_check_mstb_guid(mgr->mst_primary, guid);
3803 drm_dbg_kms(mgr->dev, "check mstb failed - undocked during suspend?\n");
3808 * For the final step of resuming the topology, we need to bring the
3809 * state of our in-memory topology back into sync with reality. So,
3810 * restart the probing process as if we're probing a new hub
3812 queue_work(system_long_wq, &mgr->work);
3813 mutex_unlock(&mgr->lock);
3816 drm_dbg_kms(mgr->dev,
3817 "Waiting for link probe work to finish re-syncing topology...\n");
3818 flush_work(&mgr->work);
3824 mutex_unlock(&mgr->lock);
3827 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_resume);
3830 drm_dp_get_one_sb_msg(struct drm_dp_mst_topology_mgr *mgr, bool up,
3831 struct drm_dp_mst_branch **mstb)
3835 int replylen, curreply;
3838 struct drm_dp_sideband_msg_hdr hdr;
3839 struct drm_dp_sideband_msg_rx *msg =
3840 up ? &mgr->up_req_recv : &mgr->down_rep_recv;
3841 int basereg = up ? DP_SIDEBAND_MSG_UP_REQ_BASE :
3842 DP_SIDEBAND_MSG_DOWN_REP_BASE;
3847 len = min(mgr->max_dpcd_transaction_bytes, 16);
3848 ret = drm_dp_dpcd_read(mgr->aux, basereg, replyblock, len);
3850 drm_dbg_kms(mgr->dev, "failed to read DPCD down rep %d %d\n", len, ret);
3854 ret = drm_dp_decode_sideband_msg_hdr(mgr, &hdr, replyblock, len, &hdrlen);
3856 print_hex_dump(KERN_DEBUG, "failed hdr", DUMP_PREFIX_NONE, 16,
3857 1, replyblock, len, false);
3858 drm_dbg_kms(mgr->dev, "ERROR: failed header\n");
3863 /* Caller is responsible for giving back this reference */
3864 *mstb = drm_dp_get_mst_branch_device(mgr, hdr.lct, hdr.rad);
3866 drm_dbg_kms(mgr->dev, "Got MST reply from unknown device %d\n", hdr.lct);
3871 if (!drm_dp_sideband_msg_set_header(msg, &hdr, hdrlen)) {
3872 drm_dbg_kms(mgr->dev, "sideband msg set header failed %d\n", replyblock[0]);
3876 replylen = min(msg->curchunk_len, (u8)(len - hdrlen));
3877 ret = drm_dp_sideband_append_payload(msg, replyblock + hdrlen, replylen);
3879 drm_dbg_kms(mgr->dev, "sideband msg build failed %d\n", replyblock[0]);
3883 replylen = msg->curchunk_len + msg->curchunk_hdrlen - len;
3885 while (replylen > 0) {
3886 len = min3(replylen, mgr->max_dpcd_transaction_bytes, 16);
3887 ret = drm_dp_dpcd_read(mgr->aux, basereg + curreply,
3890 drm_dbg_kms(mgr->dev, "failed to read a chunk (len %d, ret %d)\n",
3895 ret = drm_dp_sideband_append_payload(msg, replyblock, len);
3897 drm_dbg_kms(mgr->dev, "failed to build sideband msg\n");
3907 static int drm_dp_mst_handle_down_rep(struct drm_dp_mst_topology_mgr *mgr)
3909 struct drm_dp_sideband_msg_tx *txmsg;
3910 struct drm_dp_mst_branch *mstb = NULL;
3911 struct drm_dp_sideband_msg_rx *msg = &mgr->down_rep_recv;
3913 if (!drm_dp_get_one_sb_msg(mgr, false, &mstb))
3914 goto out_clear_reply;
3916 /* Multi-packet message transmission, don't clear the reply */
3917 if (!msg->have_eomt)
3920 /* find the message */
3921 mutex_lock(&mgr->qlock);
3922 txmsg = list_first_entry_or_null(&mgr->tx_msg_downq,
3923 struct drm_dp_sideband_msg_tx, next);
3924 mutex_unlock(&mgr->qlock);
3926 /* Were we actually expecting a response, and from this mstb? */
3927 if (!txmsg || txmsg->dst != mstb) {
3928 struct drm_dp_sideband_msg_hdr *hdr;
3930 hdr = &msg->initial_hdr;
3931 drm_dbg_kms(mgr->dev, "Got MST reply with no msg %p %d %d %02x %02x\n",
3932 mstb, hdr->seqno, hdr->lct, hdr->rad[0], msg->msg[0]);
3933 goto out_clear_reply;
3936 drm_dp_sideband_parse_reply(mgr, msg, &txmsg->reply);
3938 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
3939 drm_dbg_kms(mgr->dev,
3940 "Got NAK reply: req 0x%02x (%s), reason 0x%02x (%s), nak data 0x%02x\n",
3941 txmsg->reply.req_type,
3942 drm_dp_mst_req_type_str(txmsg->reply.req_type),
3943 txmsg->reply.u.nak.reason,
3944 drm_dp_mst_nak_reason_str(txmsg->reply.u.nak.reason),
3945 txmsg->reply.u.nak.nak_data);
3948 memset(msg, 0, sizeof(struct drm_dp_sideband_msg_rx));
3949 drm_dp_mst_topology_put_mstb(mstb);
3951 mutex_lock(&mgr->qlock);
3952 txmsg->state = DRM_DP_SIDEBAND_TX_RX;
3953 list_del(&txmsg->next);
3954 mutex_unlock(&mgr->qlock);
3956 wake_up_all(&mgr->tx_waitq);
3961 memset(msg, 0, sizeof(struct drm_dp_sideband_msg_rx));
3964 drm_dp_mst_topology_put_mstb(mstb);
3970 drm_dp_mst_process_up_req(struct drm_dp_mst_topology_mgr *mgr,
3971 struct drm_dp_pending_up_req *up_req)
3973 struct drm_dp_mst_branch *mstb = NULL;
3974 struct drm_dp_sideband_msg_req_body *msg = &up_req->msg;
3975 struct drm_dp_sideband_msg_hdr *hdr = &up_req->hdr;
3976 bool hotplug = false, dowork = false;
3978 if (hdr->broadcast) {
3979 const u8 *guid = NULL;
3981 if (msg->req_type == DP_CONNECTION_STATUS_NOTIFY)
3982 guid = msg->u.conn_stat.guid;
3983 else if (msg->req_type == DP_RESOURCE_STATUS_NOTIFY)
3984 guid = msg->u.resource_stat.guid;
3987 mstb = drm_dp_get_mst_branch_device_by_guid(mgr, guid);
3989 mstb = drm_dp_get_mst_branch_device(mgr, hdr->lct, hdr->rad);
3993 drm_dbg_kms(mgr->dev, "Got MST reply from unknown device %d\n", hdr->lct);
3997 /* TODO: Add missing handler for DP_RESOURCE_STATUS_NOTIFY events */
3998 if (msg->req_type == DP_CONNECTION_STATUS_NOTIFY) {
3999 dowork = drm_dp_mst_handle_conn_stat(mstb, &msg->u.conn_stat);
4003 drm_dp_mst_topology_put_mstb(mstb);
4006 queue_work(system_long_wq, &mgr->work);
4010 static void drm_dp_mst_up_req_work(struct work_struct *work)
4012 struct drm_dp_mst_topology_mgr *mgr =
4013 container_of(work, struct drm_dp_mst_topology_mgr,
4015 struct drm_dp_pending_up_req *up_req;
4016 bool send_hotplug = false;
4018 mutex_lock(&mgr->probe_lock);
4020 mutex_lock(&mgr->up_req_lock);
4021 up_req = list_first_entry_or_null(&mgr->up_req_list,
4022 struct drm_dp_pending_up_req,
4025 list_del(&up_req->next);
4026 mutex_unlock(&mgr->up_req_lock);
4031 send_hotplug |= drm_dp_mst_process_up_req(mgr, up_req);
4034 mutex_unlock(&mgr->probe_lock);
4037 drm_kms_helper_hotplug_event(mgr->dev);
4040 static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr *mgr)
4042 struct drm_dp_pending_up_req *up_req;
4044 if (!drm_dp_get_one_sb_msg(mgr, true, NULL))
4047 if (!mgr->up_req_recv.have_eomt)
4050 up_req = kzalloc(sizeof(*up_req), GFP_KERNEL);
4054 INIT_LIST_HEAD(&up_req->next);
4056 drm_dp_sideband_parse_req(mgr, &mgr->up_req_recv, &up_req->msg);
4058 if (up_req->msg.req_type != DP_CONNECTION_STATUS_NOTIFY &&
4059 up_req->msg.req_type != DP_RESOURCE_STATUS_NOTIFY) {
4060 drm_dbg_kms(mgr->dev, "Received unknown up req type, ignoring: %x\n",
4061 up_req->msg.req_type);
4066 drm_dp_send_up_ack_reply(mgr, mgr->mst_primary, up_req->msg.req_type,
4069 if (up_req->msg.req_type == DP_CONNECTION_STATUS_NOTIFY) {
4070 const struct drm_dp_connection_status_notify *conn_stat =
4071 &up_req->msg.u.conn_stat;
4074 drm_dbg_kms(mgr->dev, "Got CSN: pn: %d ldps:%d ddps: %d mcs: %d ip: %d pdt: %d\n",
4075 conn_stat->port_number,
4076 conn_stat->legacy_device_plug_status,
4077 conn_stat->displayport_device_plug_status,
4078 conn_stat->message_capability_status,
4079 conn_stat->input_port,
4080 conn_stat->peer_device_type);
4082 mutex_lock(&mgr->probe_lock);
4083 handle_csn = mgr->mst_primary->link_address_sent;
4084 mutex_unlock(&mgr->probe_lock);
4087 drm_dbg_kms(mgr->dev, "Got CSN before finish topology probing. Skip it.");
4091 } else if (up_req->msg.req_type == DP_RESOURCE_STATUS_NOTIFY) {
4092 const struct drm_dp_resource_status_notify *res_stat =
4093 &up_req->msg.u.resource_stat;
4095 drm_dbg_kms(mgr->dev, "Got RSN: pn: %d avail_pbn %d\n",
4096 res_stat->port_number,
4097 res_stat->available_pbn);
4100 up_req->hdr = mgr->up_req_recv.initial_hdr;
4101 mutex_lock(&mgr->up_req_lock);
4102 list_add_tail(&up_req->next, &mgr->up_req_list);
4103 mutex_unlock(&mgr->up_req_lock);
4104 queue_work(system_long_wq, &mgr->up_req_work);
4107 memset(&mgr->up_req_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
4112 * drm_dp_mst_hpd_irq_handle_event() - MST hotplug IRQ handle MST event
4113 * @mgr: manager to notify irq for.
4114 * @esi: 4 bytes from SINK_COUNT_ESI
4115 * @ack: 4 bytes used to ack events starting from SINK_COUNT_ESI
4116 * @handled: whether the hpd interrupt was consumed or not
4118 * This should be called from the driver when it detects a HPD IRQ,
4119 * along with the value of the DEVICE_SERVICE_IRQ_VECTOR_ESI0. The
4120 * topology manager will process the sideband messages received
4121 * as indicated in the DEVICE_SERVICE_IRQ_VECTOR_ESI0 and set the
4122 * corresponding flags that Driver has to ack the DP receiver later.
4124 * Note that driver shall also call
4125 * drm_dp_mst_hpd_irq_send_new_request() if the 'handled' is set
4126 * after calling this function, to try to kick off a new request in
4127 * the queue if the previous message transaction is completed.
4130 * drm_dp_mst_hpd_irq_send_new_request()
4132 int drm_dp_mst_hpd_irq_handle_event(struct drm_dp_mst_topology_mgr *mgr, const u8 *esi,
4133 u8 *ack, bool *handled)
4138 sc = DP_GET_SINK_COUNT(esi[0]);
4140 if (sc != mgr->sink_count) {
4141 mgr->sink_count = sc;
4145 if (esi[1] & DP_DOWN_REP_MSG_RDY) {
4146 ret = drm_dp_mst_handle_down_rep(mgr);
4148 ack[1] |= DP_DOWN_REP_MSG_RDY;
4151 if (esi[1] & DP_UP_REQ_MSG_RDY) {
4152 ret |= drm_dp_mst_handle_up_req(mgr);
4154 ack[1] |= DP_UP_REQ_MSG_RDY;
4159 EXPORT_SYMBOL(drm_dp_mst_hpd_irq_handle_event);
4162 * drm_dp_mst_hpd_irq_send_new_request() - MST hotplug IRQ kick off new request
4163 * @mgr: manager to notify irq for.
4165 * This should be called from the driver when mst irq event is handled
4166 * and acked. Note that new down request should only be sent when
4167 * previous message transaction is completed. Source is not supposed to generate
4168 * interleaved message transactions.
4170 void drm_dp_mst_hpd_irq_send_new_request(struct drm_dp_mst_topology_mgr *mgr)
4172 struct drm_dp_sideband_msg_tx *txmsg;
4175 mutex_lock(&mgr->qlock);
4176 txmsg = list_first_entry_or_null(&mgr->tx_msg_downq,
4177 struct drm_dp_sideband_msg_tx, next);
4178 /* If last transaction is not completed yet*/
4180 txmsg->state == DRM_DP_SIDEBAND_TX_START_SEND ||
4181 txmsg->state == DRM_DP_SIDEBAND_TX_SENT)
4183 mutex_unlock(&mgr->qlock);
4186 drm_dp_mst_kick_tx(mgr);
4188 EXPORT_SYMBOL(drm_dp_mst_hpd_irq_send_new_request);
4190 * drm_dp_mst_detect_port() - get connection status for an MST port
4191 * @connector: DRM connector for this port
4192 * @ctx: The acquisition context to use for grabbing locks
4193 * @mgr: manager for this port
4194 * @port: pointer to a port
4196 * This returns the current connection state for a port.
4199 drm_dp_mst_detect_port(struct drm_connector *connector,
4200 struct drm_modeset_acquire_ctx *ctx,
4201 struct drm_dp_mst_topology_mgr *mgr,
4202 struct drm_dp_mst_port *port)
4206 /* we need to search for the port in the mgr in case it's gone */
4207 port = drm_dp_mst_topology_get_port_validated(mgr, port);
4209 return connector_status_disconnected;
4211 ret = drm_modeset_lock(&mgr->base.lock, ctx);
4215 ret = connector_status_disconnected;
4220 switch (port->pdt) {
4221 case DP_PEER_DEVICE_NONE:
4223 case DP_PEER_DEVICE_MST_BRANCHING:
4225 ret = connector_status_connected;
4228 case DP_PEER_DEVICE_SST_SINK:
4229 ret = connector_status_connected;
4230 /* for logical ports - cache the EDID */
4231 if (drm_dp_mst_port_is_logical(port) && !port->cached_edid)
4232 port->cached_edid = drm_edid_read_ddc(connector, &port->aux.ddc);
4234 case DP_PEER_DEVICE_DP_LEGACY_CONV:
4236 ret = connector_status_connected;
4240 drm_dp_mst_topology_put_port(port);
4243 EXPORT_SYMBOL(drm_dp_mst_detect_port);
4246 * drm_dp_mst_edid_read() - get EDID for an MST port
4247 * @connector: toplevel connector to get EDID for
4248 * @mgr: manager for this port
4249 * @port: unverified pointer to a port.
4251 * This returns an EDID for the port connected to a connector,
4252 * It validates the pointer still exists so the caller doesn't require a
4255 const struct drm_edid *drm_dp_mst_edid_read(struct drm_connector *connector,
4256 struct drm_dp_mst_topology_mgr *mgr,
4257 struct drm_dp_mst_port *port)
4259 const struct drm_edid *drm_edid;
4261 /* we need to search for the port in the mgr in case it's gone */
4262 port = drm_dp_mst_topology_get_port_validated(mgr, port);
4266 if (port->cached_edid)
4267 drm_edid = drm_edid_dup(port->cached_edid);
4269 drm_edid = drm_edid_read_ddc(connector, &port->aux.ddc);
4271 drm_dp_mst_topology_put_port(port);
4275 EXPORT_SYMBOL(drm_dp_mst_edid_read);
4278 * drm_dp_mst_get_edid() - get EDID for an MST port
4279 * @connector: toplevel connector to get EDID for
4280 * @mgr: manager for this port
4281 * @port: unverified pointer to a port.
4283 * This function is deprecated; please use drm_dp_mst_edid_read() instead.
4285 * This returns an EDID for the port connected to a connector,
4286 * It validates the pointer still exists so the caller doesn't require a
4289 struct edid *drm_dp_mst_get_edid(struct drm_connector *connector,
4290 struct drm_dp_mst_topology_mgr *mgr,
4291 struct drm_dp_mst_port *port)
4293 const struct drm_edid *drm_edid;
4296 drm_edid = drm_dp_mst_edid_read(connector, mgr, port);
4298 edid = drm_edid_duplicate(drm_edid_raw(drm_edid));
4300 drm_edid_free(drm_edid);
4304 EXPORT_SYMBOL(drm_dp_mst_get_edid);
4307 * drm_dp_atomic_find_time_slots() - Find and add time slots to the state
4308 * @state: global atomic state
4309 * @mgr: MST topology manager for the port
4310 * @port: port to find time slots for
4311 * @pbn: bandwidth required for the mode in PBN
4313 * Allocates time slots to @port, replacing any previous time slot allocations it may
4314 * have had. Any atomic drivers which support MST must call this function in
4315 * their &drm_encoder_helper_funcs.atomic_check() callback unconditionally to
4316 * change the current time slot allocation for the new state, and ensure the MST
4317 * atomic state is added whenever the state of payloads in the topology changes.
4319 * Allocations set by this function are not checked against the bandwidth
4320 * restraints of @mgr until the driver calls drm_dp_mst_atomic_check().
4322 * Additionally, it is OK to call this function multiple times on the same
4323 * @port as needed. It is not OK however, to call this function and
4324 * drm_dp_atomic_release_time_slots() in the same atomic check phase.
4327 * drm_dp_atomic_release_time_slots()
4328 * drm_dp_mst_atomic_check()
4331 * Total slots in the atomic state assigned for this port, or a negative error
4332 * code if the port no longer exists
4334 int drm_dp_atomic_find_time_slots(struct drm_atomic_state *state,
4335 struct drm_dp_mst_topology_mgr *mgr,
4336 struct drm_dp_mst_port *port, int pbn)
4338 struct drm_dp_mst_topology_state *topology_state;
4339 struct drm_dp_mst_atomic_payload *payload = NULL;
4340 struct drm_connector_state *conn_state;
4341 int prev_slots = 0, prev_bw = 0, req_slots;
4343 topology_state = drm_atomic_get_mst_topology_state(state, mgr);
4344 if (IS_ERR(topology_state))
4345 return PTR_ERR(topology_state);
4347 conn_state = drm_atomic_get_new_connector_state(state, port->connector);
4348 topology_state->pending_crtc_mask |= drm_crtc_mask(conn_state->crtc);
4350 /* Find the current allocation for this port, if any */
4351 payload = drm_atomic_get_mst_payload_state(topology_state, port);
4353 prev_slots = payload->time_slots;
4354 prev_bw = payload->pbn;
4357 * This should never happen, unless the driver tries
4358 * releasing and allocating the same timeslot allocation,
4361 if (drm_WARN_ON(mgr->dev, payload->delete)) {
4363 "cannot allocate and release time slots on [MST PORT:%p] in the same state\n",
4369 req_slots = DIV_ROUND_UP(dfixed_const(pbn), topology_state->pbn_div.full);
4371 drm_dbg_atomic(mgr->dev, "[CONNECTOR:%d:%s] [MST PORT:%p] TU %d -> %d\n",
4372 port->connector->base.id, port->connector->name,
4373 port, prev_slots, req_slots);
4374 drm_dbg_atomic(mgr->dev, "[CONNECTOR:%d:%s] [MST PORT:%p] PBN %d -> %d\n",
4375 port->connector->base.id, port->connector->name,
4376 port, prev_bw, pbn);
4378 /* Add the new allocation to the state, note the VCPI isn't assigned until the end */
4380 payload = kzalloc(sizeof(*payload), GFP_KERNEL);
4384 drm_dp_mst_get_port_malloc(port);
4385 payload->port = port;
4386 payload->vc_start_slot = -1;
4387 payload->payload_allocation_status = DRM_DP_MST_PAYLOAD_ALLOCATION_NONE;
4388 list_add(&payload->next, &topology_state->payloads);
4390 payload->time_slots = req_slots;
4395 EXPORT_SYMBOL(drm_dp_atomic_find_time_slots);
4398 * drm_dp_atomic_release_time_slots() - Release allocated time slots
4399 * @state: global atomic state
4400 * @mgr: MST topology manager for the port
4401 * @port: The port to release the time slots from
4403 * Releases any time slots that have been allocated to a port in the atomic
4404 * state. Any atomic drivers which support MST must call this function
4405 * unconditionally in their &drm_connector_helper_funcs.atomic_check() callback.
4406 * This helper will check whether time slots would be released by the new state and
4407 * respond accordingly, along with ensuring the MST state is always added to the
4408 * atomic state whenever a new state would modify the state of payloads on the
4411 * It is OK to call this even if @port has been removed from the system.
4412 * Additionally, it is OK to call this function multiple times on the same
4413 * @port as needed. It is not OK however, to call this function and
4414 * drm_dp_atomic_find_time_slots() on the same @port in a single atomic check
4418 * drm_dp_atomic_find_time_slots()
4419 * drm_dp_mst_atomic_check()
4422 * 0 on success, negative error code otherwise
4424 int drm_dp_atomic_release_time_slots(struct drm_atomic_state *state,
4425 struct drm_dp_mst_topology_mgr *mgr,
4426 struct drm_dp_mst_port *port)
4428 struct drm_dp_mst_topology_state *topology_state;
4429 struct drm_dp_mst_atomic_payload *payload;
4430 struct drm_connector_state *old_conn_state, *new_conn_state;
4431 bool update_payload = true;
4433 old_conn_state = drm_atomic_get_old_connector_state(state, port->connector);
4434 if (!old_conn_state->crtc)
4437 /* If the CRTC isn't disabled by this state, don't release it's payload */
4438 new_conn_state = drm_atomic_get_new_connector_state(state, port->connector);
4439 if (new_conn_state->crtc) {
4440 struct drm_crtc_state *crtc_state =
4441 drm_atomic_get_new_crtc_state(state, new_conn_state->crtc);
4443 /* No modeset means no payload changes, so it's safe to not pull in the MST state */
4444 if (!crtc_state || !drm_atomic_crtc_needs_modeset(crtc_state))
4447 if (!crtc_state->mode_changed && !crtc_state->connectors_changed)
4448 update_payload = false;
4451 topology_state = drm_atomic_get_mst_topology_state(state, mgr);
4452 if (IS_ERR(topology_state))
4453 return PTR_ERR(topology_state);
4455 topology_state->pending_crtc_mask |= drm_crtc_mask(old_conn_state->crtc);
4456 if (!update_payload)
4459 payload = drm_atomic_get_mst_payload_state(topology_state, port);
4460 if (WARN_ON(!payload)) {
4461 drm_err(mgr->dev, "No payload for [MST PORT:%p] found in mst state %p\n",
4462 port, &topology_state->base);
4466 if (new_conn_state->crtc)
4469 drm_dbg_atomic(mgr->dev, "[MST PORT:%p] TU %d -> 0\n", port, payload->time_slots);
4470 if (!payload->delete) {
4472 payload->delete = true;
4473 topology_state->payload_mask &= ~BIT(payload->vcpi - 1);
4478 EXPORT_SYMBOL(drm_dp_atomic_release_time_slots);
4481 * drm_dp_mst_atomic_setup_commit() - setup_commit hook for MST helpers
4482 * @state: global atomic state
4484 * This function saves all of the &drm_crtc_commit structs in an atomic state that touch any CRTCs
4485 * currently assigned to an MST topology. Drivers must call this hook from their
4486 * &drm_mode_config_helper_funcs.atomic_commit_setup hook.
4489 * 0 if all CRTC commits were retrieved successfully, negative error code otherwise
4491 int drm_dp_mst_atomic_setup_commit(struct drm_atomic_state *state)
4493 struct drm_dp_mst_topology_mgr *mgr;
4494 struct drm_dp_mst_topology_state *mst_state;
4495 struct drm_crtc *crtc;
4496 struct drm_crtc_state *crtc_state;
4497 int i, j, commit_idx, num_commit_deps;
4499 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
4500 if (!mst_state->pending_crtc_mask)
4503 num_commit_deps = hweight32(mst_state->pending_crtc_mask);
4504 mst_state->commit_deps = kmalloc_array(num_commit_deps,
4505 sizeof(*mst_state->commit_deps), GFP_KERNEL);
4506 if (!mst_state->commit_deps)
4508 mst_state->num_commit_deps = num_commit_deps;
4511 for_each_new_crtc_in_state(state, crtc, crtc_state, j) {
4512 if (mst_state->pending_crtc_mask & drm_crtc_mask(crtc)) {
4513 mst_state->commit_deps[commit_idx++] =
4514 drm_crtc_commit_get(crtc_state->commit);
4521 EXPORT_SYMBOL(drm_dp_mst_atomic_setup_commit);
4524 * drm_dp_mst_atomic_wait_for_dependencies() - Wait for all pending commits on MST topologies,
4525 * prepare new MST state for commit
4526 * @state: global atomic state
4528 * Goes through any MST topologies in this atomic state, and waits for any pending commits which
4529 * touched CRTCs that were/are on an MST topology to be programmed to hardware and flipped to before
4530 * returning. This is to prevent multiple non-blocking commits affecting an MST topology from racing
4531 * with eachother by forcing them to be executed sequentially in situations where the only resources
4532 * the modeset objects in these commits share are an MST topology.
4534 * This function also prepares the new MST state for commit by performing some state preparation
4535 * which can't be done until this point, such as reading back the final VC start slots (which are
4536 * determined at commit-time) from the previous state.
4538 * All MST drivers must call this function after calling drm_atomic_helper_wait_for_dependencies(),
4539 * or whatever their equivalent of that is.
4541 void drm_dp_mst_atomic_wait_for_dependencies(struct drm_atomic_state *state)
4543 struct drm_dp_mst_topology_state *old_mst_state, *new_mst_state;
4544 struct drm_dp_mst_topology_mgr *mgr;
4545 struct drm_dp_mst_atomic_payload *old_payload, *new_payload;
4548 for_each_oldnew_mst_mgr_in_state(state, mgr, old_mst_state, new_mst_state, i) {
4549 for (j = 0; j < old_mst_state->num_commit_deps; j++) {
4550 ret = drm_crtc_commit_wait(old_mst_state->commit_deps[j]);
4552 drm_err(state->dev, "Failed to wait for %s: %d\n",
4553 old_mst_state->commit_deps[j]->crtc->name, ret);
4556 /* Now that previous state is committed, it's safe to copy over the start slot
4557 * and allocation status assignments
4559 list_for_each_entry(old_payload, &old_mst_state->payloads, next) {
4560 if (old_payload->delete)
4563 new_payload = drm_atomic_get_mst_payload_state(new_mst_state,
4565 new_payload->vc_start_slot = old_payload->vc_start_slot;
4566 new_payload->payload_allocation_status =
4567 old_payload->payload_allocation_status;
4571 EXPORT_SYMBOL(drm_dp_mst_atomic_wait_for_dependencies);
4574 * drm_dp_mst_root_conn_atomic_check() - Serialize CRTC commits on MST-capable connectors operating
4576 * @new_conn_state: The new connector state of the &drm_connector
4577 * @mgr: The MST topology manager for the &drm_connector
4579 * Since MST uses fake &drm_encoder structs, the generic atomic modesetting code isn't able to
4580 * serialize non-blocking commits happening on the real DP connector of an MST topology switching
4581 * into/away from MST mode - as the CRTC on the real DP connector and the CRTCs on the connector's
4582 * MST topology will never share the same &drm_encoder.
4584 * This function takes care of this serialization issue, by checking a root MST connector's atomic
4585 * state to determine if it is about to have a modeset - and then pulling in the MST topology state
4586 * if so, along with adding any relevant CRTCs to &drm_dp_mst_topology_state.pending_crtc_mask.
4588 * Drivers implementing MST must call this function from the
4589 * &drm_connector_helper_funcs.atomic_check hook of any physical DP &drm_connector capable of
4590 * driving MST sinks.
4593 * 0 on success, negative error code otherwise
4595 int drm_dp_mst_root_conn_atomic_check(struct drm_connector_state *new_conn_state,
4596 struct drm_dp_mst_topology_mgr *mgr)
4598 struct drm_atomic_state *state = new_conn_state->state;
4599 struct drm_connector_state *old_conn_state =
4600 drm_atomic_get_old_connector_state(state, new_conn_state->connector);
4601 struct drm_crtc_state *crtc_state;
4602 struct drm_dp_mst_topology_state *mst_state = NULL;
4604 if (new_conn_state->crtc) {
4605 crtc_state = drm_atomic_get_new_crtc_state(state, new_conn_state->crtc);
4606 if (crtc_state && drm_atomic_crtc_needs_modeset(crtc_state)) {
4607 mst_state = drm_atomic_get_mst_topology_state(state, mgr);
4608 if (IS_ERR(mst_state))
4609 return PTR_ERR(mst_state);
4611 mst_state->pending_crtc_mask |= drm_crtc_mask(new_conn_state->crtc);
4615 if (old_conn_state->crtc) {
4616 crtc_state = drm_atomic_get_new_crtc_state(state, old_conn_state->crtc);
4617 if (crtc_state && drm_atomic_crtc_needs_modeset(crtc_state)) {
4619 mst_state = drm_atomic_get_mst_topology_state(state, mgr);
4620 if (IS_ERR(mst_state))
4621 return PTR_ERR(mst_state);
4624 mst_state->pending_crtc_mask |= drm_crtc_mask(old_conn_state->crtc);
4630 EXPORT_SYMBOL(drm_dp_mst_root_conn_atomic_check);
4633 * drm_dp_mst_update_slots() - updates the slot info depending on the DP ecoding format
4634 * @mst_state: mst_state to update
4635 * @link_encoding_cap: the ecoding format on the link
4637 void drm_dp_mst_update_slots(struct drm_dp_mst_topology_state *mst_state, uint8_t link_encoding_cap)
4639 if (link_encoding_cap == DP_CAP_ANSI_128B132B) {
4640 mst_state->total_avail_slots = 64;
4641 mst_state->start_slot = 0;
4643 mst_state->total_avail_slots = 63;
4644 mst_state->start_slot = 1;
4647 DRM_DEBUG_KMS("%s encoding format on mst_state 0x%p\n",
4648 (link_encoding_cap == DP_CAP_ANSI_128B132B) ? "128b/132b":"8b/10b",
4651 EXPORT_SYMBOL(drm_dp_mst_update_slots);
4653 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr *mgr,
4654 int id, u8 start_slot, u8 num_slots)
4656 u8 payload_alloc[3], status;
4660 drm_dp_dpcd_writeb(mgr->aux, DP_PAYLOAD_TABLE_UPDATE_STATUS,
4661 DP_PAYLOAD_TABLE_UPDATED);
4663 payload_alloc[0] = id;
4664 payload_alloc[1] = start_slot;
4665 payload_alloc[2] = num_slots;
4667 ret = drm_dp_dpcd_write(mgr->aux, DP_PAYLOAD_ALLOCATE_SET, payload_alloc, 3);
4669 drm_dbg_kms(mgr->dev, "failed to write payload allocation %d\n", ret);
4674 ret = drm_dp_dpcd_readb(mgr->aux, DP_PAYLOAD_TABLE_UPDATE_STATUS, &status);
4676 drm_dbg_kms(mgr->dev, "failed to read payload table status %d\n", ret);
4680 if (!(status & DP_PAYLOAD_TABLE_UPDATED)) {
4683 usleep_range(10000, 20000);
4686 drm_dbg_kms(mgr->dev, "status not set after read payload table status %d\n",
4696 static int do_get_act_status(struct drm_dp_aux *aux)
4701 ret = drm_dp_dpcd_readb(aux, DP_PAYLOAD_TABLE_UPDATE_STATUS, &status);
4709 * drm_dp_check_act_status() - Polls for ACT handled status.
4710 * @mgr: manager to use
4712 * Tries waiting for the MST hub to finish updating it's payload table by
4713 * polling for the ACT handled bit for up to 3 seconds (yes-some hubs really
4717 * 0 if the ACT was handled in time, negative error code on failure.
4719 int drm_dp_check_act_status(struct drm_dp_mst_topology_mgr *mgr)
4722 * There doesn't seem to be any recommended retry count or timeout in
4723 * the MST specification. Since some hubs have been observed to take
4724 * over 1 second to update their payload allocations under certain
4725 * conditions, we use a rather large timeout value.
4727 const int timeout_ms = 3000;
4730 ret = readx_poll_timeout(do_get_act_status, mgr->aux, status,
4731 status & DP_PAYLOAD_ACT_HANDLED || status < 0,
4732 200, timeout_ms * USEC_PER_MSEC);
4733 if (ret < 0 && status >= 0) {
4734 drm_err(mgr->dev, "Failed to get ACT after %dms, last status: %02x\n",
4735 timeout_ms, status);
4737 } else if (status < 0) {
4739 * Failure here isn't unexpected - the hub may have
4740 * just been unplugged
4742 drm_dbg_kms(mgr->dev, "Failed to read payload table status: %d\n", status);
4748 EXPORT_SYMBOL(drm_dp_check_act_status);
4751 * drm_dp_calc_pbn_mode() - Calculate the PBN for a mode.
4753 * @bpp: bpp as .4 binary fixed point
4755 * This uses the formula in the spec to calculate the PBN value for a mode.
4757 int drm_dp_calc_pbn_mode(int clock, int bpp)
4760 * The unit of 54/64Mbytes/sec is an arbitrary unit chosen based on
4761 * common multiplier to render an integer PBN for all link rate/lane
4762 * counts combinations
4764 * peak_kbps = clock * bpp / 16
4765 * peak_kbps *= SSC overhead / 1000000
4766 * peak_kbps /= 8 convert to Kbytes
4767 * peak_kBps *= (64/54) / 1000 convert to PBN
4770 * TODO: Use the actual link and mode parameters to calculate
4771 * the overhead. For now it's assumed that these are
4772 * 4 link lanes, 4096 hactive pixels, which don't add any
4773 * significant data padding overhead and that there is no DSC
4776 int overhead = drm_dp_bw_overhead(4, 4096, 0, bpp,
4777 DRM_DP_BW_OVERHEAD_MST |
4778 DRM_DP_BW_OVERHEAD_SSC_REF_CLK);
4780 return DIV64_U64_ROUND_UP(mul_u32_u32(clock * bpp, 64 * overhead >> 4),
4781 1000000ULL * 8 * 54 * 1000);
4783 EXPORT_SYMBOL(drm_dp_calc_pbn_mode);
4785 /* we want to kick the TX after we've ack the up/down IRQs. */
4786 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr *mgr)
4788 queue_work(system_long_wq, &mgr->tx_work);
4792 * Helper function for parsing DP device types into convenient strings
4793 * for use with dp_mst_topology
4795 static const char *pdt_to_string(u8 pdt)
4798 case DP_PEER_DEVICE_NONE:
4800 case DP_PEER_DEVICE_SOURCE_OR_SST:
4801 return "SOURCE OR SST";
4802 case DP_PEER_DEVICE_MST_BRANCHING:
4803 return "MST BRANCHING";
4804 case DP_PEER_DEVICE_SST_SINK:
4806 case DP_PEER_DEVICE_DP_LEGACY_CONV:
4807 return "DP LEGACY CONV";
4813 static void drm_dp_mst_dump_mstb(struct seq_file *m,
4814 struct drm_dp_mst_branch *mstb)
4816 struct drm_dp_mst_port *port;
4817 int tabs = mstb->lct;
4821 for (i = 0; i < tabs; i++)
4825 seq_printf(m, "%smstb - [%p]: num_ports: %d\n", prefix, mstb, mstb->num_ports);
4826 list_for_each_entry(port, &mstb->ports, next) {
4827 seq_printf(m, "%sport %d - [%p] (%s - %s): ddps: %d, ldps: %d, sdp: %d/%d, fec: %s, conn: %p\n",
4831 port->input ? "input" : "output",
4832 pdt_to_string(port->pdt),
4835 port->num_sdp_streams,
4836 port->num_sdp_stream_sinks,
4837 port->fec_capable ? "true" : "false",
4840 drm_dp_mst_dump_mstb(m, port->mstb);
4844 #define DP_PAYLOAD_TABLE_SIZE 64
4846 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr *mgr,
4851 for (i = 0; i < DP_PAYLOAD_TABLE_SIZE; i += 16) {
4852 if (drm_dp_dpcd_read(mgr->aux,
4853 DP_PAYLOAD_TABLE_UPDATE_STATUS + i,
4860 static void fetch_monitor_name(struct drm_dp_mst_topology_mgr *mgr,
4861 struct drm_dp_mst_port *port, char *name,
4864 struct edid *mst_edid;
4866 mst_edid = drm_dp_mst_get_edid(port->connector, mgr, port);
4867 drm_edid_get_monitor_name(mst_edid, name, namelen);
4872 * drm_dp_mst_dump_topology(): dump topology to seq file.
4873 * @m: seq_file to dump output to
4874 * @mgr: manager to dump current topology for.
4876 * helper to dump MST topology to a seq file for debugfs.
4878 void drm_dp_mst_dump_topology(struct seq_file *m,
4879 struct drm_dp_mst_topology_mgr *mgr)
4881 struct drm_dp_mst_topology_state *state;
4882 struct drm_dp_mst_atomic_payload *payload;
4885 static const char *const status[] = {
4892 mutex_lock(&mgr->lock);
4893 if (mgr->mst_primary)
4894 drm_dp_mst_dump_mstb(m, mgr->mst_primary);
4897 mutex_unlock(&mgr->lock);
4899 ret = drm_modeset_lock_single_interruptible(&mgr->base.lock);
4903 state = to_drm_dp_mst_topology_state(mgr->base.state);
4904 seq_printf(m, "\n*** Atomic state info ***\n");
4905 seq_printf(m, "payload_mask: %x, max_payloads: %d, start_slot: %u, pbn_div: %d\n",
4906 state->payload_mask, mgr->max_payloads, state->start_slot,
4907 dfixed_trunc(state->pbn_div));
4909 seq_printf(m, "\n| idx | port | vcpi | slots | pbn | dsc | status | sink name |\n");
4910 for (i = 0; i < mgr->max_payloads; i++) {
4911 list_for_each_entry(payload, &state->payloads, next) {
4914 if (payload->vcpi != i || payload->delete)
4917 fetch_monitor_name(mgr, payload->port, name, sizeof(name));
4918 seq_printf(m, " %5d %6d %6d %02d - %02d %5d %5s %8s %19s\n",
4920 payload->port->port_num,
4922 payload->vc_start_slot,
4923 payload->vc_start_slot + payload->time_slots - 1,
4925 payload->dsc_enabled ? "Y" : "N",
4926 status[payload->payload_allocation_status],
4927 (*name != 0) ? name : "Unknown");
4931 seq_printf(m, "\n*** DPCD Info ***\n");
4932 mutex_lock(&mgr->lock);
4933 if (mgr->mst_primary) {
4934 u8 buf[DP_PAYLOAD_TABLE_SIZE];
4937 if (drm_dp_read_dpcd_caps(mgr->aux, buf) < 0) {
4938 seq_printf(m, "dpcd read failed\n");
4941 seq_printf(m, "dpcd: %*ph\n", DP_RECEIVER_CAP_SIZE, buf);
4943 ret = drm_dp_dpcd_read(mgr->aux, DP_FAUX_CAP, buf, 2);
4945 seq_printf(m, "faux/mst read failed\n");
4948 seq_printf(m, "faux/mst: %*ph\n", 2, buf);
4950 ret = drm_dp_dpcd_read(mgr->aux, DP_MSTM_CTRL, buf, 1);
4952 seq_printf(m, "mst ctrl read failed\n");
4955 seq_printf(m, "mst ctrl: %*ph\n", 1, buf);
4957 /* dump the standard OUI branch header */
4958 ret = drm_dp_dpcd_read(mgr->aux, DP_BRANCH_OUI, buf, DP_BRANCH_OUI_HEADER_SIZE);
4959 if (ret != DP_BRANCH_OUI_HEADER_SIZE) {
4960 seq_printf(m, "branch oui read failed\n");
4963 seq_printf(m, "branch oui: %*phN devid: ", 3, buf);
4965 for (i = 0x3; i < 0x8 && buf[i]; i++)
4966 seq_printf(m, "%c", buf[i]);
4967 seq_printf(m, " revision: hw: %x.%x sw: %x.%x\n",
4968 buf[0x9] >> 4, buf[0x9] & 0xf, buf[0xa], buf[0xb]);
4969 if (dump_dp_payload_table(mgr, buf))
4970 seq_printf(m, "payload table: %*ph\n", DP_PAYLOAD_TABLE_SIZE, buf);
4974 mutex_unlock(&mgr->lock);
4975 drm_modeset_unlock(&mgr->base.lock);
4977 EXPORT_SYMBOL(drm_dp_mst_dump_topology);
4979 static void drm_dp_tx_work(struct work_struct *work)
4981 struct drm_dp_mst_topology_mgr *mgr = container_of(work, struct drm_dp_mst_topology_mgr, tx_work);
4983 mutex_lock(&mgr->qlock);
4984 if (!list_empty(&mgr->tx_msg_downq))
4985 process_single_down_tx_qlock(mgr);
4986 mutex_unlock(&mgr->qlock);
4990 drm_dp_delayed_destroy_port(struct drm_dp_mst_port *port)
4992 drm_dp_port_set_pdt(port, DP_PEER_DEVICE_NONE, port->mcs);
4994 if (port->connector) {
4995 drm_connector_unregister(port->connector);
4996 drm_connector_put(port->connector);
4999 drm_dp_mst_put_port_malloc(port);
5003 drm_dp_delayed_destroy_mstb(struct drm_dp_mst_branch *mstb)
5005 struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
5006 struct drm_dp_mst_port *port, *port_tmp;
5007 struct drm_dp_sideband_msg_tx *txmsg, *txmsg_tmp;
5008 bool wake_tx = false;
5010 mutex_lock(&mgr->lock);
5011 list_for_each_entry_safe(port, port_tmp, &mstb->ports, next) {
5012 list_del(&port->next);
5013 drm_dp_mst_topology_put_port(port);
5015 mutex_unlock(&mgr->lock);
5017 /* drop any tx slot msg */
5018 mutex_lock(&mstb->mgr->qlock);
5019 list_for_each_entry_safe(txmsg, txmsg_tmp, &mgr->tx_msg_downq, next) {
5020 if (txmsg->dst != mstb)
5023 txmsg->state = DRM_DP_SIDEBAND_TX_TIMEOUT;
5024 list_del(&txmsg->next);
5027 mutex_unlock(&mstb->mgr->qlock);
5030 wake_up_all(&mstb->mgr->tx_waitq);
5032 drm_dp_mst_put_mstb_malloc(mstb);
5035 static void drm_dp_delayed_destroy_work(struct work_struct *work)
5037 struct drm_dp_mst_topology_mgr *mgr =
5038 container_of(work, struct drm_dp_mst_topology_mgr,
5039 delayed_destroy_work);
5040 bool send_hotplug = false, go_again;
5043 * Not a regular list traverse as we have to drop the destroy
5044 * connector lock before destroying the mstb/port, to avoid AB->BA
5045 * ordering between this lock and the config mutex.
5051 struct drm_dp_mst_branch *mstb;
5053 mutex_lock(&mgr->delayed_destroy_lock);
5054 mstb = list_first_entry_or_null(&mgr->destroy_branch_device_list,
5055 struct drm_dp_mst_branch,
5058 list_del(&mstb->destroy_next);
5059 mutex_unlock(&mgr->delayed_destroy_lock);
5064 drm_dp_delayed_destroy_mstb(mstb);
5069 struct drm_dp_mst_port *port;
5071 mutex_lock(&mgr->delayed_destroy_lock);
5072 port = list_first_entry_or_null(&mgr->destroy_port_list,
5073 struct drm_dp_mst_port,
5076 list_del(&port->next);
5077 mutex_unlock(&mgr->delayed_destroy_lock);
5082 drm_dp_delayed_destroy_port(port);
5083 send_hotplug = true;
5089 drm_kms_helper_hotplug_event(mgr->dev);
5092 static struct drm_private_state *
5093 drm_dp_mst_duplicate_state(struct drm_private_obj *obj)
5095 struct drm_dp_mst_topology_state *state, *old_state =
5096 to_dp_mst_topology_state(obj->state);
5097 struct drm_dp_mst_atomic_payload *pos, *payload;
5099 state = kmemdup(old_state, sizeof(*state), GFP_KERNEL);
5103 __drm_atomic_helper_private_obj_duplicate_state(obj, &state->base);
5105 INIT_LIST_HEAD(&state->payloads);
5106 state->commit_deps = NULL;
5107 state->num_commit_deps = 0;
5108 state->pending_crtc_mask = 0;
5110 list_for_each_entry(pos, &old_state->payloads, next) {
5111 /* Prune leftover freed timeslot allocations */
5115 payload = kmemdup(pos, sizeof(*payload), GFP_KERNEL);
5119 drm_dp_mst_get_port_malloc(payload->port);
5120 list_add(&payload->next, &state->payloads);
5123 return &state->base;
5126 list_for_each_entry_safe(pos, payload, &state->payloads, next) {
5127 drm_dp_mst_put_port_malloc(pos->port);
5135 static void drm_dp_mst_destroy_state(struct drm_private_obj *obj,
5136 struct drm_private_state *state)
5138 struct drm_dp_mst_topology_state *mst_state =
5139 to_dp_mst_topology_state(state);
5140 struct drm_dp_mst_atomic_payload *pos, *tmp;
5143 list_for_each_entry_safe(pos, tmp, &mst_state->payloads, next) {
5144 /* We only keep references to ports with active payloads */
5146 drm_dp_mst_put_port_malloc(pos->port);
5150 for (i = 0; i < mst_state->num_commit_deps; i++)
5151 drm_crtc_commit_put(mst_state->commit_deps[i]);
5153 kfree(mst_state->commit_deps);
5157 static bool drm_dp_mst_port_downstream_of_branch(struct drm_dp_mst_port *port,
5158 struct drm_dp_mst_branch *branch)
5160 while (port->parent) {
5161 if (port->parent == branch)
5164 if (port->parent->port_parent)
5165 port = port->parent->port_parent;
5173 drm_dp_mst_port_downstream_of_parent_locked(struct drm_dp_mst_topology_mgr *mgr,
5174 struct drm_dp_mst_port *port,
5175 struct drm_dp_mst_port *parent)
5177 if (!mgr->mst_primary)
5180 port = drm_dp_mst_topology_get_port_validated_locked(mgr->mst_primary,
5188 parent = drm_dp_mst_topology_get_port_validated_locked(mgr->mst_primary,
5196 return drm_dp_mst_port_downstream_of_branch(port, parent->mstb);
5200 * drm_dp_mst_port_downstream_of_parent - check if a port is downstream of a parent port
5201 * @mgr: MST topology manager
5202 * @port: the port being looked up
5203 * @parent: the parent port
5205 * The function returns %true if @port is downstream of @parent. If @parent is
5206 * %NULL - denoting the root port - the function returns %true if @port is in
5210 drm_dp_mst_port_downstream_of_parent(struct drm_dp_mst_topology_mgr *mgr,
5211 struct drm_dp_mst_port *port,
5212 struct drm_dp_mst_port *parent)
5216 mutex_lock(&mgr->lock);
5217 ret = drm_dp_mst_port_downstream_of_parent_locked(mgr, port, parent);
5218 mutex_unlock(&mgr->lock);
5222 EXPORT_SYMBOL(drm_dp_mst_port_downstream_of_parent);
5225 drm_dp_mst_atomic_check_port_bw_limit(struct drm_dp_mst_port *port,
5226 struct drm_dp_mst_topology_state *state,
5227 struct drm_dp_mst_port **failing_port);
5230 drm_dp_mst_atomic_check_mstb_bw_limit(struct drm_dp_mst_branch *mstb,
5231 struct drm_dp_mst_topology_state *state,
5232 struct drm_dp_mst_port **failing_port)
5234 struct drm_dp_mst_atomic_payload *payload;
5235 struct drm_dp_mst_port *port;
5236 int pbn_used = 0, ret;
5239 /* Check that we have at least one port in our state that's downstream
5240 * of this branch, otherwise we can skip this branch
5242 list_for_each_entry(payload, &state->payloads, next) {
5243 if (!payload->pbn ||
5244 !drm_dp_mst_port_downstream_of_branch(payload->port, mstb))
5253 if (mstb->port_parent)
5254 drm_dbg_atomic(mstb->mgr->dev,
5255 "[MSTB:%p] [MST PORT:%p] Checking bandwidth limits on [MSTB:%p]\n",
5256 mstb->port_parent->parent, mstb->port_parent, mstb);
5258 drm_dbg_atomic(mstb->mgr->dev, "[MSTB:%p] Checking bandwidth limits\n", mstb);
5260 list_for_each_entry(port, &mstb->ports, next) {
5261 ret = drm_dp_mst_atomic_check_port_bw_limit(port, state, failing_port);
5272 drm_dp_mst_atomic_check_port_bw_limit(struct drm_dp_mst_port *port,
5273 struct drm_dp_mst_topology_state *state,
5274 struct drm_dp_mst_port **failing_port)
5276 struct drm_dp_mst_atomic_payload *payload;
5279 if (port->pdt == DP_PEER_DEVICE_NONE)
5282 if (drm_dp_mst_is_end_device(port->pdt, port->mcs)) {
5283 payload = drm_atomic_get_mst_payload_state(state, port);
5288 * This could happen if the sink deasserted its HPD line, but
5289 * the branch device still reports it as attached (PDT != NONE).
5291 if (!port->full_pbn) {
5292 drm_dbg_atomic(port->mgr->dev,
5293 "[MSTB:%p] [MST PORT:%p] no BW available for the port\n",
5294 port->parent, port);
5295 *failing_port = port;
5299 pbn_used = payload->pbn;
5301 pbn_used = drm_dp_mst_atomic_check_mstb_bw_limit(port->mstb,
5308 if (pbn_used > port->full_pbn) {
5309 drm_dbg_atomic(port->mgr->dev,
5310 "[MSTB:%p] [MST PORT:%p] required PBN of %d exceeds port limit of %d\n",
5311 port->parent, port, pbn_used, port->full_pbn);
5312 *failing_port = port;
5316 drm_dbg_atomic(port->mgr->dev, "[MSTB:%p] [MST PORT:%p] uses %d out of %d PBN\n",
5317 port->parent, port, pbn_used, port->full_pbn);
5323 drm_dp_mst_atomic_check_payload_alloc_limits(struct drm_dp_mst_topology_mgr *mgr,
5324 struct drm_dp_mst_topology_state *mst_state)
5326 struct drm_dp_mst_atomic_payload *payload;
5327 int avail_slots = mst_state->total_avail_slots, payload_count = 0;
5329 list_for_each_entry(payload, &mst_state->payloads, next) {
5330 /* Releasing payloads is always OK-even if the port is gone */
5331 if (payload->delete) {
5332 drm_dbg_atomic(mgr->dev, "[MST PORT:%p] releases all time slots\n",
5337 drm_dbg_atomic(mgr->dev, "[MST PORT:%p] requires %d time slots\n",
5338 payload->port, payload->time_slots);
5340 avail_slots -= payload->time_slots;
5341 if (avail_slots < 0) {
5342 drm_dbg_atomic(mgr->dev,
5343 "[MST PORT:%p] not enough time slots in mst state %p (avail=%d)\n",
5344 payload->port, mst_state, avail_slots + payload->time_slots);
5348 if (++payload_count > mgr->max_payloads) {
5349 drm_dbg_atomic(mgr->dev,
5350 "[MST MGR:%p] state %p has too many payloads (max=%d)\n",
5351 mgr, mst_state, mgr->max_payloads);
5356 if (!payload->vcpi) {
5357 payload->vcpi = ffz(mst_state->payload_mask) + 1;
5358 drm_dbg_atomic(mgr->dev, "[MST PORT:%p] assigned VCPI #%d\n",
5359 payload->port, payload->vcpi);
5360 mst_state->payload_mask |= BIT(payload->vcpi - 1);
5365 mst_state->pbn_div.full = dfixed_const(0);
5367 drm_dbg_atomic(mgr->dev, "[MST MGR:%p] mst state %p TU pbn_div=%d avail=%d used=%d\n",
5368 mgr, mst_state, dfixed_trunc(mst_state->pbn_div), avail_slots,
5369 mst_state->total_avail_slots - avail_slots);
5375 * drm_dp_mst_add_affected_dsc_crtcs
5376 * @state: Pointer to the new struct drm_dp_mst_topology_state
5377 * @mgr: MST topology manager
5379 * Whenever there is a change in mst topology
5380 * DSC configuration would have to be recalculated
5381 * therefore we need to trigger modeset on all affected
5382 * CRTCs in that topology
5385 * drm_dp_mst_atomic_enable_dsc()
5387 int drm_dp_mst_add_affected_dsc_crtcs(struct drm_atomic_state *state, struct drm_dp_mst_topology_mgr *mgr)
5389 struct drm_dp_mst_topology_state *mst_state;
5390 struct drm_dp_mst_atomic_payload *pos;
5391 struct drm_connector *connector;
5392 struct drm_connector_state *conn_state;
5393 struct drm_crtc *crtc;
5394 struct drm_crtc_state *crtc_state;
5396 mst_state = drm_atomic_get_mst_topology_state(state, mgr);
5398 if (IS_ERR(mst_state))
5399 return PTR_ERR(mst_state);
5401 list_for_each_entry(pos, &mst_state->payloads, next) {
5403 connector = pos->port->connector;
5408 conn_state = drm_atomic_get_connector_state(state, connector);
5410 if (IS_ERR(conn_state))
5411 return PTR_ERR(conn_state);
5413 crtc = conn_state->crtc;
5418 if (!drm_dp_mst_dsc_aux_for_port(pos->port))
5421 crtc_state = drm_atomic_get_crtc_state(mst_state->base.state, crtc);
5423 if (IS_ERR(crtc_state))
5424 return PTR_ERR(crtc_state);
5426 drm_dbg_atomic(mgr->dev, "[MST MGR:%p] Setting mode_changed flag on CRTC %p\n",
5429 crtc_state->mode_changed = true;
5433 EXPORT_SYMBOL(drm_dp_mst_add_affected_dsc_crtcs);
5436 * drm_dp_mst_atomic_enable_dsc - Set DSC Enable Flag to On/Off
5437 * @state: Pointer to the new drm_atomic_state
5438 * @port: Pointer to the affected MST Port
5439 * @pbn: Newly recalculated bw required for link with DSC enabled
5440 * @enable: Boolean flag to enable or disable DSC on the port
5442 * This function enables DSC on the given Port
5443 * by recalculating its vcpi from pbn provided
5444 * and sets dsc_enable flag to keep track of which
5445 * ports have DSC enabled
5448 int drm_dp_mst_atomic_enable_dsc(struct drm_atomic_state *state,
5449 struct drm_dp_mst_port *port,
5450 int pbn, bool enable)
5452 struct drm_dp_mst_topology_state *mst_state;
5453 struct drm_dp_mst_atomic_payload *payload;
5456 mst_state = drm_atomic_get_mst_topology_state(state, port->mgr);
5457 if (IS_ERR(mst_state))
5458 return PTR_ERR(mst_state);
5460 payload = drm_atomic_get_mst_payload_state(mst_state, port);
5462 drm_dbg_atomic(state->dev,
5463 "[MST PORT:%p] Couldn't find payload in mst state %p\n",
5468 if (payload->dsc_enabled == enable) {
5469 drm_dbg_atomic(state->dev,
5470 "[MST PORT:%p] DSC flag is already set to %d, returning %d time slots\n",
5471 port, enable, payload->time_slots);
5472 time_slots = payload->time_slots;
5476 time_slots = drm_dp_atomic_find_time_slots(state, port->mgr, port, pbn);
5477 drm_dbg_atomic(state->dev,
5478 "[MST PORT:%p] Enabling DSC flag, reallocating %d time slots on the port\n",
5484 payload->dsc_enabled = enable;
5488 EXPORT_SYMBOL(drm_dp_mst_atomic_enable_dsc);
5491 * drm_dp_mst_atomic_check_mgr - Check the atomic state of an MST topology manager
5492 * @state: The global atomic state
5493 * @mgr: Manager to check
5494 * @mst_state: The MST atomic state for @mgr
5495 * @failing_port: Returns the port with a BW limitation
5497 * Checks the given MST manager's topology state for an atomic update to ensure
5498 * that it's valid. This includes checking whether there's enough bandwidth to
5499 * support the new timeslot allocations in the atomic update.
5501 * Any atomic drivers supporting DP MST must make sure to call this or
5502 * the drm_dp_mst_atomic_check() function after checking the rest of their state
5503 * in their &drm_mode_config_funcs.atomic_check() callback.
5506 * drm_dp_mst_atomic_check()
5507 * drm_dp_atomic_find_time_slots()
5508 * drm_dp_atomic_release_time_slots()
5511 * - 0 if the new state is valid
5512 * - %-ENOSPC, if the new state is invalid, because of BW limitation
5513 * @failing_port is set to:
5515 * - The non-root port where a BW limit check failed
5516 * with all the ports downstream of @failing_port passing
5517 * the BW limit check.
5518 * The returned port pointer is valid until at least
5519 * one payload downstream of it exists.
5520 * - %NULL if the BW limit check failed at the root port
5521 * with all the ports downstream of the root port passing
5522 * the BW limit check.
5524 * - %-EINVAL, if the new state is invalid, because the root port has
5525 * too many payloads.
5527 int drm_dp_mst_atomic_check_mgr(struct drm_atomic_state *state,
5528 struct drm_dp_mst_topology_mgr *mgr,
5529 struct drm_dp_mst_topology_state *mst_state,
5530 struct drm_dp_mst_port **failing_port)
5534 *failing_port = NULL;
5536 if (!mgr->mst_state)
5539 mutex_lock(&mgr->lock);
5540 ret = drm_dp_mst_atomic_check_mstb_bw_limit(mgr->mst_primary,
5543 mutex_unlock(&mgr->lock);
5548 return drm_dp_mst_atomic_check_payload_alloc_limits(mgr, mst_state);
5550 EXPORT_SYMBOL(drm_dp_mst_atomic_check_mgr);
5553 * drm_dp_mst_atomic_check - Check that the new state of an MST topology in an
5554 * atomic update is valid
5555 * @state: Pointer to the new &struct drm_dp_mst_topology_state
5557 * Checks the given topology state for an atomic update to ensure that it's
5558 * valid, calling drm_dp_mst_atomic_check_mgr() for all MST manager in the
5559 * atomic state. This includes checking whether there's enough bandwidth to
5560 * support the new timeslot allocations in the atomic update.
5562 * Any atomic drivers supporting DP MST must make sure to call this after
5563 * checking the rest of their state in their
5564 * &drm_mode_config_funcs.atomic_check() callback.
5567 * drm_dp_mst_atomic_check_mgr()
5568 * drm_dp_atomic_find_time_slots()
5569 * drm_dp_atomic_release_time_slots()
5573 * 0 if the new state is valid, negative error code otherwise.
5575 int drm_dp_mst_atomic_check(struct drm_atomic_state *state)
5577 struct drm_dp_mst_topology_mgr *mgr;
5578 struct drm_dp_mst_topology_state *mst_state;
5581 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
5582 struct drm_dp_mst_port *tmp_port;
5584 ret = drm_dp_mst_atomic_check_mgr(state, mgr, mst_state, &tmp_port);
5591 EXPORT_SYMBOL(drm_dp_mst_atomic_check);
5593 const struct drm_private_state_funcs drm_dp_mst_topology_state_funcs = {
5594 .atomic_duplicate_state = drm_dp_mst_duplicate_state,
5595 .atomic_destroy_state = drm_dp_mst_destroy_state,
5597 EXPORT_SYMBOL(drm_dp_mst_topology_state_funcs);
5600 * drm_atomic_get_mst_topology_state: get MST topology state
5601 * @state: global atomic state
5602 * @mgr: MST topology manager, also the private object in this case
5604 * This function wraps drm_atomic_get_priv_obj_state() passing in the MST atomic
5605 * state vtable so that the private object state returned is that of a MST
5610 * The MST topology state or error pointer.
5612 struct drm_dp_mst_topology_state *drm_atomic_get_mst_topology_state(struct drm_atomic_state *state,
5613 struct drm_dp_mst_topology_mgr *mgr)
5615 return to_dp_mst_topology_state(drm_atomic_get_private_obj_state(state, &mgr->base));
5617 EXPORT_SYMBOL(drm_atomic_get_mst_topology_state);
5620 * drm_atomic_get_old_mst_topology_state: get old MST topology state in atomic state, if any
5621 * @state: global atomic state
5622 * @mgr: MST topology manager, also the private object in this case
5624 * This function wraps drm_atomic_get_old_private_obj_state() passing in the MST atomic
5625 * state vtable so that the private object state returned is that of a MST
5630 * The old MST topology state, or NULL if there's no topology state for this MST mgr
5631 * in the global atomic state
5633 struct drm_dp_mst_topology_state *
5634 drm_atomic_get_old_mst_topology_state(struct drm_atomic_state *state,
5635 struct drm_dp_mst_topology_mgr *mgr)
5637 struct drm_private_state *old_priv_state =
5638 drm_atomic_get_old_private_obj_state(state, &mgr->base);
5640 return old_priv_state ? to_dp_mst_topology_state(old_priv_state) : NULL;
5642 EXPORT_SYMBOL(drm_atomic_get_old_mst_topology_state);
5645 * drm_atomic_get_new_mst_topology_state: get new MST topology state in atomic state, if any
5646 * @state: global atomic state
5647 * @mgr: MST topology manager, also the private object in this case
5649 * This function wraps drm_atomic_get_new_private_obj_state() passing in the MST atomic
5650 * state vtable so that the private object state returned is that of a MST
5655 * The new MST topology state, or NULL if there's no topology state for this MST mgr
5656 * in the global atomic state
5658 struct drm_dp_mst_topology_state *
5659 drm_atomic_get_new_mst_topology_state(struct drm_atomic_state *state,
5660 struct drm_dp_mst_topology_mgr *mgr)
5662 struct drm_private_state *new_priv_state =
5663 drm_atomic_get_new_private_obj_state(state, &mgr->base);
5665 return new_priv_state ? to_dp_mst_topology_state(new_priv_state) : NULL;
5667 EXPORT_SYMBOL(drm_atomic_get_new_mst_topology_state);
5670 * drm_dp_mst_topology_mgr_init - initialise a topology manager
5671 * @mgr: manager struct to initialise
5672 * @dev: device providing this structure - for i2c addition.
5673 * @aux: DP helper aux channel to talk to this device
5674 * @max_dpcd_transaction_bytes: hw specific DPCD transaction limit
5675 * @max_payloads: maximum number of payloads this GPU can source
5676 * @conn_base_id: the connector object ID the MST device is connected to.
5678 * Return 0 for success, or negative error code on failure
5680 int drm_dp_mst_topology_mgr_init(struct drm_dp_mst_topology_mgr *mgr,
5681 struct drm_device *dev, struct drm_dp_aux *aux,
5682 int max_dpcd_transaction_bytes, int max_payloads,
5685 struct drm_dp_mst_topology_state *mst_state;
5687 mutex_init(&mgr->lock);
5688 mutex_init(&mgr->qlock);
5689 mutex_init(&mgr->delayed_destroy_lock);
5690 mutex_init(&mgr->up_req_lock);
5691 mutex_init(&mgr->probe_lock);
5692 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
5693 mutex_init(&mgr->topology_ref_history_lock);
5696 INIT_LIST_HEAD(&mgr->tx_msg_downq);
5697 INIT_LIST_HEAD(&mgr->destroy_port_list);
5698 INIT_LIST_HEAD(&mgr->destroy_branch_device_list);
5699 INIT_LIST_HEAD(&mgr->up_req_list);
5702 * delayed_destroy_work will be queued on a dedicated WQ, so that any
5703 * requeuing will be also flushed when deiniting the topology manager.
5705 mgr->delayed_destroy_wq = alloc_ordered_workqueue("drm_dp_mst_wq", 0);
5706 if (mgr->delayed_destroy_wq == NULL)
5709 INIT_WORK(&mgr->work, drm_dp_mst_link_probe_work);
5710 INIT_WORK(&mgr->tx_work, drm_dp_tx_work);
5711 INIT_WORK(&mgr->delayed_destroy_work, drm_dp_delayed_destroy_work);
5712 INIT_WORK(&mgr->up_req_work, drm_dp_mst_up_req_work);
5713 init_waitqueue_head(&mgr->tx_waitq);
5716 mgr->max_dpcd_transaction_bytes = max_dpcd_transaction_bytes;
5717 mgr->max_payloads = max_payloads;
5718 mgr->conn_base_id = conn_base_id;
5720 mst_state = kzalloc(sizeof(*mst_state), GFP_KERNEL);
5721 if (mst_state == NULL)
5724 mst_state->total_avail_slots = 63;
5725 mst_state->start_slot = 1;
5727 mst_state->mgr = mgr;
5728 INIT_LIST_HEAD(&mst_state->payloads);
5730 drm_atomic_private_obj_init(dev, &mgr->base,
5732 &drm_dp_mst_topology_state_funcs);
5736 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_init);
5739 * drm_dp_mst_topology_mgr_destroy() - destroy topology manager.
5740 * @mgr: manager to destroy
5742 void drm_dp_mst_topology_mgr_destroy(struct drm_dp_mst_topology_mgr *mgr)
5744 drm_dp_mst_topology_mgr_set_mst(mgr, false);
5745 flush_work(&mgr->work);
5746 /* The following will also drain any requeued work on the WQ. */
5747 if (mgr->delayed_destroy_wq) {
5748 destroy_workqueue(mgr->delayed_destroy_wq);
5749 mgr->delayed_destroy_wq = NULL;
5753 drm_atomic_private_obj_fini(&mgr->base);
5756 mutex_destroy(&mgr->delayed_destroy_lock);
5757 mutex_destroy(&mgr->qlock);
5758 mutex_destroy(&mgr->lock);
5759 mutex_destroy(&mgr->up_req_lock);
5760 mutex_destroy(&mgr->probe_lock);
5761 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
5762 mutex_destroy(&mgr->topology_ref_history_lock);
5765 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_destroy);
5767 static bool remote_i2c_read_ok(const struct i2c_msg msgs[], int num)
5771 if (num - 1 > DP_REMOTE_I2C_READ_MAX_TRANSACTIONS)
5774 for (i = 0; i < num - 1; i++) {
5775 if (msgs[i].flags & I2C_M_RD ||
5780 return msgs[num - 1].flags & I2C_M_RD &&
5781 msgs[num - 1].len <= 0xff;
5784 static bool remote_i2c_write_ok(const struct i2c_msg msgs[], int num)
5788 for (i = 0; i < num - 1; i++) {
5789 if (msgs[i].flags & I2C_M_RD || !(msgs[i].flags & I2C_M_STOP) ||
5794 return !(msgs[num - 1].flags & I2C_M_RD) && msgs[num - 1].len <= 0xff;
5797 static int drm_dp_mst_i2c_read(struct drm_dp_mst_branch *mstb,
5798 struct drm_dp_mst_port *port,
5799 struct i2c_msg *msgs, int num)
5801 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
5803 struct drm_dp_sideband_msg_req_body msg;
5804 struct drm_dp_sideband_msg_tx *txmsg = NULL;
5807 memset(&msg, 0, sizeof(msg));
5808 msg.req_type = DP_REMOTE_I2C_READ;
5809 msg.u.i2c_read.num_transactions = num - 1;
5810 msg.u.i2c_read.port_number = port->port_num;
5811 for (i = 0; i < num - 1; i++) {
5812 msg.u.i2c_read.transactions[i].i2c_dev_id = msgs[i].addr;
5813 msg.u.i2c_read.transactions[i].num_bytes = msgs[i].len;
5814 msg.u.i2c_read.transactions[i].bytes = msgs[i].buf;
5815 msg.u.i2c_read.transactions[i].no_stop_bit = !(msgs[i].flags & I2C_M_STOP);
5817 msg.u.i2c_read.read_i2c_device_id = msgs[num - 1].addr;
5818 msg.u.i2c_read.num_bytes_read = msgs[num - 1].len;
5820 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
5827 drm_dp_encode_sideband_req(&msg, txmsg);
5829 drm_dp_queue_down_tx(mgr, txmsg);
5831 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
5834 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
5838 if (txmsg->reply.u.remote_i2c_read_ack.num_bytes != msgs[num - 1].len) {
5842 memcpy(msgs[num - 1].buf, txmsg->reply.u.remote_i2c_read_ack.bytes, msgs[num - 1].len);
5850 static int drm_dp_mst_i2c_write(struct drm_dp_mst_branch *mstb,
5851 struct drm_dp_mst_port *port,
5852 struct i2c_msg *msgs, int num)
5854 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
5856 struct drm_dp_sideband_msg_req_body msg;
5857 struct drm_dp_sideband_msg_tx *txmsg = NULL;
5860 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
5865 for (i = 0; i < num; i++) {
5866 memset(&msg, 0, sizeof(msg));
5867 msg.req_type = DP_REMOTE_I2C_WRITE;
5868 msg.u.i2c_write.port_number = port->port_num;
5869 msg.u.i2c_write.write_i2c_device_id = msgs[i].addr;
5870 msg.u.i2c_write.num_bytes = msgs[i].len;
5871 msg.u.i2c_write.bytes = msgs[i].buf;
5873 memset(txmsg, 0, sizeof(*txmsg));
5876 drm_dp_encode_sideband_req(&msg, txmsg);
5877 drm_dp_queue_down_tx(mgr, txmsg);
5879 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
5881 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
5896 static int drm_dp_mst_i2c_xfer(struct i2c_adapter *adapter,
5897 struct i2c_msg *msgs, int num)
5899 struct drm_dp_aux *aux = adapter->algo_data;
5900 struct drm_dp_mst_port *port =
5901 container_of(aux, struct drm_dp_mst_port, aux);
5902 struct drm_dp_mst_branch *mstb;
5903 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
5906 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
5910 if (remote_i2c_read_ok(msgs, num)) {
5911 ret = drm_dp_mst_i2c_read(mstb, port, msgs, num);
5912 } else if (remote_i2c_write_ok(msgs, num)) {
5913 ret = drm_dp_mst_i2c_write(mstb, port, msgs, num);
5915 drm_dbg_kms(mgr->dev, "Unsupported I2C transaction for MST device\n");
5919 drm_dp_mst_topology_put_mstb(mstb);
5923 static u32 drm_dp_mst_i2c_functionality(struct i2c_adapter *adapter)
5925 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
5926 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
5927 I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
5928 I2C_FUNC_10BIT_ADDR;
5931 static const struct i2c_algorithm drm_dp_mst_i2c_algo = {
5932 .functionality = drm_dp_mst_i2c_functionality,
5933 .master_xfer = drm_dp_mst_i2c_xfer,
5937 * drm_dp_mst_register_i2c_bus() - register an I2C adapter for I2C-over-AUX
5938 * @port: The port to add the I2C bus on
5940 * Returns 0 on success or a negative error code on failure.
5942 static int drm_dp_mst_register_i2c_bus(struct drm_dp_mst_port *port)
5944 struct drm_dp_aux *aux = &port->aux;
5945 struct device *parent_dev = port->mgr->dev->dev;
5947 aux->ddc.algo = &drm_dp_mst_i2c_algo;
5948 aux->ddc.algo_data = aux;
5949 aux->ddc.retries = 3;
5951 aux->ddc.owner = THIS_MODULE;
5952 /* FIXME: set the kdev of the port's connector as parent */
5953 aux->ddc.dev.parent = parent_dev;
5954 aux->ddc.dev.of_node = parent_dev->of_node;
5956 strscpy(aux->ddc.name, aux->name ? aux->name : dev_name(parent_dev),
5957 sizeof(aux->ddc.name));
5959 return i2c_add_adapter(&aux->ddc);
5963 * drm_dp_mst_unregister_i2c_bus() - unregister an I2C-over-AUX adapter
5964 * @port: The port to remove the I2C bus from
5966 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_mst_port *port)
5968 i2c_del_adapter(&port->aux.ddc);
5972 * drm_dp_mst_is_virtual_dpcd() - Is the given port a virtual DP Peer Device
5973 * @port: The port to check
5975 * A single physical MST hub object can be represented in the topology
5976 * by multiple branches, with virtual ports between those branches.
5978 * As of DP1.4, An MST hub with internal (virtual) ports must expose
5979 * certain DPCD registers over those ports. See sections 2.6.1.1.1
5980 * and 2.6.1.1.2 of Display Port specification v1.4 for details.
5982 * May acquire mgr->lock
5985 * true if the port is a virtual DP peer device, false otherwise
5987 static bool drm_dp_mst_is_virtual_dpcd(struct drm_dp_mst_port *port)
5989 struct drm_dp_mst_port *downstream_port;
5991 if (!port || port->dpcd_rev < DP_DPCD_REV_14)
5994 /* Virtual DP Sink (Internal Display Panel) */
5995 if (drm_dp_mst_port_is_logical(port))
5998 /* DP-to-HDMI Protocol Converter */
5999 if (port->pdt == DP_PEER_DEVICE_DP_LEGACY_CONV &&
6005 mutex_lock(&port->mgr->lock);
6006 if (port->pdt == DP_PEER_DEVICE_MST_BRANCHING &&
6008 port->mstb->num_ports == 2) {
6009 list_for_each_entry(downstream_port, &port->mstb->ports, next) {
6010 if (downstream_port->pdt == DP_PEER_DEVICE_SST_SINK &&
6011 !downstream_port->input) {
6012 mutex_unlock(&port->mgr->lock);
6017 mutex_unlock(&port->mgr->lock);
6023 * drm_dp_mst_aux_for_parent() - Get the AUX device for an MST port's parent
6024 * @port: MST port whose parent's AUX device is returned
6026 * Return the AUX device for @port's parent or NULL if port's parent is the
6029 struct drm_dp_aux *drm_dp_mst_aux_for_parent(struct drm_dp_mst_port *port)
6031 if (!port->parent || !port->parent->port_parent)
6034 return &port->parent->port_parent->aux;
6036 EXPORT_SYMBOL(drm_dp_mst_aux_for_parent);
6039 * drm_dp_mst_dsc_aux_for_port() - Find the correct aux for DSC
6040 * @port: The port to check. A leaf of the MST tree with an attached display.
6042 * Depending on the situation, DSC may be enabled via the endpoint aux,
6043 * the immediately upstream aux, or the connector's physical aux.
6045 * This is both the correct aux to read DSC_CAPABILITY and the
6046 * correct aux to write DSC_ENABLED.
6048 * This operation can be expensive (up to four aux reads), so
6049 * the caller should cache the return.
6052 * NULL if DSC cannot be enabled on this port, otherwise the aux device
6054 struct drm_dp_aux *drm_dp_mst_dsc_aux_for_port(struct drm_dp_mst_port *port)
6056 struct drm_dp_mst_port *immediate_upstream_port;
6057 struct drm_dp_aux *immediate_upstream_aux;
6058 struct drm_dp_mst_port *fec_port;
6059 struct drm_dp_desc desc = {};
6066 if (port->parent->port_parent)
6067 immediate_upstream_port = port->parent->port_parent;
6069 immediate_upstream_port = NULL;
6071 fec_port = immediate_upstream_port;
6074 * Each physical link (i.e. not a virtual port) between the
6075 * output and the primary device must support FEC
6077 if (!drm_dp_mst_is_virtual_dpcd(fec_port) &&
6078 !fec_port->fec_capable)
6081 fec_port = fec_port->parent->port_parent;
6084 /* DP-to-DP peer device */
6085 if (drm_dp_mst_is_virtual_dpcd(immediate_upstream_port)) {
6088 if (drm_dp_dpcd_read(&port->aux,
6089 DP_DSC_SUPPORT, &endpoint_dsc, 1) != 1)
6091 if (drm_dp_dpcd_read(&port->aux,
6092 DP_FEC_CAPABILITY, &endpoint_fec, 1) != 1)
6094 if (drm_dp_dpcd_read(&immediate_upstream_port->aux,
6095 DP_DSC_SUPPORT, &upstream_dsc, 1) != 1)
6098 /* Enpoint decompression with DP-to-DP peer device */
6099 if ((endpoint_dsc & DP_DSC_DECOMPRESSION_IS_SUPPORTED) &&
6100 (endpoint_fec & DP_FEC_CAPABLE) &&
6101 (upstream_dsc & DP_DSC_PASSTHROUGH_IS_SUPPORTED)) {
6102 port->passthrough_aux = &immediate_upstream_port->aux;
6106 /* Virtual DPCD decompression with DP-to-DP peer device */
6107 return &immediate_upstream_port->aux;
6110 /* Virtual DPCD decompression with DP-to-HDMI or Virtual DP Sink */
6111 if (drm_dp_mst_is_virtual_dpcd(port))
6116 * Applies to ports for which:
6117 * - Physical aux has Synaptics OUI
6118 * - DPv1.4 or higher
6119 * - Port is on primary branch device
6120 * - Not a VGA adapter (DP_DWN_STRM_PORT_TYPE_ANALOG)
6122 if (immediate_upstream_port)
6123 immediate_upstream_aux = &immediate_upstream_port->aux;
6125 immediate_upstream_aux = port->mgr->aux;
6127 if (drm_dp_read_desc(immediate_upstream_aux, &desc, true))
6130 if (drm_dp_has_quirk(&desc, DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD)) {
6131 u8 dpcd_ext[DP_RECEIVER_CAP_SIZE];
6133 if (drm_dp_read_dpcd_caps(immediate_upstream_aux, dpcd_ext) < 0)
6136 if (dpcd_ext[DP_DPCD_REV] >= DP_DPCD_REV_14 &&
6137 ((dpcd_ext[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT) &&
6138 ((dpcd_ext[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_TYPE_MASK)
6139 != DP_DWN_STRM_PORT_TYPE_ANALOG)))
6140 return immediate_upstream_aux;
6144 * The check below verifies if the MST sink
6145 * connected to the GPU is capable of DSC -
6146 * therefore the endpoint needs to be
6147 * both DSC and FEC capable.
6149 if (drm_dp_dpcd_read(&port->aux,
6150 DP_DSC_SUPPORT, &endpoint_dsc, 1) != 1)
6152 if (drm_dp_dpcd_read(&port->aux,
6153 DP_FEC_CAPABILITY, &endpoint_fec, 1) != 1)
6155 if ((endpoint_dsc & DP_DSC_DECOMPRESSION_IS_SUPPORTED) &&
6156 (endpoint_fec & DP_FEC_CAPABLE))
6161 EXPORT_SYMBOL(drm_dp_mst_dsc_aux_for_port);