1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2019 Intel Corporation
6 #ifndef __INTEL_QUIRKS_H__
7 #define __INTEL_QUIRKS_H__
9 #include <linux/types.h>
11 struct drm_i915_private;
14 QUIRK_BACKLIGHT_PRESENT,
15 QUIRK_INCREASE_DDI_DISABLED_TIME,
16 QUIRK_INCREASE_T12_DELAY,
17 QUIRK_INVERT_BRIGHTNESS,
18 QUIRK_LVDS_SSC_DISABLE,
19 QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK,
22 void intel_init_quirks(struct drm_i915_private *i915);
23 bool intel_has_quirk(struct drm_i915_private *i915, enum intel_quirk_id quirk);
25 #endif /* __INTEL_QUIRKS_H__ */