drm/tegra: plane: Add generic colorkey properties for older Tegra's
[linux] / drivers / gpu / drm / tegra / dc.h
index 1256dfb..1ae8956 100644 (file)
 
 struct tegra_output;
 
+struct tegra_dc_color_key_state {
+       u32 min;
+       u32 max;
+};
+
 struct tegra_dc_state {
        struct drm_crtc_state base;
 
@@ -26,6 +31,8 @@ struct tegra_dc_state {
        unsigned int div;
 
        u32 planes;
+
+       struct tegra_dc_color_key_state ckey;
 };
 
 static inline struct tegra_dc_state *to_dc_state(struct drm_crtc_state *state)