Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>,
	intel-gfx@lists.freedesktop.org
Cc: oe-kbuild-all@lists.linux.dev, jani.saarinen@intel.com,
	ville.syrjala@linux.intel.com
Subject: Re: [PATCH 4/5] drm/i915: Compute config and mode valid changes for ultrajoiner
Date: Tue, 21 May 2024 12:28:36 +0800	[thread overview]
Message-ID: <202405211228.a5iQwc2H-lkp@intel.com> (raw)
In-Reply-To: <20240520073839.23881-5-stanislav.lisovskiy@intel.com>

Hi Stanislav,

kernel test robot noticed the following build warnings:

[auto build test WARNING on drm-intel/for-linux-next]
[also build test WARNING on drm-tip/drm-tip linus/master next-20240520]
[cannot apply to drm-intel/for-linux-next-fixes v6.9]
[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/Stanislav-Lisovskiy/drm-i915-Rename-all-bigjoiner-to-joiner/20240520-194208
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
patch link:    https://lore.kernel.org/r/20240520073839.23881-5-stanislav.lisovskiy%40intel.com
patch subject: [PATCH 4/5] drm/i915: Compute config and mode valid changes for ultrajoiner
config: x86_64-randconfig-103-20240521 (https://download.01.org/0day-ci/archive/20240521/202405211228.a5iQwc2H-lkp@intel.com/config)
compiler: gcc-13 (Ubuntu 13.2.0-4ubuntu3) 13.2.0

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/202405211228.a5iQwc2H-lkp@intel.com/

cocci warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/i915/display/intel_vdsc.c:813:46-47: Unneeded semicolon

vim +813 drivers/gpu/drm/i915/display/intel_vdsc.c

   783	
   784	void intel_dsc_enable(const struct intel_crtc_state *crtc_state)
   785	{
   786		struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
   787		struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
   788		u32 dss_ctl1_val = 0;
   789		u32 dss_ctl2_val = 0;
   790		int vdsc_instances_per_pipe = intel_dsc_get_vdsc_per_pipe(crtc_state);
   791	
   792		if (!crtc_state->dsc.compression_enable)
   793			return;
   794	
   795		intel_dsc_pps_configure(crtc_state);
   796	
   797		dss_ctl2_val |= LEFT_BRANCH_VDSC_ENABLE;
   798		if (vdsc_instances_per_pipe > 1) {
   799			dss_ctl2_val |= RIGHT_BRANCH_VDSC_ENABLE;
   800			dss_ctl1_val |= JOINER_ENABLE;
   801		}
   802	
   803		if (crtc_state->joiner_pipes) {
   804			/*
   805			 * This bit doesn't seem to follow master/slave logic or
   806			 * any other logic, so lets just add helper function to
   807			 * at least hide this hassle..
   808			 */
   809			if (intel_crtc_ultrajoiner_enable_needed(crtc_state))
   810				dss_ctl1_val |= ULTRA_JOINER_ENABLE;
   811	
   812			if (intel_crtc_is_joiner_primary_master(crtc_state))
 > 813				dss_ctl1_val |= MASTER_ULTRA_JOINER_ENABLE;;
   814	
   815			dss_ctl1_val |= BIG_JOINER_ENABLE;
   816	
   817			if (intel_crtc_is_bigjoiner_master(crtc_state))
   818				dss_ctl1_val |= MASTER_BIG_JOINER_ENABLE;
   819		}
   820		intel_de_write(dev_priv, dss_ctl1_reg(crtc, crtc_state->cpu_transcoder), dss_ctl1_val);
   821		intel_de_write(dev_priv, dss_ctl2_reg(crtc, crtc_state->cpu_transcoder), dss_ctl2_val);
   822	}
   823	

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

  reply	other threads:[~2024-05-21  4:29 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-20  7:38 [PATCH 0/5] Ultrajoiner basic functionality series Stanislav Lisovskiy
2024-05-20  7:38 ` [PATCH 1/5] drm/i915: Rename all bigjoiner to joiner Stanislav Lisovskiy
2024-05-20 10:20   ` Jani Nikula
2024-05-20  7:38 ` [PATCH 2/5] drm/i915: Implement basic functions for ultrajoiner support Stanislav Lisovskiy
2024-05-20 18:24   ` Ville Syrjälä
2024-05-21  8:25     ` Lisovskiy, Stanislav
2024-05-21 18:09       ` Ville Syrjälä
2024-05-22  8:01         ` Lisovskiy, Stanislav
2024-05-22 11:40           ` Ville Syrjälä
2024-05-24  9:23             ` Lisovskiy, Stanislav
2024-05-20  7:38 ` [PATCH 3/5] drm/i915: Implement hw state readout for ultrajoiner Stanislav Lisovskiy
2024-05-20  7:38 ` [PATCH 4/5] drm/i915: Compute config and mode valid changes " Stanislav Lisovskiy
2024-05-21  4:28   ` kernel test robot [this message]
2024-05-20  7:38 ` [PATCH 5/5] drm/i915: Add new abstraction layer to handle pipe order for different joiners Stanislav Lisovskiy
2024-05-20 10:29 ` ✗ Fi.CI.CHECKPATCH: warning for Ultrajoiner basic functionality series Patchwork
2024-05-20 10:40 ` ✓ Fi.CI.BAT: success " Patchwork
2024-05-20 11:52 ` ✗ Fi.CI.IGT: failure " Patchwork

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=202405211228.a5iQwc2H-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.saarinen@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=stanislav.lisovskiy@intel.com \
    --cc=ville.syrjala@linux.intel.com \
    /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