drop drmP.h usage? [Was: [pull] amdgpu, amdkfd drm-next-5.3]

2019-05-29 Thread Sam Ravnborg
Hi Alex et all. > - Various cleanups Any chance to persuade one of you guys to sweep through the amd / raedeon tree and drop use of the deprecated header drmP.h? Status at the moment (drm-misc-next): $git grep drmP | cut -d '/' -f 1 | uniq -c | sort -n | tail -n 10 11 meson 12 mediate

Re: [PATCHv6 0/4] omapdrm: DSI command mode panel support

2019-05-29 Thread Tony Lindgren
* Tony Lindgren [190529 08:11]: > * Tomi Valkeinen [190529 07:06]: > > On 28/05/2019 13:18, Tony Lindgren wrote: > > > > > > My board is x15 rev A3, attached to AM5 EVM. I've also attached my > > > > kernel > > > > config. > > > > > > Strange that this is not affecting other x15? I think timer

[PATCH 4.14 103/193] drm/msm: a5xx: fix possible object reference leak

2019-05-29 Thread Greg Kroah-Hartman
[ Upstream commit 6cd5235c3135ea84b32469ea51b2aae384eda8af ] The call to of_get_child_by_name returns a node pointer with refcount incremented thus it must be explicitly decremented after the last usage. Detected by coccinelle with the following warnings: drivers/gpu/drm/msm/adreno/a5xx_gpu.c:57:

[PATCH 4.19 140/276] drm/msm: a5xx: fix possible object reference leak

2019-05-29 Thread Greg Kroah-Hartman
[ Upstream commit 6cd5235c3135ea84b32469ea51b2aae384eda8af ] The call to of_get_child_by_name returns a node pointer with refcount incremented thus it must be explicitly decremented after the last usage. Detected by coccinelle with the following warnings: drivers/gpu/drm/msm/adreno/a5xx_gpu.c:57:

[PATCH 4.19 185/276] drm/pl111: fix possible object reference leak

2019-05-29 Thread Greg Kroah-Hartman
[ Upstream commit bc29d3a69d4c1bd1a103e8b3c1ed81b807c1870b ] The call to of_find_matching_node_and_match returns a node pointer with refcount incremented thus it must be explicitly decremented after the last usage. Detected by coccinelle with the following warnings: drivers/gpu/drm/pl111/pl111_ve

[PATCH 5.0 215/346] drm/pl111: fix possible object reference leak

2019-05-29 Thread Greg Kroah-Hartman
[ Upstream commit bc29d3a69d4c1bd1a103e8b3c1ed81b807c1870b ] The call to of_find_matching_node_and_match returns a node pointer with refcount incremented thus it must be explicitly decremented after the last usage. Detected by coccinelle with the following warnings: drivers/gpu/drm/pl111/pl111_ve

[PATCH 5.0 158/346] drm/msm: a5xx: fix possible object reference leak

2019-05-29 Thread Greg Kroah-Hartman
[ Upstream commit 6cd5235c3135ea84b32469ea51b2aae384eda8af ] The call to of_get_child_by_name returns a node pointer with refcount incremented thus it must be explicitly decremented after the last usage. Detected by coccinelle with the following warnings: drivers/gpu/drm/msm/adreno/a5xx_gpu.c:57:

[PATCH 5.1 239/405] drm/pl111: fix possible object reference leak

2019-05-29 Thread Greg Kroah-Hartman
[ Upstream commit bc29d3a69d4c1bd1a103e8b3c1ed81b807c1870b ] The call to of_find_matching_node_and_match returns a node pointer with refcount incremented thus it must be explicitly decremented after the last usage. Detected by coccinelle with the following warnings: drivers/gpu/drm/pl111/pl111_ve

[PATCH 5.1 173/405] drm/msm: a5xx: fix possible object reference leak

2019-05-29 Thread Greg Kroah-Hartman
[ Upstream commit 6cd5235c3135ea84b32469ea51b2aae384eda8af ] The call to of_get_child_by_name returns a node pointer with refcount incremented thus it must be explicitly decremented after the last usage. Detected by coccinelle with the following warnings: drivers/gpu/drm/msm/adreno/a5xx_gpu.c:57:

Re: [PATCH v3] gpu/drm: mediatek: call mtk_dsi_stop() after mtk_drm_crtc_atomic_disable()

2019-05-29 Thread Hsin-Yi Wang
On Tue, May 28, 2019 at 4:53 PM CK Hu wrote: > I think we've already discussed in [1]. I need a reason to understand > this is hardware behavior or software bug. If this is a software bug, we > need to fix the bug and code could be symmetric. > > [1] > http://lists.infradead.org/pipermail/linux-m

