[Intel-gfx] [PATCH 2/2] drm/i915: Apply Wa_1406680159:icl, ehl as an engine workaround

2020-02-27 Thread Matt Roper
The register this workaround updates is a render engine register in the MCR range, so we should initialize this in rcs_engine_wa_init() rather than gt_wa_init(). Closes: https://gitlab.freedesktop.org/drm/intel/issues/1222 Fixes: 36204d80bacb ("drm/i915/icl: Wa_1406680159") Cc: Mika Kuoppala Sign

[Intel-gfx] [PATCH 1/2] drm/i915: Handle all MCR ranges

2020-02-27 Thread Matt Roper
The bspec documents multiple MCR ranges; make sure they're all captured by the driver. Bspec: 13991, 52079 Fixes: 592a7c5e082e ("drm/i915: Extend non readable mcr range") Cc: Mika Kuoppala Signed-off-by: Matt Roper --- drivers/gpu/drm/i915/gt/intel_workarounds.c | 25 ++--- 1 fi

[Intel-gfx] [CI] PR for TGL DMC v2.06

2020-02-27 Thread Souza, Jose
The following changes since commit efcfa03ae6100dfe523ebf612e03c3a90fc4c794: linux-firmware: Update firmware file for Intel Bluetooth AX201 (2020- 02-24 07:43:42 -0500) are available in the Git repository at: git://anongit.freedesktop.org/drm/drm-firmware tgl_dmc_2.06 for you to fetch chang

Re: [Intel-gfx] [PATCH v4 13.5/14] drm/i915: Print HDCP version info for all connectors

2020-02-27 Thread Li, Juston
On Thu, 2020-02-27 at 13:56 -0500, Sean Paul wrote: > From: Sean Paul > > De-duplicate the HDCP version code and print it for all connectors. > > Cc: Juston Li > Signed-off-by: Sean Paul > > Changes in v4: > - Added to the set LGTM, thanks for adding this! Reviewed-by: Juston Li > --- > .

Re: [Intel-gfx] gitlab.fd.o financial situation and impact on services

2020-02-27 Thread Matt Turner
On Thu, Feb 27, 2020 at 1:27 PM Daniel Vetter wrote: > > Hi all, > > You might have read the short take in the X.org board meeting minutes > already, here's the long version. > > The good news: gitlab.fd.o has become very popular with our > communities, and is used extensively. This especially inc

Re: [Intel-gfx] [PATCH] drm/i915/huc: update TGL HuC to v7.0.12

2020-02-27 Thread Souza, Jose
On Thu, 2020-02-27 at 14:44 -0800, Daniele Ceraolo Spurio wrote: > Update to the latest available TGL HuC, which includes changes > required > by the media team. > Reviewed-by: José Roberto de Souza > Requested-by: Tony Ye > Signed-off-by: Daniele Ceraolo Spurio < > daniele.ceraolospu...@intel

[Intel-gfx] [PATCH] drm/i915/dmc: Use firmware v2.06 for TGL

2020-02-27 Thread José Roberto de Souza
New firmware contains minor fixes around context restore. Signed-off-by: José Roberto de Souza --- drivers/gpu/drm/i915/display/intel_csr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_csr.c b/drivers/gpu/drm/i915/display/intel_csr.c

Re: [Intel-gfx] gitlab.fd.o financial situation and impact on services

2020-02-27 Thread Luc Verhaegen
On Thu, Feb 27, 2020 at 10:27:04PM +0100, Daniel Vetter wrote: > Hi all, > > You might have read the short take in the X.org board meeting minutes > already, here's the long version. > > The good news: gitlab.fd.o has become very popular with our > communities, and is used extensively. This espec

[Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Clean up DPLL output/refclock tracking

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915: Clean up DPLL output/refclock tracking URL : https://patchwork.freedesktop.org/series/73977/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8010_full -> Patchwork_16725_full Summary ---

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Print HDCP version info for all connectors

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915: Print HDCP version info for all connectors URL : https://patchwork.freedesktop.org/series/74037/ State : success == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16743 Summary ---

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Adding YUV444 packed format support for skl+ (rev4)

2020-02-27 Thread Patchwork
== Series Details == Series: Adding YUV444 packed format support for skl+ (rev4) URL : https://patchwork.freedesktop.org/series/73020/ State : warning == Summary == $ dim checkpatch origin/drm-tip 8e8ab83649cd drm/i915: Adding YUV444 packed format support for skl+ (V15) -:9: WARNING:COMMIT_LOG

[Intel-gfx] [PATCH 2/4] drm/i915: Wrap i915_active in a simple kreffed struct

2020-02-27 Thread Chris Wilson
For conveniences of callers that just want to use an i915_active to track a wide array of concurrent timelines, wrap the base i915_active struct inside a kref. This i915_active will self-destruct after use. Signed-off-by: Chris Wilson --- drivers/gpu/drm/i915/i915_active.c | 52 +

[Intel-gfx] [PATCH 4/4] drm/i915/perf: Schedule oa_config after modifying the contexts

2020-02-27 Thread Chris Wilson
We wish that the scheduler emit the context modification commands prior to enabling the oa_config, for which we must explicitly inform it of the ordering constraints. This is especially important as we now wait for the final oa_config setup to be completed and as this wait may be on a distinct cont

[Intel-gfx] [PATCH 3/4] drm/i915: Extend i915_request_await_active to use all timelines

2020-02-27 Thread Chris Wilson
Extend i915_request_await_active() to be able to asynchronously wait on all the tracked timelines simultaneously. Signed-off-by: Chris Wilson --- drivers/gpu/drm/i915/i915_active.c | 54 +++--- drivers/gpu/drm/i915/i915_active.h | 5 ++- drivers/gpu/drm/i915/i915_vma.c

[Intel-gfx] [PATCH 1/4] drm/i915/perf: Reintroduce wait on OA configuration completion

2020-02-27 Thread Chris Wilson
We still need to wait for the initial OA configuration to happen before we enable OA report writes to the OA buffer. Reported-by: Lionel Landwerlin Fixes: 15d0ace1f876 ("drm/i915/perf: execute OA configuration from command stream") Testcase: igt/perf/stream-open-close Signed-off-by: Chris Wilson

Re: [Intel-gfx] [Mesa-dev] gitlab.fd.o financial situation and impact on services

2020-02-27 Thread Tom Stellard
On 02/27/2020 01:27 PM, Daniel Vetter wrote: > Hi all, > > You might have read the short take in the X.org board meeting minutes > already, here's the long version. > > The good news: gitlab.fd.o has become very popular with our > communities, and is used extensively. This especially includes all

[Intel-gfx] ✓ Fi.CI.BAT: success for Adding YUV444 packed format support for skl+ (rev4)

2020-02-27 Thread Patchwork
== Series Details == Series: Adding YUV444 packed format support for skl+ (rev4) URL : https://patchwork.freedesktop.org/series/73020/ State : success == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16744 Summary ---

Re: [Intel-gfx] [PATCH] drm/i915: Minimize uaccess exposure in i915_gem_execbuffer2_ioctl()

2020-02-27 Thread Josh Poimboeuf
On Thu, Feb 27, 2020 at 10:35:42PM +, Al Viro wrote: > On Thu, Feb 27, 2020 at 04:08:26PM -0600, Josh Poimboeuf wrote: > > With CONFIG_CC_OPTIMIZE_FOR_SIZE, objtool reports: > > > > drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o: warning: objtool: > > i915_gem_execbuffer2_ioctl()+0x5b7: cal

[Intel-gfx] [PATCH] drm/i915/perf: Schedule oa_config after modifying the contexts

2020-02-27 Thread Chris Wilson
We wish that the scheduler emit the context modification commands prior to enabling the oa_config, for which we must explicitly inform it of the ordering constraints. This is especially important as we now wait for the final oa_config setup to be completed and as this wait may be on a distinct cont

Re: [Intel-gfx] [Mesa-dev] gitlab.fd.o financial situation and impact on services

2020-02-27 Thread Tom Stellard
On 02/27/2020 05:00 PM, Tom Stellard wrote: > On 02/27/2020 01:27 PM, Daniel Vetter wrote: >> Hi all, >> >> You might have read the short take in the X.org board meeting minutes >> already, here's the long version. >> >> The good news: gitlab.fd.o has become very popular with our >> communities, an

[Intel-gfx] [PATCH v2] drm/i915/ggtt: do not set bits 1-11 in gen8+ ptes

2020-02-27 Thread Daniele Ceraolo Spurio
On TGL, bits 2-4 in the GGTT PTE are not ignored anymore and are instead used for some extra VT-d capabilities. We don't (yet?) have support for those capabilities, but, given that we shared the pte_encode function betweed GGTT and PPGTT, we still set those bits to the PPGTT PPAT values. The DMA en

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Lock gmbus/aux mutexes while changing cdclk

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915: Lock gmbus/aux mutexes while changing cdclk URL : https://patchwork.freedesktop.org/series/74039/ State : success == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16745 Summary ---

[Intel-gfx] ✗ Fi.CI.BUILD: failure for drm/i915/psr: Force PSR probe only after full initialization (rev8)

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915/psr: Force PSR probe only after full initialization (rev8) URL : https://patchwork.freedesktop.org/series/73436/ State : failure == Summary == Applying: drm/i915/psr: Force PSR probe only after full initialization Using index info to reconstruct a base tre

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gt: Check engine-is-awake on reset later

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915/gt: Check engine-is-awake on reset later URL : https://patchwork.freedesktop.org/series/74041/ State : success == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16746 Summary --- *

[Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/3] drm/i915/perf: Mark up the racy use of perf->exclusive_stream

2020-02-27 Thread Patchwork
== Series Details == Series: series starting with [1/3] drm/i915/perf: Mark up the racy use of perf->exclusive_stream URL : https://patchwork.freedesktop.org/series/73978/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8011_full -> Patchwork_16726_full

[Intel-gfx] [PATCH 0/6] Re-org uC debugfs files and move them under GT

2020-02-27 Thread Daniele Ceraolo Spurio
Move printing functions to their respective feature files, squash the 2 guc status debugfs files (load_status and info) and move them under the gt/ folder. A fix for keeping the log error around, to be dumped in debugfs after a wedge, is also included at the end. Cc: Andi Shyti Cc: Michal Wajdecz

[Intel-gfx] [PATCH 1/6] drm/i915/guc: drop stage_pool debugfs

2020-02-27 Thread Daniele Ceraolo Spurio
The pool will be private to GuC in the new submission scheme, so we won't be able to print it and we can just drop the current legacy code. Signed-off-by: Daniele Ceraolo Spurio Cc: Michal Wajdeczko Cc: John Harrison Cc: Matthew Brost --- drivers/gpu/drm/i915/i915_debugfs.c | 53 -

[Intel-gfx] [PATCH 5/6] drm/i915/uc: Move uC debugfs to its own folder under GT

2020-02-27 Thread Daniele Ceraolo Spurio
uC is a component of the GT, so it makes sense for the uC debugfs files to be in the GT folder. A subfolder has been used to keep the same structure we have for the code. Signed-off-by: Daniele Ceraolo Spurio Cc: Andi Shyti Cc: Michal Wajdeczko Cc: John Harrison Cc: Matthew Brost Cc: Tony Ye

[Intel-gfx] [PATCH 4/6] drm/i915/debugfs: move uC printers and update debugfs file names

2020-02-27 Thread Daniele Ceraolo Spurio
Move the printers to the respective files for clarity. The guc_load_status debugfs has been squashed in the guc_info one, has having separate ones wasn't very useful. The HuC debugfs has been renamed huc_info to match. While at it, fix the register printed in the HuC debugfs for gen11+. Suggested

[Intel-gfx] [PATCH 2/6] drm/i915/uc: mark structure passed to checker functions as const

2020-02-27 Thread Daniele Ceraolo Spurio
Follow-up patches will pass const objects from debugfs to some those functions, so we need to be ready. Signed-off-by: Daniele Ceraolo Spurio Cc: Michal Wajdeczko Cc: John Harrison Cc: Matthew Brost --- drivers/gpu/drm/i915/gt/intel_gt.h | 6 +++--- drivers/gpu/drm/i915/gt/uc/int

[Intel-gfx] [PATCH 6/6] drm/i915/uc: do not free err log on uc_fini

2020-02-27 Thread Daniele Ceraolo Spurio
we do call uc_fini if there is an issue while loading the GuC, so we can't delete in there the logs we need to debug the load failure. Moving the log free to driver remove ensures the logs stick around ong enough for us to dump them. Signed-off-by: Daniele Ceraolo Spurio Cc: Michal Wajdeczko ---

[Intel-gfx] [PATCH 3/6] drm/i915/huc: make "support huc" reflect HW capabilities

2020-02-27 Thread Daniele Ceraolo Spurio
We currently initialize HuC support based on GuC being enabled in modparam; this means that huc_is_supported() can return false on HW that does have a HuC when enable_guc=0. The rationale for this behavior is that HuC requires GuC for authentication and therefore is not supported by itself. However

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v3,01/11] drm/i915/tgl: Implement Wa_1409804808

