Updated from Linux LTS 3.10.25 to 3.10.26

This commit is contained in:
Nathan
2025-04-09 20:15:34 -05:00
parent 92cb237c3b
commit c205d496ee
118 changed files with 902 additions and 407 deletions

View File

@@ -68,10 +68,12 @@
#define EDID_QUIRK_DETAILED_SYNC_PP (1 << 6)
/* Force reduced-blanking timings for detailed modes */
#define EDID_QUIRK_FORCE_REDUCED_BLANKING (1 << 7)
/* Force 8bpc */
#define EDID_QUIRK_FORCE_8BPC (1 << 8)
/* The panel supports, but does not include a lower clocked mode for lvds */
#define EDID_QUIRK_ADD_DOWNCLOCK_MODE (1 << 8)
#define EDID_QUIRK_ADD_DOWNCLOCK_MODE (1 << 9)
/* The panel can reduce consumption with shorter blanking intervals */
#define EDID_QUIRK_SHORT_BLANKING (1 << 9)
#define EDID_QUIRK_SHORT_BLANKING (1 << 10)
struct detailed_mode_closure {
@@ -134,6 +136,9 @@ static struct edid_quirk {
/* Medion MD 30217 PG */
{ "MED", 0x7b8, EDID_QUIRK_PREFER_LARGE_75 },
/* Panel in Samsung NP700G7A-S01PL notebook reports 6bpc */
{ "SEC", 0xd033, EDID_QUIRK_FORCE_8BPC },
/* Samsung TFT-LCD LTN121AT10-301 */
{ "SEC", 0x3142, EDID_QUIRK_ADD_DOWNCLOCK_MODE },
/* Acer B116XW03 */
@@ -3412,6 +3417,9 @@ int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid)
drm_add_display_info(edid, &connector->display_info);
if (quirks & EDID_QUIRK_FORCE_8BPC)
connector->display_info.bpc = 8;
return num_modes;
}
EXPORT_SYMBOL(drm_add_edid_modes);