Re: [PATCH v2 4/4] drm: mediatek: clear num_pipes when unbind driver

2019-05-29 Thread CK Hu
Hi, Hsin-Yi: On Wed, 2019-05-29 at 18:25 +0800, Hsin-Yi Wang wrote: > num_pipes is used for mutex created in mtk_drm_crtc_create(). If we > don't clear num_pipes count, when rebinding driver, the count will > be accumulated. From mtk_disp_mutex_get(), there can only be at most > 10 mutex id. Clear

Re: [PATCH v2 3/4] drm: mediatek: call drm_atomic_helper_shutdown() when unbinding driver

2019-05-29 Thread CK Hu
Hi, Hsin-Yi: On Wed, 2019-05-29 at 18:25 +0800, Hsin-Yi Wang wrote: > shutdown all CRTC when unbinding drm driver. > Reviewed-by: CK Hu > Fixes: 119f5173628a ("drm/mediatek: Add DRM Driver for Mediatek SoC MT8173.") > Signed-off-by: Hsin-Yi Wang > --- > drivers/gpu/drm/mediatek/mtk_drm_drv.c

Re: [PATCH v2 2/4] drm: mediatek: unbind components in mtk_drm_unbind()

2019-05-29 Thread CK Hu
Hi, Hsin-Yi: On Wed, 2019-05-29 at 18:25 +0800, Hsin-Yi Wang wrote: > Unbinding components (i.e. mtk_dsi and mtk_disp_ovl/rdma/color) will > trigger master(mtk_drm)'s .unbind(), and currently mtk_drm's unbind > won't actually unbind components. During the next bind, > mtk_drm_kms_init() is called,

Re: [PATCH v2 1/4] drm: mediatek: fix unbind functions

2019-05-29 Thread CK Hu
Hi, Hsin-Yi: On Wed, 2019-05-29 at 18:25 +0800, Hsin-Yi Wang wrote: > detatch panel in mtk_dsi_destroy_conn_enc(), since .bind will try to > attach it again. > Reviewed-by: CK Hu > Fixes: 2e54c14e310f ("drm/mediatek: Add DSI sub driver") > Signed-off-by: Hsin-Yi Wang > --- > change log v1->v2

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 --- Comment #5 from Rolf --- Yet it half-way installs on 19.04 without a check, and your download page does not include any warning of what it will do to your system if it's not 18.04. In fact, the sub heading lists 18.04.2, so is that the only

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 --- Comment #4 from Alex Deucher --- The packaged drivers only support the Linux distros listed. -- You are receiving this mail because: You are the assignee for the bug.___ dri-devel mailing list dr

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 --- Comment #3 from Rolf --- If anyone else finds themselves in this fix by installing this driver, the only way to get apt-get working again is to forcefully remove all of the files using: sudo dpkg --force-all -P [package name] Here is the l

[radeon-alex:drm-next-5.3-wip 207/222] drivers/gpu/drm/panfrost/panfrost_job.c:390:3: error: too few arguments to function 'drm_sched_stop'

2019-05-29 Thread kbuild test robot
tree: git://people.freedesktop.org/~agd5f/linux.git drm-next-5.3-wip head: 66ca5577c50a68d89e0e9ad7a2eba697911622c9 commit: ceb7ee86fbedcf20e978b7e41dfce5b144f71dfa [207/222] drm/scheduler: rework job destruction config: sparc64-allmodconfig (attached as .config) compiler: sparc64-linux-gcc (G

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 --- Comment #2 from Rolf --- Also, the install scrip fails without rolling back anything and leaving the system in a half-baked state. The supplied uninstall fails because amdgpu-core isn't installed yet. Since only 18.04 is supported, the insta

[PATCH] drm/amd/powerplay/smu7_hwmgr: replace blocking delay with non-blocking

2019-05-29 Thread Yrjan Skrimstad
This driver currently contains a repeated 500ms blocking delay call which causes frequent major buffer underruns in PulseAudio. This patch fixes this issue by replacing the blocking delay with a non-blocking sleep call. Signed-off-by: Yrjan Skrimstad --- drivers/gpu/drm/amd/powerplay/hwmgr/smu7_

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 --- Comment #1 from Rolf --- I spent over a thousand dollars for a card that doesn't support current Linux? And when I file a bug report it's reclassified as an "enhancement", and a medium priority one at that?! Worse still, the driver would pro

Re: [PATCH 0/2] drm/amd/display: Add HDR output metadata support for amdgpu

2019-05-29 Thread Harry Wentland
On 2019-05-28 3:08 p.m., Nicholas Kazlauskas wrote: > This patch series enables HDR output metadata support in amdgpu using the > DRM HDR interface merged in drm-misc-next. Enabled for DCE and DCN ASICs > over DP and HDMI. > > It's limited to static HDR metadata support for now since that's all th

[PATCH 09/22] docs: mark orphan documents as such

2019-05-29 Thread Mauro Carvalho Chehab
Sphinx doesn't like orphan documents: Documentation/accelerators/ocxl.rst: WARNING: document isn't included in any toctree Documentation/arm/stm32/overview.rst: WARNING: document isn't included in any toctree Documentation/arm/stm32/stm32f429-overview.rst: WARNING: document isn't in

[PATCH 00/22] Some documentation fixes

2019-05-29 Thread Mauro Carvalho Chehab
Fix several warnings and broken links. This series was generated against linux-next, but was rebased to be applied at docs-next. It should apply cleanly on either tree. There's a git tree with all of them applied on the top of docs/docs-next at: https://git.linuxtv.org/mchehab/experimental.git/l

[PATCH 11/22] gpu: amdgpu: fix broken amdgpu_dma_buf.c references

2019-05-29 Thread Mauro Carvalho Chehab
This file was renamed, but docs weren't updated accordingly. WARNING: kernel-doc './scripts/kernel-doc -rst -enable-lineno -function PRIME Buffer Sharing ./drivers/gpu/drm/amd/amdgpu/amdgpu_prime.c' failed with return code 1 WARNING: kernel-doc './scripts/kernel-doc -rst -enable-

[PATCH 12/22] gpu: i915.rst: Fix references to renamed files

2019-05-29 Thread Mauro Carvalho Chehab
WARNING: kernel-doc './scripts/kernel-doc -rst -enable-lineno -function Hardware workarounds ./drivers/gpu/drm/i915/intel_workarounds.c' failed with return code 1 WARNING: kernel-doc './scripts/kernel-doc -rst -enable-lineno -function Logical Rings, Logical Ring Contexts and Execlists ./drivers/

[Bug 110781] Radeon: heavy r300 performance drop regression between 11.x and 19.x

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110781 --- Comment #6 from Richard Thier --- Latest bisect result so far: Fast mesa version: 17.2.8 (2017 december 22) Slow mesa version: 18.0.5 (2018 june 3) The change that slows the system is between the two. The strace outputs are generally the s

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 Alex Deucher changed: What|Removed |Added Severity|blocker |enhancement Priority|high

[pull] amdgpu, amdkfd drm-next-5.3

2019-05-29 Thread Alex Deucher
Hi Dave, Daniel, New stuff for 5.3: - Add new thermal sensors for vega asics - Various RAS fixes - Add sysfs interface for memory interface utilization - Use HMM rather than mmu notifier for user pages - Expose xgmi topology via kfd - SR-IOV fixes - Fixes for manual driver reload - Add unique iden

Re: [PATCHv6 3/4] drm/omap: add framedone interrupt support

2019-05-29 Thread Sebastian Reichel
Hi Tomi, On Tue, May 28, 2019 at 01:19:01PM +0300, Tomi Valkeinen wrote: > Hi Sebastian, > > On 23/05/2019 23:07, Sebastian Reichel wrote: > > > @@ -302,6 +328,30 @@ void omap_crtc_vblank_irq(struct drm_crtc *crtc) > > DBG("%s: apply done", omap_crtc->name); > > } > > +void omap_crtc_frame

Re: [Freedreno] [PATCH RFC v2 0/6] ARM: qcom: initial Nexus 5 display support

2019-05-29 Thread Brian Masney
On Wed, May 29, 2019 at 01:58:16PM -0600, Jeffrey Hugo wrote: > On 5/29/2019 1:30 PM, Brian Masney wrote: > > On Wed, May 29, 2019 at 08:41:31AM -0600, Jeffrey Hugo wrote: > > > On Wed, May 29, 2019 at 4:28 AM Brian Masney > > > wrote: > > > > > > > > On Tue, May 28, 2019 at 08:53:49PM -0600, Je

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 Rolf changed: What|Removed |Added CC||r...@lagrangepoint.io Priority|medium

[Bug 110795] Unable to install on latest Ubuntu (19.04)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110795 Bug ID: 110795 Summary: Unable to install on latest Ubuntu (19.04) Product: DRI Version: XOrg git Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Se

Re: [PATCH][next] drm/amdkfd: fix null pointer dereference on dev

