Message ID | 20240301061128.3145982-1-yangcong5@huaqin.corp-partner.google.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/panel: boe-tv101wum-nl6: Fine tune Himax83102-j02 panel HFP and HBP | expand |
Hi, On Thu, Feb 29, 2024 at 10:11 PM Cong Yang <yangcong5@huaqin.corp-partner.google.com> wrote: > > The current measured frame rate is 59.95Hz, which does not meet the > requirements of touch-stylus and stylus cannot work normally. After > adjustment, the actual measurement is 60.001Hz. Now this panel looks > like it's only used by me on the MTK platform, so let's change this > set of parameters. > > Fixes: cea7008190ad ("drm/panel: Fine tune Himax83102-j02 panel HFP and HBP") Your "Fixes:" tag is not quite right. It needs to have the _exact_ subject of the old commit message, AKA: Fixes: cea7008190ad ("drm/panel: boe-tv101wum-nl6: Fine tune Himax83102-j02 panel HFP and HBP") > Signed-off-by: Cong Yang <yangcong5@huaqin.corp-partner.google.com> > --- > drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) A little odd that the patch you're fixing claimed that it caused the measured rate to be 60.01Hz and here you're saying that it ended up being 59.95Hz. I guess there was a measurement error when the previous patch was posted? In any case, the argument still holds that this is a panel that still appears to be only used by your board, so small tweaks to the numbers here seem OK. Landed to "drm-misc-fixes" after: * Adding "(again)" to the end of the subject to make it distinct from the previous patch description * Fixing your Fixes tag 9dfc46c87cdc drm/panel: boe-tv101wum-nl6: Fine tune Himax83102-j02 panel HFP and HBP (again) -Doug
Hi, On Tue, Mar 5, 2024 at 12:51 AM Doug Anderson <dianders@chromium.org> wrote: > > Hi, > > On Thu, Feb 29, 2024 at 10:11 PM Cong Yang > <yangcong5@huaqin.corp-partner.google.com> wrote: > > > > The current measured frame rate is 59.95Hz, which does not meet the > > requirements of touch-stylus and stylus cannot work normally. After > > adjustment, the actual measurement is 60.001Hz. Now this panel looks > > like it's only used by me on the MTK platform, so let's change this > > set of parameters. > > > > Fixes: cea7008190ad ("drm/panel: Fine tune Himax83102-j02 panel HFP and HBP") > > Your "Fixes:" tag is not quite right. It needs to have the _exact_ > subject of the old commit message, AKA: > > Fixes: cea7008190ad ("drm/panel: boe-tv101wum-nl6: Fine tune > Himax83102-j02 panel HFP and HBP") Ack! Thanks, I’ll fix it now. > > > Signed-off-by: Cong Yang <yangcong5@huaqin.corp-partner.google.com> > > --- > > drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c | 8 ++++---- > > 1 file changed, 4 insertions(+), 4 deletions(-) > > A little odd that the patch you're fixing claimed that it caused the > measured rate to be 60.01Hz and here you're saying that it ended up > being 59.95Hz. I guess there was a measurement error when the previous > patch was posted? Yes, the previous patch measurement was wrong. > > In any case, the argument still holds that this is a panel that still > appears to be only used by your board, so small tweaks to the numbers > here seem OK. > > Landed to "drm-misc-fixes" after: > * Adding "(again)" to the end of the subject to make it distinct from > the previous patch description > * Fixing your Fixes tag > > 9dfc46c87cdc drm/panel: boe-tv101wum-nl6: Fine tune Himax83102-j02 > panel HFP and HBP (again) Got it. Thanks. > > > -Doug
diff --git a/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c b/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c index bc08814954f9..0ffe8f8c01de 100644 --- a/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c +++ b/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c @@ -1768,11 +1768,11 @@ static const struct panel_desc starry_qfh032011_53g_desc = { }; static const struct drm_display_mode starry_himax83102_j02_default_mode = { - .clock = 162850, + .clock = 162680, .hdisplay = 1200, - .hsync_start = 1200 + 50, - .hsync_end = 1200 + 50 + 20, - .htotal = 1200 + 50 + 20 + 50, + .hsync_start = 1200 + 60, + .hsync_end = 1200 + 60 + 20, + .htotal = 1200 + 60 + 20 + 40, .vdisplay = 1920, .vsync_start = 1920 + 116, .vsync_end = 1920 + 116 + 8,
The current measured frame rate is 59.95Hz, which does not meet the requirements of touch-stylus and stylus cannot work normally. After adjustment, the actual measurement is 60.001Hz. Now this panel looks like it's only used by me on the MTK platform, so let's change this set of parameters. Fixes: cea7008190ad ("drm/panel: Fine tune Himax83102-j02 panel HFP and HBP") Signed-off-by: Cong Yang <yangcong5@huaqin.corp-partner.google.com> --- drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)