[RFC][PATCH 2/2] drm/mediatek: Add DRM Driver for Mediatek SoC MT8173.

2015-05-13 Thread CK Hu
d int height, + unsigned int pitch, unsigned int format); + +void main_disp_path_power_on(void __iomem *ovl_base, + void __iomem *rdma_base, void __iomem *color_base, + void __iomem *ufoe_base, void __iomem *od_base); + +void mediatek_ovl_layer_switch(void __iomem *ovl_base, +

[RFC][PATCH 1/2] dt-bindings: drm/mediatek: Add Mediatek DRM dts binding

2015-05-13 Thread CK Hu
This patch includes 1. Mediatek DRM Device binding 2. Mediatek DSI Device binding 3. Mediatek CRTC Main Device binding 4. Mediatek DDP Device binding Signed-off-by: CK Hu --- .../bindings/drm/mediatek/mediatek,crtc-main.txt | 38 ++ .../bindings/drm/mediatek/mediatek,ddp.tx

[RFC][PATCH 0/2] MT8173 DRM support

2015-05-13 Thread CK Hu
MT8173 DRM include one master drm device and three sub device: dsi device, crtc main device, and ddp device. Master drm device control the drm sub device and memory management. dsi device is a drm connector/encoder device which control MIPI/DSI hw block. crtc main is a drm crtc device which contro

[PATCH v2 02/17] drm/atomic: Allow drivers to subclass drm_atomic_state, v2

2015-05-13 Thread Maarten Lankhorst
Drivers may need to store the state of shared resources, such as PLLs or FIFO space, into the atomic state. Allow this by making it possible to subclass drm_atomic_state. Changes since v1: - Change member names for functions to atomic_state_(alloc,clear) - Change __drm_atomic_state_new to drm_atom

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Matt Roper
On Tue, May 12, 2015 at 09:54:07PM +0200, Thomas Gummerer wrote: > > Hi, > > I noticed that on my machine the screen starts to flicker after I > suspend and resume my machine, on the main laptop display if an external > display is attached with kernel v4.1-rc1. I tracked the regression down > to

[PATCH early RFC 0/2] Implement ASoC HDMI codec library

2015-05-13 Thread Jean-Francois Moine
On Wed, 13 May 2015 12:23:45 +0300 Jyri Sarha wrote: > Jean-Francois, would you consider trying the generic ASoC patch with > your HW, as I can not test the spdif functionality with mine? Hi Jyri, I am not sure to need all the stuff you coded. My tda998x CODEC is quite empty and it works fine

[PATCH v4 9/9] exynos/fimg2d: simplify g2d_fini()

2015-05-13 Thread Tobias Jakobi
free()ing a nullptr is a noop, so remove the check. Signed-off-by: Tobias Jakobi --- exynos/exynos_fimg2d.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exynos/exynos_fimg2d.c b/exynos/exynos_fimg2d.c index 9bf2aa9..8527dde 100644 --- a/exynos/exynos_fimg2d.c +++ b/exyno

[PATCH v4 8/9] tests/exynos: use XRGB8888 for framebuffer

2015-05-13 Thread Tobias Jakobi
This matches the G2D color mode that is used in the entire code. The previous (incorrect) RGBA would only work since the Exynos mixer did its configuration based on the bpp, and not based on the actual pixelformat. Signed-off-by: Tobias Jakobi --- tests/exynos/exynos_fimg2d_test.c | 2 +- 1

[PATCH v4 7/9] tests/exynos: replace return by break

2015-05-13 Thread Tobias Jakobi
The 'usage' function already does exit(0), so that this 'return -EINVAL' is never called. Just put a break there to avoid confusion. Signed-off-by: Tobias Jakobi --- tests/exynos/exynos_fimg2d_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/exynos/exynos_fimg2d_t

[PATCH v4 6/9] exynos: fimg2d: fix return codes

2015-05-13 Thread Tobias Jakobi
Even if flushing the command buffer doesn't succeed, the G2D calls would still return zero. Fix this by just passing the flush return code. Signed-off-by: Tobias Jakobi --- exynos/exynos_fimg2d.c | 20 +--- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/exynos/exy

[PATCH v4 5/9] tests/exynos: add fimg2d event test

2015-05-13 Thread Tobias Jakobi
This tests async processing of G2D jobs. A separate thread is spawned to monitor the DRM fd for events and check whether a G2D job was completed. v2: Add GPLv2 header, argument handling and documentation. Test is only installed when requested. v3: Allocate G2D jobs with calloc which fixes 'bus

[PATCH v4 4/9] exynos: fimg2d: add g2d_exec2

2015-05-13 Thread Tobias Jakobi
This is a more 'flexible' version of g2d_exec allowing to pass some flags which modify the behaviour of g2d_exec. Currently only the 'async' operation flag is supported. v2: Add g2d_exec2() to Exynos symbol test. Signed-off-by: Tobias Jakobi --- exynos/exynos-symbol-check | 1 + exynos/exynos_f

[PATCH v4 3/9] exynos/fimg2d: add g2d_config_event

2015-05-13 Thread Tobias Jakobi
This enables us to pass command buffers to the kernel which trigger an event on the DRM fd upon completion. The final goal is to enable asynchronous operation of the G2D engine, similar to async page flips. Passing the event userdata pointer through the G2D context was chosen to not change the cur

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

2015-05-13 Thread Tobias Jakobi
Currently only fast solid color clear performance is measured. A large buffer is allocated and solid color clear operations are executed on it with randomly chosen properties (position and size of the region, clear color). Execution time is measured and output together with the amount of pixels pro

[PATCH v4 1/9] exynos: Introduce exynos_handle_event()

2015-05-13 Thread Tobias Jakobi
Used to handle kernel events specific to the Exynos platform. Currently only G2D events are handled. v2: Adapt to container approach. v3: Add exynos_handle_event() to Exynos symbol test. Signed-off-by: Tobias Jakobi --- exynos/exynos-symbol-check | 1 + exynos/exynos_drm.c| 28 +

[PATCH v4 0/9] drm/exynos: add async G2D execution to libdrm

2015-05-13 Thread Tobias Jakobi
Hello, this series exposes async execution of G2D command buffers to userspace. Also includes is a small performance analysis test, which can also be used to stress test the engine. The async operation is of course also tested. Please review and let me know what I can improve. v3: Rewrote hand

[Bug 90439] Xonotic render green (bisected)

2015-05-13 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150513/21790f40/attachment.html>

[Bug 90439] Xonotic render green (bisected)

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

[Bug 90439] Xonotic render green (bisected)

2015-05-13 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150513/27092fa2/attachment-0001.html>

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Sudip Mukherjee
On Wed, May 13, 2015 at 01:27:06PM +0200, Thomas Gummerer wrote: > Sudip Mukherjee writes: > > > On Wed, May 13, 2015 at 11:53:19AM +0200, Jan Niehusmann wrote: > > http://patchwork.freedesktop.org/patch/46071/ > > Thank you for the pointer, but this seems to be an unrelated issue. I > tried ap

[RFC][PATCH 2/2] drm/mediatek: Add DRM Driver for Mediatek SoC MT8173.

2015-05-13 Thread Daniel Stone
Hi, On 13 May 2015 at 16:23, CK Hu wrote: > + /* > +* copy the mode data adjusted by mode_fixup() into crtc->mode > +* so that hardware can be seet to proper mode. > +*/ > + memcpy(&crtc->mode, adjusted_mode, sizeof(*adjusted_mode)); Please do not do this. adj

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Sudip Mukherjee
On Wed, May 13, 2015 at 01:10:11PM +0200, Jan Niehusmann wrote: > On Wed, May 13, 2015 at 04:02:25PM +0530, Sudip Mukherjee wrote: > > > What I'm missing in the report, are some log entries I'm seeing on my > > > notebook: > > > > > > Apr 30 08:50:23 localhost kernel: > > > [drm:intel_cpu_fifo_un

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Sudip Mukherjee
On Wed, May 13, 2015 at 11:53:19AM +0200, Jan Niehusmann wrote: > Hi, > > On Wed, May 13, 2015 at 12:14:39PM +0300, Jani Nikula wrote: > > Is this the same as https://bugzilla.kernel.org/show_bug.cgi?id=98141 ? > > The visible effect in the video is similar to what I see on the LVDS > display. I

[PULL] drm-intel-fixes

2015-05-13 Thread Jani Nikula
Hi Dave, one i915 gpu hang fix on resume. BR, Jani. The following changes since commit 030bbdbf4c833bc69f502eae58498bc5572db736: Linux 4.1-rc3 (2015-05-10 15:12:29 -0700) are available in the git repository at: git://anongit.freedesktop.org/drm-intel tags/drm-intel-fixes-2015-05-13 for y

[Bug 90320] Lenovo ThinkPad E455 (Kaveri A10-7300): Blank built-in screen with radeon kms driver

2015-05-13 Thread bugzilla-dae...@freedesktop.org
ve any ideas, onegaishimasu. -- 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/20150513/0255d454/attachment.html>

[PATCH 9/9] drm/exynos: Convert g2d_userptr_get_dma_addr() to use get_vaddr_frames()

2015-05-13 Thread Jan Kara
Convert g2d_userptr_get_dma_addr() to pin pages using get_vaddr_frames(). This removes the knowledge about vmas and mmap_sem locking from exynos driver. Also it fixes a problem that the function has been mapping user provided address without holding mmap_sem. Signed-off-by: Jan Kara --- drivers/

[PATCH 8/9] media: vb2: Remove unused functions

2015-05-13 Thread Jan Kara
Conversion to the use of pinned pfns made some functions unused. Remove them. Also there's no need to lock mmap_sem in __buf_prepare() anymore. Acked-by: Marek Szyprowski Tested-by: Marek Szyprowski Signed-off-by: Jan Kara --- drivers/media/v4l2-core/videobuf2-memops.c | 114 --

[PATCH 7/9] media: vb2: Convert vb2_dc_get_userptr() to use frame vector

2015-05-13 Thread Jan Kara
Convert vb2_dc_get_userptr() to use frame vector infrastructure. When we are doing that there's no need to allocate page array and some code can be simplified. Acked-by: Marek Szyprowski Tested-by: Marek Szyprowski Signed-off-by: Jan Kara --- drivers/media/v4l2-core/videobuf2-dma-contig.c | 21

[PATCH 6/9] media: vb2: Convert vb2_vmalloc_get_userptr() to use frame vector

2015-05-13 Thread Jan Kara
Convert vb2_vmalloc_get_userptr() to use frame vector infrastructure. When we are doing that there's no need to allocate page array and some code can be simplified. Acked-by: Marek Szyprowski Tested-by: Marek Szyprowski Signed-off-by: Jan Kara --- drivers/media/v4l2-core/videobuf2-vmalloc.c |

[PATCH 5/9] media: vb2: Convert vb2_dma_sg_get_userptr() to use frame vector

2015-05-13 Thread Jan Kara
Acked-by: Marek Szyprowski Tested-by: Marek Szyprowski Signed-off-by: Jan Kara --- drivers/media/v4l2-core/videobuf2-dma-sg.c | 97 +- 1 file changed, 15 insertions(+), 82 deletions(-) diff --git a/drivers/media/v4l2-core/videobuf2-dma-sg.c b/drivers/media/v4l2-cor

[PATCH 4/9] vb2: Provide helpers for mapping virtual addresses

2015-05-13 Thread Jan Kara
Provide simple helper functions to map virtual address range into an array of pfns / pages. Acked-by: Marek Szyprowski Tested-by: Marek Szyprowski Signed-off-by: Jan Kara --- drivers/media/v4l2-core/videobuf2-memops.c | 58 ++ include/media/videobuf2-memops.h

[PATCH 3/9] media: omap_vout: Convert omap_vout_uservirt_to_phys() to use get_vaddr_pfns()

2015-05-13 Thread Jan Kara
Convert omap_vout_uservirt_to_phys() to use get_vaddr_pfns() instead of hand made mapping of virtual address to physical address. Also the function leaked page reference from get_user_pages() so fix that by properly release the reference when omap_vout_buffer_release() is called. Signed-off-by: Ja

[PATCH 2/9] mm: Provide new get_vaddr_frames() helper

2015-05-13 Thread Jan Kara
Provide new function get_vaddr_frames(). This function maps virtual addresses from given start and fills given array with page frame numbers of the corresponding pages. If given start belongs to a normal vma, the function grabs reference to each of the pages to pin them in memory. If start belongs

[PATCH 1/9] [media] vb2: Push mmap_sem down to memops

2015-05-13 Thread Jan Kara
Currently vb2 core acquires mmap_sem just around call to __qbuf_userptr(). However since commit f035eb4e976ef5 (videobuf2: fix lockdep warning) it isn't necessary to acquire it so early as we no longer have to drop queue mutex before acquiring mmap_sem. So push acquisition of mmap_sem down into .ge

[PATCH 0/9 v5] Helper to abstract vma handling in media layer

2015-05-13 Thread Jan Kara
Hello, I'm sending the fifth version of my patch series to abstract vma handling from the various media drivers. The patches got some review from mm people and testing from device driver guys so unless someone objects, patches will be queued in media tree for the next merge window. After this p

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Thomas Gummerer
Sudip Mukherjee writes: > On Wed, May 13, 2015 at 11:53:19AM +0200, Jan Niehusmann wrote: >> Apr 30 08:50:23 localhost kernel: [drm:intel_cpu_fifo_underrun_irq_handler >> [i915]] *ERROR* CPU pipe B FIFO underrun >> Apr 30 08:50:23 localhost kernel: [drm:intel_pch_fifo_underrun_irq_handler >> [i

[PATCH 2/2] drm/exynos: 'win' is always unsigned

2015-05-13 Thread Inki Dae
On 2015년 05월 12일 03:04, Tobias Jakobi wrote: > Hey Inki, > > Inki Dae wrote: >> On 2015년 05월 06일 21:10, Tobias Jakobi wrote: >>> The index for the hardware layer is always >=0. Previous >>> code that also used -1 as special index is now gone. >>> >>> Also apply this to 'ch_enabled' (de

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Thomas Gummerer
Jan Niehusmann writes: > Hi, > > On Wed, May 13, 2015 at 12:14:39PM +0300, Jani Nikula wrote: >> Is this the same as https://bugzilla.kernel.org/show_bug.cgi?id=98141 ? > > The visible effect in the video is similar to what I see on the LVDS > display. I also see some influence of the mouse point

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Jan Niehusmann
On Wed, May 13, 2015 at 04:02:25PM +0530, Sudip Mukherjee wrote: > > What I'm missing in the report, are some log entries I'm seeing on my > > notebook: > > > > Apr 30 08:50:23 localhost kernel: [drm:intel_cpu_fifo_underrun_irq_handler > > [i915]] *ERROR* CPU pipe B FIFO underrun > > Apr 30 08:50

[PATCH v2 2/2] drm: Make Legacy Context access functions optional.

2015-05-13 Thread Ville Syrjälä
On Wed, May 13, 2015 at 09:19:09AM +0200, Daniel Vetter wrote: > On Wed, May 13, 2015 at 07:54:48AM +0100, Peter Antoine wrote: > > As these functions are only used by one driver and there are security holes > > in these functions. Make the functions optional. > > > > These changes are based on th

[PATCH] drm/dp: Fix comment in DP helper

2015-05-13 Thread Jon Hunter
Commit 4f71d0cb76339 ("drm/dp: add a hw mutex around the transfer functions. (v2)"), renamed the functions drm_dp_aux_register_i2c_bus() and drm_dp_aux_unregister_i2c_bus() to drm_dp_aux_register() and drm_dp_aux_unregister(), respectively. However, a comment referring to the original names was not

[PATCH early RFC 2/2] drm/i2c: tda998x: HACK Implement primitive HDMI audio with ASoC hdmi-code-lib

2015-05-13 Thread Jyri Sarha
This patch is to demonstrate how to use the ASoC hdmi-codec-lib to implement ASoC codec API in tda998x driver. I do not have proper documentation for tda998x family chips so I lack the necessary information for making a proper binding for audio part of the chip. The configuration is hard coded to

[PATCH early RFC 1/2] ASoC: hdmi-codec-lib: Add hdmi-codec-lib for external HDMI-encoders

2015-05-13 Thread Jyri Sarha
The hdmi-codec-lib is a library for registering an ASoC codec under an external HDMI encoder driver with I2S and/or spdif interface. The structures and definitions in the API header are mostly redundant copies of similar structures in ASoC headers. This is on purpose to avoid direct dependencies t

[PATCH early RFC 0/2] Implement ASoC HDMI codec library

2015-05-13 Thread Jyri Sarha
This is on early RFC and should not be merged yet. The idea is just to share my ideas early on as there has been a lot of development going on around HDMI audio. The I2S DAI of the ASoC side patch is usable already, the spdif support has not been tested and the EDID SADs handling should use Russel

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Jani Nikula
On Tue, 12 May 2015, Thomas Gummerer wrote: > Hi, > > I noticed that on my machine the screen starts to flicker after I > suspend and resume my machine, on the main laptop display if an external > display is attached with kernel v4.1-rc1. I tracked the regression down > to commit c9f038a1a592 ("d

[PATCH v6 06/11] cec: add HDMI CEC framework

2015-05-13 Thread Sean Young
On Mon, May 04, 2015 at 07:32:59PM +0200, Kamil Debski wrote: > From: Hans Verkuil > > The added HDMI CEC framework provides a generic kernel interface for > HDMI CEC devices. > > Signed-off-by: Hans Verkuil -snip- > +int cec_create_adapter(struct cec_adapter *adap, const char *name, u32 caps

[BUG/REGRESSION] Screen flickering

2015-05-13 Thread Jan Niehusmann
Hi, On Wed, May 13, 2015 at 12:14:39PM +0300, Jani Nikula wrote: > Is this the same as https://bugzilla.kernel.org/show_bug.cgi?id=98141 ? The visible effect in the video is similar to what I see on the LVDS display. I also see some influence of the mouse pointer position on the blanked areas. T

[PATCH v6 06/11] cec: add HDMI CEC framework

2015-05-13 Thread Hans Verkuil
Typo and question: On 05/04/15 19:32, Kamil Debski wrote: > +static long cec_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) > +{ > + struct cec_devnode *cecdev = cec_devnode_data(filp); > + struct cec_adapter *adap = to_cec_adapter(cecdev); > + void __user *parg = (void

[Intel-gfx] [PATCH] drm/atomic: add drm_atomic_get_existing_*_state helpers

2015-05-13 Thread Daniel Vetter
On Wed, May 13, 2015 at 10:37:25AM +0200, Maarten Lankhorst wrote: > There are cases where we want to test if a given object is > part of the state, but don't want to add them if they're not. > > Signed-off-by: Maarten Lankhorst Yeah makes sense to wrap these. Applied to topic/drm-misc, thanks.

[PATCH 3/3] drm/atomic: Allow drivers to subclass drm_atomic_state, v2

2015-05-13 Thread Daniel Vetter
On Wed, May 13, 2015 at 09:56:02AM +0200, Maarten Lankhorst wrote: > Drivers may need to store the state of shared resources, such as PLLs > or FIFO space, into the atomic state. Allow this by making it possible > to subclass drm_atomic_state. > > Changes since v1: > - Change member names for func

[PATCH] drm/atomic: add drm_atomic_get_existing_*_state helpers

2015-05-13 Thread Maarten Lankhorst
There are cases where we want to test if a given object is part of the state, but don't want to add them if they're not. Signed-off-by: Maarten Lankhorst --- drivers/gpu/drm/drm_atomic.c | 18 +++- include/drm/drm_atomic.h | 50 2 file

[PATCH v6 06/11] cec: add HDMI CEC framework

2015-05-13 Thread Hans Verkuil
Hi Kamil, Here is the first cec-compliance bug report: CEC_G_CAPS doesn't zero the reserved field! cec.c needs a memset there. I think this is missing in cec.c for all structs with a reserved field in them. Only G_EVENT looks to be OK. Regards, Hans

[PATCH v6 06/11] cec: add HDMI CEC framework

2015-05-13 Thread Hans Verkuil
Hi Kamil, I've started work on a cec-compliance utility and while doing that I noticed a confusing name: On 05/04/15 19:32, Kamil Debski wrote: > +struct cec_caps { > + __u32 available_log_addrs; > + __u32 capabilities; > + __u32 vendor_id; > + __u8 version; > + __u8 reserve

[Intel-gfx] [PATCH] Documentation/drm: Update rotation property with 90/270 and description

2015-05-13 Thread Jindal, Sonika
On 5/12/2015 6:20 PM, Ville Syrjälä wrote: > On Wed, Apr 15, 2015 at 04:05:19PM +0530, Sonika Jindal wrote: >> Cc: dri-devel at lists.freedesktop.org >> Signed-off-by: Sonika Jindal >> --- >> Documentation/DocBook/drm.tmpl |7 +-- >> 1 file changed, 5 insertions(+), 2 deletions(-) >

[PATCH 3/3] drm/atomic: Allow drivers to subclass drm_atomic_state, v2

2015-05-13 Thread Maarten Lankhorst
Drivers may need to store the state of shared resources, such as PLLs or FIFO space, into the atomic state. Allow this by making it possible to subclass drm_atomic_state. Changes since v1: - Change member names for functions to atomic_state_(alloc,clear) - Change __drm_atomic_state_new to drm_atom

[PATCH 2/3] drm/core: get rid of -Iinclude/drm

2015-05-13 Thread Maarten Lankhorst
This results in a warning when building out of tree: "cc1: warning: include/drm: No such file or directory [enabled by default]" Most code already uses #include correctly, so fix the instances that don't. Reported-by: Ville Syrjälä Signed-off-by: Maarten Lankhorst --- drivers/gpu/drm/Makefi

[PATCH 1/3] drm/i915: get rid of -Iinclude/drm

2015-05-13 Thread Maarten Lankhorst
This results in a warning when building out of tree: "cc1: warning: include/drm: No such file or directory [enabled by default]" Most code already uses #include correctly, so fix the instances that don't. Reported-by: Ville Syrjälä Signed-off-by: Maarten Lankhorst --- drivers/gpu/drm/i915/M

[PATCH] drm/radeon: don't do mst probing is MST isn't enabled.

2015-05-13 Thread Dave Airlie
From: Dave Airlie This causes an oops as we haven't initialised the mst layer. Reported-by: Dave Jones < Signed-off-by: Dave Airlie --- drivers/gpu/drm/radeon/radeon_dp_mst.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/radeon/radeon_dp_mst.c b/drivers/gpu/drm/radeon

[PATCH] drm/radeon: don't do mst probing is MST isn't enabled.

2015-05-13 Thread Alex Deucher
2015-05-12 19:51 GMT-04:00 Dave Airlie : > From: Dave Airlie > > This causes an oops as we haven't initialised the mst > layer. > > Reported-by: Dave Jones < > Signed-off-by: Dave Airlie Applied to my fixes branch. Thanks! Alex > --- > drivers/gpu/drm/radeon/radeon_dp_mst.c | 3 +++ > 1 file

[PATCH v2 1/2] drm: Make HW_LOCK access functions optional.

2015-05-13 Thread Daniel Vetter
Adding dri-devel, I've forgotten to do that ... -Daniel On Wed, May 13, 2015 at 09:14:29AM +0200, Daniel Vetter wrote: > On Wed, May 13, 2015 at 07:54:47AM +0100, Peter Antoine wrote: > > As these functions are only used by one driver and there are security holes > > in these functions. Make the f

[patch] drm/edid: fix a debug message

2015-05-13 Thread Daniel Vetter
On Tue, May 12, 2015 at 09:07:37PM +0300, Dan Carpenter wrote: > There is an extra semi-colon on the if statement so the debug output > always says "Failed to write EDID checksum" even when it didn't fail. > > Fixes: 559be30cb74d ('drm/i915: Implement the intel_dp_autotest_edid function > for DP

[PATCH v2 2/2] drm: Make Legacy Context access functions optional.

2015-05-13 Thread Daniel Vetter
On Wed, May 13, 2015 at 07:54:48AM +0100, Peter Antoine wrote: > As these functions are only used by one driver and there are security holes > in these functions. Make the functions optional. > > These changes are based on the two patches: > commit c21eb21cb50d58e7cbdcb8b9e7ff68b85cfa5095 > Au

[Bug 98101] kernel BUG at drivers/gpu/drm/drm_vma_manager.c:209!

2015-05-13 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=98101 --- Comment #3 from Apostolos B. --- I had similar crashes requiring a hard reset but the log messages were different. This is the first time i see something like that. And also it points at where the bug is. Cant reproduce it. Its random. --

[Bug 90370] [radeonsi] dota2 suffers from many glitches

2015-05-13 Thread bugzilla-dae...@freedesktop.org
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/20150513/bbd572bc/attachment.html>

[Bug 98101] kernel BUG at drivers/gpu/drm/drm_vma_manager.c:209!

2015-05-13 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=98101 --- Comment #2 from Apostolos B. --- Created attachment 176601 --> https://bugzilla.kernel.org/attachment.cgi?id=176601&action=edit dmesg -- You are receiving this mail because: You are watching the assignee of the bug.

[Intel-gfx] [PATCH 01/42] drm/atomic: Allow drivers to subclass drm_atomic_state

2015-05-13 Thread Daniel Vetter
On Mon, May 11, 2015 at 4:24 PM, Maarten Lankhorst wrote: > Drivers may need to store the state of shared resources, such as PLLs > or FIFO space, into the atomic state. Allow this by making it possible > to subclass drm_atomic_state. > > Cc: dri-devel at lists.freedesktop.org > Acked-by: Ander Co

[Bug 95771] Crash when trying to hibernate

2015-05-13 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=95771 --- Comment #2 from Michel Dänzer --- (In reply to higuita from comment #1) > New crash dump Does building the kernel without CONFIG_HSA_AMD avoid this one? -- You are receiving this mail because: You are watching the assignee of the bug.

[Bug 98101] kernel BUG at drivers/gpu/drm/drm_vma_manager.c:209!

2015-05-13 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=98101 --- Comment #1 from Michel Dänzer --- Please attach the full dmesg output. Can you reproduce this problem by doing something in particular, or is it random? Is it a regression, i.e. didn't it happen with an older kernel version? -- You are rec

[Bug 90320] Lenovo ThinkPad E455 (Kaveri A10-7300): Blank built-in screen with radeon kms driver

2015-05-13 Thread bugzilla-dae...@freedesktop.org
/dri-devel/attachments/20150513/1157f36f/attachment-0001.html>

[PATCH i-g-t] tests/drm_hw_lock: Tests for hw_lock fixes.

2015-05-13 Thread Antoine, Peter
Please ignore this test as fixes are being implemented differently. On Thu, 2015-04-23 at 15:07 +0100, Peter Antoine wrote: > There are several issues with the hardware locks functions that stretch > from kernel crashes to priority escalations. This new test will test the > the fixes for these fea

[PATCH v5 1/3] drm/layerscape: Add Freescale DCU DRM driver

2015-05-13 Thread Wang J.W.
Hi David, Can you help me review this patch? Thanks. Jianwei > -Original Message- > From: Jianwei Wang [mailto:jianwei.wang at freescale.com] > Sent: Friday, April 17, 2015 2:36 PM > To: airlied at linux.ie; daniel.vetter at intel.com; stefan at agner.ch; Wood > Scott-B07421; dri-devel a

[Bug 90421] DOTA2 when selecting naga clones locks GPU

2015-05-13 Thread bugzilla-dae...@freedesktop.org
nts/20150513/b00e1786/attachment.html>

[Bug 89685] Cripling Dota 2 freeze with Morphling at hero selection or loadout

2015-05-13 Thread bugzilla-dae...@freedesktop.org
vel/attachments/20150513/92dd2e5d/attachment.html>