Re: [Intel-gfx] [CI v12 10/23] drm/i915/dsc: Define & Compute VESA DSC params (fwd)

2018-11-28 Thread Julia Lawall


On Wed, 28 Nov 2018, Manasi Navare wrote:

> On Wed, Nov 28, 2018 at 11:46:26AM +, Julia Lawall wrote:
> > Hello,
> >
> > row_index and column_index are unsigned, so in the last line shown
> > they will not be less than 0.
> >
>
> Row_index and column_index are assigned to 0 at the beginning of the function 
> and so
> if thre is no valid index found the get_column_index /row_index will return 
> -EINVAL
> and hence they can have values < 0.

Since they have an unsigned type, the negative values will be considered
to be really big positive numbers.

julia

>
> Does this make sense?
>
> Manasi
>
> > julia
> >
> > -- Forwarded message --
> > Date: Wed, 28 Nov 2018 19:43:30 +0800
> > From: kbuild test robot 
> > To: kbu...@01.org
> > Cc: Julia Lawall 
> > Subject: Re: [Intel-gfx] [CI v12 10/23] drm/i915/dsc: Define & Compute VESA 
> > DSC
> > params
> >
> > CC: kbuild-...@01.org
> > In-Reply-To: <20181127214125.17658-10-manasi.d.nav...@intel.com>
> > References: <20181127214125.17658-10-manasi.d.nav...@intel.com>
> > TO: Manasi Navare 
> > CC: intel-gfx@lists.freedesktop.org
> > CC:
> >
> > Hi Gaurav,
> >
> > Thank you for the patch! Perhaps something to improve:
> >
> > [auto build test WARNING on drm-intel/for-linux-next]
> > [also build test WARNING on next-20181127]
> > [cannot apply to v4.20-rc4]
> > [if your patch is applied to the wrong git tree, please drop us a note to 
> > help improve the system]
> >
> > url:
> > https://github.com/0day-ci/linux/commits/Manasi-Navare/drm-dsc-Modify-DRM-helper-to-return-complete-DSC-color-depth-capabilities/20181128-095026
> > base:   git://anongit.freedesktop.org/drm-intel for-linux-next
> > :: branch date: 10 hours ago
> > :: commit date: 10 hours ago
> >
> > >> drivers/gpu/drm/i915/intel_vdsc.c:404:22-34: WARNING: Unsigned 
> > >> expression compared with zero: column_index < 0
> > >> drivers/gpu/drm/i915/intel_vdsc.c:404:5-14: WARNING: Unsigned expression 
> > >> compared with zero: row_index < 0
> >
> > # 
> > https://github.com/0day-ci/linux/commit/5b6895999d5a84b154fcd49dc3a91d71897d03ec
> > git remote add linux-review https://github.com/0day-ci/linux
> > git remote update linux-review
> > git checkout 5b6895999d5a84b154fcd49dc3a91d71897d03ec
> > vim +404 drivers/gpu/drm/i915/intel_vdsc.c
> >
> > 5b689599 Gaurav K Singh 2018-11-27  319
> > 5b689599 Gaurav K Singh 2018-11-27  320  int 
> > intel_dp_compute_dsc_params(struct intel_dp *intel_dp,
> > 5b689599 Gaurav K Singh 2018-11-27  321 struct 
> > intel_crtc_state *pipe_config)
> > 5b689599 Gaurav K Singh 2018-11-27  322  {
> > 5b689599 Gaurav K Singh 2018-11-27  323 struct drm_dsc_config *vdsc_cfg 
> > = _config->dp_dsc_cfg;
> > 5b689599 Gaurav K Singh 2018-11-27  324 u16 compressed_bpp = 
> > pipe_config->dsc_params.compressed_bpp;
> > 5b689599 Gaurav K Singh 2018-11-27  325 u8 i = 0;
> > 5b689599 Gaurav K Singh 2018-11-27  326 u8 row_index = 0;
> > 5b689599 Gaurav K Singh 2018-11-27  327 u8 column_index = 0;
> > 5b689599 Gaurav K Singh 2018-11-27  328 u8 line_buf_depth = 0;
> > 5b689599 Gaurav K Singh 2018-11-27  329
> > 5b689599 Gaurav K Singh 2018-11-27  330 vdsc_cfg->pic_width = 
> > pipe_config->base.adjusted_mode.crtc_hdisplay;
> > 5b689599 Gaurav K Singh 2018-11-27  331 vdsc_cfg->pic_height = 
> > pipe_config->base.adjusted_mode.crtc_vdisplay;
> > 5b689599 Gaurav K Singh 2018-11-27  332 vdsc_cfg->slice_width = 
> > DIV_ROUND_UP(vdsc_cfg->pic_width,
> > 5b689599 Gaurav K Singh 2018-11-27  333 
> >  pipe_config->dsc_params.slice_count);
> > 5b689599 Gaurav K Singh 2018-11-27  334 /*
> > 5b689599 Gaurav K Singh 2018-11-27  335  * Slice Height of 8 works for 
> > all currently available panels. So start
> > 5b689599 Gaurav K Singh 2018-11-27  336  * with that if pic_height is 
> > an integral multiple of 8.
> > 5b689599 Gaurav K Singh 2018-11-27  337  * Eventually add logic to try 
> > multiple slice heights.
> > 5b689599 Gaurav K Singh 2018-11-27  338  */
> > 5b689599 Gaurav K Singh 2018-11-27  339 if (vdsc_cfg->pic_height % 8 == 
> > 0)
> > 5b689599 Gaurav K Singh 2018-11-27  340 vdsc_cfg->slice_height 
> > = 8;
> > 5b689599 Gaurav K Singh 2018-11-27  341 else if (vdsc_cfg->pic_height % 
> > 4 == 0)
> > 5b689599 Gaurav K Singh 2018-11-27  342 vdsc_cfg->slice_height 
> > = 4;
> > 5b689599 Gaurav K Singh 2018-11-27  343 else
> > 5b689599 Gaurav K Singh 2018-11-27  344 vdsc_cfg->slice_height 
> > = 2;
> > 5b689599 Gaurav K Singh 2018-11-27  345
> > 5b689599 Gaurav K Singh 2018-11-27  346 /* Values filled from DSC Sink 
> > DPCD */
> > 5b689599 Gaurav K Singh 2018-11-27  347 vdsc_cfg->dsc_version_major =
> > 5b689599 Gaurav K Singh 2018-11-27  348 
> > (intel_dp->dsc_dpcd[DP_DSC_REV - DP_DSC_SUPPORT] &
> > 5b689599 Gaurav K Singh 2018-11-27  349  DP_DSC_MAJOR_MASK) >> 

Re: [Intel-gfx] [CI v12 10/23] drm/i915/dsc: Define & Compute VESA DSC params (fwd)

2018-11-28 Thread Manasi Navare
On Wed, Nov 28, 2018 at 11:46:26AM +, Julia Lawall wrote:
> Hello,
> 
> row_index and column_index are unsigned, so in the last line shown
> they will not be less than 0.
>

Row_index and column_index are assigned to 0 at the beginning of the function 
and so
if thre is no valid index found the get_column_index /row_index will return 
-EINVAL
and hence they can have values < 0.

Does this make sense?

Manasi
 
> julia
> 
> -- Forwarded message --
> Date: Wed, 28 Nov 2018 19:43:30 +0800
> From: kbuild test robot 
> To: kbu...@01.org
> Cc: Julia Lawall 
> Subject: Re: [Intel-gfx] [CI v12 10/23] drm/i915/dsc: Define & Compute VESA 
> DSC
> params
> 
> CC: kbuild-...@01.org
> In-Reply-To: <20181127214125.17658-10-manasi.d.nav...@intel.com>
> References: <20181127214125.17658-10-manasi.d.nav...@intel.com>
> TO: Manasi Navare 
> CC: intel-gfx@lists.freedesktop.org
> CC:
> 
> Hi Gaurav,
> 
> Thank you for the patch! Perhaps something to improve:
> 
> [auto build test WARNING on drm-intel/for-linux-next]
> [also build test WARNING on next-20181127]
> [cannot apply to v4.20-rc4]
> [if your patch is applied to the wrong git tree, please drop us a note to 
> help improve the system]
> 
> url:
> https://github.com/0day-ci/linux/commits/Manasi-Navare/drm-dsc-Modify-DRM-helper-to-return-complete-DSC-color-depth-capabilities/20181128-095026
> base:   git://anongit.freedesktop.org/drm-intel for-linux-next
> :: branch date: 10 hours ago
> :: commit date: 10 hours ago
> 
> >> drivers/gpu/drm/i915/intel_vdsc.c:404:22-34: WARNING: Unsigned expression 
> >> compared with zero: column_index < 0
> >> drivers/gpu/drm/i915/intel_vdsc.c:404:5-14: WARNING: Unsigned expression 
> >> compared with zero: row_index < 0
> 
> # 
> https://github.com/0day-ci/linux/commit/5b6895999d5a84b154fcd49dc3a91d71897d03ec
> git remote add linux-review https://github.com/0day-ci/linux
> git remote update linux-review
> git checkout 5b6895999d5a84b154fcd49dc3a91d71897d03ec
> vim +404 drivers/gpu/drm/i915/intel_vdsc.c
> 
> 5b689599 Gaurav K Singh 2018-11-27  319
> 5b689599 Gaurav K Singh 2018-11-27  320  int 
> intel_dp_compute_dsc_params(struct intel_dp *intel_dp,
> 5b689599 Gaurav K Singh 2018-11-27  321   struct 
> intel_crtc_state *pipe_config)
> 5b689599 Gaurav K Singh 2018-11-27  322  {
> 5b689599 Gaurav K Singh 2018-11-27  323   struct drm_dsc_config *vdsc_cfg 
> = _config->dp_dsc_cfg;
> 5b689599 Gaurav K Singh 2018-11-27  324   u16 compressed_bpp = 
> pipe_config->dsc_params.compressed_bpp;
> 5b689599 Gaurav K Singh 2018-11-27  325   u8 i = 0;
> 5b689599 Gaurav K Singh 2018-11-27  326   u8 row_index = 0;
> 5b689599 Gaurav K Singh 2018-11-27  327   u8 column_index = 0;
> 5b689599 Gaurav K Singh 2018-11-27  328   u8 line_buf_depth = 0;
> 5b689599 Gaurav K Singh 2018-11-27  329
> 5b689599 Gaurav K Singh 2018-11-27  330   vdsc_cfg->pic_width = 
> pipe_config->base.adjusted_mode.crtc_hdisplay;
> 5b689599 Gaurav K Singh 2018-11-27  331   vdsc_cfg->pic_height = 
> pipe_config->base.adjusted_mode.crtc_vdisplay;
> 5b689599 Gaurav K Singh 2018-11-27  332   vdsc_cfg->slice_width = 
> DIV_ROUND_UP(vdsc_cfg->pic_width,
> 5b689599 Gaurav K Singh 2018-11-27  333   
>  pipe_config->dsc_params.slice_count);
> 5b689599 Gaurav K Singh 2018-11-27  334   /*
> 5b689599 Gaurav K Singh 2018-11-27  335* Slice Height of 8 works for 
> all currently available panels. So start
> 5b689599 Gaurav K Singh 2018-11-27  336* with that if pic_height is 
> an integral multiple of 8.
> 5b689599 Gaurav K Singh 2018-11-27  337* Eventually add logic to try 
> multiple slice heights.
> 5b689599 Gaurav K Singh 2018-11-27  338*/
> 5b689599 Gaurav K Singh 2018-11-27  339   if (vdsc_cfg->pic_height % 8 == 
> 0)
> 5b689599 Gaurav K Singh 2018-11-27  340   vdsc_cfg->slice_height 
> = 8;
> 5b689599 Gaurav K Singh 2018-11-27  341   else if (vdsc_cfg->pic_height % 
> 4 == 0)
> 5b689599 Gaurav K Singh 2018-11-27  342   vdsc_cfg->slice_height 
> = 4;
> 5b689599 Gaurav K Singh 2018-11-27  343   else
> 5b689599 Gaurav K Singh 2018-11-27  344   vdsc_cfg->slice_height 
> = 2;
> 5b689599 Gaurav K Singh 2018-11-27  345
> 5b689599 Gaurav K Singh 2018-11-27  346   /* Values filled from DSC Sink 
> DPCD */
> 5b689599 Gaurav K Singh 2018-11-27  347   vdsc_cfg->dsc_version_major =
> 5b689599 Gaurav K Singh 2018-11-27  348   
> (intel_dp->dsc_dpcd[DP_DSC_REV - DP_DSC_SUPPORT] &
> 5b689599 Gaurav K Singh 2018-11-27  349DP_DSC_MAJOR_MASK) >> 
> DP_DSC_MAJOR_SHIFT;
> 5b689599 Gaurav K Singh 2018-11-27  350   vdsc_cfg->dsc_version_minor =
> 5b689599 Gaurav K Singh 2018-11-27  351   
> min(DSC_SUPPORTED_VERSION_MIN,
> 5b689599 Gaurav K Singh 2018-11-27  352   
> (intel_dp->dsc_dpcd[DP_DSC_REV - DP_DSC_SUPPORT] &
> 5b689599 

Re: [Intel-gfx] [CI v12 10/23] drm/i915/dsc: Define & Compute VESA DSC params (fwd)

2018-11-28 Thread Julia Lawall
Hello,

row_index and column_index are unsigned, so in the last line shown
they will not be less than 0.

julia

-- Forwarded message --
Date: Wed, 28 Nov 2018 19:43:30 +0800
From: kbuild test robot 
To: kbu...@01.org
Cc: Julia Lawall 
Subject: Re: [Intel-gfx] [CI v12 10/23] drm/i915/dsc: Define & Compute VESA DSC
params

CC: kbuild-...@01.org
In-Reply-To: <20181127214125.17658-10-manasi.d.nav...@intel.com>
References: <20181127214125.17658-10-manasi.d.nav...@intel.com>
TO: Manasi Navare 
CC: intel-gfx@lists.freedesktop.org
CC:

Hi Gaurav,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on drm-intel/for-linux-next]
[also build test WARNING on next-20181127]
[cannot apply to v4.20-rc4]
[if your patch is applied to the wrong git tree, please drop us a note to help 
improve the system]

url:
https://github.com/0day-ci/linux/commits/Manasi-Navare/drm-dsc-Modify-DRM-helper-to-return-complete-DSC-color-depth-capabilities/20181128-095026
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
:: branch date: 10 hours ago
:: commit date: 10 hours ago

>> drivers/gpu/drm/i915/intel_vdsc.c:404:22-34: WARNING: Unsigned expression 
>> compared with zero: column_index < 0
>> drivers/gpu/drm/i915/intel_vdsc.c:404:5-14: WARNING: Unsigned expression 
>> compared with zero: row_index < 0

# 
https://github.com/0day-ci/linux/commit/5b6895999d5a84b154fcd49dc3a91d71897d03ec
git remote add linux-review https://github.com/0day-ci/linux
git remote update linux-review
git checkout 5b6895999d5a84b154fcd49dc3a91d71897d03ec
vim +404 drivers/gpu/drm/i915/intel_vdsc.c

5b689599 Gaurav K Singh 2018-11-27  319
5b689599 Gaurav K Singh 2018-11-27  320  int intel_dp_compute_dsc_params(struct 
intel_dp *intel_dp,
5b689599 Gaurav K Singh 2018-11-27  321 struct 
intel_crtc_state *pipe_config)
5b689599 Gaurav K Singh 2018-11-27  322  {
5b689599 Gaurav K Singh 2018-11-27  323 struct drm_dsc_config *vdsc_cfg 
= _config->dp_dsc_cfg;
5b689599 Gaurav K Singh 2018-11-27  324 u16 compressed_bpp = 
pipe_config->dsc_params.compressed_bpp;
5b689599 Gaurav K Singh 2018-11-27  325 u8 i = 0;
5b689599 Gaurav K Singh 2018-11-27  326 u8 row_index = 0;
5b689599 Gaurav K Singh 2018-11-27  327 u8 column_index = 0;
5b689599 Gaurav K Singh 2018-11-27  328 u8 line_buf_depth = 0;
5b689599 Gaurav K Singh 2018-11-27  329
5b689599 Gaurav K Singh 2018-11-27  330 vdsc_cfg->pic_width = 
pipe_config->base.adjusted_mode.crtc_hdisplay;
5b689599 Gaurav K Singh 2018-11-27  331 vdsc_cfg->pic_height = 
pipe_config->base.adjusted_mode.crtc_vdisplay;
5b689599 Gaurav K Singh 2018-11-27  332 vdsc_cfg->slice_width = 
DIV_ROUND_UP(vdsc_cfg->pic_width,
5b689599 Gaurav K Singh 2018-11-27  333 
 pipe_config->dsc_params.slice_count);
5b689599 Gaurav K Singh 2018-11-27  334 /*
5b689599 Gaurav K Singh 2018-11-27  335  * Slice Height of 8 works for 
all currently available panels. So start
5b689599 Gaurav K Singh 2018-11-27  336  * with that if pic_height is 
an integral multiple of 8.
5b689599 Gaurav K Singh 2018-11-27  337  * Eventually add logic to try 
multiple slice heights.
5b689599 Gaurav K Singh 2018-11-27  338  */
5b689599 Gaurav K Singh 2018-11-27  339 if (vdsc_cfg->pic_height % 8 == 
0)
5b689599 Gaurav K Singh 2018-11-27  340 vdsc_cfg->slice_height 
= 8;
5b689599 Gaurav K Singh 2018-11-27  341 else if (vdsc_cfg->pic_height % 
4 == 0)
5b689599 Gaurav K Singh 2018-11-27  342 vdsc_cfg->slice_height 
= 4;
5b689599 Gaurav K Singh 2018-11-27  343 else
5b689599 Gaurav K Singh 2018-11-27  344 vdsc_cfg->slice_height 
= 2;
5b689599 Gaurav K Singh 2018-11-27  345
5b689599 Gaurav K Singh 2018-11-27  346 /* Values filled from DSC Sink 
DPCD */
5b689599 Gaurav K Singh 2018-11-27  347 vdsc_cfg->dsc_version_major =
5b689599 Gaurav K Singh 2018-11-27  348 
(intel_dp->dsc_dpcd[DP_DSC_REV - DP_DSC_SUPPORT] &
5b689599 Gaurav K Singh 2018-11-27  349  DP_DSC_MAJOR_MASK) >> 
DP_DSC_MAJOR_SHIFT;
5b689599 Gaurav K Singh 2018-11-27  350 vdsc_cfg->dsc_version_minor =
5b689599 Gaurav K Singh 2018-11-27  351 
min(DSC_SUPPORTED_VERSION_MIN,
5b689599 Gaurav K Singh 2018-11-27  352 
(intel_dp->dsc_dpcd[DP_DSC_REV - DP_DSC_SUPPORT] &
5b689599 Gaurav K Singh 2018-11-27  353  DP_DSC_MINOR_MASK) 
>> DP_DSC_MINOR_SHIFT);
5b689599 Gaurav K Singh 2018-11-27  354
5b689599 Gaurav K Singh 2018-11-27  355 vdsc_cfg->convert_rgb = 
intel_dp->dsc_dpcd[DP_DSC_DEC_COLOR_FORMAT_CAP - DP_DSC_SUPPORT] &
5b689599 Gaurav K Singh 2018-11-27  356 DP_DSC_RGB;
5b689599 Gaurav K Singh 2018-11-27  357
5b689599 Gaurav K Singh 2018-11-27  358 line_buf_depth =