search for: drm_edid_acpi

Displaying 3 results from an estimated 3 matches for "drm_edid_acpi".

2020 Aug 08
2
[PATCH 1/4] drm: retrieve EDID via ACPI _DDC method
On Mon, Jul 27, 2020 at 03:53:54PM -0500, Daniel Dadap wrote: > --- a/drivers/gpu/drm/drm_edid.c > +++ b/drivers/gpu/drm/drm_edid.c > @@ -34,6 +34,7 @@ > #include <linux/module.h> > #include <linux/slab.h> > #include <linux/vga_switcheroo.h> > +#include <linux/pci.h> Nit: Alphabetic ordering. > +static u64 *get_dod_entries(acpi_handle handle,
2020 Aug 12
0
[PATCH 1/4] drm: retrieve EDID via ACPI _DDC method
...er ideas if you have them, but didn't see a good way to search for the "right" _DDC implementation should there be more than one. As for preventing the ACPI EDID retrieval from being used for external panels, I've done this in the individual DRM drivers that call into the new drm_edid_acpi() API since it seemed that each DRM driver had its own way of distinguishing display connector types. If there's a good way to filter for internal panels in DRM core, I'd be happy to do that instead.
2020 Jul 27
1
[PATCH 4/4] radeon: fall back to ACPI EDID retrieval
Fall back to retrieving the EDID via the ACPI _DDC method, when present for notebook internal panels, when retrieving BIOS-embedded EDIDs. Signed-off-by: Daniel Dadap <ddadap at nvidia.com> --- drivers/gpu/drm/radeon/radeon_combios.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c