[Bug 701] [r128] Clipping problems in RTCW

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=701 almos changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Bug 53512] New: kernel rejects cs in quake wars

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53512 Bug #: 53512 Summary: kernel rejects cs in quake wars Classification: Unclassified Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW

[Bug 38452] ETQW: Renders garbage in some places

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=38452 --- Comment #9 from almos 2012-08-14 22:42:07 UTC --- Can this be closed? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug.

[Bug 53511] New: r600g llvm backend doesn't support indirect addressing

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53511 Bug #: 53511 Summary: r600g llvm backend doesn't support indirect addressing Classification: Unclassified Product: Mesa Version: git Platform: Other OS/Version: All

[Bug 25483] Neverwinter nights lacks ram when using the radeon driver

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=25483 almos changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[PATCH] drm/usb: select USB_SUPPORT in Kconfig

2012-08-14 Thread Sascha Hauer
On Tue, Aug 14, 2012 at 05:12:22PM +0530, Sachin Kamat wrote: > > In general what you suggested seems to be the right thing to do. > However in this particular case, making this "depends on" creates > recursive dependencies > and probably that is the reason Dave Airlie decided to make it "select

[Bug 41265] Radeon KMS does not work on thunderbolt media dock

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=41265 --- Comment #32 from Matthew Garrett 2012-08-14 18:38:49 UTC --- Could you add the full output of lspci -vvv when booted with the dock connected? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[PATCHv8 26/26] v4l: s5p-mfc: support for dmabuf exporting

2012-08-14 Thread Tomasz Stanislawski
This patch enhances s5p-mfc with support for DMABUF exporting via VIDIOC_EXPBUF ioctl. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park CC: Kamil Debski --- drivers/media/video/s5p-mfc/s5p_mfc_dec.c | 18 ++ drivers/media/video/s5p-mfc/s5p_mfc_enc.c | 18

[PATCHv8 25/26] v4l: s5p-tv: mixer: support for dmabuf exporting

2012-08-14 Thread Tomasz Stanislawski
This patch enhances s5p-tv with support for DMABUF exporting via VIDIOC_EXPBUF ioctl. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/media/video/s5p-tv/mixer_video.c | 10 ++ 1 file changed, 10 insertions(+) diff --git

[PATCHv8 24/26] v4l: s5p-fimc: support for dmabuf exporting

2012-08-14 Thread Tomasz Stanislawski
This patch enhances s5p-fimc with support for DMABUF exporting via VIDIOC_EXPBUF ioctl. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/media/video/s5p-fimc/fimc-capture.c |9 + 1 file changed, 9 insertions(+) diff --git

[PATCHv8 23/26] v4l: vb2: add support for DMA_ATTR_NO_KERNEL_MAPPING

2012-08-14 Thread Tomasz Stanislawski
From: Marek Szyprowski Signed-off-by: Marek Szyprowski --- drivers/media/video/atmel-isi.c |2 +- drivers/media/video/blackfin/bfin_capture.c |2 +- drivers/media/video/marvell-ccic/mcam-core.c |3 ++- drivers/media/video/mx2_camera.c

[PATCHv8 22/26] media: vb2: fail if user ptr buffer is not correctly aligned

2012-08-14 Thread Tomasz Stanislawski
From: Marek Szyprowski Signed-off-by: Marek Szyprowski --- drivers/media/video/videobuf2-dma-contig.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/media/video/videobuf2-dma-contig.c b/drivers/media/video/videobuf2-dma-contig.c index

[PATCHv8 21/26] v4l: vb2-dma-contig: add reference counting for a device from allocator context

2012-08-14 Thread Tomasz Stanislawski
This patch adds taking reference to the device for MMAP buffers. Such buffers, may be exported using DMABUF mechanism. If the driver that created a queue is unloaded then the queue is released, the device might be released too. However, buffers cannot be released if they are referenced by DMABUF

[PATCHv8 20/26] v4l: vb2-dma-contig: add support for DMABUF exporting

