[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/audio: Use BIOS provided value for RKL HDA link

2021-09-05 Thread Patchwork
== Series Details == Series: drm/i915/audio: Use BIOS provided value for RKL HDA link URL : https://patchwork.freedesktop.org/series/94368/ State : success == Summary == CI Bug Log - changes from CI_DRM_10551_full -> Patchwork_20964_full Su

Re: [Intel-gfx] [PATCH V4] drm/i915/gen11: Disable cursor clock gating in HDR mode

2021-09-05 Thread Surendrakumar Upadhyay, TejaskumarX
Hi Ville/Jose, I hope you both discussed as in next version I will incorporate all changes as per Ville's final suggestion. Please let me know if you guys think otherwise. Thanks, Tejas > -Original Message- > From: Surendrakumar Upadhyay, TejaskumarX > Sent: 02 September 2021 18:37 > To

[Intel-gfx] ✗ Fi.CI.IGT: failure for refactor display structs a little bit

2021-09-05 Thread Patchwork
== Series Details == Series: refactor display structs a little bit URL : https://patchwork.freedesktop.org/series/94367/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10551_full -> Patchwork_20963_full Summary --- **

[Intel-gfx] intel display struct refactor

2021-09-05 Thread Dave Airlie
I posted an intro set of patches to intel-gfx earlier, but I got a bit OCD and kept going here. https://cgit.freedesktop.org/~airlied/linux/log/?h=i915-display-struct-refactor Mainly looking to see if this is interesting enough refactor to get it landed, I realise it would be quite disruptive. I'

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/audio: Use BIOS provided value for RKL HDA link

2021-09-05 Thread Patchwork
== Series Details == Series: drm/i915/audio: Use BIOS provided value for RKL HDA link URL : https://patchwork.freedesktop.org/series/94368/ State : success == Summary == CI Bug Log - changes from CI_DRM_10551 -> Patchwork_20964 Summary

Re: [Intel-gfx] [PATCH 5/8] drm/i915/fbc: Rework cfb stride/size calculations

2021-09-05 Thread Shankar, Uma
> -Original Message- > From: Intel-gfx On Behalf Of Ville > Syrjala > Sent: Saturday, July 3, 2021 2:16 AM > To: intel-gfx@lists.freedesktop.org > Subject: [Intel-gfx] [PATCH 5/8] drm/i915/fbc: Rework cfb stride/size > calculations > > From: Ville Syrjälä > > The code to calculate t

[Intel-gfx] ✓ Fi.CI.BAT: success for refactor display structs a little bit

2021-09-05 Thread Patchwork
== Series Details == Series: refactor display structs a little bit URL : https://patchwork.freedesktop.org/series/94367/ State : success == Summary == CI Bug Log - changes from CI_DRM_10551 -> Patchwork_20963 Summary --- **SUCCESS**

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for refactor display structs a little bit

2021-09-05 Thread Patchwork
== Series Details == Series: refactor display structs a little bit URL : https://patchwork.freedesktop.org/series/94367/ State : warning == Summary == $ dim checkpatch origin/drm-tip f4fbd6000df1 drm/i915: move display funcs into a display struct. 76dc91485857 drm/i915/display: move cdclk info

[Intel-gfx] [PATCH] drm/i915/audio: Use BIOS provided value for RKL HDA link

2021-09-05 Thread Kai-Heng Feng
Commit 989634fb49ad ("drm/i915/audio: set HDA link parameters in driver") makes HDMI audio on Lenovo P350 disappear. So in addition to TGL, extend the logic to RKL to use BIOS provided value to fix the regression. Fixes: 989634fb49ad ("drm/i915/audio: set HDA link parameters in driver") Signed-of

[Intel-gfx] [PATCH 09/10] drm/i915/display: move drrs into display struct

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- .../drm/i915/display/intel_display_debugfs.c | 2 +- drivers/gpu/drm/i915/display/intel_drrs.c | 32 +-- drivers/gpu/drm/i915/display/intel_psr.c | 2 +- drivers/gpu/drm/i915/i915_drv.h | 2 +- 4 files c

[Intel-gfx] [PATCH 07/10] drm/i915/display: move pps_mmio_base to display struct

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/intel_pps.c | 6 +++--- drivers/gpu/drm/i915/i915_drv.h | 4 ++-- drivers/gpu/drm/i915/i915_reg.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/i

[Intel-gfx] [PATCH 10/10] drm/i915/display: move fbc into display struct

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/i9xx_plane.c | 2 +- .../drm/i915/display/intel_display_debugfs.c | 10 +- drivers/gpu/drm/i915/display/intel_fbc.c | 98 +-- .../drm/i915/display/skl_universal_plane.c| 2 +- drivers/g

[Intel-gfx] [PATCH 08/10] drm/i915/drrs: just use some local vars to simplify drrs code

2021-09-05 Thread Dave Airlie
From: Dave Airlie this makes it easier to move this struct later. Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/intel_drrs.c | 90 --- 1 file changed, 49 insertions(+), 41 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_drrs.c b/drivers/gpu/drm/

[Intel-gfx] [PATCH 05/10] drm/i915/display: move intel_dmc into display struct

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- .../drm/i915/display/intel_display_debugfs.c | 2 +- .../drm/i915/display/intel_display_power.c| 38 +++ drivers/gpu/drm/i915/display/intel_dmc.c | 46 +-- drivers/gpu/drm/i915/display/intel_psr.c | 2

[Intel-gfx] [PATCH 06/10] drm/i915/display: move mipi_mmio_base to display struct

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/vlv_dsi.c | 4 +- drivers/gpu/drm/i915/i915_drv.h| 6 +- drivers/gpu/drm/i915/i915_reg.h| 186 - 3 files changed, 98 insertions(+), 98 deletions(-) diff --git a/drivers/gpu

[Intel-gfx] [PATCH 03/10] drm/i915: move more pll/clocks into display struct.

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/intel_cdclk.c | 24 ++-- drivers/gpu/drm/i915/display/intel_crt.c | 2 +- drivers/gpu/drm/i915/display/intel_display.c | 14 ++-- drivers/gpu/drm/i915/display/intel_dp.c | 4 ++--

[Intel-gfx] [PATCH 04/10] drm/i915/display: move gmbus into display struct

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/intel_cdclk.c | 6 +-- drivers/gpu/drm/i915/display/intel_dp_aux.c | 2 +- drivers/gpu/drm/i915/display/intel_gmbus.c | 42 ++--- drivers/gpu/drm/i915/i915_drv.h | 27 +++-- dri

[Intel-gfx] [PATCH 02/10] drm/i915/display: move cdclk info into display

2021-09-05 Thread Dave Airlie
From: Dave Airlie Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/intel_audio.c| 4 +- .../gpu/drm/i915/display/intel_backlight.c| 4 +- drivers/gpu/drm/i915/display/intel_cdclk.c| 196 +- drivers/gpu/drm/i915/display/intel_cdclk.h| 4 +- driver

[Intel-gfx] [PATCH 01/10] drm/i915: move display funcs into a display struct.

2021-09-05 Thread Dave Airlie
From: Dave Airlie This is the first step in an idea to refactor the display code into a bit more of a corner. Signed-off-by: Dave Airlie --- drivers/gpu/drm/i915/display/intel_audio.c| 24 +-- drivers/gpu/drm/i915/display/intel_cdclk.c| 148 +- drivers/gpu/drm/i915/dis

[Intel-gfx] [RFC PATCH 00/10] refactor display structs a little bit

2021-09-05 Thread Dave Airlie
I had reason to look at i915 display again recently, and how tied to the core driver the whole thing is. I think it at least could benefit from starting to move display specific things out into a separate display structure. This could later be made optional or at least separated out in better ways

[Intel-gfx] ✓ Fi.CI.IGT: success for Fix in max source calculation for dp/edp (rev3)

2021-09-05 Thread Patchwork
== Series Details == Series: Fix in max source calculation for dp/edp (rev3) URL : https://patchwork.freedesktop.org/series/93622/ State : success == Summary == CI Bug Log - changes from CI_DRM_10544_full -> Patchwork_20939_full Summary ---

[Intel-gfx] ✓ Fi.CI.IGT: success for GPD Win Max display fixes (rev5)

2021-09-05 Thread Patchwork
== Series Details == Series: GPD Win Max display fixes (rev5) URL : https://patchwork.freedesktop.org/series/90483/ State : success == Summary == CI Bug Log - changes from CI_DRM_10551_full -> Patchwork_20962_full Summary --- **SUCCE

[Intel-gfx] ✓ Fi.CI.BAT: success for GPD Win Max display fixes (rev5)

2021-09-05 Thread Patchwork
== Series Details == Series: GPD Win Max display fixes (rev5) URL : https://patchwork.freedesktop.org/series/90483/ State : success == Summary == CI Bug Log - changes from CI_DRM_10551 -> Patchwork_20962 Summary --- **SUCCESS** No

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for GPD Win Max display fixes (rev5)

2021-09-05 Thread Patchwork
== Series Details == Series: GPD Win Max display fixes (rev5) URL : https://patchwork.freedesktop.org/series/90483/ State : warning == Summary == $ dim sparse --fast origin/drm-tip Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. - +drivers/gpu/drm/i915/gem/i915_

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for GPD Win Max display fixes (rev5)

2021-09-05 Thread Patchwork
== Series Details == Series: GPD Win Max display fixes (rev5) URL : https://patchwork.freedesktop.org/series/90483/ State : warning == Summary == $ dim checkpatch origin/drm-tip 539314301edd drm/i915/opregion: add support for mailbox #5 EDID -:20: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapp

[Intel-gfx] [PATCH v4 2/2] drm: Add orientation quirk for GPD Win Max

2021-09-05 Thread Anisse Astier
Panel is 800x1280, but mounted on a laptop form factor, sideways. Signed-off-by: Anisse Astier Reviewed-by: Hans de Goede --- drivers/gpu/drm/drm_panel_orientation_quirks.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/dr

[Intel-gfx] [PATCH v4 1/2] drm/i915/opregion: add support for mailbox #5 EDID

2021-09-05 Thread Anisse Astier
The ACPI OpRegion Mailbox #5 ASLE extension may contain an EDID to be used for the embedded display. Add support for using it via by adding the EDID to the list of available modes on the connector, and use it for eDP when available. If a panel's EDID is broken, there may be an override EDID set in

[Intel-gfx] [PATCH v4 0/2] GPD Win Max display fixes

2021-09-05 Thread Anisse Astier
This patch series is for making the GPD Win Max display usable with Linux. The GPD Win Max is a small laptop, and its eDP panel does not send an EDID over DPCD; the EDID is instead available in the intel opregion, in mailbox #5 [1] The second patch is just to fix the orientation of the panel. Ch

Re: [Intel-gfx] [PATCH v7 6/8] drm_print: instrument drm_debug_enabled

2021-09-05 Thread jim . cromie
On Tue, Aug 31, 2021 at 2:21 PM Jim Cromie wrote: > > Duplicate drm_debug_enabled() code into both "basic" and "dyndbg" > ifdef branches. Then add a pr_debug("todo: ...") into the "dyndbg" > branch. > > Then convert the "dyndbg" branch's code to a macro, so that its > pr_debug() get its callsite

[Intel-gfx] [drm-intel:drm-intel-gt-next 1/1] drivers/gpu/drm/i915/i915_query.c:439:2: warning: comparison of integers of different signs: 'int' and 'unsigned int'

2021-09-05 Thread kernel test robot
tree: git://anongit.freedesktop.org/drm-intel drm-intel-gt-next head: d5ef86b38e4c2a65d5c1d64d8d0f3fcf58aa0884 commit: d5ef86b38e4c2a65d5c1d64d8d0f3fcf58aa0884 [1/1] drm/i915: Add pci ids and uapi for DG1 config: i386-randconfig-r002-20210903 (attached as .config) compiler: clang version 14.0.

Re: [Intel-gfx] [PATCH 5/5] drm/i915/adlp: Add support for remapping CCS FBs

2021-09-05 Thread Imre Deak
On Sat, Sep 04, 2021 at 02:54:31PM +0300, Juha-Pekka Heikkila wrote: > Hi Imre, > > other than that one question for this patch and one missing static > declaration what kernel test bot said about gen12_ccs_aux_stride(..) changes > look ok to me. > > with those checked this series is > > Reviewe