2020-02-27 Thread Patchwork
== Series Details == Series: series starting with [v3,01/11] drm/i915/tgl: Implement Wa_1409804808 URL : https://patchwork.freedesktop.org/series/74044/ State : success == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16748

Re: [Intel-gfx] [PATCH] drm/i915: Minimize uaccess exposure in i915_gem_execbuffer2_ioctl()

2020-02-27 Thread Randy Dunlap
On 2/27/20 5:03 PM, Josh Poimboeuf wrote: > On Thu, Feb 27, 2020 at 10:35:42PM +, Al Viro wrote: >> On Thu, Feb 27, 2020 at 04:08:26PM -0600, Josh Poimboeuf wrote: >>> With CONFIG_CC_OPTIMIZE_FOR_SIZE, objtool reports: >>> >>> drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o: warning: objtool:

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Minimize uaccess exposure in i915_gem_execbuffer2_ioctl()

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915: Minimize uaccess exposure in i915_gem_execbuffer2_ioctl() URL : https://patchwork.freedesktop.org/series/74045/ State : success == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16749 Su

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/huc: update TGL HuC to v7.0.12

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915/huc: update TGL HuC to v7.0.12 URL : https://patchwork.freedesktop.org/series/74046/ State : warning == Summary == $ dim checkpatch origin/drm-tip ac34e02f4c48 drm/i915/huc: update TGL HuC to v7.0.12 -:12: WARNING:BAD_SIGN_OFF: Non-standard signature: Requ

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/huc: update TGL HuC to v7.0.12

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915/huc: update TGL HuC to v7.0.12 URL : https://patchwork.freedesktop.org/series/74046/ State : success == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16750 Summary --- **SUCCESS**

