Loading...
Note: File does not exist in v3.1.
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved.
4 */
5
6#include <drm/drm_atomic_helper.h>
7#include <drm/drm_atomic.h>
8#include <drm/drm_bridge.h>
9#include <drm/drm_bridge_connector.h>
10#include <drm/drm_crtc.h>
11
12#include "msm_drv.h"
13#include "msm_kms.h"
14#include "dp_drm.h"
15
16/**
17 * msm_dp_bridge_detect - callback to determine if connector is connected
18 * @bridge: Pointer to drm bridge structure
19 * Returns: Bridge's 'is connected' status
20 */
21static enum drm_connector_status msm_dp_bridge_detect(struct drm_bridge *bridge)
22{
23 struct msm_dp *dp;
24
25 dp = to_dp_bridge(bridge)->msm_dp_display;
26
27 drm_dbg_dp(dp->drm_dev, "link_ready = %s\n",
28 (dp->link_ready) ? "true" : "false");
29
30 return (dp->link_ready) ? connector_status_connected :
31 connector_status_disconnected;
32}
33
34static int msm_dp_bridge_atomic_check(struct drm_bridge *bridge,
35 struct drm_bridge_state *bridge_state,
36 struct drm_crtc_state *crtc_state,
37 struct drm_connector_state *conn_state)
38{
39 struct msm_dp *dp;
40
41 dp = to_dp_bridge(bridge)->msm_dp_display;
42
43 drm_dbg_dp(dp->drm_dev, "link_ready = %s\n",
44 (dp->link_ready) ? "true" : "false");
45
46 /*
47 * There is no protection in the DRM framework to check if the display
48 * pipeline has been already disabled before trying to disable it again.
49 * Hence if the sink is unplugged, the pipeline gets disabled, but the
50 * crtc->active is still true. Any attempt to set the mode or manually
51 * disable this encoder will result in the crash.
52 *
53 * TODO: add support for telling the DRM subsystem that the pipeline is
54 * disabled by the hardware and thus all access to it should be forbidden.
55 * After that this piece of code can be removed.
56 */
57 if (bridge->ops & DRM_BRIDGE_OP_HPD)
58 return (dp->link_ready) ? 0 : -ENOTCONN;
59
60 return 0;
61}
62
63
64/**
65 * msm_dp_bridge_get_modes - callback to add drm modes via drm_mode_probed_add()
66 * @bridge: Poiner to drm bridge
67 * @connector: Pointer to drm connector structure
68 * Returns: Number of modes added
69 */
70static int msm_dp_bridge_get_modes(struct drm_bridge *bridge, struct drm_connector *connector)
71{
72 int rc = 0;
73 struct msm_dp *dp;
74
75 if (!connector)
76 return 0;
77
78 dp = to_dp_bridge(bridge)->msm_dp_display;
79
80 /* pluggable case assumes EDID is read when HPD */
81 if (dp->link_ready) {
82 rc = msm_dp_display_get_modes(dp);
83 if (rc <= 0) {
84 DRM_ERROR("failed to get DP sink modes, rc=%d\n", rc);
85 return rc;
86 }
87 } else {
88 drm_dbg_dp(connector->dev, "No sink connected\n");
89 }
90 return rc;
91}
92
93static void msm_dp_bridge_debugfs_init(struct drm_bridge *bridge, struct dentry *root)
94{
95 struct msm_dp *dp = to_dp_bridge(bridge)->msm_dp_display;
96
97 msm_dp_display_debugfs_init(dp, root, false);
98}
99
100static const struct drm_bridge_funcs msm_dp_bridge_ops = {
101 .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
102 .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
103 .atomic_reset = drm_atomic_helper_bridge_reset,
104 .atomic_enable = msm_dp_bridge_atomic_enable,
105 .atomic_disable = msm_dp_bridge_atomic_disable,
106 .atomic_post_disable = msm_dp_bridge_atomic_post_disable,
107 .mode_set = msm_dp_bridge_mode_set,
108 .mode_valid = msm_dp_bridge_mode_valid,
109 .get_modes = msm_dp_bridge_get_modes,
110 .detect = msm_dp_bridge_detect,
111 .atomic_check = msm_dp_bridge_atomic_check,
112 .hpd_enable = msm_dp_bridge_hpd_enable,
113 .hpd_disable = msm_dp_bridge_hpd_disable,
114 .hpd_notify = msm_dp_bridge_hpd_notify,
115 .debugfs_init = msm_dp_bridge_debugfs_init,
116};
117
118static int msm_edp_bridge_atomic_check(struct drm_bridge *drm_bridge,
119 struct drm_bridge_state *bridge_state,
120 struct drm_crtc_state *crtc_state,
121 struct drm_connector_state *conn_state)
122{
123 struct msm_dp *dp = to_dp_bridge(drm_bridge)->msm_dp_display;
124
125 if (WARN_ON(!conn_state))
126 return -ENODEV;
127
128 conn_state->self_refresh_aware = dp->psr_supported;
129
130 if (!conn_state->crtc || !crtc_state)
131 return 0;
132
133 if (crtc_state->self_refresh_active && !dp->psr_supported)
134 return -EINVAL;
135
136 return 0;
137}
138
139static void msm_edp_bridge_atomic_enable(struct drm_bridge *drm_bridge,
140 struct drm_bridge_state *old_bridge_state)
141{
142 struct drm_atomic_state *atomic_state = old_bridge_state->base.state;
143 struct drm_crtc *crtc;
144 struct drm_crtc_state *old_crtc_state;
145 struct msm_dp_bridge *msm_dp_bridge = to_dp_bridge(drm_bridge);
146 struct msm_dp *dp = msm_dp_bridge->msm_dp_display;
147
148 /*
149 * Check the old state of the crtc to determine if the panel
150 * was put into psr state previously by the msm_edp_bridge_atomic_disable.
151 * If the panel is in psr, just exit psr state and skip the full
152 * bridge enable sequence.
153 */
154 crtc = drm_atomic_get_new_crtc_for_encoder(atomic_state,
155 drm_bridge->encoder);
156 if (!crtc)
157 return;
158
159 old_crtc_state = drm_atomic_get_old_crtc_state(atomic_state, crtc);
160
161 if (old_crtc_state && old_crtc_state->self_refresh_active) {
162 msm_dp_display_set_psr(dp, false);
163 return;
164 }
165
166 msm_dp_bridge_atomic_enable(drm_bridge, old_bridge_state);
167}
168
169static void msm_edp_bridge_atomic_disable(struct drm_bridge *drm_bridge,
170 struct drm_bridge_state *old_bridge_state)
171{
172 struct drm_atomic_state *atomic_state = old_bridge_state->base.state;
173 struct drm_crtc *crtc;
174 struct drm_crtc_state *new_crtc_state = NULL, *old_crtc_state = NULL;
175 struct msm_dp_bridge *msm_dp_bridge = to_dp_bridge(drm_bridge);
176 struct msm_dp *dp = msm_dp_bridge->msm_dp_display;
177
178 crtc = drm_atomic_get_old_crtc_for_encoder(atomic_state,
179 drm_bridge->encoder);
180 if (!crtc)
181 goto out;
182
183 new_crtc_state = drm_atomic_get_new_crtc_state(atomic_state, crtc);
184 if (!new_crtc_state)
185 goto out;
186
187 old_crtc_state = drm_atomic_get_old_crtc_state(atomic_state, crtc);
188 if (!old_crtc_state)
189 goto out;
190
191 /*
192 * Set self refresh mode if current crtc state is active.
193 *
194 * If old crtc state is active, then this is a display disable
195 * call while the sink is in psr state. So, exit psr here.
196 * The eDP controller will be disabled in the
197 * msm_edp_bridge_atomic_post_disable function.
198 *
199 * We observed sink is stuck in self refresh if psr exit is skipped
200 * when display disable occurs while the sink is in psr state.
201 */
202 if (new_crtc_state->self_refresh_active) {
203 msm_dp_display_set_psr(dp, true);
204 return;
205 } else if (old_crtc_state->self_refresh_active) {
206 msm_dp_display_set_psr(dp, false);
207 return;
208 }
209
210out:
211 msm_dp_bridge_atomic_disable(drm_bridge, old_bridge_state);
212}
213
214static void msm_edp_bridge_atomic_post_disable(struct drm_bridge *drm_bridge,
215 struct drm_bridge_state *old_bridge_state)
216{
217 struct drm_atomic_state *atomic_state = old_bridge_state->base.state;
218 struct drm_crtc *crtc;
219 struct drm_crtc_state *new_crtc_state = NULL;
220
221 crtc = drm_atomic_get_old_crtc_for_encoder(atomic_state,
222 drm_bridge->encoder);
223 if (!crtc)
224 return;
225
226 new_crtc_state = drm_atomic_get_new_crtc_state(atomic_state, crtc);
227 if (!new_crtc_state)
228 return;
229
230 /*
231 * Self refresh mode is already set in msm_edp_bridge_atomic_disable.
232 */
233 if (new_crtc_state->self_refresh_active)
234 return;
235
236 msm_dp_bridge_atomic_post_disable(drm_bridge, old_bridge_state);
237}
238
239/**
240 * msm_edp_bridge_mode_valid - callback to determine if specified mode is valid
241 * @bridge: Pointer to drm bridge structure
242 * @info: display info
243 * @mode: Pointer to drm mode structure
244 * Returns: Validity status for specified mode
245 */
246static enum drm_mode_status msm_edp_bridge_mode_valid(struct drm_bridge *bridge,
247 const struct drm_display_info *info,
248 const struct drm_display_mode *mode)
249{
250 struct msm_dp *dp;
251 int mode_pclk_khz = mode->clock;
252
253 dp = to_dp_bridge(bridge)->msm_dp_display;
254
255 if (!dp || !mode_pclk_khz || !dp->connector) {
256 DRM_ERROR("invalid params\n");
257 return -EINVAL;
258 }
259
260 if (msm_dp_wide_bus_available(dp))
261 mode_pclk_khz /= 2;
262
263 if (mode_pclk_khz > DP_MAX_PIXEL_CLK_KHZ)
264 return MODE_CLOCK_HIGH;
265
266 /*
267 * The eDP controller currently does not have a reliable way of
268 * enabling panel power to read sink capabilities. So, we rely
269 * on the panel driver to populate only supported modes for now.
270 */
271 return MODE_OK;
272}
273
274static void msm_edp_bridge_debugfs_init(struct drm_bridge *bridge, struct dentry *root)
275{
276 struct msm_dp *dp = to_dp_bridge(bridge)->msm_dp_display;
277
278 msm_dp_display_debugfs_init(dp, root, true);
279}
280
281static const struct drm_bridge_funcs msm_edp_bridge_ops = {
282 .atomic_enable = msm_edp_bridge_atomic_enable,
283 .atomic_disable = msm_edp_bridge_atomic_disable,
284 .atomic_post_disable = msm_edp_bridge_atomic_post_disable,
285 .mode_set = msm_dp_bridge_mode_set,
286 .mode_valid = msm_edp_bridge_mode_valid,
287 .atomic_reset = drm_atomic_helper_bridge_reset,
288 .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
289 .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
290 .atomic_check = msm_edp_bridge_atomic_check,
291 .debugfs_init = msm_edp_bridge_debugfs_init,
292};
293
294int msm_dp_bridge_init(struct msm_dp *msm_dp_display, struct drm_device *dev,
295 struct drm_encoder *encoder, bool yuv_supported)
296{
297 int rc;
298 struct msm_dp_bridge *msm_dp_bridge;
299 struct drm_bridge *bridge;
300
301 msm_dp_bridge = devm_kzalloc(dev->dev, sizeof(*msm_dp_bridge), GFP_KERNEL);
302 if (!msm_dp_bridge)
303 return -ENOMEM;
304
305 msm_dp_bridge->msm_dp_display = msm_dp_display;
306
307 bridge = &msm_dp_bridge->bridge;
308 bridge->funcs = msm_dp_display->is_edp ? &msm_edp_bridge_ops : &msm_dp_bridge_ops;
309 bridge->type = msm_dp_display->connector_type;
310 bridge->ycbcr_420_allowed = yuv_supported;
311
312 /*
313 * Many ops only make sense for DP. Why?
314 * - Detect/HPD are used by DRM to know if a display is _physically_
315 * there, not whether the display is powered on / finished initting.
316 * On eDP we assume the display is always there because you can't
317 * know until power is applied. If we don't implement the ops DRM will
318 * assume our display is always there.
319 * - Currently eDP mode reading is driven by the panel driver. This
320 * allows the panel driver to properly power itself on to read the
321 * modes.
322 */
323 if (!msm_dp_display->is_edp) {
324 bridge->ops =
325 DRM_BRIDGE_OP_DETECT |
326 DRM_BRIDGE_OP_HPD |
327 DRM_BRIDGE_OP_MODES;
328 }
329
330 rc = devm_drm_bridge_add(dev->dev, bridge);
331 if (rc) {
332 DRM_ERROR("failed to add bridge, rc=%d\n", rc);
333
334 return rc;
335 }
336
337 rc = drm_bridge_attach(encoder, bridge, NULL, DRM_BRIDGE_ATTACH_NO_CONNECTOR);
338 if (rc) {
339 DRM_ERROR("failed to attach bridge, rc=%d\n", rc);
340
341 return rc;
342 }
343
344 if (msm_dp_display->next_bridge) {
345 rc = drm_bridge_attach(encoder,
346 msm_dp_display->next_bridge, bridge,
347 DRM_BRIDGE_ATTACH_NO_CONNECTOR);
348 if (rc < 0) {
349 DRM_ERROR("failed to attach panel bridge: %d\n", rc);
350 return rc;
351 }
352 }
353
354 return 0;
355}
356
357/* connector initialization */
358struct drm_connector *msm_dp_drm_connector_init(struct msm_dp *msm_dp_display,
359 struct drm_encoder *encoder)
360{
361 struct drm_connector *connector = NULL;
362
363 connector = drm_bridge_connector_init(msm_dp_display->drm_dev, encoder);
364 if (IS_ERR(connector))
365 return connector;
366
367 if (!msm_dp_display->is_edp)
368 drm_connector_attach_dp_subconnector_property(connector);
369
370 drm_connector_attach_encoder(connector, encoder);
371
372 return connector;
373}