[Bug 91780] Rendering issues with geometry shader

2015-11-11 Thread bugzilla-dae...@freedesktop.org
dri-devel/attachments/20151111/2a251fc1/attachment.html>

[PATCH 00/25] Exynos DRM: new life of IPP (Image Post Processing) subsystem

2015-11-11 Thread Emil Velikov
Hello Marek, On 10 November 2015 at 13:23, Marek Szyprowski wrote: > Dear All, > > This patch series introduces a new life into Exynos IPP (Image Post > Processing) subsystem by integrating it (transparently for userspace > applications) with Exynos DRM core plane management. This means that all

[PATCH 00/19] drm: Add Allwinner A10 display engine support

2015-11-11 Thread Maxime Ripard
system on a TV would need to adjust its DT? it doesn't feel really pratical. > What's needed for sure is some generic way to do one initial (atomic) > modeset to hammer all these settings into the driver. That would be really > useful to have, since currently that's tied to the fbdev emulation, which > means if you don't have that it will be simply lost. I do have that, and it mostly works except for the things we already discussed (overscan, text based video mode parsing). Thanks! Maxime -- Maxime Ripard, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/8594ebd6/attachment-0001.sig>

[Nouveau] [PATCH] drm/nouveau: Fix pre-nv50 pageflip events (v3) -> v4

2015-11-11 Thread poma
On 10.11.2015 17:25, Mario Kleiner wrote: > On 11/10/2015 05:00 PM, Thierry Reding wrote: >> On Tue, Nov 10, 2015 at 03:54:52PM +0100, Mario Kleiner wrote: >>> From: Daniel Vetter >>> >>> Apparently pre-nv50 pageflip events happen before the actual vblank >>> period. Therefore that functionality g

[Bug 92907] ARB_copy_image breaks recording with obs-studio

2015-11-11 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/3eb59e4d/attachment-0001.html>

[RFC v3 2/2] drm/bridge: Add I2C based driver for ps8640 bridge

2015-11-11 Thread Jitao Shi
This patch adds drm_bridge driver for parade DSI to eDP bridge chip. Signed-off-by: Jitao Shi --- changes since v2: 1. Fixed Function Return val. 2. Tune power supply name easy read. 3. Use i2c_new_dummy for more i2c pages --- drivers/gpu/drm/bridge/Kconfig |9

[RFC v3 1/2] Documentation: bridge: Add documentation for ps8640 DT properties

2015-11-11 Thread Jitao Shi
Add documentation for DT properties supported by ps8640 DSI-eDP converter. Signed-off-by: Jitao Shi Acked-by: Rob Herring --- changes since v2: tune properties in example match Required properties --- .../devicetree/bindings/display/bridge/ps8640.txt | 43 1 file

[Bug 92907] ARB_copy_image breaks recording with obs-studio

2015-11-11 Thread bugzilla-dae...@freedesktop.org
a full GL spec release (where these things are often updated). -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015

[Bug 92907] ARB_copy_image breaks recording with obs-studio

2015-11-11 Thread bugzilla-dae...@freedesktop.org
ceiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/8c62f84f/attachment.html>

[Bug 92907] ARB_copy_image breaks recording with obs-studio

2015-11-11 Thread bugzilla-dae...@freedesktop.org
u are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/3d6194a7/attachment.html>

[Bug 92907] ARB_copy_image breaks recording with obs-studio

2015-11-11 Thread bugzilla-dae...@freedesktop.org
. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151111/c9621047/attachment.html>

[PATCH 1/2] drm/i915: Don't clobber the addfb2 ioctl params

2015-11-11 Thread Ville Syrjälä
On Wed, Nov 11, 2015 at 05:20:10PM +, Chris Wilson wrote: > On Wed, Nov 11, 2015 at 07:11:28PM +0200, ville.syrjala at linux.intel.com > wrote: > > From: Ville Syrjälä > > > > We try to convert the old way of of specifying fb tiling (obj->tiling) > > into the new fb modifiers. We store the

[Bug 92907] ARB_copy_image breaks recording with obs-studio

2015-11-11 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/c5fc39fe/attachment.html>

