[Bug 109001] Freezes when waking up after screen goes blank.

2018-12-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109001 --- Comment #9 from Matt Garman --- I too am having the same problem. After the screen blanks, the system is barely usable: pauses/freezes randomly. If I switch to a virtual (text) console, everything works as expected. Switching back to X

[Bug 108781] 4.19 Regression - Hawaii (R9 390) boot failure - Invalid PCC GPIO / invalid powerlevel state / Fatal error during GPU init

2018-12-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=108781 --- Comment #36 from danglingpointerexcept...@gmail.com --- I was getting similar unusable issues as everyone with 4.19.x with my R9-290X so I decided to wait for 4.20 I installed 4.20.0 to see if the problem has been resolved but it has

Re: [PATCH v2 0/14] drm: minimize drmP.h dependencies

2018-12-30 Thread Sam Ravnborg
> Hi Sam, > > And the $subjects that say "reply" should say "rely" I think. Yep, fixed. Will be part of v3. Thanks, Sam ___ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel

[Bug 201815] Mouse Pointer Disappears when touching top of the screen

2018-12-30 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=201815 siyia (eutychio...@gmail.com) changed: What|Removed |Added Kernel Version|4.20rc3-rc5 |4.20 -- You are

[Bug 201815] Mouse Pointer Disappears when touching top of the screen

2018-12-30 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=201815 --- Comment #9 from siyia (eutychio...@gmail.com) --- tried both wayland and xorg on kde -- You are receiving this mail because: You are watching the assignee of the bug. ___ dri-devel mailing list

[Bug 201815] Mouse Pointer Disappears when touching top of the screen

2018-12-30 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=201815 --- Comment #8 from siyia (eutychio...@gmail.com) --- Hello issue persists on latest kernel 4.20 stable -- You are receiving this mail because: You are watching the assignee of the bug. ___ dri-devel

[PATCH v4 03/11] vga-switcheroo: make PCI dependency explicit

2018-12-30 Thread Sinan Kaya
This driver depends on the PCI infrastructure but the dependency has not been explicitly called out. Fixes: 5d32a66541c46 ("PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set") Signed-off-by: Sinan Kaya Reviewed-by: Lukas Wunner Acked-by: Daniel Vetter --- drivers/gpu/vga/Kconfig | 1 +

Re: [PATCH v2] drm: forward declare struct drm_file in drm_syncobj.h

2018-12-30 Thread Laurent Pinchart
Hi Jani, Thank you for the patch. On Friday, 28 December 2018 10:28:15 EET Jani Nikula wrote: > Make it easier to drop drmP.h includes. Switch from "" to <> includes > while at it. > > v2: forward declare instead of including drm_file.h (Daniel) Reviewed-by: Laurent Pinchart but with the

Re: [PATCH 4/6] drm: include types.h from drm_hdcp.h

2018-12-30 Thread Laurent Pinchart
Hi Jani, Thank you for the patch. On Thursday, 27 December 2018 14:56:39 EET Jani Nikula wrote: > Make it easier to drop drmP.h includes. Same comment as for the previous patches, let's explain the reason. "drm_hdcp.h uses kernel integer types, make it self-contained by including

Re: [PATCH v2 0/14] drm: minimize drmP.h dependencies

2018-12-30 Thread Sam Ravnborg
On Sun, Dec 30, 2018 at 06:48:24PM +0100, Sam Ravnborg wrote: > The goal with this small series The series should have been a reply to this cover letter, but my tooling lost me - sorry! Sam ___ dri-devel mailing list

Re: [PATCH 3/6] drm: include idr.h from drm_file.h

2018-12-30 Thread Laurent Pinchart
Hi Jani, Thank you for the patch. On Thursday, 27 December 2018 14:56:38 EET Jani Nikula wrote: > Make it easier to drop drmP.h includes. How about explaining why idr.h is needed ? "drm_file.h embeds idr structures in DRM-specific structures. Include the corresponding header to make

Re: [PATCH v2] drm: un-inline drm_legacy_findmap()

2018-12-30 Thread Laurent Pinchart
Hi Jani, Thank you for the patch. On Friday, 28 December 2018 15:04:46 EET Jani Nikula wrote: > Also include drm_hashtab.h and add struct drm_device forward declaration > in drm_legacy.h to make it more self-contained. Make it easier to drop > drmP.h includes. > > v2: avoid including

[PATCH v2 10/14] drm: remove include of drmP.h from drm_modeset_helper.h

2018-12-30 Thread Sam Ravnborg
drmP.h is an relic from the days when there was a single header file. To enable the removal of drmP.h from all users drop include of drmP.h from drm_modeset_helper.h. A few files relied on the file included in drmP.h - add explicit include statements to these files. Build tested with arm and x86.

[PATCH v2 14/14] drm: remove drmP.h from drm_gem_cma_helper.h