2019-05-29 Thread Kuehling, Felix
On 2019-05-29 11:07 a.m., Colin King wrote: > From: Colin Ian King > > The pointer dev is set to null yet it is being dereferenced when > checking dev->dqm->sched_policy. Fix this by performing the check > on dev->dqm->sched_policy after dev has been assigned and null > checked. Also remove the

Re: [PATCH] drm/msm/dsi: add protection against NULL dsi device

2019-05-29 Thread Abhinav Kumar
On 2019-05-29 13:43, Jeffrey Hugo wrote: On 3/7/2019 3:02 PM, Abhinav Kumar wrote: On 2019-03-07 13:59, Sean Paul wrote: On Wed, Mar 06, 2019 at 05:28:54PM -0800, Abhinav Kumar wrote: When panel probe happens after DSI probe, the DSI probe is deferred as per current design. In the probe defer

[PULL] drm-misc-fixes

2019-05-29 Thread Sean Paul
Hi Da.*, One line pull-request, one-line summary. Please pull :) drm-misc-fixes-2019-05-29: qxl: Drop WARN when u/s tries to mmap a prime buffer (Gerd) Cc: Gerd Hoffmann Cheers, Sean The following changes since commit f3617b449d0bcf3b5d80a97f51498dcf7463cf7e: drm/panfrost: Select devfreq

[PATCH v3 16/16] drm/msm/a5xx: Support per-instance pagetables

2019-05-29 Thread Jordan Crouse
Add support for per-instance pagetables for 5XX targets. Create a support buffer for preemption to hold the SMMU pagetable information for a preempted ring, enable TTBR1 to support split pagetables and add the necessary PM4 commands to trigger a pagetable switch at the beginning of a user command.

[Bug 110659] pageflipping seems to cause jittering on mouse input when running Hitman 2 in Wine/DXVK with amdgpu.dc=1

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110659 --- Comment #20 from tempel.jul...@gmail.com --- I forgot that I patched this PR into my Xserver: https://gitlab.freedesktop.org/xorg/xserver/merge_requests/36 It is responsible for the blocked gamma adjustment and the better desktop window perfo

[PATCH v3 08/16] drm/msm: Print all 64 bits of the faulting IOMMU address

2019-05-29 Thread Jordan Crouse
When we move to 64 bit addressing for a5xx and a6xx targets we will start seeing pagefaults at larger addresses so format them appropriately in the log message for easier debugging. Signed-off-by: Jordan Crouse --- drivers/gpu/drm/msm/msm_iommu.c | 2 +- 1 file changed, 1 insertion(+), 1 deleti

[PATCH v3 14/16] drm/msm/gpu: Add ttbr0 to the memptrs

2019-05-29 Thread Jordan Crouse
Targets that support per-instance pagetable switching will have to keep track of which pagetable belongs to each instance to be able to recover for preemption. Signed-off-by: Jordan Crouse --- drivers/gpu/drm/msm/msm_ringbuffer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/d

[PATCH v3 15/16] drm/msm/a6xx: Support per-instance pagetables

2019-05-29 Thread Jordan Crouse
Add support for per-instance pagetables for a6xx targets. Add support to handle split pagetables and create a new instance if the needed IOMMU support exists and insert the necessary PM4 commands to trigger a pagetable switch at the beginning of a user command. Signed-off-by: Jordan Crouse ---

[PATCH v3 12/16] drm/msm: Add a helper function for a per-instance address space

2019-05-29 Thread Jordan Crouse
Add a helper function to create a GEM address space attached to an iommu auxiliary domain for a per-instance pagetable. Signed-off-by: Jordan Crouse --- drivers/gpu/drm/msm/msm_drv.h | 4 +++ drivers/gpu/drm/msm/msm_gem_vma.c | 53 +++ 2 files changed, 3

[PATCH v3 11/16] drm/msm: Add support for IOMMU auxiliary domains

2019-05-29 Thread Jordan Crouse
Add support for creating a auxiliary domain from the IOMMU device to implement per-instance pagetables. Also add a helper function to return the pagetable base address (ttbr) and asid to the caller so that the GPU target code can set up the pagetable switch. Signed-off-by: Jordan Crouse --- dri

[PATCH v3 09/16] drm/msm: Pass the MMU domain index in struct msm_file_private

2019-05-29 Thread Jordan Crouse
Pass the index of the MMU domain in struct msm_file_private instead of assuming gpu->id throughout the submit path. This clears the way to change ctx->aspace to a per-instance pagetable. Signed-off-by: Jordan Crouse --- drivers/gpu/drm/msm/msm_drv.c| 2 ++ drivers/gpu/drm/msm/msm_drv.h

