From: abhinavk@codeaurora.org
To: dri-devel@lists.freedesktop.org
Cc: seanpaul@chromium.org, aravindh@codeaurora.org, chandanu@codeaurora.org
Subject: Question on 640x480 @ 72fps
Date: Thu, 30 Aug 2018 19:32:58 -0700 [thread overview]
Message-ID: <8b761109203a732857b18811fb3f0212@codeaurora.org> (raw)
Hello
During one of our internal tests, we ran into an issue where the
calculated refresh rate for the mode using the drm_mode_vrefresh() API
doesnt
match the theoretical value due to rounding.
552 { DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 31500, 640, 664,
553 704, 832, 0, 480, 489, 492, 520, 0,
554 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) }, /*
640x480@72Hz */
int drm_mode_vrefresh(const struct drm_display_mode *mode)
{
int refresh = 0;
if (mode->vrefresh > 0)
refresh = mode->vrefresh;
else if (mode->htotal > 0 && mode->vtotal > 0) {
unsigned int num, den;
num = mode->clock * 1000;
den = mode->htotal * mode->vtotal;
if (mode->flags & DRM_MODE_FLAG_INTERLACE)
num *= 2;
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
den *= 2;
if (mode->vscan > 1)
den *= mode->vscan;
refresh = DIV_ROUND_CLOSEST(num, den);
}
return refresh;
}
EXPORT_SYMBOL(drm_mode_vrefresh);
As per the math of this API, the vrefresh comes up to 72.8 fps ( 31500 *
1000 ) / (832 * 520) .
Hence this gets rounded to 73fps.
However as per the spec, this mode should have the vrefresh as 72fps.
So to satisfy that, we must round-down in this function. That might
break other modes though.
Do you have any suggestions on how to fix-up this mode ? Shall we just
directly specify the vrefresh in the edid_est_modes[] and
drm_dmt_modes[] static array?
I can submit a PATCH based on the approach we agree on here.
Thanks
Abhinav
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next reply other threads:[~2018-08-31 2:32 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-31 2:32 abhinavk [this message]
2018-08-31 11:06 ` Question on 640x480 @ 72fps Ville Syrjälä
2018-08-31 12:23 ` Sean Paul
2018-08-31 18:07 ` Abhinav Kumar
2018-09-03 7:45 ` Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8b761109203a732857b18811fb3f0212@codeaurora.org \
--to=abhinavk@codeaurora.org \
--cc=aravindh@codeaurora.org \
--cc=chandanu@codeaurora.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=seanpaul@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox