Re: [Intel-gfx] [PATCH 03/11] drm/i915/mst: Read out FEC state

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:38 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > The MST codepath is missing FEC readout. Add it. > > Signed-off-by: Ville Syrjälä > --- > drivers/gpu/drm/i915/display/intel_ddi.c | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/drivers/gpu/drm/i9

Re: [Intel-gfx] [PATCH 1/2] drm/i915/pmu: Turn off the timer to sample frequencies when GT is parked

2023-05-25 Thread Tvrtko Ursulin
On 24/05/2023 22:46, Dixit, Ashutosh wrote: On Wed, 24 May 2023 02:12:31 -0700, Andrzej Hajda wrote: Hi Andrzej, On 23.05.2023 17:19, Ashutosh Dixit wrote: pmu_needs_timer() keeps the timer running even when GT is parked, ostensibly to sample requested/actual frequencies. However frequen

Re: [Intel-gfx] [PATCH 04/11] drm/i915: Fix FEC pipe A vs. DDI A mixup

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:38 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > On pre-TGL FEC is a port level feature, not a transcoder > level features, and it's DDI A which doesn't have it, not > trancodere A. A couple of typos: "level feature" and "transcoder A". > Check for the correct

Re: [Intel-gfx] [PATCH 05/11] drm/i915: Check lane count when determining FEC support

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:39 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > ICL doesn't support FEC with a x1 DP link. Make sure > we don't try to enable FEC in such cases. > > Signed-off-by: Ville Syrjälä > --- > drivers/gpu/drm/i915/display/intel_dp.c | 23 --- > 1

[Intel-gfx] [PATCH v3 0/5] Expose RPS thresholds in sysfs

2023-05-25 Thread Tvrtko Ursulin
From: Tvrtko Ursulin >From patch 4: User feedback indicates significant performance gains are possible in specific games with non default RPS up/down thresholds. Expose these tunables via sysfs which will allow users to achieve best performance when running games and best power

[Intel-gfx] [PATCH 1/5] drm/i915: Move setting of rps thresholds to init

2023-05-25 Thread Tvrtko Ursulin
From: Tvrtko Ursulin Since 36d516be867c ("drm/i915/gt: Switch to manual evaluation of RPS") thresholds are invariant so lets move their setting to init time. Signed-off-by: Tvrtko Ursulin Cc: Rodrigo Vivi Reviewed-by: Rodrigo Vivi Reviewed-by: Andi Shyti --- drivers/gpu/drm/i915/gt/intel_rp

[Intel-gfx] [PATCH 5/5] drm/i915: Include RPS threshold in error state

2023-05-25 Thread Tvrtko Ursulin
From: Tvrtko Ursulin Now that we allow them to be modified, lets include them in the error state so it is visible when they have been modified in GPU hang triage. Signed-off-by: Tvrtko Ursulin Cc: Rodrigo Vivi Cc: Andi Shyti --- drivers/gpu/drm/i915/i915_gpu_error.c | 5 + drivers/gpu/dr

[Intel-gfx] [PATCH 3/5] drm/i915: Add helpers for managing rps thresholds

2023-05-25 Thread Tvrtko Ursulin
From: Tvrtko Ursulin In preparation for exposing via sysfs add helpers for managing rps thresholds. v2: * Force sw and hw re-programming on threshold change. Signed-off-by: Tvrtko Ursulin Cc: Rodrigo Vivi Reviewed-by: Rodrigo Vivi Reviewed-by: Andi Shyti --- drivers/gpu/drm/i915/gt/intel_

[Intel-gfx] [PATCH 2/5] drm/i915: Record default rps threshold values

2023-05-25 Thread Tvrtko Ursulin
From: Tvrtko Ursulin Record the default values as preparation for exposing the sysfs controls. Signed-off-by: Tvrtko Ursulin Cc: Rodrigo Vivi Reviewed-by: Rodrigo Vivi Reviewed-by: Andi Shyti --- drivers/gpu/drm/i915/gt/intel_gt_types.h | 3 +++ drivers/gpu/drm/i915/gt/intel_rps.c | 2

[Intel-gfx] [PATCH 4/5] drm/i915: Expose RPS thresholds in sysfs

2023-05-25 Thread Tvrtko Ursulin
From: Tvrtko Ursulin User feedback indicates significant performance gains are possible in specific games with non default RPS up/down thresholds. Expose these tunables via sysfs which will allow users to achieve best performance when running games and best power efficiency elsewhere. Note this

Re: [Intel-gfx] [PATCH v12 0/1] drm/i915: Allow user to set cache at BO creation

2023-05-25 Thread Tvrtko Ursulin
On 24/05/2023 21:02, fei.y...@intel.com wrote: From: Fei Yang This series introduce a new extension for GEM_CREATE, 1. end support for set caching ioctl [PATCH 1/2] 2. add set_pat extension for gem_create [PATCH 2/2] v2: drop one patch that was merged separately commit 341ad0e8e254 ("dr

Re: [Intel-gfx] [PATCH 06/11] drm/i915: Fix FEC state dump

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:39 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > Stop dumping state while reading it out. We have a proper > place for that stuff. > > Signed-off-by: Ville Syrjälä > --- > .../gpu/drm/i915/display/intel_crtc_state_dump.c| 2 ++ > drivers/gpu/drm/i915/displ

Re: [Intel-gfx] [PATCH 07/11] drm/i915: Split some long lines

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:39 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > Split some overly long lines. > > Signed-off-by: Ville Syrjälä > --- > drivers/gpu/drm/i915/display/intel_fdi.c | 9 +++-- > 1 file changed, 7 insertions(+), 2 deletions(-) It doesn't matter much, but it wou

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Expose RPS thresholds in sysfs (rev3)

2023-05-25 Thread Patchwork
== Series Details == Series: Expose RPS thresholds in sysfs (rev3) URL : https://patchwork.freedesktop.org/series/117054/ State : warning == Summary == Error: dim checkpatch failed 20c0f30d677d drm/i915: Move setting of rps thresholds to init -:6: ERROR:GIT_COMMIT_ID: Please use git commit des

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for Expose RPS thresholds in sysfs (rev3)

2023-05-25 Thread Patchwork
== Series Details == Series: Expose RPS thresholds in sysfs (rev3) URL : https://patchwork.freedesktop.org/series/117054/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately.

Re: [Intel-gfx] [RESEND PATCH] drm/i915: constify pointers to hwmon_channel_info

2023-05-25 Thread Jani Nikula
On Thu, 11 May 2023, Krzysztof Kozlowski wrote: > Statically allocated array of pointers to hwmon_channel_info can be made > const for safety. Btw if you want to further make things const, the compound literals defined by HWMON_CHANNEL_INFO() still end up mutable, even if they're only referenced

Re: [Intel-gfx] [PATCH 3/7] drm/i915: Assert that device info bitmasks have enough bits

2023-05-25 Thread Jani Nikula
On Wed, 24 May 2023, Lucas De Marchi wrote: > On Thu, May 11, 2023 at 07:55:30PM +0300, Ville Syrjälä wrote: >>From: Ville Syrjälä >> >>Sprinkle in some BUILD_BUG_ON()s to make sure some of >>the bitmasks used in the device info have enough bits. >> >>Do we have a better place for this sort of st

[Intel-gfx] [PATCH] drm/i915/gsc: use system include style for drm headers

2023-05-25 Thread Jani Nikula
Use <> instead of "" for including headers from include/. Fixes: 8a9bf29546a1 ("drm/i915/gsc: add initial support for GSC proxy") Cc: Daniele Ceraolo Spurio Cc: Alan Previn Signed-off-by: Jani Nikula --- drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [Intel-gfx] [PATCH v2 08/11] drm/i915: Introduce crtc_state->enhanced_framing

2023-05-25 Thread Luca Coelho
On Wed, 2023-05-03 at 14:36 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > Track DP enhanced framing properly in the crtc state instead > of relying just on the cached DPCD everywhere, and hook it > up into the state check and dump. > > v2: Actually set enhanced_framing in .compute_config

Re: [Intel-gfx] [PATCH 09/11] drm/i915: Stop spamming the logs with PLL state

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:39 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > encoder->get_config() is not the place where the state > should be dumped. Get rid of the spam. > > Signed-off-by: Ville Syrjälä > --- > drivers/gpu/drm/i915/display/intel_ddi.c | 2 -- > 1 file changed, 2 deleti

Re: [Intel-gfx] [PATCH 10/11] drm/i915: Drop some redundant eDP checks

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:39 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > There's no need to check for both eDP and fixed_mode when > deciding whether to do the pfit calculations or not. > > Signed-off-by: Ville Syrjälä > --- It would be nice to explain _why_ this is not needed. Is it

Re: [Intel-gfx] [PATCH 11/11] drm/i915: Reduce combo PHY log spam

2023-05-25 Thread Luca Coelho
On Tue, 2023-05-02 at 17:39 +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > We always check whether combo PHYs need to be re-initialized > after disabling DC states, which leads to log spam. Switch things > around so that we only log something when we actually have to > re-initialized a PHY

Re: [Intel-gfx] [PATCH] drm/i915/gsc: use system include style for drm headers

2023-05-25 Thread Luca Coelho
On Thu, 2023-05-25 at 12:49 +0300, Jani Nikula wrote: > Use <> instead of "" for including headers from include/. > > Fixes: 8a9bf29546a1 ("drm/i915/gsc: add initial support for GSC proxy") > Cc: Daniele Ceraolo Spurio > Cc: Alan Previn > Signed-off-by: Jani Nikula > --- > drivers/gpu/drm/i915

[Intel-gfx] [PATCH] drm/i915: Fix the disabling sequence for Bigjoiner

2023-05-25 Thread Stanislav Lisovskiy
According to BSpec 49190, when enabling crtcs, we first setup slave and then master crtc, however for disabling it should go vice versa, i.e first master, then slave, however current code does disabling in a same way as enabling. Fix this, by skipping non-master crtcs, instead of non-slaves. Signe

[Intel-gfx] Extension detection by enumeration vs attempt to use extension (Was: Re: [PATCH v10 2/2] drm/i915: Allow user to set cache at BO creation)

2023-05-25 Thread Joonas Lahtinen
Quoting Jordan Justen (2023-05-21 07:30:52) > On 2023-05-18 22:11:03, wrote: > > From: Fei Yang > > > > To comply with the design that buffer objects shall have immutable > > cache setting through out their life cycle, {set, get}_caching ioctl's > > are no longer supported from MTL onward. With

[Intel-gfx] [PATCH v2 2/2] drm/i915/dsc: Add rc_range_parameter calculation for YCBCR420

2023-05-25 Thread Suraj Kandpal
Some rc_range_parameter calculations were missed for YCBCR420, add them to calculate_rc_param() --v2 -take into account the new formula to get bpp_i Cc: Vandita Kulkarni Cc: Ankit Nautiyal Cc: Uma Shankar Signed-off-by: Suraj Kandpal --- drivers/gpu/drm/i915/display/intel_vdsc.c | 142 ++

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/fbdev: Remove DRM's helpers for fbdev I/O (rev4)

2023-05-25 Thread Patchwork
== Series Details == Series: drm/fbdev: Remove DRM's helpers for fbdev I/O (rev4) URL : https://patchwork.freedesktop.org/series/117671/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_117671v4_full Su

[Intel-gfx] [PULL] drm-intel-fixes

2023-05-25 Thread Joonas Lahtinen
Hi Dave & Daniel, Here goes drm-intel-fixes for v4.6-rc4. Again just one fix, for pipejoiner config pipe disabling. Regards, Joonas *** drm-intel-fixes-2023-05-25: PIPEDMC disabling fix for bigjoiner config The following changes since commit 44c026a73be8038f03dbdeef028b642880cf1511: Linux

Re: [Intel-gfx] [RFC PATCH] drm/ttm: Allow the driver to resolve a WW transaction rollback

2023-05-25 Thread Thomas Hellström
On Fri, 2023-05-05 at 16:17 +0200, Thomas Hellström wrote: > Allow drivers to resolve a WW transaction rollback. This allows for > 1) Putting a lower-priority transaction to sleep allowing another to > succeed instead both fighting using trylocks. > 2) Letting the driver know whether a received -EN

Re: [Intel-gfx] [PULL] drm-intel-fixes

2023-05-25 Thread Jani Nikula
On Thu, 25 May 2023, Joonas Lahtinen wrote: > Hi Dave & Daniel, > > Here goes drm-intel-fixes for v4.6-rc4. You're seven years late for that one. ;D J. > > Again just one fix, for pipejoiner config pipe disabling. > > Regards, Joonas > > *** > > drm-intel-fixes-2023-05-25: > > PIPEDMC disabling

Re: [Intel-gfx] [PATCH v6 09/10] vfio/pci: Extend VFIO_DEVICE_GET_PCI_HOT_RESET_INFO for vfio device cdev

2023-05-25 Thread Liu, Yi L
> From: Alex Williamson > Sent: Thursday, May 25, 2023 3:56 AM > On Mon, 22 May 2023 04:57:50 -0700 > Yi Liu wrote: > > > + > > +/* > > + * Return devid for vfio_device if the device is owned by the input > > + * ictx. > > + * - valid devid > 0 for the device that are bound to the input > > + *

Re: [Intel-gfx] [RFC PATCH] drm/ttm: Allow the driver to resolve a WW transaction rollback

2023-05-25 Thread Christian König
Am 25.05.23 um 14:59 schrieb Thomas Hellström: On Fri, 2023-05-05 at 16:17 +0200, Thomas Hellström wrote: Allow drivers to resolve a WW transaction rollback. This allows for 1) Putting a lower-priority transaction to sleep allowing another to succeed instead both fighting using trylocks. 2) Lett

Re: [Intel-gfx] [PATCH v8 7/7] drm/i915/mtl: Add support for PM DEMAND

2023-05-25 Thread Gustavo Sousa
Hi, Vinod. Thanks for the new version. I decided to take one final look at the overall patch I have found some issues yet. Sorry I didn't catch them before! Please, see my comments inline. Quoting Vinod Govindapillai (2023-05-24 20:03:42-03:00) >From: Mika Kahola > >MTL introduces a new way to

Re: [Intel-gfx] [PATCH v8 7/7] drm/i915/mtl: Add support for PM DEMAND

2023-05-25 Thread Govindapillai, Vinod
Hi From: Sousa, Gustavo Sent: Thursday, 25 May 2023, 17:06 To: Govindapillai, Vinod ; intel-gfx@lists.freedesktop.org Cc: Syrjala, Ville ; Lisovskiy, Stanislav ; Kahola, Mika ; Saarinen, Jani Subject: Re: [PATCH v8 7/7] drm/i915/mtl: Add support for PM DEMA

Re: [Intel-gfx] [PATCH v8 7/7] drm/i915/mtl: Add support for PM DEMAND

2023-05-25 Thread Gustavo Sousa
Quoting Govindapillai, Vinod (2023-05-25 11:31:05-03:00) > Hi > > (...) > > Can only the phys change without impacting other parameters here? Not sure to be honest, but, if so, I think we would covering cases like that with the proposed change. IMO, if we depend on PHYs being active/non-active

[Intel-gfx] ✓ Fi.CI.IGT: success for DSC misc fixes (rev2)

2023-05-25 Thread Patchwork
== Series Details == Series: DSC misc fixes (rev2) URL : https://patchwork.freedesktop.org/series/117662/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_117662v2_full Summary --- **SUCCESS**

Re: [Intel-gfx] [PATCH v8 7/7] drm/i915/mtl: Add support for PM DEMAND

2023-05-25 Thread Govindapillai, Vinod
Hi I think so far with my trials port clock changes in sync with phys. As pmdemand atomic check is called many times, I don't think optimizing is bad. Br Vinod From: Sousa, Gustavo Sent: Thursday, 25 May 2023, 17:58 To: Govindapillai, Vinod ; intel-gfx@lists.f

Re: [Intel-gfx] [PATCH v12 0/1] drm/i915: Allow user to set cache at BO creation

2023-05-25 Thread Yang, Fei
Sounds weird to have a platform restriction on uAPI though. UMD not using this extension is not a problem, is it? From: Tvrtko Ursulin Sent: Thursday, May 25, 2023 1:33 AM To: Yang, Fei ; intel-gfx@lists.freedesktop.org Cc: dri-de...@lists.freedesktop.org ; Vivi, Rodrigo Subject: Re: [Inte

Re: [Intel-gfx] [PATCH v12 0/1] drm/i915: Allow user to set cache at BO creation

2023-05-25 Thread Yang, Fei
> On 24/05/2023 21:02, fei.y...@intel.com wrote: >> From: Fei Yang >> >> This series introduce a new extension for GEM_CREATE, >> 1. end support for set caching ioctl [PATCH 1/2] >> 2. add set_pat extension for gem_create [PATCH 2/2] >> >> v2: drop one patch that was merged separately >> comm

Re: [Intel-gfx] [PATCH v12 0/1] drm/i915: Allow user to set cache at BO creation

2023-05-25 Thread Yang, Fei
Sorry replied on top of wrong thread. From: Yang, Fei Sent: Thursday, May 25, 2023 8:12 AM To: Tvrtko Ursulin ; intel-gfx@lists.freedesktop.org Cc: dri-de...@lists.freedesktop.org; Vivi, Rodrigo Subject: Re: [Intel-gfx] [PATCH v12 0/1] drm/i915: Allow user to set cache at BO creation Sounds

Re: [Intel-gfx] [PATCH v11 20/23] vfio: Add VFIO_DEVICE_[AT|DE]TACH_IOMMUFD_PT

2023-05-25 Thread Alex Williamson
On Thu, 25 May 2023 03:03:54 + "Liu, Yi L" wrote: > > From: Alex Williamson > > Sent: Wednesday, May 24, 2023 11:32 PM > > > > On Wed, 24 May 2023 02:12:14 + > > "Liu, Yi L" wrote: > > > > > > From: Alex Williamson > > > > Sent: Tuesday, May 23, 2023 11:50 PM > > > > > > > > On Tue

[Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/mtl: Reset only one lane in case of MFD

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915/mtl: Reset only one lane in case of MFD URL : https://patchwork.freedesktop.org/series/118308/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_118308v1_full Summar

[Intel-gfx] [CI v12 0/1] drm/i915: Allow user to set cache at BO creation

2023-05-25 Thread Andi Shyti
From: Fei Yang [ Just resending this patch to in order to have the results from the igt's written for this patch ] This series introduce a new extension for GEM_CREATE, 1. end support for set caching ioctl [PATCH 1/2] 2. add set_pat extension for gem_create [PATCH 2/2] v2: drop one patch that w

[Intel-gfx] [CI v12 1/1] drm/i915: Allow user to set cache at BO creation

2023-05-25 Thread Andi Shyti
From: Fei Yang To comply with the design that buffer objects shall have immutable cache setting through out their life cycle, {set, get}_caching ioctl's are no longer supported from MTL onward. With that change caching policy can only be set at object creation time. The current code applies a def

Re: [Intel-gfx] [PATCH] drm/i915/gsc: use system include style for drm headers

2023-05-25 Thread Ceraolo Spurio, Daniele
On 5/25/2023 2:49 AM, Jani Nikula wrote: Use <> instead of "" for including headers from include/. Fixes: 8a9bf29546a1 ("drm/i915/gsc: add initial support for GSC proxy") Cc: Daniele Ceraolo Spurio Cc: Alan Previn Signed-off-by: Jani Nikula dumb mistake, thanks for fixing it Reviewed-by

[Intel-gfx] [linux-next:master] BUILD REGRESSION 6a3d37b4d885129561e1cef361216f00472f7d2e

2023-05-25 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master branch HEAD: 6a3d37b4d885129561e1cef361216f00472f7d2e Add linux-next specific files for 20230525 Error/Warning reports: https://lore.kernel.org/oe-kbuild-all/202305241902.uvhtmoxa-...@intel.com https

Re: [Intel-gfx] [PATCH 3/6] drm/i915/uc/gsc: extract release and security versions from the gsc binary

2023-05-25 Thread Ceraolo Spurio, Daniele
On 5/24/2023 10:14 PM, Teres Alexis, Alan Previn wrote: On Fri, 2023-05-05 at 09:04 -0700, Ceraolo Spurio, Daniele wrote: alan: snip +int intel_gsc_fw_get_binary_info(struct intel_uc_fw *gsc_fw, const void *data, size_t size) +{ alan:snip + /* +* The GSC binary starts wit

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: Allow user to set cache at BO creation (rev13)

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: Allow user to set cache at BO creation (rev13) URL : https://patchwork.freedesktop.org/series/116870/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately.

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw()

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: Fix clang -Wimplicit-fallthrough in intel_async_flip_check_hw() URL : https://patchwork.freedesktop.org/series/118311/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_118311v1_full ==

Re: [Intel-gfx] [PATCH i-g-t] tests/i915/gem_ctx_persistence: Skip some subtests

2023-05-25 Thread Kamil Konieczny
Hi Vinay, On 2023-05-24 at 12:19:06 -0700, Vinay Belgaumkar wrote: > Hang and heartbeat subtests are not supported with GuC submission > enabled. > > Signed-off-by: Vinay Belgaumkar > --- > tests/i915/gem_ctx_persistence.c | 32 +++- > 1 file changed, 19 insertions(+

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Allow user to set cache at BO creation (rev12)

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: Allow user to set cache at BO creation (rev12) URL : https://patchwork.freedesktop.org/series/116870/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_116870v12_full ===

[Intel-gfx] ✓ Fi.CI.BAT: success for Expose RPS thresholds in sysfs (rev3)

2023-05-25 Thread Patchwork
== Series Details == Series: Expose RPS thresholds in sysfs (rev3) URL : https://patchwork.freedesktop.org/series/117054/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187 -> Patchwork_117054v3 Summary --- **SUCCES

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gsc: use system include style for drm headers

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915/gsc: use system include style for drm headers URL : https://patchwork.freedesktop.org/series/118359/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187 -> Patchwork_118359v1 Summary --

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix the disabling sequence for Bigjoiner

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: Fix the disabling sequence for Bigjoiner URL : https://patchwork.freedesktop.org/series/118360/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187 -> Patchwork_118360v1 Summary --

[Intel-gfx] ✓ Fi.CI.BAT: success for Add rc_range_params for YUV420 (rev3)

2023-05-25 Thread Patchwork
== Series Details == Series: Add rc_range_params for YUV420 (rev3) URL : https://patchwork.freedesktop.org/series/118204/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187 -> Patchwork_118204v3 Summary --- **SUCCES

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Allow user to set cache at BO creation (rev13)

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: Allow user to set cache at BO creation (rev13) URL : https://patchwork.freedesktop.org/series/116870/ State : success == Summary == CI Bug Log - changes from CI_DRM_13188 -> Patchwork_116870v13 Summary

Re: [Intel-gfx] [PATCH v2 7/8] drm/i915/mtl/huc: Use the media gt for the HuC getparam

2023-05-25 Thread John Harrison
On 4/28/2023 11:58, Daniele Ceraolo Spurio wrote: On MTL, for obvious reasons, HuC is only available on the media tile. We already disable SW support for HuC on the root gt due to the absence of VCS engines, but we also need to update the getparam to point to the HuC struct in the media GT. Sign

Re: [Intel-gfx] [PATCH v2 8/8] drm/i915/huc: define HuC FW version for MTL

2023-05-25 Thread John Harrison
On 4/28/2023 11:58, Daniele Ceraolo Spurio wrote: Follow the same logic as DG2, so just a meu binary with no version number. Signed-off-by: Daniele Ceraolo Spurio Cc: Alan Previn Reviewed-by: John Harrison --- drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c | 1 + 1 file changed, 1 insertion(+

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: couple of cleanups (rev2)

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915/pmu: couple of cleanups (rev2) URL : https://patchwork.freedesktop.org/series/118225/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_118225v2_full Summary ---

Re: [Intel-gfx] [PATCH v2 2/7] drm/i915: Expose crtc CTM property on ilk/snb

2023-05-25 Thread Shankar, Uma
> -Original Message- > From: Intel-gfx On Behalf Of Ville > Syrjala > Sent: Thursday, April 13, 2023 10:19 PM > To: intel-gfx@lists.freedesktop.org > Cc: dri-de...@lists.freedesktop.org > Subject: [Intel-gfx] [PATCH v2 2/7] drm/i915: Expose crtc CTM property on > ilk/snb > > From: Vil

Re: [Intel-gfx] [PATCH v2 3/7] drm/i915: Fix CHV CGM CSC coefficient sign handling

2023-05-25 Thread Shankar, Uma
> -Original Message- > From: dri-devel On Behalf Of Ville > Syrjala > Sent: Thursday, April 13, 2023 10:19 PM > To: intel-gfx@lists.freedesktop.org > Cc: dri-de...@lists.freedesktop.org > Subject: [PATCH v2 3/7] drm/i915: Fix CHV CGM CSC coefficient sign handling > > From: Ville Syrjäl

Re: [Intel-gfx] [PATCH v2 4/7] drm/i915: Always enable CGM CSC on CHV

2023-05-25 Thread Shankar, Uma
> -Original Message- > From: Intel-gfx On Behalf Of Ville > Syrjala > Sent: Thursday, April 13, 2023 10:19 PM > To: intel-gfx@lists.freedesktop.org > Cc: dri-de...@lists.freedesktop.org > Subject: [Intel-gfx] [PATCH v2 4/7] drm/i915: Always enable CGM CSC on CHV > > From: Ville Syrjälä

[Intel-gfx] ✗ Fi.CI.IGT: failure for mtl: add support for pmdemand (rev8)

2023-05-25 Thread Patchwork
== Series Details == Series: mtl: add support for pmdemand (rev8) URL : https://patchwork.freedesktop.org/series/116949/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_116949v8_full Summary ---

[Intel-gfx] [PATCH] drm/i915: use localized __diag_ignore_all() instead of per file

2023-05-25 Thread Jani Nikula
Use localized __diag_push(), __diag_ignore_all() with rationale, and __diag_pop() for specific initializations instead of blanket disabling of -Woverride-init across several files. Signed-off-by: Jani Nikula --- drivers/gpu/drm/i915/Makefile | 5 - drivers/gpu/drm/i915/

Re: [Intel-gfx] [PATCH v2 5/7] drm/i915: Implement CTM property support for VLV

2023-05-25 Thread Shankar, Uma
> -Original Message- > From: Intel-gfx On Behalf Of Ville > Syrjala > Sent: Thursday, April 13, 2023 10:19 PM > To: intel-gfx@lists.freedesktop.org > Cc: dri-de...@lists.freedesktop.org > Subject: [Intel-gfx] [PATCH v2 5/7] drm/i915: Implement CTM property support > for > VLV > > From

Re: [Intel-gfx] [PATCH v2 6/7] drm/i915: No 10bit gamma on desktop gen3 parts

2023-05-25 Thread Shankar, Uma
> -Original Message- > From: Intel-gfx On Behalf Of Ville > Syrjala > Sent: Thursday, April 13, 2023 10:19 PM > To: intel-gfx@lists.freedesktop.org > Cc: dri-de...@lists.freedesktop.org > Subject: [Intel-gfx] [PATCH v2 6/7] drm/i915: No 10bit gamma on desktop gen3 > parts > > From: Vi

Re: [Intel-gfx] [PATCH v2 3/7] drm/i915: Fix CHV CGM CSC coefficient sign handling

2023-05-25 Thread Shankar, Uma
> -Original Message- > From: Shankar, Uma > Sent: Friday, May 26, 2023 2:25 AM > To: Ville Syrjala ; > intel-gfx@lists.freedesktop.org > Cc: dri-de...@lists.freedesktop.org > Subject: RE: [PATCH v2 3/7] drm/i915: Fix CHV CGM CSC coefficient sign > handling > > > > > -Original Mes

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: use localized __diag_ignore_all() instead of per file

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: use localized __diag_ignore_all() instead of per file URL : https://patchwork.freedesktop.org/series/118395/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. +drivers/gp

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: use localized __diag_ignore_all() instead of per file

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: use localized __diag_ignore_all() instead of per file URL : https://patchwork.freedesktop.org/series/118395/ State : success == Summary == CI Bug Log - changes from CI_DRM_13188 -> Patchwork_118395v1 S

Re: [Intel-gfx] [PATCH 3/6] drm/i915/uc/gsc: extract release and security versions from the gsc binary

2023-05-25 Thread Teres Alexis, Alan Previn
On Thu, 2023-05-25 at 09:56 -0700, Ceraolo Spurio, Daniele wrote: > On 5/24/2023 10:14 PM, Teres Alexis, Alan Previn wrote: > > On Fri, 2023-05-05 at 09:04 -0700, Ceraolo Spurio, Daniele wrote: alan:snip > > > --- a/drivers/gpu/drm/i915/gt/uc/intel_gsc_uc.h > > > +++ b/drivers/gpu/drm/i915/gt/uc/in

Re: [Intel-gfx] [PATCH 4/6] drm/i915/uc/gsc: query the GSC FW for its compatibility version

2023-05-25 Thread Teres Alexis, Alan Previn
On Fri, 2023-05-05 at 09:04 -0700, Ceraolo Spurio, Daniele wrote: > The compatibility version is queried via an MKHI command. Right now, the > only existing interface is 1.0 > This is basically the interface version for the GSC FW, so the plan is > to use it as the main tracked version, including f

Re: [Intel-gfx] [PATCH v10 00/10] drm/hdcp: Pull HDCP auth/exchange/check into helpers

2023-05-25 Thread Doug Anderson
Mark, On Mon, May 22, 2023 at 5:59 AM Rodrigo Vivi wrote: > > On Sat, May 20, 2023 at 02:07:51AM +0300, Dmitry Baryshkov wrote: > > On 20/05/2023 00:16, Rodrigo Vivi wrote: > > > On Fri, May 19, 2023 at 07:55:47PM +0300, Dmitry Baryshkov wrote: > > > > On 19/04/2023 18:43, Mark Yacoub wrote: > >

Re: [Intel-gfx] [PATCH 5/6] drm/i915/uc/gsc: define gsc fw

2023-05-25 Thread Teres Alexis, Alan Previn
Considering the only request i have below is touching up of existing comments (as far as this patch is concerned), and since the rest of the code looks good, here is my R-b - but i hope you can anwser my newbie question at the bottom: Reviewed-by: Alan Previn On Fri, 2023-05-05 at 09:04 -0700,

Re: [Intel-gfx] [PATCH] drm/i915: use localized __diag_ignore_all() instead of per file

2023-05-25 Thread Gustavo Sousa
Quoting Jani Nikula (2023-05-25 18:06:53-03:00) >Use localized __diag_push(), __diag_ignore_all() with rationale, and >__diag_pop() for specific initializations instead of blanket disabling >of -Woverride-init across several files. > >Signed-off-by: Jani Nikula Reviewed-by: Gustavo Sousa >--- >

[Intel-gfx] ✗ Fi.CI.IGT: failure for Expose RPS thresholds in sysfs (rev3)

2023-05-25 Thread Patchwork
== Series Details == Series: Expose RPS thresholds in sysfs (rev3) URL : https://patchwork.freedesktop.org/series/117054/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_117054v3_full Summary ---

Re: [Intel-gfx] [PATCH v6 09/10] vfio/pci: Extend VFIO_DEVICE_GET_PCI_HOT_RESET_INFO for vfio device cdev

2023-05-25 Thread Baolu Lu
On 5/25/23 9:02 PM, Liu, Yi L wrote: It's possible that requirement might be relaxed in the new DMA ownership model, but as it is right now, the code enforces that requirement and any new discussion about what makes hot-reset available should note both the ownership and dev_set requirement. Th

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/gsc: use system include style for drm headers

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915/gsc: use system include style for drm headers URL : https://patchwork.freedesktop.org/series/118359/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_118359v1_full

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Fix the disabling sequence for Bigjoiner

2023-05-25 Thread Patchwork
== Series Details == Series: drm/i915: Fix the disabling sequence for Bigjoiner URL : https://patchwork.freedesktop.org/series/118360/ State : success == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_118360v1_full Summ

Re: [Intel-gfx] [PATCH v3 00/22] drm/i915: Init DDI ports in VBT order

2023-05-25 Thread Kai-Heng Feng
On Wed, Feb 22, 2023 at 7:02 AM Ville Syrjala wrote: > > From: Ville Syrjälä > > I just wanted to init DDI ports in VBT child device order > without any up front assumptions about which conflicting > child device defition is valid. That is pretty much what > we need to do for the ADL laptops with

[Intel-gfx] ✗ Fi.CI.IGT: failure for Add rc_range_params for YUV420 (rev3)

2023-05-25 Thread Patchwork
== Series Details == Series: Add rc_range_params for YUV420 (rev3) URL : https://patchwork.freedesktop.org/series/118204/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13187_full -> Patchwork_118204v3_full Summary ---