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 */ 21 static 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 34 static 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 */ 70 static 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 93 static 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 100 static 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 118 static 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 139 static void msm_edp_bridge_atomic_enable(struct drm_bridge *drm_bridge, 140 struct drm_atomic_state *state) 141 { 142 struct drm_crtc *crtc; 143 struct drm_crtc_state *old_crtc_state; 144 struct msm_dp_bridge *msm_dp_bridge = to_dp_bridge(drm_bridge); 145 struct msm_dp *dp = msm_dp_bridge->msm_dp_display; 146 147 /* 148 * Check the old state of the crtc to determine if the panel 149 * was put into psr state previously by the msm_edp_bridge_atomic_disable. 150 * If the panel is in psr, just exit psr state and skip the full 151 * bridge enable sequence. 152 */ 153 crtc = drm_atomic_get_new_crtc_for_encoder(state, 154 drm_bridge->encoder); 155 if (!crtc) 156 return; 157 158 old_crtc_state = drm_atomic_get_old_crtc_state(state, crtc); 159 160 if (old_crtc_state && old_crtc_state->self_refresh_active) { 161 msm_dp_display_set_psr(dp, false); 162 return; 163 } 164 165 msm_dp_bridge_atomic_enable(drm_bridge, state); 166 } 167 168 static void msm_edp_bridge_atomic_disable(struct drm_bridge *drm_bridge, 169 struct drm_atomic_state *atomic_state) 170 { 171 struct drm_crtc *crtc; 172 struct drm_crtc_state *new_crtc_state = NULL, *old_crtc_state = NULL; 173 struct msm_dp_bridge *msm_dp_bridge = to_dp_bridge(drm_bridge); 174 struct msm_dp *dp = msm_dp_bridge->msm_dp_display; 175 176 crtc = drm_atomic_get_old_crtc_for_encoder(atomic_state, 177 drm_bridge->encoder); 178 if (!crtc) 179 goto out; 180 181 new_crtc_state = drm_atomic_get_new_crtc_state(atomic_state, crtc); 182 if (!new_crtc_state) 183 goto out; 184 185 old_crtc_state = drm_atomic_get_old_crtc_state(atomic_state, crtc); 186 if (!old_crtc_state) 187 goto out; 188 189 /* 190 * Set self refresh mode if current crtc state is active. 191 * 192 * If old crtc state is active, then this is a display disable 193 * call while the sink is in psr state. So, exit psr here. 194 * The eDP controller will be disabled in the 195 * msm_edp_bridge_atomic_post_disable function. 196 * 197 * We observed sink is stuck in self refresh if psr exit is skipped 198 * when display disable occurs while the sink is in psr state. 199 */ 200 if (new_crtc_state->self_refresh_active) { 201 msm_dp_display_set_psr(dp, true); 202 return; 203 } else if (old_crtc_state->self_refresh_active) { 204 msm_dp_display_set_psr(dp, false); 205 return; 206 } 207 208 out: 209 msm_dp_bridge_atomic_disable(drm_bridge, atomic_state); 210 } 211 212 static void msm_edp_bridge_atomic_post_disable(struct drm_bridge *drm_bridge, 213 struct drm_atomic_state *atomic_state) 214 { 215 struct drm_crtc *crtc; 216 struct drm_crtc_state *new_crtc_state = NULL; 217 218 crtc = drm_atomic_get_old_crtc_for_encoder(atomic_state, 219 drm_bridge->encoder); 220 if (!crtc) 221 return; 222 223 new_crtc_state = drm_atomic_get_new_crtc_state(atomic_state, crtc); 224 if (!new_crtc_state) 225 return; 226 227 /* 228 * Self refresh mode is already set in msm_edp_bridge_atomic_disable. 229 */ 230 if (new_crtc_state->self_refresh_active) 231 return; 232 233 msm_dp_bridge_atomic_post_disable(drm_bridge, atomic_state); 234 } 235 236 /** 237 * msm_edp_bridge_mode_valid - callback to determine if specified mode is valid 238 * @bridge: Pointer to drm bridge structure 239 * @info: display info 240 * @mode: Pointer to drm mode structure 241 * Returns: Validity status for specified mode 242 */ 243 static enum drm_mode_status msm_edp_bridge_mode_valid(struct drm_bridge *bridge, 244 const struct drm_display_info *info, 245 const struct drm_display_mode *mode) 246 { 247 struct msm_dp *dp; 248 int mode_pclk_khz = mode->clock; 249 250 dp = to_dp_bridge(bridge)->msm_dp_display; 251 252 if (!dp || !mode_pclk_khz || !dp->connector) { 253 DRM_ERROR("invalid params\n"); 254 return -EINVAL; 255 } 256 257 if (msm_dp_wide_bus_available(dp)) 258 mode_pclk_khz /= 2; 259 260 if (mode_pclk_khz > DP_MAX_PIXEL_CLK_KHZ) 261 return MODE_CLOCK_HIGH; 262 263 /* 264 * The eDP controller currently does not have a reliable way of 265 * enabling panel power to read sink capabilities. So, we rely 266 * on the panel driver to populate only supported modes for now. 267 */ 268 return MODE_OK; 269 } 270 271 static void msm_edp_bridge_debugfs_init(struct drm_bridge *bridge, struct dentry *root) 272 { 273 struct msm_dp *dp = to_dp_bridge(bridge)->msm_dp_display; 274 275 msm_dp_display_debugfs_init(dp, root, true); 276 } 277 278 static const struct drm_bridge_funcs msm_edp_bridge_ops = { 279 .atomic_enable = msm_edp_bridge_atomic_enable, 280 .atomic_disable = msm_edp_bridge_atomic_disable, 281 .atomic_post_disable = msm_edp_bridge_atomic_post_disable, 282 .mode_set = msm_dp_bridge_mode_set, 283 .mode_valid = msm_edp_bridge_mode_valid, 284 .atomic_reset = drm_atomic_helper_bridge_reset, 285 .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state, 286 .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state, 287 .atomic_check = msm_edp_bridge_atomic_check, 288 .debugfs_init = msm_edp_bridge_debugfs_init, 289 }; 290 291 int msm_dp_bridge_init(struct msm_dp *msm_dp_display, struct drm_device *dev, 292 struct drm_encoder *encoder, bool yuv_supported) 293 { 294 int rc; 295 struct msm_dp_bridge *msm_dp_bridge; 296 struct drm_bridge *bridge; 297 298 msm_dp_bridge = devm_kzalloc(dev->dev, sizeof(*msm_dp_bridge), GFP_KERNEL); 299 if (!msm_dp_bridge) 300 return -ENOMEM; 301 302 msm_dp_bridge->msm_dp_display = msm_dp_display; 303 304 bridge = &msm_dp_bridge->bridge; 305 bridge->funcs = msm_dp_display->is_edp ? &msm_edp_bridge_ops : &msm_dp_bridge_ops; 306 bridge->type = msm_dp_display->connector_type; 307 bridge->ycbcr_420_allowed = yuv_supported; 308 309 /* 310 * Many ops only make sense for DP. Why? 311 * - Detect/HPD are used by DRM to know if a display is _physically_ 312 * there, not whether the display is powered on / finished initting. 313 * On eDP we assume the display is always there because you can't 314 * know until power is applied. If we don't implement the ops DRM will 315 * assume our display is always there. 316 * - Currently eDP mode reading is driven by the panel driver. This 317 * allows the panel driver to properly power itself on to read the 318 * modes. 319 */ 320 if (!msm_dp_display->is_edp) { 321 bridge->ops = 322 DRM_BRIDGE_OP_DETECT | 323 DRM_BRIDGE_OP_HPD | 324 DRM_BRIDGE_OP_MODES; 325 } 326 327 rc = devm_drm_bridge_add(dev->dev, bridge); 328 if (rc) { 329 DRM_ERROR("failed to add bridge, rc=%d\n", rc); 330 331 return rc; 332 } 333 334 rc = drm_bridge_attach(encoder, bridge, NULL, DRM_BRIDGE_ATTACH_NO_CONNECTOR); 335 if (rc) { 336 DRM_ERROR("failed to attach bridge, rc=%d\n", rc); 337 338 return rc; 339 } 340 341 if (msm_dp_display->next_bridge) { 342 rc = drm_bridge_attach(encoder, 343 msm_dp_display->next_bridge, bridge, 344 DRM_BRIDGE_ATTACH_NO_CONNECTOR); 345 if (rc < 0) { 346 DRM_ERROR("failed to attach panel bridge: %d\n", rc); 347 return rc; 348 } 349 } 350 351 return 0; 352 } 353 354 /* connector initialization */ 355 struct drm_connector *msm_dp_drm_connector_init(struct msm_dp *msm_dp_display, 356 struct drm_encoder *encoder) 357 { 358 struct drm_connector *connector = NULL; 359 360 connector = drm_bridge_connector_init(msm_dp_display->drm_dev, encoder); 361 if (IS_ERR(connector)) 362 return connector; 363 364 if (!msm_dp_display->is_edp) 365 drm_connector_attach_dp_subconnector_property(connector); 366 367 drm_connector_attach_encoder(connector, encoder); 368 369 return connector; 370 } 371