2018-12-30 Thread Sam Ravnborg
With all dependencies fixed we can now remove drmP.h from drm_gem_cma_helper.h. It is replaced by the include files required, or forward declarations as appropritate. Signed-off-by: Sam Ravnborg Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Sean Paul Cc: David Airlie Cc: Daniel Vetter ---

[PATCH v2 08/14] drm: remove include of drmP.h from bridge/dw_hdmi.h

2018-12-30 Thread Sam Ravnborg
drmP.h is an relic from the days when there was a single header file. To enable the removal of drmP.h from all users drop include of drmP.h from bridge/dw_hdmi.h. A few files relied on the file included in drmP.h - add explicit include statements or forward declarations to these files. Build

[PATCH v2 13/14] drm/tinydrm: do not reply on drmP.h from drm_gem_cma_helper.h

2018-12-30 Thread Sam Ravnborg
drmP.h was the only header file in the past and a lot of files rely on that drmP.h defines everything. The goal is to one day to delete drmP.h and as a step towards this it will no longer be included in the headers files in include/drm/ To prepare tinydrm/ for this add dependencies that othwewise

[PATCH v2 09/14] drm: remove include of drmP.h from drm_encoder_slave.h

2018-12-30 Thread Sam Ravnborg
No further changes required. Signed-off-by: Sam Ravnborg Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Sean Paul Cc: David Airlie Cc: Daniel Vetter --- include/drm/drm_encoder_slave.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/drm/drm_encoder_slave.h

[PATCH v2 0/14] drm: minimize drmP.h dependencies

2018-12-30 Thread Sam Ravnborg
The goal with this small series is to remove the last bits that prevents us from removing drmP.h driver-by-driver or file by file. - drmP.h is now stripped down to include files and forward declarations. - All header files in include/drm/ no longer include drmP.h. The series was made on top of

[PATCH v2 11/14] drm/arc: do not reply on drmP.h from drm_gem_cma_helper.h

2018-12-30 Thread Sam Ravnborg
drmP.h was the only header file in the past and a lot of files rely on that drmP.h defines everything. The goal is to one day to delete drmP.h and as a step towards this it will no longer be included in the headers files in include/drm/ To prepare arc/ for this add dependencies that othwewise was

[PATCH v2 04/14] drm: make drm_framebuffer.h self contained

2018-12-30 Thread Sam Ravnborg
Add forward declaration and pull in include file to make drm_framebuffer.h self contained. While add it order include files alphabetically. The use of TASK_COMM_LEN is the reason for including sched.h. I could not see any good way to avoid this dependency, and users of drm_framebuffer.comm

[PATCH v2 05/14] drm: make drm_file.h self contained

2018-12-30 Thread Sam Ravnborg
drm_file.h embed struct idr, so this file need to know the full type definition. With this change users of drm_file.h are no longer forced to include idr.h - a file they usually get from drmP.h This makes it simpler to remove drmP.h includes Signed-off-by: Sam Ravnborg Cc: Jani Nikula Cc:

[PATCH v2 12/14] drm/stm: do not reply on drmP.h from drm_gem_cma_helper.h

2018-12-30 Thread Sam Ravnborg
drmP.h was the only header file in the past and a lot of files rely on that drmP.h defines everything. The goal is to one day to delete drmP.h and as a step towards this it will no longer be included in the headers files in include/drm/ To prepare stm/ for this add dependencies that othwewise was

[PATCH v2 02/14] drm: drm_device.h: update comments to kernel-doc style

2018-12-30 Thread Sam Ravnborg
Updated comment style to kernel-doc format in drm_device.h In struct drm_device there are 12 struct members without doc: - registered - filelist_mutex - filelist - irq - vbl_lock - event_lock - hose - sigdata - sigdata.context - sigdata.lock - agp_buffer_map - agp_buffer_token They all need

[PATCH v2 01/14] drm: move DRM_IF_VERSION to drm_internal.h

2018-12-30 Thread Sam Ravnborg
Move DRM_IF_VERSION out of drmP.h to allow users to get rid of the drmP include. Signed-off-by: Sam Ravnborg Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Sean Paul Cc: David Airlie Cc: Daniel Vetter Signed-off-by: Daniel Vetter Link:

[PATCH v2 07/14] drm: move EXPORT_SYMBOL_FOR_TESTS_ONLY to drm_util.h

2018-12-30 Thread Sam Ravnborg
In the quest to get rid of drmP.h move the newly added EXPORT_SYMBOL_FOR_TESTS_ONLY to drm_util.h. Fix the single user. Add a note to drmP.h to avoid further use of it. Signed-off-by: Sam Ravnborg Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Sean Paul Cc: David Airlie Cc: Daniel Vetter ---

[PATCH v2 06/14] drm: move drm_can_sleep() to drm_util.h

2018-12-30 Thread Sam Ravnborg
Move drm_can_sleep() out of drmP.h to allow users to get rid of the drmP.h include. There was no header file that was a good match for this helper function. So add this to drm_util with the relevant includes. Update comments to use kernel-doc style. Add FIXME to drm_can_sleep and add note that