[PATCH i-g-t] tests/kms_addfb_basic: Add clobbered-modifier subtest

2015-11-11 Thread ville.syrj...@linux.intel.com
From: Ville Syrjälä Make sure the kernel doesn't clobber the modifiers when the user didn't pass any. Signed-off-by: Ville Syrjälä --- tests/kms_addfb_basic.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c index d466e4d..73

[PATCH 2/2] drm: Pass the user drm_mode_fb_cmd2 as const to .fb_create()

2015-11-11 Thread ville.syrj...@linux.intel.com
From: Ville Syrjälä Drivers shouldn't clobber the passed in addfb ioctl parameters. i915 was doing just that. To prevent it from happening again, pass the struct around as const, starting all the way from internal_framebuffer_create(). Signed-off-by: Ville Syrjälä --- I tried to cross-compi

[PATCH 1/2] drm/i915: Don't clobber the addfb2 ioctl params

2015-11-11 Thread ville.syrj...@linux.intel.com
From: Ville Syrjälä We try to convert the old way of of specifying fb tiling (obj->tiling) into the new fb modifiers. We store the result in the passed in mode_cmd structure. But that structure comes directly from the addfb2 ioctl, and gets copied back out to userspace, which means we're clobbe

[Bug 92907] ARB_copy_image breaks recording with obs-studio

2015-11-11 Thread bugzilla-dae...@freedesktop.org
tachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/cbe4d971/attachment.html>

[PATCH 0/3] drm/i2c: tda998x: Add support for atomic modesetting.

2015-11-11 Thread Liviu Dudau
On Wed, Nov 11, 2015 at 05:51:52PM +, Russell King - ARM Linux wrote: > On Wed, Nov 11, 2015 at 03:34:32PM +, Liviu Dudau wrote: > > While going through the code testing I've noticed an unbalanced > > .unbind missing drm_connector_unregister() > > That actually doesn't matter, as DRM autom

[Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong

2015-11-11 Thread bugzilla-dae...@freedesktop.org
eiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/4cbaae58/attachment.html>

[PATCH 0/3] drm/i2c: tda998x: Add support for atomic modesetting.

2015-11-11 Thread Russell King - ARM Linux
On Wed, Nov 11, 2015 at 03:34:32PM +, Liviu Dudau wrote: > While going through the code testing I've noticed an unbalanced > .unbind missing drm_connector_unregister() That actually doesn't matter, as DRM automatically tears them down anyway, so this isn't an urgent change. However, it's good

[Bug 92850] Segfault loading War Thunder

2015-11-11 Thread bugzilla-dae...@freedesktop.org
: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151111/510f704e/attachment.html>

[Bug 92850] Segfault loading War Thunder

2015-11-11 Thread bugzilla-dae...@freedesktop.org
the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/42644287/attachment.html>

[PATCH 1/2] drm/i915: Don't clobber the addfb2 ioctl params

2015-11-11 Thread Chris Wilson
On Wed, Nov 11, 2015 at 07:24:40PM +0200, Ville Syrjälä wrote: > On Wed, Nov 11, 2015 at 05:20:10PM +, Chris Wilson wrote: > > On Wed, Nov 11, 2015 at 07:11:28PM +0200, ville.syrjala at linux.intel.com > > wrote: > > > From: Ville Syrjälä > > > > > > We try to convert the old way of of s

[Bug 106291] amdgpu fails GPU reset when resuming from suspend

2015-11-11 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=106291 --- Comment #9 from universaledge97 at gmail.com --- Created attachment 192801 --> https://bugzilla.kernel.org/attachment.cgi?id=192801&action=edit dmesg 4.3.0 - Xorg hang I ended up having to reinstall Arch Linux after my gpg directory was cor

[Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong

2015-11-11 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151111/e0b1555f/attachment.html>

[PATCH 1/2] drm/i915: Don't clobber the addfb2 ioctl params

2015-11-11 Thread Chris Wilson
On Wed, Nov 11, 2015 at 07:11:28PM +0200, ville.syrjala at linux.intel.com wrote: > From: Ville Syrjälä > > We try to convert the old way of of specifying fb tiling (obj->tiling) > into the new fb modifiers. We store the result in the passed in mode_cmd > structure. But that structure comes di

[PATCH v9 15/17] drm: bridge: analogix/dp: try force hpd after plug in lookup failed

2015-11-11 Thread Rob Herring
On Fri, Oct 30, 2015 at 09:09:15AM +0800, Yakir Yang wrote: > Some edp screen do not have hpd signal, so we can't just return > failed when hpd plug in detect failed. > > This is an hardware property, so we need add a devicetree property > "analogix,need-force-hpd" to indicate this sutiation. > >

NULL pointer deref at 0xb0, IP drm_calc_timestamping_constants+0x86/0x130 [drm]

2015-11-11 Thread Jeff Moyer
- next part -- An embedded and charset-unspecified text was scrubbed... Name: dmesg URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/51b3a0ae/attachment-0002.ksh> -- next part -- An embedded and charset-unspecified text was sc

drm: Bogus WARN() in drm_atomic_helper_update_legacy_modeset_state() ?

2015-11-11 Thread Liviu Dudau
On Tue, Nov 10, 2015 at 05:56:15PM +0100, Thierry Reding wrote: > On Tue, Nov 10, 2015 at 03:01:03PM +, Liviu Dudau wrote: > > Hello, > > > > When booting my Juno board with the HDLCD driver that I have converted to > > atomic operations I'm getting the following warning: > > Perhaps you can

[PATCH v2 4/4] MAINTAINERS: Add Liviu Dudau as maintainer for ARM HDLCD driver.

2015-11-11 Thread Liviu Dudau
Update MAINTAINERS file for HDLCD driver. Cc: Andrew Morton Cc: Arnd Bergmann Cc: Mauro Carvalho Chehab Cc: Greg KH Cc: Joe Perches Cc: Jiri Slaby Signed-off-by: Liviu Dudau --- MAINTAINERS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index fca7daf..

[PATCH v2 3/4] arm64: Juno: Add HDLCD support to the Juno boards.

2015-11-11 Thread Liviu Dudau
ARM's Juno board has two HDLCD controllers, each linked to an NXP TDA19988 HDMI transmitter that provides output encoding. Add them to the device tree. Signed-off-by: Liviu Dudau --- arch/arm64/boot/dts/arm/juno-base.dtsi | 74 -- 1 file changed, 70 insertions(+),

[PATCH v2 2/4] drm: Add support for ARM's HDLCD controller.

2015-11-11 Thread Liviu Dudau
The HDLCD controller is a display controller that supports resolutions up to 4096x4096 pixels. It is present on various development boards produced by ARM Ltd and emulated by the latest Fast Models from the company. Cc: David Airlie Cc: Robin Murphy Signed-off-by: Liviu Dudau --- drivers/gpu/

[PATCH v2 1/4] drm: arm: Add DT bindings documentation for HDLCD driver.

2015-11-11 Thread Liviu Dudau
Cc: Rob Herring Cc: Pawel Moll Cc: Mark Rutland Cc: Ian Campbell Cc: Kumar Gala Signed-off-by: Liviu Dudau --- .../devicetree/bindings/drm/arm/arm,hdlcd.txt | 74 ++ 1 file changed, 74 insertions(+) create mode 100644 Documentation/devicetree/bindings/drm/arm/arm,h

[PATCH v2 0/4] drm: Add support for the ARM HDLCD display controller

2015-11-11 Thread Liviu Dudau
This series adds support for ARM's HDLCD display controller found in Juno and ARM TC2 Coretile. The HDLCD outputs an RGB stream that feeds into a single digital encoder (DVI or HDMI). This series depends on Sudeep Holla's series that introduces support for SCPI on Juno. This is now queued for v4.4

[RFC PATCH v1 2/2] dt-bindings: add document for Innosilicon HDMI on Rockchip platform

2015-11-11 Thread Yakir Yang
Signed-off-by: Yakir Yang --- .../display/rockchip/inno_hdmi-rockchip.txt| 50 ++ 1 file changed, 50 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/rockchip/inno_hdmi-rockchip.txt diff --git a/Documentation/devicetree/bindings/display/ro

[RFC PATCH v1 1/2] drm: rockchip/hdmi: add Innosilicon HDMI support

2015-11-11 Thread Yakir Yang
The Innosilicon HDMI is a low power HDMI 1.4 transmitter IP, and it have been integrated on some rockchip CPUs (like RK3036, RK312x). Signed-off-by: Yakir Yang --- drivers/gpu/drm/rockchip/Kconfig |8 + drivers/gpu/drm/rockchip/Makefile|1 + drivers/gpu/drm/rockchip/inno_hdmi.c |

[RFC PATCH v1 0/2] Introduce Innosilicon HDMI driver on Rockchip platforms

2015-11-11 Thread Yakir Yang
Hi guys: Here are a brief introduction to Innosilicon HDMI IP: - Support HDMI 1.4a, HDCP 1.2 and DVI 1.0 standard compliant transmitter - Support HDMI1.4 a/b 3D function defined in HDMI 1.4 a/b spec - Digital video interface supports a pixel size of 24, 30, 36, 48bits color depth in RGB - S

[PATCH 3/3] drm/i2c: tda998x: Add support for atomic modesetting.

2015-11-11 Thread Liviu Dudau
When used with a DRIVER_ATOMIC enabled CRTC driver, the tda998x will cause crashes due to missing atomic operations. Fill the drm_connector_funcs struct with the atomic versions of the required functions and add the atomic modeset specific callbacks. Signed-off-by: Liviu Dudau Cc: Russell King -

[PATCH 2/3] drm/i2c: tda998x: Increase the supported dotclock frequency to 165MHz for TDA19988.

2015-11-11 Thread Liviu Dudau
Spec sheet states that the TDA19988 supports up to 165MHz dotclock speeds. Without this change modes higher than 1080p are un-attainable. Signed-off-by: Liviu Dudau Cc: Russell King --- drivers/gpu/drm/i2c/tda998x_drv.c | 5 +++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/driv

[PATCH 1/3] drm/i2c: tda998x: Unregister the connector in the unbind function.

2015-11-11 Thread Liviu Dudau
tda998x uses drm_connector_register() in the .bind function that needs to be balanced with a drm_connector_unregister() in the .unbind. Otherwise dangling sysfs entries are left behind and future rebinds will fail. Signed-off-by: Liviu Dudau Cc: Russell King --- drivers/gpu/drm/i2c/tda998x_drv.

[PATCH 0/3] drm/i2c: tda998x: Add support for atomic modesetting.

2015-11-11 Thread Liviu Dudau
Hello, While updating the HDLCD driver to support atomic modesetting I've encountered crashes when using it with the tda998x driver because the later doesn't support the atomic helper functions. While going through the code testing I've noticed an unbalanced .unbind missing drm_connector_unregi

[Bug 92850] Segfault loading War Thunder

2015-11-11 Thread bugzilla-dae...@freedesktop.org
e for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/2b6334fc/attachment.html>

kernel 4.3 -> black console

2015-11-11 Thread Emil Velikov
On 11 November 2015 at 05:30, Alex Deucher wrote: > On Tue, Nov 10, 2015 at 11:32 PM, Daniel Mota Leite > wrote: >> Hi >> Since i upgrade from kernek 4.2.5 to 4.3 i notice that i have no >> console, i get a black screen and the monitor flags no signal. >> >> When the X is

[RFC v3 1/2] Documentation: bridge: Add documentation for ps8640 DT properties

2015-11-11 Thread Philipp Zabel
Am Mittwoch, den 11.11.2015, 20:53 +0800 schrieb Jitao Shi: > Add documentation for DT properties supported by > ps8640 DSI-eDP converter. > > Signed-off-by: Jitao Shi > Acked-by: Rob Herring Reviewed-by: Philipp Zabel best regards Philipp

[Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong

2015-11-11 Thread bugzilla-dae...@freedesktop.org
--- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/ce612159/attachment.html>

[RFC PATCH v1 2/2] dt-bindings: add document for Innosilicon HDMI on Rockchip platform

2015-11-11 Thread Rob Herring
On Wed, Nov 11, 2015 at 03:47:32PM +0800, Yakir Yang wrote: > Signed-off-by: Yakir Yang Acked-by: Rob Herring > --- > .../display/rockchip/inno_hdmi-rockchip.txt| 50 > ++ > 1 file changed, 50 insertions(+) > create mode 100644 > Documentation/devicetree/bindings

[PATCH 08/19] drm: Add Allwinner A10 Display Engine support

2015-11-11 Thread Maxime Ripard
flush function, to make sure that > plane updates across multiple planes are indeed atomic. The hardware will not take the register writes into account until a bit is set (in the _commit function), so I guess putting it in atomic_flush makes sense. Thanks! Maxime -- Maxime Ripard, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/9c71edcb/attachment.sig>

[PATCH] Revert "drm/rockchip: Convert the probe function to the generic drm_of_component_probe()"

2015-11-11 Thread Naoki FUKAUMI
hi, On Tue, Nov 10, 2015 at 5:47 PM, Mark Yao wrote: > This reverts commit 52f5eb60940de889ce98a876f6933b574ead3225. > > Rockchip drm can't work with generic drm_of_component_probe now > > Signed-off-by: Mark Yao it makes rockchip-drm probed properly on linu

[PULL] topic/drm-fixes

2015-11-11 Thread Jani Nikula
Hi Dave, I seem to be off-sync with your pulls to Linus... anyway, here's one uapi build fix I've picked up. BR, Jani. The following changes since commit f36203be608a38a5b5523a7aa52cc72f757b9679: drm/dp: Add dp_aux_i2c_speed_khz module param to set the assume i2c bus speed (2015-09-02 16:13:

[PATCH v2 1/4] drm: arm: Add DT bindings documentation for HDLCD driver.

2015-11-11 Thread Rob Herring
On Wed, Nov 11, 2015 at 04:06:47PM +, Liviu Dudau wrote: > Cc: Rob Herring > Cc: Pawel Moll > Cc: Mark Rutland > Cc: Ian Campbell > Cc: Kumar Gala > > Signed-off-by: Liviu Dudau Looks pretty good, but a few comments. > --- > .../devicetree/bindings/drm/arm/arm,hdlcd.txt | 74 > +

[PATCH 5/5] drm/core: Fix old_fb handling in pan_display_atomic.

2015-11-11 Thread Maarten Lankhorst
From: Maarten Lankhorst Signed-off-by: Maarten Lankhorst --- drivers/gpu/drm/drm_fb_helper.c | 30 -- 1 file changed, 8 insertions(+), 22 deletions(-) diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index abd50863506e..69cbab5e5c81 100

[PATCH 4/5] drm/core: Fix old_fb handling in restore_fbdev_mode_atomic.

2015-11-11 Thread Maarten Lankhorst
From: Maarten Lankhorst Don't touch plane->old_fb/fb without having the right locks held. Signed-off-by: Maarten Lankhorst --- drivers/gpu/drm/drm_fb_helper.c | 21 ++--- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gp

[PATCH 3/5] drm/atomic: add a drm_atomic_clean_old_fb helper.

2015-11-11 Thread Maarten Lankhorst
From: Maarten Lankhorst This is useful for all the boilerplate code about cleaning old_fb. --- drivers/gpu/drm/drm_atomic.c | 58 ++-- include/drm/drm_atomic.h | 3 +++ 2 files changed, 43 insertions(+), 18 deletions(-) diff --git a/drivers/gpu/drm/d

[PATCH 2/5] drm/core: Fix old_fb handling in drm_mode_atomic_ioctl.

2015-11-11 Thread Maarten Lankhorst
From: Maarten Lankhorst plane_mask should be cleared inside the retry loop, because it gets reset on every retry. Signed-off-by: Maarten Lankhorst Cc: stable at vger.kernel.org #v4.3 --- drivers/gpu/drm/drm_atomic.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/

[PATCH 1/5] drm/core: Set legacy_cursor_update in drm_atomic_helper_disable_plane.

2015-11-11 Thread Maarten Lankhorst
From: Maarten Lankhorst legacy_cursor_update was being set in restore_fbdev_mode_atomic which was probably unintended. Fix this by only setting it in the function that needs it. Signed-off-by: Maarten Lankhorst --- drivers/gpu/drm/drm_atomic_helper.c | 7 --- 1 file changed, 4 insertions(+

[PATCH 0/5] Atomic core fixes.

2015-11-11 Thread Maarten Lankhorst
From: Maarten Lankhorst This small series fixes some problems in bookkeeping with old_fb. The common code that's run after committing is factored out in a small helper, and re-used by the atomic fb helpers. It should be targeted for v4.4 because it's being mostly bugfixes for the atomic fbdev hel

[PATCH 09/13] exynos/fimg2d: add g2d_move

2015-11-11 Thread Hyungwon Hwang
Hello Tobias, On Tue, 10 Nov 2015 14:24:11 +0100 Tobias Jakobi wrote: > Hello Hyungwon, > > > Hyungwon Hwang wrote: > > Hello Tobias, > > > > On Mon, 09 Nov 2015 10:47:02 +0100 > > Tobias Jakobi wrote: > > > >> Hello Hyungwon, > >> > >> > >> Hyungwon Hwang wrote: > >>> Hello Tobias, > >>> >

[Bug 106851] WARNING: CPU: 0 PID: 686 at fs/sysfs/dir.c:31 sysfs_warn_dup+0x68/0x80() + drm:radeon_pm_late_init [radeon]] *ERROR*

2015-11-11 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=106851 --- Comment #9 from Holger Hoffstätte --- (In reply to Holger Hoffstätte from comment #4) > Created attachment 191741 [details] > Unconditionally set sysfs_initialized > > This patch removes the conditional around setting sysfs_initialized an

[PATCH v4] tests/exynos: add fimg2d performance analysis

2015-11-11 Thread Hyungwon Hwang
On Tue, 10 Nov 2015 14:23:51 +0100 Tobias Jakobi wrote: > Hello Hyungwon, > > > Hyungwon Hwang wrote: > > Hello Tobias, > > > > On Mon, 09 Nov 2015 10:47:13 +0100 > > Tobias Jakobi wrote: > > > >> Hello Hyungwon, > >> > >> > >> Hyungwon Hwang wrote: > >>> Hello, > >>> > >>> I think this patc

[GIT PULL] drm/rockchip: fixes

2015-11-11 Thread Mark yao
Hi Dave Here are some fixes for drm/rockchip: drm/rockchip can't work now, we need the patch Revert "drm/rockchip: Convert the probe function to the generic drm_of_component_probe()" and other three fixes are also needed. I'd like you can land them.

[Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong

2015-11-11 Thread bugzilla-dae...@freedesktop.org
because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/db0d9043/attachment.html>

[PATCH] drm/rockchip: vop: fix window origin calculation

2015-11-11 Thread Mark yao
On 2015年11月10日 22:57, Heiko Stuebner wrote: > Am Dienstag, 10. November 2015, 17:59:10 schrieb Mark Yao: >> From: Dominik Behr >> >> VOP_WINx_DSP_ST does not require subtracting 1 from the values written to >> it. It actually causes the screen to be shifted by one pixel. >> >> Signed-off-by:

kernel 4.3 -> black console

2015-11-11 Thread Daniel Mota Leite
eedesktop.org/archives/dri-devel/attachments/2015/90035bc6/attachment.sig>

[Bug 92850] Segfault loading War Thunder

2015-11-11 Thread bugzilla-dae...@freedesktop.org
-- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2015/960fe61e/attachment.html>

[git pull] drm fixes

2015-11-11 Thread Dave Airlie
Hi Linus, Two build fixes, one for VC4, one for nouveau where the ARM only code is doing something a bit strange. While people are discussing that, just workaround it and fix the build for now. The code in question will never get used on anything non-ARM anyways. Also one fix for AST that SuS

kernel 4.3 -> black console

2015-11-11 Thread Alex Deucher
On Tue, Nov 10, 2015 at 11:32 PM, Daniel Mota Leite wrote: > Hi > Since i upgrade from kernek 4.2.5 to 4.3 i notice that i have no > console, i get a black screen and the monitor flags no signal. > > When the X is loaded, i get the normal X screen and everything > w