2012-08-14 Thread Tomasz Stanislawski
This patch adds support for exporting a dma-contig buffer using DMABUF interface. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/media/video/videobuf2-dma-contig.c | 204 1 file changed, 204 insertions(+) diff --git

[PATCHv8 19/26] v4l: vb2: add buffer exporting via dmabuf

2012-08-14 Thread Tomasz Stanislawski
This patch adds extension to videobuf2-core. It allow to export a mmap buffer as a file descriptor. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park Acked-by: Laurent Pinchart --- drivers/media/video/videobuf2-core.c | 67 ++

[PATCHv8 18/26] v4l: add buffer exporting via dmabuf

2012-08-14 Thread Tomasz Stanislawski
This patch adds extension to V4L2 api. It allow to export a mmap buffer as file descriptor. New ioctl VIDIOC_EXPBUF is added. It takes a buffer offset used by mmap and return a file descriptor on success. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park ---

[PATCHv8 17/26] Documentation: media: description of DMABUF exporting in V4L2

2012-08-14 Thread Tomasz Stanislawski
This patch adds description and usage examples for exporting DMABUF file descriptor in V4L2. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park CC: linux-doc at vger.kernel.org --- Documentation/DocBook/media/v4l/compat.xml|3 + Documentation/DocBook/media/v4l/io.xml

[PATCHv8 16/26] v4l: vb2-dma-contig: let mmap method to use dma_mmap_coherent call

2012-08-14 Thread Tomasz Stanislawski
From: Marek Szyprowski Let mmap method to use dma_mmap_coherent call. Moreover, this patch removes vb2_mmap_pfn_range from videobuf2 helpers as it was suggested by Laurent Pinchart. The function is no longer used in vb2 code. Signed-off-by: Marek Szyprowski

[PATCHv8 15/26] v4l: s5p-fimc: support for dmabuf importing

2012-08-14 Thread Tomasz Stanislawski
This patch enhances s5p-fimc with support for DMABUF importing via V4L2_MEMORY_DMABUF memory type. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park Acked-by: Sylwester Nawrocki --- drivers/media/video/s5p-fimc/Kconfig|1 + drivers/media/video/s5p-fimc/fimc-capture.c

[PATCHv8 14/26] v4l: s5p-tv: mixer: support for dmabuf importing

2012-08-14 Thread Tomasz Stanislawski
This patch enhances s5p-tv with support for DMABUF importing via V4L2_MEMORY_DMABUF memory type. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/media/video/s5p-tv/Kconfig |1 + drivers/media/video/s5p-tv/mixer_video.c |2 +- 2 files changed, 2

[PATCHv8 13/26] v4l: vivi: support for dmabuf importing

2012-08-14 Thread Tomasz Stanislawski
This patch enhances VIVI driver with a support for importing a buffer from DMABUF file descriptors. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/media/video/Kconfig |1 + drivers/media/video/vivi.c |2 +- 2 files changed, 2 insertions(+), 1 deletion(-)

[PATCHv8 12/26] v4l: vb2-vmalloc: add support for dmabuf importing

2012-08-14 Thread Tomasz Stanislawski
This patch adds support for importing DMABUF files for vmalloc allocator in Videobuf2. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/media/video/videobuf2-vmalloc.c | 56 +++ 1 file changed, 56 insertions(+) diff --git

[PATCHv8 11/26] v4l: vb2-dma-contig: add support for dma_buf importing

