Merge branch 'for-next/entry' into for-next/core
[linux-2.6-microblaze.git] / drivers / gpu / drm / drm_dp_mst_topology.c
1 /*
2  * Copyright © 2014 Red Hat
3  *
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.
13  *
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
20  * OF THIS SOFTWARE.
21  */
22
23 #include <linux/bitfield.h>
24 #include <linux/delay.h>
25 #include <linux/errno.h>
26 #include <linux/i2c.h>
27 #include <linux/init.h>
28 #include <linux/kernel.h>
29 #include <linux/random.h>
30 #include <linux/sched.h>
31 #include <linux/seq_file.h>
32 #include <linux/iopoll.h>
33
34 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
35 #include <linux/stacktrace.h>
36 #include <linux/sort.h>
37 #include <linux/timekeeping.h>
38 #include <linux/math64.h>
39 #endif
40
41 #include <drm/drm_atomic.h>
42 #include <drm/drm_atomic_helper.h>
43 #include <drm/drm_dp_mst_helper.h>
44 #include <drm/drm_drv.h>
45 #include <drm/drm_print.h>
46 #include <drm/drm_probe_helper.h>
47
48 #include "drm_crtc_helper_internal.h"
49 #include "drm_dp_mst_topology_internal.h"
50
51 /**
52  * DOC: dp mst helper
53  *
54  * These functions contain parts of the DisplayPort 1.2a MultiStream Transport
55  * protocol. The helpers contain a topology manager and bandwidth manager.
56  * The helpers encapsulate the sending and received of sideband msgs.
57  */
58 struct drm_dp_pending_up_req {
59         struct drm_dp_sideband_msg_hdr hdr;
60         struct drm_dp_sideband_msg_req_body msg;
61         struct list_head next;
62 };
63
64 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr *mgr,
65                                   char *buf);
66
67 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port *port);
68
69 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr *mgr,
70                                      int id,
71                                      struct drm_dp_payload *payload);
72
73 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr *mgr,
74                                  struct drm_dp_mst_port *port,
75                                  int offset, int size, u8 *bytes);
76 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr *mgr,
77                                   struct drm_dp_mst_port *port,
78                                   int offset, int size, u8 *bytes);
79
80 static int drm_dp_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
81                                     struct drm_dp_mst_branch *mstb);
82
83 static void
84 drm_dp_send_clear_payload_id_table(struct drm_dp_mst_topology_mgr *mgr,
85                                    struct drm_dp_mst_branch *mstb);
86
87 static int drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr *mgr,
88                                            struct drm_dp_mst_branch *mstb,
89                                            struct drm_dp_mst_port *port);
90 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
91                                  u8 *guid);
92
93 static int drm_dp_mst_register_i2c_bus(struct drm_dp_mst_port *port);
94 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_mst_port *port);
95 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr *mgr);
96
97 static bool drm_dp_mst_port_downstream_of_branch(struct drm_dp_mst_port *port,
98                                                  struct drm_dp_mst_branch *branch);
99
100 #define DBG_PREFIX "[dp_mst]"
101
102 #define DP_STR(x) [DP_ ## x] = #x
103
104 static const char *drm_dp_mst_req_type_str(u8 req_type)
105 {
106         static const char * const req_type_str[] = {
107                 DP_STR(GET_MSG_TRANSACTION_VERSION),
108                 DP_STR(LINK_ADDRESS),
109                 DP_STR(CONNECTION_STATUS_NOTIFY),
110                 DP_STR(ENUM_PATH_RESOURCES),
111                 DP_STR(ALLOCATE_PAYLOAD),
112                 DP_STR(QUERY_PAYLOAD),
113                 DP_STR(RESOURCE_STATUS_NOTIFY),
114                 DP_STR(CLEAR_PAYLOAD_ID_TABLE),
115                 DP_STR(REMOTE_DPCD_READ),
116                 DP_STR(REMOTE_DPCD_WRITE),
117                 DP_STR(REMOTE_I2C_READ),
118                 DP_STR(REMOTE_I2C_WRITE),
119                 DP_STR(POWER_UP_PHY),
120                 DP_STR(POWER_DOWN_PHY),
121                 DP_STR(SINK_EVENT_NOTIFY),
122                 DP_STR(QUERY_STREAM_ENC_STATUS),
123         };
124
125         if (req_type >= ARRAY_SIZE(req_type_str) ||
126             !req_type_str[req_type])
127                 return "unknown";
128
129         return req_type_str[req_type];
130 }
131
132 #undef DP_STR
133 #define DP_STR(x) [DP_NAK_ ## x] = #x
134
135 static const char *drm_dp_mst_nak_reason_str(u8 nak_reason)
136 {
137         static const char * const nak_reason_str[] = {
138                 DP_STR(WRITE_FAILURE),
139                 DP_STR(INVALID_READ),
140                 DP_STR(CRC_FAILURE),
141                 DP_STR(BAD_PARAM),
142                 DP_STR(DEFER),
143                 DP_STR(LINK_FAILURE),
144                 DP_STR(NO_RESOURCES),
145                 DP_STR(DPCD_FAIL),
146                 DP_STR(I2C_NAK),
147                 DP_STR(ALLOCATE_FAIL),
148         };
149
150         if (nak_reason >= ARRAY_SIZE(nak_reason_str) ||
151             !nak_reason_str[nak_reason])
152                 return "unknown";
153
154         return nak_reason_str[nak_reason];
155 }
156
157 #undef DP_STR
158 #define DP_STR(x) [DRM_DP_SIDEBAND_TX_ ## x] = #x
159
160 static const char *drm_dp_mst_sideband_tx_state_str(int state)
161 {
162         static const char * const sideband_reason_str[] = {
163                 DP_STR(QUEUED),
164                 DP_STR(START_SEND),
165                 DP_STR(SENT),
166                 DP_STR(RX),
167                 DP_STR(TIMEOUT),
168         };
169
170         if (state >= ARRAY_SIZE(sideband_reason_str) ||
171             !sideband_reason_str[state])
172                 return "unknown";
173
174         return sideband_reason_str[state];
175 }
176
177 static int
178 drm_dp_mst_rad_to_str(const u8 rad[8], u8 lct, char *out, size_t len)
179 {
180         int i;
181         u8 unpacked_rad[16];
182
183         for (i = 0; i < lct; i++) {
184                 if (i % 2)
185                         unpacked_rad[i] = rad[i / 2] >> 4;
186                 else
187                         unpacked_rad[i] = rad[i / 2] & BIT_MASK(4);
188         }
189
190         /* TODO: Eventually add something to printk so we can format the rad
191          * like this: 1.2.3
192          */
193         return snprintf(out, len, "%*phC", lct, unpacked_rad);
194 }
195
196 /* sideband msg handling */
197 static u8 drm_dp_msg_header_crc4(const uint8_t *data, size_t num_nibbles)
198 {
199         u8 bitmask = 0x80;
200         u8 bitshift = 7;
201         u8 array_index = 0;
202         int number_of_bits = num_nibbles * 4;
203         u8 remainder = 0;
204
205         while (number_of_bits != 0) {
206                 number_of_bits--;
207                 remainder <<= 1;
208                 remainder |= (data[array_index] & bitmask) >> bitshift;
209                 bitmask >>= 1;
210                 bitshift--;
211                 if (bitmask == 0) {
212                         bitmask = 0x80;
213                         bitshift = 7;
214                         array_index++;
215                 }
216                 if ((remainder & 0x10) == 0x10)
217                         remainder ^= 0x13;
218         }
219
220         number_of_bits = 4;
221         while (number_of_bits != 0) {
222                 number_of_bits--;
223                 remainder <<= 1;
224                 if ((remainder & 0x10) != 0)
225                         remainder ^= 0x13;
226         }
227
228         return remainder;
229 }
230
231 static u8 drm_dp_msg_data_crc4(const uint8_t *data, u8 number_of_bytes)
232 {
233         u8 bitmask = 0x80;
234         u8 bitshift = 7;
235         u8 array_index = 0;
236         int number_of_bits = number_of_bytes * 8;
237         u16 remainder = 0;
238
239         while (number_of_bits != 0) {
240                 number_of_bits--;
241                 remainder <<= 1;
242                 remainder |= (data[array_index] & bitmask) >> bitshift;
243                 bitmask >>= 1;
244                 bitshift--;
245                 if (bitmask == 0) {
246                         bitmask = 0x80;
247                         bitshift = 7;
248                         array_index++;
249                 }
250                 if ((remainder & 0x100) == 0x100)
251                         remainder ^= 0xd5;
252         }
253
254         number_of_bits = 8;
255         while (number_of_bits != 0) {
256                 number_of_bits--;
257                 remainder <<= 1;
258                 if ((remainder & 0x100) != 0)
259                         remainder ^= 0xd5;
260         }
261
262         return remainder & 0xff;
263 }
264 static inline u8 drm_dp_calc_sb_hdr_size(struct drm_dp_sideband_msg_hdr *hdr)
265 {
266         u8 size = 3;
267
268         size += (hdr->lct / 2);
269         return size;
270 }
271
272 static void drm_dp_encode_sideband_msg_hdr(struct drm_dp_sideband_msg_hdr *hdr,
273                                            u8 *buf, int *len)
274 {
275         int idx = 0;
276         int i;
277         u8 crc4;
278
279         buf[idx++] = ((hdr->lct & 0xf) << 4) | (hdr->lcr & 0xf);
280         for (i = 0; i < (hdr->lct / 2); i++)
281                 buf[idx++] = hdr->rad[i];
282         buf[idx++] = (hdr->broadcast << 7) | (hdr->path_msg << 6) |
283                 (hdr->msg_len & 0x3f);
284         buf[idx++] = (hdr->somt << 7) | (hdr->eomt << 6) | (hdr->seqno << 4);
285
286         crc4 = drm_dp_msg_header_crc4(buf, (idx * 2) - 1);
287         buf[idx - 1] |= (crc4 & 0xf);
288
289         *len = idx;
290 }
291
292 static bool drm_dp_decode_sideband_msg_hdr(const struct drm_dp_mst_topology_mgr *mgr,
293                                            struct drm_dp_sideband_msg_hdr *hdr,
294                                            u8 *buf, int buflen, u8 *hdrlen)
295 {
296         u8 crc4;
297         u8 len;
298         int i;
299         u8 idx;
300
301         if (buf[0] == 0)
302                 return false;
303         len = 3;
304         len += ((buf[0] & 0xf0) >> 4) / 2;
305         if (len > buflen)
306                 return false;
307         crc4 = drm_dp_msg_header_crc4(buf, (len * 2) - 1);
308
309         if ((crc4 & 0xf) != (buf[len - 1] & 0xf)) {
310                 drm_dbg_kms(mgr->dev, "crc4 mismatch 0x%x 0x%x\n", crc4, buf[len - 1]);
311                 return false;
312         }
313
314         hdr->lct = (buf[0] & 0xf0) >> 4;
315         hdr->lcr = (buf[0] & 0xf);
316         idx = 1;
317         for (i = 0; i < (hdr->lct / 2); i++)
318                 hdr->rad[i] = buf[idx++];
319         hdr->broadcast = (buf[idx] >> 7) & 0x1;
320         hdr->path_msg = (buf[idx] >> 6) & 0x1;
321         hdr->msg_len = buf[idx] & 0x3f;
322         idx++;
323         hdr->somt = (buf[idx] >> 7) & 0x1;
324         hdr->eomt = (buf[idx] >> 6) & 0x1;
325         hdr->seqno = (buf[idx] >> 4) & 0x1;
326         idx++;
327         *hdrlen = idx;
328         return true;
329 }
330
331 void
332 drm_dp_encode_sideband_req(const struct drm_dp_sideband_msg_req_body *req,
333                            struct drm_dp_sideband_msg_tx *raw)
334 {
335         int idx = 0;
336         int i;
337         u8 *buf = raw->msg;
338
339         buf[idx++] = req->req_type & 0x7f;
340
341         switch (req->req_type) {
342         case DP_ENUM_PATH_RESOURCES:
343         case DP_POWER_DOWN_PHY:
344         case DP_POWER_UP_PHY:
345                 buf[idx] = (req->u.port_num.port_number & 0xf) << 4;
346                 idx++;
347                 break;
348         case DP_ALLOCATE_PAYLOAD:
349                 buf[idx] = (req->u.allocate_payload.port_number & 0xf) << 4 |
350                         (req->u.allocate_payload.number_sdp_streams & 0xf);
351                 idx++;
352                 buf[idx] = (req->u.allocate_payload.vcpi & 0x7f);
353                 idx++;
354                 buf[idx] = (req->u.allocate_payload.pbn >> 8);
355                 idx++;
356                 buf[idx] = (req->u.allocate_payload.pbn & 0xff);
357                 idx++;
358                 for (i = 0; i < req->u.allocate_payload.number_sdp_streams / 2; i++) {
359                         buf[idx] = ((req->u.allocate_payload.sdp_stream_sink[i * 2] & 0xf) << 4) |
360                                 (req->u.allocate_payload.sdp_stream_sink[i * 2 + 1] & 0xf);
361                         idx++;
362                 }
363                 if (req->u.allocate_payload.number_sdp_streams & 1) {
364                         i = req->u.allocate_payload.number_sdp_streams - 1;
365                         buf[idx] = (req->u.allocate_payload.sdp_stream_sink[i] & 0xf) << 4;
366                         idx++;
367                 }
368                 break;
369         case DP_QUERY_PAYLOAD:
370                 buf[idx] = (req->u.query_payload.port_number & 0xf) << 4;
371                 idx++;
372                 buf[idx] = (req->u.query_payload.vcpi & 0x7f);
373                 idx++;
374                 break;
375         case DP_REMOTE_DPCD_READ:
376                 buf[idx] = (req->u.dpcd_read.port_number & 0xf) << 4;
377                 buf[idx] |= ((req->u.dpcd_read.dpcd_address & 0xf0000) >> 16) & 0xf;
378                 idx++;
379                 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff00) >> 8;
380                 idx++;
381                 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff);
382                 idx++;
383                 buf[idx] = (req->u.dpcd_read.num_bytes);
384                 idx++;
385                 break;
386
387         case DP_REMOTE_DPCD_WRITE:
388                 buf[idx] = (req->u.dpcd_write.port_number & 0xf) << 4;
389                 buf[idx] |= ((req->u.dpcd_write.dpcd_address & 0xf0000) >> 16) & 0xf;
390                 idx++;
391                 buf[idx] = (req->u.dpcd_write.dpcd_address & 0xff00) >> 8;
392                 idx++;
393                 buf[idx] = (req->u.dpcd_write.dpcd_address & 0xff);
394                 idx++;
395                 buf[idx] = (req->u.dpcd_write.num_bytes);
396                 idx++;
397                 memcpy(&buf[idx], req->u.dpcd_write.bytes, req->u.dpcd_write.num_bytes);
398                 idx += req->u.dpcd_write.num_bytes;
399                 break;
400         case DP_REMOTE_I2C_READ:
401                 buf[idx] = (req->u.i2c_read.port_number & 0xf) << 4;
402                 buf[idx] |= (req->u.i2c_read.num_transactions & 0x3);
403                 idx++;
404                 for (i = 0; i < (req->u.i2c_read.num_transactions & 0x3); i++) {
405                         buf[idx] = req->u.i2c_read.transactions[i].i2c_dev_id & 0x7f;
406                         idx++;
407                         buf[idx] = req->u.i2c_read.transactions[i].num_bytes;
408                         idx++;
409                         memcpy(&buf[idx], req->u.i2c_read.transactions[i].bytes, req->u.i2c_read.transactions[i].num_bytes);
410                         idx += req->u.i2c_read.transactions[i].num_bytes;
411
412                         buf[idx] = (req->u.i2c_read.transactions[i].no_stop_bit & 0x1) << 4;
413                         buf[idx] |= (req->u.i2c_read.transactions[i].i2c_transaction_delay & 0xf);
414                         idx++;
415                 }
416                 buf[idx] = (req->u.i2c_read.read_i2c_device_id) & 0x7f;
417                 idx++;
418                 buf[idx] = (req->u.i2c_read.num_bytes_read);
419                 idx++;
420                 break;
421
422         case DP_REMOTE_I2C_WRITE:
423                 buf[idx] = (req->u.i2c_write.port_number & 0xf) << 4;
424                 idx++;
425                 buf[idx] = (req->u.i2c_write.write_i2c_device_id) & 0x7f;
426                 idx++;
427                 buf[idx] = (req->u.i2c_write.num_bytes);
428                 idx++;
429                 memcpy(&buf[idx], req->u.i2c_write.bytes, req->u.i2c_write.num_bytes);
430                 idx += req->u.i2c_write.num_bytes;
431                 break;
432         case DP_QUERY_STREAM_ENC_STATUS: {
433                 const struct drm_dp_query_stream_enc_status *msg;
434
435                 msg = &req->u.enc_status;
436                 buf[idx] = msg->stream_id;
437                 idx++;
438                 memcpy(&buf[idx], msg->client_id, sizeof(msg->client_id));
439                 idx += sizeof(msg->client_id);
440                 buf[idx] = 0;
441                 buf[idx] |= FIELD_PREP(GENMASK(1, 0), msg->stream_event);
442                 buf[idx] |= msg->valid_stream_event ? BIT(2) : 0;
443                 buf[idx] |= FIELD_PREP(GENMASK(4, 3), msg->stream_behavior);
444                 buf[idx] |= msg->valid_stream_behavior ? BIT(5) : 0;
445                 idx++;
446                 }
447                 break;
448         }
449         raw->cur_len = idx;
450 }
451 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_encode_sideband_req);
452
453 /* Decode a sideband request we've encoded, mainly used for debugging */
454 int
455 drm_dp_decode_sideband_req(const struct drm_dp_sideband_msg_tx *raw,
456                            struct drm_dp_sideband_msg_req_body *req)
457 {
458         const u8 *buf = raw->msg;
459         int i, idx = 0;
460
461         req->req_type = buf[idx++] & 0x7f;
462         switch (req->req_type) {
463         case DP_ENUM_PATH_RESOURCES:
464         case DP_POWER_DOWN_PHY:
465         case DP_POWER_UP_PHY:
466                 req->u.port_num.port_number = (buf[idx] >> 4) & 0xf;
467                 break;
468         case DP_ALLOCATE_PAYLOAD:
469                 {
470                         struct drm_dp_allocate_payload *a =
471                                 &req->u.allocate_payload;
472
473                         a->number_sdp_streams = buf[idx] & 0xf;
474                         a->port_number = (buf[idx] >> 4) & 0xf;
475
476                         WARN_ON(buf[++idx] & 0x80);
477                         a->vcpi = buf[idx] & 0x7f;
478
479                         a->pbn = buf[++idx] << 8;
480                         a->pbn |= buf[++idx];
481
482                         idx++;
483                         for (i = 0; i < a->number_sdp_streams; i++) {
484                                 a->sdp_stream_sink[i] =
485                                         (buf[idx + (i / 2)] >> ((i % 2) ? 0 : 4)) & 0xf;
486                         }
487                 }
488                 break;
489         case DP_QUERY_PAYLOAD:
490                 req->u.query_payload.port_number = (buf[idx] >> 4) & 0xf;
491                 WARN_ON(buf[++idx] & 0x80);
492                 req->u.query_payload.vcpi = buf[idx] & 0x7f;
493                 break;
494         case DP_REMOTE_DPCD_READ:
495                 {
496                         struct drm_dp_remote_dpcd_read *r = &req->u.dpcd_read;
497
498                         r->port_number = (buf[idx] >> 4) & 0xf;
499
500                         r->dpcd_address = (buf[idx] << 16) & 0xf0000;
501                         r->dpcd_address |= (buf[++idx] << 8) & 0xff00;
502                         r->dpcd_address |= buf[++idx] & 0xff;
503
504                         r->num_bytes = buf[++idx];
505                 }
506                 break;
507         case DP_REMOTE_DPCD_WRITE:
508                 {
509                         struct drm_dp_remote_dpcd_write *w =
510                                 &req->u.dpcd_write;
511
512                         w->port_number = (buf[idx] >> 4) & 0xf;
513
514                         w->dpcd_address = (buf[idx] << 16) & 0xf0000;
515                         w->dpcd_address |= (buf[++idx] << 8) & 0xff00;
516                         w->dpcd_address |= buf[++idx] & 0xff;
517
518                         w->num_bytes = buf[++idx];
519
520                         w->bytes = kmemdup(&buf[++idx], w->num_bytes,
521                                            GFP_KERNEL);
522                         if (!w->bytes)
523                                 return -ENOMEM;
524                 }
525                 break;
526         case DP_REMOTE_I2C_READ:
527                 {
528                         struct drm_dp_remote_i2c_read *r = &req->u.i2c_read;
529                         struct drm_dp_remote_i2c_read_tx *tx;
530                         bool failed = false;
531
532                         r->num_transactions = buf[idx] & 0x3;
533                         r->port_number = (buf[idx] >> 4) & 0xf;
534                         for (i = 0; i < r->num_transactions; i++) {
535                                 tx = &r->transactions[i];
536
537                                 tx->i2c_dev_id = buf[++idx] & 0x7f;
538                                 tx->num_bytes = buf[++idx];
539                                 tx->bytes = kmemdup(&buf[++idx],
540                                                     tx->num_bytes,
541                                                     GFP_KERNEL);
542                                 if (!tx->bytes) {
543                                         failed = true;
544                                         break;
545                                 }
546                                 idx += tx->num_bytes;
547                                 tx->no_stop_bit = (buf[idx] >> 5) & 0x1;
548                                 tx->i2c_transaction_delay = buf[idx] & 0xf;
549                         }
550
551                         if (failed) {
552                                 for (i = 0; i < r->num_transactions; i++) {
553                                         tx = &r->transactions[i];
554                                         kfree(tx->bytes);
555                                 }
556                                 return -ENOMEM;
557                         }
558
559                         r->read_i2c_device_id = buf[++idx] & 0x7f;
560                         r->num_bytes_read = buf[++idx];
561                 }
562                 break;
563         case DP_REMOTE_I2C_WRITE:
564                 {
565                         struct drm_dp_remote_i2c_write *w = &req->u.i2c_write;
566
567                         w->port_number = (buf[idx] >> 4) & 0xf;
568                         w->write_i2c_device_id = buf[++idx] & 0x7f;
569                         w->num_bytes = buf[++idx];
570                         w->bytes = kmemdup(&buf[++idx], w->num_bytes,
571                                            GFP_KERNEL);
572                         if (!w->bytes)
573                                 return -ENOMEM;
574                 }
575                 break;
576         case DP_QUERY_STREAM_ENC_STATUS:
577                 req->u.enc_status.stream_id = buf[idx++];
578                 for (i = 0; i < sizeof(req->u.enc_status.client_id); i++)
579                         req->u.enc_status.client_id[i] = buf[idx++];
580
581                 req->u.enc_status.stream_event = FIELD_GET(GENMASK(1, 0),
582                                                            buf[idx]);
583                 req->u.enc_status.valid_stream_event = FIELD_GET(BIT(2),
584                                                                  buf[idx]);
585                 req->u.enc_status.stream_behavior = FIELD_GET(GENMASK(4, 3),
586                                                               buf[idx]);
587                 req->u.enc_status.valid_stream_behavior = FIELD_GET(BIT(5),
588                                                                     buf[idx]);
589                 break;
590         }
591
592         return 0;
593 }
594 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_decode_sideband_req);
595
596 void
597 drm_dp_dump_sideband_msg_req_body(const struct drm_dp_sideband_msg_req_body *req,
598                                   int indent, struct drm_printer *printer)
599 {
600         int i;
601
602 #define P(f, ...) drm_printf_indent(printer, indent, f, ##__VA_ARGS__)
603         if (req->req_type == DP_LINK_ADDRESS) {
604                 /* No contents to print */
605                 P("type=%s\n", drm_dp_mst_req_type_str(req->req_type));
606                 return;
607         }
608
609         P("type=%s contents:\n", drm_dp_mst_req_type_str(req->req_type));
610         indent++;
611
612         switch (req->req_type) {
613         case DP_ENUM_PATH_RESOURCES:
614         case DP_POWER_DOWN_PHY:
615         case DP_POWER_UP_PHY:
616                 P("port=%d\n", req->u.port_num.port_number);
617                 break;
618         case DP_ALLOCATE_PAYLOAD:
619                 P("port=%d vcpi=%d pbn=%d sdp_streams=%d %*ph\n",
620                   req->u.allocate_payload.port_number,
621                   req->u.allocate_payload.vcpi, req->u.allocate_payload.pbn,
622                   req->u.allocate_payload.number_sdp_streams,
623                   req->u.allocate_payload.number_sdp_streams,
624                   req->u.allocate_payload.sdp_stream_sink);
625                 break;
626         case DP_QUERY_PAYLOAD:
627                 P("port=%d vcpi=%d\n",
628                   req->u.query_payload.port_number,
629                   req->u.query_payload.vcpi);
630                 break;
631         case DP_REMOTE_DPCD_READ:
632                 P("port=%d dpcd_addr=%05x len=%d\n",
633                   req->u.dpcd_read.port_number, req->u.dpcd_read.dpcd_address,
634                   req->u.dpcd_read.num_bytes);
635                 break;
636         case DP_REMOTE_DPCD_WRITE:
637                 P("port=%d addr=%05x len=%d: %*ph\n",
638                   req->u.dpcd_write.port_number,
639                   req->u.dpcd_write.dpcd_address,
640                   req->u.dpcd_write.num_bytes, req->u.dpcd_write.num_bytes,
641                   req->u.dpcd_write.bytes);
642                 break;
643         case DP_REMOTE_I2C_READ:
644                 P("port=%d num_tx=%d id=%d size=%d:\n",
645                   req->u.i2c_read.port_number,
646                   req->u.i2c_read.num_transactions,
647                   req->u.i2c_read.read_i2c_device_id,
648                   req->u.i2c_read.num_bytes_read);
649
650                 indent++;
651                 for (i = 0; i < req->u.i2c_read.num_transactions; i++) {
652                         const struct drm_dp_remote_i2c_read_tx *rtx =
653                                 &req->u.i2c_read.transactions[i];
654
655                         P("%d: id=%03d size=%03d no_stop_bit=%d tx_delay=%03d: %*ph\n",
656                           i, rtx->i2c_dev_id, rtx->num_bytes,
657                           rtx->no_stop_bit, rtx->i2c_transaction_delay,
658                           rtx->num_bytes, rtx->bytes);
659                 }
660                 break;
661         case DP_REMOTE_I2C_WRITE:
662                 P("port=%d id=%d size=%d: %*ph\n",
663                   req->u.i2c_write.port_number,
664                   req->u.i2c_write.write_i2c_device_id,
665                   req->u.i2c_write.num_bytes, req->u.i2c_write.num_bytes,
666                   req->u.i2c_write.bytes);
667                 break;
668         case DP_QUERY_STREAM_ENC_STATUS:
669                 P("stream_id=%u client_id=%*ph stream_event=%x "
670                   "valid_event=%d stream_behavior=%x valid_behavior=%d",
671                   req->u.enc_status.stream_id,
672                   (int)ARRAY_SIZE(req->u.enc_status.client_id),
673                   req->u.enc_status.client_id, req->u.enc_status.stream_event,
674                   req->u.enc_status.valid_stream_event,
675                   req->u.enc_status.stream_behavior,
676                   req->u.enc_status.valid_stream_behavior);
677                 break;
678         default:
679                 P("???\n");
680                 break;
681         }
682 #undef P
683 }
684 EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_dp_dump_sideband_msg_req_body);
685
686 static inline void
687 drm_dp_mst_dump_sideband_msg_tx(struct drm_printer *p,
688                                 const struct drm_dp_sideband_msg_tx *txmsg)
689 {
690         struct drm_dp_sideband_msg_req_body req;
691         char buf[64];
692         int ret;
693         int i;
694
695         drm_dp_mst_rad_to_str(txmsg->dst->rad, txmsg->dst->lct, buf,
696                               sizeof(buf));
697         drm_printf(p, "txmsg cur_offset=%x cur_len=%x seqno=%x state=%s path_msg=%d dst=%s\n",
698                    txmsg->cur_offset, txmsg->cur_len, txmsg->seqno,
699                    drm_dp_mst_sideband_tx_state_str(txmsg->state),
700                    txmsg->path_msg, buf);
701
702         ret = drm_dp_decode_sideband_req(txmsg, &req);
703         if (ret) {
704                 drm_printf(p, "<failed to decode sideband req: %d>\n", ret);
705                 return;
706         }
707         drm_dp_dump_sideband_msg_req_body(&req, 1, p);
708
709         switch (req.req_type) {
710         case DP_REMOTE_DPCD_WRITE:
711                 kfree(req.u.dpcd_write.bytes);
712                 break;
713         case DP_REMOTE_I2C_READ:
714                 for (i = 0; i < req.u.i2c_read.num_transactions; i++)
715                         kfree(req.u.i2c_read.transactions[i].bytes);
716                 break;
717         case DP_REMOTE_I2C_WRITE:
718                 kfree(req.u.i2c_write.bytes);
719                 break;
720         }
721 }
722
723 static void drm_dp_crc_sideband_chunk_req(u8 *msg, u8 len)
724 {
725         u8 crc4;
726
727         crc4 = drm_dp_msg_data_crc4(msg, len);
728         msg[len] = crc4;
729 }
730
731 static void drm_dp_encode_sideband_reply(struct drm_dp_sideband_msg_reply_body *rep,
732                                          struct drm_dp_sideband_msg_tx *raw)
733 {
734         int idx = 0;
735         u8 *buf = raw->msg;
736
737         buf[idx++] = (rep->reply_type & 0x1) << 7 | (rep->req_type & 0x7f);
738
739         raw->cur_len = idx;
740 }
741
742 static int drm_dp_sideband_msg_set_header(struct drm_dp_sideband_msg_rx *msg,
743                                           struct drm_dp_sideband_msg_hdr *hdr,
744                                           u8 hdrlen)
745 {
746         /*
747          * ignore out-of-order messages or messages that are part of a
748          * failed transaction
749          */
750         if (!hdr->somt && !msg->have_somt)
751                 return false;
752
753         /* get length contained in this portion */
754         msg->curchunk_idx = 0;
755         msg->curchunk_len = hdr->msg_len;
756         msg->curchunk_hdrlen = hdrlen;
757
758         /* we have already gotten an somt - don't bother parsing */
759         if (hdr->somt && msg->have_somt)
760                 return false;
761
762         if (hdr->somt) {
763                 memcpy(&msg->initial_hdr, hdr,
764                        sizeof(struct drm_dp_sideband_msg_hdr));
765                 msg->have_somt = true;
766         }
767         if (hdr->eomt)
768                 msg->have_eomt = true;
769
770         return true;
771 }
772
773 /* this adds a chunk of msg to the builder to get the final msg */
774 static bool drm_dp_sideband_append_payload(struct drm_dp_sideband_msg_rx *msg,
775                                            u8 *replybuf, u8 replybuflen)
776 {
777         u8 crc4;
778
779         memcpy(&msg->chunk[msg->curchunk_idx], replybuf, replybuflen);
780         msg->curchunk_idx += replybuflen;
781
782         if (msg->curchunk_idx >= msg->curchunk_len) {
783                 /* do CRC */
784                 crc4 = drm_dp_msg_data_crc4(msg->chunk, msg->curchunk_len - 1);
785                 if (crc4 != msg->chunk[msg->curchunk_len - 1])
786                         print_hex_dump(KERN_DEBUG, "wrong crc",
787                                        DUMP_PREFIX_NONE, 16, 1,
788                                        msg->chunk,  msg->curchunk_len, false);
789                 /* copy chunk into bigger msg */
790                 memcpy(&msg->msg[msg->curlen], msg->chunk, msg->curchunk_len - 1);
791                 msg->curlen += msg->curchunk_len - 1;
792         }
793         return true;
794 }
795
796 static bool drm_dp_sideband_parse_link_address(const struct drm_dp_mst_topology_mgr *mgr,
797                                                struct drm_dp_sideband_msg_rx *raw,
798                                                struct drm_dp_sideband_msg_reply_body *repmsg)
799 {
800         int idx = 1;
801         int i;
802
803         memcpy(repmsg->u.link_addr.guid, &raw->msg[idx], 16);
804         idx += 16;
805         repmsg->u.link_addr.nports = raw->msg[idx] & 0xf;
806         idx++;
807         if (idx > raw->curlen)
808                 goto fail_len;
809         for (i = 0; i < repmsg->u.link_addr.nports; i++) {
810                 if (raw->msg[idx] & 0x80)
811                         repmsg->u.link_addr.ports[i].input_port = 1;
812
813                 repmsg->u.link_addr.ports[i].peer_device_type = (raw->msg[idx] >> 4) & 0x7;
814                 repmsg->u.link_addr.ports[i].port_number = (raw->msg[idx] & 0xf);
815
816                 idx++;
817                 if (idx > raw->curlen)
818                         goto fail_len;
819                 repmsg->u.link_addr.ports[i].mcs = (raw->msg[idx] >> 7) & 0x1;
820                 repmsg->u.link_addr.ports[i].ddps = (raw->msg[idx] >> 6) & 0x1;
821                 if (repmsg->u.link_addr.ports[i].input_port == 0)
822                         repmsg->u.link_addr.ports[i].legacy_device_plug_status = (raw->msg[idx] >> 5) & 0x1;
823                 idx++;
824                 if (idx > raw->curlen)
825                         goto fail_len;
826                 if (repmsg->u.link_addr.ports[i].input_port == 0) {
827                         repmsg->u.link_addr.ports[i].dpcd_revision = (raw->msg[idx]);
828                         idx++;
829                         if (idx > raw->curlen)
830                                 goto fail_len;
831                         memcpy(repmsg->u.link_addr.ports[i].peer_guid, &raw->msg[idx], 16);
832                         idx += 16;
833                         if (idx > raw->curlen)
834                                 goto fail_len;
835                         repmsg->u.link_addr.ports[i].num_sdp_streams = (raw->msg[idx] >> 4) & 0xf;
836                         repmsg->u.link_addr.ports[i].num_sdp_stream_sinks = (raw->msg[idx] & 0xf);
837                         idx++;
838
839                 }
840                 if (idx > raw->curlen)
841                         goto fail_len;
842         }
843
844         return true;
845 fail_len:
846         DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx, raw->curlen);
847         return false;
848 }
849
850 static bool drm_dp_sideband_parse_remote_dpcd_read(struct drm_dp_sideband_msg_rx *raw,
851                                                    struct drm_dp_sideband_msg_reply_body *repmsg)
852 {
853         int idx = 1;
854
855         repmsg->u.remote_dpcd_read_ack.port_number = raw->msg[idx] & 0xf;
856         idx++;
857         if (idx > raw->curlen)
858                 goto fail_len;
859         repmsg->u.remote_dpcd_read_ack.num_bytes = raw->msg[idx];
860         idx++;
861         if (idx > raw->curlen)
862                 goto fail_len;
863
864         memcpy(repmsg->u.remote_dpcd_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_dpcd_read_ack.num_bytes);
865         return true;
866 fail_len:
867         DRM_DEBUG_KMS("link address reply parse length fail %d %d\n", idx, raw->curlen);
868         return false;
869 }
870
871 static bool drm_dp_sideband_parse_remote_dpcd_write(struct drm_dp_sideband_msg_rx *raw,
872                                                       struct drm_dp_sideband_msg_reply_body *repmsg)
873 {
874         int idx = 1;
875
876         repmsg->u.remote_dpcd_write_ack.port_number = raw->msg[idx] & 0xf;
877         idx++;
878         if (idx > raw->curlen)
879                 goto fail_len;
880         return true;
881 fail_len:
882         DRM_DEBUG_KMS("parse length fail %d %d\n", idx, raw->curlen);
883         return false;
884 }
885
886 static bool drm_dp_sideband_parse_remote_i2c_read_ack(struct drm_dp_sideband_msg_rx *raw,
887                                                       struct drm_dp_sideband_msg_reply_body *repmsg)
888 {
889         int idx = 1;
890
891         repmsg->u.remote_i2c_read_ack.port_number = (raw->msg[idx] & 0xf);
892         idx++;
893         if (idx > raw->curlen)
894                 goto fail_len;
895         repmsg->u.remote_i2c_read_ack.num_bytes = raw->msg[idx];
896         idx++;
897         /* TODO check */
898         memcpy(repmsg->u.remote_i2c_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_i2c_read_ack.num_bytes);
899         return true;
900 fail_len:
901         DRM_DEBUG_KMS("remote i2c reply parse length fail %d %d\n", idx, raw->curlen);
902         return false;
903 }
904
905 static bool drm_dp_sideband_parse_enum_path_resources_ack(struct drm_dp_sideband_msg_rx *raw,
906                                                           struct drm_dp_sideband_msg_reply_body *repmsg)
907 {
908         int idx = 1;
909
910         repmsg->u.path_resources.port_number = (raw->msg[idx] >> 4) & 0xf;
911         repmsg->u.path_resources.fec_capable = raw->msg[idx] & 0x1;
912         idx++;
913         if (idx > raw->curlen)
914                 goto fail_len;
915         repmsg->u.path_resources.full_payload_bw_number = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
916         idx += 2;
917         if (idx > raw->curlen)
918                 goto fail_len;
919         repmsg->u.path_resources.avail_payload_bw_number = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
920         idx += 2;
921         if (idx > raw->curlen)
922                 goto fail_len;
923         return true;
924 fail_len:
925         DRM_DEBUG_KMS("enum resource parse length fail %d %d\n", idx, raw->curlen);
926         return false;
927 }
928
929 static bool drm_dp_sideband_parse_allocate_payload_ack(struct drm_dp_sideband_msg_rx *raw,
930                                                           struct drm_dp_sideband_msg_reply_body *repmsg)
931 {
932         int idx = 1;
933
934         repmsg->u.allocate_payload.port_number = (raw->msg[idx] >> 4) & 0xf;
935         idx++;
936         if (idx > raw->curlen)
937                 goto fail_len;
938         repmsg->u.allocate_payload.vcpi = raw->msg[idx];
939         idx++;
940         if (idx > raw->curlen)
941                 goto fail_len;
942         repmsg->u.allocate_payload.allocated_pbn = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
943         idx += 2;
944         if (idx > raw->curlen)
945                 goto fail_len;
946         return true;
947 fail_len:
948         DRM_DEBUG_KMS("allocate payload parse length fail %d %d\n", idx, raw->curlen);
949         return false;
950 }
951
952 static bool drm_dp_sideband_parse_query_payload_ack(struct drm_dp_sideband_msg_rx *raw,
953                                                     struct drm_dp_sideband_msg_reply_body *repmsg)
954 {
955         int idx = 1;
956
957         repmsg->u.query_payload.port_number = (raw->msg[idx] >> 4) & 0xf;
958         idx++;
959         if (idx > raw->curlen)
960                 goto fail_len;
961         repmsg->u.query_payload.allocated_pbn = (raw->msg[idx] << 8) | (raw->msg[idx + 1]);
962         idx += 2;
963         if (idx > raw->curlen)
964                 goto fail_len;
965         return true;
966 fail_len:
967         DRM_DEBUG_KMS("query payload parse length fail %d %d\n", idx, raw->curlen);
968         return false;
969 }
970
971 static bool drm_dp_sideband_parse_power_updown_phy_ack(struct drm_dp_sideband_msg_rx *raw,
972                                                        struct drm_dp_sideband_msg_reply_body *repmsg)
973 {
974         int idx = 1;
975
976         repmsg->u.port_number.port_number = (raw->msg[idx] >> 4) & 0xf;
977         idx++;
978         if (idx > raw->curlen) {
979                 DRM_DEBUG_KMS("power up/down phy parse length fail %d %d\n",
980                               idx, raw->curlen);
981                 return false;
982         }
983         return true;
984 }
985
986 static bool
987 drm_dp_sideband_parse_query_stream_enc_status(
988                                 struct drm_dp_sideband_msg_rx *raw,
989                                 struct drm_dp_sideband_msg_reply_body *repmsg)
990 {
991         struct drm_dp_query_stream_enc_status_ack_reply *reply;
992
993         reply = &repmsg->u.enc_status;
994
995         reply->stream_id = raw->msg[3];
996
997         reply->reply_signed = raw->msg[2] & BIT(0);
998
999         /*
1000          * NOTE: It's my impression from reading the spec that the below parsing
1001          * is correct. However I noticed while testing with an HDCP 1.4 display
1002          * through an HDCP 2.2 hub that only bit 3 was set. In that case, I
1003          * would expect both bits to be set. So keep the parsing following the
1004          * spec, but beware reality might not match the spec (at least for some
1005          * configurations).
1006          */
1007         reply->hdcp_1x_device_present = raw->msg[2] & BIT(4);
1008         reply->hdcp_2x_device_present = raw->msg[2] & BIT(3);
1009
1010         reply->query_capable_device_present = raw->msg[2] & BIT(5);
1011         reply->legacy_device_present = raw->msg[2] & BIT(6);
1012         reply->unauthorizable_device_present = raw->msg[2] & BIT(7);
1013
1014         reply->auth_completed = !!(raw->msg[1] & BIT(3));
1015         reply->encryption_enabled = !!(raw->msg[1] & BIT(4));
1016         reply->repeater_present = !!(raw->msg[1] & BIT(5));
1017         reply->state = (raw->msg[1] & GENMASK(7, 6)) >> 6;
1018
1019         return true;
1020 }
1021
1022 static bool drm_dp_sideband_parse_reply(const struct drm_dp_mst_topology_mgr *mgr,
1023                                         struct drm_dp_sideband_msg_rx *raw,
1024                                         struct drm_dp_sideband_msg_reply_body *msg)
1025 {
1026         memset(msg, 0, sizeof(*msg));
1027         msg->reply_type = (raw->msg[0] & 0x80) >> 7;
1028         msg->req_type = (raw->msg[0] & 0x7f);
1029
1030         if (msg->reply_type == DP_SIDEBAND_REPLY_NAK) {
1031                 memcpy(msg->u.nak.guid, &raw->msg[1], 16);
1032                 msg->u.nak.reason = raw->msg[17];
1033                 msg->u.nak.nak_data = raw->msg[18];
1034                 return false;
1035         }
1036
1037         switch (msg->req_type) {
1038         case DP_LINK_ADDRESS:
1039                 return drm_dp_sideband_parse_link_address(mgr, raw, msg);
1040         case DP_QUERY_PAYLOAD:
1041                 return drm_dp_sideband_parse_query_payload_ack(raw, msg);
1042         case DP_REMOTE_DPCD_READ:
1043                 return drm_dp_sideband_parse_remote_dpcd_read(raw, msg);
1044         case DP_REMOTE_DPCD_WRITE:
1045                 return drm_dp_sideband_parse_remote_dpcd_write(raw, msg);
1046         case DP_REMOTE_I2C_READ:
1047                 return drm_dp_sideband_parse_remote_i2c_read_ack(raw, msg);
1048         case DP_REMOTE_I2C_WRITE:
1049                 return true; /* since there's nothing to parse */
1050         case DP_ENUM_PATH_RESOURCES:
1051                 return drm_dp_sideband_parse_enum_path_resources_ack(raw, msg);
1052         case DP_ALLOCATE_PAYLOAD:
1053                 return drm_dp_sideband_parse_allocate_payload_ack(raw, msg);
1054         case DP_POWER_DOWN_PHY:
1055         case DP_POWER_UP_PHY:
1056                 return drm_dp_sideband_parse_power_updown_phy_ack(raw, msg);
1057         case DP_CLEAR_PAYLOAD_ID_TABLE:
1058                 return true; /* since there's nothing to parse */
1059         case DP_QUERY_STREAM_ENC_STATUS:
1060                 return drm_dp_sideband_parse_query_stream_enc_status(raw, msg);
1061         default:
1062                 drm_err(mgr->dev, "Got unknown reply 0x%02x (%s)\n",
1063                         msg->req_type, drm_dp_mst_req_type_str(msg->req_type));
1064                 return false;
1065         }
1066 }
1067
1068 static bool
1069 drm_dp_sideband_parse_connection_status_notify(const struct drm_dp_mst_topology_mgr *mgr,
1070                                                struct drm_dp_sideband_msg_rx *raw,
1071                                                struct drm_dp_sideband_msg_req_body *msg)
1072 {
1073         int idx = 1;
1074
1075         msg->u.conn_stat.port_number = (raw->msg[idx] & 0xf0) >> 4;
1076         idx++;
1077         if (idx > raw->curlen)
1078                 goto fail_len;
1079
1080         memcpy(msg->u.conn_stat.guid, &raw->msg[idx], 16);
1081         idx += 16;
1082         if (idx > raw->curlen)
1083                 goto fail_len;
1084
1085         msg->u.conn_stat.legacy_device_plug_status = (raw->msg[idx] >> 6) & 0x1;
1086         msg->u.conn_stat.displayport_device_plug_status = (raw->msg[idx] >> 5) & 0x1;
1087         msg->u.conn_stat.message_capability_status = (raw->msg[idx] >> 4) & 0x1;
1088         msg->u.conn_stat.input_port = (raw->msg[idx] >> 3) & 0x1;
1089         msg->u.conn_stat.peer_device_type = (raw->msg[idx] & 0x7);
1090         idx++;
1091         return true;
1092 fail_len:
1093         drm_dbg_kms(mgr->dev, "connection status reply parse length fail %d %d\n",
1094                     idx, raw->curlen);
1095         return false;
1096 }
1097
1098 static bool drm_dp_sideband_parse_resource_status_notify(const struct drm_dp_mst_topology_mgr *mgr,
1099                                                          struct drm_dp_sideband_msg_rx *raw,
1100                                                          struct drm_dp_sideband_msg_req_body *msg)
1101 {
1102         int idx = 1;
1103
1104         msg->u.resource_stat.port_number = (raw->msg[idx] & 0xf0) >> 4;
1105         idx++;
1106         if (idx > raw->curlen)
1107                 goto fail_len;
1108
1109         memcpy(msg->u.resource_stat.guid, &raw->msg[idx], 16);
1110         idx += 16;
1111         if (idx > raw->curlen)
1112                 goto fail_len;
1113
1114         msg->u.resource_stat.available_pbn = (raw->msg[idx] << 8) | (raw->msg[idx + 1]);
1115         idx++;
1116         return true;
1117 fail_len:
1118         drm_dbg_kms(mgr->dev, "resource status reply parse length fail %d %d\n", idx, raw->curlen);
1119         return false;
1120 }
1121
1122 static bool drm_dp_sideband_parse_req(const struct drm_dp_mst_topology_mgr *mgr,
1123                                       struct drm_dp_sideband_msg_rx *raw,
1124                                       struct drm_dp_sideband_msg_req_body *msg)
1125 {
1126         memset(msg, 0, sizeof(*msg));
1127         msg->req_type = (raw->msg[0] & 0x7f);
1128
1129         switch (msg->req_type) {
1130         case DP_CONNECTION_STATUS_NOTIFY:
1131                 return drm_dp_sideband_parse_connection_status_notify(mgr, raw, msg);
1132         case DP_RESOURCE_STATUS_NOTIFY:
1133                 return drm_dp_sideband_parse_resource_status_notify(mgr, raw, msg);
1134         default:
1135                 drm_err(mgr->dev, "Got unknown request 0x%02x (%s)\n",
1136                         msg->req_type, drm_dp_mst_req_type_str(msg->req_type));
1137                 return false;
1138         }
1139 }
1140
1141 static void build_dpcd_write(struct drm_dp_sideband_msg_tx *msg,
1142                              u8 port_num, u32 offset, u8 num_bytes, u8 *bytes)
1143 {
1144         struct drm_dp_sideband_msg_req_body req;
1145
1146         req.req_type = DP_REMOTE_DPCD_WRITE;
1147         req.u.dpcd_write.port_number = port_num;
1148         req.u.dpcd_write.dpcd_address = offset;
1149         req.u.dpcd_write.num_bytes = num_bytes;
1150         req.u.dpcd_write.bytes = bytes;
1151         drm_dp_encode_sideband_req(&req, msg);
1152 }
1153
1154 static void build_link_address(struct drm_dp_sideband_msg_tx *msg)
1155 {
1156         struct drm_dp_sideband_msg_req_body req;
1157
1158         req.req_type = DP_LINK_ADDRESS;
1159         drm_dp_encode_sideband_req(&req, msg);
1160 }
1161
1162 static void build_clear_payload_id_table(struct drm_dp_sideband_msg_tx *msg)
1163 {
1164         struct drm_dp_sideband_msg_req_body req;
1165
1166         req.req_type = DP_CLEAR_PAYLOAD_ID_TABLE;
1167         drm_dp_encode_sideband_req(&req, msg);
1168         msg->path_msg = true;
1169 }
1170
1171 static int build_enum_path_resources(struct drm_dp_sideband_msg_tx *msg,
1172                                      int port_num)
1173 {
1174         struct drm_dp_sideband_msg_req_body req;
1175
1176         req.req_type = DP_ENUM_PATH_RESOURCES;
1177         req.u.port_num.port_number = port_num;
1178         drm_dp_encode_sideband_req(&req, msg);
1179         msg->path_msg = true;
1180         return 0;
1181 }
1182
1183 static void build_allocate_payload(struct drm_dp_sideband_msg_tx *msg,
1184                                    int port_num,
1185                                    u8 vcpi, uint16_t pbn,
1186                                    u8 number_sdp_streams,
1187                                    u8 *sdp_stream_sink)
1188 {
1189         struct drm_dp_sideband_msg_req_body req;
1190
1191         memset(&req, 0, sizeof(req));
1192         req.req_type = DP_ALLOCATE_PAYLOAD;
1193         req.u.allocate_payload.port_number = port_num;
1194         req.u.allocate_payload.vcpi = vcpi;
1195         req.u.allocate_payload.pbn = pbn;
1196         req.u.allocate_payload.number_sdp_streams = number_sdp_streams;
1197         memcpy(req.u.allocate_payload.sdp_stream_sink, sdp_stream_sink,
1198                    number_sdp_streams);
1199         drm_dp_encode_sideband_req(&req, msg);
1200         msg->path_msg = true;
1201 }
1202
1203 static void build_power_updown_phy(struct drm_dp_sideband_msg_tx *msg,
1204                                    int port_num, bool power_up)
1205 {
1206         struct drm_dp_sideband_msg_req_body req;
1207
1208         if (power_up)
1209                 req.req_type = DP_POWER_UP_PHY;
1210         else
1211                 req.req_type = DP_POWER_DOWN_PHY;
1212
1213         req.u.port_num.port_number = port_num;
1214         drm_dp_encode_sideband_req(&req, msg);
1215         msg->path_msg = true;
1216 }
1217
1218 static int
1219 build_query_stream_enc_status(struct drm_dp_sideband_msg_tx *msg, u8 stream_id,
1220                               u8 *q_id)
1221 {
1222         struct drm_dp_sideband_msg_req_body req;
1223
1224         req.req_type = DP_QUERY_STREAM_ENC_STATUS;
1225         req.u.enc_status.stream_id = stream_id;
1226         memcpy(req.u.enc_status.client_id, q_id,
1227                sizeof(req.u.enc_status.client_id));
1228         req.u.enc_status.stream_event = 0;
1229         req.u.enc_status.valid_stream_event = false;
1230         req.u.enc_status.stream_behavior = 0;
1231         req.u.enc_status.valid_stream_behavior = false;
1232
1233         drm_dp_encode_sideband_req(&req, msg);
1234         return 0;
1235 }
1236
1237 static int drm_dp_mst_assign_payload_id(struct drm_dp_mst_topology_mgr *mgr,
1238                                         struct drm_dp_vcpi *vcpi)
1239 {
1240         int ret, vcpi_ret;
1241
1242         mutex_lock(&mgr->payload_lock);
1243         ret = find_first_zero_bit(&mgr->payload_mask, mgr->max_payloads + 1);
1244         if (ret > mgr->max_payloads) {
1245                 ret = -EINVAL;
1246                 drm_dbg_kms(mgr->dev, "out of payload ids %d\n", ret);
1247                 goto out_unlock;
1248         }
1249
1250         vcpi_ret = find_first_zero_bit(&mgr->vcpi_mask, mgr->max_payloads + 1);
1251         if (vcpi_ret > mgr->max_payloads) {
1252                 ret = -EINVAL;
1253                 drm_dbg_kms(mgr->dev, "out of vcpi ids %d\n", ret);
1254                 goto out_unlock;
1255         }
1256
1257         set_bit(ret, &mgr->payload_mask);
1258         set_bit(vcpi_ret, &mgr->vcpi_mask);
1259         vcpi->vcpi = vcpi_ret + 1;
1260         mgr->proposed_vcpis[ret - 1] = vcpi;
1261 out_unlock:
1262         mutex_unlock(&mgr->payload_lock);
1263         return ret;
1264 }
1265
1266 static void drm_dp_mst_put_payload_id(struct drm_dp_mst_topology_mgr *mgr,
1267                                       int vcpi)
1268 {
1269         int i;
1270
1271         if (vcpi == 0)
1272                 return;
1273
1274         mutex_lock(&mgr->payload_lock);
1275         drm_dbg_kms(mgr->dev, "putting payload %d\n", vcpi);
1276         clear_bit(vcpi - 1, &mgr->vcpi_mask);
1277
1278         for (i = 0; i < mgr->max_payloads; i++) {
1279                 if (mgr->proposed_vcpis[i] &&
1280                     mgr->proposed_vcpis[i]->vcpi == vcpi) {
1281                         mgr->proposed_vcpis[i] = NULL;
1282                         clear_bit(i + 1, &mgr->payload_mask);
1283                 }
1284         }
1285         mutex_unlock(&mgr->payload_lock);
1286 }
1287
1288 static bool check_txmsg_state(struct drm_dp_mst_topology_mgr *mgr,
1289                               struct drm_dp_sideband_msg_tx *txmsg)
1290 {
1291         unsigned int state;
1292
1293         /*
1294          * All updates to txmsg->state are protected by mgr->qlock, and the two
1295          * cases we check here are terminal states. For those the barriers
1296          * provided by the wake_up/wait_event pair are enough.
1297          */
1298         state = READ_ONCE(txmsg->state);
1299         return (state == DRM_DP_SIDEBAND_TX_RX ||
1300                 state == DRM_DP_SIDEBAND_TX_TIMEOUT);
1301 }
1302
1303 static int drm_dp_mst_wait_tx_reply(struct drm_dp_mst_branch *mstb,
1304                                     struct drm_dp_sideband_msg_tx *txmsg)
1305 {
1306         struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
1307         unsigned long wait_timeout = msecs_to_jiffies(4000);
1308         unsigned long wait_expires = jiffies + wait_timeout;
1309         int ret;
1310
1311         for (;;) {
1312                 /*
1313                  * If the driver provides a way for this, change to
1314                  * poll-waiting for the MST reply interrupt if we didn't receive
1315                  * it for 50 msec. This would cater for cases where the HPD
1316                  * pulse signal got lost somewhere, even though the sink raised
1317                  * the corresponding MST interrupt correctly. One example is the
1318                  * Club 3D CAC-1557 TypeC -> DP adapter which for some reason
1319                  * filters out short pulses with a duration less than ~540 usec.
1320                  *
1321                  * The poll period is 50 msec to avoid missing an interrupt
1322                  * after the sink has cleared it (after a 110msec timeout
1323                  * since it raised the interrupt).
1324                  */
1325                 ret = wait_event_timeout(mgr->tx_waitq,
1326                                          check_txmsg_state(mgr, txmsg),
1327                                          mgr->cbs->poll_hpd_irq ?
1328                                                 msecs_to_jiffies(50) :
1329                                                 wait_timeout);
1330
1331                 if (ret || !mgr->cbs->poll_hpd_irq ||
1332                     time_after(jiffies, wait_expires))
1333                         break;
1334
1335                 mgr->cbs->poll_hpd_irq(mgr);
1336         }
1337
1338         mutex_lock(&mgr->qlock);
1339         if (ret > 0) {
1340                 if (txmsg->state == DRM_DP_SIDEBAND_TX_TIMEOUT) {
1341                         ret = -EIO;
1342                         goto out;
1343                 }
1344         } else {
1345                 drm_dbg_kms(mgr->dev, "timedout msg send %p %d %d\n",
1346                             txmsg, txmsg->state, txmsg->seqno);
1347
1348                 /* dump some state */
1349                 ret = -EIO;
1350
1351                 /* remove from q */
1352                 if (txmsg->state == DRM_DP_SIDEBAND_TX_QUEUED ||
1353                     txmsg->state == DRM_DP_SIDEBAND_TX_START_SEND ||
1354                     txmsg->state == DRM_DP_SIDEBAND_TX_SENT)
1355                         list_del(&txmsg->next);
1356         }
1357 out:
1358         if (unlikely(ret == -EIO) && drm_debug_enabled(DRM_UT_DP)) {
1359                 struct drm_printer p = drm_debug_printer(DBG_PREFIX);
1360
1361                 drm_dp_mst_dump_sideband_msg_tx(&p, txmsg);
1362         }
1363         mutex_unlock(&mgr->qlock);
1364
1365         drm_dp_mst_kick_tx(mgr);
1366         return ret;
1367 }
1368
1369 static struct drm_dp_mst_branch *drm_dp_add_mst_branch_device(u8 lct, u8 *rad)
1370 {
1371         struct drm_dp_mst_branch *mstb;
1372
1373         mstb = kzalloc(sizeof(*mstb), GFP_KERNEL);
1374         if (!mstb)
1375                 return NULL;
1376
1377         mstb->lct = lct;
1378         if (lct > 1)
1379                 memcpy(mstb->rad, rad, lct / 2);
1380         INIT_LIST_HEAD(&mstb->ports);
1381         kref_init(&mstb->topology_kref);
1382         kref_init(&mstb->malloc_kref);
1383         return mstb;
1384 }
1385
1386 static void drm_dp_free_mst_branch_device(struct kref *kref)
1387 {
1388         struct drm_dp_mst_branch *mstb =
1389                 container_of(kref, struct drm_dp_mst_branch, malloc_kref);
1390
1391         if (mstb->port_parent)
1392                 drm_dp_mst_put_port_malloc(mstb->port_parent);
1393
1394         kfree(mstb);
1395 }
1396
1397 /**
1398  * DOC: Branch device and port refcounting
1399  *
1400  * Topology refcount overview
1401  * ~~~~~~~~~~~~~~~~~~~~~~~~~~
1402  *
1403  * The refcounting schemes for &struct drm_dp_mst_branch and &struct
1404  * drm_dp_mst_port are somewhat unusual. Both ports and branch devices have
1405  * two different kinds of refcounts: topology refcounts, and malloc refcounts.
1406  *
1407  * Topology refcounts are not exposed to drivers, and are handled internally
1408  * by the DP MST helpers. The helpers use them in order to prevent the
1409  * in-memory topology state from being changed in the middle of critical
1410  * operations like changing the internal state of payload allocations. This
1411  * means each branch and port will be considered to be connected to the rest
1412  * of the topology until its topology refcount reaches zero. Additionally,
1413  * for ports this means that their associated &struct drm_connector will stay
1414  * registered with userspace until the port's refcount reaches 0.
1415  *
1416  * Malloc refcount overview
1417  * ~~~~~~~~~~~~~~~~~~~~~~~~
1418  *
1419  * Malloc references are used to keep a &struct drm_dp_mst_port or &struct
1420  * drm_dp_mst_branch allocated even after all of its topology references have
1421  * been dropped, so that the driver or MST helpers can safely access each
1422  * branch's last known state before it was disconnected from the topology.
1423  * When the malloc refcount of a port or branch reaches 0, the memory
1424  * allocation containing the &struct drm_dp_mst_branch or &struct
1425  * drm_dp_mst_port respectively will be freed.
1426  *
1427  * For &struct drm_dp_mst_branch, malloc refcounts are not currently exposed
1428  * to drivers. As of writing this documentation, there are no drivers that
1429  * have a usecase for accessing &struct drm_dp_mst_branch outside of the MST
1430  * helpers. Exposing this API to drivers in a race-free manner would take more
1431  * tweaking of the refcounting scheme, however patches are welcome provided
1432  * there is a legitimate driver usecase for this.
1433  *
1434  * Refcount relationships in a topology
1435  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1436  *
1437  * Let's take a look at why the relationship between topology and malloc
1438  * refcounts is designed the way it is.
1439  *
1440  * .. kernel-figure:: dp-mst/topology-figure-1.dot
1441  *
1442  *    An example of topology and malloc refs in a DP MST topology with two
1443  *    active payloads. Topology refcount increments are indicated by solid
1444  *    lines, and malloc refcount increments are indicated by dashed lines.
1445  *    Each starts from the branch which incremented the refcount, and ends at
1446  *    the branch to which the refcount belongs to, i.e. the arrow points the
1447  *    same way as the C pointers used to reference a structure.
1448  *
1449  * As you can see in the above figure, every branch increments the topology
1450  * refcount of its children, and increments the malloc refcount of its
1451  * parent. Additionally, every payload increments the malloc refcount of its
1452  * assigned port by 1.
1453  *
1454  * So, what would happen if MSTB #3 from the above figure was unplugged from
1455  * the system, but the driver hadn't yet removed payload #2 from port #3? The
1456  * topology would start to look like the figure below.
1457  *
1458  * .. kernel-figure:: dp-mst/topology-figure-2.dot
1459  *
1460  *    Ports and branch devices which have been released from memory are
1461  *    colored grey, and references which have been removed are colored red.
1462  *
1463  * Whenever a port or branch device's topology refcount reaches zero, it will
1464  * decrement the topology refcounts of all its children, the malloc refcount
1465  * of its parent, and finally its own malloc refcount. For MSTB #4 and port
1466  * #4, this means they both have been disconnected from the topology and freed
1467  * from memory. But, because payload #2 is still holding a reference to port
1468  * #3, port #3 is removed from the topology but its &struct drm_dp_mst_port
1469  * is still accessible from memory. This also means port #3 has not yet
1470  * decremented the malloc refcount of MSTB #3, so its &struct
1471  * drm_dp_mst_branch will also stay allocated in memory until port #3's
1472  * malloc refcount reaches 0.
1473  *
1474  * This relationship is necessary because in order to release payload #2, we
1475  * need to be able to figure out the last relative of port #3 that's still
1476  * connected to the topology. In this case, we would travel up the topology as
1477  * shown below.
1478  *
1479  * .. kernel-figure:: dp-mst/topology-figure-3.dot
1480  *
1481  * And finally, remove payload #2 by communicating with port #2 through
1482  * sideband transactions.
1483  */
1484
1485 /**
1486  * drm_dp_mst_get_mstb_malloc() - Increment the malloc refcount of a branch
1487  * device
1488  * @mstb: The &struct drm_dp_mst_branch to increment the malloc refcount of
1489  *
1490  * Increments &drm_dp_mst_branch.malloc_kref. When
1491  * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1492  * will be released and @mstb may no longer be used.
1493  *
1494  * See also: drm_dp_mst_put_mstb_malloc()
1495  */
1496 static void
1497 drm_dp_mst_get_mstb_malloc(struct drm_dp_mst_branch *mstb)
1498 {
1499         kref_get(&mstb->malloc_kref);
1500         drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->malloc_kref));
1501 }
1502
1503 /**
1504  * drm_dp_mst_put_mstb_malloc() - Decrement the malloc refcount of a branch
1505  * device
1506  * @mstb: The &struct drm_dp_mst_branch to decrement the malloc refcount of
1507  *
1508  * Decrements &drm_dp_mst_branch.malloc_kref. When
1509  * &drm_dp_mst_branch.malloc_kref reaches 0, the memory allocation for @mstb
1510  * will be released and @mstb may no longer be used.
1511  *
1512  * See also: drm_dp_mst_get_mstb_malloc()
1513  */
1514 static void
1515 drm_dp_mst_put_mstb_malloc(struct drm_dp_mst_branch *mstb)
1516 {
1517         drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->malloc_kref) - 1);
1518         kref_put(&mstb->malloc_kref, drm_dp_free_mst_branch_device);
1519 }
1520
1521 static void drm_dp_free_mst_port(struct kref *kref)
1522 {
1523         struct drm_dp_mst_port *port =
1524                 container_of(kref, struct drm_dp_mst_port, malloc_kref);
1525
1526         drm_dp_mst_put_mstb_malloc(port->parent);
1527         kfree(port);
1528 }
1529
1530 /**
1531  * drm_dp_mst_get_port_malloc() - Increment the malloc refcount of an MST port
1532  * @port: The &struct drm_dp_mst_port to increment the malloc refcount of
1533  *
1534  * Increments &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1535  * reaches 0, the memory allocation for @port will be released and @port may
1536  * no longer be used.
1537  *
1538  * Because @port could potentially be freed at any time by the DP MST helpers
1539  * if &drm_dp_mst_port.malloc_kref reaches 0, including during a call to this
1540  * function, drivers that which to make use of &struct drm_dp_mst_port should
1541  * ensure that they grab at least one main malloc reference to their MST ports
1542  * in &drm_dp_mst_topology_cbs.add_connector. This callback is called before
1543  * there is any chance for &drm_dp_mst_port.malloc_kref to reach 0.
1544  *
1545  * See also: drm_dp_mst_put_port_malloc()
1546  */
1547 void
1548 drm_dp_mst_get_port_malloc(struct drm_dp_mst_port *port)
1549 {
1550         kref_get(&port->malloc_kref);
1551         drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->malloc_kref));
1552 }
1553 EXPORT_SYMBOL(drm_dp_mst_get_port_malloc);
1554
1555 /**
1556  * drm_dp_mst_put_port_malloc() - Decrement the malloc refcount of an MST port
1557  * @port: The &struct drm_dp_mst_port to decrement the malloc refcount of
1558  *
1559  * Decrements &drm_dp_mst_port.malloc_kref. When &drm_dp_mst_port.malloc_kref
1560  * reaches 0, the memory allocation for @port will be released and @port may
1561  * no longer be used.
1562  *
1563  * See also: drm_dp_mst_get_port_malloc()
1564  */
1565 void
1566 drm_dp_mst_put_port_malloc(struct drm_dp_mst_port *port)
1567 {
1568         drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->malloc_kref) - 1);
1569         kref_put(&port->malloc_kref, drm_dp_free_mst_port);
1570 }
1571 EXPORT_SYMBOL(drm_dp_mst_put_port_malloc);
1572
1573 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
1574
1575 #define STACK_DEPTH 8
1576
1577 static noinline void
1578 __topology_ref_save(struct drm_dp_mst_topology_mgr *mgr,
1579                     struct drm_dp_mst_topology_ref_history *history,
1580                     enum drm_dp_mst_topology_ref_type type)
1581 {
1582         struct drm_dp_mst_topology_ref_entry *entry = NULL;
1583         depot_stack_handle_t backtrace;
1584         ulong stack_entries[STACK_DEPTH];
1585         uint n;
1586         int i;
1587
1588         n = stack_trace_save(stack_entries, ARRAY_SIZE(stack_entries), 1);
1589         backtrace = stack_depot_save(stack_entries, n, GFP_KERNEL);
1590         if (!backtrace)
1591                 return;
1592
1593         /* Try to find an existing entry for this backtrace */
1594         for (i = 0; i < history->len; i++) {
1595                 if (history->entries[i].backtrace == backtrace) {
1596                         entry = &history->entries[i];
1597                         break;
1598                 }
1599         }
1600
1601         /* Otherwise add one */
1602         if (!entry) {
1603                 struct drm_dp_mst_topology_ref_entry *new;
1604                 int new_len = history->len + 1;
1605
1606                 new = krealloc(history->entries, sizeof(*new) * new_len,
1607                                GFP_KERNEL);
1608                 if (!new)
1609                         return;
1610
1611                 entry = &new[history->len];
1612                 history->len = new_len;
1613                 history->entries = new;
1614
1615                 entry->backtrace = backtrace;
1616                 entry->type = type;
1617                 entry->count = 0;
1618         }
1619         entry->count++;
1620         entry->ts_nsec = ktime_get_ns();
1621 }
1622
1623 static int
1624 topology_ref_history_cmp(const void *a, const void *b)
1625 {
1626         const struct drm_dp_mst_topology_ref_entry *entry_a = a, *entry_b = b;
1627
1628         if (entry_a->ts_nsec > entry_b->ts_nsec)
1629                 return 1;
1630         else if (entry_a->ts_nsec < entry_b->ts_nsec)
1631                 return -1;
1632         else
1633                 return 0;
1634 }
1635
1636 static inline const char *
1637 topology_ref_type_to_str(enum drm_dp_mst_topology_ref_type type)
1638 {
1639         if (type == DRM_DP_MST_TOPOLOGY_REF_GET)
1640                 return "get";
1641         else
1642                 return "put";
1643 }
1644
1645 static void
1646 __dump_topology_ref_history(struct drm_dp_mst_topology_ref_history *history,
1647                             void *ptr, const char *type_str)
1648 {
1649         struct drm_printer p = drm_debug_printer(DBG_PREFIX);
1650         char *buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
1651         int i;
1652
1653         if (!buf)
1654                 return;
1655
1656         if (!history->len)
1657                 goto out;
1658
1659         /* First, sort the list so that it goes from oldest to newest
1660          * reference entry
1661          */
1662         sort(history->entries, history->len, sizeof(*history->entries),
1663              topology_ref_history_cmp, NULL);
1664
1665         drm_printf(&p, "%s (%p) topology count reached 0, dumping history:\n",
1666                    type_str, ptr);
1667
1668         for (i = 0; i < history->len; i++) {
1669                 const struct drm_dp_mst_topology_ref_entry *entry =
1670                         &history->entries[i];
1671                 ulong *entries;
1672                 uint nr_entries;
1673                 u64 ts_nsec = entry->ts_nsec;
1674                 u32 rem_nsec = do_div(ts_nsec, 1000000000);
1675
1676                 nr_entries = stack_depot_fetch(entry->backtrace, &entries);
1677                 stack_trace_snprint(buf, PAGE_SIZE, entries, nr_entries, 4);
1678
1679                 drm_printf(&p, "  %d %ss (last at %5llu.%06u):\n%s",
1680                            entry->count,
1681                            topology_ref_type_to_str(entry->type),
1682                            ts_nsec, rem_nsec / 1000, buf);
1683         }
1684
1685         /* Now free the history, since this is the only time we expose it */
1686         kfree(history->entries);
1687 out:
1688         kfree(buf);
1689 }
1690
1691 static __always_inline void
1692 drm_dp_mst_dump_mstb_topology_history(struct drm_dp_mst_branch *mstb)
1693 {
1694         __dump_topology_ref_history(&mstb->topology_ref_history, mstb,
1695                                     "MSTB");
1696 }
1697
1698 static __always_inline void
1699 drm_dp_mst_dump_port_topology_history(struct drm_dp_mst_port *port)
1700 {
1701         __dump_topology_ref_history(&port->topology_ref_history, port,
1702                                     "Port");
1703 }
1704
1705 static __always_inline void
1706 save_mstb_topology_ref(struct drm_dp_mst_branch *mstb,
1707                        enum drm_dp_mst_topology_ref_type type)
1708 {
1709         __topology_ref_save(mstb->mgr, &mstb->topology_ref_history, type);
1710 }
1711
1712 static __always_inline void
1713 save_port_topology_ref(struct drm_dp_mst_port *port,
1714                        enum drm_dp_mst_topology_ref_type type)
1715 {
1716         __topology_ref_save(port->mgr, &port->topology_ref_history, type);
1717 }
1718
1719 static inline void
1720 topology_ref_history_lock(struct drm_dp_mst_topology_mgr *mgr)
1721 {
1722         mutex_lock(&mgr->topology_ref_history_lock);
1723 }
1724
1725 static inline void
1726 topology_ref_history_unlock(struct drm_dp_mst_topology_mgr *mgr)
1727 {
1728         mutex_unlock(&mgr->topology_ref_history_lock);
1729 }
1730 #else
1731 static inline void
1732 topology_ref_history_lock(struct drm_dp_mst_topology_mgr *mgr) {}
1733 static inline void
1734 topology_ref_history_unlock(struct drm_dp_mst_topology_mgr *mgr) {}
1735 static inline void
1736 drm_dp_mst_dump_mstb_topology_history(struct drm_dp_mst_branch *mstb) {}
1737 static inline void
1738 drm_dp_mst_dump_port_topology_history(struct drm_dp_mst_port *port) {}
1739 #define save_mstb_topology_ref(mstb, type)
1740 #define save_port_topology_ref(port, type)
1741 #endif
1742
1743 static void drm_dp_destroy_mst_branch_device(struct kref *kref)
1744 {
1745         struct drm_dp_mst_branch *mstb =
1746                 container_of(kref, struct drm_dp_mst_branch, topology_kref);
1747         struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
1748
1749         drm_dp_mst_dump_mstb_topology_history(mstb);
1750
1751         INIT_LIST_HEAD(&mstb->destroy_next);
1752
1753         /*
1754          * This can get called under mgr->mutex, so we need to perform the
1755          * actual destruction of the mstb in another worker
1756          */
1757         mutex_lock(&mgr->delayed_destroy_lock);
1758         list_add(&mstb->destroy_next, &mgr->destroy_branch_device_list);
1759         mutex_unlock(&mgr->delayed_destroy_lock);
1760         queue_work(mgr->delayed_destroy_wq, &mgr->delayed_destroy_work);
1761 }
1762
1763 /**
1764  * drm_dp_mst_topology_try_get_mstb() - Increment the topology refcount of a
1765  * branch device unless it's zero
1766  * @mstb: &struct drm_dp_mst_branch to increment the topology refcount of
1767  *
1768  * Attempts to grab a topology reference to @mstb, if it hasn't yet been
1769  * removed from the topology (e.g. &drm_dp_mst_branch.topology_kref has
1770  * reached 0). Holding a topology reference implies that a malloc reference
1771  * will be held to @mstb as long as the user holds the topology reference.
1772  *
1773  * Care should be taken to ensure that the user has at least one malloc
1774  * reference to @mstb. If you already have a topology reference to @mstb, you
1775  * should use drm_dp_mst_topology_get_mstb() instead.
1776  *
1777  * See also:
1778  * drm_dp_mst_topology_get_mstb()
1779  * drm_dp_mst_topology_put_mstb()
1780  *
1781  * Returns:
1782  * * 1: A topology reference was grabbed successfully
1783  * * 0: @port is no longer in the topology, no reference was grabbed
1784  */
1785 static int __must_check
1786 drm_dp_mst_topology_try_get_mstb(struct drm_dp_mst_branch *mstb)
1787 {
1788         int ret;
1789
1790         topology_ref_history_lock(mstb->mgr);
1791         ret = kref_get_unless_zero(&mstb->topology_kref);
1792         if (ret) {
1793                 drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->topology_kref));
1794                 save_mstb_topology_ref(mstb, DRM_DP_MST_TOPOLOGY_REF_GET);
1795         }
1796
1797         topology_ref_history_unlock(mstb->mgr);
1798
1799         return ret;
1800 }
1801
1802 /**
1803  * drm_dp_mst_topology_get_mstb() - Increment the topology refcount of a
1804  * branch device
1805  * @mstb: The &struct drm_dp_mst_branch to increment the topology refcount of
1806  *
1807  * Increments &drm_dp_mst_branch.topology_refcount without checking whether or
1808  * not it's already reached 0. This is only valid to use in scenarios where
1809  * you are already guaranteed to have at least one active topology reference
1810  * to @mstb. Otherwise, drm_dp_mst_topology_try_get_mstb() must be used.
1811  *
1812  * See also:
1813  * drm_dp_mst_topology_try_get_mstb()
1814  * drm_dp_mst_topology_put_mstb()
1815  */
1816 static void drm_dp_mst_topology_get_mstb(struct drm_dp_mst_branch *mstb)
1817 {
1818         topology_ref_history_lock(mstb->mgr);
1819
1820         save_mstb_topology_ref(mstb, DRM_DP_MST_TOPOLOGY_REF_GET);
1821         WARN_ON(kref_read(&mstb->topology_kref) == 0);
1822         kref_get(&mstb->topology_kref);
1823         drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->topology_kref));
1824
1825         topology_ref_history_unlock(mstb->mgr);
1826 }
1827
1828 /**
1829  * drm_dp_mst_topology_put_mstb() - release a topology reference to a branch
1830  * device
1831  * @mstb: The &struct drm_dp_mst_branch to release the topology reference from
1832  *
1833  * Releases a topology reference from @mstb by decrementing
1834  * &drm_dp_mst_branch.topology_kref.
1835  *
1836  * See also:
1837  * drm_dp_mst_topology_try_get_mstb()
1838  * drm_dp_mst_topology_get_mstb()
1839  */
1840 static void
1841 drm_dp_mst_topology_put_mstb(struct drm_dp_mst_branch *mstb)
1842 {
1843         topology_ref_history_lock(mstb->mgr);
1844
1845         drm_dbg(mstb->mgr->dev, "mstb %p (%d)\n", mstb, kref_read(&mstb->topology_kref) - 1);
1846         save_mstb_topology_ref(mstb, DRM_DP_MST_TOPOLOGY_REF_PUT);
1847
1848         topology_ref_history_unlock(mstb->mgr);
1849         kref_put(&mstb->topology_kref, drm_dp_destroy_mst_branch_device);
1850 }
1851
1852 static void drm_dp_destroy_port(struct kref *kref)
1853 {
1854         struct drm_dp_mst_port *port =
1855                 container_of(kref, struct drm_dp_mst_port, topology_kref);
1856         struct drm_dp_mst_topology_mgr *mgr = port->mgr;
1857
1858         drm_dp_mst_dump_port_topology_history(port);
1859
1860         /* There's nothing that needs locking to destroy an input port yet */
1861         if (port->input) {
1862                 drm_dp_mst_put_port_malloc(port);
1863                 return;
1864         }
1865
1866         kfree(port->cached_edid);
1867
1868         /*
1869          * we can't destroy the connector here, as we might be holding the
1870          * mode_config.mutex from an EDID retrieval
1871          */
1872         mutex_lock(&mgr->delayed_destroy_lock);
1873         list_add(&port->next, &mgr->destroy_port_list);
1874         mutex_unlock(&mgr->delayed_destroy_lock);
1875         queue_work(mgr->delayed_destroy_wq, &mgr->delayed_destroy_work);
1876 }
1877
1878 /**
1879  * drm_dp_mst_topology_try_get_port() - Increment the topology refcount of a
1880  * port unless it's zero
1881  * @port: &struct drm_dp_mst_port to increment the topology refcount of
1882  *
1883  * Attempts to grab a topology reference to @port, if it hasn't yet been
1884  * removed from the topology (e.g. &drm_dp_mst_port.topology_kref has reached
1885  * 0). Holding a topology reference implies that a malloc reference will be
1886  * held to @port as long as the user holds the topology reference.
1887  *
1888  * Care should be taken to ensure that the user has at least one malloc
1889  * reference to @port. If you already have a topology reference to @port, you
1890  * should use drm_dp_mst_topology_get_port() instead.
1891  *
1892  * See also:
1893  * drm_dp_mst_topology_get_port()
1894  * drm_dp_mst_topology_put_port()
1895  *
1896  * Returns:
1897  * * 1: A topology reference was grabbed successfully
1898  * * 0: @port is no longer in the topology, no reference was grabbed
1899  */
1900 static int __must_check
1901 drm_dp_mst_topology_try_get_port(struct drm_dp_mst_port *port)
1902 {
1903         int ret;
1904
1905         topology_ref_history_lock(port->mgr);
1906         ret = kref_get_unless_zero(&port->topology_kref);
1907         if (ret) {
1908                 drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->topology_kref));
1909                 save_port_topology_ref(port, DRM_DP_MST_TOPOLOGY_REF_GET);
1910         }
1911
1912         topology_ref_history_unlock(port->mgr);
1913         return ret;
1914 }
1915
1916 /**
1917  * drm_dp_mst_topology_get_port() - Increment the topology refcount of a port
1918  * @port: The &struct drm_dp_mst_port to increment the topology refcount of
1919  *
1920  * Increments &drm_dp_mst_port.topology_refcount without checking whether or
1921  * not it's already reached 0. This is only valid to use in scenarios where
1922  * you are already guaranteed to have at least one active topology reference
1923  * to @port. Otherwise, drm_dp_mst_topology_try_get_port() must be used.
1924  *
1925  * See also:
1926  * drm_dp_mst_topology_try_get_port()
1927  * drm_dp_mst_topology_put_port()
1928  */
1929 static void drm_dp_mst_topology_get_port(struct drm_dp_mst_port *port)
1930 {
1931         topology_ref_history_lock(port->mgr);
1932
1933         WARN_ON(kref_read(&port->topology_kref) == 0);
1934         kref_get(&port->topology_kref);
1935         drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->topology_kref));
1936         save_port_topology_ref(port, DRM_DP_MST_TOPOLOGY_REF_GET);
1937
1938         topology_ref_history_unlock(port->mgr);
1939 }
1940
1941 /**
1942  * drm_dp_mst_topology_put_port() - release a topology reference to a port
1943  * @port: The &struct drm_dp_mst_port to release the topology reference from
1944  *
1945  * Releases a topology reference from @port by decrementing
1946  * &drm_dp_mst_port.topology_kref.
1947  *
1948  * See also:
1949  * drm_dp_mst_topology_try_get_port()
1950  * drm_dp_mst_topology_get_port()
1951  */
1952 static void drm_dp_mst_topology_put_port(struct drm_dp_mst_port *port)
1953 {
1954         topology_ref_history_lock(port->mgr);
1955
1956         drm_dbg(port->mgr->dev, "port %p (%d)\n", port, kref_read(&port->topology_kref) - 1);
1957         save_port_topology_ref(port, DRM_DP_MST_TOPOLOGY_REF_PUT);
1958
1959         topology_ref_history_unlock(port->mgr);
1960         kref_put(&port->topology_kref, drm_dp_destroy_port);
1961 }
1962
1963 static struct drm_dp_mst_branch *
1964 drm_dp_mst_topology_get_mstb_validated_locked(struct drm_dp_mst_branch *mstb,
1965                                               struct drm_dp_mst_branch *to_find)
1966 {
1967         struct drm_dp_mst_port *port;
1968         struct drm_dp_mst_branch *rmstb;
1969
1970         if (to_find == mstb)
1971                 return mstb;
1972
1973         list_for_each_entry(port, &mstb->ports, next) {
1974                 if (port->mstb) {
1975                         rmstb = drm_dp_mst_topology_get_mstb_validated_locked(
1976                             port->mstb, to_find);
1977                         if (rmstb)
1978                                 return rmstb;
1979                 }
1980         }
1981         return NULL;
1982 }
1983
1984 static struct drm_dp_mst_branch *
1985 drm_dp_mst_topology_get_mstb_validated(struct drm_dp_mst_topology_mgr *mgr,
1986                                        struct drm_dp_mst_branch *mstb)
1987 {
1988         struct drm_dp_mst_branch *rmstb = NULL;
1989
1990         mutex_lock(&mgr->lock);
1991         if (mgr->mst_primary) {
1992                 rmstb = drm_dp_mst_topology_get_mstb_validated_locked(
1993                     mgr->mst_primary, mstb);
1994
1995                 if (rmstb && !drm_dp_mst_topology_try_get_mstb(rmstb))
1996                         rmstb = NULL;
1997         }
1998         mutex_unlock(&mgr->lock);
1999         return rmstb;
2000 }
2001
2002 static struct drm_dp_mst_port *
2003 drm_dp_mst_topology_get_port_validated_locked(struct drm_dp_mst_branch *mstb,
2004                                               struct drm_dp_mst_port *to_find)
2005 {
2006         struct drm_dp_mst_port *port, *mport;
2007
2008         list_for_each_entry(port, &mstb->ports, next) {
2009                 if (port == to_find)
2010                         return port;
2011
2012                 if (port->mstb) {
2013                         mport = drm_dp_mst_topology_get_port_validated_locked(
2014                             port->mstb, to_find);
2015                         if (mport)
2016                                 return mport;
2017                 }
2018         }
2019         return NULL;
2020 }
2021
2022 static struct drm_dp_mst_port *
2023 drm_dp_mst_topology_get_port_validated(struct drm_dp_mst_topology_mgr *mgr,
2024                                        struct drm_dp_mst_port *port)
2025 {
2026         struct drm_dp_mst_port *rport = NULL;
2027
2028         mutex_lock(&mgr->lock);
2029         if (mgr->mst_primary) {
2030                 rport = drm_dp_mst_topology_get_port_validated_locked(
2031                     mgr->mst_primary, port);
2032
2033                 if (rport && !drm_dp_mst_topology_try_get_port(rport))
2034                         rport = NULL;
2035         }
2036         mutex_unlock(&mgr->lock);
2037         return rport;
2038 }
2039
2040 static struct drm_dp_mst_port *drm_dp_get_port(struct drm_dp_mst_branch *mstb, u8 port_num)
2041 {
2042         struct drm_dp_mst_port *port;
2043         int ret;
2044
2045         list_for_each_entry(port, &mstb->ports, next) {
2046                 if (port->port_num == port_num) {
2047                         ret = drm_dp_mst_topology_try_get_port(port);
2048                         return ret ? port : NULL;
2049                 }
2050         }
2051
2052         return NULL;
2053 }
2054
2055 /*
2056  * calculate a new RAD for this MST branch device
2057  * if parent has an LCT of 2 then it has 1 nibble of RAD,
2058  * if parent has an LCT of 3 then it has 2 nibbles of RAD,
2059  */
2060 static u8 drm_dp_calculate_rad(struct drm_dp_mst_port *port,
2061                                  u8 *rad)
2062 {
2063         int parent_lct = port->parent->lct;
2064         int shift = 4;
2065         int idx = (parent_lct - 1) / 2;
2066
2067         if (parent_lct > 1) {
2068                 memcpy(rad, port->parent->rad, idx + 1);
2069                 shift = (parent_lct % 2) ? 4 : 0;
2070         } else
2071                 rad[0] = 0;
2072
2073         rad[idx] |= port->port_num << shift;
2074         return parent_lct + 1;
2075 }
2076
2077 static bool drm_dp_mst_is_end_device(u8 pdt, bool mcs)
2078 {
2079         switch (pdt) {
2080         case DP_PEER_DEVICE_DP_LEGACY_CONV:
2081         case DP_PEER_DEVICE_SST_SINK:
2082                 return true;
2083         case DP_PEER_DEVICE_MST_BRANCHING:
2084                 /* For sst branch device */
2085                 if (!mcs)
2086                         return true;
2087
2088                 return false;
2089         }
2090         return true;
2091 }
2092
2093 static int
2094 drm_dp_port_set_pdt(struct drm_dp_mst_port *port, u8 new_pdt,
2095                     bool new_mcs)
2096 {
2097         struct drm_dp_mst_topology_mgr *mgr = port->mgr;
2098         struct drm_dp_mst_branch *mstb;
2099         u8 rad[8], lct;
2100         int ret = 0;
2101
2102         if (port->pdt == new_pdt && port->mcs == new_mcs)
2103                 return 0;
2104
2105         /* Teardown the old pdt, if there is one */
2106         if (port->pdt != DP_PEER_DEVICE_NONE) {
2107                 if (drm_dp_mst_is_end_device(port->pdt, port->mcs)) {
2108                         /*
2109                          * If the new PDT would also have an i2c bus,
2110                          * don't bother with reregistering it
2111                          */
2112                         if (new_pdt != DP_PEER_DEVICE_NONE &&
2113                             drm_dp_mst_is_end_device(new_pdt, new_mcs)) {
2114                                 port->pdt = new_pdt;
2115                                 port->mcs = new_mcs;
2116                                 return 0;
2117                         }
2118
2119                         /* remove i2c over sideband */
2120                         drm_dp_mst_unregister_i2c_bus(port);
2121                 } else {
2122                         mutex_lock(&mgr->lock);
2123                         drm_dp_mst_topology_put_mstb(port->mstb);
2124                         port->mstb = NULL;
2125                         mutex_unlock(&mgr->lock);
2126                 }
2127         }
2128
2129         port->pdt = new_pdt;
2130         port->mcs = new_mcs;
2131
2132         if (port->pdt != DP_PEER_DEVICE_NONE) {
2133                 if (drm_dp_mst_is_end_device(port->pdt, port->mcs)) {
2134                         /* add i2c over sideband */
2135                         ret = drm_dp_mst_register_i2c_bus(port);
2136                 } else {
2137                         lct = drm_dp_calculate_rad(port, rad);
2138                         mstb = drm_dp_add_mst_branch_device(lct, rad);
2139                         if (!mstb) {
2140                                 ret = -ENOMEM;
2141                                 drm_err(mgr->dev, "Failed to create MSTB for port %p", port);
2142                                 goto out;
2143                         }
2144
2145                         mutex_lock(&mgr->lock);
2146                         port->mstb = mstb;
2147                         mstb->mgr = port->mgr;
2148                         mstb->port_parent = port;
2149
2150                         /*
2151                          * Make sure this port's memory allocation stays
2152                          * around until its child MSTB releases it
2153                          */
2154                         drm_dp_mst_get_port_malloc(port);
2155                         mutex_unlock(&mgr->lock);
2156
2157                         /* And make sure we send a link address for this */
2158                         ret = 1;
2159                 }
2160         }
2161
2162 out:
2163         if (ret < 0)
2164                 port->pdt = DP_PEER_DEVICE_NONE;
2165         return ret;
2166 }
2167
2168 /**
2169  * drm_dp_mst_dpcd_read() - read a series of bytes from the DPCD via sideband
2170  * @aux: Fake sideband AUX CH
2171  * @offset: address of the (first) register to read
2172  * @buffer: buffer to store the register values
2173  * @size: number of bytes in @buffer
2174  *
2175  * Performs the same functionality for remote devices via
2176  * sideband messaging as drm_dp_dpcd_read() does for local
2177  * devices via actual AUX CH.
2178  *
2179  * Return: Number of bytes read, or negative error code on failure.
2180  */
2181 ssize_t drm_dp_mst_dpcd_read(struct drm_dp_aux *aux,
2182                              unsigned int offset, void *buffer, size_t size)
2183 {
2184         struct drm_dp_mst_port *port = container_of(aux, struct drm_dp_mst_port,
2185                                                     aux);
2186
2187         return drm_dp_send_dpcd_read(port->mgr, port,
2188                                      offset, size, buffer);
2189 }
2190
2191 /**
2192  * drm_dp_mst_dpcd_write() - write a series of bytes to the DPCD via sideband
2193  * @aux: Fake sideband AUX CH
2194  * @offset: address of the (first) register to write
2195  * @buffer: buffer containing the values to write
2196  * @size: number of bytes in @buffer
2197  *
2198  * Performs the same functionality for remote devices via
2199  * sideband messaging as drm_dp_dpcd_write() does for local
2200  * devices via actual AUX CH.
2201  *
2202  * Return: number of bytes written on success, negative error code on failure.
2203  */
2204 ssize_t drm_dp_mst_dpcd_write(struct drm_dp_aux *aux,
2205                               unsigned int offset, void *buffer, size_t size)
2206 {
2207         struct drm_dp_mst_port *port = container_of(aux, struct drm_dp_mst_port,
2208                                                     aux);
2209
2210         return drm_dp_send_dpcd_write(port->mgr, port,
2211                                       offset, size, buffer);
2212 }
2213
2214 static int drm_dp_check_mstb_guid(struct drm_dp_mst_branch *mstb, u8 *guid)
2215 {
2216         int ret = 0;
2217
2218         memcpy(mstb->guid, guid, 16);
2219
2220         if (!drm_dp_validate_guid(mstb->mgr, mstb->guid)) {
2221                 if (mstb->port_parent) {
2222                         ret = drm_dp_send_dpcd_write(mstb->mgr,
2223                                                      mstb->port_parent,
2224                                                      DP_GUID, 16, mstb->guid);
2225                 } else {
2226                         ret = drm_dp_dpcd_write(mstb->mgr->aux,
2227                                                 DP_GUID, mstb->guid, 16);
2228                 }
2229         }
2230
2231         if (ret < 16 && ret > 0)
2232                 return -EPROTO;
2233
2234         return ret == 16 ? 0 : ret;
2235 }
2236
2237 static void build_mst_prop_path(const struct drm_dp_mst_branch *mstb,
2238                                 int pnum,
2239                                 char *proppath,
2240                                 size_t proppath_size)
2241 {
2242         int i;
2243         char temp[8];
2244
2245         snprintf(proppath, proppath_size, "mst:%d", mstb->mgr->conn_base_id);
2246         for (i = 0; i < (mstb->lct - 1); i++) {
2247                 int shift = (i % 2) ? 0 : 4;
2248                 int port_num = (mstb->rad[i / 2] >> shift) & 0xf;
2249
2250                 snprintf(temp, sizeof(temp), "-%d", port_num);
2251                 strlcat(proppath, temp, proppath_size);
2252         }
2253         snprintf(temp, sizeof(temp), "-%d", pnum);
2254         strlcat(proppath, temp, proppath_size);
2255 }
2256
2257 /**
2258  * drm_dp_mst_connector_late_register() - Late MST connector registration
2259  * @connector: The MST connector
2260  * @port: The MST port for this connector
2261  *
2262  * Helper to register the remote aux device for this MST port. Drivers should
2263  * call this from their mst connector's late_register hook to enable MST aux
2264  * devices.
2265  *
2266  * Return: 0 on success, negative error code on failure.
2267  */
2268 int drm_dp_mst_connector_late_register(struct drm_connector *connector,
2269                                        struct drm_dp_mst_port *port)
2270 {
2271         drm_dbg_kms(port->mgr->dev, "registering %s remote bus for %s\n",
2272                     port->aux.name, connector->kdev->kobj.name);
2273
2274         port->aux.dev = connector->kdev;
2275         return drm_dp_aux_register_devnode(&port->aux);
2276 }
2277 EXPORT_SYMBOL(drm_dp_mst_connector_late_register);
2278
2279 /**
2280  * drm_dp_mst_connector_early_unregister() - Early MST connector unregistration
2281  * @connector: The MST connector
2282  * @port: The MST port for this connector
2283  *
2284  * Helper to unregister the remote aux device for this MST port, registered by
2285  * drm_dp_mst_connector_late_register(). Drivers should call this from their mst
2286  * connector's early_unregister hook.
2287  */
2288 void drm_dp_mst_connector_early_unregister(struct drm_connector *connector,
2289                                            struct drm_dp_mst_port *port)
2290 {
2291         drm_dbg_kms(port->mgr->dev, "unregistering %s remote bus for %s\n",
2292                     port->aux.name, connector->kdev->kobj.name);
2293         drm_dp_aux_unregister_devnode(&port->aux);
2294 }
2295 EXPORT_SYMBOL(drm_dp_mst_connector_early_unregister);
2296
2297 static void
2298 drm_dp_mst_port_add_connector(struct drm_dp_mst_branch *mstb,
2299                               struct drm_dp_mst_port *port)
2300 {
2301         struct drm_dp_mst_topology_mgr *mgr = port->mgr;
2302         char proppath[255];
2303         int ret;
2304
2305         build_mst_prop_path(mstb, port->port_num, proppath, sizeof(proppath));
2306         port->connector = mgr->cbs->add_connector(mgr, port, proppath);
2307         if (!port->connector) {
2308                 ret = -ENOMEM;
2309                 goto error;
2310         }
2311
2312         if (port->pdt != DP_PEER_DEVICE_NONE &&
2313             drm_dp_mst_is_end_device(port->pdt, port->mcs) &&
2314             port->port_num >= DP_MST_LOGICAL_PORT_0)
2315                 port->cached_edid = drm_get_edid(port->connector,
2316                                                  &port->aux.ddc);
2317
2318         drm_connector_register(port->connector);
2319         return;
2320
2321 error:
2322         drm_err(mgr->dev, "Failed to create connector for port %p: %d\n", port, ret);
2323 }
2324
2325 /*
2326  * Drop a topology reference, and unlink the port from the in-memory topology
2327  * layout
2328  */
2329 static void
2330 drm_dp_mst_topology_unlink_port(struct drm_dp_mst_topology_mgr *mgr,
2331                                 struct drm_dp_mst_port *port)
2332 {
2333         mutex_lock(&mgr->lock);
2334         port->parent->num_ports--;
2335         list_del(&port->next);
2336         mutex_unlock(&mgr->lock);
2337         drm_dp_mst_topology_put_port(port);
2338 }
2339
2340 static struct drm_dp_mst_port *
2341 drm_dp_mst_add_port(struct drm_device *dev,
2342                     struct drm_dp_mst_topology_mgr *mgr,
2343                     struct drm_dp_mst_branch *mstb, u8 port_number)
2344 {
2345         struct drm_dp_mst_port *port = kzalloc(sizeof(*port), GFP_KERNEL);
2346
2347         if (!port)
2348                 return NULL;
2349
2350         kref_init(&port->topology_kref);
2351         kref_init(&port->malloc_kref);
2352         port->parent = mstb;
2353         port->port_num = port_number;
2354         port->mgr = mgr;
2355         port->aux.name = "DPMST";
2356         port->aux.dev = dev->dev;
2357         port->aux.is_remote = true;
2358
2359         /* initialize the MST downstream port's AUX crc work queue */
2360         port->aux.drm_dev = dev;
2361         drm_dp_remote_aux_init(&port->aux);
2362
2363         /*
2364          * Make sure the memory allocation for our parent branch stays
2365          * around until our own memory allocation is released
2366          */
2367         drm_dp_mst_get_mstb_malloc(mstb);
2368
2369         return port;
2370 }
2371
2372 static int
2373 drm_dp_mst_handle_link_address_port(struct drm_dp_mst_branch *mstb,
2374                                     struct drm_device *dev,
2375                                     struct drm_dp_link_addr_reply_port *port_msg)
2376 {
2377         struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
2378         struct drm_dp_mst_port *port;
2379         int old_ddps = 0, ret;
2380         u8 new_pdt = DP_PEER_DEVICE_NONE;
2381         bool new_mcs = 0;
2382         bool created = false, send_link_addr = false, changed = false;
2383
2384         port = drm_dp_get_port(mstb, port_msg->port_number);
2385         if (!port) {
2386                 port = drm_dp_mst_add_port(dev, mgr, mstb,
2387                                            port_msg->port_number);
2388                 if (!port)
2389                         return -ENOMEM;
2390                 created = true;
2391                 changed = true;
2392         } else if (!port->input && port_msg->input_port && port->connector) {
2393                 /* Since port->connector can't be changed here, we create a
2394                  * new port if input_port changes from 0 to 1
2395                  */
2396                 drm_dp_mst_topology_unlink_port(mgr, port);
2397                 drm_dp_mst_topology_put_port(port);
2398                 port = drm_dp_mst_add_port(dev, mgr, mstb,
2399                                            port_msg->port_number);
2400                 if (!port)
2401                         return -ENOMEM;
2402                 changed = true;
2403                 created = true;
2404         } else if (port->input && !port_msg->input_port) {
2405                 changed = true;
2406         } else if (port->connector) {
2407                 /* We're updating a port that's exposed to userspace, so do it
2408                  * under lock
2409                  */
2410                 drm_modeset_lock(&mgr->base.lock, NULL);
2411
2412                 old_ddps = port->ddps;
2413                 changed = port->ddps != port_msg->ddps ||
2414                         (port->ddps &&
2415                          (port->ldps != port_msg->legacy_device_plug_status ||
2416                           port->dpcd_rev != port_msg->dpcd_revision ||
2417                           port->mcs != port_msg->mcs ||
2418                           port->pdt != port_msg->peer_device_type ||
2419                           port->num_sdp_stream_sinks !=
2420                           port_msg->num_sdp_stream_sinks));
2421         }
2422
2423         port->input = port_msg->input_port;
2424         if (!port->input)
2425                 new_pdt = port_msg->peer_device_type;
2426         new_mcs = port_msg->mcs;
2427         port->ddps = port_msg->ddps;
2428         port->ldps = port_msg->legacy_device_plug_status;
2429         port->dpcd_rev = port_msg->dpcd_revision;
2430         port->num_sdp_streams = port_msg->num_sdp_streams;
2431         port->num_sdp_stream_sinks = port_msg->num_sdp_stream_sinks;
2432
2433         /* manage mstb port lists with mgr lock - take a reference
2434            for this list */
2435         if (created) {
2436                 mutex_lock(&mgr->lock);
2437                 drm_dp_mst_topology_get_port(port);
2438                 list_add(&port->next, &mstb->ports);
2439                 mstb->num_ports++;
2440                 mutex_unlock(&mgr->lock);
2441         }
2442
2443         /*
2444          * Reprobe PBN caps on both hotplug, and when re-probing the link
2445          * for our parent mstb
2446          */
2447         if (old_ddps != port->ddps || !created) {
2448                 if (port->ddps && !port->input) {
2449                         ret = drm_dp_send_enum_path_resources(mgr, mstb,
2450                                                               port);
2451                         if (ret == 1)
2452                                 changed = true;
2453                 } else {
2454                         port->full_pbn = 0;
2455                 }
2456         }
2457
2458         ret = drm_dp_port_set_pdt(port, new_pdt, new_mcs);
2459         if (ret == 1) {
2460                 send_link_addr = true;
2461         } else if (ret < 0) {
2462                 drm_err(dev, "Failed to change PDT on port %p: %d\n", port, ret);
2463                 goto fail;
2464         }
2465
2466         /*
2467          * If this port wasn't just created, then we're reprobing because
2468          * we're coming out of suspend. In this case, always resend the link
2469          * address if there's an MSTB on this port
2470          */
2471         if (!created && port->pdt == DP_PEER_DEVICE_MST_BRANCHING &&
2472             port->mcs)
2473                 send_link_addr = true;
2474
2475         if (port->connector)
2476                 drm_modeset_unlock(&mgr->base.lock);
2477         else if (!port->input)
2478                 drm_dp_mst_port_add_connector(mstb, port);
2479
2480         if (send_link_addr && port->mstb) {
2481                 ret = drm_dp_send_link_address(mgr, port->mstb);
2482                 if (ret == 1) /* MSTB below us changed */
2483                         changed = true;
2484                 else if (ret < 0)
2485                         goto fail_put;
2486         }
2487
2488         /* put reference to this port */
2489         drm_dp_mst_topology_put_port(port);
2490         return changed;
2491
2492 fail:
2493         drm_dp_mst_topology_unlink_port(mgr, port);
2494         if (port->connector)
2495                 drm_modeset_unlock(&mgr->base.lock);
2496 fail_put:
2497         drm_dp_mst_topology_put_port(port);
2498         return ret;
2499 }
2500
2501 static void
2502 drm_dp_mst_handle_conn_stat(struct drm_dp_mst_branch *mstb,
2503                             struct drm_dp_connection_status_notify *conn_stat)
2504 {
2505         struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
2506         struct drm_dp_mst_port *port;
2507         int old_ddps, ret;
2508         u8 new_pdt;
2509         bool new_mcs;
2510         bool dowork = false, create_connector = false;
2511
2512         port = drm_dp_get_port(mstb, conn_stat->port_number);
2513         if (!port)
2514                 return;
2515
2516         if (port->connector) {
2517                 if (!port->input && conn_stat->input_port) {
2518                         /*
2519                          * We can't remove a connector from an already exposed
2520                          * port, so just throw the port out and make sure we
2521                          * reprobe the link address of it's parent MSTB
2522                          */
2523                         drm_dp_mst_topology_unlink_port(mgr, port);
2524                         mstb->link_address_sent = false;
2525                         dowork = true;
2526                         goto out;
2527                 }
2528
2529                 /* Locking is only needed if the port's exposed to userspace */
2530                 drm_modeset_lock(&mgr->base.lock, NULL);
2531         } else if (port->input && !conn_stat->input_port) {
2532                 create_connector = true;
2533                 /* Reprobe link address so we get num_sdp_streams */
2534                 mstb->link_address_sent = false;
2535                 dowork = true;
2536         }
2537
2538         old_ddps = port->ddps;
2539         port->input = conn_stat->input_port;
2540         port->ldps = conn_stat->legacy_device_plug_status;
2541         port->ddps = conn_stat->displayport_device_plug_status;
2542
2543         if (old_ddps != port->ddps) {
2544                 if (port->ddps && !port->input)
2545                         drm_dp_send_enum_path_resources(mgr, mstb, port);
2546                 else
2547                         port->full_pbn = 0;
2548         }
2549
2550         new_pdt = port->input ? DP_PEER_DEVICE_NONE : conn_stat->peer_device_type;
2551         new_mcs = conn_stat->message_capability_status;
2552         ret = drm_dp_port_set_pdt(port, new_pdt, new_mcs);
2553         if (ret == 1) {
2554                 dowork = true;
2555         } else if (ret < 0) {
2556                 drm_err(mgr->dev, "Failed to change PDT for port %p: %d\n", port, ret);
2557                 dowork = false;
2558         }
2559
2560         if (port->connector)
2561                 drm_modeset_unlock(&mgr->base.lock);
2562         else if (create_connector)
2563                 drm_dp_mst_port_add_connector(mstb, port);
2564
2565 out:
2566         drm_dp_mst_topology_put_port(port);
2567         if (dowork)
2568                 queue_work(system_long_wq, &mstb->mgr->work);
2569 }
2570
2571 static struct drm_dp_mst_branch *drm_dp_get_mst_branch_device(struct drm_dp_mst_topology_mgr *mgr,
2572                                                                u8 lct, u8 *rad)
2573 {
2574         struct drm_dp_mst_branch *mstb;
2575         struct drm_dp_mst_port *port;
2576         int i, ret;
2577         /* find the port by iterating down */
2578
2579         mutex_lock(&mgr->lock);
2580         mstb = mgr->mst_primary;
2581
2582         if (!mstb)
2583                 goto out;
2584
2585         for (i = 0; i < lct - 1; i++) {
2586                 int shift = (i % 2) ? 0 : 4;
2587                 int port_num = (rad[i / 2] >> shift) & 0xf;
2588
2589                 list_for_each_entry(port, &mstb->ports, next) {
2590                         if (port->port_num == port_num) {
2591                                 mstb = port->mstb;
2592                                 if (!mstb) {
2593                                         drm_err(mgr->dev,
2594                                                 "failed to lookup MSTB with lct %d, rad %02x\n",
2595                                                 lct, rad[0]);
2596                                         goto out;
2597                                 }
2598
2599                                 break;
2600                         }
2601                 }
2602         }
2603         ret = drm_dp_mst_topology_try_get_mstb(mstb);
2604         if (!ret)
2605                 mstb = NULL;
2606 out:
2607         mutex_unlock(&mgr->lock);
2608         return mstb;
2609 }
2610
2611 static struct drm_dp_mst_branch *get_mst_branch_device_by_guid_helper(
2612         struct drm_dp_mst_branch *mstb,
2613         const uint8_t *guid)
2614 {
2615         struct drm_dp_mst_branch *found_mstb;
2616         struct drm_dp_mst_port *port;
2617
2618         if (memcmp(mstb->guid, guid, 16) == 0)
2619                 return mstb;
2620
2621
2622         list_for_each_entry(port, &mstb->ports, next) {
2623                 if (!port->mstb)
2624                         continue;
2625
2626                 found_mstb = get_mst_branch_device_by_guid_helper(port->mstb, guid);
2627
2628                 if (found_mstb)
2629                         return found_mstb;
2630         }
2631
2632         return NULL;
2633 }
2634
2635 static struct drm_dp_mst_branch *
2636 drm_dp_get_mst_branch_device_by_guid(struct drm_dp_mst_topology_mgr *mgr,
2637                                      const uint8_t *guid)
2638 {
2639         struct drm_dp_mst_branch *mstb;
2640         int ret;
2641
2642         /* find the port by iterating down */
2643         mutex_lock(&mgr->lock);
2644
2645         mstb = get_mst_branch_device_by_guid_helper(mgr->mst_primary, guid);
2646         if (mstb) {
2647                 ret = drm_dp_mst_topology_try_get_mstb(mstb);
2648                 if (!ret)
2649                         mstb = NULL;
2650         }
2651
2652         mutex_unlock(&mgr->lock);
2653         return mstb;
2654 }
2655
2656 static int drm_dp_check_and_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
2657                                                struct drm_dp_mst_branch *mstb)
2658 {
2659         struct drm_dp_mst_port *port;
2660         int ret;
2661         bool changed = false;
2662
2663         if (!mstb->link_address_sent) {
2664                 ret = drm_dp_send_link_address(mgr, mstb);
2665                 if (ret == 1)
2666                         changed = true;
2667                 else if (ret < 0)
2668                         return ret;
2669         }
2670
2671         list_for_each_entry(port, &mstb->ports, next) {
2672                 struct drm_dp_mst_branch *mstb_child = NULL;
2673
2674                 if (port->input || !port->ddps)
2675                         continue;
2676
2677                 if (port->mstb)
2678                         mstb_child = drm_dp_mst_topology_get_mstb_validated(
2679                             mgr, port->mstb);
2680
2681                 if (mstb_child) {
2682                         ret = drm_dp_check_and_send_link_address(mgr,
2683                                                                  mstb_child);
2684                         drm_dp_mst_topology_put_mstb(mstb_child);
2685                         if (ret == 1)
2686                                 changed = true;
2687                         else if (ret < 0)
2688                                 return ret;
2689                 }
2690         }
2691
2692         return changed;
2693 }
2694
2695 static void drm_dp_mst_link_probe_work(struct work_struct *work)
2696 {
2697         struct drm_dp_mst_topology_mgr *mgr =
2698                 container_of(work, struct drm_dp_mst_topology_mgr, work);
2699         struct drm_device *dev = mgr->dev;
2700         struct drm_dp_mst_branch *mstb;
2701         int ret;
2702         bool clear_payload_id_table;
2703
2704         mutex_lock(&mgr->probe_lock);
2705
2706         mutex_lock(&mgr->lock);
2707         clear_payload_id_table = !mgr->payload_id_table_cleared;
2708         mgr->payload_id_table_cleared = true;
2709
2710         mstb = mgr->mst_primary;
2711         if (mstb) {
2712                 ret = drm_dp_mst_topology_try_get_mstb(mstb);
2713                 if (!ret)
2714                         mstb = NULL;
2715         }
2716         mutex_unlock(&mgr->lock);
2717         if (!mstb) {
2718                 mutex_unlock(&mgr->probe_lock);
2719                 return;
2720         }
2721
2722         /*
2723          * Certain branch devices seem to incorrectly report an available_pbn
2724          * of 0 on downstream sinks, even after clearing the
2725          * DP_PAYLOAD_ALLOCATE_* registers in
2726          * drm_dp_mst_topology_mgr_set_mst(). Namely, the CableMatters USB-C
2727          * 2x DP hub. Sending a CLEAR_PAYLOAD_ID_TABLE message seems to make
2728          * things work again.
2729          */
2730         if (clear_payload_id_table) {
2731                 drm_dbg_kms(dev, "Clearing payload ID table\n");
2732                 drm_dp_send_clear_payload_id_table(mgr, mstb);
2733         }
2734
2735         ret = drm_dp_check_and_send_link_address(mgr, mstb);
2736         drm_dp_mst_topology_put_mstb(mstb);
2737
2738         mutex_unlock(&mgr->probe_lock);
2739         if (ret > 0)
2740                 drm_kms_helper_hotplug_event(dev);
2741 }
2742
2743 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
2744                                  u8 *guid)
2745 {
2746         u64 salt;
2747
2748         if (memchr_inv(guid, 0, 16))
2749                 return true;
2750
2751         salt = get_jiffies_64();
2752
2753         memcpy(&guid[0], &salt, sizeof(u64));
2754         memcpy(&guid[8], &salt, sizeof(u64));
2755
2756         return false;
2757 }
2758
2759 static void build_dpcd_read(struct drm_dp_sideband_msg_tx *msg,
2760                             u8 port_num, u32 offset, u8 num_bytes)
2761 {
2762         struct drm_dp_sideband_msg_req_body req;
2763
2764         req.req_type = DP_REMOTE_DPCD_READ;
2765         req.u.dpcd_read.port_number = port_num;
2766         req.u.dpcd_read.dpcd_address = offset;
2767         req.u.dpcd_read.num_bytes = num_bytes;
2768         drm_dp_encode_sideband_req(&req, msg);
2769 }
2770
2771 static int drm_dp_send_sideband_msg(struct drm_dp_mst_topology_mgr *mgr,
2772                                     bool up, u8 *msg, int len)
2773 {
2774         int ret;
2775         int regbase = up ? DP_SIDEBAND_MSG_UP_REP_BASE : DP_SIDEBAND_MSG_DOWN_REQ_BASE;
2776         int tosend, total, offset;
2777         int retries = 0;
2778
2779 retry:
2780         total = len;
2781         offset = 0;
2782         do {
2783                 tosend = min3(mgr->max_dpcd_transaction_bytes, 16, total);
2784
2785                 ret = drm_dp_dpcd_write(mgr->aux, regbase + offset,
2786                                         &msg[offset],
2787                                         tosend);
2788                 if (ret != tosend) {
2789                         if (ret == -EIO && retries < 5) {
2790                                 retries++;
2791                                 goto retry;
2792                         }
2793                         drm_dbg_kms(mgr->dev, "failed to dpcd write %d %d\n", tosend, ret);
2794
2795                         return -EIO;
2796                 }
2797                 offset += tosend;
2798                 total -= tosend;
2799         } while (total > 0);
2800         return 0;
2801 }
2802
2803 static int set_hdr_from_dst_qlock(struct drm_dp_sideband_msg_hdr *hdr,
2804                                   struct drm_dp_sideband_msg_tx *txmsg)
2805 {
2806         struct drm_dp_mst_branch *mstb = txmsg->dst;
2807         u8 req_type;
2808
2809         req_type = txmsg->msg[0] & 0x7f;
2810         if (req_type == DP_CONNECTION_STATUS_NOTIFY ||
2811                 req_type == DP_RESOURCE_STATUS_NOTIFY ||
2812                 req_type == DP_CLEAR_PAYLOAD_ID_TABLE)
2813                 hdr->broadcast = 1;
2814         else
2815                 hdr->broadcast = 0;
2816         hdr->path_msg = txmsg->path_msg;
2817         if (hdr->broadcast) {
2818                 hdr->lct = 1;
2819                 hdr->lcr = 6;
2820         } else {
2821                 hdr->lct = mstb->lct;
2822                 hdr->lcr = mstb->lct - 1;
2823         }
2824
2825         memcpy(hdr->rad, mstb->rad, hdr->lct / 2);
2826
2827         return 0;
2828 }
2829 /*
2830  * process a single block of the next message in the sideband queue
2831  */
2832 static int process_single_tx_qlock(struct drm_dp_mst_topology_mgr *mgr,
2833                                    struct drm_dp_sideband_msg_tx *txmsg,
2834                                    bool up)
2835 {
2836         u8 chunk[48];
2837         struct drm_dp_sideband_msg_hdr hdr;
2838         int len, space, idx, tosend;
2839         int ret;
2840
2841         if (txmsg->state == DRM_DP_SIDEBAND_TX_SENT)
2842                 return 0;
2843
2844         memset(&hdr, 0, sizeof(struct drm_dp_sideband_msg_hdr));
2845
2846         if (txmsg->state == DRM_DP_SIDEBAND_TX_QUEUED)
2847                 txmsg->state = DRM_DP_SIDEBAND_TX_START_SEND;
2848
2849         /* make hdr from dst mst */
2850         ret = set_hdr_from_dst_qlock(&hdr, txmsg);
2851         if (ret < 0)
2852                 return ret;
2853
2854         /* amount left to send in this message */
2855         len = txmsg->cur_len - txmsg->cur_offset;
2856
2857         /* 48 - sideband msg size - 1 byte for data CRC, x header bytes */
2858         space = 48 - 1 - drm_dp_calc_sb_hdr_size(&hdr);
2859
2860         tosend = min(len, space);
2861         if (len == txmsg->cur_len)
2862                 hdr.somt = 1;
2863         if (space >= len)
2864                 hdr.eomt = 1;
2865
2866
2867         hdr.msg_len = tosend + 1;
2868         drm_dp_encode_sideband_msg_hdr(&hdr, chunk, &idx);
2869         memcpy(&chunk[idx], &txmsg->msg[txmsg->cur_offset], tosend);
2870         /* add crc at end */
2871         drm_dp_crc_sideband_chunk_req(&chunk[idx], tosend);
2872         idx += tosend + 1;
2873
2874         ret = drm_dp_send_sideband_msg(mgr, up, chunk, idx);
2875         if (unlikely(ret) && drm_debug_enabled(DRM_UT_DP)) {
2876                 struct drm_printer p = drm_debug_printer(DBG_PREFIX);
2877
2878                 drm_printf(&p, "sideband msg failed to send\n");
2879                 drm_dp_mst_dump_sideband_msg_tx(&p, txmsg);
2880                 return ret;
2881         }
2882
2883         txmsg->cur_offset += tosend;
2884         if (txmsg->cur_offset == txmsg->cur_len) {
2885                 txmsg->state = DRM_DP_SIDEBAND_TX_SENT;
2886                 return 1;
2887         }
2888         return 0;
2889 }
2890
2891 static void process_single_down_tx_qlock(struct drm_dp_mst_topology_mgr *mgr)
2892 {
2893         struct drm_dp_sideband_msg_tx *txmsg;
2894         int ret;
2895
2896         WARN_ON(!mutex_is_locked(&mgr->qlock));
2897
2898         /* construct a chunk from the first msg in the tx_msg queue */
2899         if (list_empty(&mgr->tx_msg_downq))
2900                 return;
2901
2902         txmsg = list_first_entry(&mgr->tx_msg_downq,
2903                                  struct drm_dp_sideband_msg_tx, next);
2904         ret = process_single_tx_qlock(mgr, txmsg, false);
2905         if (ret < 0) {
2906                 drm_dbg_kms(mgr->dev, "failed to send msg in q %d\n", ret);
2907                 list_del(&txmsg->next);
2908                 txmsg->state = DRM_DP_SIDEBAND_TX_TIMEOUT;
2909                 wake_up_all(&mgr->tx_waitq);
2910         }
2911 }
2912
2913 static void drm_dp_queue_down_tx(struct drm_dp_mst_topology_mgr *mgr,
2914                                  struct drm_dp_sideband_msg_tx *txmsg)
2915 {
2916         mutex_lock(&mgr->qlock);
2917         list_add_tail(&txmsg->next, &mgr->tx_msg_downq);
2918
2919         if (drm_debug_enabled(DRM_UT_DP)) {
2920                 struct drm_printer p = drm_debug_printer(DBG_PREFIX);
2921
2922                 drm_dp_mst_dump_sideband_msg_tx(&p, txmsg);
2923         }
2924
2925         if (list_is_singular(&mgr->tx_msg_downq))
2926                 process_single_down_tx_qlock(mgr);
2927         mutex_unlock(&mgr->qlock);
2928 }
2929
2930 static void
2931 drm_dp_dump_link_address(const struct drm_dp_mst_topology_mgr *mgr,
2932                          struct drm_dp_link_address_ack_reply *reply)
2933 {
2934         struct drm_dp_link_addr_reply_port *port_reply;
2935         int i;
2936
2937         for (i = 0; i < reply->nports; i++) {
2938                 port_reply = &reply->ports[i];
2939                 drm_dbg_kms(mgr->dev,
2940                             "port %d: input %d, pdt: %d, pn: %d, dpcd_rev: %02x, mcs: %d, ddps: %d, ldps %d, sdp %d/%d\n",
2941                             i,
2942                             port_reply->input_port,
2943                             port_reply->peer_device_type,
2944                             port_reply->port_number,
2945                             port_reply->dpcd_revision,
2946                             port_reply->mcs,
2947                             port_reply->ddps,
2948                             port_reply->legacy_device_plug_status,
2949                             port_reply->num_sdp_streams,
2950                             port_reply->num_sdp_stream_sinks);
2951         }
2952 }
2953
2954 static int drm_dp_send_link_address(struct drm_dp_mst_topology_mgr *mgr,
2955                                      struct drm_dp_mst_branch *mstb)
2956 {
2957         struct drm_dp_sideband_msg_tx *txmsg;
2958         struct drm_dp_link_address_ack_reply *reply;
2959         struct drm_dp_mst_port *port, *tmp;
2960         int i, ret, port_mask = 0;
2961         bool changed = false;
2962
2963         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
2964         if (!txmsg)
2965                 return -ENOMEM;
2966
2967         txmsg->dst = mstb;
2968         build_link_address(txmsg);
2969
2970         mstb->link_address_sent = true;
2971         drm_dp_queue_down_tx(mgr, txmsg);
2972
2973         /* FIXME: Actually do some real error handling here */
2974         ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
2975         if (ret <= 0) {
2976                 drm_err(mgr->dev, "Sending link address failed with %d\n", ret);
2977                 goto out;
2978         }
2979         if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
2980                 drm_err(mgr->dev, "link address NAK received\n");
2981                 ret = -EIO;
2982                 goto out;
2983         }
2984
2985         reply = &txmsg->reply.u.link_addr;
2986         drm_dbg_kms(mgr->dev, "link address reply: %d\n", reply->nports);
2987         drm_dp_dump_link_address(mgr, reply);
2988
2989         ret = drm_dp_check_mstb_guid(mstb, reply->guid);
2990         if (ret) {
2991                 char buf[64];
2992
2993                 drm_dp_mst_rad_to_str(mstb->rad, mstb->lct, buf, sizeof(buf));
2994                 drm_err(mgr->dev, "GUID check on %s failed: %d\n", buf, ret);
2995                 goto out;
2996         }
2997
2998         for (i = 0; i < reply->nports; i++) {
2999                 port_mask |= BIT(reply->ports[i].port_number);
3000                 ret = drm_dp_mst_handle_link_address_port(mstb, mgr->dev,
3001                                                           &reply->ports[i]);
3002                 if (ret == 1)
3003                         changed = true;
3004                 else if (ret < 0)
3005                         goto out;
3006         }
3007
3008         /* Prune any ports that are currently a part of mstb in our in-memory
3009          * topology, but were not seen in this link address. Usually this
3010          * means that they were removed while the topology was out of sync,
3011          * e.g. during suspend/resume
3012          */
3013         mutex_lock(&mgr->lock);
3014         list_for_each_entry_safe(port, tmp, &mstb->ports, next) {
3015                 if (port_mask & BIT(port->port_num))
3016                         continue;
3017
3018                 drm_dbg_kms(mgr->dev, "port %d was not in link address, removing\n",
3019                             port->port_num);
3020                 list_del(&port->next);
3021                 drm_dp_mst_topology_put_port(port);
3022                 changed = true;
3023         }
3024         mutex_unlock(&mgr->lock);
3025
3026 out:
3027         if (ret <= 0)
3028                 mstb->link_address_sent = false;
3029         kfree(txmsg);
3030         return ret < 0 ? ret : changed;
3031 }
3032
3033 static void
3034 drm_dp_send_clear_payload_id_table(struct drm_dp_mst_topology_mgr *mgr,
3035                                    struct drm_dp_mst_branch *mstb)
3036 {
3037         struct drm_dp_sideband_msg_tx *txmsg;
3038         int ret;
3039
3040         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3041         if (!txmsg)
3042                 return;
3043
3044         txmsg->dst = mstb;
3045         build_clear_payload_id_table(txmsg);
3046
3047         drm_dp_queue_down_tx(mgr, txmsg);
3048
3049         ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3050         if (ret > 0 && txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3051                 drm_dbg_kms(mgr->dev, "clear payload table id nak received\n");
3052
3053         kfree(txmsg);
3054 }
3055
3056 static int
3057 drm_dp_send_enum_path_resources(struct drm_dp_mst_topology_mgr *mgr,
3058                                 struct drm_dp_mst_branch *mstb,
3059                                 struct drm_dp_mst_port *port)
3060 {
3061         struct drm_dp_enum_path_resources_ack_reply *path_res;
3062         struct drm_dp_sideband_msg_tx *txmsg;
3063         int ret;
3064
3065         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3066         if (!txmsg)
3067                 return -ENOMEM;
3068
3069         txmsg->dst = mstb;
3070         build_enum_path_resources(txmsg, port->port_num);
3071
3072         drm_dp_queue_down_tx(mgr, txmsg);
3073
3074         ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3075         if (ret > 0) {
3076                 ret = 0;
3077                 path_res = &txmsg->reply.u.path_resources;
3078
3079                 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
3080                         drm_dbg_kms(mgr->dev, "enum path resources nak received\n");
3081                 } else {
3082                         if (port->port_num != path_res->port_number)
3083                                 DRM_ERROR("got incorrect port in response\n");
3084
3085                         drm_dbg_kms(mgr->dev, "enum path resources %d: %d %d\n",
3086                                     path_res->port_number,
3087                                     path_res->full_payload_bw_number,
3088                                     path_res->avail_payload_bw_number);
3089
3090                         /*
3091                          * If something changed, make sure we send a
3092                          * hotplug
3093                          */
3094                         if (port->full_pbn != path_res->full_payload_bw_number ||
3095                             port->fec_capable != path_res->fec_capable)
3096                                 ret = 1;
3097
3098                         port->full_pbn = path_res->full_payload_bw_number;
3099                         port->fec_capable = path_res->fec_capable;
3100                 }
3101         }
3102
3103         kfree(txmsg);
3104         return ret;
3105 }
3106
3107 static struct drm_dp_mst_port *drm_dp_get_last_connected_port_to_mstb(struct drm_dp_mst_branch *mstb)
3108 {
3109         if (!mstb->port_parent)
3110                 return NULL;
3111
3112         if (mstb->port_parent->mstb != mstb)
3113                 return mstb->port_parent;
3114
3115         return drm_dp_get_last_connected_port_to_mstb(mstb->port_parent->parent);
3116 }
3117
3118 /*
3119  * Searches upwards in the topology starting from mstb to try to find the
3120  * closest available parent of mstb that's still connected to the rest of the
3121  * topology. This can be used in order to perform operations like releasing
3122  * payloads, where the branch device which owned the payload may no longer be
3123  * around and thus would require that the payload on the last living relative
3124  * be freed instead.
3125  */
3126 static struct drm_dp_mst_branch *
3127 drm_dp_get_last_connected_port_and_mstb(struct drm_dp_mst_topology_mgr *mgr,
3128                                         struct drm_dp_mst_branch *mstb,
3129                                         int *port_num)
3130 {
3131         struct drm_dp_mst_branch *rmstb = NULL;
3132         struct drm_dp_mst_port *found_port;
3133
3134         mutex_lock(&mgr->lock);
3135         if (!mgr->mst_primary)
3136                 goto out;
3137
3138         do {
3139                 found_port = drm_dp_get_last_connected_port_to_mstb(mstb);
3140                 if (!found_port)
3141                         break;
3142
3143                 if (drm_dp_mst_topology_try_get_mstb(found_port->parent)) {
3144                         rmstb = found_port->parent;
3145                         *port_num = found_port->port_num;
3146                 } else {
3147                         /* Search again, starting from this parent */
3148                         mstb = found_port->parent;
3149                 }
3150         } while (!rmstb);
3151 out:
3152         mutex_unlock(&mgr->lock);
3153         return rmstb;
3154 }
3155
3156 static int drm_dp_payload_send_msg(struct drm_dp_mst_topology_mgr *mgr,
3157                                    struct drm_dp_mst_port *port,
3158                                    int id,
3159                                    int pbn)
3160 {
3161         struct drm_dp_sideband_msg_tx *txmsg;
3162         struct drm_dp_mst_branch *mstb;
3163         int ret, port_num;
3164         u8 sinks[DRM_DP_MAX_SDP_STREAMS];
3165         int i;
3166
3167         port_num = port->port_num;
3168         mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
3169         if (!mstb) {
3170                 mstb = drm_dp_get_last_connected_port_and_mstb(mgr,
3171                                                                port->parent,
3172                                                                &port_num);
3173
3174                 if (!mstb)
3175                         return -EINVAL;
3176         }
3177
3178         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3179         if (!txmsg) {
3180                 ret = -ENOMEM;
3181                 goto fail_put;
3182         }
3183
3184         for (i = 0; i < port->num_sdp_streams; i++)
3185                 sinks[i] = i;
3186
3187         txmsg->dst = mstb;
3188         build_allocate_payload(txmsg, port_num,
3189                                id,
3190                                pbn, port->num_sdp_streams, sinks);
3191
3192         drm_dp_queue_down_tx(mgr, txmsg);
3193
3194         /*
3195          * FIXME: there is a small chance that between getting the last
3196          * connected mstb and sending the payload message, the last connected
3197          * mstb could also be removed from the topology. In the future, this
3198          * needs to be fixed by restarting the
3199          * drm_dp_get_last_connected_port_and_mstb() search in the event of a
3200          * timeout if the topology is still connected to the system.
3201          */
3202         ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3203         if (ret > 0) {
3204                 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3205                         ret = -EINVAL;
3206                 else
3207                         ret = 0;
3208         }
3209         kfree(txmsg);
3210 fail_put:
3211         drm_dp_mst_topology_put_mstb(mstb);
3212         return ret;
3213 }
3214
3215 int drm_dp_send_power_updown_phy(struct drm_dp_mst_topology_mgr *mgr,
3216                                  struct drm_dp_mst_port *port, bool power_up)
3217 {
3218         struct drm_dp_sideband_msg_tx *txmsg;
3219         int ret;
3220
3221         port = drm_dp_mst_topology_get_port_validated(mgr, port);
3222         if (!port)
3223                 return -EINVAL;
3224
3225         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3226         if (!txmsg) {
3227                 drm_dp_mst_topology_put_port(port);
3228                 return -ENOMEM;
3229         }
3230
3231         txmsg->dst = port->parent;
3232         build_power_updown_phy(txmsg, port->port_num, power_up);
3233         drm_dp_queue_down_tx(mgr, txmsg);
3234
3235         ret = drm_dp_mst_wait_tx_reply(port->parent, txmsg);
3236         if (ret > 0) {
3237                 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3238                         ret = -EINVAL;
3239                 else
3240                         ret = 0;
3241         }
3242         kfree(txmsg);
3243         drm_dp_mst_topology_put_port(port);
3244
3245         return ret;
3246 }
3247 EXPORT_SYMBOL(drm_dp_send_power_updown_phy);
3248
3249 int drm_dp_send_query_stream_enc_status(struct drm_dp_mst_topology_mgr *mgr,
3250                 struct drm_dp_mst_port *port,
3251                 struct drm_dp_query_stream_enc_status_ack_reply *status)
3252 {
3253         struct drm_dp_sideband_msg_tx *txmsg;
3254         u8 nonce[7];
3255         int ret;
3256
3257         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3258         if (!txmsg)
3259                 return -ENOMEM;
3260
3261         port = drm_dp_mst_topology_get_port_validated(mgr, port);
3262         if (!port) {
3263                 ret = -EINVAL;
3264                 goto out_get_port;
3265         }
3266
3267         get_random_bytes(nonce, sizeof(nonce));
3268
3269         /*
3270          * "Source device targets the QUERY_STREAM_ENCRYPTION_STATUS message
3271          *  transaction at the MST Branch device directly connected to the
3272          *  Source"
3273          */
3274         txmsg->dst = mgr->mst_primary;
3275
3276         build_query_stream_enc_status(txmsg, port->vcpi.vcpi, nonce);
3277
3278         drm_dp_queue_down_tx(mgr, txmsg);
3279
3280         ret = drm_dp_mst_wait_tx_reply(mgr->mst_primary, txmsg);
3281         if (ret < 0) {
3282                 goto out;
3283         } else if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
3284                 drm_dbg_kms(mgr->dev, "query encryption status nak received\n");
3285                 ret = -ENXIO;
3286                 goto out;
3287         }
3288
3289         ret = 0;
3290         memcpy(status, &txmsg->reply.u.enc_status, sizeof(*status));
3291
3292 out:
3293         drm_dp_mst_topology_put_port(port);
3294 out_get_port:
3295         kfree(txmsg);
3296         return ret;
3297 }
3298 EXPORT_SYMBOL(drm_dp_send_query_stream_enc_status);
3299
3300 static int drm_dp_create_payload_step1(struct drm_dp_mst_topology_mgr *mgr,
3301                                        int id,
3302                                        struct drm_dp_payload *payload)
3303 {
3304         int ret;
3305
3306         ret = drm_dp_dpcd_write_payload(mgr, id, payload);
3307         if (ret < 0) {
3308                 payload->payload_state = 0;
3309                 return ret;
3310         }
3311         payload->payload_state = DP_PAYLOAD_LOCAL;
3312         return 0;
3313 }
3314
3315 static int drm_dp_create_payload_step2(struct drm_dp_mst_topology_mgr *mgr,
3316                                        struct drm_dp_mst_port *port,
3317                                        int id,
3318                                        struct drm_dp_payload *payload)
3319 {
3320         int ret;
3321
3322         ret = drm_dp_payload_send_msg(mgr, port, id, port->vcpi.pbn);
3323         if (ret < 0)
3324                 return ret;
3325         payload->payload_state = DP_PAYLOAD_REMOTE;
3326         return ret;
3327 }
3328
3329 static int drm_dp_destroy_payload_step1(struct drm_dp_mst_topology_mgr *mgr,
3330                                         struct drm_dp_mst_port *port,
3331                                         int id,
3332                                         struct drm_dp_payload *payload)
3333 {
3334         drm_dbg_kms(mgr->dev, "\n");
3335         /* it's okay for these to fail */
3336         if (port) {
3337                 drm_dp_payload_send_msg(mgr, port, id, 0);
3338         }
3339
3340         drm_dp_dpcd_write_payload(mgr, id, payload);
3341         payload->payload_state = DP_PAYLOAD_DELETE_LOCAL;
3342         return 0;
3343 }
3344
3345 static int drm_dp_destroy_payload_step2(struct drm_dp_mst_topology_mgr *mgr,
3346                                         int id,
3347                                         struct drm_dp_payload *payload)
3348 {
3349         payload->payload_state = 0;
3350         return 0;
3351 }
3352
3353 /**
3354  * drm_dp_update_payload_part1() - Execute payload update part 1
3355  * @mgr: manager to use.
3356  *
3357  * This iterates over all proposed virtual channels, and tries to
3358  * allocate space in the link for them. For 0->slots transitions,
3359  * this step just writes the VCPI to the MST device. For slots->0
3360  * transitions, this writes the updated VCPIs and removes the
3361  * remote VC payloads.
3362  *
3363  * after calling this the driver should generate ACT and payload
3364  * packets.
3365  */
3366 int drm_dp_update_payload_part1(struct drm_dp_mst_topology_mgr *mgr)
3367 {
3368         struct drm_dp_payload req_payload;
3369         struct drm_dp_mst_port *port;
3370         int i, j;
3371         int cur_slots = 1;
3372         bool skip;
3373
3374         mutex_lock(&mgr->payload_lock);
3375         for (i = 0; i < mgr->max_payloads; i++) {
3376                 struct drm_dp_vcpi *vcpi = mgr->proposed_vcpis[i];
3377                 struct drm_dp_payload *payload = &mgr->payloads[i];
3378                 bool put_port = false;
3379
3380                 /* solve the current payloads - compare to the hw ones
3381                    - update the hw view */
3382                 req_payload.start_slot = cur_slots;
3383                 if (vcpi) {
3384                         port = container_of(vcpi, struct drm_dp_mst_port,
3385                                             vcpi);
3386
3387                         mutex_lock(&mgr->lock);
3388                         skip = !drm_dp_mst_port_downstream_of_branch(port, mgr->mst_primary);
3389                         mutex_unlock(&mgr->lock);
3390
3391                         if (skip) {
3392                                 drm_dbg_kms(mgr->dev,
3393                                             "Virtual channel %d is not in current topology\n",
3394                                             i);
3395                                 continue;
3396                         }
3397                         /* Validated ports don't matter if we're releasing
3398                          * VCPI
3399                          */
3400                         if (vcpi->num_slots) {
3401                                 port = drm_dp_mst_topology_get_port_validated(
3402                                     mgr, port);
3403                                 if (!port) {
3404                                         if (vcpi->num_slots == payload->num_slots) {
3405                                                 cur_slots += vcpi->num_slots;
3406                                                 payload->start_slot = req_payload.start_slot;
3407                                                 continue;
3408                                         } else {
3409                                                 drm_dbg_kms(mgr->dev,
3410                                                             "Fail:set payload to invalid sink");
3411                                                 mutex_unlock(&mgr->payload_lock);
3412                                                 return -EINVAL;
3413                                         }
3414                                 }
3415                                 put_port = true;
3416                         }
3417
3418                         req_payload.num_slots = vcpi->num_slots;
3419                         req_payload.vcpi = vcpi->vcpi;
3420                 } else {
3421                         port = NULL;
3422                         req_payload.num_slots = 0;
3423                 }
3424
3425                 payload->start_slot = req_payload.start_slot;
3426                 /* work out what is required to happen with this payload */
3427                 if (payload->num_slots != req_payload.num_slots) {
3428
3429                         /* need to push an update for this payload */
3430                         if (req_payload.num_slots) {
3431                                 drm_dp_create_payload_step1(mgr, vcpi->vcpi,
3432                                                             &req_payload);
3433                                 payload->num_slots = req_payload.num_slots;
3434                                 payload->vcpi = req_payload.vcpi;
3435
3436                         } else if (payload->num_slots) {
3437                                 payload->num_slots = 0;
3438                                 drm_dp_destroy_payload_step1(mgr, port,
3439                                                              payload->vcpi,
3440                                                              payload);
3441                                 req_payload.payload_state =
3442                                         payload->payload_state;
3443                                 payload->start_slot = 0;
3444                         }
3445                         payload->payload_state = req_payload.payload_state;
3446                 }
3447                 cur_slots += req_payload.num_slots;
3448
3449                 if (put_port)
3450                         drm_dp_mst_topology_put_port(port);
3451         }
3452
3453         for (i = 0; i < mgr->max_payloads; /* do nothing */) {
3454                 if (mgr->payloads[i].payload_state != DP_PAYLOAD_DELETE_LOCAL) {
3455                         i++;
3456                         continue;
3457                 }
3458
3459                 drm_dbg_kms(mgr->dev, "removing payload %d\n", i);
3460                 for (j = i; j < mgr->max_payloads - 1; j++) {
3461                         mgr->payloads[j] = mgr->payloads[j + 1];
3462                         mgr->proposed_vcpis[j] = mgr->proposed_vcpis[j + 1];
3463
3464                         if (mgr->proposed_vcpis[j] &&
3465                             mgr->proposed_vcpis[j]->num_slots) {
3466                                 set_bit(j + 1, &mgr->payload_mask);
3467                         } else {
3468                                 clear_bit(j + 1, &mgr->payload_mask);
3469                         }
3470                 }
3471
3472                 memset(&mgr->payloads[mgr->max_payloads - 1], 0,
3473                        sizeof(struct drm_dp_payload));
3474                 mgr->proposed_vcpis[mgr->max_payloads - 1] = NULL;
3475                 clear_bit(mgr->max_payloads, &mgr->payload_mask);
3476         }
3477         mutex_unlock(&mgr->payload_lock);
3478
3479         return 0;
3480 }
3481 EXPORT_SYMBOL(drm_dp_update_payload_part1);
3482
3483 /**
3484  * drm_dp_update_payload_part2() - Execute payload update part 2
3485  * @mgr: manager to use.
3486  *
3487  * This iterates over all proposed virtual channels, and tries to
3488  * allocate space in the link for them. For 0->slots transitions,
3489  * this step writes the remote VC payload commands. For slots->0
3490  * this just resets some internal state.
3491  */
3492 int drm_dp_update_payload_part2(struct drm_dp_mst_topology_mgr *mgr)
3493 {
3494         struct drm_dp_mst_port *port;
3495         int i;
3496         int ret = 0;
3497         bool skip;
3498
3499         mutex_lock(&mgr->payload_lock);
3500         for (i = 0; i < mgr->max_payloads; i++) {
3501
3502                 if (!mgr->proposed_vcpis[i])
3503                         continue;
3504
3505                 port = container_of(mgr->proposed_vcpis[i], struct drm_dp_mst_port, vcpi);
3506
3507                 mutex_lock(&mgr->lock);
3508                 skip = !drm_dp_mst_port_downstream_of_branch(port, mgr->mst_primary);
3509                 mutex_unlock(&mgr->lock);
3510
3511                 if (skip)
3512                         continue;
3513
3514                 drm_dbg_kms(mgr->dev, "payload %d %d\n", i, mgr->payloads[i].payload_state);
3515                 if (mgr->payloads[i].payload_state == DP_PAYLOAD_LOCAL) {
3516                         ret = drm_dp_create_payload_step2(mgr, port, mgr->proposed_vcpis[i]->vcpi, &mgr->payloads[i]);
3517                 } else if (mgr->payloads[i].payload_state == DP_PAYLOAD_DELETE_LOCAL) {
3518                         ret = drm_dp_destroy_payload_step2(mgr, mgr->proposed_vcpis[i]->vcpi, &mgr->payloads[i]);
3519                 }
3520                 if (ret) {
3521                         mutex_unlock(&mgr->payload_lock);
3522                         return ret;
3523                 }
3524         }
3525         mutex_unlock(&mgr->payload_lock);
3526         return 0;
3527 }
3528 EXPORT_SYMBOL(drm_dp_update_payload_part2);
3529
3530 static int drm_dp_send_dpcd_read(struct drm_dp_mst_topology_mgr *mgr,
3531                                  struct drm_dp_mst_port *port,
3532                                  int offset, int size, u8 *bytes)
3533 {
3534         int ret = 0;
3535         struct drm_dp_sideband_msg_tx *txmsg;
3536         struct drm_dp_mst_branch *mstb;
3537
3538         mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
3539         if (!mstb)
3540                 return -EINVAL;
3541
3542         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3543         if (!txmsg) {
3544                 ret = -ENOMEM;
3545                 goto fail_put;
3546         }
3547
3548         build_dpcd_read(txmsg, port->port_num, offset, size);
3549         txmsg->dst = port->parent;
3550
3551         drm_dp_queue_down_tx(mgr, txmsg);
3552
3553         ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3554         if (ret < 0)
3555                 goto fail_free;
3556
3557         /* DPCD read should never be NACKed */
3558         if (txmsg->reply.reply_type == 1) {
3559                 drm_err(mgr->dev, "mstb %p port %d: DPCD read on addr 0x%x for %d bytes NAKed\n",
3560                         mstb, port->port_num, offset, size);
3561                 ret = -EIO;
3562                 goto fail_free;
3563         }
3564
3565         if (txmsg->reply.u.remote_dpcd_read_ack.num_bytes != size) {
3566                 ret = -EPROTO;
3567                 goto fail_free;
3568         }
3569
3570         ret = min_t(size_t, txmsg->reply.u.remote_dpcd_read_ack.num_bytes,
3571                     size);
3572         memcpy(bytes, txmsg->reply.u.remote_dpcd_read_ack.bytes, ret);
3573
3574 fail_free:
3575         kfree(txmsg);
3576 fail_put:
3577         drm_dp_mst_topology_put_mstb(mstb);
3578
3579         return ret;
3580 }
3581
3582 static int drm_dp_send_dpcd_write(struct drm_dp_mst_topology_mgr *mgr,
3583                                   struct drm_dp_mst_port *port,
3584                                   int offset, int size, u8 *bytes)
3585 {
3586         int ret;
3587         struct drm_dp_sideband_msg_tx *txmsg;
3588         struct drm_dp_mst_branch *mstb;
3589
3590         mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
3591         if (!mstb)
3592                 return -EINVAL;
3593
3594         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3595         if (!txmsg) {
3596                 ret = -ENOMEM;
3597                 goto fail_put;
3598         }
3599
3600         build_dpcd_write(txmsg, port->port_num, offset, size, bytes);
3601         txmsg->dst = mstb;
3602
3603         drm_dp_queue_down_tx(mgr, txmsg);
3604
3605         ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
3606         if (ret > 0) {
3607                 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK)
3608                         ret = -EIO;
3609                 else
3610                         ret = size;
3611         }
3612
3613         kfree(txmsg);
3614 fail_put:
3615         drm_dp_mst_topology_put_mstb(mstb);
3616         return ret;
3617 }
3618
3619 static int drm_dp_encode_up_ack_reply(struct drm_dp_sideband_msg_tx *msg, u8 req_type)
3620 {
3621         struct drm_dp_sideband_msg_reply_body reply;
3622
3623         reply.reply_type = DP_SIDEBAND_REPLY_ACK;
3624         reply.req_type = req_type;
3625         drm_dp_encode_sideband_reply(&reply, msg);
3626         return 0;
3627 }
3628
3629 static int drm_dp_send_up_ack_reply(struct drm_dp_mst_topology_mgr *mgr,
3630                                     struct drm_dp_mst_branch *mstb,
3631                                     int req_type, bool broadcast)
3632 {
3633         struct drm_dp_sideband_msg_tx *txmsg;
3634
3635         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
3636         if (!txmsg)
3637                 return -ENOMEM;
3638
3639         txmsg->dst = mstb;
3640         drm_dp_encode_up_ack_reply(txmsg, req_type);
3641
3642         mutex_lock(&mgr->qlock);
3643         /* construct a chunk from the first msg in the tx_msg queue */
3644         process_single_tx_qlock(mgr, txmsg, true);
3645         mutex_unlock(&mgr->qlock);
3646
3647         kfree(txmsg);
3648         return 0;
3649 }
3650
3651 /**
3652  * drm_dp_get_vc_payload_bw - get the VC payload BW for an MST link
3653  * @mgr: The &drm_dp_mst_topology_mgr to use
3654  * @link_rate: link rate in 10kbits/s units
3655  * @link_lane_count: lane count
3656  *
3657  * Calculate the total bandwidth of a MultiStream Transport link. The returned
3658  * value is in units of PBNs/(timeslots/1 MTP). This value can be used to
3659  * convert the number of PBNs required for a given stream to the number of
3660  * timeslots this stream requires in each MTP.
3661  */
3662 int drm_dp_get_vc_payload_bw(const struct drm_dp_mst_topology_mgr *mgr,
3663                              int link_rate, int link_lane_count)
3664 {
3665         if (link_rate == 0 || link_lane_count == 0)
3666                 drm_dbg_kms(mgr->dev, "invalid link rate/lane count: (%d / %d)\n",
3667                             link_rate, link_lane_count);
3668
3669         /* See DP v2.0 2.6.4.2, VCPayload_Bandwidth_for_OneTimeSlotPer_MTP_Allocation */
3670         return link_rate * link_lane_count / 54000;
3671 }
3672 EXPORT_SYMBOL(drm_dp_get_vc_payload_bw);
3673
3674 /**
3675  * drm_dp_read_mst_cap() - check whether or not a sink supports MST
3676  * @aux: The DP AUX channel to use
3677  * @dpcd: A cached copy of the DPCD capabilities for this sink
3678  *
3679  * Returns: %True if the sink supports MST, %false otherwise
3680  */
3681 bool drm_dp_read_mst_cap(struct drm_dp_aux *aux,
3682                          const u8 dpcd[DP_RECEIVER_CAP_SIZE])
3683 {
3684         u8 mstm_cap;
3685
3686         if (dpcd[DP_DPCD_REV] < DP_DPCD_REV_12)
3687                 return false;
3688
3689         if (drm_dp_dpcd_readb(aux, DP_MSTM_CAP, &mstm_cap) != 1)
3690                 return false;
3691
3692         return mstm_cap & DP_MST_CAP;
3693 }
3694 EXPORT_SYMBOL(drm_dp_read_mst_cap);
3695
3696 /**
3697  * drm_dp_mst_topology_mgr_set_mst() - Set the MST state for a topology manager
3698  * @mgr: manager to set state for
3699  * @mst_state: true to enable MST on this connector - false to disable.
3700  *
3701  * This is called by the driver when it detects an MST capable device plugged
3702  * into a DP MST capable port, or when a DP MST capable device is unplugged.
3703  */
3704 int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool mst_state)
3705 {
3706         int ret = 0;
3707         struct drm_dp_mst_branch *mstb = NULL;
3708
3709         mutex_lock(&mgr->payload_lock);
3710         mutex_lock(&mgr->lock);
3711         if (mst_state == mgr->mst_state)
3712                 goto out_unlock;
3713
3714         mgr->mst_state = mst_state;
3715         /* set the device into MST mode */
3716         if (mst_state) {
3717                 struct drm_dp_payload reset_pay;
3718                 int lane_count;
3719                 int link_rate;
3720
3721                 WARN_ON(mgr->mst_primary);
3722
3723                 /* get dpcd info */
3724                 ret = drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd);
3725                 if (ret < 0) {
3726                         drm_dbg_kms(mgr->dev, "%s: failed to read DPCD, ret %d\n",
3727                                     mgr->aux->name, ret);
3728                         goto out_unlock;
3729                 }
3730
3731                 lane_count = min_t(int, mgr->dpcd[2] & DP_MAX_LANE_COUNT_MASK, mgr->max_lane_count);
3732                 link_rate = min_t(int, drm_dp_bw_code_to_link_rate(mgr->dpcd[1]), mgr->max_link_rate);
3733                 mgr->pbn_div = drm_dp_get_vc_payload_bw(mgr,
3734                                                         link_rate,
3735                                                         lane_count);
3736                 if (mgr->pbn_div == 0) {
3737                         ret = -EINVAL;
3738                         goto out_unlock;
3739                 }
3740
3741                 /* add initial branch device at LCT 1 */
3742                 mstb = drm_dp_add_mst_branch_device(1, NULL);
3743                 if (mstb == NULL) {
3744                         ret = -ENOMEM;
3745                         goto out_unlock;
3746                 }
3747                 mstb->mgr = mgr;
3748
3749                 /* give this the main reference */
3750                 mgr->mst_primary = mstb;
3751                 drm_dp_mst_topology_get_mstb(mgr->mst_primary);
3752
3753                 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
3754                                          DP_MST_EN |
3755                                          DP_UP_REQ_EN |
3756                                          DP_UPSTREAM_IS_SRC);
3757                 if (ret < 0)
3758                         goto out_unlock;
3759
3760                 reset_pay.start_slot = 0;
3761                 reset_pay.num_slots = 0x3f;
3762                 drm_dp_dpcd_write_payload(mgr, 0, &reset_pay);
3763
3764                 queue_work(system_long_wq, &mgr->work);
3765
3766                 ret = 0;
3767         } else {
3768                 /* disable MST on the device */
3769                 mstb = mgr->mst_primary;
3770                 mgr->mst_primary = NULL;
3771                 /* this can fail if the device is gone */
3772                 drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL, 0);
3773                 ret = 0;
3774                 memset(mgr->payloads, 0,
3775                        mgr->max_payloads * sizeof(mgr->payloads[0]));
3776                 memset(mgr->proposed_vcpis, 0,
3777                        mgr->max_payloads * sizeof(mgr->proposed_vcpis[0]));
3778                 mgr->payload_mask = 0;
3779                 set_bit(0, &mgr->payload_mask);
3780                 mgr->vcpi_mask = 0;
3781                 mgr->payload_id_table_cleared = false;
3782         }
3783
3784 out_unlock:
3785         mutex_unlock(&mgr->lock);
3786         mutex_unlock(&mgr->payload_lock);
3787         if (mstb)
3788                 drm_dp_mst_topology_put_mstb(mstb);
3789         return ret;
3790
3791 }
3792 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_set_mst);
3793
3794 static void
3795 drm_dp_mst_topology_mgr_invalidate_mstb(struct drm_dp_mst_branch *mstb)
3796 {
3797         struct drm_dp_mst_port *port;
3798
3799         /* The link address will need to be re-sent on resume */
3800         mstb->link_address_sent = false;
3801
3802         list_for_each_entry(port, &mstb->ports, next)
3803                 if (port->mstb)
3804                         drm_dp_mst_topology_mgr_invalidate_mstb(port->mstb);
3805 }
3806
3807 /**
3808  * drm_dp_mst_topology_mgr_suspend() - suspend the MST manager
3809  * @mgr: manager to suspend
3810  *
3811  * This function tells the MST device that we can't handle UP messages
3812  * anymore. This should stop it from sending any since we are suspended.
3813  */
3814 void drm_dp_mst_topology_mgr_suspend(struct drm_dp_mst_topology_mgr *mgr)
3815 {
3816         mutex_lock(&mgr->lock);
3817         drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
3818                            DP_MST_EN | DP_UPSTREAM_IS_SRC);
3819         mutex_unlock(&mgr->lock);
3820         flush_work(&mgr->up_req_work);
3821         flush_work(&mgr->work);
3822         flush_work(&mgr->delayed_destroy_work);
3823
3824         mutex_lock(&mgr->lock);
3825         if (mgr->mst_state && mgr->mst_primary)
3826                 drm_dp_mst_topology_mgr_invalidate_mstb(mgr->mst_primary);
3827         mutex_unlock(&mgr->lock);
3828 }
3829 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_suspend);
3830
3831 /**
3832  * drm_dp_mst_topology_mgr_resume() - resume the MST manager
3833  * @mgr: manager to resume
3834  * @sync: whether or not to perform topology reprobing synchronously
3835  *
3836  * This will fetch DPCD and see if the device is still there,
3837  * if it is, it will rewrite the MSTM control bits, and return.
3838  *
3839  * If the device fails this returns -1, and the driver should do
3840  * a full MST reprobe, in case we were undocked.
3841  *
3842  * During system resume (where it is assumed that the driver will be calling
3843  * drm_atomic_helper_resume()) this function should be called beforehand with
3844  * @sync set to true. In contexts like runtime resume where the driver is not
3845  * expected to be calling drm_atomic_helper_resume(), this function should be
3846  * called with @sync set to false in order to avoid deadlocking.
3847  *
3848  * Returns: -1 if the MST topology was removed while we were suspended, 0
3849  * otherwise.
3850  */
3851 int drm_dp_mst_topology_mgr_resume(struct drm_dp_mst_topology_mgr *mgr,
3852                                    bool sync)
3853 {
3854         int ret;
3855         u8 guid[16];
3856
3857         mutex_lock(&mgr->lock);
3858         if (!mgr->mst_primary)
3859                 goto out_fail;
3860
3861         ret = drm_dp_dpcd_read(mgr->aux, DP_DPCD_REV, mgr->dpcd,
3862                                DP_RECEIVER_CAP_SIZE);
3863         if (ret != DP_RECEIVER_CAP_SIZE) {
3864                 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
3865                 goto out_fail;
3866         }
3867
3868         ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
3869                                  DP_MST_EN |
3870                                  DP_UP_REQ_EN |
3871                                  DP_UPSTREAM_IS_SRC);
3872         if (ret < 0) {
3873                 drm_dbg_kms(mgr->dev, "mst write failed - undocked during suspend?\n");
3874                 goto out_fail;
3875         }
3876
3877         /* Some hubs forget their guids after they resume */
3878         ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, guid, 16);
3879         if (ret != 16) {
3880                 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
3881                 goto out_fail;
3882         }
3883
3884         ret = drm_dp_check_mstb_guid(mgr->mst_primary, guid);
3885         if (ret) {
3886                 drm_dbg_kms(mgr->dev, "check mstb failed - undocked during suspend?\n");
3887                 goto out_fail;
3888         }
3889
3890         /*
3891          * For the final step of resuming the topology, we need to bring the
3892          * state of our in-memory topology back into sync with reality. So,
3893          * restart the probing process as if we're probing a new hub
3894          */
3895         queue_work(system_long_wq, &mgr->work);
3896         mutex_unlock(&mgr->lock);
3897
3898         if (sync) {
3899                 drm_dbg_kms(mgr->dev,
3900                             "Waiting for link probe work to finish re-syncing topology...\n");
3901                 flush_work(&mgr->work);
3902         }
3903
3904         return 0;
3905
3906 out_fail:
3907         mutex_unlock(&mgr->lock);
3908         return -1;
3909 }
3910 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_resume);
3911
3912 static bool
3913 drm_dp_get_one_sb_msg(struct drm_dp_mst_topology_mgr *mgr, bool up,
3914                       struct drm_dp_mst_branch **mstb)
3915 {
3916         int len;
3917         u8 replyblock[32];
3918         int replylen, curreply;
3919         int ret;
3920         u8 hdrlen;
3921         struct drm_dp_sideband_msg_hdr hdr;
3922         struct drm_dp_sideband_msg_rx *msg =
3923                 up ? &mgr->up_req_recv : &mgr->down_rep_recv;
3924         int basereg = up ? DP_SIDEBAND_MSG_UP_REQ_BASE :
3925                            DP_SIDEBAND_MSG_DOWN_REP_BASE;
3926
3927         if (!up)
3928                 *mstb = NULL;
3929
3930         len = min(mgr->max_dpcd_transaction_bytes, 16);
3931         ret = drm_dp_dpcd_read(mgr->aux, basereg, replyblock, len);
3932         if (ret != len) {
3933                 drm_dbg_kms(mgr->dev, "failed to read DPCD down rep %d %d\n", len, ret);
3934                 return false;
3935         }
3936
3937         ret = drm_dp_decode_sideband_msg_hdr(mgr, &hdr, replyblock, len, &hdrlen);
3938         if (ret == false) {
3939                 print_hex_dump(KERN_DEBUG, "failed hdr", DUMP_PREFIX_NONE, 16,
3940                                1, replyblock, len, false);
3941                 drm_dbg_kms(mgr->dev, "ERROR: failed header\n");
3942                 return false;
3943         }
3944
3945         if (!up) {
3946                 /* Caller is responsible for giving back this reference */
3947                 *mstb = drm_dp_get_mst_branch_device(mgr, hdr.lct, hdr.rad);
3948                 if (!*mstb) {
3949                         drm_dbg_kms(mgr->dev, "Got MST reply from unknown device %d\n", hdr.lct);
3950                         return false;
3951                 }
3952         }
3953
3954         if (!drm_dp_sideband_msg_set_header(msg, &hdr, hdrlen)) {
3955                 drm_dbg_kms(mgr->dev, "sideband msg set header failed %d\n", replyblock[0]);
3956                 return false;
3957         }
3958
3959         replylen = min(msg->curchunk_len, (u8)(len - hdrlen));
3960         ret = drm_dp_sideband_append_payload(msg, replyblock + hdrlen, replylen);
3961         if (!ret) {
3962                 drm_dbg_kms(mgr->dev, "sideband msg build failed %d\n", replyblock[0]);
3963                 return false;
3964         }
3965
3966         replylen = msg->curchunk_len + msg->curchunk_hdrlen - len;
3967         curreply = len;
3968         while (replylen > 0) {
3969                 len = min3(replylen, mgr->max_dpcd_transaction_bytes, 16);
3970                 ret = drm_dp_dpcd_read(mgr->aux, basereg + curreply,
3971                                     replyblock, len);
3972                 if (ret != len) {
3973                         drm_dbg_kms(mgr->dev, "failed to read a chunk (len %d, ret %d)\n",
3974                                     len, ret);
3975                         return false;
3976                 }
3977
3978                 ret = drm_dp_sideband_append_payload(msg, replyblock, len);
3979                 if (!ret) {
3980                         drm_dbg_kms(mgr->dev, "failed to build sideband msg\n");
3981                         return false;
3982                 }
3983
3984                 curreply += len;
3985                 replylen -= len;
3986         }
3987         return true;
3988 }
3989
3990 static int drm_dp_mst_handle_down_rep(struct drm_dp_mst_topology_mgr *mgr)
3991 {
3992         struct drm_dp_sideband_msg_tx *txmsg;
3993         struct drm_dp_mst_branch *mstb = NULL;
3994         struct drm_dp_sideband_msg_rx *msg = &mgr->down_rep_recv;
3995
3996         if (!drm_dp_get_one_sb_msg(mgr, false, &mstb))
3997                 goto out;
3998
3999         /* Multi-packet message transmission, don't clear the reply */
4000         if (!msg->have_eomt)
4001                 goto out;
4002
4003         /* find the message */
4004         mutex_lock(&mgr->qlock);
4005         txmsg = list_first_entry_or_null(&mgr->tx_msg_downq,
4006                                          struct drm_dp_sideband_msg_tx, next);
4007         mutex_unlock(&mgr->qlock);
4008
4009         /* Were we actually expecting a response, and from this mstb? */
4010         if (!txmsg || txmsg->dst != mstb) {
4011                 struct drm_dp_sideband_msg_hdr *hdr;
4012
4013                 hdr = &msg->initial_hdr;
4014                 drm_dbg_kms(mgr->dev, "Got MST reply with no msg %p %d %d %02x %02x\n",
4015                             mstb, hdr->seqno, hdr->lct, hdr->rad[0], msg->msg[0]);
4016                 goto out_clear_reply;
4017         }
4018
4019         drm_dp_sideband_parse_reply(mgr, msg, &txmsg->reply);
4020
4021         if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
4022                 drm_dbg_kms(mgr->dev,
4023                             "Got NAK reply: req 0x%02x (%s), reason 0x%02x (%s), nak data 0x%02x\n",
4024                             txmsg->reply.req_type,
4025                             drm_dp_mst_req_type_str(txmsg->reply.req_type),
4026                             txmsg->reply.u.nak.reason,
4027                             drm_dp_mst_nak_reason_str(txmsg->reply.u.nak.reason),
4028                             txmsg->reply.u.nak.nak_data);
4029         }
4030
4031         memset(msg, 0, sizeof(struct drm_dp_sideband_msg_rx));
4032         drm_dp_mst_topology_put_mstb(mstb);
4033
4034         mutex_lock(&mgr->qlock);
4035         txmsg->state = DRM_DP_SIDEBAND_TX_RX;
4036         list_del(&txmsg->next);
4037         mutex_unlock(&mgr->qlock);
4038
4039         wake_up_all(&mgr->tx_waitq);
4040
4041         return 0;
4042
4043 out_clear_reply:
4044         memset(msg, 0, sizeof(struct drm_dp_sideband_msg_rx));
4045 out:
4046         if (mstb)
4047                 drm_dp_mst_topology_put_mstb(mstb);
4048
4049         return 0;
4050 }
4051
4052 static inline bool
4053 drm_dp_mst_process_up_req(struct drm_dp_mst_topology_mgr *mgr,
4054                           struct drm_dp_pending_up_req *up_req)
4055 {
4056         struct drm_dp_mst_branch *mstb = NULL;
4057         struct drm_dp_sideband_msg_req_body *msg = &up_req->msg;
4058         struct drm_dp_sideband_msg_hdr *hdr = &up_req->hdr;
4059         bool hotplug = false;
4060
4061         if (hdr->broadcast) {
4062                 const u8 *guid = NULL;
4063
4064                 if (msg->req_type == DP_CONNECTION_STATUS_NOTIFY)
4065                         guid = msg->u.conn_stat.guid;
4066                 else if (msg->req_type == DP_RESOURCE_STATUS_NOTIFY)
4067                         guid = msg->u.resource_stat.guid;
4068
4069                 if (guid)
4070                         mstb = drm_dp_get_mst_branch_device_by_guid(mgr, guid);
4071         } else {
4072                 mstb = drm_dp_get_mst_branch_device(mgr, hdr->lct, hdr->rad);
4073         }
4074
4075         if (!mstb) {
4076                 drm_dbg_kms(mgr->dev, "Got MST reply from unknown device %d\n", hdr->lct);
4077                 return false;
4078         }
4079
4080         /* TODO: Add missing handler for DP_RESOURCE_STATUS_NOTIFY events */
4081         if (msg->req_type == DP_CONNECTION_STATUS_NOTIFY) {
4082                 drm_dp_mst_handle_conn_stat(mstb, &msg->u.conn_stat);
4083                 hotplug = true;
4084         }
4085
4086         drm_dp_mst_topology_put_mstb(mstb);
4087         return hotplug;
4088 }
4089
4090 static void drm_dp_mst_up_req_work(struct work_struct *work)
4091 {
4092         struct drm_dp_mst_topology_mgr *mgr =
4093                 container_of(work, struct drm_dp_mst_topology_mgr,
4094                              up_req_work);
4095         struct drm_dp_pending_up_req *up_req;
4096         bool send_hotplug = false;
4097
4098         mutex_lock(&mgr->probe_lock);
4099         while (true) {
4100                 mutex_lock(&mgr->up_req_lock);
4101                 up_req = list_first_entry_or_null(&mgr->up_req_list,
4102                                                   struct drm_dp_pending_up_req,
4103                                                   next);
4104                 if (up_req)
4105                         list_del(&up_req->next);
4106                 mutex_unlock(&mgr->up_req_lock);
4107
4108                 if (!up_req)
4109                         break;
4110
4111                 send_hotplug |= drm_dp_mst_process_up_req(mgr, up_req);
4112                 kfree(up_req);
4113         }
4114         mutex_unlock(&mgr->probe_lock);
4115
4116         if (send_hotplug)
4117                 drm_kms_helper_hotplug_event(mgr->dev);
4118 }
4119
4120 static int drm_dp_mst_handle_up_req(struct drm_dp_mst_topology_mgr *mgr)
4121 {
4122         struct drm_dp_pending_up_req *up_req;
4123
4124         if (!drm_dp_get_one_sb_msg(mgr, true, NULL))
4125                 goto out;
4126
4127         if (!mgr->up_req_recv.have_eomt)
4128                 return 0;
4129
4130         up_req = kzalloc(sizeof(*up_req), GFP_KERNEL);
4131         if (!up_req)
4132                 return -ENOMEM;
4133
4134         INIT_LIST_HEAD(&up_req->next);
4135
4136         drm_dp_sideband_parse_req(mgr, &mgr->up_req_recv, &up_req->msg);
4137
4138         if (up_req->msg.req_type != DP_CONNECTION_STATUS_NOTIFY &&
4139             up_req->msg.req_type != DP_RESOURCE_STATUS_NOTIFY) {
4140                 drm_dbg_kms(mgr->dev, "Received unknown up req type, ignoring: %x\n",
4141                             up_req->msg.req_type);
4142                 kfree(up_req);
4143                 goto out;
4144         }
4145
4146         drm_dp_send_up_ack_reply(mgr, mgr->mst_primary, up_req->msg.req_type,
4147                                  false);
4148
4149         if (up_req->msg.req_type == DP_CONNECTION_STATUS_NOTIFY) {
4150                 const struct drm_dp_connection_status_notify *conn_stat =
4151                         &up_req->msg.u.conn_stat;
4152
4153                 drm_dbg_kms(mgr->dev, "Got CSN: pn: %d ldps:%d ddps: %d mcs: %d ip: %d pdt: %d\n",
4154                             conn_stat->port_number,
4155                             conn_stat->legacy_device_plug_status,
4156                             conn_stat->displayport_device_plug_status,
4157                             conn_stat->message_capability_status,
4158                             conn_stat->input_port,
4159                             conn_stat->peer_device_type);
4160         } else if (up_req->msg.req_type == DP_RESOURCE_STATUS_NOTIFY) {
4161                 const struct drm_dp_resource_status_notify *res_stat =
4162                         &up_req->msg.u.resource_stat;
4163
4164                 drm_dbg_kms(mgr->dev, "Got RSN: pn: %d avail_pbn %d\n",
4165                             res_stat->port_number,
4166                             res_stat->available_pbn);
4167         }
4168
4169         up_req->hdr = mgr->up_req_recv.initial_hdr;
4170         mutex_lock(&mgr->up_req_lock);
4171         list_add_tail(&up_req->next, &mgr->up_req_list);
4172         mutex_unlock(&mgr->up_req_lock);
4173         queue_work(system_long_wq, &mgr->up_req_work);
4174
4175 out:
4176         memset(&mgr->up_req_recv, 0, sizeof(struct drm_dp_sideband_msg_rx));
4177         return 0;
4178 }
4179
4180 /**
4181  * drm_dp_mst_hpd_irq() - MST hotplug IRQ notify
4182  * @mgr: manager to notify irq for.
4183  * @esi: 4 bytes from SINK_COUNT_ESI
4184  * @handled: whether the hpd interrupt was consumed or not
4185  *
4186  * This should be called from the driver when it detects a short IRQ,
4187  * along with the value of the DEVICE_SERVICE_IRQ_VECTOR_ESI0. The
4188  * topology manager will process the sideband messages received as a result
4189  * of this.
4190  */
4191 int drm_dp_mst_hpd_irq(struct drm_dp_mst_topology_mgr *mgr, u8 *esi, bool *handled)
4192 {
4193         int ret = 0;
4194         int sc;
4195         *handled = false;
4196         sc = esi[0] & 0x3f;
4197
4198         if (sc != mgr->sink_count) {
4199                 mgr->sink_count = sc;
4200                 *handled = true;
4201         }
4202
4203         if (esi[1] & DP_DOWN_REP_MSG_RDY) {
4204                 ret = drm_dp_mst_handle_down_rep(mgr);
4205                 *handled = true;
4206         }
4207
4208         if (esi[1] & DP_UP_REQ_MSG_RDY) {
4209                 ret |= drm_dp_mst_handle_up_req(mgr);
4210                 *handled = true;
4211         }
4212
4213         drm_dp_mst_kick_tx(mgr);
4214         return ret;
4215 }
4216 EXPORT_SYMBOL(drm_dp_mst_hpd_irq);
4217
4218 /**
4219  * drm_dp_mst_detect_port() - get connection status for an MST port
4220  * @connector: DRM connector for this port
4221  * @ctx: The acquisition context to use for grabbing locks
4222  * @mgr: manager for this port
4223  * @port: pointer to a port
4224  *
4225  * This returns the current connection state for a port.
4226  */
4227 int
4228 drm_dp_mst_detect_port(struct drm_connector *connector,
4229                        struct drm_modeset_acquire_ctx *ctx,
4230                        struct drm_dp_mst_topology_mgr *mgr,
4231                        struct drm_dp_mst_port *port)
4232 {
4233         int ret;
4234
4235         /* we need to search for the port in the mgr in case it's gone */
4236         port = drm_dp_mst_topology_get_port_validated(mgr, port);
4237         if (!port)
4238                 return connector_status_disconnected;
4239
4240         ret = drm_modeset_lock(&mgr->base.lock, ctx);
4241         if (ret)
4242                 goto out;
4243
4244         ret = connector_status_disconnected;
4245
4246         if (!port->ddps)
4247                 goto out;
4248
4249         switch (port->pdt) {
4250         case DP_PEER_DEVICE_NONE:
4251                 break;
4252         case DP_PEER_DEVICE_MST_BRANCHING:
4253                 if (!port->mcs)
4254                         ret = connector_status_connected;
4255                 break;
4256
4257         case DP_PEER_DEVICE_SST_SINK:
4258                 ret = connector_status_connected;
4259                 /* for logical ports - cache the EDID */
4260                 if (port->port_num >= DP_MST_LOGICAL_PORT_0 && !port->cached_edid)
4261                         port->cached_edid = drm_get_edid(connector, &port->aux.ddc);
4262                 break;
4263         case DP_PEER_DEVICE_DP_LEGACY_CONV:
4264                 if (port->ldps)
4265                         ret = connector_status_connected;
4266                 break;
4267         }
4268 out:
4269         drm_dp_mst_topology_put_port(port);
4270         return ret;
4271 }
4272 EXPORT_SYMBOL(drm_dp_mst_detect_port);
4273
4274 /**
4275  * drm_dp_mst_get_edid() - get EDID for an MST port
4276  * @connector: toplevel connector to get EDID for
4277  * @mgr: manager for this port
4278  * @port: unverified pointer to a port.
4279  *
4280  * This returns an EDID for the port connected to a connector,
4281  * It validates the pointer still exists so the caller doesn't require a
4282  * reference.
4283  */
4284 struct edid *drm_dp_mst_get_edid(struct drm_connector *connector, struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port)
4285 {
4286         struct edid *edid = NULL;
4287
4288         /* we need to search for the port in the mgr in case it's gone */
4289         port = drm_dp_mst_topology_get_port_validated(mgr, port);
4290         if (!port)
4291                 return NULL;
4292
4293         if (port->cached_edid)
4294                 edid = drm_edid_duplicate(port->cached_edid);
4295         else {
4296                 edid = drm_get_edid(connector, &port->aux.ddc);
4297         }
4298         port->has_audio = drm_detect_monitor_audio(edid);
4299         drm_dp_mst_topology_put_port(port);
4300         return edid;
4301 }
4302 EXPORT_SYMBOL(drm_dp_mst_get_edid);
4303
4304 /**
4305  * drm_dp_find_vcpi_slots() - Find VCPI slots for this PBN value
4306  * @mgr: manager to use
4307  * @pbn: payload bandwidth to convert into slots.
4308  *
4309  * Calculate the number of VCPI slots that will be required for the given PBN
4310  * value. This function is deprecated, and should not be used in atomic
4311  * drivers.
4312  *
4313  * RETURNS:
4314  * The total slots required for this port, or error.
4315  */
4316 int drm_dp_find_vcpi_slots(struct drm_dp_mst_topology_mgr *mgr,
4317                            int pbn)
4318 {
4319         int num_slots;
4320
4321         num_slots = DIV_ROUND_UP(pbn, mgr->pbn_div);
4322
4323         /* max. time slots - one slot for MTP header */
4324         if (num_slots > 63)
4325                 return -ENOSPC;
4326         return num_slots;
4327 }
4328 EXPORT_SYMBOL(drm_dp_find_vcpi_slots);
4329
4330 static int drm_dp_init_vcpi(struct drm_dp_mst_topology_mgr *mgr,
4331                             struct drm_dp_vcpi *vcpi, int pbn, int slots)
4332 {
4333         int ret;
4334
4335         /* max. time slots - one slot for MTP header */
4336         if (slots > 63)
4337                 return -ENOSPC;
4338
4339         vcpi->pbn = pbn;
4340         vcpi->aligned_pbn = slots * mgr->pbn_div;
4341         vcpi->num_slots = slots;
4342
4343         ret = drm_dp_mst_assign_payload_id(mgr, vcpi);
4344         if (ret < 0)
4345                 return ret;
4346         return 0;
4347 }
4348
4349 /**
4350  * drm_dp_atomic_find_vcpi_slots() - Find and add VCPI slots to the state
4351  * @state: global atomic state
4352  * @mgr: MST topology manager for the port
4353  * @port: port to find vcpi slots for
4354  * @pbn: bandwidth required for the mode in PBN
4355  * @pbn_div: divider for DSC mode that takes FEC into account
4356  *
4357  * Allocates VCPI slots to @port, replacing any previous VCPI allocations it
4358  * may have had. Any atomic drivers which support MST must call this function
4359  * in their &drm_encoder_helper_funcs.atomic_check() callback to change the
4360  * current VCPI allocation for the new state, but only when
4361  * &drm_crtc_state.mode_changed or &drm_crtc_state.connectors_changed is set
4362  * to ensure compatibility with userspace applications that still use the
4363  * legacy modesetting UAPI.
4364  *
4365  * Allocations set by this function are not checked against the bandwidth
4366  * restraints of @mgr until the driver calls drm_dp_mst_atomic_check().
4367  *
4368  * Additionally, it is OK to call this function multiple times on the same
4369  * @port as needed. It is not OK however, to call this function and
4370  * drm_dp_atomic_release_vcpi_slots() in the same atomic check phase.
4371  *
4372  * See also:
4373  * drm_dp_atomic_release_vcpi_slots()
4374  * drm_dp_mst_atomic_check()
4375  *
4376  * Returns:
4377  * Total slots in the atomic state assigned for this port, or a negative error
4378  * code if the port no longer exists
4379  */
4380 int drm_dp_atomic_find_vcpi_slots(struct drm_atomic_state *state,
4381                                   struct drm_dp_mst_topology_mgr *mgr,
4382                                   struct drm_dp_mst_port *port, int pbn,
4383                                   int pbn_div)
4384 {
4385         struct drm_dp_mst_topology_state *topology_state;
4386         struct drm_dp_vcpi_allocation *pos, *vcpi = NULL;
4387         int prev_slots, prev_bw, req_slots;
4388
4389         topology_state = drm_atomic_get_mst_topology_state(state, mgr);
4390         if (IS_ERR(topology_state))
4391                 return PTR_ERR(topology_state);
4392
4393         /* Find the current allocation for this port, if any */
4394         list_for_each_entry(pos, &topology_state->vcpis, next) {
4395                 if (pos->port == port) {
4396                         vcpi = pos;
4397                         prev_slots = vcpi->vcpi;
4398                         prev_bw = vcpi->pbn;
4399
4400                         /*
4401                          * This should never happen, unless the driver tries
4402                          * releasing and allocating the same VCPI allocation,
4403                          * which is an error
4404                          */
4405                         if (WARN_ON(!prev_slots)) {
4406                                 drm_err(mgr->dev,
4407                                         "cannot allocate and release VCPI on [MST PORT:%p] in the same state\n",
4408                                         port);
4409                                 return -EINVAL;
4410                         }
4411
4412                         break;
4413                 }
4414         }
4415         if (!vcpi) {
4416                 prev_slots = 0;
4417                 prev_bw = 0;
4418         }
4419
4420         if (pbn_div <= 0)
4421                 pbn_div = mgr->pbn_div;
4422
4423         req_slots = DIV_ROUND_UP(pbn, pbn_div);
4424
4425         drm_dbg_atomic(mgr->dev, "[CONNECTOR:%d:%s] [MST PORT:%p] VCPI %d -> %d\n",
4426                        port->connector->base.id, port->connector->name,
4427                        port, prev_slots, req_slots);
4428         drm_dbg_atomic(mgr->dev, "[CONNECTOR:%d:%s] [MST PORT:%p] PBN %d -> %d\n",
4429                        port->connector->base.id, port->connector->name,
4430                        port, prev_bw, pbn);
4431
4432         /* Add the new allocation to the state */
4433         if (!vcpi) {
4434                 vcpi = kzalloc(sizeof(*vcpi), GFP_KERNEL);
4435                 if (!vcpi)
4436                         return -ENOMEM;
4437
4438                 drm_dp_mst_get_port_malloc(port);
4439                 vcpi->port = port;
4440                 list_add(&vcpi->next, &topology_state->vcpis);
4441         }
4442         vcpi->vcpi = req_slots;
4443         vcpi->pbn = pbn;
4444
4445         return req_slots;
4446 }
4447 EXPORT_SYMBOL(drm_dp_atomic_find_vcpi_slots);
4448
4449 /**
4450  * drm_dp_atomic_release_vcpi_slots() - Release allocated vcpi slots
4451  * @state: global atomic state
4452  * @mgr: MST topology manager for the port
4453  * @port: The port to release the VCPI slots from
4454  *
4455  * Releases any VCPI slots that have been allocated to a port in the atomic
4456  * state. Any atomic drivers which support MST must call this function in
4457  * their &drm_connector_helper_funcs.atomic_check() callback when the
4458  * connector will no longer have VCPI allocated (e.g. because its CRTC was
4459  * removed) when it had VCPI allocated in the previous atomic state.
4460  *
4461  * It is OK to call this even if @port has been removed from the system.
4462  * Additionally, it is OK to call this function multiple times on the same
4463  * @port as needed. It is not OK however, to call this function and
4464  * drm_dp_atomic_find_vcpi_slots() on the same @port in a single atomic check
4465  * phase.
4466  *
4467  * See also:
4468  * drm_dp_atomic_find_vcpi_slots()
4469  * drm_dp_mst_atomic_check()
4470  *
4471  * Returns:
4472  * 0 if all slots for this port were added back to
4473  * &drm_dp_mst_topology_state.avail_slots or negative error code
4474  */
4475 int drm_dp_atomic_release_vcpi_slots(struct drm_atomic_state *state,
4476                                      struct drm_dp_mst_topology_mgr *mgr,
4477                                      struct drm_dp_mst_port *port)
4478 {
4479         struct drm_dp_mst_topology_state *topology_state;
4480         struct drm_dp_vcpi_allocation *pos;
4481         bool found = false;
4482
4483         topology_state = drm_atomic_get_mst_topology_state(state, mgr);
4484         if (IS_ERR(topology_state))
4485                 return PTR_ERR(topology_state);
4486
4487         list_for_each_entry(pos, &topology_state->vcpis, next) {
4488                 if (pos->port == port) {
4489                         found = true;
4490                         break;
4491                 }
4492         }
4493         if (WARN_ON(!found)) {
4494                 drm_err(mgr->dev, "no VCPI for [MST PORT:%p] found in mst state %p\n",
4495                         port, &topology_state->base);
4496                 return -EINVAL;
4497         }
4498
4499         drm_dbg_atomic(mgr->dev, "[MST PORT:%p] VCPI %d -> 0\n", port, pos->vcpi);
4500         if (pos->vcpi) {
4501                 drm_dp_mst_put_port_malloc(port);
4502                 pos->vcpi = 0;
4503                 pos->pbn = 0;
4504         }
4505
4506         return 0;
4507 }
4508 EXPORT_SYMBOL(drm_dp_atomic_release_vcpi_slots);
4509
4510 /**
4511  * drm_dp_mst_allocate_vcpi() - Allocate a virtual channel
4512  * @mgr: manager for this port
4513  * @port: port to allocate a virtual channel for.
4514  * @pbn: payload bandwidth number to request
4515  * @slots: returned number of slots for this PBN.
4516  */
4517 bool drm_dp_mst_allocate_vcpi(struct drm_dp_mst_topology_mgr *mgr,
4518                               struct drm_dp_mst_port *port, int pbn, int slots)
4519 {
4520         int ret;
4521
4522         if (slots < 0)
4523                 return false;
4524
4525         port = drm_dp_mst_topology_get_port_validated(mgr, port);
4526         if (!port)
4527                 return false;
4528
4529         if (port->vcpi.vcpi > 0) {
4530                 drm_dbg_kms(mgr->dev,
4531                             "payload: vcpi %d already allocated for pbn %d - requested pbn %d\n",
4532                             port->vcpi.vcpi, port->vcpi.pbn, pbn);
4533                 if (pbn == port->vcpi.pbn) {
4534                         drm_dp_mst_topology_put_port(port);
4535                         return true;
4536                 }
4537         }
4538
4539         ret = drm_dp_init_vcpi(mgr, &port->vcpi, pbn, slots);
4540         if (ret) {
4541                 drm_dbg_kms(mgr->dev, "failed to init vcpi slots=%d max=63 ret=%d\n",
4542                             DIV_ROUND_UP(pbn, mgr->pbn_div), ret);
4543                 drm_dp_mst_topology_put_port(port);
4544                 goto out;
4545         }
4546         drm_dbg_kms(mgr->dev, "initing vcpi for pbn=%d slots=%d\n", pbn, port->vcpi.num_slots);
4547
4548         /* Keep port allocated until its payload has been removed */
4549         drm_dp_mst_get_port_malloc(port);
4550         drm_dp_mst_topology_put_port(port);
4551         return true;
4552 out:
4553         return false;
4554 }
4555 EXPORT_SYMBOL(drm_dp_mst_allocate_vcpi);
4556
4557 int drm_dp_mst_get_vcpi_slots(struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port)
4558 {
4559         int slots = 0;
4560
4561         port = drm_dp_mst_topology_get_port_validated(mgr, port);
4562         if (!port)
4563                 return slots;
4564
4565         slots = port->vcpi.num_slots;
4566         drm_dp_mst_topology_put_port(port);
4567         return slots;
4568 }
4569 EXPORT_SYMBOL(drm_dp_mst_get_vcpi_slots);
4570
4571 /**
4572  * drm_dp_mst_reset_vcpi_slots() - Reset number of slots to 0 for VCPI
4573  * @mgr: manager for this port
4574  * @port: unverified pointer to a port.
4575  *
4576  * This just resets the number of slots for the ports VCPI for later programming.
4577  */
4578 void drm_dp_mst_reset_vcpi_slots(struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port)
4579 {
4580         /*
4581          * A port with VCPI will remain allocated until its VCPI is
4582          * released, no verified ref needed
4583          */
4584
4585         port->vcpi.num_slots = 0;
4586 }
4587 EXPORT_SYMBOL(drm_dp_mst_reset_vcpi_slots);
4588
4589 /**
4590  * drm_dp_mst_deallocate_vcpi() - deallocate a VCPI
4591  * @mgr: manager for this port
4592  * @port: port to deallocate vcpi for
4593  *
4594  * This can be called unconditionally, regardless of whether
4595  * drm_dp_mst_allocate_vcpi() succeeded or not.
4596  */
4597 void drm_dp_mst_deallocate_vcpi(struct drm_dp_mst_topology_mgr *mgr,
4598                                 struct drm_dp_mst_port *port)
4599 {
4600         bool skip;
4601
4602         if (!port->vcpi.vcpi)
4603                 return;
4604
4605         mutex_lock(&mgr->lock);
4606         skip = !drm_dp_mst_port_downstream_of_branch(port, mgr->mst_primary);
4607         mutex_unlock(&mgr->lock);
4608
4609         if (skip)
4610                 return;
4611
4612         drm_dp_mst_put_payload_id(mgr, port->vcpi.vcpi);
4613         port->vcpi.num_slots = 0;
4614         port->vcpi.pbn = 0;
4615         port->vcpi.aligned_pbn = 0;
4616         port->vcpi.vcpi = 0;
4617         drm_dp_mst_put_port_malloc(port);
4618 }
4619 EXPORT_SYMBOL(drm_dp_mst_deallocate_vcpi);
4620
4621 static int drm_dp_dpcd_write_payload(struct drm_dp_mst_topology_mgr *mgr,
4622                                      int id, struct drm_dp_payload *payload)
4623 {
4624         u8 payload_alloc[3], status;
4625         int ret;
4626         int retries = 0;
4627
4628         drm_dp_dpcd_writeb(mgr->aux, DP_PAYLOAD_TABLE_UPDATE_STATUS,
4629                            DP_PAYLOAD_TABLE_UPDATED);
4630
4631         payload_alloc[0] = id;
4632         payload_alloc[1] = payload->start_slot;
4633         payload_alloc[2] = payload->num_slots;
4634
4635         ret = drm_dp_dpcd_write(mgr->aux, DP_PAYLOAD_ALLOCATE_SET, payload_alloc, 3);
4636         if (ret != 3) {
4637                 drm_dbg_kms(mgr->dev, "failed to write payload allocation %d\n", ret);
4638                 goto fail;
4639         }
4640
4641 retry:
4642         ret = drm_dp_dpcd_readb(mgr->aux, DP_PAYLOAD_TABLE_UPDATE_STATUS, &status);
4643         if (ret < 0) {
4644                 drm_dbg_kms(mgr->dev, "failed to read payload table status %d\n", ret);
4645                 goto fail;
4646         }
4647
4648         if (!(status & DP_PAYLOAD_TABLE_UPDATED)) {
4649                 retries++;
4650                 if (retries < 20) {
4651                         usleep_range(10000, 20000);
4652                         goto retry;
4653                 }
4654                 drm_dbg_kms(mgr->dev, "status not set after read payload table status %d\n",
4655                             status);
4656                 ret = -EINVAL;
4657                 goto fail;
4658         }
4659         ret = 0;
4660 fail:
4661         return ret;
4662 }
4663
4664 static int do_get_act_status(struct drm_dp_aux *aux)
4665 {
4666         int ret;
4667         u8 status;
4668
4669         ret = drm_dp_dpcd_readb(aux, DP_PAYLOAD_TABLE_UPDATE_STATUS, &status);
4670         if (ret < 0)
4671                 return ret;
4672
4673         return status;
4674 }
4675
4676 /**
4677  * drm_dp_check_act_status() - Polls for ACT handled status.
4678  * @mgr: manager to use
4679  *
4680  * Tries waiting for the MST hub to finish updating it's payload table by
4681  * polling for the ACT handled bit for up to 3 seconds (yes-some hubs really
4682  * take that long).
4683  *
4684  * Returns:
4685  * 0 if the ACT was handled in time, negative error code on failure.
4686  */
4687 int drm_dp_check_act_status(struct drm_dp_mst_topology_mgr *mgr)
4688 {
4689         /*
4690          * There doesn't seem to be any recommended retry count or timeout in
4691          * the MST specification. Since some hubs have been observed to take
4692          * over 1 second to update their payload allocations under certain
4693          * conditions, we use a rather large timeout value.
4694          */
4695         const int timeout_ms = 3000;
4696         int ret, status;
4697
4698         ret = readx_poll_timeout(do_get_act_status, mgr->aux, status,
4699                                  status & DP_PAYLOAD_ACT_HANDLED || status < 0,
4700                                  200, timeout_ms * USEC_PER_MSEC);
4701         if (ret < 0 && status >= 0) {
4702                 drm_err(mgr->dev, "Failed to get ACT after %dms, last status: %02x\n",
4703                         timeout_ms, status);
4704                 return -EINVAL;
4705         } else if (status < 0) {
4706                 /*
4707                  * Failure here isn't unexpected - the hub may have
4708                  * just been unplugged
4709                  */
4710                 drm_dbg_kms(mgr->dev, "Failed to read payload table status: %d\n", status);
4711                 return status;
4712         }
4713
4714         return 0;
4715 }
4716 EXPORT_SYMBOL(drm_dp_check_act_status);
4717
4718 /**
4719  * drm_dp_calc_pbn_mode() - Calculate the PBN for a mode.
4720  * @clock: dot clock for the mode
4721  * @bpp: bpp for the mode.
4722  * @dsc: DSC mode. If true, bpp has units of 1/16 of a bit per pixel
4723  *
4724  * This uses the formula in the spec to calculate the PBN value for a mode.
4725  */
4726 int drm_dp_calc_pbn_mode(int clock, int bpp, bool dsc)
4727 {
4728         /*
4729          * margin 5300ppm + 300ppm ~ 0.6% as per spec, factor is 1.006
4730          * The unit of 54/64Mbytes/sec is an arbitrary unit chosen based on
4731          * common multiplier to render an integer PBN for all link rate/lane
4732          * counts combinations
4733          * calculate
4734          * peak_kbps *= (1006/1000)
4735          * peak_kbps *= (64/54)
4736          * peak_kbps *= 8    convert to bytes
4737          *
4738          * If the bpp is in units of 1/16, further divide by 16. Put this
4739          * factor in the numerator rather than the denominator to avoid
4740          * integer overflow
4741          */
4742
4743         if (dsc)
4744                 return DIV_ROUND_UP_ULL(mul_u32_u32(clock * (bpp / 16), 64 * 1006),
4745                                         8 * 54 * 1000 * 1000);
4746
4747         return DIV_ROUND_UP_ULL(mul_u32_u32(clock * bpp, 64 * 1006),
4748                                 8 * 54 * 1000 * 1000);
4749 }
4750 EXPORT_SYMBOL(drm_dp_calc_pbn_mode);
4751
4752 /* we want to kick the TX after we've ack the up/down IRQs. */
4753 static void drm_dp_mst_kick_tx(struct drm_dp_mst_topology_mgr *mgr)
4754 {
4755         queue_work(system_long_wq, &mgr->tx_work);
4756 }
4757
4758 /*
4759  * Helper function for parsing DP device types into convenient strings
4760  * for use with dp_mst_topology
4761  */
4762 static const char *pdt_to_string(u8 pdt)
4763 {
4764         switch (pdt) {
4765         case DP_PEER_DEVICE_NONE:
4766                 return "NONE";
4767         case DP_PEER_DEVICE_SOURCE_OR_SST:
4768                 return "SOURCE OR SST";
4769         case DP_PEER_DEVICE_MST_BRANCHING:
4770                 return "MST BRANCHING";
4771         case DP_PEER_DEVICE_SST_SINK:
4772                 return "SST SINK";
4773         case DP_PEER_DEVICE_DP_LEGACY_CONV:
4774                 return "DP LEGACY CONV";
4775         default:
4776                 return "ERR";
4777         }
4778 }
4779
4780 static void drm_dp_mst_dump_mstb(struct seq_file *m,
4781                                  struct drm_dp_mst_branch *mstb)
4782 {
4783         struct drm_dp_mst_port *port;
4784         int tabs = mstb->lct;
4785         char prefix[10];
4786         int i;
4787
4788         for (i = 0; i < tabs; i++)
4789                 prefix[i] = '\t';
4790         prefix[i] = '\0';
4791
4792         seq_printf(m, "%smstb - [%p]: num_ports: %d\n", prefix, mstb, mstb->num_ports);
4793         list_for_each_entry(port, &mstb->ports, next) {
4794                 seq_printf(m, "%sport %d - [%p] (%s - %s): ddps: %d, ldps: %d, sdp: %d/%d, fec: %s, conn: %p\n", 
4795                            prefix,
4796                            port->port_num,
4797                            port,
4798                            port->input ? "input" : "output",
4799                            pdt_to_string(port->pdt),
4800                            port->ddps,
4801                            port->ldps,
4802                            port->num_sdp_streams,
4803                            port->num_sdp_stream_sinks,
4804                            port->fec_capable ? "true" : "false",
4805                            port->connector);
4806                 if (port->mstb)
4807                         drm_dp_mst_dump_mstb(m, port->mstb);
4808         }
4809 }
4810
4811 #define DP_PAYLOAD_TABLE_SIZE           64
4812
4813 static bool dump_dp_payload_table(struct drm_dp_mst_topology_mgr *mgr,
4814                                   char *buf)
4815 {
4816         int i;
4817
4818         for (i = 0; i < DP_PAYLOAD_TABLE_SIZE; i += 16) {
4819                 if (drm_dp_dpcd_read(mgr->aux,
4820                                      DP_PAYLOAD_TABLE_UPDATE_STATUS + i,
4821                                      &buf[i], 16) != 16)
4822                         return false;
4823         }
4824         return true;
4825 }
4826
4827 static void fetch_monitor_name(struct drm_dp_mst_topology_mgr *mgr,
4828                                struct drm_dp_mst_port *port, char *name,
4829                                int namelen)
4830 {
4831         struct edid *mst_edid;
4832
4833         mst_edid = drm_dp_mst_get_edid(port->connector, mgr, port);
4834         drm_edid_get_monitor_name(mst_edid, name, namelen);
4835 }
4836
4837 /**
4838  * drm_dp_mst_dump_topology(): dump topology to seq file.
4839  * @m: seq_file to dump output to
4840  * @mgr: manager to dump current topology for.
4841  *
4842  * helper to dump MST topology to a seq file for debugfs.
4843  */
4844 void drm_dp_mst_dump_topology(struct seq_file *m,
4845                               struct drm_dp_mst_topology_mgr *mgr)
4846 {
4847         int i;
4848         struct drm_dp_mst_port *port;
4849
4850         mutex_lock(&mgr->lock);
4851         if (mgr->mst_primary)
4852                 drm_dp_mst_dump_mstb(m, mgr->mst_primary);
4853
4854         /* dump VCPIs */
4855         mutex_unlock(&mgr->lock);
4856
4857         mutex_lock(&mgr->payload_lock);
4858         seq_printf(m, "\n*** VCPI Info ***\n");
4859         seq_printf(m, "payload_mask: %lx, vcpi_mask: %lx, max_payloads: %d\n", mgr->payload_mask, mgr->vcpi_mask, mgr->max_payloads);
4860
4861         seq_printf(m, "\n|   idx   |  port # |  vcp_id | # slots |     sink name     |\n");
4862         for (i = 0; i < mgr->max_payloads; i++) {
4863                 if (mgr->proposed_vcpis[i]) {
4864                         char name[14];
4865
4866                         port = container_of(mgr->proposed_vcpis[i], struct drm_dp_mst_port, vcpi);
4867                         fetch_monitor_name(mgr, port, name, sizeof(name));
4868                         seq_printf(m, "%10d%10d%10d%10d%20s\n",
4869                                    i,
4870                                    port->port_num,
4871                                    port->vcpi.vcpi,
4872                                    port->vcpi.num_slots,
4873                                    (*name != 0) ? name : "Unknown");
4874                 } else
4875                         seq_printf(m, "%6d - Unused\n", i);
4876         }
4877         seq_printf(m, "\n*** Payload Info ***\n");
4878         seq_printf(m, "|   idx   |  state  |  start slot  | # slots |\n");
4879         for (i = 0; i < mgr->max_payloads; i++) {
4880                 seq_printf(m, "%10d%10d%15d%10d\n",
4881                            i,
4882                            mgr->payloads[i].payload_state,
4883                            mgr->payloads[i].start_slot,
4884                            mgr->payloads[i].num_slots);
4885         }
4886         mutex_unlock(&mgr->payload_lock);
4887
4888         seq_printf(m, "\n*** DPCD Info ***\n");
4889         mutex_lock(&mgr->lock);
4890         if (mgr->mst_primary) {
4891                 u8 buf[DP_PAYLOAD_TABLE_SIZE];
4892                 int ret;
4893
4894                 ret = drm_dp_dpcd_read(mgr->aux, DP_DPCD_REV, buf, DP_RECEIVER_CAP_SIZE);
4895                 if (ret) {
4896                         seq_printf(m, "dpcd read failed\n");
4897                         goto out;
4898                 }
4899                 seq_printf(m, "dpcd: %*ph\n", DP_RECEIVER_CAP_SIZE, buf);
4900
4901                 ret = drm_dp_dpcd_read(mgr->aux, DP_FAUX_CAP, buf, 2);
4902                 if (ret) {
4903                         seq_printf(m, "faux/mst read failed\n");
4904                         goto out;
4905                 }
4906                 seq_printf(m, "faux/mst: %*ph\n", 2, buf);
4907
4908                 ret = drm_dp_dpcd_read(mgr->aux, DP_MSTM_CTRL, buf, 1);
4909                 if (ret) {
4910                         seq_printf(m, "mst ctrl read failed\n");
4911                         goto out;
4912                 }
4913                 seq_printf(m, "mst ctrl: %*ph\n", 1, buf);
4914
4915                 /* dump the standard OUI branch header */
4916                 ret = drm_dp_dpcd_read(mgr->aux, DP_BRANCH_OUI, buf, DP_BRANCH_OUI_HEADER_SIZE);
4917                 if (ret) {
4918                         seq_printf(m, "branch oui read failed\n");
4919                         goto out;
4920                 }
4921                 seq_printf(m, "branch oui: %*phN devid: ", 3, buf);
4922
4923                 for (i = 0x3; i < 0x8 && buf[i]; i++)
4924                         seq_printf(m, "%c", buf[i]);
4925                 seq_printf(m, " revision: hw: %x.%x sw: %x.%x\n",
4926                            buf[0x9] >> 4, buf[0x9] & 0xf, buf[0xa], buf[0xb]);
4927                 if (dump_dp_payload_table(mgr, buf))
4928                         seq_printf(m, "payload table: %*ph\n", DP_PAYLOAD_TABLE_SIZE, buf);
4929         }
4930
4931 out:
4932         mutex_unlock(&mgr->lock);
4933
4934 }
4935 EXPORT_SYMBOL(drm_dp_mst_dump_topology);
4936
4937 static void drm_dp_tx_work(struct work_struct *work)
4938 {
4939         struct drm_dp_mst_topology_mgr *mgr = container_of(work, struct drm_dp_mst_topology_mgr, tx_work);
4940
4941         mutex_lock(&mgr->qlock);
4942         if (!list_empty(&mgr->tx_msg_downq))
4943                 process_single_down_tx_qlock(mgr);
4944         mutex_unlock(&mgr->qlock);
4945 }
4946
4947 static inline void
4948 drm_dp_delayed_destroy_port(struct drm_dp_mst_port *port)
4949 {
4950         drm_dp_port_set_pdt(port, DP_PEER_DEVICE_NONE, port->mcs);
4951
4952         if (port->connector) {
4953                 drm_connector_unregister(port->connector);
4954                 drm_connector_put(port->connector);
4955         }
4956
4957         drm_dp_mst_put_port_malloc(port);
4958 }
4959
4960 static inline void
4961 drm_dp_delayed_destroy_mstb(struct drm_dp_mst_branch *mstb)
4962 {
4963         struct drm_dp_mst_topology_mgr *mgr = mstb->mgr;
4964         struct drm_dp_mst_port *port, *port_tmp;
4965         struct drm_dp_sideband_msg_tx *txmsg, *txmsg_tmp;
4966         bool wake_tx = false;
4967
4968         mutex_lock(&mgr->lock);
4969         list_for_each_entry_safe(port, port_tmp, &mstb->ports, next) {
4970                 list_del(&port->next);
4971                 drm_dp_mst_topology_put_port(port);
4972         }
4973         mutex_unlock(&mgr->lock);
4974
4975         /* drop any tx slot msg */
4976         mutex_lock(&mstb->mgr->qlock);
4977         list_for_each_entry_safe(txmsg, txmsg_tmp, &mgr->tx_msg_downq, next) {
4978                 if (txmsg->dst != mstb)
4979                         continue;
4980
4981                 txmsg->state = DRM_DP_SIDEBAND_TX_TIMEOUT;
4982                 list_del(&txmsg->next);
4983                 wake_tx = true;
4984         }
4985         mutex_unlock(&mstb->mgr->qlock);
4986
4987         if (wake_tx)
4988                 wake_up_all(&mstb->mgr->tx_waitq);
4989
4990         drm_dp_mst_put_mstb_malloc(mstb);
4991 }
4992
4993 static void drm_dp_delayed_destroy_work(struct work_struct *work)
4994 {
4995         struct drm_dp_mst_topology_mgr *mgr =
4996                 container_of(work, struct drm_dp_mst_topology_mgr,
4997                              delayed_destroy_work);
4998         bool send_hotplug = false, go_again;
4999
5000         /*
5001          * Not a regular list traverse as we have to drop the destroy
5002          * connector lock before destroying the mstb/port, to avoid AB->BA
5003          * ordering between this lock and the config mutex.
5004          */
5005         do {
5006                 go_again = false;
5007
5008                 for (;;) {
5009                         struct drm_dp_mst_branch *mstb;
5010
5011                         mutex_lock(&mgr->delayed_destroy_lock);
5012                         mstb = list_first_entry_or_null(&mgr->destroy_branch_device_list,
5013                                                         struct drm_dp_mst_branch,
5014                                                         destroy_next);
5015                         if (mstb)
5016                                 list_del(&mstb->destroy_next);
5017                         mutex_unlock(&mgr->delayed_destroy_lock);
5018
5019                         if (!mstb)
5020                                 break;
5021
5022                         drm_dp_delayed_destroy_mstb(mstb);
5023                         go_again = true;
5024                 }
5025
5026                 for (;;) {
5027                         struct drm_dp_mst_port *port;
5028
5029                         mutex_lock(&mgr->delayed_destroy_lock);
5030                         port = list_first_entry_or_null(&mgr->destroy_port_list,
5031                                                         struct drm_dp_mst_port,
5032                                                         next);
5033                         if (port)
5034                                 list_del(&port->next);
5035                         mutex_unlock(&mgr->delayed_destroy_lock);
5036
5037                         if (!port)
5038                                 break;
5039
5040                         drm_dp_delayed_destroy_port(port);
5041                         send_hotplug = true;
5042                         go_again = true;
5043                 }
5044         } while (go_again);
5045
5046         if (send_hotplug)
5047                 drm_kms_helper_hotplug_event(mgr->dev);
5048 }
5049
5050 static struct drm_private_state *
5051 drm_dp_mst_duplicate_state(struct drm_private_obj *obj)
5052 {
5053         struct drm_dp_mst_topology_state *state, *old_state =
5054                 to_dp_mst_topology_state(obj->state);
5055         struct drm_dp_vcpi_allocation *pos, *vcpi;
5056
5057         state = kmemdup(old_state, sizeof(*state), GFP_KERNEL);
5058         if (!state)
5059                 return NULL;
5060
5061         __drm_atomic_helper_private_obj_duplicate_state(obj, &state->base);
5062
5063         INIT_LIST_HEAD(&state->vcpis);
5064
5065         list_for_each_entry(pos, &old_state->vcpis, next) {
5066                 /* Prune leftover freed VCPI allocations */
5067                 if (!pos->vcpi)
5068                         continue;
5069
5070                 vcpi = kmemdup(pos, sizeof(*vcpi), GFP_KERNEL);
5071                 if (!vcpi)
5072                         goto fail;
5073
5074                 drm_dp_mst_get_port_malloc(vcpi->port);
5075                 list_add(&vcpi->next, &state->vcpis);
5076         }
5077
5078         return &state->base;
5079
5080 fail:
5081         list_for_each_entry_safe(pos, vcpi, &state->vcpis, next) {
5082                 drm_dp_mst_put_port_malloc(pos->port);
5083                 kfree(pos);
5084         }
5085         kfree(state);
5086
5087         return NULL;
5088 }
5089
5090 static void drm_dp_mst_destroy_state(struct drm_private_obj *obj,
5091                                      struct drm_private_state *state)
5092 {
5093         struct drm_dp_mst_topology_state *mst_state =
5094                 to_dp_mst_topology_state(state);
5095         struct drm_dp_vcpi_allocation *pos, *tmp;
5096
5097         list_for_each_entry_safe(pos, tmp, &mst_state->vcpis, next) {
5098                 /* We only keep references to ports with non-zero VCPIs */
5099                 if (pos->vcpi)
5100                         drm_dp_mst_put_port_malloc(pos->port);
5101                 kfree(pos);
5102         }
5103
5104         kfree(mst_state);
5105 }
5106
5107 static bool drm_dp_mst_port_downstream_of_branch(struct drm_dp_mst_port *port,
5108                                                  struct drm_dp_mst_branch *branch)
5109 {
5110         while (port->parent) {
5111                 if (port->parent == branch)
5112                         return true;
5113
5114                 if (port->parent->port_parent)
5115                         port = port->parent->port_parent;
5116                 else
5117                         break;
5118         }
5119         return false;
5120 }
5121
5122 static int
5123 drm_dp_mst_atomic_check_port_bw_limit(struct drm_dp_mst_port *port,
5124                                       struct drm_dp_mst_topology_state *state);
5125
5126 static int
5127 drm_dp_mst_atomic_check_mstb_bw_limit(struct drm_dp_mst_branch *mstb,
5128                                       struct drm_dp_mst_topology_state *state)
5129 {
5130         struct drm_dp_vcpi_allocation *vcpi;
5131         struct drm_dp_mst_port *port;
5132         int pbn_used = 0, ret;
5133         bool found = false;
5134
5135         /* Check that we have at least one port in our state that's downstream
5136          * of this branch, otherwise we can skip this branch
5137          */
5138         list_for_each_entry(vcpi, &state->vcpis, next) {
5139                 if (!vcpi->pbn ||
5140                     !drm_dp_mst_port_downstream_of_branch(vcpi->port, mstb))
5141                         continue;
5142
5143                 found = true;
5144                 break;
5145         }
5146         if (!found)
5147                 return 0;
5148
5149         if (mstb->port_parent)
5150                 drm_dbg_atomic(mstb->mgr->dev,
5151                                "[MSTB:%p] [MST PORT:%p] Checking bandwidth limits on [MSTB:%p]\n",
5152                                mstb->port_parent->parent, mstb->port_parent, mstb);
5153         else
5154                 drm_dbg_atomic(mstb->mgr->dev, "[MSTB:%p] Checking bandwidth limits\n", mstb);
5155
5156         list_for_each_entry(port, &mstb->ports, next) {
5157                 ret = drm_dp_mst_atomic_check_port_bw_limit(port, state);
5158                 if (ret < 0)
5159                         return ret;
5160
5161                 pbn_used += ret;
5162         }
5163
5164         return pbn_used;
5165 }
5166
5167 static int
5168 drm_dp_mst_atomic_check_port_bw_limit(struct drm_dp_mst_port *port,
5169                                       struct drm_dp_mst_topology_state *state)
5170 {
5171         struct drm_dp_vcpi_allocation *vcpi;
5172         int pbn_used = 0;
5173
5174         if (port->pdt == DP_PEER_DEVICE_NONE)
5175                 return 0;
5176
5177         if (drm_dp_mst_is_end_device(port->pdt, port->mcs)) {
5178                 bool found = false;
5179
5180                 list_for_each_entry(vcpi, &state->vcpis, next) {
5181                         if (vcpi->port != port)
5182                                 continue;
5183                         if (!vcpi->pbn)
5184                                 return 0;
5185
5186                         found = true;
5187                         break;
5188                 }
5189                 if (!found)
5190                         return 0;
5191
5192                 /*
5193                  * This could happen if the sink deasserted its HPD line, but
5194                  * the branch device still reports it as attached (PDT != NONE).
5195                  */
5196                 if (!port->full_pbn) {
5197                         drm_dbg_atomic(port->mgr->dev,
5198                                        "[MSTB:%p] [MST PORT:%p] no BW available for the port\n",
5199                                        port->parent, port);
5200                         return -EINVAL;
5201                 }
5202
5203                 pbn_used = vcpi->pbn;
5204         } else {
5205                 pbn_used = drm_dp_mst_atomic_check_mstb_bw_limit(port->mstb,
5206                                                                  state);
5207                 if (pbn_used <= 0)
5208                         return pbn_used;
5209         }
5210
5211         if (pbn_used > port->full_pbn) {
5212                 drm_dbg_atomic(port->mgr->dev,
5213                                "[MSTB:%p] [MST PORT:%p] required PBN of %d exceeds port limit of %d\n",
5214                                port->parent, port, pbn_used, port->full_pbn);
5215                 return -ENOSPC;
5216         }
5217
5218         drm_dbg_atomic(port->mgr->dev, "[MSTB:%p] [MST PORT:%p] uses %d out of %d PBN\n",
5219                        port->parent, port, pbn_used, port->full_pbn);
5220
5221         return pbn_used;
5222 }
5223
5224 static inline int
5225 drm_dp_mst_atomic_check_vcpi_alloc_limit(struct drm_dp_mst_topology_mgr *mgr,
5226                                          struct drm_dp_mst_topology_state *mst_state)
5227 {
5228         struct drm_dp_vcpi_allocation *vcpi;
5229         int avail_slots = 63, payload_count = 0;
5230
5231         list_for_each_entry(vcpi, &mst_state->vcpis, next) {
5232                 /* Releasing VCPI is always OK-even if the port is gone */
5233                 if (!vcpi->vcpi) {
5234                         drm_dbg_atomic(mgr->dev, "[MST PORT:%p] releases all VCPI slots\n",
5235                                        vcpi->port);
5236                         continue;
5237                 }
5238
5239                 drm_dbg_atomic(mgr->dev, "[MST PORT:%p] requires %d vcpi slots\n",
5240                                vcpi->port, vcpi->vcpi);
5241
5242                 avail_slots -= vcpi->vcpi;
5243                 if (avail_slots < 0) {
5244                         drm_dbg_atomic(mgr->dev,
5245                                        "[MST PORT:%p] not enough VCPI slots in mst state %p (avail=%d)\n",
5246                                        vcpi->port, mst_state, avail_slots + vcpi->vcpi);
5247                         return -ENOSPC;
5248                 }
5249
5250                 if (++payload_count > mgr->max_payloads) {
5251                         drm_dbg_atomic(mgr->dev,
5252                                        "[MST MGR:%p] state %p has too many payloads (max=%d)\n",
5253                                        mgr, mst_state, mgr->max_payloads);
5254                         return -EINVAL;
5255                 }
5256         }
5257         drm_dbg_atomic(mgr->dev, "[MST MGR:%p] mst state %p VCPI avail=%d used=%d\n",
5258                        mgr, mst_state, avail_slots, 63 - avail_slots);
5259
5260         return 0;
5261 }
5262
5263 /**
5264  * drm_dp_mst_add_affected_dsc_crtcs
5265  * @state: Pointer to the new struct drm_dp_mst_topology_state
5266  * @mgr: MST topology manager
5267  *
5268  * Whenever there is a change in mst topology
5269  * DSC configuration would have to be recalculated
5270  * therefore we need to trigger modeset on all affected
5271  * CRTCs in that topology
5272  *
5273  * See also:
5274  * drm_dp_mst_atomic_enable_dsc()
5275  */
5276 int drm_dp_mst_add_affected_dsc_crtcs(struct drm_atomic_state *state, struct drm_dp_mst_topology_mgr *mgr)
5277 {
5278         struct drm_dp_mst_topology_state *mst_state;
5279         struct drm_dp_vcpi_allocation *pos;
5280         struct drm_connector *connector;
5281         struct drm_connector_state *conn_state;
5282         struct drm_crtc *crtc;
5283         struct drm_crtc_state *crtc_state;
5284
5285         mst_state = drm_atomic_get_mst_topology_state(state, mgr);
5286
5287         if (IS_ERR(mst_state))
5288                 return -EINVAL;
5289
5290         list_for_each_entry(pos, &mst_state->vcpis, next) {
5291
5292                 connector = pos->port->connector;
5293
5294                 if (!connector)
5295                         return -EINVAL;
5296
5297                 conn_state = drm_atomic_get_connector_state(state, connector);
5298
5299                 if (IS_ERR(conn_state))
5300                         return PTR_ERR(conn_state);
5301
5302                 crtc = conn_state->crtc;
5303
5304                 if (!crtc)
5305                         continue;
5306
5307                 if (!drm_dp_mst_dsc_aux_for_port(pos->port))
5308                         continue;
5309
5310                 crtc_state = drm_atomic_get_crtc_state(mst_state->base.state, crtc);
5311
5312                 if (IS_ERR(crtc_state))
5313                         return PTR_ERR(crtc_state);
5314
5315                 drm_dbg_atomic(mgr->dev, "[MST MGR:%p] Setting mode_changed flag on CRTC %p\n",
5316                                mgr, crtc);
5317
5318                 crtc_state->mode_changed = true;
5319         }
5320         return 0;
5321 }
5322 EXPORT_SYMBOL(drm_dp_mst_add_affected_dsc_crtcs);
5323
5324 /**
5325  * drm_dp_mst_atomic_enable_dsc - Set DSC Enable Flag to On/Off
5326  * @state: Pointer to the new drm_atomic_state
5327  * @port: Pointer to the affected MST Port
5328  * @pbn: Newly recalculated bw required for link with DSC enabled
5329  * @pbn_div: Divider to calculate correct number of pbn per slot
5330  * @enable: Boolean flag to enable or disable DSC on the port
5331  *
5332  * This function enables DSC on the given Port
5333  * by recalculating its vcpi from pbn provided
5334  * and sets dsc_enable flag to keep track of which
5335  * ports have DSC enabled
5336  *
5337  */
5338 int drm_dp_mst_atomic_enable_dsc(struct drm_atomic_state *state,
5339                                  struct drm_dp_mst_port *port,
5340                                  int pbn, int pbn_div,
5341                                  bool enable)
5342 {
5343         struct drm_dp_mst_topology_state *mst_state;
5344         struct drm_dp_vcpi_allocation *pos;
5345         bool found = false;
5346         int vcpi = 0;
5347
5348         mst_state = drm_atomic_get_mst_topology_state(state, port->mgr);
5349
5350         if (IS_ERR(mst_state))
5351                 return PTR_ERR(mst_state);
5352
5353         list_for_each_entry(pos, &mst_state->vcpis, next) {
5354                 if (pos->port == port) {
5355                         found = true;
5356                         break;
5357                 }
5358         }
5359
5360         if (!found) {
5361                 drm_dbg_atomic(state->dev,
5362                                "[MST PORT:%p] Couldn't find VCPI allocation in mst state %p\n",
5363                                port, mst_state);
5364                 return -EINVAL;
5365         }
5366
5367         if (pos->dsc_enabled == enable) {
5368                 drm_dbg_atomic(state->dev,
5369                                "[MST PORT:%p] DSC flag is already set to %d, returning %d VCPI slots\n",
5370                                port, enable, pos->vcpi);
5371                 vcpi = pos->vcpi;
5372         }
5373
5374         if (enable) {
5375                 vcpi = drm_dp_atomic_find_vcpi_slots(state, port->mgr, port, pbn, pbn_div);
5376                 drm_dbg_atomic(state->dev,
5377                                "[MST PORT:%p] Enabling DSC flag, reallocating %d VCPI slots on the port\n",
5378                                port, vcpi);
5379                 if (vcpi < 0)
5380                         return -EINVAL;
5381         }
5382
5383         pos->dsc_enabled = enable;
5384
5385         return vcpi;
5386 }
5387 EXPORT_SYMBOL(drm_dp_mst_atomic_enable_dsc);
5388 /**
5389  * drm_dp_mst_atomic_check - Check that the new state of an MST topology in an
5390  * atomic update is valid
5391  * @state: Pointer to the new &struct drm_dp_mst_topology_state
5392  *
5393  * Checks the given topology state for an atomic update to ensure that it's
5394  * valid. This includes checking whether there's enough bandwidth to support
5395  * the new VCPI allocations in the atomic update.
5396  *
5397  * Any atomic drivers supporting DP MST must make sure to call this after
5398  * checking the rest of their state in their
5399  * &drm_mode_config_funcs.atomic_check() callback.
5400  *
5401  * See also:
5402  * drm_dp_atomic_find_vcpi_slots()
5403  * drm_dp_atomic_release_vcpi_slots()
5404  *
5405  * Returns:
5406  *
5407  * 0 if the new state is valid, negative error code otherwise.
5408  */
5409 int drm_dp_mst_atomic_check(struct drm_atomic_state *state)
5410 {
5411         struct drm_dp_mst_topology_mgr *mgr;
5412         struct drm_dp_mst_topology_state *mst_state;
5413         int i, ret = 0;
5414
5415         for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
5416                 if (!mgr->mst_state)
5417                         continue;
5418
5419                 ret = drm_dp_mst_atomic_check_vcpi_alloc_limit(mgr, mst_state);
5420                 if (ret)
5421                         break;
5422
5423                 mutex_lock(&mgr->lock);
5424                 ret = drm_dp_mst_atomic_check_mstb_bw_limit(mgr->mst_primary,
5425                                                             mst_state);
5426                 mutex_unlock(&mgr->lock);
5427                 if (ret < 0)
5428                         break;
5429                 else
5430                         ret = 0;
5431         }
5432
5433         return ret;
5434 }
5435 EXPORT_SYMBOL(drm_dp_mst_atomic_check);
5436
5437 const struct drm_private_state_funcs drm_dp_mst_topology_state_funcs = {
5438         .atomic_duplicate_state = drm_dp_mst_duplicate_state,
5439         .atomic_destroy_state = drm_dp_mst_destroy_state,
5440 };
5441 EXPORT_SYMBOL(drm_dp_mst_topology_state_funcs);
5442
5443 /**
5444  * drm_atomic_get_mst_topology_state: get MST topology state
5445  *
5446  * @state: global atomic state
5447  * @mgr: MST topology manager, also the private object in this case
5448  *
5449  * This function wraps drm_atomic_get_priv_obj_state() passing in the MST atomic
5450  * state vtable so that the private object state returned is that of a MST
5451  * topology object. Also, drm_atomic_get_private_obj_state() expects the caller
5452  * to care of the locking, so warn if don't hold the connection_mutex.
5453  *
5454  * RETURNS:
5455  *
5456  * The MST topology state or error pointer.
5457  */
5458 struct drm_dp_mst_topology_state *drm_atomic_get_mst_topology_state(struct drm_atomic_state *state,
5459                                                                     struct drm_dp_mst_topology_mgr *mgr)
5460 {
5461         return to_dp_mst_topology_state(drm_atomic_get_private_obj_state(state, &mgr->base));
5462 }
5463 EXPORT_SYMBOL(drm_atomic_get_mst_topology_state);
5464
5465 /**
5466  * drm_dp_mst_topology_mgr_init - initialise a topology manager
5467  * @mgr: manager struct to initialise
5468  * @dev: device providing this structure - for i2c addition.
5469  * @aux: DP helper aux channel to talk to this device
5470  * @max_dpcd_transaction_bytes: hw specific DPCD transaction limit
5471  * @max_payloads: maximum number of payloads this GPU can source
5472  * @max_lane_count: maximum number of lanes this GPU supports
5473  * @max_link_rate: maximum link rate per lane this GPU supports in kHz
5474  * @conn_base_id: the connector object ID the MST device is connected to.
5475  *
5476  * Return 0 for success, or negative error code on failure
5477  */
5478 int drm_dp_mst_topology_mgr_init(struct drm_dp_mst_topology_mgr *mgr,
5479                                  struct drm_device *dev, struct drm_dp_aux *aux,
5480                                  int max_dpcd_transaction_bytes, int max_payloads,
5481                                  int max_lane_count, int max_link_rate,
5482                                  int conn_base_id)
5483 {
5484         struct drm_dp_mst_topology_state *mst_state;
5485
5486         mutex_init(&mgr->lock);
5487         mutex_init(&mgr->qlock);
5488         mutex_init(&mgr->payload_lock);
5489         mutex_init(&mgr->delayed_destroy_lock);
5490         mutex_init(&mgr->up_req_lock);
5491         mutex_init(&mgr->probe_lock);
5492 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
5493         mutex_init(&mgr->topology_ref_history_lock);
5494 #endif
5495         INIT_LIST_HEAD(&mgr->tx_msg_downq);
5496         INIT_LIST_HEAD(&mgr->destroy_port_list);
5497         INIT_LIST_HEAD(&mgr->destroy_branch_device_list);
5498         INIT_LIST_HEAD(&mgr->up_req_list);
5499
5500         /*
5501          * delayed_destroy_work will be queued on a dedicated WQ, so that any
5502          * requeuing will be also flushed when deiniting the topology manager.
5503          */
5504         mgr->delayed_destroy_wq = alloc_ordered_workqueue("drm_dp_mst_wq", 0);
5505         if (mgr->delayed_destroy_wq == NULL)
5506                 return -ENOMEM;
5507
5508         INIT_WORK(&mgr->work, drm_dp_mst_link_probe_work);
5509         INIT_WORK(&mgr->tx_work, drm_dp_tx_work);
5510         INIT_WORK(&mgr->delayed_destroy_work, drm_dp_delayed_destroy_work);
5511         INIT_WORK(&mgr->up_req_work, drm_dp_mst_up_req_work);
5512         init_waitqueue_head(&mgr->tx_waitq);
5513         mgr->dev = dev;
5514         mgr->aux = aux;
5515         mgr->max_dpcd_transaction_bytes = max_dpcd_transaction_bytes;
5516         mgr->max_payloads = max_payloads;
5517         mgr->max_lane_count = max_lane_count;
5518         mgr->max_link_rate = max_link_rate;
5519         mgr->conn_base_id = conn_base_id;
5520         if (max_payloads + 1 > sizeof(mgr->payload_mask) * 8 ||
5521             max_payloads + 1 > sizeof(mgr->vcpi_mask) * 8)
5522                 return -EINVAL;
5523         mgr->payloads = kcalloc(max_payloads, sizeof(struct drm_dp_payload), GFP_KERNEL);
5524         if (!mgr->payloads)
5525                 return -ENOMEM;
5526         mgr->proposed_vcpis = kcalloc(max_payloads, sizeof(struct drm_dp_vcpi *), GFP_KERNEL);
5527         if (!mgr->proposed_vcpis)
5528                 return -ENOMEM;
5529         set_bit(0, &mgr->payload_mask);
5530
5531         mst_state = kzalloc(sizeof(*mst_state), GFP_KERNEL);
5532         if (mst_state == NULL)
5533                 return -ENOMEM;
5534
5535         mst_state->mgr = mgr;
5536         INIT_LIST_HEAD(&mst_state->vcpis);
5537
5538         drm_atomic_private_obj_init(dev, &mgr->base,
5539                                     &mst_state->base,
5540                                     &drm_dp_mst_topology_state_funcs);
5541
5542         return 0;
5543 }
5544 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_init);
5545
5546 /**
5547  * drm_dp_mst_topology_mgr_destroy() - destroy topology manager.
5548  * @mgr: manager to destroy
5549  */
5550 void drm_dp_mst_topology_mgr_destroy(struct drm_dp_mst_topology_mgr *mgr)
5551 {
5552         drm_dp_mst_topology_mgr_set_mst(mgr, false);
5553         flush_work(&mgr->work);
5554         /* The following will also drain any requeued work on the WQ. */
5555         if (mgr->delayed_destroy_wq) {
5556                 destroy_workqueue(mgr->delayed_destroy_wq);
5557                 mgr->delayed_destroy_wq = NULL;
5558         }
5559         mutex_lock(&mgr->payload_lock);
5560         kfree(mgr->payloads);
5561         mgr->payloads = NULL;
5562         kfree(mgr->proposed_vcpis);
5563         mgr->proposed_vcpis = NULL;
5564         mutex_unlock(&mgr->payload_lock);
5565         mgr->dev = NULL;
5566         mgr->aux = NULL;
5567         drm_atomic_private_obj_fini(&mgr->base);
5568         mgr->funcs = NULL;
5569
5570         mutex_destroy(&mgr->delayed_destroy_lock);
5571         mutex_destroy(&mgr->payload_lock);
5572         mutex_destroy(&mgr->qlock);
5573         mutex_destroy(&mgr->lock);
5574         mutex_destroy(&mgr->up_req_lock);
5575         mutex_destroy(&mgr->probe_lock);
5576 #if IS_ENABLED(CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS)
5577         mutex_destroy(&mgr->topology_ref_history_lock);
5578 #endif
5579 }
5580 EXPORT_SYMBOL(drm_dp_mst_topology_mgr_destroy);
5581
5582 static bool remote_i2c_read_ok(const struct i2c_msg msgs[], int num)
5583 {
5584         int i;
5585
5586         if (num - 1 > DP_REMOTE_I2C_READ_MAX_TRANSACTIONS)
5587                 return false;
5588
5589         for (i = 0; i < num - 1; i++) {
5590                 if (msgs[i].flags & I2C_M_RD ||
5591                     msgs[i].len > 0xff)
5592                         return false;
5593         }
5594
5595         return msgs[num - 1].flags & I2C_M_RD &&
5596                 msgs[num - 1].len <= 0xff;
5597 }
5598
5599 static bool remote_i2c_write_ok(const struct i2c_msg msgs[], int num)
5600 {
5601         int i;
5602
5603         for (i = 0; i < num - 1; i++) {
5604                 if (msgs[i].flags & I2C_M_RD || !(msgs[i].flags & I2C_M_STOP) ||
5605                     msgs[i].len > 0xff)
5606                         return false;
5607         }
5608
5609         return !(msgs[num - 1].flags & I2C_M_RD) && msgs[num - 1].len <= 0xff;
5610 }
5611
5612 static int drm_dp_mst_i2c_read(struct drm_dp_mst_branch *mstb,
5613                                struct drm_dp_mst_port *port,
5614                                struct i2c_msg *msgs, int num)
5615 {
5616         struct drm_dp_mst_topology_mgr *mgr = port->mgr;
5617         unsigned int i;
5618         struct drm_dp_sideband_msg_req_body msg;
5619         struct drm_dp_sideband_msg_tx *txmsg = NULL;
5620         int ret;
5621
5622         memset(&msg, 0, sizeof(msg));
5623         msg.req_type = DP_REMOTE_I2C_READ;
5624         msg.u.i2c_read.num_transactions = num - 1;
5625         msg.u.i2c_read.port_number = port->port_num;
5626         for (i = 0; i < num - 1; i++) {
5627                 msg.u.i2c_read.transactions[i].i2c_dev_id = msgs[i].addr;
5628                 msg.u.i2c_read.transactions[i].num_bytes = msgs[i].len;
5629                 msg.u.i2c_read.transactions[i].bytes = msgs[i].buf;
5630                 msg.u.i2c_read.transactions[i].no_stop_bit = !(msgs[i].flags & I2C_M_STOP);
5631         }
5632         msg.u.i2c_read.read_i2c_device_id = msgs[num - 1].addr;
5633         msg.u.i2c_read.num_bytes_read = msgs[num - 1].len;
5634
5635         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
5636         if (!txmsg) {
5637                 ret = -ENOMEM;
5638                 goto out;
5639         }
5640
5641         txmsg->dst = mstb;
5642         drm_dp_encode_sideband_req(&msg, txmsg);
5643
5644         drm_dp_queue_down_tx(mgr, txmsg);
5645
5646         ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
5647         if (ret > 0) {
5648
5649                 if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
5650                         ret = -EREMOTEIO;
5651                         goto out;
5652                 }
5653                 if (txmsg->reply.u.remote_i2c_read_ack.num_bytes != msgs[num - 1].len) {
5654                         ret = -EIO;
5655                         goto out;
5656                 }
5657                 memcpy(msgs[num - 1].buf, txmsg->reply.u.remote_i2c_read_ack.bytes, msgs[num - 1].len);
5658                 ret = num;
5659         }
5660 out:
5661         kfree(txmsg);
5662         return ret;
5663 }
5664
5665 static int drm_dp_mst_i2c_write(struct drm_dp_mst_branch *mstb,
5666                                 struct drm_dp_mst_port *port,
5667                                 struct i2c_msg *msgs, int num)
5668 {
5669         struct drm_dp_mst_topology_mgr *mgr = port->mgr;
5670         unsigned int i;
5671         struct drm_dp_sideband_msg_req_body msg;
5672         struct drm_dp_sideband_msg_tx *txmsg = NULL;
5673         int ret;
5674
5675         txmsg = kzalloc(sizeof(*txmsg), GFP_KERNEL);
5676         if (!txmsg) {
5677                 ret = -ENOMEM;
5678                 goto out;
5679         }
5680         for (i = 0; i < num; i++) {
5681                 memset(&msg, 0, sizeof(msg));
5682                 msg.req_type = DP_REMOTE_I2C_WRITE;
5683                 msg.u.i2c_write.port_number = port->port_num;
5684                 msg.u.i2c_write.write_i2c_device_id = msgs[i].addr;
5685                 msg.u.i2c_write.num_bytes = msgs[i].len;
5686                 msg.u.i2c_write.bytes = msgs[i].buf;
5687
5688                 memset(txmsg, 0, sizeof(*txmsg));
5689                 txmsg->dst = mstb;
5690
5691                 drm_dp_encode_sideband_req(&msg, txmsg);
5692                 drm_dp_queue_down_tx(mgr, txmsg);
5693
5694                 ret = drm_dp_mst_wait_tx_reply(mstb, txmsg);
5695                 if (ret > 0) {
5696                         if (txmsg->reply.reply_type == DP_SIDEBAND_REPLY_NAK) {
5697                                 ret = -EREMOTEIO;
5698                                 goto out;
5699                         }
5700                 } else {
5701                         goto out;
5702                 }
5703         }
5704         ret = num;
5705 out:
5706         kfree(txmsg);
5707         return ret;
5708 }
5709
5710 /* I2C device */
5711 static int drm_dp_mst_i2c_xfer(struct i2c_adapter *adapter,
5712                                struct i2c_msg *msgs, int num)
5713 {
5714         struct drm_dp_aux *aux = adapter->algo_data;
5715         struct drm_dp_mst_port *port =
5716                 container_of(aux, struct drm_dp_mst_port, aux);
5717         struct drm_dp_mst_branch *mstb;
5718         struct drm_dp_mst_topology_mgr *mgr = port->mgr;
5719         int ret;
5720
5721         mstb = drm_dp_mst_topology_get_mstb_validated(mgr, port->parent);
5722         if (!mstb)
5723                 return -EREMOTEIO;
5724
5725         if (remote_i2c_read_ok(msgs, num)) {
5726                 ret = drm_dp_mst_i2c_read(mstb, port, msgs, num);
5727         } else if (remote_i2c_write_ok(msgs, num)) {
5728                 ret = drm_dp_mst_i2c_write(mstb, port, msgs, num);
5729         } else {
5730                 drm_dbg_kms(mgr->dev, "Unsupported I2C transaction for MST device\n");
5731                 ret = -EIO;
5732         }
5733
5734         drm_dp_mst_topology_put_mstb(mstb);
5735         return ret;
5736 }
5737
5738 static u32 drm_dp_mst_i2c_functionality(struct i2c_adapter *adapter)
5739 {
5740         return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
5741                I2C_FUNC_SMBUS_READ_BLOCK_DATA |
5742                I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
5743                I2C_FUNC_10BIT_ADDR;
5744 }
5745
5746 static const struct i2c_algorithm drm_dp_mst_i2c_algo = {
5747         .functionality = drm_dp_mst_i2c_functionality,
5748         .master_xfer = drm_dp_mst_i2c_xfer,
5749 };
5750
5751 /**
5752  * drm_dp_mst_register_i2c_bus() - register an I2C adapter for I2C-over-AUX
5753  * @port: The port to add the I2C bus on
5754  *
5755  * Returns 0 on success or a negative error code on failure.
5756  */
5757 static int drm_dp_mst_register_i2c_bus(struct drm_dp_mst_port *port)
5758 {
5759         struct drm_dp_aux *aux = &port->aux;
5760         struct device *parent_dev = port->mgr->dev->dev;
5761
5762         aux->ddc.algo = &drm_dp_mst_i2c_algo;
5763         aux->ddc.algo_data = aux;
5764         aux->ddc.retries = 3;
5765
5766         aux->ddc.class = I2C_CLASS_DDC;
5767         aux->ddc.owner = THIS_MODULE;
5768         /* FIXME: set the kdev of the port's connector as parent */
5769         aux->ddc.dev.parent = parent_dev;
5770         aux->ddc.dev.of_node = parent_dev->of_node;
5771
5772         strlcpy(aux->ddc.name, aux->name ? aux->name : dev_name(parent_dev),
5773                 sizeof(aux->ddc.name));
5774
5775         return i2c_add_adapter(&aux->ddc);
5776 }
5777
5778 /**
5779  * drm_dp_mst_unregister_i2c_bus() - unregister an I2C-over-AUX adapter
5780  * @port: The port to remove the I2C bus from
5781  */
5782 static void drm_dp_mst_unregister_i2c_bus(struct drm_dp_mst_port *port)
5783 {
5784         i2c_del_adapter(&port->aux.ddc);
5785 }
5786
5787 /**
5788  * drm_dp_mst_is_virtual_dpcd() - Is the given port a virtual DP Peer Device
5789  * @port: The port to check
5790  *
5791  * A single physical MST hub object can be represented in the topology
5792  * by multiple branches, with virtual ports between those branches.
5793  *
5794  * As of DP1.4, An MST hub with internal (virtual) ports must expose
5795  * certain DPCD registers over those ports. See sections 2.6.1.1.1
5796  * and 2.6.1.1.2 of Display Port specification v1.4 for details.
5797  *
5798  * May acquire mgr->lock
5799  *
5800  * Returns:
5801  * true if the port is a virtual DP peer device, false otherwise
5802  */
5803 static bool drm_dp_mst_is_virtual_dpcd(struct drm_dp_mst_port *port)
5804 {
5805         struct drm_dp_mst_port *downstream_port;
5806
5807         if (!port || port->dpcd_rev < DP_DPCD_REV_14)
5808                 return false;
5809
5810         /* Virtual DP Sink (Internal Display Panel) */
5811         if (port->port_num >= 8)
5812                 return true;
5813
5814         /* DP-to-HDMI Protocol Converter */
5815         if (port->pdt == DP_PEER_DEVICE_DP_LEGACY_CONV &&
5816             !port->mcs &&
5817             port->ldps)
5818                 return true;
5819
5820         /* DP-to-DP */
5821         mutex_lock(&port->mgr->lock);
5822         if (port->pdt == DP_PEER_DEVICE_MST_BRANCHING &&
5823             port->mstb &&
5824             port->mstb->num_ports == 2) {
5825                 list_for_each_entry(downstream_port, &port->mstb->ports, next) {
5826                         if (downstream_port->pdt == DP_PEER_DEVICE_SST_SINK &&
5827                             !downstream_port->input) {
5828                                 mutex_unlock(&port->mgr->lock);
5829                                 return true;
5830                         }
5831                 }
5832         }
5833         mutex_unlock(&port->mgr->lock);
5834
5835         return false;
5836 }
5837
5838 /**
5839  * drm_dp_mst_dsc_aux_for_port() - Find the correct aux for DSC
5840  * @port: The port to check. A leaf of the MST tree with an attached display.
5841  *
5842  * Depending on the situation, DSC may be enabled via the endpoint aux,
5843  * the immediately upstream aux, or the connector's physical aux.
5844  *
5845  * This is both the correct aux to read DSC_CAPABILITY and the
5846  * correct aux to write DSC_ENABLED.
5847  *
5848  * This operation can be expensive (up to four aux reads), so
5849  * the caller should cache the return.
5850  *
5851  * Returns:
5852  * NULL if DSC cannot be enabled on this port, otherwise the aux device
5853  */
5854 struct drm_dp_aux *drm_dp_mst_dsc_aux_for_port(struct drm_dp_mst_port *port)
5855 {
5856         struct drm_dp_mst_port *immediate_upstream_port;
5857         struct drm_dp_mst_port *fec_port;
5858         struct drm_dp_desc desc = {};
5859         u8 endpoint_fec;
5860         u8 endpoint_dsc;
5861
5862         if (!port)
5863                 return NULL;
5864
5865         if (port->parent->port_parent)
5866                 immediate_upstream_port = port->parent->port_parent;
5867         else
5868                 immediate_upstream_port = NULL;
5869
5870         fec_port = immediate_upstream_port;
5871         while (fec_port) {
5872                 /*
5873                  * Each physical link (i.e. not a virtual port) between the
5874                  * output and the primary device must support FEC
5875                  */
5876                 if (!drm_dp_mst_is_virtual_dpcd(fec_port) &&
5877                     !fec_port->fec_capable)
5878                         return NULL;
5879
5880                 fec_port = fec_port->parent->port_parent;
5881         }
5882
5883         /* DP-to-DP peer device */
5884         if (drm_dp_mst_is_virtual_dpcd(immediate_upstream_port)) {
5885                 u8 upstream_dsc;
5886
5887                 if (drm_dp_dpcd_read(&port->aux,
5888                                      DP_DSC_SUPPORT, &endpoint_dsc, 1) != 1)
5889                         return NULL;
5890                 if (drm_dp_dpcd_read(&port->aux,
5891                                      DP_FEC_CAPABILITY, &endpoint_fec, 1) != 1)
5892                         return NULL;
5893                 if (drm_dp_dpcd_read(&immediate_upstream_port->aux,
5894                                      DP_DSC_SUPPORT, &upstream_dsc, 1) != 1)
5895                         return NULL;
5896
5897                 /* Enpoint decompression with DP-to-DP peer device */
5898                 if ((endpoint_dsc & DP_DSC_DECOMPRESSION_IS_SUPPORTED) &&
5899                     (endpoint_fec & DP_FEC_CAPABLE) &&
5900                     (upstream_dsc & 0x2) /* DSC passthrough */)
5901                         return &port->aux;
5902
5903                 /* Virtual DPCD decompression with DP-to-DP peer device */
5904                 return &immediate_upstream_port->aux;
5905         }
5906
5907         /* Virtual DPCD decompression with DP-to-HDMI or Virtual DP Sink */
5908         if (drm_dp_mst_is_virtual_dpcd(port))
5909                 return &port->aux;
5910
5911         /*
5912          * Synaptics quirk
5913          * Applies to ports for which:
5914          * - Physical aux has Synaptics OUI
5915          * - DPv1.4 or higher
5916          * - Port is on primary branch device
5917          * - Not a VGA adapter (DP_DWN_STRM_PORT_TYPE_ANALOG)
5918          */
5919         if (drm_dp_read_desc(port->mgr->aux, &desc, true))
5920                 return NULL;
5921
5922         if (drm_dp_has_quirk(&desc, DP_DPCD_QUIRK_DSC_WITHOUT_VIRTUAL_DPCD) &&
5923             port->mgr->dpcd[DP_DPCD_REV] >= DP_DPCD_REV_14 &&
5924             port->parent == port->mgr->mst_primary) {
5925                 u8 dpcd_ext[DP_RECEIVER_CAP_SIZE];
5926
5927                 if (drm_dp_read_dpcd_caps(port->mgr->aux, dpcd_ext) < 0)
5928                         return NULL;
5929
5930                 if ((dpcd_ext[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_PRESENT) &&
5931                     ((dpcd_ext[DP_DOWNSTREAMPORT_PRESENT] & DP_DWN_STRM_PORT_TYPE_MASK)
5932                      != DP_DWN_STRM_PORT_TYPE_ANALOG))
5933                         return port->mgr->aux;
5934         }
5935
5936         /*
5937          * The check below verifies if the MST sink
5938          * connected to the GPU is capable of DSC -
5939          * therefore the endpoint needs to be
5940          * both DSC and FEC capable.
5941          */
5942         if (drm_dp_dpcd_read(&port->aux,
5943            DP_DSC_SUPPORT, &endpoint_dsc, 1) != 1)
5944                 return NULL;
5945         if (drm_dp_dpcd_read(&port->aux,
5946            DP_FEC_CAPABILITY, &endpoint_fec, 1) != 1)
5947                 return NULL;
5948         if ((endpoint_dsc & DP_DSC_DECOMPRESSION_IS_SUPPORTED) &&
5949            (endpoint_fec & DP_FEC_CAPABLE))
5950                 return &port->aux;
5951
5952         return NULL;
5953 }
5954 EXPORT_SYMBOL(drm_dp_mst_dsc_aux_for_port);