[PATCH v2 03/14] drm: move DRM_SWITCH_POWER defines to drm_device.h

2018-12-30 Thread Sam Ravnborg
Move DRM_SWITCH_POWER out of drmP.h to allow users to get rid of the drmP include. Moved to drm_device.h because drm_device.switch_power_state is the only user. Converted to enum and added sparse kerneldoc comments. Signed-off-by: Sam Ravnborg Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Sean

Re: [PATCH v2 3/7] drm: rockchip: vop: add rk3066 vop definitions

2018-12-30 Thread Heiko Stuebner
Hi Johan, Am Samstag, 29. Dezember 2018, 14:33:14 CET schrieb Johan Jonker: > From: Mark Yao > > This patch adds the rk3066 VOP definitions. > > The VOP or LCD Controller serves as interface between > framebuffer memory and a display device (LCD panel or TV set). > > This SOC has two

Re: [PATCH v2 2/7] clk: rockchip: rk3188: add CLK_SET_RATE_PARENT for lcdc dclk

2018-12-30 Thread Heiko Stuebner
Am Samstag, 29. Dezember 2018, 14:33:13 CET schrieb Johan Jonker: > From: Finley Xiao > > Add CLK_SET_RATE_PARENT for lcdc dclk. > > Signed-off-by: Finley Xiao > Signed-off-by: Johan Jonker applied for 4.22 Thanks Heiko ___ dri-devel mailing

[PATCH 7/8] drm/msm/dsi: reduce indentation

2018-12-30 Thread Julia Lawall
Delete tab aligning a statement with the right hand side of a preceding assignment rather than the left hand side. Found with the help of Coccinelle. Signed-off-by: Julia Lawall --- drivers/gpu/drm/msm/dsi/phy/dsi_phy.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 0/8] reduce indentation

2018-12-30 Thread Julia Lawall
These patches fix cases where a subsequent statement is aligned with the right hand side of an assignment rather than the left hand side. This was done using the following semantic match (http://coccinelle.lip6.fr/). It has a lot of false positives, because Coccinelle doesn't record the

Re: [PATCH 02/10] drm/etnaviv: mmuv2: don't map zero page

2018-12-30 Thread Guido Günther
Hi Lucas, On Wed, Dec 19, 2018 at 03:45:38PM +0100, Lucas Stach wrote: > Keep the page at address 0 as faulting to catch any potential state > setup issues early. This is a nice idea! But applying this and making mesa hit that page leads to the process hanging in D state over here on GC7000: # [

[Bug 109182] [AMD][TAHITI XT] CSGO rendering artifact on dashboard human body

2018-12-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109182 Bug ID: 109182 Summary: [AMD][TAHITI XT] CSGO rendering artifact on dashboard human body Product: Mesa Version: git Hardware: x86-64 (AMD64) OS: Linux

Re: [PATCH v2 1/7] ARM: dts: rockchip: rk3066: add HCLK_HDMI to pmu node

2018-12-30 Thread Heiko Stuebner
Am Samstag, 29. Dezember 2018, 14:33:12 CET schrieb Johan Jonker: > A MK808 TV stick with rk3066 processor > boots normal with logo and console, > but after booting the monitor remains black. > This patch fixes a vblank wait time out > by adding HCLK_HDMI to the pmu node. > The HCLK_HDMI clock is

[PATCH] drm: Reorder set_property_atomic to avoid returning with an active ww_ctx

2018-12-30 Thread Chris Wilson
Delay the drm_modeset_acquire_init() until after we check for an allocation failure so that we can return immediately upon error without having to unwind. WARNING: lock held when returning to user space! 4.20.0+ #174 Not tainted

[Bug 109080] Broken video playback colors on AMD Ryzen 5 (PRO) Mobile 2500U in 18.1 and 18.2

2018-12-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109080 --- Comment #1 from Rafał Miłecki --- The announcement on Mesa 3D webpage says: > NOTE: It is anticipated that 18.2.8 will be the final release in the 18.2 > series. Users of 18.2 are encouraged to migrate to the 18.3 series in order > to

[Bug 109181] Mesa git causes AMDGPU hang, Tonga Firepro chip W7170M MXM

2018-12-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109181 Bug ID: 109181 Summary: Mesa git causes AMDGPU hang, Tonga Firepro chip W7170M MXM Product: Mesa Version: git Hardware: x86-64 (AMD64) OS: Linux (All)

Re: [Nouveau] [PATCH] drm/nouveau: Don't disable polling in fallback mode

2018-12-30 Thread Ilia Mirkin
Ben - ping? Just ran into this myself on a NV42. On Wed, Nov 14, 2018 at 11:01 AM Takashi Iwai wrote: > > On Fri, 14 Sep 2018 13:59:25 +0200, > Martin Peres wrote: > > > > On 14/09/2018 10:28, Ben Skeggs wrote: > > > On Wed, 12 Sep 2018 at 20:59, Takashi Iwai wrote: > > >> > > >> When a fan is