2012-08-14 Thread Tomasz Stanislawski
From: Sumit Semwal This patch makes changes for adding dma-contig as a dma_buf user. It provides function implementations for the {attach, detach, map, unmap}_dmabuf() mem_ops of DMABUF memory type. Signed-off-by: Sumit Semwal Signed-off-by: Sumit Semwal [author

[PATCHv8 09/26] v4l: vb2: add prepare/finish callbacks to allocators

2012-08-14 Thread Tomasz Stanislawski
From: Marek Szyprowski This patch adds support for prepare/finish callbacks in VB2 allocators. These callback are used for buffer flushing. Signed-off-by: Marek Szyprowski Acked-by: Laurent Pinchart --- drivers/media/video/videobuf2-core.c | 11 +++

[PATCHv8 08/26] v4l: vb2-dma-contig: add support for scatterlist in userptr mode

2012-08-14 Thread Tomasz Stanislawski
This patch introduces usage of dma_map_sg to map memory behind a userspace pointer to a device as dma-contiguous mapping. This patch contains some of the code kindly provided by Marek Szyprowski and Kamil Debski and Andrzej Pietrasiewicz . Kind thanks for bug reports from Laurent Pinchart

[PATCHv8 07/26] v4l: vb2-dma-contig: Reorder functions

2012-08-14 Thread Tomasz Stanislawski
From: Laurent Pinchart Group functions by buffer type. Signed-off-by: Laurent Pinchart --- drivers/media/video/videobuf2-dma-contig.c | 92 1 file changed, 54 insertions(+), 38 deletions(-) diff --git

[PATCHv8 06/26] v4l: vb2-dma-contig: remove reference of alloc_ctx from a buffer

2012-08-14 Thread Tomasz Stanislawski
This patch removes a reference to alloc_ctx from an instance of a DMA contiguous buffer. It helps to avoid a risk of a dangling pointer if the context is released while the buffer is still valid. Moreover it removes one dereference step while accessing a device structure. Signed-off-by: Tomasz

[PATCHv8 05/26] v4l: vb2-dma-contig: Shorten vb2_dma_contig prefix to vb2_dc

2012-08-14 Thread Tomasz Stanislawski
From: Laurent Pinchart Signed-off-by: Laurent Pinchart --- drivers/media/video/videobuf2-dma-contig.c | 36 ++-- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/drivers/media/video/videobuf2-dma-contig.c

[PATCHv8 04/26] v4l: vb: remove warnings about MEMORY_DMABUF

2012-08-14 Thread Tomasz Stanislawski
From: Sumit Semwal Adding DMABUF memory type causes videobuf to complain about not using it in some switch cases. This patch removes these warnings. Signed-off-by: Sumit Semwal Acked-by: Laurent Pinchart --- drivers/media/video/videobuf-core.c |4 1 file

[PATCHv8 03/26] v4l: vb2: add support for shared buffer (dma_buf)

2012-08-14 Thread Tomasz Stanislawski
From: Sumit Semwal This patch adds support for DMABUF memory type in videobuf2. It calls relevant APIs of dma_buf for v4l reqbuf / qbuf / dqbuf operations. For this version, the support is for videobuf2 as a user of the shared buffer; so the allocation of the buffer is done

[PATCHv8 02/26] Documentation: media: description of DMABUF importing in V4L2

2012-08-14 Thread Tomasz Stanislawski
This patch adds description and usage examples for importing DMABUF file descriptor in V4L2. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park CC: linux-doc at vger.kernel.org --- Documentation/DocBook/media/v4l/compat.xml |4 + Documentation/DocBook/media/v4l/io.xml

[PATCHv8 01/26] v4l: Add DMABUF as a memory type

2012-08-14 Thread Tomasz Stanislawski
From: Sumit Semwal Adds DMABUF memory type to v4l framework. Also adds the related file descriptor in v4l2_plane and v4l2_buffer. Signed-off-by: Tomasz Stanislawski [original work in the PoC for buffer sharing] Signed-off-by: Sumit Semwal Signed-off-by: Sumit Semwal

[PATCHv8 00/26] Integration of videobuf2 with DMABUF

2012-08-14 Thread Tomasz Stanislawski
Hello everyone, This patchset adds support for DMABUF [2] importing and exporting to V4L2 stack. The importer and exporter part were merged because DMA mapping redesign [3] was scheduled for merge to mainline. v8: - rebased on 3.6-rc1 - merged importer and exporter patchsets - fixed missing

[PATCH v4 1/3] drm: Add user-defined EDID quirks capability

2012-08-14 Thread Paul Menzel
hment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20120814/b3f2c169/attachment-0001.pgp>

[PATCH] drm/usb: select USB_SUPPORT in Kconfig

2012-08-14 Thread Sachin Kamat
On 10 August 2012 19:35, Sascha Hauer wrote: > On Fri, Aug 10, 2012 at 11:00:25AM +0530, Sachin Kamat wrote: >> DRM_USB selects USB. However, USB depends on USB_SUPPORT and >> USB_ARCH_HAS_HCD. >> Thus, selecting USB_SUPPORT in Kconfig avoids the following warning >> (detected when DisplayLink

[Bug 41265] Radeon KMS does not work on thunderbolt media dock

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=41265 --- Comment #31 from Alexander E. Patrakov 2012-08-14 17:05:38 UTC --- Created attachment 65558 --> https://bugs.freedesktop.org/attachment.cgi?id=65558 acpidump output In http://mjg59.dreamwidth.org/15948.html , Matthew Garrett asked me to

[PATCH 3/3] drm/radeon/kms: implement timestamp userspace query

2012-08-14 Thread Michel Dänzer
On Die, 2012-08-14 at 10:39 -0400, Jerome Glisse wrote: > On Tue, Aug 14, 2012 at 10:36 AM, Michel D?nzer wrote: > > On Don, 2012-08-09 at 10:57 -0400, Jerome Glisse wrote: > >> On Thu, Aug 9, 2012 at 10:34 AM, Marek Ol??k wrote: > >> > > >> > diff --git a/drivers/gpu/drm/radeon/r600.c > >> >

[PATCH 3/3] drm/radeon/kms: implement timestamp userspace query

2012-08-14 Thread Michel Dänzer
On Don, 2012-08-09 at 10:57 -0400, Jerome Glisse wrote: > On Thu, Aug 9, 2012 at 10:34 AM, Marek Ol??k wrote: > > > > diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c > > index 637280f..be0e320 100644 > > --- a/drivers/gpu/drm/radeon/r600.c > > +++

[PATCH 3/3] apple-gmux: Add display mux support

2012-08-14 Thread Seth Forshee
From: Andreas Heider Add support for the gmux display muxing functionality and register a mux handler with vga_switcheroo. Signed-off-by: Andreas Heider Signed-off-by: Seth Forshee --- drivers/platform/x86/apple-gmux.c | 222 + 1 file

[PATCH 2/3] vga_switcheroo: Remove assumptions about registration/unregistration ordering

2012-08-14 Thread Seth Forshee
vga_switcheroo assumes that the handler will be registered before the last client, otherwise switching will not be enabled. Likewise it's assumed that the handler will not be unregistered without at least one client also being unregistered, otherwise switching will remain enabled despite no longer

[PATCH 1/3] vga_switcheroo: Don't require handler init callback

2012-08-14 Thread Seth Forshee
This callback is a no-op in nouveau, and the upcoming apple-gmux switcheroo support won't require it either. Rather than forcing drivers to stub it out, just make it optional and remove the callback from nouveau. Signed-off-by: Seth Forshee --- drivers/gpu/drm/nouveau/nouveau_acpi.c |6

[PATCH 0/3] Display switching support for Apple laptops

2012-08-14 Thread Seth Forshee
This series adds display switching support for Apple laptops. The first two patches contain preparatory changes to vga_switcheroo, and the third contains the changes to support display switching with the gmux. While these patches will allow switching the display mux, most Macbook owners will not

[Bug 27952] New: Screen garbled with GeForce 6150 Force 430

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=27952 Summary: Screen garbled with GeForce 6150 Force 430 Product: Drivers Version: 2.5 Platform: All OS/Version: Linux Tree: Mainline Status: RESOLVED Severity: high

[Bug 27942] Screen garbled with GeForce 6150 Force 430

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=27942 Alan changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug 44800] Radeon HD 6450 CAICOS screen corruption and kernel crashes

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=44800 --- Comment #12 from Marko Kohtala 2012-08-14 15:44:40 UTC --- I have also tried booting in BIOS mode using Ubuntu 12.04 live USB. It does not help. The board is "New P67 B3 Revision". I have since upgraded to BIOS 3602. Same problem is still

[Bug 26812] [RADEON:KMS:BARTS:HD6850:FIRMWARE] radeon module causes hard reset on modprobe

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=26812 Alan changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug 26712] Weird X display upon hibernating

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=26712 Florian Mickler changed: What|Removed |Added Blocks|21782 | Alan changed: What

[Bug 41265] Radeon KMS does not work on thunderbolt media dock

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=41265 --- Comment #30 from gyhor at gmx.de 2012-08-14 15:30:43 UTC --- (In reply to comment #17) > Probably need to ask Sony where they store the discrete vbios on these > systems. pfff... no hope here. i wrote multiples mails and phoned the support

[Bug 24932] BUG: unable to handle kernel paging request

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=24932 Alan changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #4 from Michel D?nzer 2012-08-14 14:04:13 UTC --- Please attach the Xorg.0.log file corresponding to the problem. Have you tried current Mesa Git master? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[PATCH] drm: Initialize object type when using DRM_MODE() macro

2012-08-14 Thread ville.syrj...@linux.intel.com
From: Ville Syrj?l? DRM_MODE() macro doesn't initialize the type of the base drm object. When a copy is made of the mode, the object type is overwritten with zero, and the the object can no longer be found by drm_mode_object_find() due to the type check failing.

[Bug 44800] Radeon HD 6450 CAICOS screen corruption and kernel crashes

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=44800 --- Comment #11 from Reartes Guillermo 2012-08-14 13:16:04 UTC --- @Marko Kohtala Currently you are bootin in UEFI mode. Can you boot in BIOS mode to test? Your board is P8P67-M with BIOS 1701 Is your board "Rev B"? Also check asus website,

