Re: [Intel-gfx] [PATCH 1/3] drm/i915: Initialize eDP source rates after per-panel VBT parsing

2022-06-02 Thread Jani Nikula
On Wed, 01 Jun 2022, Ville Syrjala wrote: > From: Ville Syrjälä > > We'll need to know the VBT panel_type before we can determine the > maximum link rate for eDP. To that end move > intel_dp_set_source_rates() & co. to be called after the per-panel > VBT parsing has been done. > > I'm not immedia

Re: [Intel-gfx] [PATCH 2/3] drm/i915: Update eDP fast link training link rate parsing

2022-06-02 Thread Jani Nikula
On Wed, 01 Jun 2022, Ville Syrjala wrote: > From: Ville Syrjälä > > We're not parsing the 5.4 Gbps value for the old eDP fast link > training link rate, nor are we parsing the new fast link training > link rate field. Remedy both. > > Note that we're not even using this information for anything >

Re: [Intel-gfx] [PATCH 3/3] drm/i915: Parse max link rate from the eDP BDB block

2022-06-02 Thread Jani Nikula
On Wed, 01 Jun 2022, Ville Syrjala wrote: > From: Ville Syrjälä > > The eDP BDB block has gained yet another max link rate field. > Let's parse it and consult it during the source rate filtering. > > Signed-off-by: Ville Syrjälä > --- > drivers/gpu/drm/i915/display/intel_bios.c | 4 >

[Intel-gfx] [PATCH] drm/i915/regs: split out intel audio register definitions

2022-06-02 Thread Jani Nikula
Split out audio registers to a header of its own to reduce the size of i915_reg.h. TODO: Remove direct audio register access from intel_ddi.c. However, unification of audio get config is cumbersome due to the audio enable bit being in the DP or HDMI registers on older platforms. Signed-off-by: Ja

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/regs: split out intel audio register definitions

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/regs: split out intel audio register definitions URL : https://patchwork.freedesktop.org/series/104645/ State : warning == Summary == Error: dim checkpatch failed 977753637a20 drm/i915/regs: split out intel audio register definitions Traceback (most recent

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/regs: split out intel audio register definitions

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/regs: split out intel audio register definitions URL : https://patchwork.freedesktop.org/series/104645/ 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.BAT: success for drm/i915/regs: split out intel audio register definitions

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/regs: split out intel audio register definitions URL : https://patchwork.freedesktop.org/series/104645/ State : success == Summary == CI Bug Log - changes from CI_DRM_11719 -> Patchwork_104645v1 Summary

Re: [Intel-gfx] [PATCH v5 0/6] i915: SSEU handling updates

2022-06-02 Thread Balasubramani Vivekanandan
On 01.06.2022 08:07, Matt Roper wrote: > This series reworks i915's internal handling of slice/subslice/EU (SSEU) > > data to represent platforms like Xe_HP in a more natural manner and to >

[Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/regs: split out intel audio register definitions

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/regs: split out intel audio register definitions URL : https://patchwork.freedesktop.org/series/104645/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11719_full -> Patchwork_104645v1_full ===

[Intel-gfx] [PATCH] drm/i915/display/adlp: More updates to voltage swing table

2022-06-02 Thread Balasubramani Vivekanandan
Voltage swing table updated for eDP HBR3 Bspec: 49291 Signed-off-by: Balasubramani Vivekanandan --- drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c b/drivers/gpu/drm/i

[Intel-gfx] [RFC PATCH 0/5] Dual LFP/EDP enablement

2022-06-02 Thread Animesh Manna
This patch series read the separate entry for each LFP from VBT and populate the structure, which will be used for enablement of the respective panel. Port sync implementation is not part of this patch series. Will be taken up later as per requrement. This patch series do the initial enablement o

[Intel-gfx] [RFC PATCH 1/5] drm/i915/bios: calculate drrs mode using panel index for dual LFP

2022-06-02 Thread Animesh Manna
Dual LFP may have different panel and based on panel index respective 2 bits store the drrs mode info for each panel. So panel index is used for deriving drrs mode of the rspective panel. Signed-off-by: Animesh Manna --- drivers/gpu/drm/i915/display/icl_dsi.c| 2 +- drivers/gpu/drm/i915

[Intel-gfx] [RFC PATCH 2/5] drm/i915/display: Use panel index to parse panel timing for dual EDP

2022-06-02 Thread Animesh Manna
There will be separate entry for eack LFP in VBT. Panel index is used for deriving panel timing info of the respective panel. Signed-off-by: Animesh Manna --- drivers/gpu/drm/i915/display/intel_bios.c | 26 --- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/d

[Intel-gfx] [RFC PATCH 3/5] drm/i915/display: Use panel index to parse lfp backlight

2022-06-02 Thread Animesh Manna
There will be separate entry of backlight info for each LFP in VBT. Panel index is used for deriving backlight info of the respective panel. Signed-off-by: Animesh Manna --- drivers/gpu/drm/i915/display/intel_bios.c | 21 + 1 file changed, 9 insertions(+), 12 deletions(-) di

[Intel-gfx] [RFC PATCH 4/5] drm/i915/display: prepend connector name to the backlight

2022-06-02 Thread Animesh Manna
From: Arun R Murthy With the enablement of dual eDP, there will have to exist two entries of backlight sysfs file. In order to avoid sysfs file name duplication, the file names are prepended with the connector name. Signed-off-by: Arun R Murthy --- drivers/gpu/drm/i915/display/intel_backlight.

[Intel-gfx] [RFC PATCH 5/5] drm/i915/display/tgl+: Use PPS index from vbt

2022-06-02 Thread Animesh Manna
From: Nischal Varide Tigerlake and newer has two instances of PPS, to support up to two eDP panels. Signed-off-by: Nischal Varide Signed-off-by: Animesh Manna --- drivers/gpu/drm/i915/display/intel_pps.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i91

Re: [Intel-gfx] ✓ Fi.CI.IGT: success for i915: SSEU handling updates

2022-06-02 Thread Matt Roper
On Wed, Jun 01, 2022 at 08:52:08PM +, Patchwork wrote: > == Series Details == > > Series: i915: SSEU handling updates > URL : https://patchwork.freedesktop.org/series/104611/ > State : success > > == Summary == > > CI Bug Log - changes from CI_DRM_11717_full -> Patchwork_104611v1_full > ==

Re: [Intel-gfx] [PATCH] drm/i915: Add extra registers to GPU error dump

2022-06-02 Thread Souza, Jose
On Wed, 2022-06-01 at 14:06 -0700, Matt Roper wrote: > From: Stuart Summers > > Our internal teams have identified a few additional engine registers > that are worth inspecting in error state dumps during development & > debug. Let's capture and print them as part of our error dump. > > For sim

Re: [Intel-gfx] [RFC PATCH 1/5] drm/i915/bios: calculate drrs mode using panel index for dual LFP

2022-06-02 Thread Jani Nikula
On Thu, 02 Jun 2022, Animesh Manna wrote: > Dual LFP may have different panel and based on panel index > respective 2 bits store the drrs mode info for each panel. So panel > index is used for deriving drrs mode of the rspective panel. > > Signed-off-by: Animesh Manna > --- > drivers/gpu/drm/i91

Re: [Intel-gfx] [RFC PATCH 1/5] drm/i915/bios: calculate drrs mode using panel index for dual LFP

2022-06-02 Thread Jani Nikula
On Thu, 02 Jun 2022, Jani Nikula wrote: > On Thu, 02 Jun 2022, Animesh Manna wrote: >> Dual LFP may have different panel and based on panel index >> respective 2 bits store the drrs mode info for each panel. So panel >> index is used for deriving drrs mode of the rspective panel. >> >> Signed-off

Re: [Intel-gfx] [RFC PATCH 2/5] drm/i915/display: Use panel index to parse panel timing for dual EDP

2022-06-02 Thread Jani Nikula
On Thu, 02 Jun 2022, Animesh Manna wrote: > There will be separate entry for eack LFP in VBT. Panel index is > used for deriving panel timing info of the respective panel. This is completely unnecessary once you handle panel_type properly as explained in reply to the previous patch. BR, Jani.

Re: [Intel-gfx] [RFC PATCH 3/5] drm/i915/display: Use panel index to parse lfp backlight

2022-06-02 Thread Jani Nikula
On Thu, 02 Jun 2022, Animesh Manna wrote: > There will be separate entry of backlight info for each > LFP in VBT. Panel index is used for deriving backlight info > of the respective panel. Same here, unnecessary. panel_type *is* panel index. BR, Jani. > > Signed-off-by: Animesh Manna > --- >

Re: [Intel-gfx] [RFC PATCH 4/5] drm/i915/display: prepend connector name to the backlight

2022-06-02 Thread Jani Nikula
On Thu, 02 Jun 2022, Animesh Manna wrote: > From: Arun R Murthy > > With the enablement of dual eDP, there will have to exist two entries of > backlight sysfs file. In order to avoid sysfs file name duplication, the > file names are prepended with the connector name. Fixed by 20f85ef89d94 ("drm/

Re: [Intel-gfx] [RFC PATCH 5/5] drm/i915/display/tgl+: Use PPS index from vbt

2022-06-02 Thread Jani Nikula
On Thu, 02 Jun 2022, Animesh Manna wrote: > From: Nischal Varide > > Tigerlake and newer has two instances of PPS, to support up to two > eDP panels. > > Signed-off-by: Nischal Varide > Signed-off-by: Animesh Manna > --- > drivers/gpu/drm/i915/display/intel_pps.c | 3 ++- > 1 file changed, 2 i

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Dual LFP/EDP enablement

2022-06-02 Thread Patchwork
== Series Details == Series: Dual LFP/EDP enablement URL : https://patchwork.freedesktop.org/series/104663/ State : warning == Summary == Error: dim checkpatch failed 45c6598f2be3 drm/i915/bios: calculate drrs mode using panel index for dual LFP 0416548d3850 drm/i915/display: Use panel index t

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for Dual LFP/EDP enablement

2022-06-02 Thread Patchwork
== Series Details == Series: Dual LFP/EDP enablement URL : https://patchwork.freedesktop.org/series/104663/ 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] [PATCH] drm/i915/display/adlp: More updates to voltage swing table

2022-06-02 Thread Matt Atwood
On Thu, Jun 02, 2022 at 07:27:19PM +0530, Balasubramani Vivekanandan wrote: > Voltage swing table updated for eDP HBR3 > > Bspec: 49291 Pending CI results Reviewed-by: Matt Atwood > Signed-off-by: Balasubramani Vivekanandan > > --- > drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c | 6 +++--

Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Add extra registers to GPU error dump

2022-06-02 Thread Matt Roper
On Thu, Jun 02, 2022 at 01:28:40AM +, Patchwork wrote: > == Series Details == > > Series: drm/i915: Add extra registers to GPU error dump > URL : https://patchwork.freedesktop.org/series/104630/ > State : success > > == Summary == > > CI Bug Log - changes from CI_DRM_11717_full -> Patchwor

Re: [Intel-gfx] [RFC v3 1/3] drm/doc/rfc: VM_BIND feature design document

2022-06-02 Thread Matthew Brost
On Thu, Jun 02, 2022 at 08:42:13AM +0300, Lionel Landwerlin wrote: > On 02/06/2022 00:18, Matthew Brost wrote: > > On Wed, Jun 01, 2022 at 05:25:49PM +0300, Lionel Landwerlin wrote: > > > On 17/05/2022 21:32, Niranjana Vishwanathapura wrote: > > > > +VM_BIND/UNBIND ioctl will immediately start bind

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/display/adlp: More updates to voltage swing table

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/display/adlp: More updates to voltage swing table URL : https://patchwork.freedesktop.org/series/104661/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11719 -> Patchwork_104661v1 Summar

[Intel-gfx] ✓ Fi.CI.BAT: success for Dual LFP/EDP enablement

2022-06-02 Thread Patchwork
== Series Details == Series: Dual LFP/EDP enablement URL : https://patchwork.freedesktop.org/series/104663/ State : success == Summary == CI Bug Log - changes from CI_DRM_11720 -> Patchwork_104663v1 Summary --- **SUCCESS** No regr

Re: [Intel-gfx] [PATCH v1 01/13] drm/edid: add block count and data helper functions for drm_edid

2022-06-02 Thread Ville Syrjälä
On Tue, May 24, 2022 at 01:39:23PM +0300, Jani Nikula wrote: > Add drm_edid based block count and data access helper functions that > take the EDID allocated size into account. > > At the moment, the allocated size should always match the EDID size > indicated by the extension count, but this will

Re: [Intel-gfx] [PATCH v1 01/13] drm/edid: add block count and data helper functions for drm_edid

2022-06-02 Thread Jani Nikula
On Thu, 02 Jun 2022, Ville Syrjälä wrote: > On Tue, May 24, 2022 at 01:39:23PM +0300, Jani Nikula wrote: >> Add drm_edid based block count and data access helper functions that >> take the EDID allocated size into account. >> >> At the moment, the allocated size should always match the EDID size

Re: [Intel-gfx] [PATCH v1 04/13] drm/edid: add drm_edid_connector_update()

2022-06-02 Thread Ville Syrjälä
On Tue, May 24, 2022 at 01:39:26PM +0300, Jani Nikula wrote: > Add a new function drm_edid_connector_update() to replace the > combination of calls drm_connector_update_edid_property() and > drm_add_edid_modes(). Usually they are called in the drivers in this > order, however the former needs infor

Re: [Intel-gfx] [PATCH v1 06/13] drm/probe-helper: make .get_modes() optional, add default action

2022-06-02 Thread Ville Syrjälä
On Tue, May 24, 2022 at 01:39:28PM +0300, Jani Nikula wrote: > Add default action when .get_modes() not set. This also defines what a > .get_modes() hook should do. > > Cc: David Airlie > Cc: Daniel Vetter > Signed-off-by: Jani Nikula > --- > drivers/gpu/drm/drm_probe_helper.c | 14 +

Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/display/adlp: More updates to voltage swing table

2022-06-02 Thread Matt Roper
On Thu, Jun 02, 2022 at 04:31:23PM +, Patchwork wrote: > == Series Details == > > Series: drm/i915/display/adlp: More updates to voltage swing table > URL : https://patchwork.freedesktop.org/series/104661/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_11719 -> Pa

[Intel-gfx] [PATCH] drm/i915/guc: Check ctx while waiting for response

2022-06-02 Thread Zhanjun Dong
We are seeing error message of "No response for request". Some cases happened while waiting for response and reset/suspend action was triggered. In this case, no response is not an error, active requests will be cancelled. This patch will handle this condition and change the error message into deb

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/guc: Check ctx while waiting for response

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/guc: Check ctx while waiting for response URL : https://patchwork.freedesktop.org/series/104672/ State : warning == Summary == Error: dim checkpatch failed b5d975cdaf5a drm/i915/guc: Check ctx while waiting for response -:6: WARNING:COMMIT_LOG_LONG_LINE: P

Re: [Intel-gfx] [PATCH 2/3] drm/i915: Update eDP fast link training link rate parsing

2022-06-02 Thread Ville Syrjälä
On Thu, Jun 02, 2022 at 12:38:48PM +0300, Jani Nikula wrote: > On Wed, 01 Jun 2022, Ville Syrjala wrote: > > From: Ville Syrjälä > > > > We're not parsing the 5.4 Gbps value for the old eDP fast link > > training link rate, nor are we parsing the new fast link training > > link rate field. Remedy

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/guc: Check ctx while waiting for response

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/guc: Check ctx while waiting for response URL : https://patchwork.freedesktop.org/series/104672/ State : success == Summary == CI Bug Log - changes from CI_DRM_11721 -> Patchwork_104672v1 Summary --

[Intel-gfx] ✗ Fi.CI.IGT: failure for Dual LFP/EDP enablement

2022-06-02 Thread Patchwork
== Series Details == Series: Dual LFP/EDP enablement URL : https://patchwork.freedesktop.org/series/104663/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11720_full -> Patchwork_104663v1_full Summary --- **FAILURE**

Re: [Intel-gfx] [RFC v3 1/3] drm/doc/rfc: VM_BIND feature design document

2022-06-02 Thread Niranjana Vishwanathapura
On Wed, Jun 01, 2022 at 01:28:36PM -0700, Matthew Brost wrote: On Wed, Jun 01, 2022 at 05:25:49PM +0300, Lionel Landwerlin wrote: On 17/05/2022 21:32, Niranjana Vishwanathapura wrote: > +VM_BIND/UNBIND ioctl will immediately start binding/unbinding the mapping in an > +async worker. The binding

Re: [Intel-gfx] [RFC v3 1/3] drm/doc/rfc: VM_BIND feature design document

2022-06-02 Thread Bas Nieuwenhuizen
On Thu, Jun 2, 2022 at 7:42 AM Lionel Landwerlin wrote: > > On 02/06/2022 00:18, Matthew Brost wrote: > > On Wed, Jun 01, 2022 at 05:25:49PM +0300, Lionel Landwerlin wrote: > >> On 17/05/2022 21:32, Niranjana Vishwanathapura wrote: > >>> +VM_BIND/UNBIND ioctl will immediately start binding/unbindi

[Intel-gfx] [PATCH] drm/i915/display/fbc: Do not apply WA 22014263786 to DG2

2022-06-02 Thread José Roberto de Souza
This workaround brings some regressions to DG2 and if really necessary for DG2 an alternative workaround will be implemented. BSpec: 54077 Signed-off-by: José Roberto de Souza --- drivers/gpu/drm/i915/display/intel_fbc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dri

Re: [Intel-gfx] [RFC v3 1/3] drm/doc/rfc: VM_BIND feature design document

2022-06-02 Thread Niranjana Vishwanathapura
On Thu, Jun 02, 2022 at 09:22:46AM -0700, Matthew Brost wrote: On Thu, Jun 02, 2022 at 08:42:13AM +0300, Lionel Landwerlin wrote: On 02/06/2022 00:18, Matthew Brost wrote: > On Wed, Jun 01, 2022 at 05:25:49PM +0300, Lionel Landwerlin wrote: > > On 17/05/2022 21:32, Niranjana Vishwanathapura wrot

Re: [Intel-gfx] [RFC v3 1/3] drm/doc/rfc: VM_BIND feature design document

2022-06-02 Thread Jason Ekstrand
On Thu, Jun 2, 2022 at 3:11 PM Niranjana Vishwanathapura < niranjana.vishwanathap...@intel.com> wrote: > On Wed, Jun 01, 2022 at 01:28:36PM -0700, Matthew Brost wrote: > >On Wed, Jun 01, 2022 at 05:25:49PM +0300, Lionel Landwerlin wrote: > >> On 17/05/2022 21:32, Niranjana Vishwanathapura wrote: >

Re: [Intel-gfx] [RFC v3 1/3] drm/doc/rfc: VM_BIND feature design document

2022-06-02 Thread Niranjana Vishwanathapura
On Wed, Jun 01, 2022 at 07:13:16PM -0700, Zeng, Oak wrote: Regards, Oak -Original Message- From: dri-devel On Behalf Of Niranjana Vishwanathapura Sent: May 17, 2022 2:32 PM To: intel-gfx@lists.freedesktop.org; dri-de...@lists.freedesktop.org; Vetter, Daniel Cc: Brost, Matthew ; Hell

[Intel-gfx] [PATCH v2 2/3] drm/i915: Update eDP fast link training link rate parsing

2022-06-02 Thread Ville Syrjala
From: Ville Syrjälä We're not parsing the 5.4 Gbps value for the old eDP fast link training link rate, nor are we parsing the new fast link training link rate field. Remedy both. Also we'll now use the actual link rate instead of the DPCD BW register value. Note that we're not even using this i

[Intel-gfx] [PATCH v2 3/3] drm/i915: Parse max link rate from the eDP BDB block

2022-06-02 Thread Ville Syrjala
From: Ville Syrjälä The eDP BDB block has gained yet another max link rate field. Let's parse it and consult it during the source rate filtering. v2: *20 instead of *2 to get the correct units (Jani) Reviewed-by: Jani Nikula Signed-off-by: Ville Syrjälä --- drivers/gpu/drm/i915/display/intel

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display/adlp: More updates to voltage swing table

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/display/adlp: More updates to voltage swing table URL : https://patchwork.freedesktop.org/series/104661/ State : success == Summary == CI Bug Log - changes from CI_DRM_11719 -> Patchwork_104661v1 Summar

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/display/fbc: Do not apply WA 22014263786 to DG2

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/display/fbc: Do not apply WA 22014263786 to DG2 URL : https://patchwork.freedesktop.org/series/104678/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11721 -> Patchwork_104678v1 Summary

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Parse more eDP link rate stuff from VBT (rev3)

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915: Parse more eDP link rate stuff from VBT (rev3) URL : https://patchwork.freedesktop.org/series/104615/ State : success == Summary == CI Bug Log - changes from CI_DRM_11721 -> Patchwork_104615v3 Summary

Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/display/adlp: More updates to voltage swing table

2022-06-02 Thread Vudum, Lakshminarayana
Failure is associated to the GEN9 generic bug and re-reported. https://gitlab.freedesktop.org/drm/intel/-/issues/6075 [GEN9 only] Few tests - No logs Thanks, Lakshmi. -Original Message- From: Roper, Matthew D Sent: Thursday, June 2, 2022 10:16 AM To: intel-gfx@lists.freedesktop.org Cc:

Re: [Intel-gfx] [PATCH] drm/i915/display/fbc: Do not apply WA 22014263786 to DG2

2022-06-02 Thread Matt Roper
On Thu, Jun 02, 2022 at 01:17:30PM -0700, José Roberto de Souza wrote: > This workaround brings some regressions to DG2 and if really necessary > for DG2 an alternative workaround will be implemented. > > BSpec: 54077 > Signed-off-by: José Roberto de Souza Reviewed-by: Matt Roper > --- > driv

[Intel-gfx] XDC 2022: Registration & Call for Presentations still open!

2022-06-02 Thread Lyude Paul
Hello! This is just a reminder that the CFP for XDC in 2022 is still open! The 2022 X.Org Developers Conference is being held in conjunction with the 2022 Wine Developers Conference.  This is a meeting to bring together developers working on all things open graphics (Linux kernel, Mesa, DRM, Wayla

Re: [Intel-gfx] [PATCH] drm/i915/regs: split out intel audio register definitions

2022-06-02 Thread Matt Roper
On Thu, Jun 02, 2022 at 12:45:42PM +0300, Jani Nikula wrote: > Split out audio registers to a header of its own to reduce the size of > i915_reg.h. > > TODO: Remove direct audio register access from intel_ddi.c. However, > unification of audio get config is cumbersome due to the audio enable > bit

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/guc: Check ctx while waiting for response

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/guc: Check ctx while waiting for response URL : https://patchwork.freedesktop.org/series/104672/ State : success == Summary == CI Bug Log - changes from CI_DRM_11721_full -> Patchwork_104672v1_full Summ

[Intel-gfx] [PATCH] drm/i915/pvc: GuC depriv applies to PVC

2022-06-02 Thread Matt Roper
We missed this setting in the initial device info patch's definition of XE_HPC_FEATURES. Signed-off-by: Matt Roper --- drivers/gpu/drm/i915/i915_pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c index 047a6e326031..a5a1a76

Re: [Intel-gfx] [PATCH v2 0/3] drm/i915/gt: Expose per gt defaults in sysfs

2022-06-02 Thread Dixit, Ashutosh
On Fri, 27 May 2022 16:41:28 -0700, Matt Roper wrote: > > On Thu, May 26, 2022 at 12:00:42PM -0700, Ashutosh Dixit wrote: > > Create a gt/gtN/.defaults directory (similar to > > engine//.defaults) to expose default parameter values for each > > gt in sysfs. This allows userspace to restore default

[Intel-gfx] [PATCH] drm/i915/pvc: Add Wa_16015675438:pvc

2022-06-02 Thread Matt Roper
From: Badal Nilawar Even though PVC doesn't have an RCS engine, this workaround updates a register in the 0x2xxx range that traditionally belongs to the RCS. We need to set a special flag to tell the GuC that the presence of an "RCS" register on a CCS save/restore list is okay/expected. Cc: Stu

Re: [Intel-gfx] [PATCH v2 0/3] drm/i915/gt: Expose per gt defaults in sysfs

2022-06-02 Thread Matt Roper
On Thu, Jun 02, 2022 at 04:36:02PM -0700, Dixit, Ashutosh wrote: > On Fri, 27 May 2022 16:41:28 -0700, Matt Roper wrote: > > > > On Thu, May 26, 2022 at 12:00:42PM -0700, Ashutosh Dixit wrote: > > > Create a gt/gtN/.defaults directory (similar to > > > engine//.defaults) to expose default parameter

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/pvc: Add Wa_16015675438:pvc

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/pvc: Add Wa_16015675438:pvc URL : https://patchwork.freedesktop.org/series/104689/ 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/display/adlp: More updates to voltage swing table

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/display/adlp: More updates to voltage swing table URL : https://patchwork.freedesktop.org/series/104661/ State : success == Summary == CI Bug Log - changes from CI_DRM_11719_full -> Patchwork_104661v1_full ==

[Intel-gfx] [PATCH] drm/i915/pvc: Add register steering

2022-06-02 Thread Matt Roper
Ponte Vecchio no longer has MSLICE or LNCF steering, but the bspec does document several new types of multicast register ranges. Fortunately, most of the different MCR types all provide valid values at instance (0,0) so there's no need to read fuse registers and calculate a valid instance. We'll

[Intel-gfx] [PATCH v3 i-g-t 0/2] Update DRM UAPI and add test for new hw info query

2022-06-02 Thread John . C . Harrison
From: John Harrison Various UMDs require hardware configuration information about the current platform. A new interface has been added to the KMD to return this information. So, add a test for the new interface. Also, update to the latest DRM UAPI header file that contains the new query enums.

[Intel-gfx] [PATCH v3 i-g-t 1/2] include/drm-uapi: Update to latest i915_drm.h

2022-06-02 Thread John . C . Harrison
From: John Harrison Update to the latest master version of the DRM UAPI header file. NB: Had to remove '__user' keywords as they do not appear to be supported outside of kernel builds. Signed-off-by: John Harrison --- include/drm-uapi/i915_drm.h | 410 1 f

[Intel-gfx] [PATCH v3 i-g-t 2/2] tests/i915/query: Query, parse and validate the hwconfig table

2022-06-02 Thread John . C . Harrison
From: Rodrigo Vivi Newer platforms have an embedded table giving details about that platform's hardware configuration. This table can be retrieved from the KMD via the existing query API. So add a test for it as both an example of how to fetch the table and to validate the contents as much as is

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pvc: GuC depriv applies to PVC

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/pvc: GuC depriv applies to PVC URL : https://patchwork.freedesktop.org/series/104688/ State : success == Summary == CI Bug Log - changes from CI_DRM_11723 -> Patchwork_104688v1 Summary --- **SUCC

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pvc: Add Wa_16015675438:pvc

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/pvc: Add Wa_16015675438:pvc URL : https://patchwork.freedesktop.org/series/104689/ State : success == Summary == CI Bug Log - changes from CI_DRM_11723 -> Patchwork_104689v1 Summary --- **SUCCESS

Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/display/adlp: More updates to voltage swing table

2022-06-02 Thread Matt Roper
On Fri, Jun 03, 2022 at 12:53:08AM +, Patchwork wrote: > == Series Details == > > Series: drm/i915/display/adlp: More updates to voltage swing table > URL : https://patchwork.freedesktop.org/series/104661/ > State : success > > == Summary == > > CI Bug Log - changes from CI_DRM_11719_full

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Parse more eDP link rate stuff from VBT (rev3)

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915: Parse more eDP link rate stuff from VBT (rev3) URL : https://patchwork.freedesktop.org/series/104615/ State : success == Summary == CI Bug Log - changes from CI_DRM_11721_full -> Patchwork_104615v3_full

Re: [Intel-gfx] [PATCH v2 0/3] drm/i915/gt: Expose per gt defaults in sysfs

2022-06-02 Thread Dixit, Ashutosh
On Thu, 02 Jun 2022 16:55:50 -0700, Matt Roper wrote: > > On Thu, Jun 02, 2022 at 04:36:02PM -0700, Dixit, Ashutosh wrote: > > On Fri, 27 May 2022 16:41:28 -0700, Matt Roper wrote: > > > > > > On Thu, May 26, 2022 at 12:00:42PM -0700, Ashutosh Dixit wrote: > > > > Create a gt/gtN/.defaults director

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/pvc: Add register steering

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/pvc: Add register steering URL : https://patchwork.freedesktop.org/series/104691/ 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] [RFC PATCH 4/5] drm/i915/display: prepend connector name to the backlight

2022-06-02 Thread Murthy, Arun R
> On Thu, 02 Jun 2022, Animesh Manna wrote: > > From: Arun R Murthy > > > > With the enablement of dual eDP, there will have to exist two entries > > of backlight sysfs file. In order to avoid sysfs file name > > duplication, the file names are prepended with the connector name. > > Fixed by 20f

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/pvc: Add register steering

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/pvc: Add register steering URL : https://patchwork.freedesktop.org/series/104691/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11724 -> Patchwork_104691v1 Summary --- **FAILURE*

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pvc: GuC depriv applies to PVC

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/pvc: GuC depriv applies to PVC URL : https://patchwork.freedesktop.org/series/104688/ State : success == Summary == CI Bug Log - changes from CI_DRM_11723_full -> Patchwork_104688v1_full Summary ---

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pvc: Add Wa_16015675438:pvc

2022-06-02 Thread Patchwork
== Series Details == Series: drm/i915/pvc: Add Wa_16015675438:pvc URL : https://patchwork.freedesktop.org/series/104689/ State : success == Summary == CI Bug Log - changes from CI_DRM_11723_full -> Patchwork_104689v1_full Summary ---

Re: [Intel-gfx] [RFC v3 3/3] drm/doc/rfc: VM_BIND uapi definition

2022-06-02 Thread Niranjana Vishwanathapura
On Wed, Jun 01, 2022 at 10:08:35PM -0700, Niranjana Vishwanathapura wrote: On Wed, Jun 01, 2022 at 11:27:17AM +0200, Daniel Vetter wrote: On Wed, 1 Jun 2022 at 11:03, Dave Airlie wrote: On Tue, 24 May 2022 at 05:20, Niranjana Vishwanathapura wrote: On Thu, May 19, 2022 at 04:07:30PM -0700,

Re: [Intel-gfx] [PATCH 12/14] drm/nouveau: Register ACPI video backlight when nv_backlight registration fails

2022-06-02 Thread Hans de Goede
Hi Lyude, Thank you for the reviews. On 5/18/22 19:39, Lyude Paul wrote: > On Tue, 2022-05-17 at 17:23 +0200, Hans de Goede wrote: >> Typically the acpi_video driver will initialize before nouveau, which >> used to cause /sys/class/backlight/acpi_video0 to get registered and then >> nouveau would