[PATCH v3 10/16] drm/msm/gpu: Move address space setup to the GPU targets

2019-05-29 Thread Jordan Crouse
Move the address space steup code out of the generic msm GPU code to to the individual GPU targets. This allows us to do target specific setup such as gpummu for a2xx or split pagetables and per-instance pagetables for newer a5xx and a6xx targets. All this is at the expense of duplicated code in so

[PATCH v3 13/16] drm/msm: Add support to create target specific address spaces

2019-05-29 Thread Jordan Crouse
Add support to create a GPU target specific address space for a context. For those targets that support per-instance pagetables they will return a new address space set up for the instance if possible otherwise just use the global device pagetable. Signed-off-by: Jordan Crouse --- drivers/gpu/d

[PATCH v3 07/16] drm/msm/adreno: Enable 64 bit mode by default on a5xx and a6xx targets

2019-05-29 Thread Jordan Crouse
A5XX and newer GPUs can be run in either 32 or 64 bit mode. The GPU registers and the microcode use 64 bit virtual addressing in either case but the upper 32 bits are ignored if the GPU is in 32 bit mode. There is no performance disadvantage to remaining in 64 bit mode even if we are only generatin

[PATCH v3 00/16] drm/msm: Per-instance pagetable support

2019-05-29 Thread Jordan Crouse
This is v3 of the per-instance pagetable support. Biggest change in this revision is moving nearly all of the split pagetable support into io-pgtable-arm and setting up specific ops to handle the unique behavior of the split pagetables. Now that I've spent some time with it, I like how it turned ou

Re: [PATCH v2 1/2] a5xx: Define HLSQ_DBG_ECO_CNTL

2019-05-29 Thread Rob Clark
thanks, I've pushed this one to envytools tree BR, -R On Wed, May 29, 2019 at 8:20 AM Jeffrey Hugo wrote: > > --- > rnndb/adreno/a5xx.xml | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/rnndb/adreno/a5xx.xml b/rnndb/adreno/a5xx.xml > index ae654eeb..16203512 100644 > --- a/rnndb/adreno

Re: [Freedreno] [PATCH RFC v2 0/6] ARM: qcom: initial Nexus 5 display support

2019-05-29 Thread Jeffrey Hugo
On 5/29/2019 1:30 PM, Brian Masney wrote: On Wed, May 29, 2019 at 08:41:31AM -0600, Jeffrey Hugo wrote: On Wed, May 29, 2019 at 4:28 AM Brian Masney wrote: On Tue, May 28, 2019 at 08:53:49PM -0600, Jeffrey Hugo wrote: On Tue, May 28, 2019 at 8:46 PM Brian Masney wrote: On Tue, May 28, 201

Re: [PATCH] drm/sched: Fix make htmldocs warnings.

2019-05-29 Thread Daniel Vetter
On Wed, May 29, 2019 at 04:43:45PM +, Grodzovsky, Andrey wrote: > I don't, sorry. Should we fix that? Seems like you do plenty of scheduler stuff, so would make sense I guess ... -Daniel > > Andrey > > On 5/29/19 12:42 PM, Alex Deucher wrote: > > On Wed, May 29, 2019 at 10:29 AM Andrey Grod

Re: [PATCH] drm/sched: Fix make htmldocs warnings.

2019-05-29 Thread Daniel Vetter
On Wed, May 29, 2019 at 10:29:40AM -0400, Andrey Grodzovsky wrote: > Signed-off-by: Andrey Grodzovsky Thanks for quick fixing! Acked-by: Daniel Vetter > --- > drivers/gpu/drm/scheduler/sched_main.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/gpu/drm/scheduler/sched_mai

[PATCH 2/4] drm: Fix docbook warnings in hdr metadata helper structures

2019-05-29 Thread Uma Shankar
Fixes the following warnings: ./include/drm/drm_mode_config.h:841: warning: Incorrect use of kernel-doc format: * hdr_output_metadata_property: Connector property containing hdr ./include/drm/drm_mode_config.h:918: warning: Function parameter or member 'hdr_output_metadata_property' not d

[PATCH 4/4] video/hdmi: Dropped static functions from kernel doc

2019-05-29 Thread Uma Shankar
Dropped static functions from kernel documentation. Suggested-by: Daniel Vetter Signed-off-by: Uma Shankar --- drivers/video/hdmi.c | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/video/hdmi.c b/drivers/video/hdmi.c index b99ba01..7

[PATCH 0/4] Document fixes for DRM UAPI and HDR