[Bug 23372] kernel 2.6.36 killed my game of ut2004

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=23372 Alan changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Patch v2 1/4] Replace i2f() in r600_blit.c with an optimized version.

2012-08-14 Thread Michel Dänzer
On Sam, 2012-08-11 at 10:30 -0700, Steven Fuerst wrote: > We use __fls() to find the most significant bit. Using that, the > loop can be avoided. A second trick is to use the behaviour of the > rotate instructions to expand the range of the unsigned int to float > conversion to the full 32 bits

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #3 from Joeri Capens 2012-08-14 12:31:22 UTC --- Forgot to mention: while trying (but failing) to narrow down the problem with patch 416a2bd274566a6f607a271f524b2dc0b84d9106 I found that variable num_shader_engines in evergreen.c

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #2 from Joeri Capens 2012-08-14 12:24:48 UTC --- Created attachment 65542 --> https://bugs.freedesktop.org/attachment.cgi?id=65542 bisect info -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ---

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #1 from Joeri Capens 2012-08-14 12:23:05 UTC --- Created attachment 65541 --> https://bugs.freedesktop.org/attachment.cgi?id=65541 Portal 2 screenshot - bad -- Configure bugmail:

[Bug 53490] New: [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53490 Bug #: 53490 Summary: [bisected] bump map corruption from kernel 3.5 Classification: Unclassified Product: Mesa Version: 7.11 Platform: x86-64 (AMD64) OS/Version: Linux (All)

[PATCH] drm/exynos: Add dependency for G2D in Kconfig

2012-08-14 Thread Sachin Kamat
Select Exynos DRM based G2D only if non-DRM based Exynos G2D driver is not selected. Signed-off-by: Sachin Kamat --- drivers/gpu/drm/exynos/Kconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/exynos/Kconfig index

[Bug 21542] [BISECTED]Radeon: No 50Hz (PAL) modes available after upgrading to 2.6.36

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=21542 Alan changed: What|Removed |Added CC||alan at lxorguk.ukuu.org.uk

[Bug 21002] external monitor don't turn on at boot

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=21002 Alan changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug 20982] Radeon: Display doesn't fit the screen size

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=20982 Alan changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug 20142] enabling underscan by default behaves badly with so many monitors.

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=20142 Alan changed: What|Removed |Added CC||contact+kernel at toniob.net --- Comment #10

