Message ID | 20220324134819.v2.1.I816014b6c62da5a33af5021f3cc35cea66552c00@changeid (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] panel-edp: drm/panel-edp: Add AUO B133UAN01 | expand |
Hi, On Thu, Mar 24, 2022 at 1:48 PM Matthias Kaehlcke <mka@chromium.org> wrote: > > Add support for the AUO B133UAN01 13.3" WUXGA panel. > > Signed-off-by: Matthias Kaehlcke <mka@chromium.org> > --- > > Changes in v2: > - autodetect and configure the panel based on the EDID data instead of > relying on a compatible string and hardcoded mode settings. > > drivers/gpu/drm/panel/panel-edp.c | 1 + > 1 file changed, 1 insertion(+) Reviewed-by: Douglas Anderson <dianders@chromium.org> Given the trivial nature of this change, I'll plan to land it in a few days barring someone else yelling about it. -Doug
Hi, On Thu, Mar 24, 2022 at 1:51 PM Doug Anderson <dianders@chromium.org> wrote: > > Hi, > > On Thu, Mar 24, 2022 at 1:48 PM Matthias Kaehlcke <mka@chromium.org> wrote: > > > > Add support for the AUO B133UAN01 13.3" WUXGA panel. > > > > Signed-off-by: Matthias Kaehlcke <mka@chromium.org> > > --- > > > > Changes in v2: > > - autodetect and configure the panel based on the EDID data instead of > > relying on a compatible string and hardcoded mode settings. > > > > drivers/gpu/drm/panel/panel-edp.c | 1 + > > 1 file changed, 1 insertion(+) > > Reviewed-by: Douglas Anderson <dianders@chromium.org> > > Given the trivial nature of this change, I'll plan to land it in a few > days barring someone else yelling about it. I modified the patch subject slightly since the extra "panel-edp:" prefix was redundant, then pushed to drm-misc-next: ec57376fba5a drm/panel-edp: Add AUO B133UAN01 -Doug
diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c index e15e62f235d8..db4eea1d7f67 100644 --- a/drivers/gpu/drm/panel/panel-edp.c +++ b/drivers/gpu/drm/panel/panel-edp.c @@ -1847,6 +1847,7 @@ static const struct panel_delay delay_100_500_e200 = { static const struct edp_panel_entry edp_panels[] = { EDP_PANEL_ENTRY('A', 'U', 'O', 0x405c, &auo_b116xak01.delay, "B116XAK01"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x615c, &delay_200_500_e50, "B116XAN06.1"), + EDP_PANEL_ENTRY('A', 'U', 'O', 0x8495, &delay_200_500_e50, "B133UAN01.0"), EDP_PANEL_ENTRY('B', 'O', 'E', 0x0786, &delay_200_500_p2e80, "NV116WHM-T01"), EDP_PANEL_ENTRY('B', 'O', 'E', 0x07d1, &boe_nv133fhm_n61.delay, "NV133FHM-N61"),
Add support for the AUO B133UAN01 13.3" WUXGA panel. Signed-off-by: Matthias Kaehlcke <mka@chromium.org> --- Changes in v2: - autodetect and configure the panel based on the EDID data instead of relying on a compatible string and hardcoded mode settings. drivers/gpu/drm/panel/panel-edp.c | 1 + 1 file changed, 1 insertion(+)