2019-05-29 Thread Uma Shankar
This series adds DRM UAPI header structure documentation to kernel docs. Fixes issues with existing structure documentation in drm uapi header. This also fixes warnings in HDR doc and addresses suggestions from Daniel Vetter. Also dropped static function documentation in hdmi core. Uma Shankar (

[PATCH 1/4] drm: Drop a redundant unused variable

2019-05-29 Thread Uma Shankar
Drop a redundant and unused variable "hdr_output_metadata" from drm_connector. Suggested-by: Daniel Vetter Signed-off-by: Uma Shankar --- include/drm/drm_connector.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h index f8f4003..547

[PATCH 3/4] drm: Fixed doc warnings in drm uapi header

2019-05-29 Thread Uma Shankar
Fixed doc warnings in drm uapi header. All the UAPI structures are now documented in kernel doc. Signed-off-by: Uma Shankar --- include/uapi/drm/drm_mode.h | 22 ++ 1 file changed, 22 insertions(+) diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index

Re: [Freedreno] [PATCH RFC v2 0/6] ARM: qcom: initial Nexus 5 display support

2019-05-29 Thread Brian Masney
On Wed, May 29, 2019 at 08:41:31AM -0600, Jeffrey Hugo wrote: > On Wed, May 29, 2019 at 4:28 AM Brian Masney wrote: > > > > On Tue, May 28, 2019 at 08:53:49PM -0600, Jeffrey Hugo wrote: > > > On Tue, May 28, 2019 at 8:46 PM Brian Masney > > > wrote: > > > > > > > > On Tue, May 28, 2019 at 07:42:

Re: [PATCH v10 01/11] drm/sun4i: dsi: Fix TCON DRQ set bits

2019-05-29 Thread Jagan Teki
On Wed, May 29, 2019 at 8:24 PM Maxime Ripard wrote: > > On Fri, May 24, 2019 at 03:48:51PM +0530, Jagan Teki wrote: > > On Fri, May 24, 2019 at 2:04 AM Maxime Ripard > > wrote: > > > > > > On Mon, May 20, 2019 at 02:33:08PM +0530, Jagan Teki wrote: > > > > According to "DRM kernel-internal disp

[Bug 110659] pageflipping seems to cause jittering on mouse input when running Hitman 2 in Wine/DXVK with amdgpu.dc=1

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110659 --- Comment #19 from Nicholas Kazlauskas --- (In reply to tempel.julian from comment #18) > Huh, with modesetting driver, those patches eliminate the stutter when new > windows are shown. Does the xf86-video-amdgpu driver need adjustments for >

RE: [Intel-gfx] [v11 00/12] Add HDR Metadata Parsing and handling in DRM layer

2019-05-29 Thread Shankar, Uma
>> >-Original Message- >> >From: Daniel Vetter [mailto:dan...@ffwll.ch] >> >Sent: Wednesday, May 29, 2019 8:33 PM >> >To: Shankar, Uma >> >Cc: intel-gfx ; dri-devel > >de...@lists.freedesktop.org>; Daniele Castagna >> >; jo...@kwiboo.se; Sean Paul >> >; Sharma, Shashank >> >; Syrjala, Vi

Re: [PATCH v6 0/6] Allwinner H6 Mali GPU support

2019-05-29 Thread Robin Murphy
On 29/05/2019 16:09, Tomeu Vizoso wrote: On Tue, 21 May 2019 at 18:11, Clément Péron wrote: [snip] [ 345.204813] panfrost 180.gpu: mmu irq status=1 [ 345.209617] panfrost 180.gpu: Unhandled Page fault in AS0 at VA 0x02400400 From what I can see here, 0x02400400 p

Re: [Intel-gfx] [v11 00/12] Add HDR Metadata Parsing and handling in DRM layer

2019-05-29 Thread Daniel Vetter
On Wed, May 29, 2019 at 7:29 PM Shankar, Uma wrote: > > > > >-Original Message- > >From: Daniel Vetter [mailto:dan...@ffwll.ch] > >Sent: Wednesday, May 29, 2019 8:33 PM > >To: Shankar, Uma > >Cc: intel-gfx ; dri-devel >de...@lists.freedesktop.org>; Daniele Castagna ; > >jo...@kwiboo.se;

RE: [Intel-gfx] [v11 00/12] Add HDR Metadata Parsing and handling in DRM layer

2019-05-29 Thread Shankar, Uma
>-Original Message- >From: Daniel Vetter [mailto:dan...@ffwll.ch] >Sent: Wednesday, May 29, 2019 8:33 PM >To: Shankar, Uma >Cc: intel-gfx ; dri-devel de...@lists.freedesktop.org>; Daniele Castagna ; >jo...@kwiboo.se; Sean Paul ; Sharma, Shashank >; Syrjala, Ville >Subject: Re: [Intel-gf

[Bug 21509] libdrm's drmOpenOnce() fd cache stale on X server restart

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=21509 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

RE: [PATCH] drm: Fix docbook warnings in hdr metadata helper structures

2019-05-29 Thread Shankar, Uma
>-Original Message- >From: Daniel Vetter [mailto:dan...@ffwll.ch] >Sent: Wednesday, May 29, 2019 8:31 PM >To: Shankar, Uma >Cc: intel-gfx ; dri-devel de...@lists.freedesktop.org>; Sharma, Shashank ; >Ville Syrjälä ; Maarten Lankhorst >; Maxime Ripard >; Sean Paul ; David Airlie >; Bartlo

[Bug 8258] drm_handle_t isn't 64bit safe

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8258 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 26745] mach64 driver missing 32-bit ioctl compatibility routines

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26745 Adam Jackson changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

[Bug 8217] Random freezes after 'startx' with Radeon 8500 DV and DRI enabled

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8217 Adam Jackson changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 7971] radeon driver unable to claim hw lock from abusive dri clients

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=7971 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 9457] Restricting drm open file descriptors (AIGLX deadlock)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=9457 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 5999] problems with r300 and metacity compositing manager

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=5999 Adam Jackson changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

