[PATCH 13/83] hsa/radeon: Add 2 new IOCTL to kfd, CREATE_QUEUE and DESTROY_QUEUE

2014-07-12 Thread Dave Airlie
> +/* The 64-bit ABI is the authoritative version. */ > +#pragma pack(push, 8) > + Don't do this, pad and align things explicitly in structs. > +struct kfd_ioctl_create_queue_args { > + uint64_t ring_base_address; /* to KFD */ > + uint32_t ring_size; /* to KFD */ > +

[Intel-gfx] [v3 09/13] drm/i915: Add rotation property for sprites

2014-07-12 Thread Daniel Vetter
On Tue, Jul 08, 2014 at 10:31:59AM +0530, sonika.jindal at intel.com wrote: > From: Ville Syrj?l? > > Sprite planes support 180 degree rotation. The lower layers are now in > place, so hook in the standard rotation property to expose the feature > to the users. > > v2: Moving rotation_property

[Intel-gfx] [v3 09/13] drm/i915: Add rotation property for sprites

2014-07-12 Thread Daniel Vetter
On Tue, Jul 08, 2014 at 10:31:59AM +0530, sonika.jindal at intel.com wrote: > From: Ville Syrj?l? > > Sprite planes support 180 degree rotation. The lower layers are now in > place, so hook in the standard rotation property to expose the feature > to the users. > > v2: Moving rotation_property

[Intel-gfx] [v3 09/13] drm/i915: Add rotation property for sprites

2014-07-12 Thread Daniel Vetter
On Tue, Jul 08, 2014 at 10:31:59AM +0530, sonika.jindal at intel.com wrote: > From: Ville Syrj?l? > > Sprite planes support 180 degree rotation. The lower layers are now in > place, so hook in the standard rotation property to expose the feature > to the users. > > v2: Moving rotation_property

[Bug 73053] dpm hangs with BTC parts

2014-07-12 Thread bugzilla-dae...@freedesktop.org
ockups anymore. I've been running my system for a few days (games, movies and so on) without problem. -- 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/dr

[Bug 73053] dpm hangs with BTC parts

2014-07-12 Thread bugzilla-dae...@freedesktop.org
<http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/fe863d50/attachment.html>

[PATCH 07/83] drm/radeon: Add kfd-->kgd interface of locking srbm_gfx_cntl register

2014-07-12 Thread Bridgman, John
Confirmed. The locking functions are removed from the interface in commit 82 : [PATCH 82/83] drm/radeon: Remove lock functions from kfd2kgd interface There is an elegant symmetry there, but yeah we need to find a way to make this less awkward to review without screwing up all the work you've

Recall: [PATCH 07/83] drm/radeon: Add kfd-->kgd interface of locking srbm_gfx_cntl register

2014-07-12 Thread Bridgman, John
Bridgman, John would like to recall the message, "[PATCH 07/83] drm/radeon: Add kfd-->kgd interface of locking srbm_gfx_cntl register".

[PATCH 07/83] drm/radeon: Add kfd-->kgd interface of locking srbm_gfx_cntl register

2014-07-12 Thread Bridgman, John
>-Original Message- >From: Bridgman, John >Sent: Friday, July 11, 2014 1:48 PM >To: 'Jerome Glisse'; Oded Gabbay >Cc: David Airlie; Deucher, Alexander; linux-kernel at vger.kernel.org; dri- >devel at lists.freedesktop.org; Lewycky, Andrew; Joerg Roedel; Gabbay, Oded; >Koenig, Christian

[Bug 81255] New: EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
archives/dri-devel/attachments/20140712/72f1bf23/attachment.html>

[Bug 81255] EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
nee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/c987546f/attachment.html>

[Bug 81255] EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/4e207e3e/attachment.html>

[Bug 81255] EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/c0765320/attachment-0001.html>

[Bug 81255] EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
. The function's definition is beyond me, so that's where I'll have to leave you off. -- 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/20140

[PATCH v2 0/2] drm: rework flip-work framework

