diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/gpu/drm/omapdrm/omap_connector.c | 8 | ||||
| -rw-r--r-- | drivers/gpu/drm/omapdrm/omap_crtc.c | 40 |
2 files changed, 43 insertions, 5 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_connector.c b/drivers/gpu/drm/omapdrm/omap_connector.c index 50d2b641c28b..c24b6b783e9a 100644 --- a/drivers/gpu/drm/omapdrm/omap_connector.c +++ b/drivers/gpu/drm/omapdrm/omap_connector.c | |||
| @@ -146,8 +146,6 @@ static int omap_connector_mode_valid(struct drm_connector *connector, | |||
| 146 | int r, ret = MODE_BAD; | 146 | int r, ret = MODE_BAD; |
| 147 | 147 | ||
| 148 | drm_display_mode_to_videomode(mode, &vm); | 148 | drm_display_mode_to_videomode(mode, &vm); |
| 149 | vm.flags |= DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE | | ||
| 150 | DISPLAY_FLAGS_SYNC_NEGEDGE; | ||
| 151 | mode->vrefresh = drm_mode_vrefresh(mode); | 149 | mode->vrefresh = drm_mode_vrefresh(mode); |
| 152 | 150 | ||
| 153 | /* | 151 | /* |
| @@ -162,6 +160,12 @@ static int omap_connector_mode_valid(struct drm_connector *connector, | |||
| 162 | 160 | ||
| 163 | dssdrv->get_timings(dssdev, &t); | 161 | dssdrv->get_timings(dssdev, &t); |
| 164 | 162 | ||
| 163 | /* | ||
| 164 | * Ignore the flags, as we don't get them from | ||
| 165 | * drm_display_mode_to_videomode. | ||
| 166 | */ | ||
| 167 | t.flags = 0; | ||
| 168 | |||
| 165 | if (memcmp(&vm, &t, sizeof(vm))) | 169 | if (memcmp(&vm, &t, sizeof(vm))) |
| 166 | r = -EINVAL; | 170 | r = -EINVAL; |
| 167 | else | 171 | else |
diff --git a/drivers/gpu/drm/omapdrm/omap_crtc.c b/drivers/gpu/drm/omapdrm/omap_crtc.c index 1db96b077ae8..4f03f74685f0 100644 --- a/drivers/gpu/drm/omapdrm/omap_crtc.c +++ b/drivers/gpu/drm/omapdrm/omap_crtc.c | |||
| @@ -373,6 +373,11 @@ static void omap_crtc_mode_set_nofb(struct drm_crtc *crtc) | |||
| 373 | { | 373 | { |
| 374 | struct omap_crtc *omap_crtc = to_omap_crtc(crtc); | 374 | struct omap_crtc *omap_crtc = to_omap_crtc(crtc); |
| 375 | struct drm_display_mode *mode = &crtc->state->adjusted_mode; | 375 | struct drm_display_mode *mode = &crtc->state->adjusted_mode; |
| 376 | struct omap_drm_private *priv = crtc->dev->dev_private; | ||
| 377 | const u32 flags_mask = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_DE_LOW | | ||
| 378 | DISPLAY_FLAGS_PIXDATA_POSEDGE | DISPLAY_FLAGS_PIXDATA_NEGEDGE | | ||
| 379 | DISPLAY_FLAGS_SYNC_POSEDGE | DISPLAY_FLAGS_SYNC_NEGEDGE; | ||
| 380 | unsigned int i; | ||
| 376 | 381 | ||
| 377 | DBG("%s: set mode: %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x", | 382 | DBG("%s: set mode: %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x", |
| 378 | omap_crtc->name, mode->base.id, mode->name, | 383 | omap_crtc->name, mode->base.id, mode->name, |
| @@ -382,9 +387,38 @@ static void omap_crtc_mode_set_nofb(struct drm_crtc *crtc) | |||
| 382 | mode->type, mode->flags); | 387 | mode->type, mode->flags); |
| 383 | 388 | ||
| 384 | drm_display_mode_to_videomode(mode, &omap_crtc->vm); | 389 | drm_display_mode_to_videomode(mode, &omap_crtc->vm); |
| 385 | omap_crtc->vm.flags |= DISPLAY_FLAGS_DE_HIGH | | 390 | |
| 386 | DISPLAY_FLAGS_PIXDATA_POSEDGE | | 391 | /* |
| 387 | DISPLAY_FLAGS_SYNC_NEGEDGE; | 392 | * HACK: This fixes the vm flags. |
| 393 | * struct drm_display_mode does not contain the VSYNC/HSYNC/DE flags | ||
| 394 | * and they get lost when converting back and forth between | ||
| 395 | * struct drm_display_mode and struct videomode. The hack below | ||
| 396 | * goes and fetches the missing flags from the panel drivers. | ||
| 397 | * | ||
| 398 | * Correct solution would be to use DRM's bus-flags, but that's not | ||
| 399 | * easily possible before the omapdrm's panel/encoder driver model | ||
| 400 | * has been changed to the DRM model. | ||
| 401 | */ | ||
| 402 | |||
| 403 | for (i = 0; i < priv->num_encoders; ++i) { | ||
| 404 | struct drm_encoder *encoder = priv->encoders[i]; | ||
| 405 | |||
| 406 | if (encoder->crtc == crtc) { | ||
| 407 | struct omap_dss_device *dssdev; | ||
| 408 | |||
| 409 | dssdev = omap_encoder_get_dssdev(encoder); | ||
| 410 | |||
| 411 | if (dssdev) { | ||
| 412 | struct videomode vm = {0}; | ||
| 413 | |||
| 414 | dssdev->driver->get_timings(dssdev, &vm); | ||
| 415 | |||
| 416 | omap_crtc->vm.flags |= vm.flags & flags_mask; | ||
| 417 | } | ||
| 418 | |||
| 419 | break; | ||
| 420 | } | ||
| 421 | } | ||
| 388 | } | 422 | } |
| 389 | 423 | ||
| 390 | static int omap_crtc_atomic_check(struct drm_crtc *crtc, | 424 | static int omap_crtc_atomic_check(struct drm_crtc *crtc, |