[Bug 9348] Hard Lockup with Ati X600 X.Org >7.1.1 caused by libdri.so

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=9348 Adam Jackson changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

[Bug 110659] pageflipping seems to cause jittering on mouse input when running Hitman 2 in Wine/DXVK with amdgpu.dc=1

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110659 --- Comment #18 from tempel.jul...@gmail.com --- Huh, with modesetting driver, those patches eliminate the stutter when new windows are shown. Does the xf86-video-amdgpu driver need adjustments for this? However, turning on nightlight in Plasma

[pull] amdgpu drm-fixes-5.2

2019-05-29 Thread Alex Deucher
Hi Dave, Daniel, Fixes for 5.2: - Respin the Raven DMCU patch with the ifdef fixed - Fix for a clean display when loading the driver on Raven The following changes since commit c074989171801171af6c5f53dd16b27f36b31deb: Revert "drm/amd/display: Don't load DMCU for Raven 1" (2019-05-24 19:56:50

[Bug 21164] Very bad Clutter performance with DRI2 & UXA

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=21164 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 19041] Intel xf86-video-intel 2.4.1 and 2.5 radically gets down performance

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=19041 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 12374] Problems with vesafb & i810-2.1.1 driver

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=12374 Adam Jackson changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

[Bug 37471] Website with information about maintainers/developers

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37471 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 16313] Nexuiz often makes Xorg crash

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=16313 Adam Jackson changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

[Bug 11547] gl error when aiglx is enabled

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=11547 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 15806] [DRI2] Failed to map pixmap: Device Busy

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=15806 Adam Jackson changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

[Bug 8463] User called no-op dispatch function (an unsupported extension function?)

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8463 Adam Jackson changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

[Bug 5531] DRI enabled freezes X when running any opengl app

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=5531 Adam Jackson changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

[Bug 10761] mga dri locks up on resume from disk

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=10761 Adam Jackson changed: What|Removed |Added Resolution|--- |WONTFIX Status|REOPENED

[Bug 8840] no DRI with sis760 and agp card...

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8840 Adam Jackson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 5477] sis_dri hangs server, causes certain apps (glxcontexts) to segfault

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=5477 Adam Jackson changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

Re: [PATCH 2/2] drm/edid: Ignore "DFP 1.x" bit for EDID 1.2 and earlier

2019-05-29 Thread Mario Kleiner
On Wed, May 29, 2019 at 7:02 AM Ville Syrjala wrote: > > From: Ville Syrjälä > > From VESA EDID implementation guide v1.0: > "For EDID version 1 revision 2 or earlier data structures when offset 14h > bit 7 is set to one, the value of bits 6-0 are undefined, and therefore > cannot be interprete

[Bug 109598] New Account

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109598 Adam Jackson changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

Re: [PATCH] drm/sched: Fix make htmldocs warnings.

