LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com> To: Vinod Koul <vkoul@kernel.org>, Rob Clark <robdclark@gmail.com> Cc: kbuild-all@lists.01.org, Jonathan Marek <jonathan@marek.ca>, Jeffrey Hugo <jeffrey.l.hugo@gmail.com>, David Airlie <airlied@linux.ie>, linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, Abhinav Kumar <abhinavk@codeaurora.org>, Bjorn Andersson <bjorn.andersson@linaro.org>, Vinod Koul <vkoul@kernel.org>, dri-devel@lists.freedesktop.org Subject: Re: [PATCH 08/11] drm/msm/disp/dpu1: Add support for DSC in encoder Date: Mon, 19 Jul 2021 16:54:06 +0800 [thread overview] Message-ID: <202107191612.8WwD0ZgT-lkp@intel.com> (raw) In-Reply-To: <20210715065203.709914-9-vkoul@kernel.org> [-- Attachment #1: Type: text/plain, Size: 3593 bytes --] Hi Vinod, I love your patch! Perhaps something to improve: [auto build test WARNING on v5.13] [cannot apply to linus/master v5.14-rc1 next-20210716] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Vinod-Koul/drm-msm-Add-Display-Stream-Compression-Support/20210715-145540 base: 62fb9874f5da54fdb243003b386128037319b219 config: arm-defconfig (attached as .config) compiler: arm-linux-gnueabi-gcc (GCC) 10.3.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/0day-ci/linux/commit/e61efb569c28d8036eb18f53763c195c16d8a396 git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review Vinod-Koul/drm-msm-Add-Display-Stream-Compression-Support/20210715-145540 git checkout e61efb569c28d8036eb18f53763c195c16d8a396 # save the attached .config to linux build tree COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=arm If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <lkp@intel.com> All warnings (new ones prefixed by >>): drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c: In function 'dpu_encoder_prep_dsc': >> drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:1911:17: warning: variable 'pic_height' set but not used [-Wunused-but-set-variable] 1911 | int pic_width, pic_height; | ^~~~~~~~~~ vim +/pic_height +1911 drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c 1900 1901 static void dpu_encoder_prep_dsc(struct dpu_encoder_virt *dpu_enc, 1902 struct msm_display_dsc_config *dsc) 1903 { 1904 /* coding only for 2LM, 2enc, 1 dsc config */ 1905 struct dpu_encoder_phys *enc_master = dpu_enc->cur_master; 1906 struct dpu_hw_dsc *hw_dsc[MAX_CHANNELS_PER_ENC]; 1907 struct dpu_hw_pingpong *hw_pp[MAX_CHANNELS_PER_ENC]; 1908 int this_frame_slices; 1909 int intf_ip_w, enc_ip_w; 1910 int dsc_common_mode; > 1911 int pic_width, pic_height; 1912 int i; 1913 1914 for (i = 0; i < MAX_CHANNELS_PER_ENC; i++) { 1915 hw_pp[i] = dpu_enc->hw_pp[i]; 1916 hw_dsc[i] = dpu_enc->hw_dsc[i]; 1917 1918 if (!hw_pp[i] || !hw_dsc[i]) { 1919 DPU_ERROR_ENC(dpu_enc, "invalid params for DSC\n"); 1920 return; 1921 } 1922 } 1923 1924 dsc_common_mode = 0; 1925 pic_width = dsc->drm->pic_width; 1926 pic_height = dsc->drm->pic_height; 1927 1928 dsc_common_mode = DSC_MODE_MULTIPLEX | DSC_MODE_SPLIT_PANEL; 1929 if (enc_master->intf_mode == INTF_MODE_VIDEO) 1930 dsc_common_mode |= DSC_MODE_VIDEO; 1931 1932 this_frame_slices = pic_width / dsc->drm->slice_width; 1933 intf_ip_w = this_frame_slices * dsc->drm->slice_width; 1934 1935 dpu_encoder_dsc_pclk_param_calc(dsc, intf_ip_w); 1936 1937 /* 1938 * dsc merge case: when using 2 encoders for the same stream, 1939 * no. of slices need to be same on both the encoders. 1940 */ 1941 enc_ip_w = intf_ip_w / 2; 1942 dpu_encoder_dsc_initial_line_calc(dsc, enc_ip_w); 1943 1944 for (i = 0; i < MAX_CHANNELS_PER_ENC; i++) 1945 dpu_encoder_dsc_pipe_cfg(hw_dsc[i], hw_pp[i], dsc, dsc_common_mode); 1946 } 1947 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org [-- Attachment #2: .config.gz --] [-- Type: application/gzip, Size: 54713 bytes --]
next prev parent reply other threads:[~2021-07-19 8:57 UTC|newest] Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-07-15 6:51 [PATCH 00/11] drm/msm: Add Display Stream Compression Support Vinod Koul 2021-07-15 6:51 ` [PATCH 01/11] drm/msm/dsi: add support for dsc data Vinod Koul 2021-08-02 22:55 ` [Freedreno] " abhinavk 2021-10-06 5:24 ` Vinod Koul 2021-07-15 6:51 ` [PATCH 02/11] drm/msm/disp/dpu1: Add support for DSC Vinod Koul 2021-07-19 8:28 ` kernel test robot 2021-08-02 23:03 ` [Freedreno] " abhinavk 2021-10-06 5:36 ` Vinod Koul 2021-07-15 6:51 ` [PATCH 03/11] drm/msm/disp/dpu1: Add support for DSC in pingpong block Vinod Koul 2021-08-02 23:07 ` [Freedreno] " abhinavk 2021-07-15 6:51 ` [PATCH 04/11] drm/msm/disp/dpu1: Add DSC support in RM Vinod Koul 2021-07-29 20:23 ` Dmitry Baryshkov 2021-10-06 10:26 ` Vinod Koul 2021-08-02 23:24 ` [Freedreno] " abhinavk 2021-10-06 10:27 ` Vinod Koul 2021-07-15 6:51 ` [PATCH 05/11] drm/msm/disp/dpu1: Add DSC for SDM845 to hw_catalog Vinod Koul 2021-07-29 20:25 ` Dmitry Baryshkov 2021-10-06 10:50 ` Vinod Koul 2021-08-02 23:29 ` [Freedreno] " abhinavk 2021-10-06 10:52 ` Vinod Koul 2021-07-15 6:51 ` [PATCH 06/11] drm/msm/disp/dpu1: Add DSC support in hw_ctl Vinod Koul 2021-07-29 22:15 ` Dmitry Baryshkov 2021-10-06 12:21 ` Vinod Koul 2021-08-03 0:00 ` [Freedreno] " abhinavk 2021-10-06 12:21 ` Vinod Koul 2021-07-15 6:51 ` [PATCH 07/11] drm/msm/disp/dpu1: Don't use DSC with mode_3d Vinod Koul 2021-08-03 0:24 ` [Freedreno] " abhinavk 2021-10-06 12:22 ` Vinod Koul 2021-07-15 6:52 ` [PATCH 08/11] drm/msm/disp/dpu1: Add support for DSC in encoder Vinod Koul 2021-07-19 8:54 ` kernel test robot [this message] 2021-07-29 20:54 ` Dmitry Baryshkov 2021-10-06 12:43 ` Vinod Koul 2021-08-03 0:57 ` [Freedreno] " abhinavk 2021-10-06 12:47 ` Vinod Koul 2021-07-15 6:52 ` [PATCH 09/11] drm/msm/disp/dpu1: Add support for DSC in topology Vinod Koul 2021-08-03 1:05 ` [Freedreno] " abhinavk 2021-07-15 6:52 ` [PATCH 10/11] drm/msm/dsi: Add support for DSC configuration Vinod Koul 2021-07-29 22:10 ` Dmitry Baryshkov 2021-08-03 1:16 ` [Freedreno] " abhinavk 2021-07-15 6:52 ` [PATCH 11/11] drm/msm/dsi: Pass DSC params to drm_panel Vinod Koul 2021-08-03 1:22 ` [Freedreno] " abhinavk
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=202107191612.8WwD0ZgT-lkp@intel.com \ --to=lkp@intel.com \ --cc=abhinavk@codeaurora.org \ --cc=airlied@linux.ie \ --cc=bjorn.andersson@linaro.org \ --cc=dri-devel@lists.freedesktop.org \ --cc=jeffrey.l.hugo@gmail.com \ --cc=jonathan@marek.ca \ --cc=kbuild-all@lists.01.org \ --cc=linux-arm-msm@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=robdclark@gmail.com \ --cc=vkoul@kernel.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: linkBe 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; as well as URLs for NNTP newsgroup(s).