Commit 4cd8a64b authored by Chaitanya Kumar Borah's avatar Chaitanya Kumar Borah Committed by Jani Nikula
Browse files

drm/i915/display: Add identifiers for driver specific blocks



Add macros to identify intel specific color blocks. It will help
in mapping drm_color_ops to intel color HW blocks

v2:- Prefix enums with INTEL_* (Jani, Suraj)
   - Remove unnecessary comments (Jani)
   - Commit message improvements (Suraj)

Reviewed-by: default avatarSuraj Kandpal <suraj.kandpal@intel.com>
Signed-off-by: default avatarChaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Signed-off-by: default avatarUma Shankar <uma.shankar@intel.com>
Link: https://patch.msgid.link/20251203085211.3663374-2-uma.shankar@intel.com


Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
parent 0692602d
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -138,4 +138,12 @@ enum hpd_pin {
	HPD_NUM_PINS
};

enum intel_color_block {
	INTEL_PLANE_CB_PRE_CSC_LUT,
	INTEL_PLANE_CB_CSC,
	INTEL_PLANE_CB_POST_CSC_LUT,

	INTEL_CB_MAX
};

#endif /* __INTEL_DISPLAY_LIMITS_H__ */