blob: b228b46e12231d5267d1146cff27300c9216793d [file] [log] [blame]
Dave Airlie0e32b392014-05-02 14:02:48 +10001/*
2 * Copyright © 2008 Intel Corporation
3 * 2014 Red Hat Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 *
24 */
25
26#include <drm/drmP.h>
27#include "i915_drv.h"
28#include "intel_drv.h"
Matt Roperc6f95f22015-01-22 16:50:32 -080029#include <drm/drm_atomic_helper.h>
Dave Airlie0e32b392014-05-02 14:02:48 +100030#include <drm/drm_crtc_helper.h>
31#include <drm/drm_edid.h>
32
33static bool intel_dp_mst_compute_config(struct intel_encoder *encoder,
Maarten Lankhorst0a478c22016-08-09 17:04:05 +020034 struct intel_crtc_state *pipe_config,
35 struct drm_connector_state *conn_state)
Dave Airlie0e32b392014-05-02 14:02:48 +100036{
37 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(&encoder->base);
38 struct intel_digital_port *intel_dig_port = intel_mst->primary;
39 struct intel_dp *intel_dp = &intel_dig_port->dp;
Ander Conselvan de Oliveirae75f4772015-03-20 16:18:13 +020040 struct drm_atomic_state *state;
Maarten Lankhorst1189e4f2016-08-09 17:04:06 +020041 int bpp;
Ville Syrjälä04a60f92015-07-06 15:10:06 +030042 int lane_count, slots;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +030043 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Dave Airlie0e32b392014-05-02 14:02:48 +100044 int mst_pbn;
45
46 pipe_config->dp_encoder_is_mst = true;
47 pipe_config->has_pch_encoder = false;
Dave Airlie0e32b392014-05-02 14:02:48 +100048 bpp = 24;
49 /*
50 * for MST we always configure max link bw - the spec doesn't
51 * seem to suggest we should do otherwise.
52 */
53 lane_count = drm_dp_max_lane_count(intel_dp->dpcd);
Ville Syrjäläed4e9c12015-03-12 17:10:36 +020054
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030055 pipe_config->lane_count = lane_count;
Dave Airlie0e32b392014-05-02 14:02:48 +100056
57 pipe_config->pipe_bpp = 24;
Ville Syrjälä04a60f92015-07-06 15:10:06 +030058 pipe_config->port_clock = intel_dp_max_link_rate(intel_dp);
Dave Airlie0e32b392014-05-02 14:02:48 +100059
Ander Conselvan de Oliveirae75f4772015-03-20 16:18:13 +020060 state = pipe_config->base.state;
61
Ville Syrjäläaad941d2015-09-25 16:38:56 +030062 mst_pbn = drm_dp_calc_pbn_mode(adjusted_mode->crtc_clock, bpp);
Dave Airlie0e32b392014-05-02 14:02:48 +100063
64 pipe_config->pbn = mst_pbn;
65 slots = drm_dp_find_vcpi_slots(&intel_dp->mst_mgr, mst_pbn);
66
67 intel_link_compute_m_n(bpp, lane_count,
68 adjusted_mode->crtc_clock,
69 pipe_config->port_clock,
70 &pipe_config->dp_m_n);
71
72 pipe_config->dp_m_n.tu = slots;
Ander Conselvan de Oliveira6fa2d192015-08-31 11:23:28 +030073
Dave Airlie0e32b392014-05-02 14:02:48 +100074 return true;
75
76}
77
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +020078static void intel_mst_disable_dp(struct intel_encoder *encoder,
79 struct intel_crtc_state *old_crtc_state,
80 struct drm_connector_state *old_conn_state)
Dave Airlie0e32b392014-05-02 14:02:48 +100081{
82 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(&encoder->base);
83 struct intel_digital_port *intel_dig_port = intel_mst->primary;
84 struct intel_dp *intel_dp = &intel_dig_port->dp;
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +020085 struct intel_connector *connector =
86 to_intel_connector(old_conn_state->connector);
Dave Airlie0e32b392014-05-02 14:02:48 +100087 int ret;
88
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +030089 DRM_DEBUG_KMS("%d\n", intel_dp->active_mst_links);
Dave Airlie0e32b392014-05-02 14:02:48 +100090
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +020091 drm_dp_mst_reset_vcpi_slots(&intel_dp->mst_mgr, connector->port);
Dave Airlie0e32b392014-05-02 14:02:48 +100092
93 ret = drm_dp_update_payload_part1(&intel_dp->mst_mgr);
94 if (ret) {
95 DRM_ERROR("failed to update payload %d\n", ret);
96 }
97}
98
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +020099static void intel_mst_post_disable_dp(struct intel_encoder *encoder,
100 struct intel_crtc_state *old_crtc_state,
101 struct drm_connector_state *old_conn_state)
Dave Airlie0e32b392014-05-02 14:02:48 +1000102{
103 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(&encoder->base);
104 struct intel_digital_port *intel_dig_port = intel_mst->primary;
105 struct intel_dp *intel_dp = &intel_dig_port->dp;
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200106 struct intel_connector *connector =
107 to_intel_connector(old_conn_state->connector);
Dave Airlie0e32b392014-05-02 14:02:48 +1000108
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +0300109 DRM_DEBUG_KMS("%d\n", intel_dp->active_mst_links);
Dave Airlie0e32b392014-05-02 14:02:48 +1000110
111 /* this can fail */
112 drm_dp_check_act_status(&intel_dp->mst_mgr);
113 /* and this can also fail */
114 drm_dp_update_payload_part2(&intel_dp->mst_mgr);
115
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200116 drm_dp_mst_deallocate_vcpi(&intel_dp->mst_mgr, connector->port);
Dave Airlie0e32b392014-05-02 14:02:48 +1000117
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +0300118 intel_dp->active_mst_links--;
Dave Airlie0552f762016-03-09 11:14:38 +1000119
120 intel_mst->connector = NULL;
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +0300121 if (intel_dp->active_mst_links == 0) {
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200122 intel_dig_port->base.post_disable(&intel_dig_port->base,
123 NULL, NULL);
124
Dave Airlie0e32b392014-05-02 14:02:48 +1000125 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
126 }
127}
128
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200129static void intel_mst_pre_enable_dp(struct intel_encoder *encoder,
130 struct intel_crtc_state *pipe_config,
131 struct drm_connector_state *conn_state)
Dave Airlie0e32b392014-05-02 14:02:48 +1000132{
133 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(&encoder->base);
134 struct intel_digital_port *intel_dig_port = intel_mst->primary;
135 struct intel_dp *intel_dp = &intel_dig_port->dp;
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200136 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Dave Airlie0e32b392014-05-02 14:02:48 +1000137 enum port port = intel_dig_port->port;
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200138 struct intel_connector *connector =
139 to_intel_connector(conn_state->connector);
Dave Airlie0e32b392014-05-02 14:02:48 +1000140 int ret;
141 uint32_t temp;
Dave Airlie0e32b392014-05-02 14:02:48 +1000142 int slots;
Dave Airlie0e32b392014-05-02 14:02:48 +1000143
Maarten Lankhorste85376c2015-08-27 13:13:31 +0200144 /* MST encoders are bound to a crtc, not to a connector,
145 * force the mapping here for get_hw_state.
146 */
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200147 connector->encoder = encoder;
148 intel_mst->connector = connector;
Maarten Lankhorste85376c2015-08-27 13:13:31 +0200149
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +0300150 DRM_DEBUG_KMS("%d\n", intel_dp->active_mst_links);
Dave Airlie0552f762016-03-09 11:14:38 +1000151
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +0300152 if (intel_dp->active_mst_links == 0) {
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200153 intel_ddi_clk_select(&intel_dig_port->base, pipe_config);
Dave Airlie0e32b392014-05-02 14:02:48 +1000154
Ville Syrjälä32bdc402016-07-12 15:59:33 +0300155 intel_prepare_dp_ddi_buffers(&intel_dig_port->base);
Ander Conselvan de Oliveiradfa10482016-09-01 15:08:06 -0700156 intel_dp_set_link_params(intel_dp,
157 pipe_config->port_clock,
158 pipe_config->lane_count,
159 true);
Ville Syrjälä901c2da2015-08-17 18:05:12 +0300160
Dave Airlie0e32b392014-05-02 14:02:48 +1000161 intel_ddi_init_dp_buf_reg(&intel_dig_port->base);
162
163 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
164
Dave Airlie0e32b392014-05-02 14:02:48 +1000165 intel_dp_start_link_train(intel_dp);
Dave Airlie0e32b392014-05-02 14:02:48 +1000166 intel_dp_stop_link_train(intel_dp);
167 }
168
169 ret = drm_dp_mst_allocate_vcpi(&intel_dp->mst_mgr,
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200170 connector->port,
171 pipe_config->pbn, &slots);
Dave Airlie0e32b392014-05-02 14:02:48 +1000172 if (ret == false) {
173 DRM_ERROR("failed to allocate vcpi\n");
174 return;
175 }
176
177
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +0300178 intel_dp->active_mst_links++;
Dave Airlie0e32b392014-05-02 14:02:48 +1000179 temp = I915_READ(DP_TP_STATUS(port));
180 I915_WRITE(DP_TP_STATUS(port), temp);
181
182 ret = drm_dp_update_payload_part1(&intel_dp->mst_mgr);
183}
184
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200185static void intel_mst_enable_dp(struct intel_encoder *encoder,
186 struct intel_crtc_state *pipe_config,
187 struct drm_connector_state *conn_state)
Dave Airlie0e32b392014-05-02 14:02:48 +1000188{
189 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(&encoder->base);
190 struct intel_digital_port *intel_dig_port = intel_mst->primary;
191 struct intel_dp *intel_dp = &intel_dig_port->dp;
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200192 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Dave Airlie0e32b392014-05-02 14:02:48 +1000193 enum port port = intel_dig_port->port;
194 int ret;
195
Ville Syrjälä19e0b4c2016-08-05 19:05:42 +0300196 DRM_DEBUG_KMS("%d\n", intel_dp->active_mst_links);
Dave Airlie0e32b392014-05-02 14:02:48 +1000197
Chris Wilson3016a312016-06-30 15:33:11 +0100198 if (intel_wait_for_register(dev_priv,
199 DP_TP_STATUS(port),
200 DP_TP_STATUS_ACT_SENT,
201 DP_TP_STATUS_ACT_SENT,
202 1))
Dave Airlie0e32b392014-05-02 14:02:48 +1000203 DRM_ERROR("Timed out waiting for ACT sent\n");
204
205 ret = drm_dp_check_act_status(&intel_dp->mst_mgr);
206
207 ret = drm_dp_update_payload_part2(&intel_dp->mst_mgr);
208}
209
210static bool intel_dp_mst_enc_get_hw_state(struct intel_encoder *encoder,
211 enum pipe *pipe)
212{
213 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(&encoder->base);
214 *pipe = intel_mst->pipe;
Dave Airlie0552f762016-03-09 11:14:38 +1000215 if (intel_mst->connector)
Dave Airlie0e32b392014-05-02 14:02:48 +1000216 return true;
217 return false;
218}
219
220static void intel_dp_mst_enc_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200221 struct intel_crtc_state *pipe_config)
Dave Airlie0e32b392014-05-02 14:02:48 +1000222{
223 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(&encoder->base);
224 struct intel_digital_port *intel_dig_port = intel_mst->primary;
Maarten Lankhorst1e7bfa02016-08-09 17:04:12 +0200225 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
226 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ander Conselvan de Oliveira0cb09a92015-01-30 12:17:23 +0200227 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
Dave Airlie0e32b392014-05-02 14:02:48 +1000228 u32 temp, flags = 0;
229
Dave Airlie0e32b392014-05-02 14:02:48 +1000230 temp = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
231 if (temp & TRANS_DDI_PHSYNC)
232 flags |= DRM_MODE_FLAG_PHSYNC;
233 else
234 flags |= DRM_MODE_FLAG_NHSYNC;
235 if (temp & TRANS_DDI_PVSYNC)
236 flags |= DRM_MODE_FLAG_PVSYNC;
237 else
238 flags |= DRM_MODE_FLAG_NVSYNC;
239
240 switch (temp & TRANS_DDI_BPC_MASK) {
241 case TRANS_DDI_BPC_6:
242 pipe_config->pipe_bpp = 18;
243 break;
244 case TRANS_DDI_BPC_8:
245 pipe_config->pipe_bpp = 24;
246 break;
247 case TRANS_DDI_BPC_10:
248 pipe_config->pipe_bpp = 30;
249 break;
250 case TRANS_DDI_BPC_12:
251 pipe_config->pipe_bpp = 36;
252 break;
253 default:
254 break;
255 }
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200256 pipe_config->base.adjusted_mode.flags |= flags;
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +0300257
258 pipe_config->lane_count =
259 ((temp & DDI_PORT_WIDTH_MASK) >> DDI_PORT_WIDTH_SHIFT) + 1;
260
Dave Airlie0e32b392014-05-02 14:02:48 +1000261 intel_dp_get_m_n(crtc, pipe_config);
262
263 intel_ddi_clock_get(&intel_dig_port->base, pipe_config);
264}
265
266static int intel_dp_mst_get_ddc_modes(struct drm_connector *connector)
267{
268 struct intel_connector *intel_connector = to_intel_connector(connector);
269 struct intel_dp *intel_dp = intel_connector->mst_port;
270 struct edid *edid;
271 int ret;
272
Dave Airlie0552f762016-03-09 11:14:38 +1000273 if (!intel_dp) {
274 return intel_connector_update_modes(connector, NULL);
275 }
Dave Airlie0e32b392014-05-02 14:02:48 +1000276
Dave Airlie0552f762016-03-09 11:14:38 +1000277 edid = drm_dp_mst_get_edid(connector, &intel_dp->mst_mgr, intel_connector->port);
Dave Airlie0e32b392014-05-02 14:02:48 +1000278 ret = intel_connector_update_modes(connector, edid);
279 kfree(edid);
280
281 return ret;
282}
283
284static enum drm_connector_status
Daniel Vetterf7f3d482014-10-22 11:06:44 +0200285intel_dp_mst_detect(struct drm_connector *connector, bool force)
Dave Airlie0e32b392014-05-02 14:02:48 +1000286{
287 struct intel_connector *intel_connector = to_intel_connector(connector);
288 struct intel_dp *intel_dp = intel_connector->mst_port;
289
Dave Airlie0552f762016-03-09 11:14:38 +1000290 if (!intel_dp)
291 return connector_status_disconnected;
Dave Airliec6a0aed2014-10-20 16:28:02 +1000292 return drm_dp_mst_detect_port(connector, &intel_dp->mst_mgr, intel_connector->port);
Dave Airlie0e32b392014-05-02 14:02:48 +1000293}
294
Dave Airlie0e32b392014-05-02 14:02:48 +1000295static int
296intel_dp_mst_set_property(struct drm_connector *connector,
297 struct drm_property *property,
298 uint64_t val)
299{
300 return 0;
301}
302
303static void
304intel_dp_mst_connector_destroy(struct drm_connector *connector)
305{
306 struct intel_connector *intel_connector = to_intel_connector(connector);
307
308 if (!IS_ERR_OR_NULL(intel_connector->edid))
309 kfree(intel_connector->edid);
310
311 drm_connector_cleanup(connector);
312 kfree(connector);
313}
314
315static const struct drm_connector_funcs intel_dp_mst_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +0200316 .dpms = drm_atomic_helper_connector_dpms,
Dave Airlie0e32b392014-05-02 14:02:48 +1000317 .detect = intel_dp_mst_detect,
318 .fill_modes = drm_helper_probe_single_connector_modes,
319 .set_property = intel_dp_mst_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -0800320 .atomic_get_property = intel_connector_atomic_get_property,
Chris Wilson1ebaa0b2016-06-24 14:00:15 +0100321 .late_register = intel_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +0100322 .early_unregister = intel_connector_unregister,
Dave Airlie0e32b392014-05-02 14:02:48 +1000323 .destroy = intel_dp_mst_connector_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -0800324 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +0200325 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Dave Airlie0e32b392014-05-02 14:02:48 +1000326};
327
328static int intel_dp_mst_get_modes(struct drm_connector *connector)
329{
330 return intel_dp_mst_get_ddc_modes(connector);
331}
332
333static enum drm_mode_status
334intel_dp_mst_mode_valid(struct drm_connector *connector,
335 struct drm_display_mode *mode)
336{
Mika Kahola832d5bf2016-02-02 15:16:40 +0200337 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
338
Dave Airlie0e32b392014-05-02 14:02:48 +1000339 /* TODO - validate mode against available PBN for link */
340 if (mode->clock < 10000)
341 return MODE_CLOCK_LOW;
342
343 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
344 return MODE_H_ILLEGAL;
345
Mika Kahola832d5bf2016-02-02 15:16:40 +0200346 if (mode->clock > max_dotclk)
347 return MODE_CLOCK_HIGH;
348
Dave Airlie0e32b392014-05-02 14:02:48 +1000349 return MODE_OK;
350}
351
Daniel Vetter459485a2015-08-03 17:24:09 +0200352static struct drm_encoder *intel_mst_atomic_best_encoder(struct drm_connector *connector,
353 struct drm_connector_state *state)
354{
355 struct intel_connector *intel_connector = to_intel_connector(connector);
356 struct intel_dp *intel_dp = intel_connector->mst_port;
357 struct intel_crtc *crtc = to_intel_crtc(state->crtc);
358
Dave Airlie0552f762016-03-09 11:14:38 +1000359 if (!intel_dp)
360 return NULL;
Daniel Vetter459485a2015-08-03 17:24:09 +0200361 return &intel_dp->mst_encoders[crtc->pipe]->base.base;
362}
363
Dave Airlie0e32b392014-05-02 14:02:48 +1000364static struct drm_encoder *intel_mst_best_encoder(struct drm_connector *connector)
365{
366 struct intel_connector *intel_connector = to_intel_connector(connector);
367 struct intel_dp *intel_dp = intel_connector->mst_port;
Dave Airlie0552f762016-03-09 11:14:38 +1000368 if (!intel_dp)
369 return NULL;
Dave Airlie0e32b392014-05-02 14:02:48 +1000370 return &intel_dp->mst_encoders[0]->base.base;
371}
372
373static const struct drm_connector_helper_funcs intel_dp_mst_connector_helper_funcs = {
374 .get_modes = intel_dp_mst_get_modes,
375 .mode_valid = intel_dp_mst_mode_valid,
Daniel Vetter459485a2015-08-03 17:24:09 +0200376 .atomic_best_encoder = intel_mst_atomic_best_encoder,
Dave Airlie0e32b392014-05-02 14:02:48 +1000377 .best_encoder = intel_mst_best_encoder,
378};
379
380static void intel_dp_mst_encoder_destroy(struct drm_encoder *encoder)
381{
382 struct intel_dp_mst_encoder *intel_mst = enc_to_mst(encoder);
383
384 drm_encoder_cleanup(encoder);
385 kfree(intel_mst);
386}
387
388static const struct drm_encoder_funcs intel_dp_mst_enc_funcs = {
389 .destroy = intel_dp_mst_encoder_destroy,
390};
391
392static bool intel_dp_mst_get_hw_state(struct intel_connector *connector)
393{
Maarten Lankhorste85376c2015-08-27 13:13:31 +0200394 if (connector->encoder && connector->base.state->crtc) {
Dave Airlie0e32b392014-05-02 14:02:48 +1000395 enum pipe pipe;
396 if (!connector->encoder->get_hw_state(connector->encoder, &pipe))
397 return false;
398 return true;
399 }
400 return false;
401}
402
Chris Wilson7296c842014-07-22 20:10:28 +1000403static void intel_connector_add_to_fbdev(struct intel_connector *connector)
404{
Daniel Vetter06957262015-08-10 13:34:08 +0200405#ifdef CONFIG_DRM_FBDEV_EMULATION
Chris Wilson7296c842014-07-22 20:10:28 +1000406 struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
Lukas Wunner54632ab2015-11-18 13:43:20 +0100407
408 if (dev_priv->fbdev)
409 drm_fb_helper_add_one_connector(&dev_priv->fbdev->helper,
410 &connector->base);
Chris Wilson7296c842014-07-22 20:10:28 +1000411#endif
412}
413
414static void intel_connector_remove_from_fbdev(struct intel_connector *connector)
415{
Daniel Vetter06957262015-08-10 13:34:08 +0200416#ifdef CONFIG_DRM_FBDEV_EMULATION
Chris Wilson7296c842014-07-22 20:10:28 +1000417 struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
Lukas Wunner54632ab2015-11-18 13:43:20 +0100418
419 if (dev_priv->fbdev)
420 drm_fb_helper_remove_one_connector(&dev_priv->fbdev->helper,
421 &connector->base);
Chris Wilson7296c842014-07-22 20:10:28 +1000422#endif
423}
424
Thierry Reding12e6cec2014-05-13 11:38:36 +0200425static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topology_mgr *mgr, struct drm_dp_mst_port *port, const char *pathprop)
Dave Airlie0e32b392014-05-02 14:02:48 +1000426{
427 struct intel_dp *intel_dp = container_of(mgr, struct intel_dp, mst_mgr);
428 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
429 struct drm_device *dev = intel_dig_port->base.base.dev;
Dave Airlie0e32b392014-05-02 14:02:48 +1000430 struct intel_connector *intel_connector;
431 struct drm_connector *connector;
432 int i;
433
Ander Conselvan de Oliveira9bdbd0b2015-04-10 10:59:10 +0300434 intel_connector = intel_connector_alloc();
Dave Airlie0e32b392014-05-02 14:02:48 +1000435 if (!intel_connector)
436 return NULL;
437
438 connector = &intel_connector->base;
439 drm_connector_init(dev, connector, &intel_dp_mst_connector_funcs, DRM_MODE_CONNECTOR_DisplayPort);
440 drm_connector_helper_add(connector, &intel_dp_mst_connector_helper_funcs);
441
Dave Airlie0e32b392014-05-02 14:02:48 +1000442 intel_connector->get_hw_state = intel_dp_mst_get_hw_state;
443 intel_connector->mst_port = intel_dp;
444 intel_connector->port = port;
445
446 for (i = PIPE_A; i <= PIPE_C; i++) {
447 drm_mode_connector_attach_encoder(&intel_connector->base,
448 &intel_dp->mst_encoders[i]->base.base);
449 }
450 intel_dp_add_properties(intel_dp, connector);
451
452 drm_object_attach_property(&connector->base, dev->mode_config.path_property, 0);
Dave Airlie6f134d72014-10-20 16:30:50 +1000453 drm_object_attach_property(&connector->base, dev->mode_config.tile_property, 0);
454
Dave Airlie0e32b392014-05-02 14:02:48 +1000455 drm_mode_connector_set_path_property(connector, pathprop);
Dave Airlied9515c52015-09-16 17:55:23 +1000456 return connector;
457}
458
459static void intel_dp_register_mst_connector(struct drm_connector *connector)
460{
461 struct intel_connector *intel_connector = to_intel_connector(connector);
462 struct drm_device *dev = connector->dev;
Chris Wilson7a418e32016-06-24 14:00:14 +0100463
Daniel Vetter8bb4da12015-07-09 23:44:31 +0200464 drm_modeset_lock_all(dev);
Chris Wilson7296c842014-07-22 20:10:28 +1000465 intel_connector_add_to_fbdev(intel_connector);
Daniel Vetter8bb4da12015-07-09 23:44:31 +0200466 drm_modeset_unlock_all(dev);
Chris Wilson7a418e32016-06-24 14:00:14 +0100467
Dave Airlie0e32b392014-05-02 14:02:48 +1000468 drm_connector_register(&intel_connector->base);
Dave Airlie0e32b392014-05-02 14:02:48 +1000469}
470
471static void intel_dp_destroy_mst_connector(struct drm_dp_mst_topology_mgr *mgr,
472 struct drm_connector *connector)
473{
474 struct intel_connector *intel_connector = to_intel_connector(connector);
475 struct drm_device *dev = connector->dev;
Maarten Lankhorst20fae982015-08-06 13:47:36 +0200476
Chris Wilsonc191eca2016-06-17 11:40:33 +0100477 drm_connector_unregister(connector);
Lyude1f771752016-03-16 15:18:04 -0400478
Dave Airlie0e32b392014-05-02 14:02:48 +1000479 /* need to nuke the connector */
Daniel Vetter8bb4da12015-07-09 23:44:31 +0200480 drm_modeset_lock_all(dev);
Chris Wilson7296c842014-07-22 20:10:28 +1000481 intel_connector_remove_from_fbdev(intel_connector);
Dave Airlie0552f762016-03-09 11:14:38 +1000482 intel_connector->mst_port = NULL;
Daniel Vetter8bb4da12015-07-09 23:44:31 +0200483 drm_modeset_unlock_all(dev);
Dave Airlie0e32b392014-05-02 14:02:48 +1000484
Dave Airlie0552f762016-03-09 11:14:38 +1000485 drm_connector_unreference(&intel_connector->base);
Dave Airlie0e32b392014-05-02 14:02:48 +1000486 DRM_DEBUG_KMS("\n");
487}
488
489static void intel_dp_mst_hotplug(struct drm_dp_mst_topology_mgr *mgr)
490{
491 struct intel_dp *intel_dp = container_of(mgr, struct intel_dp, mst_mgr);
492 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
493 struct drm_device *dev = intel_dig_port->base.base.dev;
494
495 drm_kms_helper_hotplug_event(dev);
496}
497
Julia Lawall69a0f892015-12-30 22:20:30 +0100498static const struct drm_dp_mst_topology_cbs mst_cbs = {
Dave Airlie0e32b392014-05-02 14:02:48 +1000499 .add_connector = intel_dp_add_mst_connector,
Dave Airlied9515c52015-09-16 17:55:23 +1000500 .register_connector = intel_dp_register_mst_connector,
Dave Airlie0e32b392014-05-02 14:02:48 +1000501 .destroy_connector = intel_dp_destroy_mst_connector,
502 .hotplug = intel_dp_mst_hotplug,
503};
504
505static struct intel_dp_mst_encoder *
506intel_dp_create_fake_mst_encoder(struct intel_digital_port *intel_dig_port, enum pipe pipe)
507{
508 struct intel_dp_mst_encoder *intel_mst;
509 struct intel_encoder *intel_encoder;
510 struct drm_device *dev = intel_dig_port->base.base.dev;
511
512 intel_mst = kzalloc(sizeof(*intel_mst), GFP_KERNEL);
513
514 if (!intel_mst)
515 return NULL;
516
517 intel_mst->pipe = pipe;
518 intel_encoder = &intel_mst->base;
519 intel_mst->primary = intel_dig_port;
520
521 drm_encoder_init(dev, &intel_encoder->base, &intel_dp_mst_enc_funcs,
Ville Syrjälä580d8ed2016-05-27 20:59:24 +0300522 DRM_MODE_ENCODER_DPMST, "DP-MST %c", pipe_name(pipe));
Dave Airlie0e32b392014-05-02 14:02:48 +1000523
524 intel_encoder->type = INTEL_OUTPUT_DP_MST;
525 intel_encoder->crtc_mask = 0x7;
526 intel_encoder->cloneable = 0;
527
528 intel_encoder->compute_config = intel_dp_mst_compute_config;
529 intel_encoder->disable = intel_mst_disable_dp;
530 intel_encoder->post_disable = intel_mst_post_disable_dp;
531 intel_encoder->pre_enable = intel_mst_pre_enable_dp;
532 intel_encoder->enable = intel_mst_enable_dp;
533 intel_encoder->get_hw_state = intel_dp_mst_enc_get_hw_state;
534 intel_encoder->get_config = intel_dp_mst_enc_get_config;
535
536 return intel_mst;
537
538}
539
540static bool
541intel_dp_create_fake_mst_encoders(struct intel_digital_port *intel_dig_port)
542{
543 int i;
544 struct intel_dp *intel_dp = &intel_dig_port->dp;
545
546 for (i = PIPE_A; i <= PIPE_C; i++)
547 intel_dp->mst_encoders[i] = intel_dp_create_fake_mst_encoder(intel_dig_port, i);
548 return true;
549}
550
551int
552intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_base_id)
553{
554 struct intel_dp *intel_dp = &intel_dig_port->dp;
555 struct drm_device *dev = intel_dig_port->base.base.dev;
556 int ret;
557
558 intel_dp->can_mst = true;
559 intel_dp->mst_mgr.cbs = &mst_cbs;
560
561 /* create encoders */
562 intel_dp_create_fake_mst_encoders(intel_dig_port);
563 ret = drm_dp_mst_topology_mgr_init(&intel_dp->mst_mgr, dev->dev, &intel_dp->aux, 16, 3, conn_base_id);
564 if (ret) {
565 intel_dp->can_mst = false;
566 return ret;
567 }
568 return 0;
569}
570
571void
572intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port)
573{
574 struct intel_dp *intel_dp = &intel_dig_port->dp;
575
576 if (!intel_dp->can_mst)
577 return;
578
579 drm_dp_mst_topology_mgr_destroy(&intel_dp->mst_mgr);
580 /* encoders will get killed by normal cleanup */
581}