Re: [Intel-gfx] [PATCH] x86/quirks: Fix logic to apply quirk once

2021-12-29 Thread Lucas De Marchi
On Wed, Dec 29, 2021 at 05:27:52PM -0600, Bjorn Helgaas wrote: On Fri, Dec 17, 2021 at 10:13:13PM -0800, Lucas De Marchi wrote: When using QFLAG_APPLY_ONCE we make sure the quirk is applied only once. Maybe "called" only once, since you're about to add a distinction between "called" and

[Intel-gfx] ✗ Fi.CI.IGT: failure for GPD Win Max display fixes (rev7)

2021-12-29 Thread Patchwork
== Series Details == Series: GPD Win Max display fixes (rev7) URL : https://patchwork.freedesktop.org/series/90483/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11039_full -> Patchwork_21908_full Summary ---

Re: [Intel-gfx] [PATCH] x86/quirks: Fix logic to apply quirk once

2021-12-29 Thread Bjorn Helgaas
On Fri, Dec 17, 2021 at 10:13:13PM -0800, Lucas De Marchi wrote: > When using QFLAG_APPLY_ONCE we make sure the quirk is applied only once. Maybe "called" only once, since you're about to add a distinction between "called" and "applied"? I'm not really sure the concept of QFLAG_APPLY_ONCE,

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

2021-12-29 Thread Patchwork
== Series Details == Series: GPD Win Max display fixes (rev7) URL : https://patchwork.freedesktop.org/series/90483/ State : success == Summary == CI Bug Log - changes from CI_DRM_11039 -> Patchwork_21908 Summary --- **SUCCESS**

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

2021-12-29 Thread Patchwork
== Series Details == Series: GPD Win Max display fixes (rev7) 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.

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

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

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

2021-12-29 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

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

2021-12-29 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

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

2021-12-29 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.

[Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dp: make intel_dp_pack_aux() static again

2021-12-29 Thread Patchwork
== Series Details == Series: drm/i915/dp: make intel_dp_pack_aux() static again URL : https://patchwork.freedesktop.org/series/98399/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11039_full -> Patchwork_21907_full Summary

[Intel-gfx] [PULL] drm-intel-next-fixes for v5.17-rc1

2021-12-29 Thread Jani Nikula
Hi Dave & Daniel - A lone FBC fix for drm-next for the merge window. BR, Jani. The following changes since commit 040bf2a9446f6ba267225d34dc4a9b14d11e5092: Merge tag 'drm-misc-next-fixes-2021-12-23' of git://anongit.freedesktop.org/drm/drm-misc into drm-next (2021-12-24 06:24:06 +1000)

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

2021-12-29 Thread Jani Nikula
Hi Dave & Daniel - Final i915 fixes for v5.16. BR, Jani. The following changes since commit fc74e0a40e4f9fd0468e34045b0c45bba11dcbb2: Linux 5.16-rc7 (2021-12-26 13:17:17 -0800) are available in the Git repository at: git://anongit.freedesktop.org/drm/drm-intel

Re: [Intel-gfx] [PATCH] drm/i915: Increment composite fence seqno

2021-12-29 Thread Jani Nikula
On Tue, 14 Dec 2021, Matthew Brost wrote: > Increment composite fence seqno on each fence creation. For future reference, this commit message is not enough. Both the subject line and the commit message just repeat what I can see from the code, i.e. *what* is being done, but there is not a hint

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dp: make intel_dp_pack_aux() static again

2021-12-29 Thread Patchwork
== Series Details == Series: drm/i915/dp: make intel_dp_pack_aux() static again URL : https://patchwork.freedesktop.org/series/98399/ State : success == Summary == CI Bug Log - changes from CI_DRM_11039 -> Patchwork_21907 Summary ---

[Intel-gfx] [PATCH] drm/i915/dp: make intel_dp_pack_aux() static again

2021-12-29 Thread Jani Nikula
The last user of intel_dp_pack_aux() outside intel_dp_aux.c got removed in commit ad26451a7902 ("drm/i915/display: Drop PSR support from HSW and BDW"). Make the function static again. Rename the pack/unpack functions to follow the usual naming conventions while at it. Signed-off-by: Jani Nikula