2 * Copyright © 2014 Red Hat
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23 #include <linux/delay.h>
24 #include <linux/errno.h>
25 #include <linux/i2c.h>
26 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/sched.h>
29 #include <linux/seq_file.h>
31 #include <drm/drm_atomic.h>
32 #include <drm/drm_atomic_helper.h>
33 #include <drm/drm_dp_mst_helper.h>
34 #include <drm/drm_drv.h>
35 #include <drm/drm_fixed.h>
36 #include <drm/drm_print.h>
37 #include <drm/drm_probe_helper.h>
39 #include "drm_crtc_helper_internal.h"
44 * These functions contain parts of the DisplayPort 1.2a MultiStream Transport
45 * protocol. The helpers contain a topology manager and bandwidth manager.
46 * The helpers encapsulate the sending and received of sideband msgs.
48 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr *mgr,
50 static int test_calc_pbn_mode(void);
52 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port *port);
54 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr *mgr,
56 struct drm_dp_payload *payload);
58 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr *mgr,
59 struct drm_dp_mst_port *port,
60 int offset, int size, u8 *bytes);
61 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr *mgr,
62 struct drm_dp_mst_port *port,
63 int offset, int size, u8 *bytes);
65 static void drm_dp_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
66 struct drm_dp_mst_branch *mstb);
67 static int drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr *mgr,
68 struct drm_dp_mst_branch *mstb,
69 struct drm_dp_mst_port *port);
70 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
73 static int drm_dp_mst_register_i2c_bus(struct drm_dp_aux *aux);
74 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_aux *aux);
75 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr *mgr);
77 #define DP_STR(x) [DP_ ## x] = #x
79 static const char *drm_dp_mst_req_type_str(u8 req_type)
81 static const char * const req_type_str[] = {
82 DP_STR(GET_MSG_TRANSACTION_VERSION),
84 DP_STR(CONNECTION_STATUS_NOTIFY),
85 DP_STR(ENUM_PATH_RESOURCES),
86 DP_STR(ALLOCATE_PAYLOAD),
87 DP_STR(QUERY_PAYLOAD),
88 DP_STR(RESOURCE_STATUS_NOTIFY),
89 DP_STR(CLEAR_PAYLOAD_ID_TABLE),
90 DP_STR(REMOTE_DPCD_READ),
91 DP_STR(REMOTE_DPCD_WRITE),
92 DP_STR(REMOTE_I2C_READ),
93 DP_STR(REMOTE_I2C_WRITE),
95 DP_STR(POWER_DOWN_PHY),
96 DP_STR(SINK_EVENT_NOTIFY),
97 DP_STR(QUERY_STREAM_ENC_STATUS),
100 if (req_type >= ARRAY_SIZE(req_type_str) ||
101 !req_type_str[req_type])
104 return req_type_str[req_type];
108 #define DP_STR(x) [DP_NAK_ ## x] = #x
110 static const char *drm_dp_mst_nak_reason_str(u8 nak_reason)
112 static const char * const nak_reason_str[] = {
113 DP_STR(WRITE_FAILURE),
114 DP_STR(INVALID_READ),
118 DP_STR(LINK_FAILURE),
119 DP_STR(NO_RESOURCES),
122 DP_STR(ALLOCATE_FAIL),
125 if (nak_reason >= ARRAY_SIZE(nak_reason_str) ||
126 !nak_reason_str[nak_reason])
129 return nak_reason_str[nak_reason];
134 /* sideband msg handling */
135 static u8 drm_dp_msg_header_crc4(const uint8_t *data, size_t num_nibbles)
140 int number_of_bits = num_nibbles * 4;
143 while (number_of_bits != 0) {
146 remainder |= (data[array_index] & bitmask) >> bitshift;
154 if ((remainder & 0x10) == 0x10)
159 while (number_of_bits != 0) {
162 if ((remainder & 0x10) != 0)
169 static u8 drm_dp_msg_data_crc4(const uint8_t *data, u8 number_of_bytes)
174 int number_of_bits = number_of_bytes * 8;
177 while (number_of_bits != 0) {
180 remainder |= (data[array_index] & bitmask) >> bitshift;
188 if ((remainder & 0x100) == 0x100)
193 while (number_of_bits != 0) {
196 if ((remainder & 0x100) != 0)
200 return remainder & 0xff;
202 static inline u8 drm_dp_calc_sb_hdr_size(struct drm_dp_sideband_msg_hdr *hdr)
205 size += (hdr->lct / 2);
209 static void drm_dp_encode_sideband_msg_hdr(struct drm_dp_sideband_msg_hdr *hdr,
215 buf[idx++] = ((hdr->lct & 0xf) << 4) | (hdr->lcr & 0xf);
216 for (i = 0; i < (hdr->lct / 2); i++)
217 buf[idx++] = hdr->rad[i];
218 buf[idx++] = (hdr->broadcast << 7) | (hdr->path_msg << 6) |
219 (hdr->msg_len & 0x3f);
220 buf[idx++] = (hdr->somt << 7) | (hdr->eomt << 6) | (hdr->seqno << 4);
222 crc4 = drm_dp_msg_header_crc4(buf, (idx * 2) - 1);
223 buf[idx - 1] |= (crc4 & 0xf);
228 static bool drm_dp_decode_sideband_msg_hdr(struct drm_dp_sideband_msg_hdr *hdr,
229 u8 *buf, int buflen, u8 *hdrlen)
238 len += ((buf[0] & 0xf0) >> 4) / 2;
241 crc4 = drm_dp_msg_header_crc4(buf, (len * 2) - 1);
243 if ((crc4 & 0xf) != (buf[len - 1] & 0xf)) {
244 DRM_DEBUG_KMS("crc4 mismatch 0x%x 0x%x\n", crc4, buf[len - 1]);
248 hdr->lct = (buf[0] & 0xf0) >> 4;
249 hdr->lcr = (buf[0] & 0xf);
251 for (i = 0; i < (hdr->lct / 2); i++)
252 hdr->rad[i] = buf[idx++];
253 hdr->broadcast = (buf[idx] >> 7) & 0x1;
254 hdr->path_msg = (buf[idx] >> 6) & 0x1;
255 hdr->msg_len = buf[idx] & 0x3f;
257 hdr->somt = (buf[idx] >> 7) & 0x1;
258 hdr->eomt = (buf[idx] >> 6) & 0x1;
259 hdr->seqno = (buf[idx] >> 4) & 0x1;
265 static void drm_dp_encode_sideband_req(struct drm_dp_sideband_msg_req_body *req,
266 struct drm_dp_sideband_msg_tx *raw)
271 buf[idx++] = req->req_type & 0x7f;
273 switch (req->req_type) {
274 case DP_ENUM_PATH_RESOURCES:
275 buf[idx] = (req->u.port_num.port_number & 0xf) << 4;
278 case DP_ALLOCATE_PAYLOAD:
279 buf[idx] = (req->u.allocate_payload.port_number & 0xf) << 4 |
280 (req->u.allocate_payload.number_sdp_streams & 0xf);
282 buf[idx] = (req->u.allocate_payload.vcpi & 0x7f);
284 buf[idx] = (req->u.allocate_payload.pbn >> 8);
286 buf[idx] = (req->u.allocate_payload.pbn & 0xff);
288 for (i = 0; i < req->u.allocate_payload.number_sdp_streams / 2; i++) {
289 buf[idx] = ((req->u.allocate_payload.sdp_stream_sink[i * 2] & 0xf) << 4) |
290 (req->u.allocate_payload.sdp_stream_sink[i * 2 + 1] & 0xf);
293 if (req->u.allocate_payload.number_sdp_streams & 1) {
294 i = req->u.allocate_payload.number_sdp_streams - 1;
295 buf[idx] = (req->u.allocate_payload.sdp_stream_sink[i] & 0xf) << 4;
299 case DP_QUERY_PAYLOAD:
300 buf[idx] = (req->u.query_payload.port_number & 0xf) << 4;
302 buf[idx] = (req->u.query_payload.vcpi & 0x7f);
305 case DP_REMOTE_DPCD_READ:
306 buf[idx] = (req->u.dpcd_read.port_number & 0xf) << 4;
307 buf[idx] |= ((req->u.dpcd_read.dpcd_address & 0xf0000) >> 16) & 0xf;
309 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff00) >> 8;
311 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff);
313 buf[idx] = (req->u.dpcd_read.num_bytes);
317 case DP_REMOTE_DPCD_WRITE:
318 buf[idx] = (req->u.dpcd_write.port_number & 0xf) << 4;
319 buf[idx] |= ((req->u.dpcd_write.dpcd_address & 0xf0000) >> 16) & 0xf;
321 buf[idx] = (req->u.dpcd_write.dpcd_address & 0xff00) >> 8;
323 buf[idx] = (req->u.dpcd_write.dpcd_address & 0xff);
325 buf[idx] = (req->u.dpcd_write.num_bytes);
327 memcpy(&buf[idx], req->u.dpcd_write.bytes, req->u.dpcd_write.num_bytes);
328 idx += req->u.dpcd_write.num_bytes;
330 case DP_REMOTE_I2C_READ:
331 buf[idx] = (req->u.i2c_read.port_number & 0xf) << 4;
332 buf[idx] |= (req->u.i2c_read.num_transactions & 0x3);
334 for (i = 0; i < (req->u.i2c_read.num_transactions & 0x3); i++) {
335 buf[idx] = req->u.i2c_read.transactions[i].i2c_dev_id & 0x7f;
337 buf[idx] = req->u.i2c_read.transactions[i].num_bytes;
339 memcpy(&buf[idx], req->u.i2c_read.transactions[i].bytes, req->u.i2c_read.transactions[i].num_bytes);
340 idx += req->u.i2c_read.transactions[i].num_bytes;
342 buf[idx] = (req->u.i2c_read.transactions[i].no_stop_bit & 0x1) << 5;
343 buf[idx] |= (req->u.i2c_read.transactions[i].i2c_transaction_delay & 0xf);
346 buf[idx] = (req->u.i2c_read.read_i2c_device_id) & 0x7f;
348 buf[idx] = (req->u.i2c_read.num_bytes_read);
352 case DP_REMOTE_I2C_WRITE:
353 buf[idx] = (req->u.i2c_write.port_number & 0xf) << 4;
355 buf[idx] = (req->u.i2c_write.write_i2c_device_id) & 0x7f;
357 buf[idx] = (req->u.i2c_write.num_bytes);
359 memcpy(&buf[idx], req->u.i2c_write.bytes, req->u.i2c_write.num_bytes);
360 idx += req->u.i2c_write.num_bytes;
363 case DP_POWER_DOWN_PHY:
364 case DP_POWER_UP_PHY:
365 buf[idx] = (req->u.port_num.port_number & 0xf) << 4;
372 static void drm_dp_crc_sideband_chunk_req(u8 *msg, u8 len)
375 crc4 = drm_dp_msg_data_crc4(msg, len);
379 static void drm_dp_encode_sideband_reply(struct drm_dp_sideband_msg_reply_body *rep,
380 struct drm_dp_sideband_msg_tx *raw)
385 buf[idx++] = (rep->reply_type & 0x1) << 7 | (rep->req_type & 0x7f);
390 /* this adds a chunk of msg to the builder to get the final msg */
391 static bool drm_dp_sideband_msg_build(struct drm_dp_sideband_msg_rx *msg,
392 u8 *replybuf, u8 replybuflen, bool hdr)
399 struct drm_dp_sideband_msg_hdr recv_hdr;
400 ret = drm_dp_decode_sideband_msg_hdr(&recv_hdr, replybuf, replybuflen, &hdrlen);
402 print_hex_dump(KERN_DEBUG, "failed hdr", DUMP_PREFIX_NONE, 16, 1, replybuf, replybuflen, false);
407 * ignore out-of-order messages or messages that are part of a
410 if (!recv_hdr.somt && !msg->have_somt)
413 /* get length contained in this portion */
414 msg->curchunk_len = recv_hdr.msg_len;
415 msg->curchunk_hdrlen = hdrlen;
417 /* we have already gotten an somt - don't bother parsing */
418 if (recv_hdr.somt && msg->have_somt)
422 memcpy(&msg->initial_hdr, &recv_hdr, sizeof(struct drm_dp_sideband_msg_hdr));
423 msg->have_somt = true;
426 msg->have_eomt = true;
428 /* copy the bytes for the remainder of this header chunk */
429 msg->curchunk_idx = min(msg->curchunk_len, (u8)(replybuflen - hdrlen));
430 memcpy(&msg->chunk[0], replybuf + hdrlen, msg->curchunk_idx);
432 memcpy(&msg->chunk[msg->curchunk_idx], replybuf, replybuflen);
433 msg->curchunk_idx += replybuflen;
436 if (msg->curchunk_idx >= msg->curchunk_len) {
438 crc4 = drm_dp_msg_data_crc4(msg->chunk, msg->curchunk_len - 1);
439 /* copy chunk into bigger msg */
440 memcpy(&msg->msg[msg->curlen], msg->chunk, msg->curchunk_len - 1);
441 msg->curlen += msg->curchunk_len - 1;
446 static bool drm_dp_sideband_parse_link_address(struct drm_dp_sideband_msg_rx *raw,
447 struct drm_dp_sideband_msg_reply_body *repmsg)
451 memcpy(repmsg->u.link_addr.guid, &raw->msg[idx], 16);
453 repmsg->u.link_addr.nports = raw->msg[idx] & 0xf;
455 if (idx > raw->curlen)
457 for (i = 0; i < repmsg->u.link_addr.nports; i++) {
458 if (raw->msg[idx] & 0x80)
459 repmsg->u.link_addr.ports[i].input_port = 1;
461 repmsg->u.link_addr.ports[i].peer_device_type = (raw->msg[idx] >> 4) & 0x7;
462 repmsg->u.link_addr.ports[i].port_number = (raw->msg[idx] & 0xf);
465 if (idx > raw->curlen)
467 repmsg->u.link_addr.ports[i].mcs = (raw->msg[idx] >> 7) & 0x1;
468 repmsg->u.link_addr.ports[i].ddps = (raw->msg[idx] >> 6) & 0x1;
469 if (repmsg->u.link_addr.ports[i].input_port == 0)
470 repmsg->u.link_addr.ports[i].legacy_device_plug_status = (raw->msg[idx] >> 5) & 0x1;
472 if (idx > raw->curlen)
474 if (repmsg->u.link_addr.ports[i].input_port == 0) {
475 repmsg->u.link_addr.ports[i].dpcd_revision = (raw->msg[idx]);
477 if (idx > raw->curlen)
479 memcpy(repmsg->u.link_addr.ports[i].peer_guid, &raw->msg[idx], 16);
481 if (idx > raw->curlen)
483 repmsg->u.link_addr.ports[i].num_sdp_streams = (raw->msg[idx] >> 4) & 0xf;
484 repmsg->u.link_addr.ports[i].num_sdp_stream_sinks = (raw->msg[idx] & 0xf);
488 if (idx > raw->curlen)
494 DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx, raw->curlen);
498 static bool drm_dp_sideband_parse_remote_dpcd_read(struct drm_dp_sideband_msg_rx *raw,
499 struct drm_dp_sideband_msg_reply_body *repmsg)
502 repmsg->u.remote_dpcd_read_ack.port_number = raw->msg[idx] & 0xf;
504 if (idx > raw->curlen)
506 repmsg->u.remote_dpcd_read_ack.num_bytes = raw->msg[idx];
508 if (idx > raw->curlen)
511 memcpy(repmsg->u.remote_dpcd_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_dpcd_read_ack.num_bytes);
514 DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx, raw->curlen);
518 static bool drm_dp_sideband_parse_remote_dpcd_write(struct drm_dp_sideband_msg_rx *raw,
519 struct drm_dp_sideband_msg_reply_body *repmsg)
522 repmsg->u.remote_dpcd_write_ack.port_number = raw->msg[idx] & 0xf;
524 if (idx > raw->curlen)
528 DRM_DEBUG_KMS("parse length fail %d %d\n", idx, raw->curlen);
532 static bool drm_dp_sideband_parse_remote_i2c_read_ack(struct drm_dp_sideband_msg_rx *raw,
533 struct drm_dp_sideband_msg_reply_body *repmsg)
537 repmsg->u.remote_i2c_read_ack.port_number = (raw->msg[idx] & 0xf);
539 if (idx > raw->curlen)
541 repmsg->u.remote_i2c_read_ack.num_bytes = raw->msg[idx];
544 memcpy(repmsg->u.remote_i2c_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_i2c_read_ack.num_bytes);
547 DRM_DEBUG_KMS("remote i2c reply parse length fail %d %d\n", idx, raw->curlen);
551 static bool drm_dp_sideband_parse_enum_path_resources_ack(struct drm_dp_sideband_msg_rx *raw,
552 struct drm_dp_sideband_msg_reply_body *repmsg)
555 repmsg->u.path_resources.port_number = (raw->msg[idx] >> 4) & 0xf;
557 if (idx > raw->curlen)
559 repmsg->u.path_resources.full_payload_bw_number = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
561 if (idx > raw->curlen)
563 repmsg->u.path_resources.avail_payload_bw_number = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
565 if (idx > raw->curlen)
569 DRM_DEBUG_KMS("enum resource parse length fail %d %d\n", idx, raw->curlen);
573 static bool drm_dp_sideband_parse_allocate_payload_ack(struct drm_dp_sideband_msg_rx *raw,
574 struct drm_dp_sideband_msg_reply_body *repmsg)
577 repmsg->u.allocate_payload.port_number = (raw->msg[idx] >> 4) & 0xf;
579 if (idx > raw->curlen)
581 repmsg->u.allocate_payload.vcpi = raw->msg[idx];
583 if (idx > raw->curlen)
585 repmsg->u.allocate_payload.allocated_pbn = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
587 if (idx > raw->curlen)
591 DRM_DEBUG_KMS("allocate payload parse length fail %d %d\n", idx, raw->curlen);
595 static bool drm_dp_sideband_parse_query_payload_ack(struct drm_dp_sideband_msg_rx *raw,
596 struct drm_dp_sideband_msg_reply_body *repmsg)
599 repmsg->u.query_payload.port_number = (raw->msg[idx] >> 4) & 0xf;
601 if (idx > raw->curlen)
603 repmsg->u.query_payload.allocated_pbn = (raw->msg[idx] << 8) | (raw->msg[idx + 1]);
605 if (idx > raw->curlen)
609 DRM_DEBUG_KMS("query payload parse length fail %d %d\n", idx, raw->curlen);
613 static bool drm_dp_sideband_parse_power_updown_phy_ack(struct drm_dp_sideband_msg_rx *raw,
614 struct drm_dp_sideband_msg_reply_body *repmsg)
618 repmsg->u.port_number.port_number = (raw->msg[idx] >> 4) & 0xf;
620 if (idx > raw->curlen) {
621 DRM_DEBUG_KMS("power up/down phy parse length fail %d %d\n",
628 static bool drm_dp_sideband_parse_reply(struct drm_dp_sideband_msg_rx *raw,
629 struct drm_dp_sideband_msg_reply_body *msg)
631 memset(msg, 0, sizeof(*msg));
632 msg->reply_type = (raw->msg[0] & 0x80) >> 7;
633 msg->req_type = (raw->msg[0] & 0x7f);
635 if (msg->reply_type == DP_SIDEBAND_REPLY_NAK) {
636 memcpy(msg->u.nak.guid, &raw->msg[1], 16);
637 msg->u.nak.reason = raw->msg[17];
638 msg->u.nak.nak_data = raw->msg[18];
642 switch (msg->req_type) {
643 case DP_LINK_ADDRESS:
644 return drm_dp_sideband_parse_link_address(raw, msg);
645 case DP_QUERY_PAYLOAD:
646 return drm_dp_sideband_parse_query_payload_ack(raw, msg);
647 case DP_REMOTE_DPCD_READ:
648 return drm_dp_sideband_parse_remote_dpcd_read(raw, msg);
649 case DP_REMOTE_DPCD_WRITE:
650 return drm_dp_sideband_parse_remote_dpcd_write(raw, msg);
651 case DP_REMOTE_I2C_READ:
652 return drm_dp_sideband_parse_remote_i2c_read_ack(raw, msg);
653 case DP_ENUM_PATH_RESOURCES:
654 return drm_dp_sideband_parse_enum_path_resources_ack(raw, msg);
655 case DP_ALLOCATE_PAYLOAD:
656 return drm_dp_sideband_parse_allocate_payload_ack(raw, msg);
657 case DP_POWER_DOWN_PHY:
658 case DP_POWER_UP_PHY:
659 return drm_dp_sideband_parse_power_updown_phy_ack(raw, msg);
661 DRM_ERROR("Got unknown reply 0x%02x (%s)\n", msg->req_type,
662 drm_dp_mst_req_type_str(msg->req_type));
667 static bool drm_dp_sideband_parse_connection_status_notify(struct drm_dp_sideband_msg_rx *raw,
668 struct drm_dp_sideband_msg_req_body *msg)
672 msg->u.conn_stat.port_number = (raw->msg[idx] & 0xf0) >> 4;
674 if (idx > raw->curlen)
677 memcpy(msg->u.conn_stat.guid, &raw->msg[idx], 16);
679 if (idx > raw->curlen)
682 msg->u.conn_stat.legacy_device_plug_status = (raw->msg[idx] >> 6) & 0x1;
683 msg->u.conn_stat.displayport_device_plug_status = (raw->msg[idx] >> 5) & 0x1;
684 msg->u.conn_stat.message_capability_status = (raw->msg[idx] >> 4) & 0x1;
685 msg->u.conn_stat.input_port = (raw->msg[idx] >> 3) & 0x1;
686 msg->u.conn_stat.peer_device_type = (raw->msg[idx] & 0x7);
690 DRM_DEBUG_KMS("connection status reply parse length fail %d %d\n", idx, raw->curlen);
694 static bool drm_dp_sideband_parse_resource_status_notify(struct drm_dp_sideband_msg_rx *raw,
695 struct drm_dp_sideband_msg_req_body *msg)
699 msg->u.resource_stat.port_number = (raw->msg[idx] & 0xf0) >> 4;
701 if (idx > raw->curlen)
704 memcpy(msg->u.resource_stat.guid, &raw->msg[idx], 16);
706 if (idx > raw->curlen)
709 msg->u.resource_stat.available_pbn = (raw->msg[idx] << 8) | (raw->msg[idx + 1]);
713 DRM_DEBUG_KMS("resource status reply parse length fail %d %d\n", idx, raw->curlen);
717 static bool drm_dp_sideband_parse_req(struct drm_dp_sideband_msg_rx *raw,
718 struct drm_dp_sideband_msg_req_body *msg)
720 memset(msg, 0, sizeof(*msg));
721 msg->req_type = (raw->msg[0] & 0x7f);
723 switch (msg->req_type) {
724 case DP_CONNECTION_STATUS_NOTIFY:
725 return drm_dp_sideband_parse_connection_status_notify(raw, msg);
726 case DP_RESOURCE_STATUS_NOTIFY:
727 return drm_dp_sideband_parse_resource_status_notify(raw, msg);
729 DRM_ERROR("Got unknown request 0x%02x (%s)\n", msg->req_type,
730 drm_dp_mst_req_type_str(msg->req_type));
735 static int build_dpcd_write(struct drm_dp_sideband_msg_tx *msg, u8 port_num, u32 offset, u8 num_bytes, u8 *bytes)
737 struct drm_dp_sideband_msg_req_body req;
739 req.req_type = DP_REMOTE_DPCD_WRITE;
740 req.u.dpcd_write.port_number = port_num;
741 req.u.dpcd_write.dpcd_address = offset;
742 req.u.dpcd_write.num_bytes = num_bytes;
743 req.u.dpcd_write.bytes = bytes;
744 drm_dp_encode_sideband_req(&req, msg);
749 static int build_link_address(struct drm_dp_sideband_msg_tx *msg)
751 struct drm_dp_sideband_msg_req_body req;
753 req.req_type = DP_LINK_ADDRESS;
754 drm_dp_encode_sideband_req(&req, msg);
758 static int build_enum_path_resources(struct drm_dp_sideband_msg_tx *msg, int port_num)
760 struct drm_dp_sideband_msg_req_body req;
762 req.req_type = DP_ENUM_PATH_RESOURCES;
763 req.u.port_num.port_number = port_num;
764 drm_dp_encode_sideband_req(&req, msg);
765 msg->path_msg = true;
769 static int build_allocate_payload(struct drm_dp_sideband_msg_tx *msg, int port_num,
770 u8 vcpi, uint16_t pbn,
771 u8 number_sdp_streams,
774 struct drm_dp_sideband_msg_req_body req;
775 memset(&req, 0, sizeof(req));
776 req.req_type = DP_ALLOCATE_PAYLOAD;
777 req.u.allocate_payload.port_number = port_num;
778 req.u.allocate_payload.vcpi = vcpi;
779 req.u.allocate_payload.pbn = pbn;
780 req.u.allocate_payload.number_sdp_streams = number_sdp_streams;
781 memcpy(req.u.allocate_payload.sdp_stream_sink, sdp_stream_sink,
783 drm_dp_encode_sideband_req(&req, msg);
784 msg->path_msg = true;
788 static int build_power_updown_phy(struct drm_dp_sideband_msg_tx *msg,
789 int port_num, bool power_up)
791 struct drm_dp_sideband_msg_req_body req;
794 req.req_type = DP_POWER_UP_PHY;
796 req.req_type = DP_POWER_DOWN_PHY;
798 req.u.port_num.port_number = port_num;
799 drm_dp_encode_sideband_req(&req, msg);
800 msg->path_msg = true;
804 static int drm_dp_mst_assign_payload_id(struct drm_dp_mst_topology_mgr *mgr,
805 struct drm_dp_vcpi *vcpi)
809 mutex_lock(&mgr->payload_lock);
810 ret = find_first_zero_bit(&mgr->payload_mask, mgr->max_payloads + 1);
811 if (ret > mgr->max_payloads) {
813 DRM_DEBUG_KMS("out of payload ids %d\n", ret);
817 vcpi_ret = find_first_zero_bit(&mgr->vcpi_mask, mgr->max_payloads + 1);
818 if (vcpi_ret > mgr->max_payloads) {
820 DRM_DEBUG_KMS("out of vcpi ids %d\n", ret);
824 set_bit(ret, &mgr->payload_mask);
825 set_bit(vcpi_ret, &mgr->vcpi_mask);
826 vcpi->vcpi = vcpi_ret + 1;
827 mgr->proposed_vcpis[ret - 1] = vcpi;
829 mutex_unlock(&mgr->payload_lock);
833 static void drm_dp_mst_put_payload_id(struct drm_dp_mst_topology_mgr *mgr,
840 mutex_lock(&mgr->payload_lock);
841 DRM_DEBUG_KMS("putting payload %d\n", vcpi);
842 clear_bit(vcpi - 1, &mgr->vcpi_mask);
844 for (i = 0; i < mgr->max_payloads; i++) {
845 if (mgr->proposed_vcpis[i])
846 if (mgr->proposed_vcpis[i]->vcpi == vcpi) {
847 mgr->proposed_vcpis[i] = NULL;
848 clear_bit(i + 1, &mgr->payload_mask);
851 mutex_unlock(&mgr->payload_lock);
854 static bool check_txmsg_state(struct drm_dp_mst_topology_mgr *mgr,
855 struct drm_dp_sideband_msg_tx *txmsg)
860 * All updates to txmsg->state are protected by mgr->qlock, and the two
861 * cases we check here are terminal states. For those the barriers
862 * provided by the wake_up/wait_event pair are enough.
864 state = READ_ONCE(txmsg->state);
865 return (state == DRM_DP_SIDEBAND_TX_RX ||
866 state == DRM_DP_SIDEBAND_TX_TIMEOUT);
869 static int drm_dp_mst_wait_tx_reply(struct drm_dp_mst_branch *mstb,
870 struct drm_dp_sideband_msg_tx *txmsg)
872 struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
875 ret = wait_event_timeout(mgr->tx_waitq,
876 check_txmsg_state(mgr, txmsg),
878 mutex_lock(&mstb->mgr->qlock);
880 if (txmsg->state == DRM_DP_SIDEBAND_TX_TIMEOUT) {
885 DRM_DEBUG_KMS("timedout msg send %p %d %d\n", txmsg, txmsg->state, txmsg->seqno);
887 /* dump some state */
891 if (txmsg->state == DRM_DP_SIDEBAND_TX_QUEUED ||
892 txmsg->state == DRM_DP_SIDEBAND_TX_START_SEND) {
893 list_del(&txmsg->next);
896 if (txmsg->state == DRM_DP_SIDEBAND_TX_START_SEND ||
897 txmsg->state == DRM_DP_SIDEBAND_TX_SENT) {
898 mstb->tx_slots[txmsg->seqno] = NULL;
902 mutex_unlock(&mgr->qlock);
907 static struct drm_dp_mst_branch *drm_dp_add_mst_branch_device(u8 lct, u8 *rad)
909 struct drm_dp_mst_branch *mstb;
911 mstb = kzalloc(sizeof(*mstb), GFP_KERNEL);
917 memcpy(mstb->rad, rad, lct / 2);
918 INIT_LIST_HEAD(&mstb->ports);
919 kref_init(&mstb->topology_kref);
920 kref_init(&mstb->malloc_kref);
924 static void drm_dp_free_mst_branch_device(struct kref *kref)
926 struct drm_dp_mst_branch *mstb =
927 container_of(kref, struct drm_dp_mst_branch, malloc_kref);
929 if (mstb->port_parent)
930 drm_dp_mst_put_port_malloc(mstb->port_parent);
936 * DOC: Branch device and port refcounting
938 * Topology refcount overview
939 * ~~~~~~~~~~~~~~~~~~~~~~~~~~
941 * The refcounting schemes for &struct drm_dp_mst_branch and &struct
942 * drm_dp_mst_port are somewhat unusual. Both ports and branch devices have
943 * two different kinds of refcounts: topology refcounts, and malloc refcounts.
945 * Topology refcounts are not exposed to drivers, and are handled internally
946 * by the DP MST helpers. The helpers use them in order to prevent the
947 * in-memory topology state from being changed in the middle of critical
948 * operations like changing the internal state of payload allocations. This
949 * means each branch and port will be considered to be connected to the rest
950 * of the topology until its topology refcount reaches zero. Additionally,
951 * for ports this means that their associated &struct drm_connector will stay
952 * registered with userspace until the port's refcount reaches 0.
954 * Malloc refcount overview
955 * ~~~~~~~~~~~~~~~~~~~~~~~~
957 * Malloc references are used to keep a &struct drm_dp_mst_port or &struct
958 * drm_dp_mst_branch allocated even after all of its topology references have
959 * been dropped, so that the driver or MST helpers can safely access each
960 * branch's last known state before it was disconnected from the topology.
961 * When the malloc refcount of a port or branch reaches 0, the memory
962 * allocation containing the &struct drm_dp_mst_branch or &struct
963 * drm_dp_mst_port respectively will be freed.
965 * For &struct drm_dp_mst_branch, malloc refcounts are not currently exposed
966 * to drivers. As of writing this documentation, there are no drivers that
967 * have a usecase for accessing &struct drm_dp_mst_branch outside of the MST
968 * helpers. Exposing this API to drivers in a race-free manner would take more
969 * tweaking of the refcounting scheme, however patches are welcome provided
970 * there is a legitimate driver usecase for this.
972 * Refcount relationships in a topology
973 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
975 * Let's take a look at why the relationship between topology and malloc
976 * refcounts is designed the way it is.
978 * .. kernel-figure:: dp-mst/topology-figure-1.dot
980 * An example of topology and malloc refs in a DP MST topology with two
981 * active payloads. Topology refcount increments are indicated by solid
982 * lines, and malloc refcount increments are indicated by dashed lines.
983 * Each starts from the branch which incremented the refcount, and ends at
984 * the branch to which the refcount belongs to, i.e. the arrow points the
985 * same way as the C pointers used to reference a structure.
987 * As you can see in the above figure, every branch increments the topology
988 * refcount of its children, and increments the malloc refcount of its
989 * parent. Additionally, every payload increments the malloc refcount of its
990 * assigned port by 1.
992 * So, what would happen if MSTB #3 from the above figure was unplugged from
993 * the system, but the driver hadn't yet removed payload #2 from port #3? The
994 * topology would start to look like the figure below.
996 * .. kernel-figure:: dp-mst/topology-figure-2.dot
998 * Ports and branch devices which have been released from memory are
999 * colored grey, and references which have been removed are colored red.
1001 * Whenever a port or branch device's topology refcount reaches zero, it will
1002 * decrement the topology refcounts of all its children, the malloc refcount
1003 * of its parent, and finally its own malloc refcount. For MSTB #4 and port
1004 * #4, this means they both have been disconnected from the topology and freed
1005 * from memory. But, because payload #2 is still holding a reference to port
1006 * #3, port #3 is removed from the topology but its &struct drm_dp_mst_port
1007 * is still accessible from memory. This also means port #3 has not yet
1008 * decremented the malloc refcount of MSTB #3, so its &struct
1009 * drm_dp_mst_branch will also stay allocated in memory until port #3's
1010 * malloc refcount reaches 0.
1012 * This relationship is necessary because in order to release payload #2, we
1013 * need to be able to figure out the last relative of port #3 that's still
1014 * connected to the topology. In this case, we would travel up the topology as
1017 * .. kernel-figure:: dp-mst/topology-figure-3.dot
1019 * And finally, remove payload #2 by communicating with port #2 through
1020 * sideband transactions.
1024 * drm_dp_mst_get_mstb_malloc() - Increment the malloc refcount of a branch
1026 * @mstb: The &struct drm_dp_mst_branch to increment the malloc refcount of
1028 * Increments &drm_dp_mst_branch.malloc_kref. When
1029 * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1030 * will be released and @mstb may no longer be used.
1032 * See also: drm_dp_mst_put_mstb_malloc()
1035 drm_dp_mst_get_mstb_malloc(struct drm_dp_mst_branch *mstb)
1037 kref_get(&mstb->malloc_kref);
1038 DRM_DEBUG("mstb %p (%d)\n", mstb, kref_read(&mstb->malloc_kref));
1042 * drm_dp_mst_put_mstb_malloc() - Decrement the malloc refcount of a branch
1044 * @mstb: The &struct drm_dp_mst_branch to decrement the malloc refcount of
1046 * Decrements &drm_dp_mst_branch.malloc_kref. When
1047 * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1048 * will be released and @mstb may no longer be used.
1050 * See also: drm_dp_mst_get_mstb_malloc()
1053 drm_dp_mst_put_mstb_malloc(struct drm_dp_mst_branch *mstb)
1055 DRM_DEBUG("mstb %p (%d)\n", mstb, kref_read(&mstb->malloc_kref) - 1);
1056 kref_put(&mstb->malloc_kref, drm_dp_free_mst_branch_device);
1059 static void drm_dp_free_mst_port(struct kref *kref)
1061 struct drm_dp_mst_port *port =
1062 container_of(kref, struct drm_dp_mst_port, malloc_kref);
1064 drm_dp_mst_put_mstb_malloc(port->parent);
1069 * drm_dp_mst_get_port_malloc() - Increment the malloc refcount of an MST port
1070 * @port: The &struct drm_dp_mst_port to increment the malloc refcount of
1072 * Increments &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1073 * reaches 0, the memory allocation for @port will be released and @port may
1074 * no longer be used.
1076 * Because @port could potentially be freed at any time by the DP MST helpers
1077 * if &drm_dp_mst_port.malloc_kref reaches 0, including during a call to this
1078 * function, drivers that which to make use of &struct drm_dp_mst_port should
1079 * ensure that they grab at least one main malloc reference to their MST ports
1080 * in &drm_dp_mst_topology_cbs.add_connector. This callback is called before
1081 * there is any chance for &drm_dp_mst_port.malloc_kref to reach 0.
1083 * See also: drm_dp_mst_put_port_malloc()
1086 drm_dp_mst_get_port_malloc(struct drm_dp_mst_port *port)
1088 kref_get(&port->malloc_kref);
1089 DRM_DEBUG("port %p (%d)\n", port, kref_read(&port->malloc_kref));
1091 EXPORT_SYMBOL(drm_dp_mst_get_port_malloc);
1094 * drm_dp_mst_put_port_malloc() - Decrement the malloc refcount of an MST port
1095 * @port: The &struct drm_dp_mst_port to decrement the malloc refcount of
1097 * Decrements &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1098 * reaches 0, the memory allocation for @port will be released and @port may
1099 * no longer be used.
1101 * See also: drm_dp_mst_get_port_malloc()
1104 drm_dp_mst_put_port_malloc(struct drm_dp_mst_port *port)
1106 DRM_DEBUG("port %p (%d)\n", port, kref_read(&port->malloc_kref) - 1);
1107 kref_put(&port->malloc_kref, drm_dp_free_mst_port);
1109 EXPORT_SYMBOL(drm_dp_mst_put_port_malloc);
1111 static void drm_dp_destroy_mst_branch_device(struct kref *kref)
1113 struct drm_dp_mst_branch *mstb =
1114 container_of(kref, struct drm_dp_mst_branch, topology_kref);
1115 struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
1116 struct drm_dp_mst_port *port, *tmp;
1117 bool wake_tx = false;
1119 mutex_lock(&mgr->lock);
1120 list_for_each_entry_safe(port, tmp, &mstb->ports, next) {
1121 list_del(&port->next);
1122 drm_dp_mst_topology_put_port(port);
1124 mutex_unlock(&mgr->lock);
1126 /* drop any tx slots msg */
1127 mutex_lock(&mstb->mgr->qlock);
1128 if (mstb->tx_slots[0]) {
1129 mstb->tx_slots[0]->state = DRM_DP_SIDEBAND_TX_TIMEOUT;
1130 mstb->tx_slots[0] = NULL;
1133 if (mstb->tx_slots[1]) {
1134 mstb->tx_slots[1]->state = DRM_DP_SIDEBAND_TX_TIMEOUT;
1135 mstb->tx_slots[1] = NULL;
1138 mutex_unlock(&mstb->mgr->qlock);
1141 wake_up_all(&mstb->mgr->tx_waitq);
1143 drm_dp_mst_put_mstb_malloc(mstb);
1147 * drm_dp_mst_topology_try_get_mstb() - Increment the topology refcount of a
1148 * branch device unless it's zero
1149 * @mstb: &struct drm_dp_mst_branch to increment the topology refcount of
1151 * Attempts to grab a topology reference to @mstb, if it hasn't yet been
1152 * removed from the topology (e.g. &drm_dp_mst_branch.topology_kref has
1153 * reached 0). Holding a topology reference implies that a malloc reference
1154 * will be held to @mstb as long as the user holds the topology reference.
1156 * Care should be taken to ensure that the user has at least one malloc
1157 * reference to @mstb. If you already have a topology reference to @mstb, you
1158 * should use drm_dp_mst_topology_get_mstb() instead.
1161 * drm_dp_mst_topology_get_mstb()
1162 * drm_dp_mst_topology_put_mstb()
1165 * * 1: A topology reference was grabbed successfully
1166 * * 0: @port is no longer in the topology, no reference was grabbed
1168 static int __must_check
1169 drm_dp_mst_topology_try_get_mstb(struct drm_dp_mst_branch *mstb)
1171 int ret = kref_get_unless_zero(&mstb->topology_kref);
1174 DRM_DEBUG("mstb %p (%d)\n", mstb,
1175 kref_read(&mstb->topology_kref));
1181 * drm_dp_mst_topology_get_mstb() - Increment the topology refcount of a
1183 * @mstb: The &struct drm_dp_mst_branch to increment the topology refcount of
1185 * Increments &drm_dp_mst_branch.topology_refcount without checking whether or
1186 * not it's already reached 0. This is only valid to use in scenarios where
1187 * you are already guaranteed to have at least one active topology reference
1188 * to @mstb. Otherwise, drm_dp_mst_topology_try_get_mstb() must be used.
1191 * drm_dp_mst_topology_try_get_mstb()
1192 * drm_dp_mst_topology_put_mstb()
1194 static void drm_dp_mst_topology_get_mstb(struct drm_dp_mst_branch *mstb)
1196 WARN_ON(kref_read(&mstb->topology_kref) == 0);
1197 kref_get(&mstb->topology_kref);
1198 DRM_DEBUG("mstb %p (%d)\n", mstb, kref_read(&mstb->topology_kref));
1202 * drm_dp_mst_topology_put_mstb() - release a topology reference to a branch
1204 * @mstb: The &struct drm_dp_mst_branch to release the topology reference from
1206 * Releases a topology reference from @mstb by decrementing
1207 * &drm_dp_mst_branch.topology_kref.
1210 * drm_dp_mst_topology_try_get_mstb()
1211 * drm_dp_mst_topology_get_mstb()
1214 drm_dp_mst_topology_put_mstb(struct drm_dp_mst_branch *mstb)
1216 DRM_DEBUG("mstb %p (%d)\n",
1217 mstb, kref_read(&mstb->topology_kref) - 1);
1218 kref_put(&mstb->topology_kref, drm_dp_destroy_mst_branch_device);
1221 static void drm_dp_port_teardown_pdt(struct drm_dp_mst_port *port, int old_pdt)
1223 struct drm_dp_mst_branch *mstb;
1226 case DP_PEER_DEVICE_DP_LEGACY_CONV:
1227 case DP_PEER_DEVICE_SST_SINK:
1228 /* remove i2c over sideband */
1229 drm_dp_mst_unregister_i2c_bus(&port->aux);
1231 case DP_PEER_DEVICE_MST_BRANCHING:
1234 drm_dp_mst_topology_put_mstb(mstb);
1239 static void drm_dp_destroy_port(struct kref *kref)
1241 struct drm_dp_mst_port *port =
1242 container_of(kref, struct drm_dp_mst_port, topology_kref);
1243 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
1246 kfree(port->cached_edid);
1249 * The only time we don't have a connector
1250 * on an output port is if the connector init
1253 if (port->connector) {
1254 /* we can't destroy the connector here, as
1255 * we might be holding the mode_config.mutex
1256 * from an EDID retrieval */
1258 mutex_lock(&mgr->destroy_connector_lock);
1259 list_add(&port->next, &mgr->destroy_connector_list);
1260 mutex_unlock(&mgr->destroy_connector_lock);
1261 schedule_work(&mgr->destroy_connector_work);
1264 /* no need to clean up vcpi
1265 * as if we have no connector we never setup a vcpi */
1266 drm_dp_port_teardown_pdt(port, port->pdt);
1267 port->pdt = DP_PEER_DEVICE_NONE;
1269 drm_dp_mst_put_port_malloc(port);
1273 * drm_dp_mst_topology_try_get_port() - Increment the topology refcount of a
1274 * port unless it's zero
1275 * @port: &struct drm_dp_mst_port to increment the topology refcount of
1277 * Attempts to grab a topology reference to @port, if it hasn't yet been
1278 * removed from the topology (e.g. &drm_dp_mst_port.topology_kref has reached
1279 * 0). Holding a topology reference implies that a malloc reference will be
1280 * held to @port as long as the user holds the topology reference.
1282 * Care should be taken to ensure that the user has at least one malloc
1283 * reference to @port. If you already have a topology reference to @port, you
1284 * should use drm_dp_mst_topology_get_port() instead.
1287 * drm_dp_mst_topology_get_port()
1288 * drm_dp_mst_topology_put_port()
1291 * * 1: A topology reference was grabbed successfully
1292 * * 0: @port is no longer in the topology, no reference was grabbed
1294 static int __must_check
1295 drm_dp_mst_topology_try_get_port(struct drm_dp_mst_port *port)
1297 int ret = kref_get_unless_zero(&port->topology_kref);
1300 DRM_DEBUG("port %p (%d)\n", port,
1301 kref_read(&port->topology_kref));
1307 * drm_dp_mst_topology_get_port() - Increment the topology refcount of a port
1308 * @port: The &struct drm_dp_mst_port to increment the topology refcount of
1310 * Increments &drm_dp_mst_port.topology_refcount without checking whether or
1311 * not it's already reached 0. This is only valid to use in scenarios where
1312 * you are already guaranteed to have at least one active topology reference
1313 * to @port. Otherwise, drm_dp_mst_topology_try_get_port() must be used.
1316 * drm_dp_mst_topology_try_get_port()
1317 * drm_dp_mst_topology_put_port()
1319 static void drm_dp_mst_topology_get_port(struct drm_dp_mst_port *port)
1321 WARN_ON(kref_read(&port->topology_kref) == 0);
1322 kref_get(&port->topology_kref);
1323 DRM_DEBUG("port %p (%d)\n", port, kref_read(&port->topology_kref));
1327 * drm_dp_mst_topology_put_port() - release a topology reference to a port
1328 * @port: The &struct drm_dp_mst_port to release the topology reference from
1330 * Releases a topology reference from @port by decrementing
1331 * &drm_dp_mst_port.topology_kref.
1334 * drm_dp_mst_topology_try_get_port()
1335 * drm_dp_mst_topology_get_port()
1337 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port *port)
1339 DRM_DEBUG("port %p (%d)\n",
1340 port, kref_read(&port->topology_kref) - 1);
1341 kref_put(&port->topology_kref, drm_dp_destroy_port);
1344 static struct drm_dp_mst_branch *
1345 drm_dp_mst_topology_get_mstb_validated_locked(struct drm_dp_mst_branch *mstb,
1346 struct drm_dp_mst_branch *to_find)
1348 struct drm_dp_mst_port *port;
1349 struct drm_dp_mst_branch *rmstb;
1351 if (to_find == mstb)
1354 list_for_each_entry(port, &mstb->ports, next) {
1356 rmstb = drm_dp_mst_topology_get_mstb_validated_locked(
1357 port->mstb, to_find);
1365 static struct drm_dp_mst_branch *
1366 drm_dp_mst_topology_get_mstb_validated(struct drm_dp_mst_topology_mgr *mgr,
1367 struct drm_dp_mst_branch *mstb)
1369 struct drm_dp_mst_branch *rmstb = NULL;
1371 mutex_lock(&mgr->lock);
1372 if (mgr->mst_primary) {
1373 rmstb = drm_dp_mst_topology_get_mstb_validated_locked(
1374 mgr->mst_primary, mstb);
1376 if (rmstb && !drm_dp_mst_topology_try_get_mstb(rmstb))
1379 mutex_unlock(&mgr->lock);
1383 static struct drm_dp_mst_port *
1384 drm_dp_mst_topology_get_port_validated_locked(struct drm_dp_mst_branch *mstb,
1385 struct drm_dp_mst_port *to_find)
1387 struct drm_dp_mst_port *port, *mport;
1389 list_for_each_entry(port, &mstb->ports, next) {
1390 if (port == to_find)
1394 mport = drm_dp_mst_topology_get_port_validated_locked(
1395 port->mstb, to_find);
1403 static struct drm_dp_mst_port *
1404 drm_dp_mst_topology_get_port_validated(struct drm_dp_mst_topology_mgr *mgr,
1405 struct drm_dp_mst_port *port)
1407 struct drm_dp_mst_port *rport = NULL;
1409 mutex_lock(&mgr->lock);
1410 if (mgr->mst_primary) {
1411 rport = drm_dp_mst_topology_get_port_validated_locked(
1412 mgr->mst_primary, port);
1414 if (rport && !drm_dp_mst_topology_try_get_port(rport))
1417 mutex_unlock(&mgr->lock);
1421 static struct drm_dp_mst_port *drm_dp_get_port(struct drm_dp_mst_branch *mstb, u8 port_num)
1423 struct drm_dp_mst_port *port;
1426 list_for_each_entry(port, &mstb->ports, next) {
1427 if (port->port_num == port_num) {
1428 ret = drm_dp_mst_topology_try_get_port(port);
1429 return ret ? port : NULL;
1437 * calculate a new RAD for this MST branch device
1438 * if parent has an LCT of 2 then it has 1 nibble of RAD,
1439 * if parent has an LCT of 3 then it has 2 nibbles of RAD,
1441 static u8 drm_dp_calculate_rad(struct drm_dp_mst_port *port,
1444 int parent_lct = port->parent->lct;
1446 int idx = (parent_lct - 1) / 2;
1447 if (parent_lct > 1) {
1448 memcpy(rad, port->parent->rad, idx + 1);
1449 shift = (parent_lct % 2) ? 4 : 0;
1453 rad[idx] |= port->port_num << shift;
1454 return parent_lct + 1;
1458 * return sends link address for new mstb
1460 static bool drm_dp_port_setup_pdt(struct drm_dp_mst_port *port)
1464 bool send_link = false;
1465 switch (port->pdt) {
1466 case DP_PEER_DEVICE_DP_LEGACY_CONV:
1467 case DP_PEER_DEVICE_SST_SINK:
1468 /* add i2c over sideband */
1469 ret = drm_dp_mst_register_i2c_bus(&port->aux);
1471 case DP_PEER_DEVICE_MST_BRANCHING:
1472 lct = drm_dp_calculate_rad(port, rad);
1474 port->mstb = drm_dp_add_mst_branch_device(lct, rad);
1476 port->mstb->mgr = port->mgr;
1477 port->mstb->port_parent = port;
1479 * Make sure this port's memory allocation stays
1480 * around until its child MSTB releases it
1482 drm_dp_mst_get_port_malloc(port);
1492 * drm_dp_mst_dpcd_read() - read a series of bytes from the DPCD via sideband
1493 * @aux: Fake sideband AUX CH
1494 * @offset: address of the (first) register to read
1495 * @buffer: buffer to store the register values
1496 * @size: number of bytes in @buffer
1498 * Performs the same functionality for remote devices via
1499 * sideband messaging as drm_dp_dpcd_read() does for local
1500 * devices via actual AUX CH.
1502 * Return: Number of bytes read, or negative error code on failure.
1504 ssize_t drm_dp_mst_dpcd_read(struct drm_dp_aux *aux,
1505 unsigned int offset, void *buffer, size_t size)
1507 struct drm_dp_mst_port *port = container_of(aux, struct drm_dp_mst_port,
1510 return drm_dp_send_dpcd_read(port->mgr, port,
1511 offset, size, buffer);
1515 * drm_dp_mst_dpcd_write() - write a series of bytes to the DPCD via sideband
1516 * @aux: Fake sideband AUX CH
1517 * @offset: address of the (first) register to write
1518 * @buffer: buffer containing the values to write
1519 * @size: number of bytes in @buffer
1521 * Performs the same functionality for remote devices via
1522 * sideband messaging as drm_dp_dpcd_write() does for local
1523 * devices via actual AUX CH.
1525 * Return: 0 on success, negative error code on failure.
1527 ssize_t drm_dp_mst_dpcd_write(struct drm_dp_aux *aux,
1528 unsigned int offset, void *buffer, size_t size)
1530 struct drm_dp_mst_port *port = container_of(aux, struct drm_dp_mst_port,
1533 return drm_dp_send_dpcd_write(port->mgr, port,
1534 offset, size, buffer);
1537 static void drm_dp_check_mstb_guid(struct drm_dp_mst_branch *mstb, u8 *guid)
1541 memcpy(mstb->guid, guid, 16);
1543 if (!drm_dp_validate_guid(mstb->mgr, mstb->guid)) {
1544 if (mstb->port_parent) {
1545 ret = drm_dp_send_dpcd_write(
1553 ret = drm_dp_dpcd_write(
1562 static void build_mst_prop_path(const struct drm_dp_mst_branch *mstb,
1565 size_t proppath_size)
1569 snprintf(proppath, proppath_size, "mst:%d", mstb->mgr->conn_base_id);
1570 for (i = 0; i < (mstb->lct - 1); i++) {
1571 int shift = (i % 2) ? 0 : 4;
1572 int port_num = (mstb->rad[i / 2] >> shift) & 0xf;
1573 snprintf(temp, sizeof(temp), "-%d", port_num);
1574 strlcat(proppath, temp, proppath_size);
1576 snprintf(temp, sizeof(temp), "-%d", pnum);
1577 strlcat(proppath, temp, proppath_size);
1581 * drm_dp_mst_connector_late_register() - Late MST connector registration
1582 * @drm_connector: The MST connector
1583 * @port: The MST port for this connector
1585 * Helper to register the remote aux device for this MST port. Drivers should
1586 * call this from their mst connector's late_register hook to enable MST aux
1589 * Return: 0 on success, negative error code on failure.
1591 int drm_dp_mst_connector_late_register(struct drm_connector *connector,
1592 struct drm_dp_mst_port *port)
1594 DRM_DEBUG_KMS("registering %s remote bus for %s\n",
1595 port->aux.name, connector->kdev->kobj.name);
1597 port->aux.dev = connector->kdev;
1598 return drm_dp_aux_register_devnode(&port->aux);
1600 EXPORT_SYMBOL(drm_dp_mst_connector_late_register);
1603 * drm_dp_mst_connector_early_unregister() - Early MST connector unregistration
1604 * @drm_connector: The MST connector
1605 * @port: The MST port for this connector
1607 * Helper to unregister the remote aux device for this MST port, registered by
1608 * drm_dp_mst_connector_late_register(). Drivers should call this from their mst
1609 * connector's early_unregister hook.
1611 void drm_dp_mst_connector_early_unregister(struct drm_connector *connector,
1612 struct drm_dp_mst_port *port)
1614 DRM_DEBUG_KMS("unregistering %s remote bus for %s\n",
1615 port->aux.name, connector->kdev->kobj.name);
1616 drm_dp_aux_unregister_devnode(&port->aux);
1618 EXPORT_SYMBOL(drm_dp_mst_connector_early_unregister);
1620 static void drm_dp_add_port(struct drm_dp_mst_branch *mstb,
1621 struct drm_device *dev,
1622 struct drm_dp_link_addr_reply_port *port_msg)
1624 struct drm_dp_mst_port *port;
1626 bool created = false;
1630 port = drm_dp_get_port(mstb, port_msg->port_number);
1632 port = kzalloc(sizeof(*port), GFP_KERNEL);
1635 kref_init(&port->topology_kref);
1636 kref_init(&port->malloc_kref);
1637 port->parent = mstb;
1638 port->port_num = port_msg->port_number;
1639 port->mgr = mstb->mgr;
1640 port->aux.name = "DPMST";
1641 port->aux.dev = dev->dev;
1642 port->aux.is_remote = true;
1645 * Make sure the memory allocation for our parent branch stays
1646 * around until our own memory allocation is released
1648 drm_dp_mst_get_mstb_malloc(mstb);
1652 old_pdt = port->pdt;
1653 old_ddps = port->ddps;
1656 port->pdt = port_msg->peer_device_type;
1657 port->input = port_msg->input_port;
1658 port->mcs = port_msg->mcs;
1659 port->ddps = port_msg->ddps;
1660 port->ldps = port_msg->legacy_device_plug_status;
1661 port->dpcd_rev = port_msg->dpcd_revision;
1662 port->num_sdp_streams = port_msg->num_sdp_streams;
1663 port->num_sdp_stream_sinks = port_msg->num_sdp_stream_sinks;
1665 /* manage mstb port lists with mgr lock - take a reference
1668 mutex_lock(&mstb->mgr->lock);
1669 drm_dp_mst_topology_get_port(port);
1670 list_add(&port->next, &mstb->ports);
1671 mutex_unlock(&mstb->mgr->lock);
1674 if (old_ddps != port->ddps) {
1677 drm_dp_send_enum_path_resources(mstb->mgr,
1681 port->available_pbn = 0;
1685 if (old_pdt != port->pdt && !port->input) {
1686 drm_dp_port_teardown_pdt(port, old_pdt);
1688 ret = drm_dp_port_setup_pdt(port);
1690 drm_dp_send_link_address(mstb->mgr, port->mstb);
1693 if (created && !port->input) {
1696 build_mst_prop_path(mstb, port->port_num, proppath,
1698 port->connector = (*mstb->mgr->cbs->add_connector)(mstb->mgr,
1701 if (!port->connector) {
1702 /* remove it from the port list */
1703 mutex_lock(&mstb->mgr->lock);
1704 list_del(&port->next);
1705 mutex_unlock(&mstb->mgr->lock);
1706 /* drop port list reference */
1707 drm_dp_mst_topology_put_port(port);
1710 if ((port->pdt == DP_PEER_DEVICE_DP_LEGACY_CONV ||
1711 port->pdt == DP_PEER_DEVICE_SST_SINK) &&
1712 port->port_num >= DP_MST_LOGICAL_PORT_0) {
1713 port->cached_edid = drm_get_edid(port->connector,
1715 drm_connector_set_tile_property(port->connector);
1717 (*mstb->mgr->cbs->register_connector)(port->connector);
1721 /* put reference to this port */
1722 drm_dp_mst_topology_put_port(port);
1725 static void drm_dp_update_port(struct drm_dp_mst_branch *mstb,
1726 struct drm_dp_connection_status_notify *conn_stat)
1728 struct drm_dp_mst_port *port;
1731 bool dowork = false;
1732 port = drm_dp_get_port(mstb, conn_stat->port_number);
1736 old_ddps = port->ddps;
1737 old_pdt = port->pdt;
1738 port->pdt = conn_stat->peer_device_type;
1739 port->mcs = conn_stat->message_capability_status;
1740 port->ldps = conn_stat->legacy_device_plug_status;
1741 port->ddps = conn_stat->displayport_device_plug_status;
1743 if (old_ddps != port->ddps) {
1747 port->available_pbn = 0;
1750 if (old_pdt != port->pdt && !port->input) {
1751 drm_dp_port_teardown_pdt(port, old_pdt);
1753 if (drm_dp_port_setup_pdt(port))
1757 drm_dp_mst_topology_put_port(port);
1759 queue_work(system_long_wq, &mstb->mgr->work);
1763 static struct drm_dp_mst_branch *drm_dp_get_mst_branch_device(struct drm_dp_mst_topology_mgr *mgr,
1766 struct drm_dp_mst_branch *mstb;
1767 struct drm_dp_mst_port *port;
1769 /* find the port by iterating down */
1771 mutex_lock(&mgr->lock);
1772 mstb = mgr->mst_primary;
1777 for (i = 0; i < lct - 1; i++) {
1778 int shift = (i % 2) ? 0 : 4;
1779 int port_num = (rad[i / 2] >> shift) & 0xf;
1781 list_for_each_entry(port, &mstb->ports, next) {
1782 if (port->port_num == port_num) {
1785 DRM_ERROR("failed to lookup MSTB with lct %d, rad %02x\n", lct, rad[0]);
1793 ret = drm_dp_mst_topology_try_get_mstb(mstb);
1797 mutex_unlock(&mgr->lock);
1801 static struct drm_dp_mst_branch *get_mst_branch_device_by_guid_helper(
1802 struct drm_dp_mst_branch *mstb,
1805 struct drm_dp_mst_branch *found_mstb;
1806 struct drm_dp_mst_port *port;
1808 if (memcmp(mstb->guid, guid, 16) == 0)
1812 list_for_each_entry(port, &mstb->ports, next) {
1816 found_mstb = get_mst_branch_device_by_guid_helper(port->mstb, guid);
1825 static struct drm_dp_mst_branch *
1826 drm_dp_get_mst_branch_device_by_guid(struct drm_dp_mst_topology_mgr *mgr,
1829 struct drm_dp_mst_branch *mstb;
1832 /* find the port by iterating down */
1833 mutex_lock(&mgr->lock);
1835 mstb = get_mst_branch_device_by_guid_helper(mgr->mst_primary, guid);
1837 ret = drm_dp_mst_topology_try_get_mstb(mstb);
1842 mutex_unlock(&mgr->lock);
1846 static void drm_dp_check_and_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
1847 struct drm_dp_mst_branch *mstb)
1849 struct drm_dp_mst_port *port;
1850 struct drm_dp_mst_branch *mstb_child;
1851 if (!mstb->link_address_sent)
1852 drm_dp_send_link_address(mgr, mstb);
1854 list_for_each_entry(port, &mstb->ports, next) {
1861 if (!port->available_pbn)
1862 drm_dp_send_enum_path_resources(mgr, mstb, port);
1865 mstb_child = drm_dp_mst_topology_get_mstb_validated(
1868 drm_dp_check_and_send_link_address(mgr, mstb_child);
1869 drm_dp_mst_topology_put_mstb(mstb_child);
1875 static void drm_dp_mst_link_probe_work(struct work_struct *work)
1877 struct drm_dp_mst_topology_mgr *mgr = container_of(work, struct drm_dp_mst_topology_mgr, work);
1878 struct drm_dp_mst_branch *mstb;
1881 mutex_lock(&mgr->lock);
1882 mstb = mgr->mst_primary;
1884 ret = drm_dp_mst_topology_try_get_mstb(mstb);
1888 mutex_unlock(&mgr->lock);
1890 drm_dp_check_and_send_link_address(mgr, mstb);
1891 drm_dp_mst_topology_put_mstb(mstb);
1895 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
1900 if (memchr_inv(guid, 0, 16))
1903 salt = get_jiffies_64();
1905 memcpy(&guid[0], &salt, sizeof(u64));
1906 memcpy(&guid[8], &salt, sizeof(u64));
1911 static int build_dpcd_read(struct drm_dp_sideband_msg_tx *msg, u8 port_num, u32 offset, u8 num_bytes)
1913 struct drm_dp_sideband_msg_req_body req;
1915 req.req_type = DP_REMOTE_DPCD_READ;
1916 req.u.dpcd_read.port_number = port_num;
1917 req.u.dpcd_read.dpcd_address = offset;
1918 req.u.dpcd_read.num_bytes = num_bytes;
1919 drm_dp_encode_sideband_req(&req, msg);
1924 static int drm_dp_send_sideband_msg(struct drm_dp_mst_topology_mgr *mgr,
1925 bool up, u8 *msg, int len)
1928 int regbase = up ? DP_SIDEBAND_MSG_UP_REP_BASE : DP_SIDEBAND_MSG_DOWN_REQ_BASE;
1929 int tosend, total, offset;
1936 tosend = min3(mgr->max_dpcd_transaction_bytes, 16, total);
1938 ret = drm_dp_dpcd_write(mgr->aux, regbase + offset,
1941 if (ret != tosend) {
1942 if (ret == -EIO && retries < 5) {
1946 DRM_DEBUG_KMS("failed to dpcd write %d %d\n", tosend, ret);
1952 } while (total > 0);
1956 static int set_hdr_from_dst_qlock(struct drm_dp_sideband_msg_hdr *hdr,
1957 struct drm_dp_sideband_msg_tx *txmsg)
1959 struct drm_dp_mst_branch *mstb = txmsg->dst;
1962 /* both msg slots are full */
1963 if (txmsg->seqno == -1) {
1964 if (mstb->tx_slots[0] && mstb->tx_slots[1]) {
1965 DRM_DEBUG_KMS("%s: failed to find slot\n", __func__);
1968 if (mstb->tx_slots[0] == NULL && mstb->tx_slots[1] == NULL) {
1969 txmsg->seqno = mstb->last_seqno;
1970 mstb->last_seqno ^= 1;
1971 } else if (mstb->tx_slots[0] == NULL)
1975 mstb->tx_slots[txmsg->seqno] = txmsg;
1978 req_type = txmsg->msg[0] & 0x7f;
1979 if (req_type == DP_CONNECTION_STATUS_NOTIFY ||
1980 req_type == DP_RESOURCE_STATUS_NOTIFY)
1984 hdr->path_msg = txmsg->path_msg;
1985 hdr->lct = mstb->lct;
1986 hdr->lcr = mstb->lct - 1;
1988 memcpy(hdr->rad, mstb->rad, mstb->lct / 2);
1989 hdr->seqno = txmsg->seqno;
1993 * process a single block of the next message in the sideband queue
1995 static int process_single_tx_qlock(struct drm_dp_mst_topology_mgr *mgr,
1996 struct drm_dp_sideband_msg_tx *txmsg,
2000 struct drm_dp_sideband_msg_hdr hdr;
2001 int len, space, idx, tosend;
2004 memset(&hdr, 0, sizeof(struct drm_dp_sideband_msg_hdr));
2006 if (txmsg->state == DRM_DP_SIDEBAND_TX_QUEUED) {
2008 txmsg->state = DRM_DP_SIDEBAND_TX_START_SEND;
2011 /* make hdr from dst mst - for replies use seqno
2012 otherwise assign one */
2013 ret = set_hdr_from_dst_qlock(&hdr, txmsg);
2017 /* amount left to send in this message */
2018 len = txmsg->cur_len - txmsg->cur_offset;
2020 /* 48 - sideband msg size - 1 byte for data CRC, x header bytes */
2021 space = 48 - 1 - drm_dp_calc_sb_hdr_size(&hdr);
2023 tosend = min(len, space);
2024 if (len == txmsg->cur_len)
2030 hdr.msg_len = tosend + 1;
2031 drm_dp_encode_sideband_msg_hdr(&hdr, chunk, &idx);
2032 memcpy(&chunk[idx], &txmsg->msg[txmsg->cur_offset], tosend);
2033 /* add crc at end */
2034 drm_dp_crc_sideband_chunk_req(&chunk[idx], tosend);
2037 ret = drm_dp_send_sideband_msg(mgr, up, chunk, idx);
2039 DRM_DEBUG_KMS("sideband msg failed to send\n");
2043 txmsg->cur_offset += tosend;
2044 if (txmsg->cur_offset == txmsg->cur_len) {
2045 txmsg->state = DRM_DP_SIDEBAND_TX_SENT;
2051 static void process_single_down_tx_qlock(struct drm_dp_mst_topology_mgr *mgr)
2053 struct drm_dp_sideband_msg_tx *txmsg;
2056 WARN_ON(!mutex_is_locked(&mgr->qlock));
2058 /* construct a chunk from the first msg in the tx_msg queue */
2059 if (list_empty(&mgr->tx_msg_downq))
2062 txmsg = list_first_entry(&mgr->tx_msg_downq, struct drm_dp_sideband_msg_tx, next);
2063 ret = process_single_tx_qlock(mgr, txmsg, false);
2065 /* txmsg is sent it should be in the slots now */
2066 list_del(&txmsg->next);
2068 DRM_DEBUG_KMS("failed to send msg in q %d\n", ret);
2069 list_del(&txmsg->next);
2070 if (txmsg->seqno != -1)
2071 txmsg->dst->tx_slots[txmsg->seqno] = NULL;
2072 txmsg->state = DRM_DP_SIDEBAND_TX_TIMEOUT;
2073 wake_up_all(&mgr->tx_waitq);
2077 /* called holding qlock */
2078 static void process_single_up_tx_qlock(struct drm_dp_mst_topology_mgr *mgr,
2079 struct drm_dp_sideband_msg_tx *txmsg)
2083 /* construct a chunk from the first msg in the tx_msg queue */
2084 ret = process_single_tx_qlock(mgr, txmsg, true);
2087 DRM_DEBUG_KMS("failed to send msg in q %d\n", ret);
2089 if (txmsg->seqno != -1) {
2090 WARN_ON((unsigned int)txmsg->seqno >
2091 ARRAY_SIZE(txmsg->dst->tx_slots));
2092 txmsg->dst->tx_slots[txmsg->seqno] = NULL;
2096 static void drm_dp_queue_down_tx(struct drm_dp_mst_topology_mgr *mgr,
2097 struct drm_dp_sideband_msg_tx *txmsg)
2099 mutex_lock(&mgr->qlock);
2100 list_add_tail(&txmsg->next, &mgr->tx_msg_downq);
2101 if (list_is_singular(&mgr->tx_msg_downq))
2102 process_single_down_tx_qlock(mgr);
2103 mutex_unlock(&mgr->qlock);
2106 static void drm_dp_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
2107 struct drm_dp_mst_branch *mstb)
2110 struct drm_dp_sideband_msg_tx *txmsg;
2113 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2118 len = build_link_address(txmsg);
2120 mstb->link_address_sent = true;
2121 drm_dp_queue_down_tx(mgr, txmsg);
2123 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
2127 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
2128 DRM_DEBUG_KMS("link address nak received\n");
2130 DRM_DEBUG_KMS("link address reply: %d\n", txmsg->reply.u.link_addr.nports);
2131 for (i = 0; i < txmsg->reply.u.link_addr.nports; i++) {
2132 DRM_DEBUG_KMS("port %d: input %d, pdt: %d, pn: %d, dpcd_rev: %02x, mcs: %d, ddps: %d, ldps %d, sdp %d/%d\n", i,
2133 txmsg->reply.u.link_addr.ports[i].input_port,
2134 txmsg->reply.u.link_addr.ports[i].peer_device_type,
2135 txmsg->reply.u.link_addr.ports[i].port_number,
2136 txmsg->reply.u.link_addr.ports[i].dpcd_revision,
2137 txmsg->reply.u.link_addr.ports[i].mcs,
2138 txmsg->reply.u.link_addr.ports[i].ddps,
2139 txmsg->reply.u.link_addr.ports[i].legacy_device_plug_status,
2140 txmsg->reply.u.link_addr.ports[i].num_sdp_streams,
2141 txmsg->reply.u.link_addr.ports[i].num_sdp_stream_sinks);
2144 drm_dp_check_mstb_guid(mstb, txmsg->reply.u.link_addr.guid);
2146 for (i = 0; i < txmsg->reply.u.link_addr.nports; i++) {
2147 drm_dp_add_port(mstb, mgr->dev, &txmsg->reply.u.link_addr.ports[i]);
2149 drm_kms_helper_hotplug_event(mgr->dev);
2152 mstb->link_address_sent = false;
2153 DRM_DEBUG_KMS("link address failed %d\n", ret);
2159 static int drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr *mgr,
2160 struct drm_dp_mst_branch *mstb,
2161 struct drm_dp_mst_port *port)
2164 struct drm_dp_sideband_msg_tx *txmsg;
2167 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2172 len = build_enum_path_resources(txmsg, port->port_num);
2174 drm_dp_queue_down_tx(mgr, txmsg);
2176 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
2178 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
2179 DRM_DEBUG_KMS("enum path resources nak received\n");
2181 if (port->port_num != txmsg->reply.u.path_resources.port_number)
2182 DRM_ERROR("got incorrect port in response\n");
2183 DRM_DEBUG_KMS("enum path resources %d: %d %d\n", txmsg->reply.u.path_resources.port_number, txmsg->reply.u.path_resources.full_payload_bw_number,
2184 txmsg->reply.u.path_resources.avail_payload_bw_number);
2185 port->available_pbn = txmsg->reply.u.path_resources.avail_payload_bw_number;
2193 static struct drm_dp_mst_port *drm_dp_get_last_connected_port_to_mstb(struct drm_dp_mst_branch *mstb)
2195 if (!mstb->port_parent)
2198 if (mstb->port_parent->mstb != mstb)
2199 return mstb->port_parent;
2201 return drm_dp_get_last_connected_port_to_mstb(mstb->port_parent->parent);
2205 * Searches upwards in the topology starting from mstb to try to find the
2206 * closest available parent of mstb that's still connected to the rest of the
2207 * topology. This can be used in order to perform operations like releasing
2208 * payloads, where the branch device which owned the payload may no longer be
2209 * around and thus would require that the payload on the last living relative
2212 static struct drm_dp_mst_branch *
2213 drm_dp_get_last_connected_port_and_mstb(struct drm_dp_mst_topology_mgr *mgr,
2214 struct drm_dp_mst_branch *mstb,
2217 struct drm_dp_mst_branch *rmstb = NULL;
2218 struct drm_dp_mst_port *found_port;
2220 mutex_lock(&mgr->lock);
2221 if (!mgr->mst_primary)
2225 found_port = drm_dp_get_last_connected_port_to_mstb(mstb);
2229 if (drm_dp_mst_topology_try_get_mstb(found_port->parent)) {
2230 rmstb = found_port->parent;
2231 *port_num = found_port->port_num;
2233 /* Search again, starting from this parent */
2234 mstb = found_port->parent;
2238 mutex_unlock(&mgr->lock);
2242 static int drm_dp_payload_send_msg(struct drm_dp_mst_topology_mgr *mgr,
2243 struct drm_dp_mst_port *port,
2247 struct drm_dp_sideband_msg_tx *txmsg;
2248 struct drm_dp_mst_branch *mstb;
2249 int len, ret, port_num;
2250 u8 sinks[DRM_DP_MAX_SDP_STREAMS];
2253 port_num = port->port_num;
2254 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
2256 mstb = drm_dp_get_last_connected_port_and_mstb(mgr,
2264 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2270 for (i = 0; i < port->num_sdp_streams; i++)
2274 len = build_allocate_payload(txmsg, port_num,
2276 pbn, port->num_sdp_streams, sinks);
2278 drm_dp_queue_down_tx(mgr, txmsg);
2281 * FIXME: there is a small chance that between getting the last
2282 * connected mstb and sending the payload message, the last connected
2283 * mstb could also be removed from the topology. In the future, this
2284 * needs to be fixed by restarting the
2285 * drm_dp_get_last_connected_port_and_mstb() search in the event of a
2286 * timeout if the topology is still connected to the system.
2288 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
2290 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
2297 drm_dp_mst_topology_put_mstb(mstb);
2301 int drm_dp_send_power_updown_phy(struct drm_dp_mst_topology_mgr *mgr,
2302 struct drm_dp_mst_port *port, bool power_up)
2304 struct drm_dp_sideband_msg_tx *txmsg;
2307 port = drm_dp_mst_topology_get_port_validated(mgr, port);
2311 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2313 drm_dp_mst_topology_put_port(port);
2317 txmsg->dst = port->parent;
2318 len = build_power_updown_phy(txmsg, port->port_num, power_up);
2319 drm_dp_queue_down_tx(mgr, txmsg);
2321 ret = drm_dp_mst_wait_tx_reply(port->parent, txmsg);
2323 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
2329 drm_dp_mst_topology_put_port(port);
2333 EXPORT_SYMBOL(drm_dp_send_power_updown_phy);
2335 static int drm_dp_create_payload_step1(struct drm_dp_mst_topology_mgr *mgr,
2337 struct drm_dp_payload *payload)
2341 ret = drm_dp_dpcd_write_payload(mgr, id, payload);
2343 payload->payload_state = 0;
2346 payload->payload_state = DP_PAYLOAD_LOCAL;
2350 static int drm_dp_create_payload_step2(struct drm_dp_mst_topology_mgr *mgr,
2351 struct drm_dp_mst_port *port,
2353 struct drm_dp_payload *payload)
2356 ret = drm_dp_payload_send_msg(mgr, port, id, port->vcpi.pbn);
2359 payload->payload_state = DP_PAYLOAD_REMOTE;
2363 static int drm_dp_destroy_payload_step1(struct drm_dp_mst_topology_mgr *mgr,
2364 struct drm_dp_mst_port *port,
2366 struct drm_dp_payload *payload)
2368 DRM_DEBUG_KMS("\n");
2369 /* it's okay for these to fail */
2371 drm_dp_payload_send_msg(mgr, port, id, 0);
2374 drm_dp_dpcd_write_payload(mgr, id, payload);
2375 payload->payload_state = DP_PAYLOAD_DELETE_LOCAL;
2379 static int drm_dp_destroy_payload_step2(struct drm_dp_mst_topology_mgr *mgr,
2381 struct drm_dp_payload *payload)
2383 payload->payload_state = 0;
2388 * drm_dp_update_payload_part1() - Execute payload update part 1
2389 * @mgr: manager to use.
2391 * This iterates over all proposed virtual channels, and tries to
2392 * allocate space in the link for them. For 0->slots transitions,
2393 * this step just writes the VCPI to the MST device. For slots->0
2394 * transitions, this writes the updated VCPIs and removes the
2395 * remote VC payloads.
2397 * after calling this the driver should generate ACT and payload
2400 int drm_dp_update_payload_part1(struct drm_dp_mst_topology_mgr *mgr)
2402 struct drm_dp_payload req_payload;
2403 struct drm_dp_mst_port *port;
2407 mutex_lock(&mgr->payload_lock);
2408 for (i = 0; i < mgr->max_payloads; i++) {
2409 struct drm_dp_vcpi *vcpi = mgr->proposed_vcpis[i];
2410 struct drm_dp_payload *payload = &mgr->payloads[i];
2411 bool put_port = false;
2413 /* solve the current payloads - compare to the hw ones
2414 - update the hw view */
2415 req_payload.start_slot = cur_slots;
2417 port = container_of(vcpi, struct drm_dp_mst_port,
2420 /* Validated ports don't matter if we're releasing
2423 if (vcpi->num_slots) {
2424 port = drm_dp_mst_topology_get_port_validated(
2427 mutex_unlock(&mgr->payload_lock);
2433 req_payload.num_slots = vcpi->num_slots;
2434 req_payload.vcpi = vcpi->vcpi;
2437 req_payload.num_slots = 0;
2440 payload->start_slot = req_payload.start_slot;
2441 /* work out what is required to happen with this payload */
2442 if (payload->num_slots != req_payload.num_slots) {
2444 /* need to push an update for this payload */
2445 if (req_payload.num_slots) {
2446 drm_dp_create_payload_step1(mgr, vcpi->vcpi,
2448 payload->num_slots = req_payload.num_slots;
2449 payload->vcpi = req_payload.vcpi;
2451 } else if (payload->num_slots) {
2452 payload->num_slots = 0;
2453 drm_dp_destroy_payload_step1(mgr, port,
2456 req_payload.payload_state =
2457 payload->payload_state;
2458 payload->start_slot = 0;
2460 payload->payload_state = req_payload.payload_state;
2462 cur_slots += req_payload.num_slots;
2465 drm_dp_mst_topology_put_port(port);
2468 for (i = 0; i < mgr->max_payloads; i++) {
2469 if (mgr->payloads[i].payload_state != DP_PAYLOAD_DELETE_LOCAL)
2472 DRM_DEBUG_KMS("removing payload %d\n", i);
2473 for (j = i; j < mgr->max_payloads - 1; j++) {
2474 mgr->payloads[j] = mgr->payloads[j + 1];
2475 mgr->proposed_vcpis[j] = mgr->proposed_vcpis[j + 1];
2477 if (mgr->proposed_vcpis[j] &&
2478 mgr->proposed_vcpis[j]->num_slots) {
2479 set_bit(j + 1, &mgr->payload_mask);
2481 clear_bit(j + 1, &mgr->payload_mask);
2485 memset(&mgr->payloads[mgr->max_payloads - 1], 0,
2486 sizeof(struct drm_dp_payload));
2487 mgr->proposed_vcpis[mgr->max_payloads - 1] = NULL;
2488 clear_bit(mgr->max_payloads, &mgr->payload_mask);
2490 mutex_unlock(&mgr->payload_lock);
2494 EXPORT_SYMBOL(drm_dp_update_payload_part1);
2497 * drm_dp_update_payload_part2() - Execute payload update part 2
2498 * @mgr: manager to use.
2500 * This iterates over all proposed virtual channels, and tries to
2501 * allocate space in the link for them. For 0->slots transitions,
2502 * this step writes the remote VC payload commands. For slots->0
2503 * this just resets some internal state.
2505 int drm_dp_update_payload_part2(struct drm_dp_mst_topology_mgr *mgr)
2507 struct drm_dp_mst_port *port;
2510 mutex_lock(&mgr->payload_lock);
2511 for (i = 0; i < mgr->max_payloads; i++) {
2513 if (!mgr->proposed_vcpis[i])
2516 port = container_of(mgr->proposed_vcpis[i], struct drm_dp_mst_port, vcpi);
2518 DRM_DEBUG_KMS("payload %d %d\n", i, mgr->payloads[i].payload_state);
2519 if (mgr->payloads[i].payload_state == DP_PAYLOAD_LOCAL) {
2520 ret = drm_dp_create_payload_step2(mgr, port, mgr->proposed_vcpis[i]->vcpi, &mgr->payloads[i]);
2521 } else if (mgr->payloads[i].payload_state == DP_PAYLOAD_DELETE_LOCAL) {
2522 ret = drm_dp_destroy_payload_step2(mgr, mgr->proposed_vcpis[i]->vcpi, &mgr->payloads[i]);
2525 mutex_unlock(&mgr->payload_lock);
2529 mutex_unlock(&mgr->payload_lock);
2532 EXPORT_SYMBOL(drm_dp_update_payload_part2);
2534 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr *mgr,
2535 struct drm_dp_mst_port *port,
2536 int offset, int size, u8 *bytes)
2540 struct drm_dp_sideband_msg_tx *txmsg;
2541 struct drm_dp_mst_branch *mstb;
2543 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
2547 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2553 len = build_dpcd_read(txmsg, port->port_num, offset, size);
2554 txmsg->dst = port->parent;
2556 drm_dp_queue_down_tx(mgr, txmsg);
2558 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
2562 /* DPCD read should never be NACKed */
2563 if (txmsg->reply.reply_type == 1) {
2564 DRM_ERROR("mstb %p port %d: DPCD read on addr 0x%x for %d bytes NAKed\n",
2565 mstb, port->port_num, offset, size);
2570 if (txmsg->reply.u.remote_dpcd_read_ack.num_bytes != size) {
2575 ret = min_t(size_t, txmsg->reply.u.remote_dpcd_read_ack.num_bytes,
2577 memcpy(bytes, txmsg->reply.u.remote_dpcd_read_ack.bytes, ret);
2582 drm_dp_mst_topology_put_mstb(mstb);
2587 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr *mgr,
2588 struct drm_dp_mst_port *port,
2589 int offset, int size, u8 *bytes)
2593 struct drm_dp_sideband_msg_tx *txmsg;
2594 struct drm_dp_mst_branch *mstb;
2596 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
2600 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2606 len = build_dpcd_write(txmsg, port->port_num, offset, size, bytes);
2609 drm_dp_queue_down_tx(mgr, txmsg);
2611 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
2613 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
2620 drm_dp_mst_topology_put_mstb(mstb);
2624 static int drm_dp_encode_up_ack_reply(struct drm_dp_sideband_msg_tx *msg, u8 req_type)
2626 struct drm_dp_sideband_msg_reply_body reply;
2628 reply.reply_type = DP_SIDEBAND_REPLY_ACK;
2629 reply.req_type = req_type;
2630 drm_dp_encode_sideband_reply(&reply, msg);
2634 static int drm_dp_send_up_ack_reply(struct drm_dp_mst_topology_mgr *mgr,
2635 struct drm_dp_mst_branch *mstb,
2636 int req_type, int seqno, bool broadcast)
2638 struct drm_dp_sideband_msg_tx *txmsg;
2640 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2645 txmsg->seqno = seqno;
2646 drm_dp_encode_up_ack_reply(txmsg, req_type);
2648 mutex_lock(&mgr->qlock);
2650 process_single_up_tx_qlock(mgr, txmsg);
2652 mutex_unlock(&mgr->qlock);
2658 static bool drm_dp_get_vc_payload_bw(int dp_link_bw,
2662 switch (dp_link_bw) {
2664 DRM_DEBUG_KMS("invalid link bandwidth in DPCD: %x (link count: %d)\n",
2665 dp_link_bw, dp_link_count);
2668 case DP_LINK_BW_1_62:
2669 *out = 3 * dp_link_count;
2671 case DP_LINK_BW_2_7:
2672 *out = 5 * dp_link_count;
2674 case DP_LINK_BW_5_4:
2675 *out = 10 * dp_link_count;
2677 case DP_LINK_BW_8_1:
2678 *out = 15 * dp_link_count;
2685 * drm_dp_mst_topology_mgr_set_mst() - Set the MST state for a topology manager
2686 * @mgr: manager to set state for
2687 * @mst_state: true to enable MST on this connector - false to disable.
2689 * This is called by the driver when it detects an MST capable device plugged
2690 * into a DP MST capable port, or when a DP MST capable device is unplugged.
2692 int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool mst_state)
2695 struct drm_dp_mst_branch *mstb = NULL;
2697 mutex_lock(&mgr->lock);
2698 if (mst_state == mgr->mst_state)
2701 mgr->mst_state = mst_state;
2702 /* set the device into MST mode */
2704 WARN_ON(mgr->mst_primary);
2707 ret = drm_dp_dpcd_read(mgr->aux, DP_DPCD_REV, mgr->dpcd, DP_RECEIVER_CAP_SIZE);
2708 if (ret != DP_RECEIVER_CAP_SIZE) {
2709 DRM_DEBUG_KMS("failed to read DPCD\n");
2713 if (!drm_dp_get_vc_payload_bw(mgr->dpcd[1],
2714 mgr->dpcd[2] & DP_MAX_LANE_COUNT_MASK,
2720 /* add initial branch device at LCT 1 */
2721 mstb = drm_dp_add_mst_branch_device(1, NULL);
2728 /* give this the main reference */
2729 mgr->mst_primary = mstb;
2730 drm_dp_mst_topology_get_mstb(mgr->mst_primary);
2732 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
2733 DP_MST_EN | DP_UP_REQ_EN | DP_UPSTREAM_IS_SRC);
2739 struct drm_dp_payload reset_pay;
2740 reset_pay.start_slot = 0;
2741 reset_pay.num_slots = 0x3f;
2742 drm_dp_dpcd_write_payload(mgr, 0, &reset_pay);
2745 queue_work(system_long_wq, &mgr->work);
2749 /* disable MST on the device */
2750 mstb = mgr->mst_primary;
2751 mgr->mst_primary = NULL;
2752 /* this can fail if the device is gone */
2753 drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL, 0);
2755 memset(mgr->payloads, 0, mgr->max_payloads * sizeof(struct drm_dp_payload));
2756 mgr->payload_mask = 0;
2757 set_bit(0, &mgr->payload_mask);
2762 mutex_unlock(&mgr->lock);
2764 drm_dp_mst_topology_put_mstb(mstb);
2768 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_set_mst);
2771 * drm_dp_mst_topology_mgr_suspend() - suspend the MST manager
2772 * @mgr: manager to suspend
2774 * This function tells the MST device that we can't handle UP messages
2775 * anymore. This should stop it from sending any since we are suspended.
2777 void drm_dp_mst_topology_mgr_suspend(struct drm_dp_mst_topology_mgr *mgr)
2779 mutex_lock(&mgr->lock);
2780 drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
2781 DP_MST_EN | DP_UPSTREAM_IS_SRC);
2782 mutex_unlock(&mgr->lock);
2783 flush_work(&mgr->work);
2784 flush_work(&mgr->destroy_connector_work);
2786 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_suspend);
2789 * drm_dp_mst_topology_mgr_resume() - resume the MST manager
2790 * @mgr: manager to resume
2792 * This will fetch DPCD and see if the device is still there,
2793 * if it is, it will rewrite the MSTM control bits, and return.
2795 * if the device fails this returns -1, and the driver should do
2796 * a full MST reprobe, in case we were undocked.
2798 int drm_dp_mst_topology_mgr_resume(struct drm_dp_mst_topology_mgr *mgr)
2802 mutex_lock(&mgr->lock);
2804 if (mgr->mst_primary) {
2808 sret = drm_dp_dpcd_read(mgr->aux, DP_DPCD_REV, mgr->dpcd, DP_RECEIVER_CAP_SIZE);
2809 if (sret != DP_RECEIVER_CAP_SIZE) {
2810 DRM_DEBUG_KMS("dpcd read failed - undocked during suspend?\n");
2815 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
2816 DP_MST_EN | DP_UP_REQ_EN | DP_UPSTREAM_IS_SRC);
2818 DRM_DEBUG_KMS("mst write failed - undocked during suspend?\n");
2823 /* Some hubs forget their guids after they resume */
2824 sret = drm_dp_dpcd_read(mgr->aux, DP_GUID, guid, 16);
2826 DRM_DEBUG_KMS("dpcd read failed - undocked during suspend?\n");
2830 drm_dp_check_mstb_guid(mgr->mst_primary, guid);
2837 mutex_unlock(&mgr->lock);
2840 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_resume);
2842 static bool drm_dp_get_one_sb_msg(struct drm_dp_mst_topology_mgr *mgr, bool up)
2846 int replylen, origlen, curreply;
2848 struct drm_dp_sideband_msg_rx *msg;
2849 int basereg = up ? DP_SIDEBAND_MSG_UP_REQ_BASE : DP_SIDEBAND_MSG_DOWN_REP_BASE;
2850 msg = up ? &mgr->up_req_recv : &mgr->down_rep_recv;
2852 len = min(mgr->max_dpcd_transaction_bytes, 16);
2853 ret = drm_dp_dpcd_read(mgr->aux, basereg,
2856 DRM_DEBUG_KMS("failed to read DPCD down rep %d %d\n", len, ret);
2859 ret = drm_dp_sideband_msg_build(msg, replyblock, len, true);
2861 DRM_DEBUG_KMS("sideband msg build failed %d\n", replyblock[0]);
2864 replylen = msg->curchunk_len + msg->curchunk_hdrlen;
2869 while (replylen > 0) {
2870 len = min3(replylen, mgr->max_dpcd_transaction_bytes, 16);
2871 ret = drm_dp_dpcd_read(mgr->aux, basereg + curreply,
2874 DRM_DEBUG_KMS("failed to read a chunk (len %d, ret %d)\n",
2879 ret = drm_dp_sideband_msg_build(msg, replyblock, len, false);
2881 DRM_DEBUG_KMS("failed to build sideband msg\n");
2891 static int drm_dp_mst_handle_down_rep(struct drm_dp_mst_topology_mgr *mgr)
2895 if (!drm_dp_get_one_sb_msg(mgr, false)) {
2896 memset(&mgr->down_rep_recv, 0,
2897 sizeof(struct drm_dp_sideband_msg_rx));
2901 if (mgr->down_rep_recv.have_eomt) {
2902 struct drm_dp_sideband_msg_tx *txmsg;
2903 struct drm_dp_mst_branch *mstb;
2905 mstb = drm_dp_get_mst_branch_device(mgr,
2906 mgr->down_rep_recv.initial_hdr.lct,
2907 mgr->down_rep_recv.initial_hdr.rad);
2910 DRM_DEBUG_KMS("Got MST reply from unknown device %d\n", mgr->down_rep_recv.initial_hdr.lct);
2911 memset(&mgr->down_rep_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
2915 /* find the message */
2916 slot = mgr->down_rep_recv.initial_hdr.seqno;
2917 mutex_lock(&mgr->qlock);
2918 txmsg = mstb->tx_slots[slot];
2919 /* remove from slots */
2920 mutex_unlock(&mgr->qlock);
2923 DRM_DEBUG_KMS("Got MST reply with no msg %p %d %d %02x %02x\n",
2925 mgr->down_rep_recv.initial_hdr.seqno,
2926 mgr->down_rep_recv.initial_hdr.lct,
2927 mgr->down_rep_recv.initial_hdr.rad[0],
2928 mgr->down_rep_recv.msg[0]);
2929 drm_dp_mst_topology_put_mstb(mstb);
2930 memset(&mgr->down_rep_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
2934 drm_dp_sideband_parse_reply(&mgr->down_rep_recv, &txmsg->reply);
2936 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
2937 DRM_DEBUG_KMS("Got NAK reply: req 0x%02x (%s), reason 0x%02x (%s), nak data 0x%02x\n",
2938 txmsg->reply.req_type,
2939 drm_dp_mst_req_type_str(txmsg->reply.req_type),
2940 txmsg->reply.u.nak.reason,
2941 drm_dp_mst_nak_reason_str(txmsg->reply.u.nak.reason),
2942 txmsg->reply.u.nak.nak_data);
2944 memset(&mgr->down_rep_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
2945 drm_dp_mst_topology_put_mstb(mstb);
2947 mutex_lock(&mgr->qlock);
2948 txmsg->state = DRM_DP_SIDEBAND_TX_RX;
2949 mstb->tx_slots[slot] = NULL;
2950 mutex_unlock(&mgr->qlock);
2952 wake_up_all(&mgr->tx_waitq);
2957 static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr *mgr)
2961 if (!drm_dp_get_one_sb_msg(mgr, true)) {
2962 memset(&mgr->up_req_recv, 0,
2963 sizeof(struct drm_dp_sideband_msg_rx));
2967 if (mgr->up_req_recv.have_eomt) {
2968 struct drm_dp_sideband_msg_req_body msg;
2969 struct drm_dp_mst_branch *mstb = NULL;
2972 if (!mgr->up_req_recv.initial_hdr.broadcast) {
2973 mstb = drm_dp_get_mst_branch_device(mgr,
2974 mgr->up_req_recv.initial_hdr.lct,
2975 mgr->up_req_recv.initial_hdr.rad);
2977 DRM_DEBUG_KMS("Got MST reply from unknown device %d\n", mgr->up_req_recv.initial_hdr.lct);
2978 memset(&mgr->up_req_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
2983 seqno = mgr->up_req_recv.initial_hdr.seqno;
2984 drm_dp_sideband_parse_req(&mgr->up_req_recv, &msg);
2986 if (msg.req_type == DP_CONNECTION_STATUS_NOTIFY) {
2987 drm_dp_send_up_ack_reply(mgr, mgr->mst_primary, msg.req_type, seqno, false);
2990 mstb = drm_dp_get_mst_branch_device_by_guid(mgr, msg.u.conn_stat.guid);
2993 DRM_DEBUG_KMS("Got MST reply from unknown device %d\n", mgr->up_req_recv.initial_hdr.lct);
2994 memset(&mgr->up_req_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
2998 drm_dp_update_port(mstb, &msg.u.conn_stat);
3000 DRM_DEBUG_KMS("Got CSN: pn: %d ldps:%d ddps: %d mcs: %d ip: %d pdt: %d\n", msg.u.conn_stat.port_number, msg.u.conn_stat.legacy_device_plug_status, msg.u.conn_stat.displayport_device_plug_status, msg.u.conn_stat.message_capability_status, msg.u.conn_stat.input_port, msg.u.conn_stat.peer_device_type);
3001 drm_kms_helper_hotplug_event(mgr->dev);
3003 } else if (msg.req_type == DP_RESOURCE_STATUS_NOTIFY) {
3004 drm_dp_send_up_ack_reply(mgr, mgr->mst_primary, msg.req_type, seqno, false);
3006 mstb = drm_dp_get_mst_branch_device_by_guid(mgr, msg.u.resource_stat.guid);
3009 DRM_DEBUG_KMS("Got MST reply from unknown device %d\n", mgr->up_req_recv.initial_hdr.lct);
3010 memset(&mgr->up_req_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
3014 DRM_DEBUG_KMS("Got RSN: pn: %d avail_pbn %d\n", msg.u.resource_stat.port_number, msg.u.resource_stat.available_pbn);
3018 drm_dp_mst_topology_put_mstb(mstb);
3020 memset(&mgr->up_req_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
3026 * drm_dp_mst_hpd_irq() - MST hotplug IRQ notify
3027 * @mgr: manager to notify irq for.
3028 * @esi: 4 bytes from SINK_COUNT_ESI
3029 * @handled: whether the hpd interrupt was consumed or not
3031 * This should be called from the driver when it detects a short IRQ,
3032 * along with the value of the DEVICE_SERVICE_IRQ_VECTOR_ESI0. The
3033 * topology manager will process the sideband messages received as a result
3036 int drm_dp_mst_hpd_irq(struct drm_dp_mst_topology_mgr *mgr, u8 *esi, bool *handled)
3043 if (sc != mgr->sink_count) {
3044 mgr->sink_count = sc;
3048 if (esi[1] & DP_DOWN_REP_MSG_RDY) {
3049 ret = drm_dp_mst_handle_down_rep(mgr);
3053 if (esi[1] & DP_UP_REQ_MSG_RDY) {
3054 ret |= drm_dp_mst_handle_up_req(mgr);
3058 drm_dp_mst_kick_tx(mgr);
3061 EXPORT_SYMBOL(drm_dp_mst_hpd_irq);
3064 * drm_dp_mst_detect_port() - get connection status for an MST port
3065 * @connector: DRM connector for this port
3066 * @mgr: manager for this port
3067 * @port: unverified pointer to a port
3069 * This returns the current connection state for a port. It validates the
3070 * port pointer still exists so the caller doesn't require a reference
3072 enum drm_connector_status drm_dp_mst_detect_port(struct drm_connector *connector,
3073 struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port)
3075 enum drm_connector_status status = connector_status_disconnected;
3077 /* we need to search for the port in the mgr in case it's gone */
3078 port = drm_dp_mst_topology_get_port_validated(mgr, port);
3080 return connector_status_disconnected;
3085 switch (port->pdt) {
3086 case DP_PEER_DEVICE_NONE:
3087 case DP_PEER_DEVICE_MST_BRANCHING:
3090 case DP_PEER_DEVICE_SST_SINK:
3091 status = connector_status_connected;
3092 /* for logical ports - cache the EDID */
3093 if (port->port_num >= 8 && !port->cached_edid) {
3094 port->cached_edid = drm_get_edid(connector, &port->aux.ddc);
3097 case DP_PEER_DEVICE_DP_LEGACY_CONV:
3099 status = connector_status_connected;
3103 drm_dp_mst_topology_put_port(port);
3106 EXPORT_SYMBOL(drm_dp_mst_detect_port);
3109 * drm_dp_mst_port_has_audio() - Check whether port has audio capability or not
3110 * @mgr: manager for this port
3111 * @port: unverified pointer to a port.
3113 * This returns whether the port supports audio or not.
3115 bool drm_dp_mst_port_has_audio(struct drm_dp_mst_topology_mgr *mgr,
3116 struct drm_dp_mst_port *port)
3120 port = drm_dp_mst_topology_get_port_validated(mgr, port);
3123 ret = port->has_audio;
3124 drm_dp_mst_topology_put_port(port);
3127 EXPORT_SYMBOL(drm_dp_mst_port_has_audio);
3130 * drm_dp_mst_get_edid() - get EDID for an MST port
3131 * @connector: toplevel connector to get EDID for
3132 * @mgr: manager for this port
3133 * @port: unverified pointer to a port.
3135 * This returns an EDID for the port connected to a connector,
3136 * It validates the pointer still exists so the caller doesn't require a
3139 struct edid *drm_dp_mst_get_edid(struct drm_connector *connector, struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port)
3141 struct edid *edid = NULL;
3143 /* we need to search for the port in the mgr in case it's gone */
3144 port = drm_dp_mst_topology_get_port_validated(mgr, port);
3148 if (port->cached_edid)
3149 edid = drm_edid_duplicate(port->cached_edid);
3151 edid = drm_get_edid(connector, &port->aux.ddc);
3153 port->has_audio = drm_detect_monitor_audio(edid);
3154 drm_dp_mst_topology_put_port(port);
3157 EXPORT_SYMBOL(drm_dp_mst_get_edid);
3160 * drm_dp_find_vcpi_slots() - Find VCPI slots for this PBN value
3161 * @mgr: manager to use
3162 * @pbn: payload bandwidth to convert into slots.
3164 * Calculate the number of VCPI slots that will be required for the given PBN
3165 * value. This function is deprecated, and should not be used in atomic
3169 * The total slots required for this port, or error.
3171 int drm_dp_find_vcpi_slots(struct drm_dp_mst_topology_mgr *mgr,
3176 num_slots = DIV_ROUND_UP(pbn, mgr->pbn_div);
3178 /* max. time slots - one slot for MTP header */
3183 EXPORT_SYMBOL(drm_dp_find_vcpi_slots);
3185 static int drm_dp_init_vcpi(struct drm_dp_mst_topology_mgr *mgr,
3186 struct drm_dp_vcpi *vcpi, int pbn, int slots)
3190 /* max. time slots - one slot for MTP header */
3195 vcpi->aligned_pbn = slots * mgr->pbn_div;
3196 vcpi->num_slots = slots;
3198 ret = drm_dp_mst_assign_payload_id(mgr, vcpi);
3205 * drm_dp_atomic_find_vcpi_slots() - Find and add VCPI slots to the state
3206 * @state: global atomic state
3207 * @mgr: MST topology manager for the port
3208 * @port: port to find vcpi slots for
3209 * @pbn: bandwidth required for the mode in PBN
3211 * Allocates VCPI slots to @port, replacing any previous VCPI allocations it
3212 * may have had. Any atomic drivers which support MST must call this function
3213 * in their &drm_encoder_helper_funcs.atomic_check() callback to change the
3214 * current VCPI allocation for the new state, but only when
3215 * &drm_crtc_state.mode_changed or &drm_crtc_state.connectors_changed is set
3216 * to ensure compatibility with userspace applications that still use the
3217 * legacy modesetting UAPI.
3219 * Allocations set by this function are not checked against the bandwidth
3220 * restraints of @mgr until the driver calls drm_dp_mst_atomic_check().
3222 * Additionally, it is OK to call this function multiple times on the same
3223 * @port as needed. It is not OK however, to call this function and
3224 * drm_dp_atomic_release_vcpi_slots() in the same atomic check phase.
3227 * drm_dp_atomic_release_vcpi_slots()
3228 * drm_dp_mst_atomic_check()
3231 * Total slots in the atomic state assigned for this port, or a negative error
3232 * code if the port no longer exists
3234 int drm_dp_atomic_find_vcpi_slots(struct drm_atomic_state *state,
3235 struct drm_dp_mst_topology_mgr *mgr,
3236 struct drm_dp_mst_port *port, int pbn)
3238 struct drm_dp_mst_topology_state *topology_state;
3239 struct drm_dp_vcpi_allocation *pos, *vcpi = NULL;
3240 int prev_slots, req_slots, ret;
3242 topology_state = drm_atomic_get_mst_topology_state(state, mgr);
3243 if (IS_ERR(topology_state))
3244 return PTR_ERR(topology_state);
3246 /* Find the current allocation for this port, if any */
3247 list_for_each_entry(pos, &topology_state->vcpis, next) {
3248 if (pos->port == port) {
3250 prev_slots = vcpi->vcpi;
3253 * This should never happen, unless the driver tries
3254 * releasing and allocating the same VCPI allocation,
3257 if (WARN_ON(!prev_slots)) {
3258 DRM_ERROR("cannot allocate and release VCPI on [MST PORT:%p] in the same state\n",
3269 req_slots = DIV_ROUND_UP(pbn, mgr->pbn_div);
3271 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] [MST PORT:%p] VCPI %d -> %d\n",
3272 port->connector->base.id, port->connector->name,
3273 port, prev_slots, req_slots);
3275 /* Add the new allocation to the state */
3277 vcpi = kzalloc(sizeof(*vcpi), GFP_KERNEL);
3281 drm_dp_mst_get_port_malloc(port);
3283 list_add(&vcpi->next, &topology_state->vcpis);
3285 vcpi->vcpi = req_slots;
3290 EXPORT_SYMBOL(drm_dp_atomic_find_vcpi_slots);
3293 * drm_dp_atomic_release_vcpi_slots() - Release allocated vcpi slots
3294 * @state: global atomic state
3295 * @mgr: MST topology manager for the port
3296 * @port: The port to release the VCPI slots from
3298 * Releases any VCPI slots that have been allocated to a port in the atomic
3299 * state. Any atomic drivers which support MST must call this function in
3300 * their &drm_connector_helper_funcs.atomic_check() callback when the
3301 * connector will no longer have VCPI allocated (e.g. because its CRTC was
3302 * removed) when it had VCPI allocated in the previous atomic state.
3304 * It is OK to call this even if @port has been removed from the system.
3305 * Additionally, it is OK to call this function multiple times on the same
3306 * @port as needed. It is not OK however, to call this function and
3307 * drm_dp_atomic_find_vcpi_slots() on the same @port in a single atomic check
3311 * drm_dp_atomic_find_vcpi_slots()
3312 * drm_dp_mst_atomic_check()
3315 * 0 if all slots for this port were added back to
3316 * &drm_dp_mst_topology_state.avail_slots or negative error code
3318 int drm_dp_atomic_release_vcpi_slots(struct drm_atomic_state *state,
3319 struct drm_dp_mst_topology_mgr *mgr,
3320 struct drm_dp_mst_port *port)
3322 struct drm_dp_mst_topology_state *topology_state;
3323 struct drm_dp_vcpi_allocation *pos;
3326 topology_state = drm_atomic_get_mst_topology_state(state, mgr);
3327 if (IS_ERR(topology_state))
3328 return PTR_ERR(topology_state);
3330 list_for_each_entry(pos, &topology_state->vcpis, next) {
3331 if (pos->port == port) {
3336 if (WARN_ON(!found)) {
3337 DRM_ERROR("no VCPI for [MST PORT:%p] found in mst state %p\n",
3338 port, &topology_state->base);
3342 DRM_DEBUG_ATOMIC("[MST PORT:%p] VCPI %d -> 0\n", port, pos->vcpi);
3344 drm_dp_mst_put_port_malloc(port);
3350 EXPORT_SYMBOL(drm_dp_atomic_release_vcpi_slots);
3353 * drm_dp_mst_allocate_vcpi() - Allocate a virtual channel
3354 * @mgr: manager for this port
3355 * @port: port to allocate a virtual channel for.
3356 * @pbn: payload bandwidth number to request
3357 * @slots: returned number of slots for this PBN.
3359 bool drm_dp_mst_allocate_vcpi(struct drm_dp_mst_topology_mgr *mgr,
3360 struct drm_dp_mst_port *port, int pbn, int slots)
3364 port = drm_dp_mst_topology_get_port_validated(mgr, port);
3371 if (port->vcpi.vcpi > 0) {
3372 DRM_DEBUG_KMS("payload: vcpi %d already allocated for pbn %d - requested pbn %d\n",
3373 port->vcpi.vcpi, port->vcpi.pbn, pbn);
3374 if (pbn == port->vcpi.pbn) {
3375 drm_dp_mst_topology_put_port(port);
3380 ret = drm_dp_init_vcpi(mgr, &port->vcpi, pbn, slots);
3382 DRM_DEBUG_KMS("failed to init vcpi slots=%d max=63 ret=%d\n",
3383 DIV_ROUND_UP(pbn, mgr->pbn_div), ret);
3386 DRM_DEBUG_KMS("initing vcpi for pbn=%d slots=%d\n",
3387 pbn, port->vcpi.num_slots);
3389 /* Keep port allocated until its payload has been removed */
3390 drm_dp_mst_get_port_malloc(port);
3391 drm_dp_mst_topology_put_port(port);
3396 EXPORT_SYMBOL(drm_dp_mst_allocate_vcpi);
3398 int drm_dp_mst_get_vcpi_slots(struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port)
3401 port = drm_dp_mst_topology_get_port_validated(mgr, port);
3405 slots = port->vcpi.num_slots;
3406 drm_dp_mst_topology_put_port(port);
3409 EXPORT_SYMBOL(drm_dp_mst_get_vcpi_slots);
3412 * drm_dp_mst_reset_vcpi_slots() - Reset number of slots to 0 for VCPI
3413 * @mgr: manager for this port
3414 * @port: unverified pointer to a port.
3416 * This just resets the number of slots for the ports VCPI for later programming.
3418 void drm_dp_mst_reset_vcpi_slots(struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port)
3421 * A port with VCPI will remain allocated until its VCPI is
3422 * released, no verified ref needed
3425 port->vcpi.num_slots = 0;
3427 EXPORT_SYMBOL(drm_dp_mst_reset_vcpi_slots);
3430 * drm_dp_mst_deallocate_vcpi() - deallocate a VCPI
3431 * @mgr: manager for this port
3432 * @port: port to deallocate vcpi for
3434 * This can be called unconditionally, regardless of whether
3435 * drm_dp_mst_allocate_vcpi() succeeded or not.
3437 void drm_dp_mst_deallocate_vcpi(struct drm_dp_mst_topology_mgr *mgr,
3438 struct drm_dp_mst_port *port)
3440 if (!port->vcpi.vcpi)
3443 drm_dp_mst_put_payload_id(mgr, port->vcpi.vcpi);
3444 port->vcpi.num_slots = 0;
3446 port->vcpi.aligned_pbn = 0;
3447 port->vcpi.vcpi = 0;
3448 drm_dp_mst_put_port_malloc(port);
3450 EXPORT_SYMBOL(drm_dp_mst_deallocate_vcpi);
3452 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr *mgr,
3453 int id, struct drm_dp_payload *payload)
3455 u8 payload_alloc[3], status;
3459 drm_dp_dpcd_writeb(mgr->aux, DP_PAYLOAD_TABLE_UPDATE_STATUS,
3460 DP_PAYLOAD_TABLE_UPDATED);
3462 payload_alloc[0] = id;
3463 payload_alloc[1] = payload->start_slot;
3464 payload_alloc[2] = payload->num_slots;
3466 ret = drm_dp_dpcd_write(mgr->aux, DP_PAYLOAD_ALLOCATE_SET, payload_alloc, 3);
3468 DRM_DEBUG_KMS("failed to write payload allocation %d\n", ret);
3473 ret = drm_dp_dpcd_readb(mgr->aux, DP_PAYLOAD_TABLE_UPDATE_STATUS, &status);
3475 DRM_DEBUG_KMS("failed to read payload table status %d\n", ret);
3479 if (!(status & DP_PAYLOAD_TABLE_UPDATED)) {
3482 usleep_range(10000, 20000);
3485 DRM_DEBUG_KMS("status not set after read payload table status %d\n", status);
3496 * drm_dp_check_act_status() - Check ACT handled status.
3497 * @mgr: manager to use
3499 * Check the payload status bits in the DPCD for ACT handled completion.
3501 int drm_dp_check_act_status(struct drm_dp_mst_topology_mgr *mgr)
3508 ret = drm_dp_dpcd_readb(mgr->aux, DP_PAYLOAD_TABLE_UPDATE_STATUS, &status);
3511 DRM_DEBUG_KMS("failed to read payload table status %d\n", ret);
3515 if (status & DP_PAYLOAD_ACT_HANDLED)
3520 } while (count < 30);
3522 if (!(status & DP_PAYLOAD_ACT_HANDLED)) {
3523 DRM_DEBUG_KMS("failed to get ACT bit %d after %d retries\n", status, count);
3531 EXPORT_SYMBOL(drm_dp_check_act_status);
3534 * drm_dp_calc_pbn_mode() - Calculate the PBN for a mode.
3535 * @clock: dot clock for the mode
3536 * @bpp: bpp for the mode.
3538 * This uses the formula in the spec to calculate the PBN value for a mode.
3540 int drm_dp_calc_pbn_mode(int clock, int bpp)
3550 * margin 5300ppm + 300ppm ~ 0.6% as per spec, factor is 1.006
3551 * The unit of 54/64Mbytes/sec is an arbitrary unit chosen based on
3552 * common multiplier to render an integer PBN for all link rate/lane
3553 * counts combinations
3555 * peak_kbps *= (1006/1000)
3556 * peak_kbps *= (64/54)
3557 * peak_kbps *= 8 convert to bytes
3560 numerator = 64 * 1006;
3561 denominator = 54 * 8 * 1000 * 1000;
3564 peak_kbps = drm_fixp_from_fraction(kbps, denominator);
3566 return drm_fixp2int_ceil(peak_kbps);
3568 EXPORT_SYMBOL(drm_dp_calc_pbn_mode);
3570 static int test_calc_pbn_mode(void)
3573 ret = drm_dp_calc_pbn_mode(154000, 30);
3575 DRM_ERROR("PBN calculation test failed - clock %d, bpp %d, expected PBN %d, actual PBN %d.\n",
3576 154000, 30, 689, ret);
3579 ret = drm_dp_calc_pbn_mode(234000, 30);
3581 DRM_ERROR("PBN calculation test failed - clock %d, bpp %d, expected PBN %d, actual PBN %d.\n",
3582 234000, 30, 1047, ret);
3585 ret = drm_dp_calc_pbn_mode(297000, 24);
3587 DRM_ERROR("PBN calculation test failed - clock %d, bpp %d, expected PBN %d, actual PBN %d.\n",
3588 297000, 24, 1063, ret);
3594 /* we want to kick the TX after we've ack the up/down IRQs. */
3595 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr *mgr)
3597 queue_work(system_long_wq, &mgr->tx_work);
3600 static void drm_dp_mst_dump_mstb(struct seq_file *m,
3601 struct drm_dp_mst_branch *mstb)
3603 struct drm_dp_mst_port *port;
3604 int tabs = mstb->lct;
3608 for (i = 0; i < tabs; i++)
3612 seq_printf(m, "%smst: %p, %d\n", prefix, mstb, mstb->num_ports);
3613 list_for_each_entry(port, &mstb->ports, next) {
3614 seq_printf(m, "%sport: %d: input: %d: pdt: %d, ddps: %d ldps: %d, sdp: %d/%d, %p, conn: %p\n", prefix, port->port_num, port->input, port->pdt, port->ddps, port->ldps, port->num_sdp_streams, port->num_sdp_stream_sinks, port, port->connector);
3616 drm_dp_mst_dump_mstb(m, port->mstb);
3620 #define DP_PAYLOAD_TABLE_SIZE 64
3622 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr *mgr,
3627 for (i = 0; i < DP_PAYLOAD_TABLE_SIZE; i += 16) {
3628 if (drm_dp_dpcd_read(mgr->aux,
3629 DP_PAYLOAD_TABLE_UPDATE_STATUS + i,
3636 static void fetch_monitor_name(struct drm_dp_mst_topology_mgr *mgr,
3637 struct drm_dp_mst_port *port, char *name,
3640 struct edid *mst_edid;
3642 mst_edid = drm_dp_mst_get_edid(port->connector, mgr, port);
3643 drm_edid_get_monitor_name(mst_edid, name, namelen);
3647 * drm_dp_mst_dump_topology(): dump topology to seq file.
3648 * @m: seq_file to dump output to
3649 * @mgr: manager to dump current topology for.
3651 * helper to dump MST topology to a seq file for debugfs.
3653 void drm_dp_mst_dump_topology(struct seq_file *m,
3654 struct drm_dp_mst_topology_mgr *mgr)
3657 struct drm_dp_mst_port *port;
3659 mutex_lock(&mgr->lock);
3660 if (mgr->mst_primary)
3661 drm_dp_mst_dump_mstb(m, mgr->mst_primary);
3664 mutex_unlock(&mgr->lock);
3666 mutex_lock(&mgr->payload_lock);
3667 seq_printf(m, "vcpi: %lx %lx %d\n", mgr->payload_mask, mgr->vcpi_mask,
3670 for (i = 0; i < mgr->max_payloads; i++) {
3671 if (mgr->proposed_vcpis[i]) {
3674 port = container_of(mgr->proposed_vcpis[i], struct drm_dp_mst_port, vcpi);
3675 fetch_monitor_name(mgr, port, name, sizeof(name));
3676 seq_printf(m, "vcpi %d: %d %d %d sink name: %s\n", i,
3677 port->port_num, port->vcpi.vcpi,
3678 port->vcpi.num_slots,
3679 (*name != 0) ? name : "Unknown");
3681 seq_printf(m, "vcpi %d:unused\n", i);
3683 for (i = 0; i < mgr->max_payloads; i++) {
3684 seq_printf(m, "payload %d: %d, %d, %d\n",
3686 mgr->payloads[i].payload_state,
3687 mgr->payloads[i].start_slot,
3688 mgr->payloads[i].num_slots);
3692 mutex_unlock(&mgr->payload_lock);
3694 mutex_lock(&mgr->lock);
3695 if (mgr->mst_primary) {
3696 u8 buf[DP_PAYLOAD_TABLE_SIZE];
3699 ret = drm_dp_dpcd_read(mgr->aux, DP_DPCD_REV, buf, DP_RECEIVER_CAP_SIZE);
3700 seq_printf(m, "dpcd: %*ph\n", DP_RECEIVER_CAP_SIZE, buf);
3701 ret = drm_dp_dpcd_read(mgr->aux, DP_FAUX_CAP, buf, 2);
3702 seq_printf(m, "faux/mst: %*ph\n", 2, buf);
3703 ret = drm_dp_dpcd_read(mgr->aux, DP_MSTM_CTRL, buf, 1);
3704 seq_printf(m, "mst ctrl: %*ph\n", 1, buf);
3706 /* dump the standard OUI branch header */
3707 ret = drm_dp_dpcd_read(mgr->aux, DP_BRANCH_OUI, buf, DP_BRANCH_OUI_HEADER_SIZE);
3708 seq_printf(m, "branch oui: %*phN devid: ", 3, buf);
3709 for (i = 0x3; i < 0x8 && buf[i]; i++)
3710 seq_printf(m, "%c", buf[i]);
3711 seq_printf(m, " revision: hw: %x.%x sw: %x.%x\n",
3712 buf[0x9] >> 4, buf[0x9] & 0xf, buf[0xa], buf[0xb]);
3713 if (dump_dp_payload_table(mgr, buf))
3714 seq_printf(m, "payload table: %*ph\n", DP_PAYLOAD_TABLE_SIZE, buf);
3717 mutex_unlock(&mgr->lock);
3720 EXPORT_SYMBOL(drm_dp_mst_dump_topology);
3722 static void drm_dp_tx_work(struct work_struct *work)
3724 struct drm_dp_mst_topology_mgr *mgr = container_of(work, struct drm_dp_mst_topology_mgr, tx_work);
3726 mutex_lock(&mgr->qlock);
3727 if (!list_empty(&mgr->tx_msg_downq))
3728 process_single_down_tx_qlock(mgr);
3729 mutex_unlock(&mgr->qlock);
3732 static void drm_dp_destroy_connector_work(struct work_struct *work)
3734 struct drm_dp_mst_topology_mgr *mgr = container_of(work, struct drm_dp_mst_topology_mgr, destroy_connector_work);
3735 struct drm_dp_mst_port *port;
3736 bool send_hotplug = false;
3738 * Not a regular list traverse as we have to drop the destroy
3739 * connector lock before destroying the connector, to avoid AB->BA
3740 * ordering between this lock and the config mutex.
3743 mutex_lock(&mgr->destroy_connector_lock);
3744 port = list_first_entry_or_null(&mgr->destroy_connector_list, struct drm_dp_mst_port, next);
3746 mutex_unlock(&mgr->destroy_connector_lock);
3749 list_del(&port->next);
3750 mutex_unlock(&mgr->destroy_connector_lock);
3752 INIT_LIST_HEAD(&port->next);
3754 mgr->cbs->destroy_connector(mgr, port->connector);
3756 drm_dp_port_teardown_pdt(port, port->pdt);
3757 port->pdt = DP_PEER_DEVICE_NONE;
3759 drm_dp_mst_put_port_malloc(port);
3760 send_hotplug = true;
3763 drm_kms_helper_hotplug_event(mgr->dev);
3766 static struct drm_private_state *
3767 drm_dp_mst_duplicate_state(struct drm_private_obj *obj)
3769 struct drm_dp_mst_topology_state *state, *old_state =
3770 to_dp_mst_topology_state(obj->state);
3771 struct drm_dp_vcpi_allocation *pos, *vcpi;
3773 state = kmemdup(old_state, sizeof(*state), GFP_KERNEL);
3777 __drm_atomic_helper_private_obj_duplicate_state(obj, &state->base);
3779 INIT_LIST_HEAD(&state->vcpis);
3781 list_for_each_entry(pos, &old_state->vcpis, next) {
3782 /* Prune leftover freed VCPI allocations */
3786 vcpi = kmemdup(pos, sizeof(*vcpi), GFP_KERNEL);
3790 drm_dp_mst_get_port_malloc(vcpi->port);
3791 list_add(&vcpi->next, &state->vcpis);
3794 return &state->base;
3797 list_for_each_entry_safe(pos, vcpi, &state->vcpis, next) {
3798 drm_dp_mst_put_port_malloc(pos->port);
3806 static void drm_dp_mst_destroy_state(struct drm_private_obj *obj,
3807 struct drm_private_state *state)
3809 struct drm_dp_mst_topology_state *mst_state =
3810 to_dp_mst_topology_state(state);
3811 struct drm_dp_vcpi_allocation *pos, *tmp;
3813 list_for_each_entry_safe(pos, tmp, &mst_state->vcpis, next) {
3814 /* We only keep references to ports with non-zero VCPIs */
3816 drm_dp_mst_put_port_malloc(pos->port);
3824 drm_dp_mst_atomic_check_topology_state(struct drm_dp_mst_topology_mgr *mgr,
3825 struct drm_dp_mst_topology_state *mst_state)
3827 struct drm_dp_vcpi_allocation *vcpi;
3828 int avail_slots = 63, payload_count = 0;
3830 list_for_each_entry(vcpi, &mst_state->vcpis, next) {
3831 /* Releasing VCPI is always OK-even if the port is gone */
3833 DRM_DEBUG_ATOMIC("[MST PORT:%p] releases all VCPI slots\n",
3838 DRM_DEBUG_ATOMIC("[MST PORT:%p] requires %d vcpi slots\n",
3839 vcpi->port, vcpi->vcpi);
3841 avail_slots -= vcpi->vcpi;
3842 if (avail_slots < 0) {
3843 DRM_DEBUG_ATOMIC("[MST PORT:%p] not enough VCPI slots in mst state %p (avail=%d)\n",
3844 vcpi->port, mst_state,
3845 avail_slots + vcpi->vcpi);
3849 if (++payload_count > mgr->max_payloads) {
3850 DRM_DEBUG_ATOMIC("[MST MGR:%p] state %p has too many payloads (max=%d)\n",
3851 mgr, mst_state, mgr->max_payloads);
3855 DRM_DEBUG_ATOMIC("[MST MGR:%p] mst state %p VCPI avail=%d used=%d\n",
3856 mgr, mst_state, avail_slots,
3863 * drm_dp_mst_atomic_check - Check that the new state of an MST topology in an
3864 * atomic update is valid
3865 * @state: Pointer to the new &struct drm_dp_mst_topology_state
3867 * Checks the given topology state for an atomic update to ensure that it's
3868 * valid. This includes checking whether there's enough bandwidth to support
3869 * the new VCPI allocations in the atomic update.
3871 * Any atomic drivers supporting DP MST must make sure to call this after
3872 * checking the rest of their state in their
3873 * &drm_mode_config_funcs.atomic_check() callback.
3876 * drm_dp_atomic_find_vcpi_slots()
3877 * drm_dp_atomic_release_vcpi_slots()
3881 * 0 if the new state is valid, negative error code otherwise.
3883 int drm_dp_mst_atomic_check(struct drm_atomic_state *state)
3885 struct drm_dp_mst_topology_mgr *mgr;
3886 struct drm_dp_mst_topology_state *mst_state;
3889 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
3890 ret = drm_dp_mst_atomic_check_topology_state(mgr, mst_state);
3897 EXPORT_SYMBOL(drm_dp_mst_atomic_check);
3899 const struct drm_private_state_funcs drm_dp_mst_topology_state_funcs = {
3900 .atomic_duplicate_state = drm_dp_mst_duplicate_state,
3901 .atomic_destroy_state = drm_dp_mst_destroy_state,
3903 EXPORT_SYMBOL(drm_dp_mst_topology_state_funcs);
3906 * drm_atomic_get_mst_topology_state: get MST topology state
3908 * @state: global atomic state
3909 * @mgr: MST topology manager, also the private object in this case
3911 * This function wraps drm_atomic_get_priv_obj_state() passing in the MST atomic
3912 * state vtable so that the private object state returned is that of a MST
3913 * topology object. Also, drm_atomic_get_private_obj_state() expects the caller
3914 * to care of the locking, so warn if don't hold the connection_mutex.
3918 * The MST topology state or error pointer.
3920 struct drm_dp_mst_topology_state *drm_atomic_get_mst_topology_state(struct drm_atomic_state *state,
3921 struct drm_dp_mst_topology_mgr *mgr)
3923 struct drm_device *dev = mgr->dev;
3925 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
3926 return to_dp_mst_topology_state(drm_atomic_get_private_obj_state(state, &mgr->base));
3928 EXPORT_SYMBOL(drm_atomic_get_mst_topology_state);
3931 * drm_dp_mst_topology_mgr_init - initialise a topology manager
3932 * @mgr: manager struct to initialise
3933 * @dev: device providing this structure - for i2c addition.
3934 * @aux: DP helper aux channel to talk to this device
3935 * @max_dpcd_transaction_bytes: hw specific DPCD transaction limit
3936 * @max_payloads: maximum number of payloads this GPU can source
3937 * @conn_base_id: the connector object ID the MST device is connected to.
3939 * Return 0 for success, or negative error code on failure
3941 int drm_dp_mst_topology_mgr_init(struct drm_dp_mst_topology_mgr *mgr,
3942 struct drm_device *dev, struct drm_dp_aux *aux,
3943 int max_dpcd_transaction_bytes,
3944 int max_payloads, int conn_base_id)
3946 struct drm_dp_mst_topology_state *mst_state;
3948 mutex_init(&mgr->lock);
3949 mutex_init(&mgr->qlock);
3950 mutex_init(&mgr->payload_lock);
3951 mutex_init(&mgr->destroy_connector_lock);
3952 INIT_LIST_HEAD(&mgr->tx_msg_downq);
3953 INIT_LIST_HEAD(&mgr->destroy_connector_list);
3954 INIT_WORK(&mgr->work, drm_dp_mst_link_probe_work);
3955 INIT_WORK(&mgr->tx_work, drm_dp_tx_work);
3956 INIT_WORK(&mgr->destroy_connector_work, drm_dp_destroy_connector_work);
3957 init_waitqueue_head(&mgr->tx_waitq);
3960 mgr->max_dpcd_transaction_bytes = max_dpcd_transaction_bytes;
3961 mgr->max_payloads = max_payloads;
3962 mgr->conn_base_id = conn_base_id;
3963 if (max_payloads + 1 > sizeof(mgr->payload_mask) * 8 ||
3964 max_payloads + 1 > sizeof(mgr->vcpi_mask) * 8)
3966 mgr->payloads = kcalloc(max_payloads, sizeof(struct drm_dp_payload), GFP_KERNEL);
3969 mgr->proposed_vcpis = kcalloc(max_payloads, sizeof(struct drm_dp_vcpi *), GFP_KERNEL);
3970 if (!mgr->proposed_vcpis)
3972 set_bit(0, &mgr->payload_mask);
3973 if (test_calc_pbn_mode() < 0)
3974 DRM_ERROR("MST PBN self-test failed\n");
3976 mst_state = kzalloc(sizeof(*mst_state), GFP_KERNEL);
3977 if (mst_state == NULL)
3980 mst_state->mgr = mgr;
3981 INIT_LIST_HEAD(&mst_state->vcpis);
3983 drm_atomic_private_obj_init(dev, &mgr->base,
3985 &drm_dp_mst_topology_state_funcs);
3989 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_init);
3992 * drm_dp_mst_topology_mgr_destroy() - destroy topology manager.
3993 * @mgr: manager to destroy
3995 void drm_dp_mst_topology_mgr_destroy(struct drm_dp_mst_topology_mgr *mgr)
3997 drm_dp_mst_topology_mgr_set_mst(mgr, false);
3998 flush_work(&mgr->work);
3999 flush_work(&mgr->destroy_connector_work);
4000 mutex_lock(&mgr->payload_lock);
4001 kfree(mgr->payloads);
4002 mgr->payloads = NULL;
4003 kfree(mgr->proposed_vcpis);
4004 mgr->proposed_vcpis = NULL;
4005 mutex_unlock(&mgr->payload_lock);
4008 drm_atomic_private_obj_fini(&mgr->base);
4011 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_destroy);
4013 static bool remote_i2c_read_ok(const struct i2c_msg msgs[], int num)
4017 if (num - 1 > DP_REMOTE_I2C_READ_MAX_TRANSACTIONS)
4020 for (i = 0; i < num - 1; i++) {
4021 if (msgs[i].flags & I2C_M_RD ||
4026 return msgs[num - 1].flags & I2C_M_RD &&
4027 msgs[num - 1].len <= 0xff;
4031 static int drm_dp_mst_i2c_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs,
4034 struct drm_dp_aux *aux = adapter->algo_data;
4035 struct drm_dp_mst_port *port = container_of(aux, struct drm_dp_mst_port, aux);
4036 struct drm_dp_mst_branch *mstb;
4037 struct drm_dp_mst_topology_mgr *mgr = port->mgr;
4039 struct drm_dp_sideband_msg_req_body msg;
4040 struct drm_dp_sideband_msg_tx *txmsg = NULL;
4043 mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
4047 if (!remote_i2c_read_ok(msgs, num)) {
4048 DRM_DEBUG_KMS("Unsupported I2C transaction for MST device\n");
4053 memset(&msg, 0, sizeof(msg));
4054 msg.req_type = DP_REMOTE_I2C_READ;
4055 msg.u.i2c_read.num_transactions = num - 1;
4056 msg.u.i2c_read.port_number = port->port_num;
4057 for (i = 0; i < num - 1; i++) {
4058 msg.u.i2c_read.transactions[i].i2c_dev_id = msgs[i].addr;
4059 msg.u.i2c_read.transactions[i].num_bytes = msgs[i].len;
4060 msg.u.i2c_read.transactions[i].bytes = msgs[i].buf;
4061 msg.u.i2c_read.transactions[i].no_stop_bit = !(msgs[i].flags & I2C_M_STOP);
4063 msg.u.i2c_read.read_i2c_device_id = msgs[num - 1].addr;
4064 msg.u.i2c_read.num_bytes_read = msgs[num - 1].len;
4066 txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
4073 drm_dp_encode_sideband_req(&msg, txmsg);
4075 drm_dp_queue_down_tx(mgr, txmsg);
4077 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
4080 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
4084 if (txmsg->reply.u.remote_i2c_read_ack.num_bytes != msgs[num - 1].len) {
4088 memcpy(msgs[num - 1].buf, txmsg->reply.u.remote_i2c_read_ack.bytes, msgs[num - 1].len);
4093 drm_dp_mst_topology_put_mstb(mstb);
4097 static u32 drm_dp_mst_i2c_functionality(struct i2c_adapter *adapter)
4099 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
4100 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
4101 I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
4102 I2C_FUNC_10BIT_ADDR;
4105 static const struct i2c_algorithm drm_dp_mst_i2c_algo = {
4106 .functionality = drm_dp_mst_i2c_functionality,
4107 .master_xfer = drm_dp_mst_i2c_xfer,
4111 * drm_dp_mst_register_i2c_bus() - register an I2C adapter for I2C-over-AUX
4112 * @aux: DisplayPort AUX channel
4114 * Returns 0 on success or a negative error code on failure.
4116 static int drm_dp_mst_register_i2c_bus(struct drm_dp_aux *aux)
4118 aux->ddc.algo = &drm_dp_mst_i2c_algo;
4119 aux->ddc.algo_data = aux;
4120 aux->ddc.retries = 3;
4122 aux->ddc.class = I2C_CLASS_DDC;
4123 aux->ddc.owner = THIS_MODULE;
4124 aux->ddc.dev.parent = aux->dev;
4125 aux->ddc.dev.of_node = aux->dev->of_node;
4127 strlcpy(aux->ddc.name, aux->name ? aux->name : dev_name(aux->dev),
4128 sizeof(aux->ddc.name));
4130 return i2c_add_adapter(&aux->ddc);
4134 * drm_dp_mst_unregister_i2c_bus() - unregister an I2C-over-AUX adapter
4135 * @aux: DisplayPort AUX channel
4137 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_aux *aux)
4139 i2c_del_adapter(&aux->ddc);