Re: [Intel-gfx] gitlab.fd.o financial situation and impact on services

2020-02-27 Thread Dave Airlie
On Fri, 28 Feb 2020 at 07:27, Daniel Vetter wrote: > > Hi all, > > You might have read the short take in the X.org board meeting minutes > already, here's the long version. > > The good news: gitlab.fd.o has become very popular with our > communities, and is used extensively. This especially inclu

[Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Handle all MCR ranges

2020-02-27 Thread Patchwork
== Series Details == Series: series starting with [1/2] drm/i915: Handle all MCR ranges URL : https://patchwork.freedesktop.org/series/74047/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8023 -> Patchwork_16751 Summary ---

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Skip barriers inside waits

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915: Skip barriers inside waits URL : https://patchwork.freedesktop.org/series/73984/ State : success == Summary == CI Bug Log - changes from CI_DRM_8012_full -> Patchwork_16727_full Summary --- **SU

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/dmc: Use firmware v2.06 for TGL

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915/dmc: Use firmware v2.06 for TGL URL : https://patchwork.freedesktop.org/series/74048/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8024 -> Patchwork_16752 Summary --- **FAILURE*

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/huc: Fix error reported by I915_PARAM_HUC_STATUS (rev2)

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915/huc: Fix error reported by I915_PARAM_HUC_STATUS (rev2) URL : https://patchwork.freedesktop.org/series/72419/ State : success == Summary == CI Bug Log - changes from CI_DRM_7984_full -> Patchwork_16665_full =

Re: [Intel-gfx] [PATCH 01/10] drm/i915: Add i915 device based MISSING_CASE macro

2020-02-27 Thread Laxminarayan Bharadiya, Pankaj
> -Original Message- > From: Jani Nikula > Sent: 27 February 2020 14:00 > To: Laxminarayan Bharadiya, Pankaj > ; Chris Wilson wilson.co.uk> > Cc: intel-gfx@lists.freedesktop.org; dri-de...@lists.freedesktop.org; David > Airlie > ; Joonas Lahtinen ; Vivi, > Rodrigo ; dan...@ffwll.ch >

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/4] drm/i915/perf: Reintroduce wait on OA configuration completion (rev2)

