All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Paloma Arellano <quic_parellan@quicinc.com>,
	freedreno@lists.freedesktop.org
Cc: oe-kbuild-all@lists.linux.dev, neil.armstrong@linaro.org,
	marijn.suijten@somainline.org, linux-arm-msm@vger.kernel.org,
	quic_abhinavk@quicinc.com, dri-devel@lists.freedesktop.org,
	swboyd@chromium.org, seanpaul@chromium.org,
	quic_jesszhan@quicinc.com, dmitry.baryshkov@linaro.org,
	Paloma Arellano <quic_parellan@quicinc.com>,
	quic_khsieh@quicinc.com
Subject: Re: [PATCH 10/17] drm/msm/dp: modify dp_catalog_hw_revision to show major and minor val
Date: Sun, 28 Jan 2024 07:43:16 +0800	[thread overview]
Message-ID: <202401280752.AmrDI7Ox-lkp@intel.com> (raw)
In-Reply-To: <20240125193834.7065-11-quic_parellan@quicinc.com>

Hi Paloma,

kernel test robot noticed the following build warnings:

[auto build test WARNING on v6.8-rc1]
[also build test WARNING on linus/master next-20240125]
[cannot apply to drm-misc/drm-misc-next]
[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#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Paloma-Arellano/drm-msm-dpu-allow-dpu_encoder_helper_phys_setup_cdm-to-work-for-DP/20240126-034233
base:   v6.8-rc1
patch link:    https://lore.kernel.org/r/20240125193834.7065-11-quic_parellan%40quicinc.com
patch subject: [PATCH 10/17] drm/msm/dp: modify dp_catalog_hw_revision to show major and minor val
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20240128/202401280752.AmrDI7Ox-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240128/202401280752.AmrDI7Ox-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202401280752.AmrDI7Ox-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/gpu/drm/msm/dp/dp_catalog.c:541: warning: Function parameter or struct member 'major' not described in 'dp_catalog_hw_revision'
>> drivers/gpu/drm/msm/dp/dp_catalog.c:541: warning: Function parameter or struct member 'minor' not described in 'dp_catalog_hw_revision'


vim +541 drivers/gpu/drm/msm/dp/dp_catalog.c

c943b4948b5848 Chandan Uddaraju 2020-08-27  531  
757a2f36ab095f Kuogee Hsieh     2022-02-25  532  /**
757a2f36ab095f Kuogee Hsieh     2022-02-25  533   * dp_catalog_hw_revision() - retrieve DP hw revision
757a2f36ab095f Kuogee Hsieh     2022-02-25  534   *
757a2f36ab095f Kuogee Hsieh     2022-02-25  535   * @dp_catalog: DP catalog structure
757a2f36ab095f Kuogee Hsieh     2022-02-25  536   *
5febc52d5716d6 Paloma Arellano  2024-01-25  537   * Return: void
757a2f36ab095f Kuogee Hsieh     2022-02-25  538   *
757a2f36ab095f Kuogee Hsieh     2022-02-25  539   */
5febc52d5716d6 Paloma Arellano  2024-01-25  540  void dp_catalog_hw_revision(const struct dp_catalog *dp_catalog, u16 *major, u16 *minor)
757a2f36ab095f Kuogee Hsieh     2022-02-25 @541  {
757a2f36ab095f Kuogee Hsieh     2022-02-25  542  	const struct dp_catalog_private *catalog = container_of(dp_catalog,
757a2f36ab095f Kuogee Hsieh     2022-02-25  543  				struct dp_catalog_private, dp_catalog);
5febc52d5716d6 Paloma Arellano  2024-01-25  544  	u32 reg_dp_hw_version;
757a2f36ab095f Kuogee Hsieh     2022-02-25  545  
5febc52d5716d6 Paloma Arellano  2024-01-25  546  	reg_dp_hw_version = dp_read_ahb(catalog, REG_DP_HW_VERSION);
5febc52d5716d6 Paloma Arellano  2024-01-25  547  	*major = DP_HW_VERSION_MAJOR(reg_dp_hw_version);
5febc52d5716d6 Paloma Arellano  2024-01-25  548  	*minor = DP_HW_VERSION_MINOR(reg_dp_hw_version);
757a2f36ab095f Kuogee Hsieh     2022-02-25  549  }
757a2f36ab095f Kuogee Hsieh     2022-02-25  550  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Paloma Arellano <quic_parellan@quicinc.com>,
	freedreno@lists.freedesktop.org
Cc: neil.armstrong@linaro.org, quic_jesszhan@quicinc.com,
	linux-arm-msm@vger.kernel.org,
	Paloma Arellano <quic_parellan@quicinc.com>,
	quic_abhinavk@quicinc.com, dri-devel@lists.freedesktop.org,
	swboyd@chromium.org, seanpaul@chromium.org,
	oe-kbuild-all@lists.linux.dev, dmitry.baryshkov@linaro.org,
	marijn.suijten@somainline.org, quic_khsieh@quicinc.com
Subject: Re: [PATCH 10/17] drm/msm/dp: modify dp_catalog_hw_revision to show major and minor val
Date: Sun, 28 Jan 2024 07:43:16 +0800	[thread overview]
Message-ID: <202401280752.AmrDI7Ox-lkp@intel.com> (raw)
In-Reply-To: <20240125193834.7065-11-quic_parellan@quicinc.com>

Hi Paloma,

kernel test robot noticed the following build warnings:

[auto build test WARNING on v6.8-rc1]
[also build test WARNING on linus/master next-20240125]
[cannot apply to drm-misc/drm-misc-next]
[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#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Paloma-Arellano/drm-msm-dpu-allow-dpu_encoder_helper_phys_setup_cdm-to-work-for-DP/20240126-034233
base:   v6.8-rc1
patch link:    https://lore.kernel.org/r/20240125193834.7065-11-quic_parellan%40quicinc.com
patch subject: [PATCH 10/17] drm/msm/dp: modify dp_catalog_hw_revision to show major and minor val
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20240128/202401280752.AmrDI7Ox-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240128/202401280752.AmrDI7Ox-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202401280752.AmrDI7Ox-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/gpu/drm/msm/dp/dp_catalog.c:541: warning: Function parameter or struct member 'major' not described in 'dp_catalog_hw_revision'
>> drivers/gpu/drm/msm/dp/dp_catalog.c:541: warning: Function parameter or struct member 'minor' not described in 'dp_catalog_hw_revision'


vim +541 drivers/gpu/drm/msm/dp/dp_catalog.c

c943b4948b5848 Chandan Uddaraju 2020-08-27  531  
757a2f36ab095f Kuogee Hsieh     2022-02-25  532  /**
757a2f36ab095f Kuogee Hsieh     2022-02-25  533   * dp_catalog_hw_revision() - retrieve DP hw revision
757a2f36ab095f Kuogee Hsieh     2022-02-25  534   *
757a2f36ab095f Kuogee Hsieh     2022-02-25  535   * @dp_catalog: DP catalog structure
757a2f36ab095f Kuogee Hsieh     2022-02-25  536   *
5febc52d5716d6 Paloma Arellano  2024-01-25  537   * Return: void
757a2f36ab095f Kuogee Hsieh     2022-02-25  538   *
757a2f36ab095f Kuogee Hsieh     2022-02-25  539   */
5febc52d5716d6 Paloma Arellano  2024-01-25  540  void dp_catalog_hw_revision(const struct dp_catalog *dp_catalog, u16 *major, u16 *minor)
757a2f36ab095f Kuogee Hsieh     2022-02-25 @541  {
757a2f36ab095f Kuogee Hsieh     2022-02-25  542  	const struct dp_catalog_private *catalog = container_of(dp_catalog,
757a2f36ab095f Kuogee Hsieh     2022-02-25  543  				struct dp_catalog_private, dp_catalog);
5febc52d5716d6 Paloma Arellano  2024-01-25  544  	u32 reg_dp_hw_version;
757a2f36ab095f Kuogee Hsieh     2022-02-25  545  
5febc52d5716d6 Paloma Arellano  2024-01-25  546  	reg_dp_hw_version = dp_read_ahb(catalog, REG_DP_HW_VERSION);
5febc52d5716d6 Paloma Arellano  2024-01-25  547  	*major = DP_HW_VERSION_MAJOR(reg_dp_hw_version);
5febc52d5716d6 Paloma Arellano  2024-01-25  548  	*minor = DP_HW_VERSION_MINOR(reg_dp_hw_version);
757a2f36ab095f Kuogee Hsieh     2022-02-25  549  }
757a2f36ab095f Kuogee Hsieh     2022-02-25  550  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  parent reply	other threads:[~2024-01-27 23:44 UTC|newest]

Thread overview: 186+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-25 19:38 [PATCH 00/17] Add support for CDM over DP Paloma Arellano
2024-01-25 19:38 ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 01/17] drm/msm/dpu: allow dpu_encoder_helper_phys_setup_cdm to work for DP Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:14   ` Dmitry Baryshkov
2024-01-25 21:14     ` Dmitry Baryshkov
2024-01-27  0:39     ` Paloma Arellano
2024-01-27  0:39       ` Paloma Arellano
2024-01-29  3:06       ` Abhinav Kumar
2024-01-29  3:06         ` Abhinav Kumar
2024-01-29  3:23         ` Dmitry Baryshkov
2024-01-29  3:23           ` Dmitry Baryshkov
2024-01-29  4:00           ` Abhinav Kumar
2024-01-29  4:00             ` Abhinav Kumar
2024-01-29  4:12             ` Dmitry Baryshkov
2024-01-29  4:12               ` Dmitry Baryshkov
2024-01-29  4:33               ` Abhinav Kumar
2024-01-29  4:33                 ` Abhinav Kumar
2024-01-29  5:12                 ` Dmitry Baryshkov
2024-01-29  5:12                   ` Dmitry Baryshkov
2024-01-29 23:06                   ` Paloma Arellano
2024-01-29 23:06                     ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 02/17] drm/msm/dpu: move dpu_encoder_helper_phys_setup_cdm to dpu_encoder Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:16   ` Dmitry Baryshkov
2024-01-25 21:16     ` Dmitry Baryshkov
2024-01-27  0:43     ` Paloma Arellano
2024-01-27  0:43       ` Paloma Arellano
2024-01-27  2:26       ` Dmitry Baryshkov
2024-01-27  2:26         ` Dmitry Baryshkov
2024-01-25 19:38 ` [PATCH 03/17] drm/msm/dp: rename wide_bus_en to wide_bus_supported Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:17   ` Dmitry Baryshkov
2024-01-25 21:17     ` Dmitry Baryshkov
2024-01-25 19:38 ` [PATCH 04/17] drm/msm/dp: store mode YUV420 information to be used by rest of DP Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:20   ` Dmitry Baryshkov
2024-01-25 21:20     ` Dmitry Baryshkov
2024-01-27  0:48     ` Paloma Arellano
2024-01-27  0:48       ` Paloma Arellano
2024-01-27  2:29       ` Dmitry Baryshkov
2024-01-27  2:29         ` Dmitry Baryshkov
2024-01-25 19:38 ` [PATCH 05/17] drm/msm/dp: add an API to indicate if sink supports VSC SDP Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:23   ` Dmitry Baryshkov
2024-01-25 21:23     ` Dmitry Baryshkov
2024-01-27  0:58     ` Paloma Arellano
2024-01-27  0:58       ` Paloma Arellano
2024-01-27  2:40       ` Dmitry Baryshkov
2024-01-27  2:40         ` Dmitry Baryshkov
2024-01-27  3:57         ` Abhinav Kumar
2024-01-27  3:57           ` Abhinav Kumar
2024-01-27  5:31           ` Dmitry Baryshkov
2024-01-27  5:31             ` Dmitry Baryshkov
2024-01-29 23:20         ` Paloma Arellano
2024-01-29 23:20           ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 06/17] drm/msm/dpu: move widebus logic to its own API Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:25   ` Dmitry Baryshkov
2024-01-25 21:25     ` Dmitry Baryshkov
2024-01-25 19:38 ` [PATCH 07/17] drm/msm/dpu: disallow widebus en in INTF_CONFIG2 when DP is YUV420 Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:26   ` Dmitry Baryshkov
2024-01-25 21:26     ` Dmitry Baryshkov
2024-01-27  5:42     ` Dmitry Baryshkov
2024-01-27  5:42       ` Dmitry Baryshkov
2024-01-28  5:16     ` Paloma Arellano
2024-01-28  5:16       ` Paloma Arellano
2024-01-28  5:33       ` Dmitry Baryshkov
2024-01-28  5:33         ` Dmitry Baryshkov
2024-01-29 23:51         ` Abhinav Kumar
2024-01-29 23:51           ` Abhinav Kumar
2024-01-30  0:03           ` Dmitry Baryshkov
2024-01-30  0:03             ` Dmitry Baryshkov
2024-01-30  1:07             ` Abhinav Kumar
2024-01-30  1:07               ` Abhinav Kumar
2024-01-30  1:43               ` Dmitry Baryshkov
2024-01-30  1:43                 ` Dmitry Baryshkov
2024-01-30  4:10                 ` Abhinav Kumar
2024-01-30  4:10                   ` Abhinav Kumar
2024-01-30  5:28                   ` Dmitry Baryshkov
2024-01-30  5:28                     ` Dmitry Baryshkov
2024-01-30  6:03                     ` Abhinav Kumar
2024-01-30  6:03                       ` Abhinav Kumar
2024-01-25 19:38 ` [PATCH 08/17] drm/msm/dp: change YUV420 related programming for DP Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:29   ` Dmitry Baryshkov
2024-01-25 21:29     ` Dmitry Baryshkov
2024-01-28  5:18     ` Paloma Arellano
2024-01-28  5:18       ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 09/17] drm/msm/dp: move parity calculation to dp_catalog Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:32   ` Dmitry Baryshkov
2024-01-25 21:32     ` Dmitry Baryshkov
2024-01-28  5:18     ` Paloma Arellano
2024-01-28  5:18       ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 10/17] drm/msm/dp: modify dp_catalog_hw_revision to show major and minor val Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 22:07   ` Dmitry Baryshkov
2024-01-25 22:07     ` Dmitry Baryshkov
2024-01-28  5:30     ` Paloma Arellano
2024-01-28  5:30       ` Paloma Arellano
2024-01-28  5:35       ` Dmitry Baryshkov
2024-01-28  5:35         ` Dmitry Baryshkov
2024-01-27 23:43   ` kernel test robot [this message]
2024-01-27 23:43     ` kernel test robot
2024-01-28 14:02   ` kernel test robot
2024-01-28 14:02     ` kernel test robot
2024-01-25 19:38 ` [PATCH 11/17] drm/msm/dp: add VSC SDP support for YUV420 over DP Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:48   ` Dmitry Baryshkov
2024-01-25 21:48     ` Dmitry Baryshkov
2024-01-28  5:34     ` Paloma Arellano
2024-01-28  5:34       ` Paloma Arellano
2024-01-28  5:39       ` Dmitry Baryshkov
2024-01-28  5:39         ` Dmitry Baryshkov
2024-02-01  1:56         ` Abhinav Kumar
2024-02-01  1:56           ` Abhinav Kumar
2024-02-01  4:36           ` Dmitry Baryshkov
2024-02-01  4:36             ` Dmitry Baryshkov
2024-02-02  6:25             ` Abhinav Kumar
2024-01-25 19:38 ` [PATCH 12/17] drm/msm/dpu: add support of new peripheral flush mechanism Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:49   ` Dmitry Baryshkov
2024-01-25 21:49     ` Dmitry Baryshkov
2024-01-28  5:40     ` Paloma Arellano
2024-01-28  5:40       ` Paloma Arellano
2024-01-28  5:42       ` Dmitry Baryshkov
2024-01-28  5:42         ` Dmitry Baryshkov
2024-02-08 23:09         ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 13/17] drm/msm/dp: enable SDP and SDE periph flush update Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:50   ` Dmitry Baryshkov
2024-01-25 21:50     ` Dmitry Baryshkov
2024-01-28  5:42     ` Paloma Arellano
2024-01-28  5:42       ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 14/17] drm/msm/dpu: modify encoder programming for CDM over DP Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:57   ` Dmitry Baryshkov
2024-01-25 21:57     ` Dmitry Baryshkov
2024-01-28  5:48     ` Paloma Arellano
2024-01-28  5:48       ` Paloma Arellano
2024-01-28  5:55       ` Dmitry Baryshkov
2024-01-28  5:55         ` Dmitry Baryshkov
2024-01-29  2:58         ` Abhinav Kumar
2024-01-29  2:58           ` Abhinav Kumar
2024-01-29  3:42           ` Dmitry Baryshkov
2024-01-29  3:42             ` Dmitry Baryshkov
2024-01-29  5:03             ` Abhinav Kumar
2024-01-29  5:03               ` Abhinav Kumar
2024-01-29  6:12               ` Dmitry Baryshkov
2024-01-29  6:12                 ` Dmitry Baryshkov
2024-01-29  7:08                 ` Abhinav Kumar
2024-01-29  7:08                   ` Abhinav Kumar
2024-01-29 23:44                   ` Dmitry Baryshkov
2024-01-29 23:44                     ` Dmitry Baryshkov
2024-02-01  1:30                     ` Abhinav Kumar
2024-02-01  1:30                       ` Abhinav Kumar
2024-02-01  3:17                       ` Dmitry Baryshkov
2024-02-01  3:17                         ` Dmitry Baryshkov
2024-02-01 19:01                         ` Abhinav Kumar
2024-01-25 19:38 ` [PATCH 15/17] drm/msm/dpu: allow certain formats for CDM for DP Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 21:58   ` Dmitry Baryshkov
2024-01-25 21:58     ` Dmitry Baryshkov
2024-02-08 23:19     ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 16/17] drm/msm/dpu: reserve CDM blocks for DP if mode is YUV420 Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 22:01   ` Dmitry Baryshkov
2024-01-25 22:01     ` Dmitry Baryshkov
2024-01-28  5:48     ` Paloma Arellano
2024-01-28  5:48       ` Paloma Arellano
2024-01-25 19:38 ` [PATCH 17/17] drm/msm/dp: allow YUV420 mode for DP connector when VSC SDP supported Paloma Arellano
2024-01-25 19:38   ` Paloma Arellano
2024-01-25 22:05   ` Dmitry Baryshkov
2024-01-25 22:05     ` Dmitry Baryshkov
2024-01-29  3:17     ` Abhinav Kumar
2024-01-29  3:17       ` Abhinav Kumar
2024-01-29  3:52       ` Dmitry Baryshkov
2024-01-29  3:52         ` Dmitry Baryshkov
2024-01-29  4:30         ` Abhinav Kumar
2024-01-29  4:30           ` Abhinav Kumar
2024-01-29  5:05           ` Dmitry Baryshkov
2024-01-29  5:05             ` Dmitry Baryshkov
2024-01-29  5:36             ` Abhinav Kumar
2024-01-29  5:36               ` Abhinav Kumar

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=202401280752.AmrDI7Ox-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=freedreno@lists.freedesktop.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=marijn.suijten@somainline.org \
    --cc=neil.armstrong@linaro.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=quic_abhinavk@quicinc.com \
    --cc=quic_jesszhan@quicinc.com \
    --cc=quic_khsieh@quicinc.com \
    --cc=quic_parellan@quicinc.com \
    --cc=seanpaul@chromium.org \
    --cc=swboyd@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.