Re: [RFC 2/4] drm/panel/ili9341: Rebase and some more

2019-07-29 Thread Josef Luštický
Hi Noralf, see comment bellow. po 29. 7. 2019 v 21:55 odesílatel Noralf Trønnes napsal: > > Embed mipi_dbi in struct ili9341. > Rebase on moved mipi-dbi, rename variable name. > Add backlight_device to panel struct. > mipi_dbi_hw_reset() already has a NULL check on the reset gpio. > Prepare for m

Re: [RFC 0/4] drm/mipi-dbi: Support panel drivers

2019-07-29 Thread Josef Luštický
Hi Noralf, the patch series looks good, see comments in the patch emails. One question: is there a general mechanism to tell a driver not to use parallel RGB even though the display supports it and "port" is specified in the device-tree? Josef po 29. 7. 2019 v 21:55 odesílatel Noralf Trønnes na

Re: [PATCH v2 14/19] drm/tilcdc: drop use of drmP.h

2019-07-29 Thread Sam Ravnborg
Hi Jyri. On Tue, Jul 30, 2019 at 09:03:11AM +0300, Jyri Sarha wrote: > On 16/07/2019 09:42, Sam Ravnborg wrote: > > Dropped drmP.h and all other header files not used by tilcdc_drv.h. > > Added the minimal includes and forwards to make the header file > > self-contained. > > > > Then dropped the

Re: [PATCH] gpu: drm/tilcdc: Fix switch case fallthrough

2019-07-29 Thread Tomi Valkeinen
On 17/07/2019 08:09, Keerthy wrote: Fix the below build warning/Error drivers/gpu/drm/tilcdc/tilcdc_crtc.c: In function ‘tilcdc_crtc_set_mode’: drivers/gpu/drm/tilcdc/tilcdc_crtc.c:384:8: error: this statement may fall through [-Werror=implicit-fallthrough=] reg |= LCDC_V2_TFT_24BPP_UNPACK;

[PATCH] dma-mapping: remove dma_{alloc,free,mmap}_writecombine

2019-07-29 Thread Christoph Hellwig
We can already use DMA_ATTR_WRITE_COMBINE or the _wc prefixed version, so remove the third way of doing things. Signed-off-by: Christoph Hellwig --- drivers/gpu/drm/omapdrm/dss/dispc.c | 11 +-- include/linux/dma-mapping.h | 9 - 2 files changed, 5 insertions(+), 15 dele

Re: [PATCH v2 14/19] drm/tilcdc: drop use of drmP.h

2019-07-29 Thread Jyri Sarha
On 16/07/2019 09:42, Sam Ravnborg wrote: > Dropped drmP.h and all other header files not used by tilcdc_drv.h. > Added the minimal includes and forwards to make the header file > self-contained. > > Then dropped the remaining uses of drmP.h and fixed all fall-out. > > Signed-off-by: Sam Ravnborg

[Bug 204145] amdgpu video playback causes host to hard reset (checkstop) on POWER9 with RX 580

2019-07-29 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=204145 Michael Ellerman (mich...@ellerman.id.au) changed: What|Removed |Added Status|RESOLVED|CLOSED --- Co

RE: [PATCH] drm/i915/gvt: remove duplicate entry of trace

2019-07-29 Thread Zhao, Yan Y
Reviewed-by: Yan Zhao > -Original Message- > From: intel-gvt-dev [mailto:intel-gvt-dev-boun...@lists.freedesktop.org] On > Behalf Of Zhenyu Wang > Sent: Wednesday, June 12, 2019 11:23 AM > To: Hariprasad Kelam > Cc: David Airlie ; intel-...@lists.freedesktop.org; Joonas > Lahtinen ; linu

[PATCH v2] Fix typo reigster to register

2019-07-29 Thread Pei-Hsuan Hung
Signed-off-by: Pei-Hsuan Hung Acked-by: Liviu Dudau Cc: triv...@kernel.org --- Hi Liviu, thanks for your reply. This patch is generated by a script so at first I didn't notice there is also a typo in the word coefficient. I've fixed the typo in this version. arch/powerpc/kernel/eeh.c

[Bug 111234] amdgpu bug: kernel NULL pointer dereference during video playback

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111234 --- Comment #3 from Michael J Evans --- After looking at the linked bug and your description of my environment (dual screen and yes KDE / Plasma as a compositor potentially exposing whatever corner case this is in the kernel driver): I agree th

[Bug 111243] Installation of 19.20 Fails

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111243 --- Comment #2 from jacque8...@gmail.com --- That fixed the problem. Thank you so much. -- You are receiving this mail because: You are the assignee for the bug.___ dri-devel mailing list dri-devel@l