2020-02-27 Thread Patchwork
== Series Details == Series: series starting with [1/4] drm/i915/perf: Reintroduce wait on OA configuration completion (rev2) URL : https://patchwork.freedesktop.org/series/74049/ State : warning == Summary == $ dim checkpatch origin/drm-tip 8416743fda17 drm/i915/perf: Reintroduce wait on OA

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/4] drm/i915/perf: Reintroduce wait on OA configuration completion (rev2)

2020-02-27 Thread Patchwork
== Series Details == Series: series starting with [1/4] drm/i915/perf: Reintroduce wait on OA configuration completion (rev2) URL : https://patchwork.freedesktop.org/series/74049/ State : success == Summary == CI Bug Log - changes from CI_DRM_8024 -> Patchwork_16753 ==

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/ggtt: do not set bits 1-11 in gen8+ ptes

2020-02-27 Thread Patchwork
== Series Details == Series: drm/i915/ggtt: do not set bits 1-11 in gen8+ ptes URL : https://patchwork.freedesktop.org/series/74050/ State : failure == Summary == Applying: drm/i915/ggtt: do not set bits 1-11 in gen8+ ptes Using index info to reconstruct a base tree... M drivers/gpu/drm/

Re: [Intel-gfx] [RFC][PATCH 5/5] drm/i915/display: Add Nearest-neighbor based integer scaling support

2020-02-27 Thread Laxminarayan Bharadiya, Pankaj
> -Original Message- > From: Daniel Stone > Sent: 25 February 2020 13:00 > To: Laxminarayan Bharadiya, Pankaj > > Cc: Jani Nikula ; Daniel Vetter > ; intel-gfx ; dri-devel > ; Ville Syrjälä > ; David Airlie ; Maarten > Lankhorst ; tzimmerm...@suse.de; > Maxime Ripard ; mihail.atanas...@

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Re-org uC debugfs files and move them under GT

2020-02-27 Thread Patchwork
== Series Details == Series: Re-org uC debugfs files and move them under GT URL : https://patchwork.freedesktop.org/series/74051/ State : warning == Summary == $ dim checkpatch origin/drm-tip 342d7bf407c2 drm/i915/guc: drop stage_pool debugfs dfe41cbafaee drm/i915/uc: mark structure passed to

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for Re-org uC debugfs files and move them under GT

2020-02-27 Thread Patchwork
== Series Details == Series: Re-org uC debugfs files and move them under GT URL : https://patchwork.freedesktop.org/series/74051/ State : warning == Summary == $ dim sparse origin/drm-tip Sparse version: v0.6.0 Commit: drm/i915/guc: drop stage_pool debugfs Okay! Commit: drm/i915/uc: mark stru

Re: [Intel-gfx] [PATCH] drm/i915/dmc: Use firmware v2.06 for TGL

2020-02-27 Thread Sharma, Swati2
This DMC FW should fix https://gitlab.freedesktop.org/drm/intel/issues/453 => DSB busy issue Reviewed-by: Swati Sharma On 28-Feb-20 5:20 AM, José Roberto de Souza wrote: New firmware contains minor fixes around context restore. Signed-off-by: José Roberto de Souza --- drivers/gpu/drm/i915

