Re: [Intel-gfx] [PATCH] drm/i915/display: mode clock check related to max dotclk frequency

2022-11-09 Thread Navare, Manasi
On Wed, Nov 09, 2022 at 12:36:44PM +0200, Jani Nikula wrote: > On Wed, 09 Nov 2022, Nischal Varide wrote: > > A check on mode->clock to see if is greater than i915->max_dotclk_freq > > or greater than 2 * (i915_max_dotclk_freq) in case of big-joiner and > > return an -EINVAL in both the cases > >

Re: [Intel-gfx] [PATCH] drm/i915/display: mode clock check related to max dotclk frequency

2022-11-09 Thread Jani Nikula
On Wed, 09 Nov 2022, Nischal Varide wrote: > A check on mode->clock to see if is greater than i915->max_dotclk_freq > or greater than 2 * (i915_max_dotclk_freq) in case of big-joiner and > return an -EINVAL in both the cases The commit message should explain *why* the change is being done. > > S

[Intel-gfx] [PATCH] drm/i915/display: mode clock check related to max dotclk frequency

2022-11-08 Thread Nischal Varide
A check on mode->clock to see if is greater than i915->max_dotclk_freq or greater than 2 * (i915_max_dotclk_freq) in case of big-joiner and return an -EINVAL in both the cases Signed-off-by: Nischal Varide --- drivers/gpu/drm/i915/display/intel_dp.c | 4 1 file changed, 4 insertions(+) dif