Re: [PATCH] drm/bridge: tc358764: Fix build error

2019-07-29 Thread Laurent Pinchart
Hi Yue, Thank you for the patch. On Mon, Jul 29, 2019 at 05:05:20PM +0800, YueHaibing wrote: > If CONFIG_DRM_TOSHIBA_TC358764=y but CONFIG_DRM_KMS_HELPER=m, > building fails: > > drivers/gpu/drm/bridge/tc358764.o:(.rodata+0x228): undefined reference to > `drm_atomic_helper_connector_reset' > dr

[Bug 110637] Any OpenCL application causes "*ERROR* ring gfx timeout" on Vega 64

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110637 --- Comment #11 from Alex Deucher --- (In reply to Alexander Mezin from comment #10) > (In reply to Alex Deucher from comment #3) > > More likely a bug in the mesa OpenCL code. If you want functional OpenCL, > > you should use the ROCm OpenCL p

[RFC PATCH 1/3] drm: introduce new struct drm_mem_region

2019-07-29 Thread Brian Welty
Move basic members of ttm_mem_type_manager into a new DRM memory region structure. The idea is for this base structure to be nested inside the TTM structure and later in Intel's proposed intel_memory_region. As comments in the code suggest, the following future work can extend the usefulness of t

[RFC PATCH 2/3] drm: Introduce DRM_MEM defines for specifying type of drm_mem_region

2019-07-29 Thread Brian Welty
Introduce DRM memory region types to be common for both drivers using TTM and for i915. For now, TTM continues to define it's own set but uses the DRM base definitions. Signed-off-by: Brian Welty --- include/drm/drm_mm.h| 8 include/drm/ttm/ttm_placement.h | 8 2 f

[RFC PATCH 3/3] drm/i915: Update intel_memory_region to use nested drm_mem_region

2019-07-29 Thread Brian Welty
Some fields are deleted from intel_memory_region in favor of instead using the new nested drm_mem_region structure. Note, this is based upon unmerged i915 series [1] in order to show how i915 might begin to integrate the proposed drm_mem_region. [1] https://lists.freedesktop.org/archives/intel-gf

[RFC PATCH 0/3] Propose new struct drm_mem_region

2019-07-29 Thread Brian Welty
[ By request, resending to include amd-gfx + intel-gfx. Since resending, I fixed the nit with ordering of header includes that Sam noted. ] This RFC series is first implementation of some ideas expressed earlier on dri-devel [1]. Some of the goals (open for much debate) are: - Create common

Re: [PATCH libdrm 3/3] intel: Add support for EHL

2019-07-29 Thread Lucas De Marchi
On Mon, Jul 29, 2019 at 04:52:30PM -0700, Jose Souza wrote: Series is Reviewed-by: José Roberto de Souza Thanks, applied. Lucas De Marchi On Mon, 2019-07-15 at 11:53 -0700, Lucas De Marchi wrote: From: Rodrigo Vivi Add the PCI ID import for EHL. Cc: Rodrigo Vivi Signed-off-by: James A

Re: [PATCH v3 6a/7] dt-bindings: Add ANX6345 DP/eDP transmitter binding

2019-07-29 Thread Rob Herring
On Mon, Jul 29, 2019 at 8:23 AM Torsten Duwe wrote: > > On Fri, Jul 26, 2019 at 06:36:01PM +0200, Maxime Ripard wrote: > > > + > > > + dvdd12-supply: > > > +maxItems: 1 > > > +description: Regulator for 1.2V digital core power. > > > +$ref: /schemas/types.yaml#/definitions/phandle > >

Re: [PATCH libdrm 3/3] intel: Add support for EHL

2019-07-29 Thread Souza, Jose
Series is Reviewed-by: José Roberto de Souza On Mon, 2019-07-15 at 11:53 -0700, Lucas De Marchi wrote: > From: Rodrigo Vivi > > Add the PCI ID import for EHL. > > Cc: Rodrigo Vivi > Signed-off-by: James Ausmus > Signed-off-by: Lucas De Marchi > --- > intel/intel_chipset.c | 1 + > 1 file c

Re: [PATCH 9/9] mm: remove the MIGRATE_PFN_WRITE flag

2019-07-29 Thread Jerome Glisse
On Mon, Jul 29, 2019 at 04:42:01PM -0700, Ralph Campbell wrote: > > On 7/29/19 7:28 AM, Christoph Hellwig wrote: > > The MIGRATE_PFN_WRITE is only used locally in migrate_vma_collect_pmd, > > where it can be replaced with a simple boolean local variable. > > > > Signed-off-by: Christoph Hellwig

Re: [PATCH 1/9] mm: turn migrate_vma upside down

2019-07-29 Thread Jerome Glisse
On Mon, Jul 29, 2019 at 05:28:35PM +0300, Christoph Hellwig wrote: > There isn't any good reason to pass callbacks to migrate_vma. Instead > we can just export the three steps done by this function to drivers and > let them sequence the operation without callbacks. This removes a lot > of boilerp

Re: [PATCH 9/9] mm: remove the MIGRATE_PFN_WRITE flag

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: The MIGRATE_PFN_WRITE is only used locally in migrate_vma_collect_pmd, where it can be replaced with a simple boolean local variable. Signed-off-by: Christoph Hellwig Reviewed-by: Ralph Campbell --- include/linux/migrate.h | 1 - mm/migrate.

Re: [PATCH 8/9] mm: remove the unused MIGRATE_PFN_DEVICE flag

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: No one ever checks this flag, and we could easily get that information from the page if needed. Signed-off-by: Christoph Hellwig Reviewed-by: Ralph Campbell --- drivers/gpu/drm/nouveau/nouveau_dmem.c | 3 +-- include/linux/migrate.h

Re: [PATCH 7/9] mm: remove the unused MIGRATE_PFN_ERROR flag

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: We don't use this flag anymore, so remove it. Signed-off-by: Christoph Hellwig Reviewed-by: Ralph Campbell --- include/linux/migrate.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/migrate.h b/include/linux/migrate.h index

Re: [PATCH 9/9] mm: remove the MIGRATE_PFN_WRITE flag

2019-07-29 Thread Jerome Glisse
On Mon, Jul 29, 2019 at 05:28:43PM +0300, Christoph Hellwig wrote: > The MIGRATE_PFN_WRITE is only used locally in migrate_vma_collect_pmd, > where it can be replaced with a simple boolean local variable. > > Signed-off-by: Christoph Hellwig NAK that flag is useful, for instance a anonymous vma

Re: [PATCH 6/9] nouveau: simplify nouveau_dmem_migrate_vma

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: Factor the main copy page to vram routine out into a helper that acts on a single page and which doesn't require the nouveau_dmem_migrate structure for argument passing. As an added benefit the new version only allocates the dma address array once an

Re: [PATCH 5/9] nouveau: simplify nouveau_dmem_migrate_to_ram

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: Factor the main copy page to ram routine out into a helper that acts on a single page and which doesn't require the nouveau_dmem_fault structure for argument passing. Also remove the loop over multiple pages as we only handle one at the moment, altho

Re: [PATCH 4/9] nouveau: factor out dmem fence completion

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: Factor out the end of fencing logic from the two migration routines. Signed-off-by: Christoph Hellwig Reviewed-by: Ralph Campbell --- drivers/gpu/drm/nouveau/nouveau_dmem.c | 33 -- 1 file changed, 15 insertions(+), 1

Re: [PATCH 3/9] nouveau: factor out device memory address calculation

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: Factor out the repeated device memory address calculation into a helper. Signed-off-by: Christoph Hellwig Reviewed-by: Ralph Campbell --- drivers/gpu/drm/nouveau/nouveau_dmem.c | 42 +++--- 1 file changed, 17 insertions(+

Re: [PATCH 1/7] docs: fix broken doc references due to renames

2019-07-29 Thread Paul E. McKenney
On Fri, Jul 26, 2019 at 08:47:21AM -0300, Mauro Carvalho Chehab wrote: > Some files got renamed but probably due to some merge conflicts, > a few references still point to the old locations. > > Signed-off-by: Mauro Carvalho Chehab > Acked-by: Wolfram Sang # I2C part > Reviewed-by: Jerry Hoemann

Re: [PATCH 2/9] nouveau: reset dma_nr in nouveau_dmem_migrate_alloc_and_copy

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: When we start a new batch of dma_map operations we need to reset dma_nr, as we start filling a newly allocated array. Signed-off-by: Christoph Hellwig Reviewed-by: Ralph Campbell --- drivers/gpu/drm/nouveau/nouveau_dmem.c | 1 + 1 file chang

[Bug 111232] 3200 Memory Crash My System

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111232 --- Comment #2 from bibitocarlos --- (In reply to Alex Deucher from comment #1) > Can you bisect? I'm gonna try ^^, never did it before and leave to holydays Friday. I'm gonna start with RC, then whith commits. You think it's a proper way ? --

Re: [PATCH 1/9] mm: turn migrate_vma upside down

2019-07-29 Thread Ralph Campbell
On 7/29/19 7:28 AM, Christoph Hellwig wrote: There isn't any good reason to pass callbacks to migrate_vma. Instead we can just export the three steps done by this function to drivers and let them sequence the operation without callbacks. This removes a lot of boilerplate code as-is, and will a

[PATCH] drm: sti: Mark expected switch fall-throughs

2019-07-29 Thread Gustavo A. R. Silva
Mark switch cases where we are expecting to fall through. This patch fixes the following warning (Building: arm): drivers/gpu/drm/sti/sti_hdmi.c: In function ‘hdmi_audio_configure’: drivers/gpu/drm/sti/sti_hdmi.c:851:13: warning: this statement may fall through [-Wimplicit-fallthrough=] audio

[Bug 110637] Any OpenCL application causes "*ERROR* ring gfx timeout" on Vega 64

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110637 --- Comment #10 from Alexander Mezin --- (In reply to Alex Deucher from comment #3) > More likely a bug in the mesa OpenCL code. If you want functional OpenCL, > you should use the ROCm OpenCL packages. Do you mean "Mesa OpenCL is not supporte

Re: [PATCH 0/1] This patch fixes connection detection for monitors w/o DDC.

2019-07-29 Thread Daniel Vetter
On Mon, Jul 29, 2019 at 12:58 PM Oleksandr Suvorov wrote: > > On Thu, Jul 25, 2019 at 5:41 PM maxime.rip...@free-electrons.com > wrote: > > > > On Thu, Jul 25, 2019 at 11:05:23AM +, Oleksandr Suvorov wrote: > > > > > > Even in source code of this driver there is an author's description: > > >

[Bug 110674] Crashes / Resets From AMDGPU / Radeon VII

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110674 --- Comment #54 from ReddestDream --- (In reply to Peter Hercek from comment #52) > I'm getting hangs-up with kernels 5.2.3 (often) and 5.1.15 (less often). > Radeon VII with 3 monitors. Each monitor connected through DP. I hear that 5.0.0.13 i

[Bug 110963] Wrong condition and wrong variable substitution in libgl1-amdgpu-mesa-dri in postinst script

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110963 Jeremy Newton changed: What|Removed |Added Status|REOPENED|ASSIGNED --- Comment #3 from Jeremy New

[Bug 110961] Are provided libdrm packages completely open source?

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110961 --- Comment #3 from Jeremy Newton --- I believe libdrm is open source with minor patches. MIT does not require distributing source code, although with that said, I am looking into doing this none the less. -- You are receiving this mail becau

[Bug 110962] Wrong dependencies cause force dependency on amdgpu-dkms

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110962 --- Comment #3 from Jeremy Newton --- This configuration is not supported. PRO unconditionally requires dkms. I will try to update the documentation. -- You are receiving this mail because: You are the assignee for the bug.___

[Bug 110956] List of 19.20-812932 release mistakes

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110956 --- Comment #8 from Jeremy Newton --- A few notes: - Installing on 32bit is unsupported, but you could in theory still do it as I don't thing we block this. This configuration is not advised. - I am looking into a better way of providing source

[Bug 110956] List of 19.20-812932 release mistakes

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110956 --- Comment #7 from Alex Deucher --- (In reply to Eric Engestrom from comment #6) > (In reply to Ilia Mirkin from comment #5) > > I think it's the right bugracker. Note that DRM/AMDgpu-pro component. It's > > meant for the AMD developers who ver

[Bug 110967] Naming packages with pro suffix depending if open or close source

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110967 Jeremy Newton changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 110956] List of 19.20-812932 release mistakes

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110956 Bug 110956 depends on bug 110967, which changed state. Bug 110967 Summary: Naming packages with pro suffix depending if open or close source https://bugs.freedesktop.org/show_bug.cgi?id=110967 What|Removed |Ad

[Bug 110957] wsa-amdgpu package has empty copyright file

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110957 Jeremy Newton changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 110956] List of 19.20-812932 release mistakes

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110956 Bug 110956 depends on bug 110957, which changed state. Bug 110957 Summary: wsa-amdgpu package has empty copyright file https://bugs.freedesktop.org/show_bug.cgi?id=110957 What|Removed |Added ---

[Bug 110960] Non-existent alternative dependencies in some deb packages

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110960 Jeremy Newton changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 110956] List of 19.20-812932 release mistakes

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110956 Bug 110956 depends on bug 110960, which changed state. Bug 110960 Summary: Non-existent alternative dependencies in some deb packages https://bugs.freedesktop.org/show_bug.cgi?id=110960 What|Removed |Added

[Bug 111243] Installation of 19.20 Fails

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111243 --- Comment #1 from Jeremy Newton --- It looks like you didn't do a clean install. For the time being, we recommend a full uninstall and reinstall after every driver update. -- You are receiving this mail because: You are the assignee for the

[Bug 111103] [Patch] to compile amdgpu-dkms 19.20 on debian stretch & buster

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=03 Jeremy Newton changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

[Bug 110898] [Patch] to compile amdgpu-dkms 19.10 on debian stretch & buster

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110898 Jeremy Newton changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

[RFC 3/4] drm/mipi-dbi: Support command mode panel drivers

2019-07-29 Thread Noralf Trønnes
= mipi_dbi_debugfs_init, + .name = "drm_mipi_dbi", + .desc = "DRM MIPI DBI", + .date = "20190729", + .major = 1, + .minor = 0, +}; + +/** + * drm

[RFC 4/4] drm/panel/ili9341: Support mi0283qt

2019-07-29 Thread Noralf Trønnes
Signed-off-by: Noralf Trønnes --- drivers/gpu/drm/panel/panel-ilitek-ili9341.c | 179 ++- 1 file changed, 170 insertions(+), 9 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9341.c b/drivers/gpu/drm/panel/panel-ilitek-ili9341.c index a755f3e60111..dd333a642159 1

[RFC 0/4] drm/mipi-dbi: Support panel drivers

2019-07-29 Thread Noralf Trønnes
Inspired by the thread[1] following the submission of a new ili9341 panel driver[2], I set out to see if I could support panel drivers in drm_mipi_dbi. I have included the original driver, done some prep work on it, added panel support to drm_mipi_dbi and converted mi0283qt to this new panel drive

[RFC 2/4] drm/panel/ili9341: Rebase and some more

2019-07-29 Thread Noralf Trønnes
Embed mipi_dbi in struct ili9341. Rebase on moved mipi-dbi, rename variable name. Add backlight_device to panel struct. mipi_dbi_hw_reset() already has a NULL check on the reset gpio. Prepare for more panels by reworking ili9341_config. Signed-off-by: Noralf Trønnes --- drivers/gpu/drm/panel/pan

[RFC 1/4] drm/panel: Add Ilitek ILI9341 parallel RGB panel driver

2019-07-29 Thread Noralf Trønnes
From: Josef Lusticky Add driver for Ilitek ILI9341 panels in parallel RGB mode Signed-off-by: Josef Lusticky --- MAINTAINERS | 6 + drivers/gpu/drm/panel/Kconfig| 9 + drivers/gpu/drm/panel/Makefile | 1 + drivers/gpu/drm/pan

[Bug 110405] No successful install of amdgpu 18.30 on Ubuntu 18.04.02 LTS

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110405 --- Comment #1 from Jeremy Newton --- Can you try a newer driver? 18.30 is pretty old and likely doesn't support 18.04.2. -- You are receiving this mail because: You are the assignee for the bug.___

[Bug 109834] No x86 libraries in new amdgpu-pro drivers

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109834 Jeremy Newton changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

[PATCH 4.14 205/293] dma-buf: balance refcount inbalance

2019-07-29 Thread Greg Kroah-Hartman
From: Jérôme Glisse commit 5e383a9798990c69fc759a4930de224bb497e62c upstream. The debugfs take reference on fence without dropping them. Signed-off-by: Jérôme Glisse Cc: Christian König Cc: Daniel Vetter Cc: Sumit Semwal Cc: linux-me...@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Cc

[Bug 110674] Crashes / Resets From AMDGPU / Radeon VII

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110674 --- Comment #53 from Anthony Rabbito --- Interesting, on 5.2.x with 2 monitors hooked up via HDMI and DP it behaves 75% of the time with most issues coming from xinit or sleep. Hopefully 5.3 will contain fixes -- You are receiving this mail be

[Bug 111231] random VM_L2_PROTECTION_FAULTs when loading a world in minetest on AMD ryzen 2200G integrated graphics

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111231 --- Comment #14 from deltasquared --- The apitrace no longer causes issues on my system either if I use AMD_DEBUG=nodpbb . I also decided to try this on minetest and *so far* (bearing in mind the issue was indetermistic in the first place, so a

[Bug 111244] amdgpu kernel 5.2 blank display after resume from suspend

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111244 --- Comment #6 from csp...@verizon.net --- I see your point, and you are correct. It seems the issue is not 100% reproducible. I will redo the bisect and test more thoroughly. Thank you. -- You are receiving this mail because: You are the assig

Re: [PATCH 00/11] JZ4740 SoC cleanup

2019-07-29 Thread Richard Weinberger
- Ursprüngliche Mail - >> Was this series tested with the Ben Nanonote device? >> I have one of these and from time to time I upgrade the kernel on it. > > Yes! Artur (Cc'd) tested it. > > You can test it yourself, after merging this patchset with: > https://git.kernel.org/pub/scm/linux/k

Re: [RFC PATCH 1/3] drm: introduce new struct drm_mem_region

2019-07-29 Thread Sam Ravnborg
Hi Brian. Small nit below - did not try to understand your patch. Sam > diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h > index 2c3bbb43c7d1..3d123eb10d62 100644 > --- a/include/drm/drm_mm.h > +++ b/include/drm/drm_mm.h > @@ -43,6 +43,8 @@ > #include > #include > #include

Re: [PATCH 1/1] drm: mxsfb: add i.MX6UL in Kconfig

2019-07-29 Thread Sam Ravnborg
Hi Fabio. On Mon, Jul 29, 2019 at 12:51:08PM -0300, Fabio Estevam wrote: > Hi Sam, > > On Mon, Jul 29, 2019 at 11:37 AM Sam Ravnborg wrote: > > > Could we throw a COMPILE_TEST in the mix so we get better build > > coverage too? > > There is no architecture dependency to build this driver, so w

Re: [PATCH v1 02/11] drm: drop uapi dependency from drm_print.h

2019-07-29 Thread Sam Ravnborg
Hi Christian. On Mon, Jul 29, 2019 at 03:28:15PM +, Koenig, Christian wrote: > Am 29.07.19 um 16:35 schrieb Sam Ravnborg: > Even then it so useless (which drm driver is this message for???) that I > want to remove them all :( > >>> Yeah, agree. I mean it is nice if the core drm funct

Re: [PATCH 00/11] JZ4740 SoC cleanup

2019-07-29 Thread Paul Cercueil
Hi Richard, Le lun. 29 juil. 2019 à 7:23, Richard Weinberger a écrit : On Fri, Jul 26, 2019 at 12:02 AM Paul Cercueil wrote: Hi, This patchset converts the Qi LB60 MIPS board to devicetree and makes it use all the shiny new drivers that have been developed or updated recently. All

[RFC PATCH 2/3] drm: Introduce DRM_MEM defines for specifying type of drm_mem_region

2019-07-29 Thread Brian Welty
Introduce DRM memory region types to be common for both drivers using TTM and for i915. For now, TTM continues to define it's own set but uses the DRM base definitions. Signed-off-by: Brian Welty --- include/drm/drm_mm.h| 8 include/drm/ttm/ttm_placement.h | 8 2 f

[RFC PATCH 3/3] drm/i915: Update intel_memory_region to use nested drm_mem_region

2019-07-29 Thread Brian Welty
Some fields are deleted from intel_memory_region in favor of instead using the new nested drm_mem_region structure. Note, this is based upon unmerged i915 series [1] in order to show how i915 might begin to integrate the proposed drm_mem_region. [1] https://lists.freedesktop.org/archives/intel-gf

[RFC PATCH 0/3] Propose new struct drm_mem_region

2019-07-29 Thread Brian Welty
This RFC series is first implementation of some ideas expressed earlier on dri-devel [1]. Some of the goals (open for much debate) are: - Create common base structure (subclass) for memory regions (patch #1) - Create common memory region types (patch #2) - Create common set of memory_region

[RFC PATCH 1/3] drm: introduce new struct drm_mem_region

2019-07-29 Thread Brian Welty
Move basic members of ttm_mem_type_manager into a new DRM memory region structure. The idea is for this base structure to be nested inside the TTM structure and later in Intel's proposed intel_memory_region. As comments in the code suggest, the following future work can extend the usefulness of t

[Bug 108882] Many different installation problems with amdgpu-pro-18.40-676022-rhel-6 driver in CentOS 6.10

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=108882 --- Comment #1 from Jeremy Newton --- It sounds like fglrx was not cleaned up properly. Unfortunately I'm not sure there's much we can do here. -- You are receiving this mail because: You are the assignee for the bug._

Re: [PATCH v11 1/6] drm: Add Content protection type property

2019-07-29 Thread Ramalingam C
On 2019-07-29 at 17:20:40 +0300, Pekka Paalanen wrote: > On Sun, 14 Jul 2019 16:30:08 +0530 > Ramalingam C wrote: > > > This patch adds a DRM ENUM property to the selected connectors. > > This property is used for mentioning the protected content's type > > from userspace to kernel HDCP authentic

[Bug 204363] EDID from Acer P1266 rejected as invalid

2019-07-29 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=204363 Adam Jackson (a...@redhat.com) changed: What|Removed |Added CC||a...@redhat.com --- Comm

[Bug 110381] Failed to updateMST allocation table forpipe idx:0

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110381 --- Comment #9 from John Francis --- I am still seeing this error on kernel 5.2.2. I think it happens when I switch away the monitors to another host on the KVM switch. Switching back later, I get only 1 display, problematic as some windows are

[Bug 108883] Vulkan support broken in amdgpu-pro-18.40-676022-rhel-6 driver in CentOS 6.10

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=108883 Jeremy Newton changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 107826] amdgpu-pro 18.30/18.40: Missing xserver modesetting package (--px install)

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107826 Jeremy Newton changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug 108994] Cannot install version 18.40 due to dependency issues

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=108994 Jeremy Newton changed: What|Removed |Added Resolution|--- |WONTFIX Status|NEW

Re: [PATCH 2/2] drm/komeda: Enable dual-link support

2019-07-29 Thread Liviu Dudau
On Tue, Jun 18, 2019 at 09:10:49AM +0100, james qian wang (Arm Technology China) wrote: > Komeda HW can support dual-link which splits display frame to two halves > (left/link0, right/link1) and output them by two output links. > Due to the halved pixel rate of each link, the pxlclk of dual-link c

[Bug 110968] Allow ubuntu users to install on other ubuntu versions

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110968 --- Comment #3 from Jeremy Newton --- This is not a Ubuntu issue, we do this purposely. Let me discuss internally and I can try to get a better solution. -- You are receiving this mail because: You are the assignee for the bug.___

Re: [PATCH 1/2] drm/komeda: Use drm_display_mode "crtc_" prefixed hardware timings

2019-07-29 Thread Liviu Dudau
On Tue, Jun 18, 2019 at 09:10:40AM +0100, james qian wang (Arm Technology China) wrote: > struct drm_display_mode contains two copies of timings. > - plain timings. > - hardware timings, the ones with "crtc_" prefix. > According to the definition, update komeda to use the hardware timing. > > Sig

[Bug 111232] 3200 Memory Crash My System

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111232 --- Comment #1 from Alex Deucher --- Can you bisect? -- You are receiving this mail because: You are the assignee for the bug.___ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.

[Bug 111231] random VM_L2_PROTECTION_FAULTs when loading a world in minetest on AMD ryzen 2200G integrated graphics

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111231 --- Comment #13 from Pierre-Eric Pelloux-Prayer --- Using AMD_DEBUG=nodpbb "fixes" the problem. -- You are receiving this mail because: You are the assignee for the bug.___ dri-devel mailing list dr

Re: [PATCH 1/1] drm: mxsfb: add i.MX6UL in Kconfig

2019-07-29 Thread Fabio Estevam
Hi Sam, On Mon, Jul 29, 2019 at 11:37 AM Sam Ravnborg wrote: > Could we throw a COMPILE_TEST in the mix so we get better build > coverage too? There is no architecture dependency to build this driver, so we already have build coverage for it. Regards, Fabio Estevam ___

Re: [PATCH v2 7/8] drm/etnaviv: provide MMU context to etnaviv_gem_mapping_get

2019-07-29 Thread Philipp Zabel
On Fri, 2019-07-05 at 19:17 +0200, Lucas Stach wrote: > In preparation to having a context per process, etnaviv_gem_mapping_get > should not use the current GPU context, but needs to be told which > context to use. > > Signed-off-by: Lucas Stach > --- > drivers/gpu/drm/etnaviv/etnaviv_gem.c

Re: [PATCH v2 6/8] drm/etnaviv: split out starting of FE idle loop

2019-07-29 Thread Philipp Zabel
On Fri, 2019-07-05 at 19:17 +0200, Lucas Stach wrote: > Move buffer setup and starting of the FE loop in the kernel ringbuffer > into a separate function. This is a preparation to start the FE later > in the submit process. > > Signed-off-by: Lucas Stach > --- > drivers/gpu/drm/etnaviv/etnaviv_g

Re: [PATCH v2 5/8] drm/etnaviv: rework MMU handling

2019-07-29 Thread Philipp Zabel
On Fri, 2019-07-05 at 19:17 +0200, Lucas Stach wrote: > This reworks the MMU handling to make it possible to have multiple MMU > contexts. > A context is basically one instance of GPU page tables. Currently we have one > set of page tables per GPU, which isn't all that clever, as it has the > foll

Re: [PATCH v1 02/11] drm: drop uapi dependency from drm_print.h

2019-07-29 Thread Koenig, Christian
Am 29.07.19 um 16:35 schrieb Sam Ravnborg: Even then it so useless (which drm driver is this message for???) that I want to remove them all :( >>> Yeah, agree. I mean it is nice if the core drm functions use a prefix >>> for debug output. >>> >>> But I actually don't see the point for ind

[PATCH libdrm] tests/util/kms.c: Add module names for Arm display drivers.

2019-07-29 Thread Liviu Dudau
From: Liviu Dudau Add the names of the kernel modules for the Arm display drivers so that tests inside libDRM can auto-detect their presence. Signed-off-by: Liviu Dudau --- tests/util/kms.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/util/kms.c b/tests/util/kms.c index dd1bbee

Re: [PATCH 1/1] drm: mxsfb: add i.MX6UL in Kconfig

2019-07-29 Thread Sam Ravnborg
Hi Sébastien, On Mon, Jul 29, 2019 at 11:27:37AM -0300, Fabio Estevam wrote: > Hi Sébastien, > > On Mon, Jul 29, 2019 at 11:14 AM Sébastien Szymanski > wrote: > > > config DRM_MXSFB > > - tristate "i.MX23/i.MX28/i.MX6SX MXSFB LCD controller" > > + tristate "i.MX23/i.MX28/i.MX6SX/i.M

Re: [PATCH v1 02/11] drm: drop uapi dependency from drm_print.h

2019-07-29 Thread Sam Ravnborg
> >> > >> Even then it so useless (which drm driver is this message for???) that I > >> want to remove them all :( > > > > Yeah, agree. I mean it is nice if the core drm functions use a prefix > > for debug output. > > > > But I actually don't see the point for individual drivers. > > We should a

Re: [PATCH 1/1] drm: mxsfb: add i.MX6UL in Kconfig

2019-07-29 Thread Fabio Estevam
Hi Sébastien, On Mon, Jul 29, 2019 at 11:14 AM Sébastien Szymanski wrote: > config DRM_MXSFB > - tristate "i.MX23/i.MX28/i.MX6SX MXSFB LCD controller" > + tristate "i.MX23/i.MX28/i.MX6SX/i.MX6UL MXSFB LCD controller" This IP is also found on i.MX6SL, i.MX7D, i.MX7S, i.MX8M, i.MX8QX

Re: [PATCH v3 6a/7] dt-bindings: Add ANX6345 DP/eDP transmitter binding

2019-07-29 Thread Torsten Duwe
On Fri, Jul 26, 2019 at 06:36:01PM +0200, Maxime Ripard wrote: > > + > > + dvdd12-supply: > > +maxItems: 1 > > +description: Regulator for 1.2V digital core power. > > +$ref: /schemas/types.yaml#/definitions/phandle > > + > > + dvdd25-supply: > > +maxItems: 1 > > +description:

[Bug 204365] New: amdgpu crashes when using parameter "drm.edid_firmware"

2019-07-29 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=204365 Bug ID: 204365 Summary: amdgpu crashes when using parameter "drm.edid_firmware" Product: Drivers Version: 2.5 Kernel Version: 5.2.4 Hardware: All OS: Li

Re: [PATCH v11 1/6] drm: Add Content protection type property

2019-07-29 Thread Pekka Paalanen
On Sun, 14 Jul 2019 16:30:08 +0530 Ramalingam C wrote: > This patch adds a DRM ENUM property to the selected connectors. > This property is used for mentioning the protected content's type > from userspace to kernel HDCP authentication. > > Type of the stream is decided by the protected content

Re: [PATCH v3 1/1] drm/vblank: drop use of DRM_WAIT_ON()

2019-07-29 Thread Michel Dänzer
On 2019-07-26 11:06 p.m., Sam Ravnborg wrote: > DRM_WAIT_ON() is from the deprecated drm_os_linux header and > the modern replacement is the wait_event_*. > > The return values differ, so a conversion is needed to > keep the original interface towards userspace. > Introduced a switch/case to make

[Bug 109456] KVM VFIO guest X hang with guest kernel > 4.15

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109456 libgra...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 109456] KVM VFIO guest X hang with guest kernel > 4.15

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109456 --- Comment #8 from libgra...@gmail.com --- Got back to this again recently and can confirm it's fixed in Qemu git (for 4.1) now. Many thanks :) -- You are receiving this mail because: You are the assignee for the bug._

[Bug 111231] random VM_L2_PROTECTION_FAULTs when loading a world in minetest on AMD ryzen 2200G integrated graphics

2019-07-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=111231 --- Comment #12 from Pierre-Eric Pelloux-Prayer --- Thanks for the bug report. I could reproduce the bug using the provided apitrace, both on a Ryzen platform and on a Vega Mobile laptop (can't reproduce on Navi). Using MESA_DEBUG=flush or AM

  1   2   >