2014-07-12 Thread Boris BREZILLON
Hello, This patch series reworks the flip-work framework to make it safe when calling drm_flip_work_queue from atomic contexts. The 2nd patch of this series is optional, as it only reworks drm_flip_work_init prototype to remove unneeded size argument and return code (this function cannot fail

[PATCH v2 1/2] drm: rework flip-work helpers to avoid calling func when the FIFO is full

2014-07-12 Thread Boris BREZILLON
Make use of lists instead of kfifo in order to dynamically allocate task entry when someone require some delayed work, and thus preventing drm_flip_work_queue from directly calling func instead of queuing this call. This allow drm_flip_work_queue to be safely called even within irq handlers. Add

[PATCH v2 2/2] drm: flip-work: change drm_flip_work_init prototype

2014-07-12 Thread Boris BREZILLON
Now that we're using lists instead of kfifo to store drm flip-work tasks we do not need the size parameter passed to drm_flip_work_init function anymore. Moreover this function cannot fail anymore, we can thus remove the return code. Modify drm_flip_work_init users to take account of these

[PATCH v2 1/2] drm: rework flip-work helpers to avoid calling func when the FIFO is full

2014-07-12 Thread Boris BREZILLON
On Sat, 12 Jul 2014 09:00:08 +0200 Boris BREZILLON wrote: > Make use of lists instead of kfifo in order to dynamically allocate > task entry when someone require some delayed work, and thus preventing > drm_flip_work_queue from directly calling func instead of queuing this > call. > This allow

[Bug 81255] EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/098ed5a3/attachment.html>

[PATCH 02/83] drm/radeon: reduce number of free VMIDs and pipes in KV

2014-07-12 Thread Christian König
Am 11.07.2014 18:22, schrieb Alex Deucher: > On Fri, Jul 11, 2014 at 12:18 PM, Christian K?nig > wrote: >> Am 11.07.2014 18:05, schrieb Jerome Glisse: >> >>> On Fri, Jul 11, 2014 at 12:50:02AM +0300, Oded Gabbay wrote: To support HSA on KV, we need to limit the number of vmids and pipes

[PATCH 00/83] AMD HSA kernel driver

2014-07-12 Thread Christian König
Am 11.07.2014 23:18, schrieb Jerome Glisse: > On Thu, Jul 10, 2014 at 10:51:29PM +, Gabbay, Oded wrote: >> On Thu, 2014-07-10 at 18:24 -0400, Jerome Glisse wrote: >>> On Fri, Jul 11, 2014 at 12:45:27AM +0300, Oded Gabbay wrote: This patch set implements a Heterogeneous System

[Intel-gfx] [Xen-devel] [RFC][PATCH] gpu:drm:i915:intel_detect_pch: back to check devfn instead of check class type

2014-07-12 Thread Daniel Vetter
On Fri, Jul 11, 2014 at 08:30:59PM +, Tian, Kevin wrote: > > From: Konrad Rzeszutek Wilk [mailto:konrad.wilk at oracle.com] > > Sent: Friday, July 11, 2014 12:42 PM > > > > On Fri, Jul 11, 2014 at 08:29:56AM +0200, Daniel Vetter wrote: > > > On Thu, Jul 10, 2014 at 09:08:24PM +, Tian,

[Bug 79074] PRIME with compositing rednering hangs and other rendering issues

2014-07-12 Thread bugzilla-dae...@freedesktop.org
: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/c9d767f7/attachment.html>

[PATCH 00/83] AMD HSA kernel driver

2014-07-12 Thread Daniel Vetter
On Sat, Jul 12, 2014 at 11:24:49AM +0200, Christian K?nig wrote: > Am 11.07.2014 23:18, schrieb Jerome Glisse: > >On Thu, Jul 10, 2014 at 10:51:29PM +, Gabbay, Oded wrote: > >>On Thu, 2014-07-10 at 18:24 -0400, Jerome Glisse wrote: > >>>On Fri, Jul 11, 2014 at 12:45:27AM +0300, Oded Gabbay

[PATCH v2 1/2] drm: rework flip-work helpers to avoid calling func when the FIFO is full

2014-07-12 Thread Rob Clark
On Sat, Jul 12, 2014 at 3:00 AM, Boris BREZILLON wrote: > Make use of lists instead of kfifo in order to dynamically allocate > task entry when someone require some delayed work, and thus preventing > drm_flip_work_queue from directly calling func instead of queuing this > call. > This allow

[Bug 81255] EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/60df37fd/attachment.html>

[Bug 73053] dpm hangs with BTC parts

2014-07-12 Thread bugzilla-dae...@freedesktop.org
re the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/c825fd39/attachment.html>

[Bug 73053] dpm hangs with BTC parts

2014-07-12 Thread bugzilla-dae...@freedesktop.org
art -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/068a2520/attachment.html>

[Bug 73911] Color Banding on radeon

2014-07-12 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/766482fc/attachment.html>

[Bug 81255] EDEADLK with S. Islands APU+dGPU during ib test on ring 5

2014-07-12 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140712/057bcd47/attachment.html>

[PATCH v3 1/2] drm: rework flip-work helpers to avoid calling func when the FIFO is full

2014-07-12 Thread Boris BREZILLON
Make use of lists instead of kfifo in order to dynamically allocate task entry when someone require some delayed work, and thus preventing drm_flip_work_queue from directly calling func instead of queuing this call. This allow drm_flip_work_queue to be safely called even within irq handlers. Add

[PATCH v3 0/2] drm: rework flip-work framework

2014-07-12 Thread Boris BREZILLON
Hello, This patch series reworks the flip-work framework to make it safe when calling drm_flip_work_queue from atomic contexts. The 2nd patch of this series is optional, as it only reworks drm_flip_work_init prototype to remove unneeded size argument and return code (this function cannot fail

[PATCH v3 2/2] drm: flip-work: change drm_flip_work_init prototype

2014-07-12 Thread Boris BREZILLON
Now that we're using lists instead of kfifo to store drm flip-work tasks we do not need the size parameter passed to drm_flip_work_init function anymore. Moreover this function cannot fail anymore, we can thus remove the return code. Modify drm_flip_work_init users to take account of these

[PATCH] drm/nouveau/disp/dp: drop dead code

2014-07-12 Thread Brian Norris
Since this commit: commit 55f083c33feb7231c7574a64cd01b0477715a370 Author: Ben Skeggs Date: Tue May 20 10:18:03 2014 +1000 drm/nouveau/disp/dp: maintain link in response to hpd signal a few bits of code have been dead. This was noticed by Coverity Scan. Signed-off-by: Brian

[PATCH] drm: omapdrm: fix compiler errors

2014-07-12 Thread Russell King
Regular randconfig nightly testing has detected problems with omapdrm. omapdrm fails to build when the kernel is built to support 64-bit DMA addresses and/or 64-bit physical addresses due to an assumption about the width of these types. Use %pad to print DMA addresses, rather than %x or %Zx

[PATCH] drm: bochs: fix warnings

2014-07-12 Thread Russell King
Regular nightly randconfig build testing discovered these warnings: drivers/gpu/drm/bochs/bochs_drv.c:100:12: warning: 'bochs_pm_suspend' defined but not used [-Wunused-function] drivers/gpu/drm/bochs/bochs_drv.c:117:12: warning: 'bochs_pm_resume' defined but not used [-Wunused-function] Fix

[PATCH] drm: cirrus: fix warnings

2014-07-12 Thread Russell King
Regular nightly randconfig build testing discovered these warnings: drivers/gpu/drm/cirrus/cirrus_drv.c:79:12: warning: 'cirrus_pm_suspend' defined but not used [-Wunused-function] drivers/gpu/drm/cirrus/cirrus_drv.c:96:12: warning: 'cirrus_pm_resume' defined but not used [-Wunused-function]

[PATCH 00/83] AMD HSA kernel driver

2014-07-12 Thread Jerome Glisse
On Sat, Jul 12, 2014 at 01:10:32PM +0200, Daniel Vetter wrote: > On Sat, Jul 12, 2014 at 11:24:49AM +0200, Christian K?nig wrote: > > Am 11.07.2014 23:18, schrieb Jerome Glisse: > > >On Thu, Jul 10, 2014 at 10:51:29PM +, Gabbay, Oded wrote: > > >>On Thu, 2014-07-10 at 18:24 -0400, Jerome

[RESEND PATCH v3 05/11] drm: add Atmel HLCDC Display Controller support

2014-07-12 Thread Boris BREZILLON
Hello, On Mon, 7 Jul 2014 18:42:58 +0200 Boris BREZILLON wrote: > +int atmel_hlcdc_layer_disable(struct atmel_hlcdc_layer *layer) > +{ > + struct atmel_hlcdc_layer_dma_channel *dma = >dma; > + unsigned long flags; > + int i; > + > + spin_lock_irqsave(>lock, flags); > + for

[RESEND PATCH v3 05/11] drm: add Atmel HLCDC Display Controller support

2014-07-12 Thread Rob Clark
On Sat, Jul 12, 2014 at 2:16 PM, Boris BREZILLON wrote: > Hello, > > On Mon, 7 Jul 2014 18:42:58 +0200 > Boris BREZILLON wrote: > > >> +int atmel_hlcdc_layer_disable(struct atmel_hlcdc_layer *layer) >> +{ >> + struct atmel_hlcdc_layer_dma_channel *dma = >dma; >> + unsigned long flags;

[Bug 73901] Kernel crash after modprobe radeon runpm=1

2014-07-12 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=73901 Pali Roh?r changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 79591] possible circular locking dependency detected

2014-07-12 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=79591 --- Comment #5 from Martin Peres --- Created attachment 142831 --> https://bugzilla.kernel.org/attachment.cgi?id=142831=edit drm/nouveau/therm: fix a potential deadlock in the therm monitoring code Sorry for the wait. Can you try to reproduce

[PATCH 00/83] AMD HSA kernel driver

2014-07-12 Thread Gabbay, Oded
On Fri, 2014-07-11 at 17:18 -0400, Jerome Glisse wrote: > On Thu, Jul 10, 2014 at 10:51:29PM +, Gabbay, Oded wrote: > > On Thu, 2014-07-10 at 18:24 -0400, Jerome Glisse wrote: > > > On Fri, Jul 11, 2014 at 12:45:27AM +0300, Oded Gabbay wrote: > > > > This patch set implements a