[Bug 20752] [KMS] radeon not working reliable with X1300

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=20752 Alan changed: What|Removed |Added CC||alan at lxorguk.ukuu.org.uk Kernel

[Bug 20142] enabling underscan by default behaves badly with so many monitors.

2012-08-14 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=20142 Alan changed: What|Removed |Added Status|NEW |RESOLVED CC|

[PATCH] drm/edid: limit printk when facing bad edid

2012-08-14 Thread Jerome Glisse
On Tue, Aug 14, 2012 at 10:54 AM, Adam Jackson wrote: > On 8/9/12 11:25 AM, j.glisse at gmail.com wrote: >> >> From: Jerome Glisse >> >> Limit printing bad edid information at one time per connector. >> Connector that are connected to a bad monitor/kvm will likely >> stay connected to the same

[PATCH] drm/edid: limit printk when facing bad edid

2012-08-14 Thread Adam Jackson
On 8/9/12 11:25 AM, j.glisse at gmail.com wrote: > From: Jerome Glisse > > Limit printing bad edid information at one time per connector. > Connector that are connected to a bad monitor/kvm will likely > stay connected to the same bad monitor/kvm and it makes no > sense to keep printing the bad

[PATCH v4 1/3] drm: Add user-defined EDID quirks capability

2012-08-14 Thread Ian Pilcher
On 08/14/2012 10:13 AM, Paul Menzel wrote: > Testing your patch, I would vote that a normal user is allowed to read > the quirk list. I thought about that, but I decided to leave it at 0600, because I can't see how the information would be of any use without the ability to change the list. I

[PATCH 3/3] drm/radeon/kms: implement timestamp userspace query

2012-08-14 Thread Jerome Glisse
On Tue, Aug 14, 2012 at 10:36 AM, Michel D?nzer wrote: > On Don, 2012-08-09 at 10:57 -0400, Jerome Glisse wrote: >> On Thu, Aug 9, 2012 at 10:34 AM, Marek Ol??k wrote: >> > >> > diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c >> > index 637280f..be0e320 100644 >> > ---

[pull] -fixes for 3.6

2012-08-14 Thread Daniel Vetter
Meh, I've again forgotten about all the cc's ... /me needs coffee On Tue, Aug 14, 2012 at 10:28 AM, Daniel Vetter wrote: > Hi Dave, > > A few important fixers: > - fix various lvds backlight issues, regressed in 3.6 (Takashi Iwai) > - make the retina mbp work (ignore bogus edp bpc value in vbt)

[Bug 43477] rendering errors in unigine tropics and sanctuary (regression)

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=43477 Andreas Boll changed: What|Removed |Added AssignedTo|dri-devel at lists.freedesktop |mesa-dev at lists.freedesktop.

[Bug 43477] rendering errors in unigine tropics and sanctuary (regression)

2012-08-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=43477 --- Comment #5 from maximlevitsky at gmail.com 2012-08-14 04:51:48 UTC --- This still happens on nouveau, despite OpenGL 3.0 advertised. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this

[git pull] drm fixes

2012-08-14 Thread Dave Airlie
Hi Linus, radeon and intel fixes mostly, one fix to the mgag200 driver to not hang on certain server variants. Dave. The following changes since commit 0d7614f09c1ebdbaa1599a5aba7593f147bf96ee: Linux 3.6-rc1 (2012-08-02 16:38:10 -0700) are available in the git repository at:

[Bug 43477] rendering errors in unigine tropics and sanctuary (regression)

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43477 Andreas Boll andreas.boll@gmail.com changed: What|Removed |Added AssignedTo|dri-devel@lists.freedesktop

Re: [pull] -fixes for 3.6

2012-08-14 Thread Daniel Vetter
Meh, I've again forgotten about all the cc's ... /me needs coffee On Tue, Aug 14, 2012 at 10:28 AM, Daniel Vetter dan...@ffwll.ch wrote: Hi Dave, A few important fixers: - fix various lvds backlight issues, regressed in 3.6 (Takashi Iwai) - make the retina mbp work (ignore bogus edp bpc

Re: [Patch v2 1/4] Replace i2f() in r600_blit.c with an optimized version.

2012-08-14 Thread Michel Dänzer
On Sam, 2012-08-11 at 10:30 -0700, Steven Fuerst wrote: We use __fls() to find the most significant bit. Using that, the loop can be avoided. A second trick is to use the behaviour of the rotate instructions to expand the range of the unsigned int to float conversion to the full 32 bits in

[PATCH] drm: Initialize object type when using DRM_MODE() macro

2012-08-14 Thread ville . syrjala
From: Ville Syrjälä ville.syrj...@linux.intel.com DRM_MODE() macro doesn't initialize the type of the base drm object. When a copy is made of the mode, the object type is overwritten with zero, and the the object can no longer be found by drm_mode_object_find() due to the type check failing.

[Bug 20142] enabling underscan by default behaves badly with so many monitors.

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=20142 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 20752] [KMS] radeon not working reliable with X1300

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=20752 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added CC||a...@lxorguk.ukuu.org.uk

[Bug 20982] Radeon: Display doesn't fit the screen size

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=20982 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 20142] enabling underscan by default behaves badly with so many monitors.

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=20142 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added CC||contact+ker...@toniob.net

[Bug 21002] external monitor don't turn on at boot

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=21002 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 21542] [BISECTED]Radeon: No 50Hz (PAL) modes available after upgrading to 2.6.36

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=21542 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added CC||a...@lxorguk.ukuu.org.uk

[Bug 53490] New: [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53490 Bug #: 53490 Summary: [bisected] bump map corruption from kernel 3.5 Classification: Unclassified Product: Mesa Version: 7.11 Platform: x86-64 (AMD64) OS/Version: Linux (All)

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #1 from Joeri Capens jo...@capens.net 2012-08-14 12:23:05 UTC --- Created attachment 65541 -- https://bugs.freedesktop.org/attachment.cgi?id=65541 Portal 2 screenshot - bad -- Configure bugmail:

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #2 from Joeri Capens jo...@capens.net 2012-08-14 12:24:48 UTC --- Created attachment 65542 -- https://bugs.freedesktop.org/attachment.cgi?id=65542 bisect info -- Configure bugmail:

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #3 from Joeri Capens jo...@capens.net 2012-08-14 12:31:22 UTC --- Forgot to mention: while trying (but failing) to narrow down the problem with patch 416a2bd274566a6f607a271f524b2dc0b84d9106 I found that variable num_shader_engines in

[Bug 23372] kernel 2.6.36 killed my game of ut2004

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=23372 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 44800] Radeon HD 6450 CAICOS screen corruption and kernel crashes

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44800 --- Comment #11 from Reartes Guillermo rtgui...@gmail.com 2012-08-14 13:16:04 UTC --- @Marko Kohtala Currently you are bootin in UEFI mode. Can you boot in BIOS mode to test? Your board is P8P67-M with BIOS 1701 Is your board Rev B? Also

[Bug 53490] [bisected] bump map corruption from kernel 3.5

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53490 --- Comment #4 from Michel Dänzer mic...@daenzer.net 2012-08-14 14:04:13 UTC --- Please attach the Xorg.0.log file corresponding to the problem. Have you tried current Mesa Git master? -- Configure bugmail:

