[Bug 63702] tiling2d in radeon trash vdpau UVD textures

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63702 Christian König changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

Re: [PATCH] drm/radeon: fix endian bugs in atom_allocate_fb_scratch()

2013-04-25 Thread Michel Dänzer
On Mit, 2013-04-24 at 14:40 -0400, alexdeuc...@gmail.com wrote: > From: Alex Deucher > > Signed-off-by: Alex Deucher > Cc: sta...@vger.kernel.org > --- > drivers/gpu/drm/radeon/atom.c |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/radeon/ato

Radeon RS690 and gcc 4.8.0

2013-04-25 Thread NEIL.IBEY
Good Day, Since switching to gcc 4.8.0 to compile the kernel (versions ranging from 3.6.11 through 3.9-rc8), I've been getting the following kernel oops at radeon/radeon_vram_location. This is on an HP 6715b laptop using an R300 RS690 chip. No issues with the newer radeon chipsets and no issues

Re: [PATCHv4 1/2] ppc64: perform proper max_bus_speed detection

2013-04-25 Thread Tony Breeds
On Wed, Apr 24, 2013 at 07:54:49PM -0300, luca...@linux.vnet.ibm.com wrote: > From: Lucas Kannebley Tavares > > On pseries machines the detection for max_bus_speed should be done > through an OpenFirmware property. This patch adds a function to perform > this detection and a hook to perform dynam

[Bug 62466] r600g hyperz lockups with KSP 0.19

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62466 --- Comment #7 from Knut Andre Tidemann --- That patch fixes the bug! I can reliably reproduce it in a few seconds without the patch, but I have not been able to get a GPU hang after I applied the patch! I've only done minimal teseting, 5-10 min

Re: [PATCH] drm/shmobile: Fix race condition between page flip request and handler

2013-04-25 Thread Laurent Pinchart
On Thursday 28 March 2013 16:10:02 Laurent Pinchart wrote: > Hi Dave, > > Could you please pick this patch for v3.10 ? Ping ? > On Tuesday 12 March 2013 15:38:43 Laurent Pinchart wrote: > > The page flip handler stores the page flip event pointer and then calls > > drm_vblank_get() to enable the

[Bug 63865] radeon_atombios_get_power_modes oops with E-350

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63865 --- Comment #3 from Alex Deucher --- (In reply to comment #2) > linux 3.7.9 works fine, I'll try to obtain earlier 3.8.x packages to test. Any chance you could bisect? -- You are receiving this mail because: You are the assignee for the bug. _

[Bug 63865] radeon_atombios_get_power_modes oops with E-350

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63865 --- Comment #4 from Alex Deucher --- Created attachment 78471 --> https://bugs.freedesktop.org/attachment.cgi?id=78471&action=edit Possible fix The attached patch should fix it, but I don't see how any kernel ever would have worked with your c

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #60 from udo --- The first bisect kernel I try gives me youtube videos that are blocks of gibberish. What to do about that? 3.7.1. crashed like previous kernels (showing text boot screen) but no messages in the log. So is that the sa

[PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Christian König
From: Christian König This avoid moving the BO directly after allocating it. Signed-off-by: Christian König --- drivers/gpu/drm/radeon/radeon_sa.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/radeon_sa.c b/drivers/gpu/drm/radeon/radeon_sa.c ind

Re: [PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Alex Deucher
On Thu, Apr 25, 2013 at 12:19 PM, Christian König wrote: > From: Christian König > > This avoid moving the BO directly after allocating it. > > Signed-off-by: Christian König Looks good. Applied to my tree. Alex > --- > drivers/gpu/drm/radeon/radeon_sa.c |2 +- > 1 file changed, 1 inser

Re: [PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Christian König
Am 25.04.2013 18:40, schrieb Alex Deucher: On Thu, Apr 25, 2013 at 12:19 PM, Christian König wrote: From: Christian König This avoid moving the BO directly after allocating it. Signed-off-by: Christian König Looks good. Applied to my tree. Have you also seen/applied "[PATCH] drm/radeon:

Re: [PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Alex Deucher
On Thu, Apr 25, 2013 at 12:47 PM, Christian König wrote: > Am 25.04.2013 18:40, schrieb Alex Deucher: > >> On Thu, Apr 25, 2013 at 12:19 PM, Christian König >> wrote: >>> >>> From: Christian König >>> >>> This avoid moving the BO directly after allocating it. >>> >>> Signed-off-by: Christian Kön

[PATCH 1/3] drm: Make drm_ioctls const

2013-04-25 Thread ville . syrjala
From: Ville Syrjälä We never modify the contents of drm_ioctls, so make it const. Signed-off-by: Ville Syrjälä --- drivers/gpu/drm/drm_drv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 0ac1991..80c6895 1006

[PATCH 3/3] drm: Kill user_modes list and the associated ioctls

2013-04-25 Thread ville . syrjala
From: Ville Syrjälä There is no way to use modes added to the user_modes list. We never look at the contents of said list in the kernel, and the only operations userspace can do are attach and detach. So the only "benefit" of this interface is wasting kernel memory. Fortunately it seems no real

[PATCH 2/3] drm: Silence some sparse warnings

2013-04-25 Thread ville . syrjala
From: Ville Syrjälä drivers/gpu/drm/drm_pci.c:155:5: warning: symbol 'drm_pci_set_busid' was not declared. Should it be static? drivers/gpu/drm/drm_pci.c:197:5: warning: symbol 'drm_pci_set_unique' was not declared. Should it be static? drivers/gpu/drm/drm_pci.c:269:5: warning: symbol 'drm_pci_

[PATCH libdrm] Deprecate drmModeAttachMode and drmModeDetachMode

2013-04-25 Thread ville . syrjala
From: Ville Syrjälä The kernel no longer implements the ioctls, and they never did anything useful. Signed-off-by: Ville Syrjälä --- xf86drmMode.c | 16 xf86drmMode.h | 10 ++ 2 files changed, 6 insertions(+), 20 deletions(-) diff --git a/xf86drmMode.c b/xf86drmMode.c

[PATCH 08/21] drm/nouveau: use mdelay instead of large udelay constants

2013-04-25 Thread Arnd Bergmann
ARM cannot handle udelay for more than 2 miliseconds, so we should use mdelay instead for those. Signed-off-by: Arnd Bergmann Cc: David Airlie Cc: Ben Skeggs Cc: dri-devel@lists.freedesktop.org --- drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c | 3 ++- 1 file changed, 2 insertions(+), 1 d

[PATCH 09/21] drm: export drm_vm_open_locked

2013-04-25 Thread Arnd Bergmann
The EXYNOS DRM driver uses drm_vm_open_locked in its mmap() function, and it can be built as a loadable module, which currently fails. This exports the symbol from the DRM core to avoid ERROR: "drm_vm_open_locked" [drivers/gpu/drm/exynos/exynosdrm.ko] undefined! Signed-off-by: Arnd Bergmann Cc:

[PATCH 00/21] more arm build fixes

2013-04-25 Thread Arnd Bergmann
Hi subsystem maintainers, Here is another set of patches that resulted from build testing on linux-next. Please apply directly into your trees if you agree, or let me know if I made a mistake. I can take whatever remains through the arm-soc tree if you prefer that or I don't hear back. A

Re: [PATCHv4 1/2] ppc64: perform proper max_bus_speed detection

2013-04-25 Thread Lucas Kannebley Tavares
On 04/24/2013 08:48 PM, Tony Breeds wrote: On Wed, Apr 24, 2013 at 07:54:49PM -0300, luca...@linux.vnet.ibm.com wrote: From: Lucas Kannebley Tavares On pseries machines the detection for max_bus_speed should be done through an OpenFirmware property. This patch adds a function to perform this de

Re: [PATCH 11/21] drm/tilcdc: use only a single module device table

2013-04-25 Thread Rob Clark
On Tue, Apr 23, 2013 at 12:30 PM, Arnd Bergmann wrote: > The tilcdc driver fails to be built as a module because of extraneous > MODULE_DEVICE_TABLE entries: > > drivers/gpu/drm/tilcdc/tilcdc_slave.o:(.data+0x54): multiple definition of > `__mod_of_device_table' > drivers/gpu/drm/tilcdc/tilcdc_tf

Re: [PATCH 3/3] drm: Kill user_modes list and the associated ioctls

2013-04-25 Thread Daniel Vetter
On Thu, Apr 25, 2013 at 7:09 PM, wrote: > From: Ville Syrjälä > > There is no way to use modes added to the user_modes list. We never > look at the contents of said list in the kernel, and the only operations > userspace can do are attach and detach. So the only "benefit" of this > interface is

[PATCH 1/2] drm/radeon: add some new SI PCI ids

2013-04-25 Thread alexdeucher
From: Alex Deucher Signed-off-by: Alex Deucher Cc: sta...@vger.kernel.org --- include/drm/drm_pciids.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/drm/drm_pciids.h b/include/drm/drm_pciids.h index 918e8fe..52300c7 100644 --- a/include/drm/drm_pciids.h +++

[PATCH 2/2] drm/radeon: add new richland pci ids

2013-04-25 Thread alexdeucher
From: Alex Deucher Signed-off-by: Alex Deucher Cc: sta...@vger.kernel.org --- drivers/gpu/drm/radeon/ni.c |6 -- include/drm/drm_pciids.h|2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/ni.c b/drivers/gpu/drm/radeon/ni.c index 7436b91.

[PATCH] drm/exynos: Don't blend mixer layer 0

2013-04-25 Thread Sean Paul
This patch disables blending the mixer's layer 0 onto the background (solid color). It doesn't make sense to blend this layer by default, and causes color distortion if the layer is used for arbitrary content. Signed-off-by: Sean Paul --- drivers/gpu/drm/exynos/exynos_mixer.c |8 +--- 1

[Bug 63933] New: Error in r300_set_framebuffer_state if use Dual-Head setup

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63933 Priority: medium Bug ID: 63933 Assignee: dri-devel@lists.freedesktop.org Summary: Error in r300_set_framebuffer_state if use Dual-Head setup Severity: normal Classificati

[GIT PULL] gma500-fixes

2013-04-25 Thread Patrik Jakobsson
Hi Dave Two fixes for gma500. First one from Anisse allows us to handle ASLE irqs even when BIOS doesn't trigger a pipe event irq. The second one allows dual head setups to have a big shared framebuffer. Thanks Patrik The following changes since commit 1611f8457768716ba2397e0cdcc92c863cf9b58b:

[Bug 63933] Error in r300_set_framebuffer_state if use Dual-Head setup

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63933 Alex Deucher changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[PATCH] radeon: add bo tracking debugfs

2013-04-25 Thread j . glisse
From: Jerome Glisse This is to allow debugging of userspace program not freeing buffer after, which is basicly a memory leak. This print the list of all gem object along with their size and placement (VRAM,GTT,CPU) and with the pid of the task that created them. Signed-off-by: Jerome Glisse ---

Re: [PATCH] radeon: add bo tracking debugfs

2013-04-25 Thread Alex Deucher
On Thu, Apr 25, 2013 at 10:29 PM, wrote: > From: Jerome Glisse > > This is to allow debugging of userspace program not freeing buffer > after, which is basicly a memory leak. This print the list of all > gem object along with their size and placement (VRAM,GTT,CPU) and > with the pid of the task

[Bug 63935] New: TURKS [drm:r600_uvd_init] *ERROR* UVD not responding, trying to reset the VCPU!!!

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63935 Priority: medium Bug ID: 63935 Assignee: dri-devel@lists.freedesktop.org Summary: TURKS [drm:r600_uvd_init] *ERROR* UVD not responding, trying to reset the VCPU!!! Severity:

[Bug 63935] TURKS [drm:r600_uvd_init] *ERROR* UVD not responding, trying to reset the VCPU!!!

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63935 --- Comment #1 from Alex Deucher --- Make sure you have installed the new UVD and RLC ucode for TURKS. -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel mailing l

[Bug 63935] TURKS [drm:r600_uvd_init] *ERROR* UVD not responding, trying to reset the VCPU!!!

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63935 --- Comment #2 from Benjamin Lee --- These are the versions I have: blee@supra /lib/firmware/radeon $ md5sum BTC_rlc.bin SUMO_uvd.bin TURKS* 25d61fad839b30b263f52328c1f678fb BTC_rlc.bin 51d9e0e2247c313c5bfc8fa7bb5b213d SUMO_uvd.bin 158f8e21ccf

[Bug 63935] TURKS [drm:r600_uvd_init] *ERROR* UVD not responding, trying to reset the VCPU!!!

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63935 --- Comment #3 from Alex Deucher --- (In reply to comment #0) > Using the code from drm-next-3.10-2 with linux-3.9-rc8, What does this mean? Does it work ok with plain drm-next-3.10-2? perhaps you missed some patches? -- You are receiving th

[Bug 62721] GPU lockup in Minecraft 1.5.1 with HyperZ

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62721 Maarten Baert changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

RE: [PATCH Resend] drm/exynos: Select VIDEOMODE_HELPERS for FIMD

2013-04-25 Thread Inki Dae
> -Original Message- > From: Sachin Kamat [mailto:sachin.ka...@linaro.org] > Sent: Thursday, April 25, 2013 8:36 PM > To: dri-devel@lists.freedesktop.org > Cc: inki@samsung.com; jy0922.s...@samsung.com; sachin.ka...@linaro.org > Subject: [PATCH Resend] drm/exynos: Select VIDEOMODE_HEL

Re: [PATCH 09/21] drm: export drm_vm_open_locked

2013-04-25 Thread Inki Dae
2013/4/26 Arnd Bergmann > The EXYNOS DRM driver uses drm_vm_open_locked in its mmap() function, > and it can be built as a loadable module, which currently fails. > This exports the symbol from the DRM core to avoid > > ERROR: "drm_vm_open_locked" [drivers/gpu/drm/exynos/exynosdrm.ko] > undefined

[PATCH] drm/exynos: fix multiple definition build error

2013-04-25 Thread Inki Dae
This patch fixes multiple definition error like below when building it as moudle with device tree support. drivers/gpu/drm/exynos/exynos_drm_g2d.o: In function `.LANCHOR1': exynos_drm_g2d.c:(.rodata+0x6c): multiple definition of `__mod_of_device_table' drivers/gpu/drm/exynos/exynos_drm_fimd.o:exyn

[PATCH] drm: shmobile: Use devm_* managed functions

2013-04-25 Thread Laurent Pinchart
This simplifies cleanup paths and fixes a probe time crash in the error path when trying to cleanup mode setting before it was initialized. Signed-off-by: Laurent Pinchart --- drivers/gpu/drm/shmobile/shmob_drm_drv.c | 28 +--- drivers/gpu/drm/shmobile/shmob_drm_plane.c

[PATCH Resend] drm/exynos: Select VIDEOMODE_HELPERS for FIMD

2013-04-25 Thread Sachin Kamat
FIMD also requires video mode helper APIs. Without this patch we get the following build error: drivers/gpu/drm/exynos/exynos_drm_fimd.c:895: undefined reference to `of_get_fb_videomode' make: *** [vmlinux] Error 1 Signed-off-by: Sachin Kamat --- drivers/gpu/drm/exynos/Kconfig |1 + 1 file c

Re: [PATCH Resend] drm/exynos: Select VIDEOMODE_HELPERS for FIMD

2013-04-25 Thread Sachin Kamat
On 26 April 2013 10:11, Inki Dae wrote: > > >> -Original Message- >> From: Sachin Kamat [mailto:sachin.ka...@linaro.org] >> Sent: Thursday, April 25, 2013 8:36 PM >> To: dri-devel@lists.freedesktop.org >> Cc: inki@samsung.com; jy0922.s...@samsung.com; sachin.ka...@linaro.org >> Subject

[Bug 63935] TURKS [drm:r600_uvd_init] *ERROR* UVD not responding, trying to reset the VCPU!!!

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63935 --- Comment #4 from Benjamin Lee --- Thanks for the suggestion. I built drm-next-3.10-2 and got the same issue. I had to apply patches fffe01f7a768d07cc50ace71abe28fbf2f786a43 (PCI: Add PCI ROM helper for platform-provided ROM images) and 06a08

[Bug 63935] TURKS [drm:r600_uvd_init] *ERROR* UVD not responding, trying to reset the VCPU!!!

2013-04-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63935 Benjamin Lee changed: What|Removed |Added Attachment #78493|0 |1 is obsolete|

[Bug 63702] tiling2d in radeon trash vdpau UVD textures

2013-04-25 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130425/d5a865cf/attachment-0001.html>

[Bug 63865] radeon_atombios_get_power_modes oops with E-350

2013-04-25 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/20130425/de88d1d2/attachment.html>

[Bug 63748] GPU Lockup playing urban terror

2013-04-25 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20130425/e1b2157f/attachment.html>

[Bug 63702] tiling2d in radeon trash vdpau UVD textures

2013-04-25 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20130425/c9fcbaa9/attachment.html>

[PATCH] drm/radeon: fix endian bugs in atom_allocate_fb_scratch()

2013-04-25 Thread Michel Dänzer
On Mit, 2013-04-24 at 14:40 -0400, alexdeucher at gmail.com wrote: > From: Alex Deucher > > Signed-off-by: Alex Deucher > Cc: stable at vger.kernel.org > --- > drivers/gpu/drm/radeon/atom.c |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/rade

[PATCHv4 1/2] ppc64: perform proper max_bus_speed detection

2013-04-25 Thread Tony Breeds
n, > + "ibm,pcie-link-speed-stats", NULL); > + if (pcie_link_speed_stats) > + break; > + } Please use the helpers in include/linux/of.h rather than open coding this. Yours Tony -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130425/73f66f39/attachment-0001.pgp>

[Bug 62466] r600g hyperz lockups with KSP 0.19

2013-04-25 Thread bugzilla-dae...@freedesktop.org
5-10 min, but everything works great. -- 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/20130425/f8312215/attachment.html>

[PATCH] drm/shmobile: Fix race condition between page flip request and handler

2013-04-25 Thread Laurent Pinchart
On Thursday 28 March 2013 16:10:02 Laurent Pinchart wrote: > Hi Dave, > > Could you please pick this patch for v3.10 ? Ping ? > On Tuesday 12 March 2013 15:38:43 Laurent Pinchart wrote: > > The page flip handler stores the page flip event pointer and then calls > > drm_vblank_get() to enable the

[Bug 63865] radeon_atombios_get_power_modes oops with E-350

2013-04-25 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130425/2d6b936b/attachment.html>

[Bug 63865] radeon_atombios_get_power_modes oops with E-350

2013-04-25 Thread bugzilla-dae...@freedesktop.org
ed with your card. Did you change any bios settings or flash your bios recently? -- 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/attac

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-25 Thread bugzilla-dae...@freedesktop.org
same problem we're seeing and searching for? -- 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/20130425/25df42a7/attachment.html>

[PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Christian König
From: Christian K?nig This avoid moving the BO directly after allocating it. Signed-off-by: Christian K?nig --- drivers/gpu/drm/radeon/radeon_sa.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/radeon_sa.c b/drivers/gpu/drm/radeon/radeon_sa.c ind

[PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Alex Deucher
On Thu, Apr 25, 2013 at 12:19 PM, Christian K?nig wrote: > From: Christian K?nig > > This avoid moving the BO directly after allocating it. > > Signed-off-by: Christian K?nig Looks good. Applied to my tree. Alex > --- > drivers/gpu/drm/radeon/radeon_sa.c |2 +- > 1 file changed, 1 inser

[PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Christian König
Am 25.04.2013 18:40, schrieb Alex Deucher: > On Thu, Apr 25, 2013 at 12:19 PM, Christian K?nig > wrote: >> From: Christian K?nig >> >> This avoid moving the BO directly after allocating it. >> >> Signed-off-by: Christian K?nig > Looks good. Applied to my tree. Have you also seen/applied "[PATC

[PATCH] drm/radeon: allocate SA bo in the requested domain

2013-04-25 Thread Alex Deucher
On Thu, Apr 25, 2013 at 12:47 PM, Christian K?nig wrote: > Am 25.04.2013 18:40, schrieb Alex Deucher: > >> On Thu, Apr 25, 2013 at 12:19 PM, Christian K?nig >> wrote: >>> >>> From: Christian K?nig >>> >>> This avoid moving the BO directly after allocating it. >>> >>> Signed-off-by: Christian K?n

[PATCH 1/3] drm: Make drm_ioctls const

2013-04-25 Thread ville.syrj...@linux.intel.com
From: Ville Syrj?l? We never modify the contents of drm_ioctls, so make it const. Signed-off-by: Ville Syrj?l? --- drivers/gpu/drm/drm_drv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 0ac1991..80c6895 1006

[PATCH 3/3] drm: Kill user_modes list and the associated ioctls

2013-04-25 Thread ville.syrj...@linux.intel.com
From: Ville Syrj?l? There is no way to use modes added to the user_modes list. We never look at the contents of said list in the kernel, and the only operations userspace can do are attach and detach. So the only "benefit" of this interface is wasting kernel memory. Fortunately it seems no real

[PATCH 2/3] drm: Silence some sparse warnings

2013-04-25 Thread ville.syrj...@linux.intel.com
From: Ville Syrj?l? drivers/gpu/drm/drm_pci.c:155:5: warning: symbol 'drm_pci_set_busid' was not declared. Should it be static? drivers/gpu/drm/drm_pci.c:197:5: warning: symbol 'drm_pci_set_unique' was not declared. Should it be static? drivers/gpu/drm/drm_pci.c:269:5: warning: symbol 'drm_pci_

[PATCH libdrm] Deprecate drmModeAttachMode and drmModeDetachMode

2013-04-25 Thread ville.syrj...@linux.intel.com
From: Ville Syrj?l? The kernel no longer implements the ioctls, and they never did anything useful. Signed-off-by: Ville Syrj?l? --- xf86drmMode.c | 16 xf86drmMode.h | 10 ++ 2 files changed, 6 insertions(+), 20 deletions(-) diff --git a/xf86drmMode.c b/xf86drmMode.c

[PATCH 08/21] drm/nouveau: use mdelay instead of large udelay constants

2013-04-25 Thread Arnd Bergmann
ARM cannot handle udelay for more than 2 miliseconds, so we should use mdelay instead for those. Signed-off-by: Arnd Bergmann Cc: David Airlie Cc: Ben Skeggs Cc: dri-devel at lists.freedesktop.org --- drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c | 3 ++- 1 file changed, 2 insertions(+),

[PATCH 09/21] drm: export drm_vm_open_locked

2013-04-25 Thread Arnd Bergmann
The EXYNOS DRM driver uses drm_vm_open_locked in its mmap() function, and it can be built as a loadable module, which currently fails. This exports the symbol from the DRM core to avoid ERROR: "drm_vm_open_locked" [drivers/gpu/drm/exynos/exynosdrm.ko] undefined! Signed-off-by: Arnd Bergmann Cc:

[PATCH 00/21] more arm build fixes

2013-04-25 Thread Arnd Bergmann
Hi subsystem maintainers, Here is another set of patches that resulted from build testing on linux-next. Please apply directly into your trees if you agree, or let me know if I made a mistake. I can take whatever remains through the arm-soc tree if you prefer that or I don't hear back. A

[PATCHv4 1/2] ppc64: perform proper max_bus_speed detection

2013-04-25 Thread Lucas Kannebley Tavares
On 04/24/2013 08:48 PM, Tony Breeds wrote: > On Wed, Apr 24, 2013 at 07:54:49PM -0300, lucaskt at linux.vnet.ibm.com wrote: >> From: Lucas Kannebley Tavares >> >> On pseries machines the detection for max_bus_speed should be done >> through an OpenFirmware property. This patch adds a function to pe

[PATCH 11/21] drm/tilcdc: use only a single module device table

2013-04-25 Thread Rob Clark
On Tue, Apr 23, 2013 at 12:30 PM, Arnd Bergmann wrote: > The tilcdc driver fails to be built as a module because of extraneous > MODULE_DEVICE_TABLE entries: > > drivers/gpu/drm/tilcdc/tilcdc_slave.o:(.data+0x54): multiple definition of > `__mod_of_device_table' > drivers/gpu/drm/tilcdc/tilcdc_tf

[PATCH 3/3] drm: Kill user_modes list and the associated ioctls

2013-04-25 Thread Daniel Vetter
On Thu, Apr 25, 2013 at 7:09 PM, wrote: > From: Ville Syrj?l? > > There is no way to use modes added to the user_modes list. We never > look at the contents of said list in the kernel, and the only operations > userspace can do are attach and detach. So the only "benefit" of this > interface is

[PATCH 1/2] drm/radeon: add some new SI PCI ids

2013-04-25 Thread alexdeuc...@gmail.com
From: Alex Deucher Signed-off-by: Alex Deucher Cc: stable at vger.kernel.org --- include/drm/drm_pciids.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/drm/drm_pciids.h b/include/drm/drm_pciids.h index 918e8fe..52300c7 100644 --- a/include/drm/drm_pciids.h +

[PATCH 2/2] drm/radeon: add new richland pci ids

2013-04-25 Thread alexdeuc...@gmail.com
From: Alex Deucher Signed-off-by: Alex Deucher Cc: stable at vger.kernel.org --- drivers/gpu/drm/radeon/ni.c |6 -- include/drm/drm_pciids.h|2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/ni.c b/drivers/gpu/drm/radeon/ni.c index 7436b

[PATCH] drm/exynos: Don't blend mixer layer 0

2013-04-25 Thread Sean Paul
This patch disables blending the mixer's layer 0 onto the background (solid color). It doesn't make sense to blend this layer by default, and causes color distortion if the layer is used for arbitrary content. Signed-off-by: Sean Paul --- drivers/gpu/drm/exynos/exynos_mixer.c |8 +--- 1

[Bug 63933] New: Error in r300_set_framebuffer_state if use Dual-Head setup

2013-04-25 Thread bugzilla-dae...@freedesktop.org
nnected this error/bug doesn't occur and WM GL-based start correctly. -- 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/20

[GIT PULL] gma500-fixes

2013-04-25 Thread Patrik Jakobsson
Hi Dave Two fixes for gma500. First one from Anisse allows us to handle ASLE irqs even when BIOS doesn't trigger a pipe event irq. The second one allows dual head setups to have a big shared framebuffer. Thanks Patrik The following changes since commit 1611f8457768716ba2397e0cdcc92c863cf9b58b:

[Bug 63933] Error in r300_set_framebuffer_state if use Dual-Head setup

2013-04-25 Thread bugzilla-dae...@freedesktop.org
esktop.org/archives/dri-devel/attachments/20130425/2f376ccd/attachment.html>

[PATCH] radeon: add bo tracking debugfs

2013-04-25 Thread j.gli...@gmail.com
From: Jerome Glisse This is to allow debugging of userspace program not freeing buffer after, which is basicly a memory leak. This print the list of all gem object along with their size and placement (VRAM,GTT,CPU) and with the pid of the task that created them. Signed-off-by: Jerome Glisse ---

[PATCH] radeon: add bo tracking debugfs

2013-04-25 Thread Alex Deucher
On Thu, Apr 25, 2013 at 10:29 PM, wrote: > From: Jerome Glisse > > This is to allow debugging of userspace program not freeing buffer > after, which is basicly a memory leak. This print the list of all > gem object along with their size and placement (VRAM,GTT,CPU) and > with the pid of the task

[PATCH] drm: shmobile: Use devm_* managed functions

2013-04-25 Thread Laurent Pinchart
This simplifies cleanup paths and fixes a probe time crash in the error path when trying to cleanup mode setting before it was initialized. Signed-off-by: Laurent Pinchart --- drivers/gpu/drm/shmobile/shmob_drm_drv.c | 28 +--- drivers/gpu/drm/shmobile/shmob_drm_plane.c

[PATCH Resend] drm/exynos: Select VIDEOMODE_HELPERS for FIMD

2013-04-25 Thread Sachin Kamat
FIMD also requires video mode helper APIs. Without this patch we get the following build error: drivers/gpu/drm/exynos/exynos_drm_fimd.c:895: undefined reference to `of_get_fb_videomode' make: *** [vmlinux] Error 1 Signed-off-by: Sachin Kamat --- drivers/gpu/drm/exynos/Kconfig |1 + 1 file c