2019-05-29 Thread Grodzovsky, Andrey
I don't, sorry. Andrey On 5/29/19 12:42 PM, Alex Deucher wrote: > On Wed, May 29, 2019 at 10:29 AM Andrey Grodzovsky > wrote: >> Signed-off-by: Andrey Grodzovsky > Reviewed-by: Alex Deucher > > I'll push it to drm-misc in a minute unless you have commit rights. > > Alex > >> --- >> drivers/g

[Bug 109658] Request for a new fd.o account

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109658 Adam Jackson changed: What|Removed |Added Resolution|--- |MOVED Status|NEW

Re: [PATCH] drm/sched: Fix make htmldocs warnings.

2019-05-29 Thread Alex Deucher
On Wed, May 29, 2019 at 10:29 AM Andrey Grodzovsky wrote: > > Signed-off-by: Andrey Grodzovsky Reviewed-by: Alex Deucher I'll push it to drm-misc in a minute unless you have commit rights. Alex > --- > drivers/gpu/drm/scheduler/sched_main.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff

Re: [PATCH 01/13] drm/amdgpu: introduce and honour DRM_FORCE_AUTH workaround

2019-05-29 Thread Emil Velikov
On 2019/05/29, Koenig, Christian wrote: > Am 29.05.19 um 15:03 schrieb Emil Velikov: > > On 2019/05/29, Dave Airlie wrote: > >> On Wed, 29 May 2019 at 02:47, Emil Velikov > >> wrote: > >>> On 2019/05/28, Koenig, Christian wrote: > Am 28.05.19 um 18:10 schrieb Emil Velikov: > > On 2019/05

[Bug 110781] Radeon: heavy r300 performance drop regression between 11.x and 19.x

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110781 --- Comment #5 from Richard Thier --- Still fast with mesa 17.2.8 and X.Org X Server 1.19.5 The problem is somewhere between 17.x and 19.x mesa versions (and corresponding xorg). Also I have made an strace when it is good in one older system t

[PATCH] efifb: BGRT: Add check for new BGRT status field rotation bits

2019-05-29 Thread Hans de Goede
Starting with ACPI 6.2 bits 1 and 2 of the BGRT status field are no longer reserved. These bits are now used to indicate if the image needs to be rotated before being displayed. The efifb code does not support rotating the image before copying it to the screen. This commit adds a check for these

Re: [PATCH] drm/panfrost: Add AArch64 page table format support

2019-05-29 Thread Tomeu Vizoso
On Wed, 29 May 2019 at 15:00, Robin Murphy wrote: > > Hi Tomeu, Rob, > > On 28/05/2019 08:03, Tomeu Vizoso wrote: > > Robin, Steven, > > > > would you or someone else at Arm be able to run the IGT tests [0] on > > 5.2-rc2 with this patch on top? > > > > I don't have any hw with Bifrost and am not

[PATCH v2 2/2] drm/msm/adreno: Add A540 support

2019-05-29 Thread Jeffrey Hugo
The A540 is a derivative of the A530, and is found in the MSM8998 SoC. Signed-off-by: Jeffrey Hugo --- drivers/gpu/drm/msm/adreno/a5xx.xml.h | 28 drivers/gpu/drm/msm/adreno/a5xx_gpu.c | 21 ++ drivers/gpu/drm/msm/adreno/a5xx_power.c| 76 +- drivers

[PATCH v2 1/2] a5xx: Define HLSQ_DBG_ECO_CNTL

2019-05-29 Thread Jeffrey Hugo
--- rnndb/adreno/a5xx.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/rnndb/adreno/a5xx.xml b/rnndb/adreno/a5xx.xml index ae654eeb..16203512 100644 --- a/rnndb/adreno/a5xx.xml +++ b/rnndb/adreno/a5xx.xml @@ -1523,6 +1523,7 @@ xsi:schemaLocation="http://nouveau.freedesktop.org/ rules-ng.xs

[PATCH v2 0/2] Adreno A540 support

2019-05-29 Thread Jeffrey Hugo
Adreno driver support for the A540 found in the MSM8998 SoC v2: -Removed extra RBBM write -Corrected added RBBM writes to allow for hwcg disable -Patch to add REG_A5XX_HLSQ_DBG_ECO_CNTL to envytools -Regenerated a5xx header file with updated envytools -Used REG_A5XX_HLSQ_DBG_ECO_CNTL in code -Stri

[Bug 110658] MXGP3 (Steam, native Linux port, UE4): graphical glitches

2019-05-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110658 --- Comment #5 from Alexander Mezin --- (In reply to Timothy Arceri from comment #3) > Are you able to test with llvm 9? I won't have time for that until weekend (In reply to Timothy Arceri from comment #4) > I've run it on llvm 8 and mesa 19

  1   2   >