Message ID | 20231107204611.3082200-5-hsinyi@chromium.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add a few panels and use correct modes | expand |
On Tue, Nov 07, 2023 at 12:41:54PM -0800, Hsin-Yi Wang wrote: > Generic edp gets mode from edid. However, some panels report incorrect > mode in this way, resulting in glitches on panel. Introduce a new quirk > additional_mode to the generic edid to pick a correct hardcoded mode. > > Signed-off-by: Hsin-Yi Wang <hsinyi@chromium.org> > Reviewed-by: Douglas Anderson <dianders@chromium.org> > --- > no change. > --- > drivers/gpu/drm/panel/panel-edp.c | 67 ++++++++++++++++++++++++++++--- > 1 file changed, 62 insertions(+), 5 deletions(-) > <formletter> This is not the correct way to submit patches for inclusion in the stable kernel tree. Please read: https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html for how to do this properly. </formletter>
On Tue, Nov 07, 2023 at 12:41:54PM -0800, Hsin-Yi Wang wrote: > Generic edp gets mode from edid. However, some panels report incorrect > mode in this way, resulting in glitches on panel. Introduce a new quirk > additional_mode to the generic edid to pick a correct hardcoded mode. > > Signed-off-by: Hsin-Yi Wang <hsinyi@chromium.org> > Reviewed-by: Douglas Anderson <dianders@chromium.org> > --- > no change. > --- > drivers/gpu/drm/panel/panel-edp.c | 67 ++++++++++++++++++++++++++++--- > 1 file changed, 62 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c > index 599a949d74d1..c0c24d94c3a0 100644 > --- a/drivers/gpu/drm/panel/panel-edp.c > +++ b/drivers/gpu/drm/panel/panel-edp.c > @@ -203,6 +203,9 @@ struct edp_panel_entry { > > /** @name: Name of this panel (for printing to logs). */ > const char *name; > + > + /** @override_edid_mode: Override the mode obtained by edid. */ > + const struct drm_display_mode *override_edid_mode; > }; > > struct panel_edp { > @@ -301,6 +304,24 @@ static unsigned int panel_edp_get_display_modes(struct panel_edp *panel, > return num; > } > > +static int panel_edp_override_edid_mode(struct panel_edp *panel, > + struct drm_connector *connector, > + const struct drm_display_mode *override_mode) > +{ > + struct drm_display_mode *mode; > + > + mode = drm_mode_duplicate(connector->dev, override_mode); > + if (!mode) { > + dev_err(panel->base.dev, "failed to add additional mode\n"); > + return 0; > + } > + > + mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED; > + drm_mode_set_name(mode); > + drm_mode_probed_add(connector, mode); > + return 1; > +} > + > static int panel_edp_get_non_edid_modes(struct panel_edp *panel, > struct drm_connector *connector) > { > @@ -568,6 +589,9 @@ static int panel_edp_get_modes(struct drm_panel *panel, > { > struct panel_edp *p = to_panel_edp(panel); > int num = 0; > + bool has_override_edid_mode = p->detected_panel && > + p->detected_panel != ERR_PTR(-EINVAL) && > + p->detected_panel->override_edid_mode; > > /* probe EDID if a DDC bus is available */ > if (p->ddc) { > @@ -575,9 +599,18 @@ static int panel_edp_get_modes(struct drm_panel *panel, > > if (!p->edid) > p->edid = drm_get_edid(connector, p->ddc); > - > - if (p->edid) > - num += drm_add_edid_modes(connector, p->edid); > + if (p->edid) { > + if (has_override_edid_mode) { It's not clear to me why the override mechanism is only there when there's a ddc bus? You mentioned before that you were following panel-simple, but that's a clear deviation from what I can see. If there's a reason for that deviation, that's fine by me, but it should at least be documented in the commit log. > + /* > + * override_edid_mode is specified. Use > + * override_edid_mode instead of from edid. > + */ > + num += panel_edp_override_edid_mode(p, connector, > + p->detected_panel->override_edid_mode); > + } else { > + num += drm_add_edid_modes(connector, p->edid); > + } > + } > > pm_runtime_mark_last_busy(panel->dev); > pm_runtime_put_autosuspend(panel->dev); > @@ -950,6 +983,19 @@ static const struct panel_desc auo_b101ean01 = { > }, > }; > > +static const struct drm_display_mode auo_b116xa3_mode = { > + .clock = 70589, > + .hdisplay = 1366, > + .hsync_start = 1366 + 40, > + .hsync_end = 1366 + 40 + 40, > + .htotal = 1366 + 40 + 40 + 32, > + .vdisplay = 768, > + .vsync_start = 768 + 10, > + .vsync_end = 768 + 10 + 12, > + .vtotal = 768 + 10 + 12 + 6, > + .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC, > +}; That should be a separate patch Maxime
Hi, On Wed, Nov 8, 2023 at 7:45 AM Maxime Ripard <mripard@kernel.org> wrote: > > > @@ -575,9 +599,18 @@ static int panel_edp_get_modes(struct drm_panel *panel, > > > > if (!p->edid) > > p->edid = drm_get_edid(connector, p->ddc); > > - > > - if (p->edid) > > - num += drm_add_edid_modes(connector, p->edid); > > + if (p->edid) { > > + if (has_override_edid_mode) { > > It's not clear to me why the override mechanism is only there when > there's a ddc bus? I think you're confusing the two different (but related) issues addressed by this series. One is when you're using the generic "edp-panel" compatible string. In that case the mode comes from the EDID and only the EDID since there's no hardcoded mode. We need a mode override there since some EDIDs shipped with a bad mode. That's the subject of ${SUBJECT} patch. The second issue is what to do with a hardcoded mode. That's the subject of the next patch in the series (patch #5). Previously we merged the hardcoded and EDID modes. Now (in the next patch) we use only the hardcoded mode. There's no need for a fixup because the mode is hardcoded in the kernel. > You mentioned before that you were following panel-simple, As of the newest version of the patch, it's no longer following panel-simple in response to your feedback on previous versions. > but that's a > clear deviation from what I can see. If there's a reason for that > deviation, that's fine by me, but it should at least be documented in > the commit log. I think the commit log is OK. I suspect the confusion is only because you've reviewed previous versions of the series. Please shout if things still look confusing. > > @@ -950,6 +983,19 @@ static const struct panel_desc auo_b101ean01 = { > > }, > > }; > > > > +static const struct drm_display_mode auo_b116xa3_mode = { > > + .clock = 70589, > > + .hdisplay = 1366, > > + .hsync_start = 1366 + 40, > > + .hsync_end = 1366 + 40 + 40, > > + .htotal = 1366 + 40 + 40 + 32, > > + .vdisplay = 768, > > + .vsync_start = 768 + 10, > > + .vsync_end = 768 + 10 + 12, > > + .vtotal = 768 + 10 + 12 + 6, > > + .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC, > > +}; > > That should be a separate patch That's fair. I didn't think it was a huge deal, but I agree that it's slightly cleaner. -Doug
Hi, On Wed, Nov 8, 2023 at 9:04 AM Doug Anderson <dianders@chromium.org> wrote: > > Hi, > > On Wed, Nov 8, 2023 at 7:45 AM Maxime Ripard <mripard@kernel.org> wrote: > > > > > @@ -575,9 +599,18 @@ static int panel_edp_get_modes(struct drm_panel *panel, > > > > > > if (!p->edid) > > > p->edid = drm_get_edid(connector, p->ddc); > > > - > > > - if (p->edid) > > > - num += drm_add_edid_modes(connector, p->edid); > > > + if (p->edid) { > > > + if (has_override_edid_mode) { > > > > It's not clear to me why the override mechanism is only there when > > there's a ddc bus? > > I think you're confusing the two different (but related) issues > addressed by this series. One is when you're using the generic > "edp-panel" compatible string. In that case the mode comes from the > EDID and only the EDID since there's no hardcoded mode. We need a mode > override there since some EDIDs shipped with a bad mode. That's the > subject of ${SUBJECT} patch. > > The second issue is what to do with a hardcoded mode. That's the > subject of the next patch in the series (patch #5). Previously we > merged the hardcoded and EDID modes. Now (in the next patch) we use > only the hardcoded mode. There's no need for a fixup because the mode > is hardcoded in the kernel. > > > > You mentioned before that you were following panel-simple, > > As of the newest version of the patch, it's no longer following > panel-simple in response to your feedback on previous versions. > > > but that's a > > clear deviation from what I can see. If there's a reason for that > > deviation, that's fine by me, but it should at least be documented in > > the commit log. > > I think the commit log is OK. I suspect the confusion is only because > you've reviewed previous versions of the series. Please shout if > things still look confusing. > > > > > @@ -950,6 +983,19 @@ static const struct panel_desc auo_b101ean01 = { > > > }, > > > }; > > > > > > +static const struct drm_display_mode auo_b116xa3_mode = { > > > + .clock = 70589, > > > + .hdisplay = 1366, > > > + .hsync_start = 1366 + 40, > > > + .hsync_end = 1366 + 40 + 40, > > > + .htotal = 1366 + 40 + 40 + 32, > > > + .vdisplay = 768, > > > + .vsync_start = 768 + 10, > > > + .vsync_end = 768 + 10 + 12, > > > + .vtotal = 768 + 10 + 12 + 6, > > > + .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC, > > > +}; > > > > That should be a separate patch > > That's fair. I didn't think it was a huge deal, but I agree that it's > slightly cleaner. I've pushed the first 3 patches but not this patch nor the next one. It wouldn't hurt to split patch #4 as Maxime requests and then send the split patch #4 plus patch #5 as a v7. It's probably worth holding off until either some time passes or Maxime responds and says that his other concerns are addressed. -Doug
diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c index 599a949d74d1..c0c24d94c3a0 100644 --- a/drivers/gpu/drm/panel/panel-edp.c +++ b/drivers/gpu/drm/panel/panel-edp.c @@ -203,6 +203,9 @@ struct edp_panel_entry { /** @name: Name of this panel (for printing to logs). */ const char *name; + + /** @override_edid_mode: Override the mode obtained by edid. */ + const struct drm_display_mode *override_edid_mode; }; struct panel_edp { @@ -301,6 +304,24 @@ static unsigned int panel_edp_get_display_modes(struct panel_edp *panel, return num; } +static int panel_edp_override_edid_mode(struct panel_edp *panel, + struct drm_connector *connector, + const struct drm_display_mode *override_mode) +{ + struct drm_display_mode *mode; + + mode = drm_mode_duplicate(connector->dev, override_mode); + if (!mode) { + dev_err(panel->base.dev, "failed to add additional mode\n"); + return 0; + } + + mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED; + drm_mode_set_name(mode); + drm_mode_probed_add(connector, mode); + return 1; +} + static int panel_edp_get_non_edid_modes(struct panel_edp *panel, struct drm_connector *connector) { @@ -568,6 +589,9 @@ static int panel_edp_get_modes(struct drm_panel *panel, { struct panel_edp *p = to_panel_edp(panel); int num = 0; + bool has_override_edid_mode = p->detected_panel && + p->detected_panel != ERR_PTR(-EINVAL) && + p->detected_panel->override_edid_mode; /* probe EDID if a DDC bus is available */ if (p->ddc) { @@ -575,9 +599,18 @@ static int panel_edp_get_modes(struct drm_panel *panel, if (!p->edid) p->edid = drm_get_edid(connector, p->ddc); - - if (p->edid) - num += drm_add_edid_modes(connector, p->edid); + if (p->edid) { + if (has_override_edid_mode) { + /* + * override_edid_mode is specified. Use + * override_edid_mode instead of from edid. + */ + num += panel_edp_override_edid_mode(p, connector, + p->detected_panel->override_edid_mode); + } else { + num += drm_add_edid_modes(connector, p->edid); + } + } pm_runtime_mark_last_busy(panel->dev); pm_runtime_put_autosuspend(panel->dev); @@ -950,6 +983,19 @@ static const struct panel_desc auo_b101ean01 = { }, }; +static const struct drm_display_mode auo_b116xa3_mode = { + .clock = 70589, + .hdisplay = 1366, + .hsync_start = 1366 + 40, + .hsync_end = 1366 + 40 + 40, + .htotal = 1366 + 40 + 40 + 32, + .vdisplay = 768, + .vsync_start = 768 + 10, + .vsync_end = 768 + 10 + 12, + .vtotal = 768 + 10 + 12 + 6, + .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC, +}; + static const struct drm_display_mode auo_b116xak01_mode = { .clock = 69300, .hdisplay = 1366, @@ -1878,6 +1924,15 @@ static const struct panel_delay delay_200_150_e200 = { .delay = _delay \ } +#define EDP_PANEL_ENTRY2(vend_chr_0, vend_chr_1, vend_chr_2, product_id, _delay, _name, _mode) \ +{ \ + .name = _name, \ + .panel_id = drm_edid_encode_panel_id(vend_chr_0, vend_chr_1, vend_chr_2, \ + product_id), \ + .delay = _delay, \ + .override_edid_mode = _mode \ +} + /* * This table is used to figure out power sequencing delays for panels that * are detected by EDID. Entries here may point to entries in the @@ -1895,9 +1950,11 @@ static const struct edp_panel_entry edp_panels[] = { EDP_PANEL_ENTRY('A', 'U', 'O', 0x239b, &delay_200_500_e50, "B116XAN06.1"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x255c, &delay_200_500_e50, "B116XTN02.5"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x403d, &delay_200_500_e50, "B140HAN04.0"), - EDP_PANEL_ENTRY('A', 'U', 'O', 0x405c, &auo_b116xak01.delay, "B116XAK01.0"), + EDP_PANEL_ENTRY2('A', 'U', 'O', 0x405c, &auo_b116xak01.delay, "B116XAK01.0", + &auo_b116xa3_mode), EDP_PANEL_ENTRY('A', 'U', 'O', 0x582d, &delay_200_500_e50, "B133UAN01.0"), - EDP_PANEL_ENTRY('A', 'U', 'O', 0x615c, &delay_200_500_e50, "B116XAN06.1"), + EDP_PANEL_ENTRY2('A', 'U', 'O', 0x615c, &delay_200_500_e50, "B116XAN06.1", + &auo_b116xa3_mode), EDP_PANEL_ENTRY('A', 'U', 'O', 0x635c, &delay_200_500_e50, "B116XAN06.3"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x639c, &delay_200_500_e50, "B140HAK02.7"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x8594, &delay_200_500_e50, "B133UAN01.0"),