@@ -24,6 +24,24 @@ static const struct drm_panel_min_backlight_quirk drm_panel_min_backlight_quirks
.ident.name = "NE135FBM-N41",
.min_brightness = 0,
},
+ /* 13 inch glossy panel */
+ {
+ .dmi_match.field = DMI_BOARD_VENDOR,
+ .dmi_match.value = "Framework",
+ .ident.panel_id = drm_edid_encode_panel_id('B', 'O', 'E', 0x095f),
+ .ident.name = "NE135FBM-N41",
+ .quirk.overrides.pwm_min_brightness = true,
+ .quirk.pwm_min_brightness = 0,
+ },
+ /* 13 inch 2.8k panel */
+ {
+ .dmi_match.field = DMI_BOARD_VENDOR,
+ .dmi_match.value = "Framework",
+ .ident.panel_id = drm_edid_encode_panel_id('B', 'O', 'E', 0x0cb4),
+ .ident.name = "NE135A1M-NY1",
+ .quirk.overrides.pwm_min_brightness = true,
+ .quirk.pwm_min_brightness = 0,
+ },
};
static bool drm_panel_min_backlight_quirk_matches(const struct drm_panel_min_backlight_quirk *quirk,
This patch depends on 20240812-amdgpu-min-backlight-quirk-v4-0-56a63ff897b7@weissschuh.net I have tested these panels on the Framework Laptop 13 AMD with firmware revision 3.05 (latest at time of submission). --- Signed-off-by: Dustin L. Howett <dustin@howett.net> --- drivers/gpu/drm/drm_panel_backlight_quirks.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) --- base-commit: da62c6801838309f5c64cd0520f7bd758edb7d4b change-id: 20240817-drm-add-additional-framework-laptop-displays-to-panel-backlight-quirks-804c13d639ef Best regards,