diff options
author | Thierry Reding <treding@nvidia.com> | 2013-12-12 11:03:59 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2013-12-20 15:56:06 +0100 |
commit | 8620fc629aeec02ac3b3735703940696386a3039 (patch) | |
tree | e8571fbce2979ceb4f67c6033a9351cc0743de6f /drivers/gpu/drm/tegra/drm.h | |
parent | 6b7c79d19157d52901398964ad115dd472cedfde (diff) |
drm/tegra: Add Tegra124 DC support
Tegra124 and later support interlacing, but the driver doesn't support
it yet. Make sure interlacing stays disabled on hardware that supports
it.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/drm.h')
-rw-r--r-- | drivers/gpu/drm/tegra/drm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tegra/drm.h b/drivers/gpu/drm/tegra/drm.h index 6b293c88a8c..bf1cac7658f 100644 --- a/drivers/gpu/drm/tegra/drm.h +++ b/drivers/gpu/drm/tegra/drm.h @@ -88,6 +88,7 @@ extern int tegra_drm_unregister_client(struct tegra_drm *tegra, extern int tegra_drm_init(struct tegra_drm *tegra, struct drm_device *drm); extern int tegra_drm_exit(struct tegra_drm *tegra); +struct tegra_dc_soc_info; struct tegra_output; struct tegra_dc { @@ -113,6 +114,8 @@ struct tegra_dc { /* page-flip handling */ struct drm_pending_vblank_event *event; + + const struct tegra_dc_soc_info *soc; }; static inline struct tegra_dc * |