[Bug 106666] amdgpu 0000:09:00.0: [gfxhub] VMC page fault (src_id:0 ring:56 vmid:3 pas_id:0), [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx timeout, last signaled seq=327845, last emitted seq=32

2018-06-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=10 --- Comment #10 from udo --- Created attachment 139982 --> https://bugs.freedesktop.org/attachment.cgi?id=139982=edit dmesg -- You are receiving this mail because: You are the assignee for the

[Bug 106666] amdgpu 0000:09:00.0: [gfxhub] VMC page fault (src_id:0 ring:56 vmid:3 pas_id:0), [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx timeout, last signaled seq=327845, last emitted seq=32

2018-06-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=10 --- Comment #9 from udo --- This bug also happens in amd-staging-drm-next kernel of 02-jun-2018. -- You are receiving this mail because: You are the assignee for the bug.___ dri-devel mailing list

[Bug 106788] DP audio plays slower than HDMI

2018-06-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106788 Bug ID: 106788 Summary: DP audio plays slower than HDMI Product: DRI Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal

[git pull] drm fixes for 4.17-rc8/final

2018-06-02 Thread Dave Airlie
Hi Linus, A few final fixes: i915: - Fix for potential Spectre vector in the new query uAPI - Fix NULL pointer deref (FDO #106559) - DMI fix to hide LVDS for Radiant P845 (FDO #105468) amdgpu: - suspend/resume DC regression fix - underscan flicker fix on fiji - gamma setting fix

Re: Linux 4.17-rc7

2018-06-02 Thread Pavel Machek
Hi! > On 30 May 2018 at 12:17, Pavel Machek wrote: > >> The bulk of it is really pretty trivial one-liners, and nothing looks > >> particularly scary. Let's see how next week looks, but if nothing really > >> happens I suspect we can make do without an rc8. > >> > >> Shortlog appended as usual.

[PATCH v2] staging: vboxvideo: Update driver to use drm_dev_register.

2018-06-02 Thread Fabio Rafael da Rosa
The use of load and unload hooks is deprecated. DRM drivers should use drm_dev_alloc|drm_dev_init and drm_dev_register for initialization and publishing. Signed-off-by: Fabio Rafael da Rosa Reviewed-by: Nicholas Mc Guire --- Changes in v2: - Replace dev_dev_unref (also depretated) by

[Bug 106671] Frequent lock ups for AMD RX 550 graphics card

2018-06-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106671 --- Comment #6 from Alan W. Irwin --- Edit of previous comment: of the 3D game, -> of the 3D game, foobillard, -- You are receiving this mail because: You are the assignee for the bug.___ dri-devel

[Bug 106671] Frequent lock ups for AMD RX 550 graphics card

2018-06-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106671 --- Comment #5 from Alan W. Irwin --- Hi Michel: Since the lock ups occurred during ordinary (KDE) desktop use when I wasn't running 3D games I ignored mesa upgrades and instead concentrated first on trying a new kernel version (from 4.16.5 to

Re: [PATCH] staging: vboxvideo: Update driver to use drm_dev_register.

2018-06-02 Thread Fabio Rafael da Rosa
On 2018-06-02 09:15, Nicholas Mc Guire wrote: On Sat, Jun 02, 2018 at 08:41:44AM -0300, Fabio Rafael da Rosa wrote: The use of load and unload hooks is deprecated. DRM drivers should use drm_dev_alloc|drm_dev_init and drm_dev_register for initialization and publishing. Signed-off-by: Fabio

[PATCH] staging: vboxvideo: Update driver to use drm_dev_register.

2018-06-02 Thread Fabio Rafael da Rosa
The use of load and unload hooks is deprecated. DRM drivers should use drm_dev_alloc|drm_dev_init and drm_dev_register for initialization and publishing. Signed-off-by: Fabio Rafael da Rosa --- drivers/staging/vboxvideo/TODO| 1 - drivers/staging/vboxvideo/vbox_drv.c | 33

Re: [PATCH] drm/edid: Quirk Vive Pro VR headset non-desktop.

2018-06-02 Thread Daniel Stone
On 30 May 2018 at 15:03, Jani Nikula wrote: > On Wed, 30 May 2018, Daniel Stone wrote: >> On 29 May 2018 at 12:52, Lubosz Sarnecki >> wrote: >>> This adds the Vive Pro's EDID information and >>> sets EDID_QUIRK_NON_DESKTOP. >> >> Trivially: >> Reviewed-by: Daniel Stone > > Cc:

[PATCH] drm/i2c: tda998x: remove an unecessary check

2018-06-02 Thread Dan Carpenter
cec_read() returns a u8 so "val" can't be negative. If there is an error in cec_read() then it returns zero. Signed-off-by: Dan Carpenter diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c index 6ebd8842dbcc..86e3aee44686 100644 ---