[Intel-gfx] ✓ Fi.CI.BAT: success for Re-org uC debugfs files and move them under GT

2020-02-27 Thread Patchwork
== Series Details == Series: Re-org uC debugfs files and move them under GT URL : https://patchwork.freedesktop.org/series/74051/ State : success == Summary == CI Bug Log - changes from CI_DRM_8024 -> Patchwork_16755 Summary --- **SU

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Handle all MCR ranges (rev2)

2020-02-27 Thread Patchwork
== Series Details == Series: series starting with [1/2] drm/i915: Handle all MCR ranges (rev2) URL : https://patchwork.freedesktop.org/series/74047/ State : success == Summary == CI Bug Log - changes from CI_DRM_8024 -> Patchwork_16756 Summ

Re: [Intel-gfx] [PATCH] drm/i915/dmc: Use firmware v2.06 for TGL

2020-02-27 Thread Jani Nikula
On Thu, 27 Feb 2020, José Roberto de Souza wrote: > New firmware contains minor fixes around context restore. Please get the firmware in linux-firmware and CI first: <7>[6.328884] i915 :00:02.0: [drm:intel_csr_ucode_init [i915]] Loading i915/tgl_dmc_ver2_06.bin <4>[6.330612] i915 00

Re: [Intel-gfx] linux-next: Tree for Feb 28 (gpu/drm/i915/display/intel_display.c)

2020-02-27 Thread Randy Dunlap
On 2/27/20 8:42 PM, Stephen Rothwell wrote: > Hi all, > > Changes since 20200227: > on i386: ../drivers/gpu/drm/i915/display/intel_display.c:252:1: error: 'has_transcoder' defined but not used [-Werror=unused-function] has_transcoder(struct drm_i915_private *dev

Re: [Intel-gfx] [PATCH 26/51] drm: Manage drm_mode_config_init with drmm_

2020-02-27 Thread Thomas Zimmermann
Hi Daniel Am 27.02.20 um 19:14 schrieb Daniel Vetter: > drm_mode_config_cleanup is idempotent, so no harm in calling this > twice. This allows us to gradually switch drivers over by removing > explicit drm_mode_config_cleanup calls. > > With this step it's not also possible that (at least for sim

Re: [Intel-gfx] [PATCH 50/51] drm/udl: drop drm_driver.release hook

2020-02-27 Thread Thomas Zimmermann
Hi Daniel Am 27.02.20 um 19:15 schrieb Daniel Vetter: > There's only two functions called from that: > drm_kms_helper_poll_fini() and udl_free_urb_list(). Both of these are > also called from the ubs_driver->disconnect hook, so entirely > pointless to do the same again in the ->release hook. The

Re: [Intel-gfx] gitlab.fd.o financial situation and impact on services

2020-02-27 Thread Daniel Vetter
On Fri, Feb 28, 2020 at 4:38 AM Dave Airlie wrote: > > On Fri, 28 Feb 2020 at 07:27, Daniel Vetter wrote: > > > > Hi all, > > > > You might have read the short take in the X.org board meeting minutes > > already, here's the long version. > > > > The good news: gitlab.fd.o has become very popular

Re: [Intel-gfx] [PATCH v4 13.5/14] drm/i915: Print HDCP version info for all connectors

2020-02-27 Thread Ramalingam C
On 2020-02-27 at 13:56:58 -0500, Sean Paul wrote: > From: Sean Paul > > De-duplicate the HDCP version code and print it for all connectors. > > Cc: Juston Li > Signed-off-by: Sean Paul > > Changes in v4: > - Added to the set > --- > .../drm/i915/display/intel_display_debugfs.c| 17 ++

Re: [Intel-gfx] [PATCH] drm/i915: Fix kbuild test robot build error

2020-02-27 Thread Jani Nikula
On Thu, 27 Feb 2020, Anshuman Gupta wrote: > Fixes: d54c1a513c48 ("drm/i915: Fix broken transcoder err state") That's supposed to go in the section with the "tags" below. Can be fixed while applying, please don't resend for this. BR, Jani. > has_transcoder() was unused because function which wa

<    1   2   3