diff options
author | Dave Airlie <airlied@redhat.com> | 2015-01-09 17:46:24 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2015-01-09 17:46:24 -0500 |
commit | adc31849b27fefeca6c225d3895143a2ec6970fa (patch) | |
tree | 96644dea69278efbdd0f0fac52202203a67030fa /include/drm | |
parent | c93546a5e32bd788c22aefa072385f3784551c13 (diff) | |
parent | 0e2cfc005b376ed7b5c9a9fc466b5842fcc18cc7 (diff) |
Merge tag 'drm-intel-next-2014-12-19' of git://anongit.freedesktop.org/drm-intel into drm-next
- plane handling refactoring from Matt Roper and Gustavo Padovan in prep for
atomic updates
- fixes and more patches for the seqno to request transformation from John
- docbook for fbc from Rodrigo
- prep work for dual-link dsi from Gaurav Signh
- crc fixes from Ville
- special ggtt views infrastructure from Tvrtko Ursulin
- shadow patch copying for the cmd parser from Brad Volkin
- execlist and full ppgtt by default on gen8, for testing for now
* tag 'drm-intel-next-2014-12-19' of git://anongit.freedesktop.org/drm-intel: (131 commits)
drm/i915: Update DRIVER_DATE to 20141219
drm/i915: Hold runtime PM during plane commit
drm/i915: Organize bind_vma funcs
drm/i915: Organize INSTDONE report for future.
drm/i915: Organize PDP regs report for future.
drm/i915: Organize PPGTT init
drm/i915: Organize Fence registers for future enablement.
drm/i915: tame the chattermouth (v2)
drm/i915: Warn about missing context state workarounds only once
drm/i915: Use true PPGTT in Gen8+ when execlists are enabled
drm/i915: Skip gunit save/restore for cherryview
drm/i915/chv: Use timeout mode for RC6 on chv
drm/i915: Add GPGPU_THREADS_DISPATCHED to the register whitelist
drm/i915: Tidy up execbuffer command parsing code
drm/i915: Mark shadow batch buffers as purgeable
drm/i915: Use batch length instead of object size in command parser
drm/i915: Use batch pools with the command parser
drm/i915: Implement a framework for batch buffer pools
drm/i915: fix use after free during eDP encoder destroying
drm/i915/skl: Skylake also supports DP MST
...
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_crtc.h | 2 | ||||
-rw-r--r-- | include/drm/drm_modes.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 6588bffb6518..f444263055c5 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -1247,6 +1247,8 @@ extern int drm_plane_init(struct drm_device *dev, | |||
1247 | extern void drm_plane_cleanup(struct drm_plane *plane); | 1247 | extern void drm_plane_cleanup(struct drm_plane *plane); |
1248 | extern unsigned int drm_plane_index(struct drm_plane *plane); | 1248 | extern unsigned int drm_plane_index(struct drm_plane *plane); |
1249 | extern void drm_plane_force_disable(struct drm_plane *plane); | 1249 | extern void drm_plane_force_disable(struct drm_plane *plane); |
1250 | extern void drm_crtc_get_hv_timing(const struct drm_display_mode *mode, | ||
1251 | int *hdisplay, int *vdisplay); | ||
1250 | extern int drm_crtc_check_viewport(const struct drm_crtc *crtc, | 1252 | extern int drm_crtc_check_viewport(const struct drm_crtc *crtc, |
1251 | int x, int y, | 1253 | int x, int y, |
1252 | const struct drm_display_mode *mode, | 1254 | const struct drm_display_mode *mode, |
diff --git a/include/drm/drm_modes.h b/include/drm/drm_modes.h index a36a5bfce2f5..b162ccd321f3 100644 --- a/include/drm/drm_modes.h +++ b/include/drm/drm_modes.h | |||
@@ -90,6 +90,9 @@ enum drm_mode_status { | |||
90 | 90 | ||
91 | #define CRTC_INTERLACE_HALVE_V (1 << 0) /* halve V values for interlacing */ | 91 | #define CRTC_INTERLACE_HALVE_V (1 << 0) /* halve V values for interlacing */ |
92 | #define CRTC_STEREO_DOUBLE (1 << 1) /* adjust timings for stereo modes */ | 92 | #define CRTC_STEREO_DOUBLE (1 << 1) /* adjust timings for stereo modes */ |
93 | #define CRTC_NO_DBLSCAN (1 << 2) /* don't adjust doublescan */ | ||
94 | #define CRTC_NO_VSCAN (1 << 3) /* don't adjust doublescan */ | ||
95 | #define CRTC_STEREO_DOUBLE_ONLY (CRTC_NO_DBLSCAN | CRTC_NO_VSCAN) | ||
93 | 96 | ||
94 | #define DRM_MODE_FLAG_3D_MAX DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF | 97 | #define DRM_MODE_FLAG_3D_MAX DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF |
95 | 98 | ||