[Bug 24932] BUG: unable to handle kernel paging request

2012-08-14 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=24932 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[PATCH] drm/exynos: Add dependency for G2D in Kconfig

2012-08-14 Thread Sachin Kamat
Select Exynos DRM based G2D only if non-DRM based Exynos G2D driver is not selected. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- drivers/gpu/drm/exynos/Kconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/Kconfig

Re: [PATCH 3/3] drm/radeon/kms: implement timestamp userspace query

2012-08-14 Thread Michel Dänzer
On Don, 2012-08-09 at 10:57 -0400, Jerome Glisse wrote: On Thu, Aug 9, 2012 at 10:34 AM, Marek Olšák mar...@gmail.com wrote: diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c index 637280f..be0e320 100644 --- a/drivers/gpu/drm/radeon/r600.c +++

Re: [PATCH 3/3] drm/radeon/kms: implement timestamp userspace query

2012-08-14 Thread Jerome Glisse
On Tue, Aug 14, 2012 at 10:36 AM, Michel Dänzer mic...@daenzer.net wrote: On Don, 2012-08-09 at 10:57 -0400, Jerome Glisse wrote: On Thu, Aug 9, 2012 at 10:34 AM, Marek Olšák mar...@gmail.com wrote: diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c index

Re: [PATCH 3/3] drm/radeon/kms: implement timestamp userspace query

2012-08-14 Thread Michel Dänzer
On Die, 2012-08-14 at 10:39 -0400, Jerome Glisse wrote: On Tue, Aug 14, 2012 at 10:36 AM, Michel Dänzer mic...@daenzer.net wrote: On Don, 2012-08-09 at 10:57 -0400, Jerome Glisse wrote: On Thu, Aug 9, 2012 at 10:34 AM, Marek Olšák mar...@gmail.com wrote: diff --git

Re: [PATCH] drm/edid: limit printk when facing bad edid

2012-08-14 Thread Adam Jackson
On 8/9/12 11:25 AM, j.gli...@gmail.com wrote: From: Jerome Glisse jgli...@redhat.com Limit printing bad edid information at one time per connector. Connector that are connected to a bad monitor/kvm will likely stay connected to the same bad monitor/kvm and it makes no sense to keep printing the

Re: [PATCH] drm/edid: limit printk when facing bad edid

2012-08-14 Thread Jerome Glisse
On Tue, Aug 14, 2012 at 10:54 AM, Adam Jackson a...@redhat.com wrote: On 8/9/12 11:25 AM, j.gli...@gmail.com wrote: From: Jerome Glisse jgli...@redhat.com Limit printing bad edid information at one time per connector. Connector that are connected to a bad monitor/kvm will likely stay

Re: [PATCH v4 1/3] drm: Add user-defined EDID quirks capability

2012-08-14 Thread Paul Menzel
Am Sonntag, den 12.08.2012, 15:07 -0500 schrieb Ian Pilcher: Add the ability for users to define their own EDID quirks via a module parameter or sysfs attribute. Signed-off-by: Ian Pilcher arequip...@gmail.com Acked-by: Paul Menzel paulepan...@users.sourceforge.net ---

[Bug 41265] Radeon KMS does not work on thunderbolt media dock

2012-08-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41265 --- Comment #30 from gy...@gmx.de 2012-08-14 15:30:43 UTC --- (In reply to comment #17) Probably need to ask Sony where they store the discrete vbios on these systems. pfff... no hope here. i wrote multiples mails and phoned the support

[PATCHv8 00/26] Integration of videobuf2 with DMABUF

2012-08-14 Thread Tomasz Stanislawski
Hello everyone, This patchset adds support for DMABUF [2] importing and exporting to V4L2 stack. The importer and exporter part were merged because DMA mapping redesign [3] was scheduled for merge to mainline. v8: - rebased on 3.6-rc1 - merged importer and exporter patchsets - fixed missing

  1   2   >