Re: [inconsistent HARDIRQ usage] dev-mode_config.idr_mutex at drm_mode_object_find()

2013-06-10 Thread Daniel Vetter
On Mon, Jun 10, 2013 at 9:04 AM, Maarten Lankhorst maarten.lankho...@canonical.com wrote: ^ Stacktrace points at the warning being called from panic. At that point I no longer trust anything to be sane. I don't know much about the panic handling in drm, but it's definitely not related to

Re: [PATCH 3/3] i915: Don't provide ACPI backlight interface if firmware expects Windows 8

2013-06-10 Thread Daniel Vetter
On Sun, Jun 09, 2013 at 07:01:39PM -0400, Matthew Garrett wrote: Windows 8 leaves backlight control up to individual graphics drivers rather than making ACPI calls itself. There's plenty of evidence to suggest that the Intel driver for Windows doesn't use the ACPI interface, including the fact

[PATCH v2] drm: Print pretty names for pixel formats

2013-06-10 Thread ville . syrjala
From: Ville Syrjälä ville.syrj...@linux.intel.com Rather than just printing the pixel format as a hex number, decode the fourcc into human readable form, and also decode the LE vs. BE flag. Keep printing the raw hex number too in case it contains non-printable characters. Some examples what the

Re: [PATCH 1/5] clk/exynos5250: Fix HDMI clock number in documentation

2013-06-10 Thread Rahul Sharma
This patch is already posted at http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg18331.html and Reviewed-by: Doug Anderson diand...@chromium.org On Mon, Jun 10, 2013 at 4:30 PM, Rahul Sharma rahul.sha...@samsung.com wrote: From: Arun Kumar K arun...@samsung.com This patch

[PATCH v4] drm/exynos: hdmi: use drm_display_mode to check the supported modes

2013-06-10 Thread Rahul Sharma
This patch renames check_timing to check_mode and removes the unnecessary conversion of drm_display_mode to/from fb_videomode in the hdmi driver. v4: 1) Changed the commit message to add information related to renaming the callbacks to check_mode. 2) Changed debug message to print 1/0 for

Re: [PATCH 3/3] i915: Don't provide ACPI backlight interface if firmware expects Windows 8

2013-06-10 Thread joeyli
於 日,2013-06-09 於 19:01 -0400,Matthew Garrett 提到: Windows 8 leaves backlight control up to individual graphics drivers rather than making ACPI calls itself. There's plenty of evidence to suggest that the Intel driver for Windows doesn't use the ACPI interface, including the fact that it's

[PATCH 0/5] clk/exynos5250: add clocks for hdmi subsystem

2013-06-10 Thread Rahul Sharma
Add clock changes for hdmi subsystem for exynos5250 SoC. These include addition of new clocks like mout_hdmi and smmu_tv, associating ID to clk_hdmiphy and some essential corrections. This set is based on kukjin's for-next branch at

[PATCH 1/5] clk/exynos5250: Fix HDMI clock number in documentation

2013-06-10 Thread Rahul Sharma
From: Arun Kumar K arun...@samsung.com This patch corrects the HDMI clock number given wrongly in the documentation. Signed-off-by: Arun Kumar K arun...@samsung.com Signed-off-by: Rahul Sharma rahul.sha...@samsung.com --- Documentation/devicetree/bindings/clock/exynos5250-clock.txt |2 +- 1

[PATCH 2/5] clk/exynos5250: add mout_hdmi mux clock for hdmi

2013-06-10 Thread Rahul Sharma
hdmi driver needs to change the parent of hdmi clock frequently between pixel clock and hdmiphy clock. hdmiphy is not stable after power on and for a short interval while changing the phy configuration. For this duration pixel clock is used to clock hdmi. This patch is exposing the mux for

[PATCH 3/5] clk/exynos5250: add sclk_hdmiphy in the list of special clocks

2013-06-10 Thread Rahul Sharma
hdmi driver needs hdmiphy clock which is one of the parent for hdmi mux clock. This is required while changing the parent of mux clock. Signed-off-by: Rahul Sharma rahul.sha...@samsung.com --- Documentation/devicetree/bindings/clock/exynos5250-clock.txt |1 +

[PATCH 4/5] clk/exynos5250: add clock for tv sysmmu

2013-06-10 Thread Rahul Sharma
Adding sysmmu clock for tv for exynos5250 SoC. It also adds aclk200_disp1 mux which is the actual parent of the disp1 block (contains hdmi, mixer, sysmmu_tv). Signed-off-by: Rahul Sharma rahul.sha...@samsung.com --- Documentation/devicetree/bindings/clock/exynos5250-clock.txt |1 +

[PATCH 5/5] clk/exynos5250: change parent to aclk200_disp1 for hdmi subsystem

2013-06-10 Thread Rahul Sharma
parent of hdmi and mixer block is mentioned as aclk200 which is not correct. It is clocked by the ouput of aclk200_disp1. Hence parent for mixer and hdmi clocks is changed to aclk200_disp1. Signed-off-by: Rahul Sharma rahul.sha...@samsung.com --- drivers/clk/samsung/clk-exynos5250.c |4 ++--

Re: [PATCH 0/3] Fix backlight issues on some Windows 8 systems

2013-06-10 Thread Rafael J. Wysocki
Hi Matthew, On Sunday, June 09, 2013 07:01:36 PM Matthew Garrett wrote: Windows 8 introduced new policy for backlight control by pushing it out to graphics drivers. This appears to have coincided with a range of vendors adding Windows 8 checks to their backlight control code which trigger

Re: [PATCH 0/4] drm/exynos: fimd: Add support for S3C6400/S3C6410

2013-06-10 Thread Inki Dae
Applied. Thanks, Inki Dae 2013/6/6 Joonyoung Shim jy0922.s...@samsung.com On 06/06/2013 03:14 AM, Tomasz Figa wrote: On Sunday 19 of May 2013 13:26:57 Tomasz Figa wrote: Hi, On Wednesday 01 of May 2013 21:02:25 Tomasz Figa wrote: Much of the code in Exynos DRM subsystem is generic

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Sebastian Hesselbarth
On 06/09/13 21:29, Russell King wrote: This patch adds support for the pair of LCD controllers on the Marvell Armada 510 SoCs. This driver supports: - multiple contiguous scanout buffers for video and graphics - shm backed cacheable buffer objects for X pixmaps for Vivante GPU acceleration -

Re: [PATCH 0/2] drm/exynos: clean up logs for next tree

2013-06-10 Thread Inki Dae
Applied. Thanks, Inki Dae 2013/6/5 Seung-Woo Kim sw0312@samsung.com This patch set removes tracking logs and function name duplications. This is for the next tree and based on exynos-drm-next branch. YoungJun Cho (2): drm/exynos: Remove tracking log functions drm/exynos: Clean up

Re: [RPC 0/21] DRM: Add VIA DRM driver

2013-06-10 Thread Konrad Rzeszutek Wilk
On Sat, Jun 08, 2013 at 05:42:20PM +0100, James Simmons wrote: Hello Here is the first run at inspection of the VIA openchrome dri driver. Now that the Xorg driver has been out over a year with KMS support most people should be able to use this feature. The driver is totaly

[Bug 65377] Backlight control via /sys/class/backlight/radeon_bl0 not working

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65377 --- Comment #8 from Alex Deucher ag...@yahoo.com --- Created attachment 80624 -- https://bugs.freedesktop.org/attachment.cgi?id=80624action=edit don't register a radeon backlight This patch should skip adding a radeon backlight interface on

[Bug 65611] New: UVD accelerated decoding causes hangs (ARUBA - HD 7540D)

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65611 Priority: medium Bug ID: 65611 Assignee: dri-devel@lists.freedesktop.org Summary: UVD accelerated decoding causes hangs (ARUBA - HD 7540D) Severity: normal

Re: [PATCH 3/3] i915: Don't provide ACPI backlight interface if firmware expects Windows 8

2013-06-10 Thread Alex Deucher
Radeon probably needs something similar. See attached untested patch. Alex On Sun, Jun 9, 2013 at 7:01 PM, Matthew Garrett matthew.garr...@nebula.com wrote: Windows 8 leaves backlight control up to individual graphics drivers rather than making ACPI calls itself. There's plenty of evidence to

Re: [RPC 0/21] DRM: Add VIA DRM driver

2013-06-10 Thread Daniel Vetter
On Mon, Jun 10, 2013 at 09:31:38AM -0400, Konrad Rzeszutek Wilk wrote: On Sat, Jun 08, 2013 at 05:42:20PM +0100, James Simmons wrote: Hello Here is the first run at inspection of the VIA openchrome dri driver. Now that the Xorg driver has been out over a year with KMS support

Re: [PATCH] drm/radeon: fix AVI infoframe generation

2013-06-10 Thread Alex Deucher
On Sat, Jun 8, 2013 at 7:46 AM, Rafał Miłecki zaj...@gmail.com wrote: 2013/6/7 alexdeuc...@gmail.com: From: Alex Deucher alexander.deuc...@amd.com - remove adding 2 to checksum, this breaks certain monitors - properly emit the AVI infoframe version, not emitting the version breaks some

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Sun, Jun 9, 2013 at 3:29 PM, Russell King rmk+ker...@arm.linux.org.uk wrote: This patch adds support for the pair of LCD controllers on the Marvell Armada 510 SoCs. This driver supports: - multiple contiguous scanout buffers for video and graphics - shm backed cacheable buffer objects for

[Bug 65438] GTK apps crash X11 since last update of LLVMM

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65438 --- Comment #9 from Tom Stellard tstel...@gmail.com --- Created attachment 80630 -- https://bugs.freedesktop.org/attachment.cgi?id=80630action=edit Possible Fix / Work Around Can you try this patch? It should fix the segfault, but it looks to

[Bug 65254] opengl flicker in xbmc / glxgears

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65254 --- Comment #12 from Vladi vl...@aresgate.net --- should I rma my cpu then? -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel mailing list

[Bug 65254] opengl flicker in xbmc / glxgears

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65254 --- Comment #13 from adam otaz...@gmail.com --- I think the CPU/GPU si working as intended but it is not supported well by anything but closed drivers or Windows. I hope this will be resolved soon. -- You are receiving this mail because: You

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 1:06 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 11:57:32AM -0400, Rob Clark wrote: On Sun, Jun 9, 2013 at 3:29 PM, Russell King rmk+ker...@arm.linux.org.uk wrote: This patch adds support for the pair of LCD controllers on the

[Bug 65438] GTK apps crash X11 since last update of LLVMM

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65438 --- Comment #10 from had...@gmx.de --- Yes, with your patch xfce starts fine. Do you need more info to find the real issue? -- You are receiving this mail because: You are the assignee for the bug.

Re: [PATCH] drm/tegra: add support for runtime pm

2013-06-10 Thread Thierry Reding
On Tue, Jun 04, 2013 at 02:11:27PM +0530, Mayuresh Kulkarni wrote: On Tuesday 28 May 2013 02:40 PM, Thierry Reding wrote: * PGP Signed by an unknown key On Tue, May 28, 2013 at 08:45:03AM +0300, Terje Bergström wrote: On 27.05.2013 18:45, Thierry Reding wrote: On Mon, May 27, 2013 at

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 4:08 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 03:59:34PM -0400, Rob Clark wrote: On Mon, Jun 10, 2013 at 1:06 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: ARMADA_GEM_CREATE_PHYS is to deal with creating a gem

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Daniel Vetter
On Mon, Jun 10, 2013 at 9:59 PM, Rob Clark robdcl...@gmail.com wrote: On Mon, Jun 10, 2013 at 1:06 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 11:57:32AM -0400, Rob Clark wrote: On Sun, Jun 9, 2013 at 3:29 PM, Russell King rmk+ker...@arm.linux.org.uk

Re: [PULL] GEM CMA DMA-BUF

2013-06-10 Thread Dave Airlie
Here's a small pull request for v3.11 that contains the GEM CMA DMA-BUF support patches. The content is identical to [PATCH v3 0/5] GEM CMA DMA-BUF support with acks picked up from the list. Pulled, thanks, Dave. ___ dri-devel mailing list

[Bug 64471] Radeon HD6570 lockup in Brütal Legend with HyperZ

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64471 Nicholas Miell nmi...@gmail.com changed: What|Removed |Added CC||nmi...@gmail.com ---

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 5:15 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 05:01:18PM -0400, Rob Clark wrote: I would like to get at least some of the driver upstream. I'd hate for it to have to live completely out of tree. I can think of a couple

build warning on 32-bit

2013-06-10 Thread Dave Airlie
CC [M] drivers/gpu/drm/i915/i915_gem.o /ssd/git/drm-next/drivers/gpu/drm/i915/i915_gem.c: In function ‘i915_gem_object_bind_to_gtt’: /ssd/git/drm-next/drivers/gpu/drm/i915/i915_gem.c:3000:3: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘size_t’ [-Wformat]

Re: [RPC 0/21] DRM: Add VIA DRM driver

2013-06-10 Thread Dave Airlie
Here is the first run at inspection of the VIA openchrome dri driver. Now that the Xorg driver has been out over a year with KMS support most people should be able to use this feature. The driver is totaly Just FYI this is a really bad idea, don't go releasing userspace code that uses

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 6:32 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Tue, Jun 11, 2013 at 12:01:59AM +0200, Daniel Vetter wrote: On Mon, Jun 10, 2013 at 9:59 PM, Rob Clark robdcl...@gmail.com wrote: On Mon, Jun 10, 2013 at 1:06 PM, Russell King - ARM Linux

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 6:56 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 06:49:06PM -0400, Rob Clark wrote: I guess in the short term, the best I can think is keep those phys ioctls as a small patch on top of the upstream driver. It is ok to leave

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Dave Airlie
That makes the driver just be a dumb scanout only driver. Sorry, that *really* does not interest me one bit, because the CPU doing framebuffer accesses is pig slow. Well, yes that is basically what I am saying, unless we can find a different way (dmabuf? if there is some way to pass it

[Bug 64201] OpenCL usage result segmentation fault on r600g with HD6850.

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64201 --- Comment #31 from Erdem U. Altınyurt spamjunkea...@gmail.com --- I rebuilt libclc from your repo now. Also update;rebuild;install the llvm,gallium,bfgminer. Same error still exists. Regards Erdem -- You are receiving this mail because: You

[Bug 64201] OpenCL usage result segmentation fault on r600g with HD6850.

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64201 --- Comment #32 from Tom Stellard tstel...@gmail.com --- (In reply to comment #31) I rebuilt libclc from your repo now. Also update;rebuild;install the llvm,gallium,bfgminer. Same error still exists. Regards Erdem Did you build it with

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 7:24 PM, Dave Airlie airl...@gmail.com wrote: That makes the driver just be a dumb scanout only driver. Sorry, that *really* does not interest me one bit, because the CPU doing framebuffer accesses is pig slow. Well, yes that is basically what I am saying, unless we

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Dave Airlie
On Tue, Jun 11, 2013 at 9:36 AM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Tue, Jun 11, 2013 at 09:24:16AM +1000, Dave Airlie wrote: I'd like to see all the ARM based drivers based on CMA if it can meet their requirements and using close to standard GEM/dma-buf interfaces.

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 7:38 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 07:17:22PM -0400, Rob Clark wrote: On Mon, Jun 10, 2013 at 6:56 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 06:49:06PM -0400, Rob Clark wrote:

[Bug 64257] RS880 issues with r600-llvm-compiler

2013-06-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64257 --- Comment #35 from Tom Stellard tstel...@gmail.com --- All of the proposed fixes have been merged to the LLVM tree, so what would be helpful now is if people could post the output of R600_DEBUG=vs,fs,ps,sbdisasm from the applications that don't

Re: [PATCH 0/3] Fix backlight issues on some Windows 8 systems

2013-06-10 Thread Matthew Garrett
On Mon, 2013-06-10 at 13:59 +0200, Rafael J. Wysocki wrote: I happen to know that alternative solution to this problem is being worked on, so I'm going to wait until it is submitted and then we'll decide what to merge. Sure. I'm slightly concerned about unregistering ACPI backlight control

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Mon, Jun 10, 2013 at 11:57:32AM -0400, Rob Clark wrote: On Sun, Jun 9, 2013 at 3:29 PM, Russell King rmk+ker...@arm.linux.org.uk wrote: This patch adds support for the pair of LCD controllers on the Marvell Armada 510 SoCs. This driver supports: - multiple contiguous scanout buffers

Re: [PATCH 3/4] fb: Make fb_get_options() 'name' parameter const

2013-06-10 Thread Jean-Christophe PLAGNIOL-VILLARD
On 18:43 Fri 07 Jun , ville.syrj...@linux.intel.com wrote: From: Ville Syrjälä ville.syrj...@linux.intel.com The string isn't modified so make it const. Cc: Jean-Christophe Plagniol-Villard plagn...@jcrosoft.com Cc: Tomi Valkeinen tomi.valkei...@ti.com Cc: linux-fb...@vger.kernel.org

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Mon, Jun 10, 2013 at 03:59:34PM -0400, Rob Clark wrote: On Mon, Jun 10, 2013 at 1:06 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: ARMADA_GEM_CREATE_PHYS is to deal with creating a gem buffer object for a chunk of physical memory allocated by other means (eg, the Vmeta

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Mon, Jun 10, 2013 at 05:01:18PM -0400, Rob Clark wrote: I would like to get at least some of the driver upstream. I'd hate for it to have to live completely out of tree. I can think of a couple possibilities. 1) the best would be, if there was some way for the drm driver to know the

[PATCH] drm: encoder_slave: respect of_node on i2c encoder init

2013-06-10 Thread Sebastian Hesselbarth
Current DRM slave encoder API conflicts with auto-registration of i2c client when using DT probed clients. To allow DRM slave encoders passed by DT, this patch adds a check to drm_i2c_encoder_init for a non-NULL .of_node on i2c_board_info and calls an of_i2c helper to get the i2c client device

[PATCH RFC] drm/i2c: tda998x: fix sync generation and calculation

2013-06-10 Thread Sebastian Hesselbarth
This fixes the wrong sync generation and sync calculation. It has only been tested for progressive modes. Sync timings for a bunch of modes have also been verified with an oscilloscope near-end (TDA998x input) and far-end (DVI receiver output). Signed-off-by: Sebastian Hesselbarth

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Mon, Jun 10, 2013 at 11:57:32AM -0400, Rob Clark wrote: On Sun, Jun 9, 2013 at 3:29 PM, Russell King rmk+ker...@arm.linux.org.uk wrote: +/* The mode_config.mutex will be held for this call */ +static int armada_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y, +

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Mon, Jun 10, 2013 at 01:10:18PM +0200, Sebastian Hesselbarth wrote: On 06/09/13 21:29, Russell King wrote: +/* + * The spec is unclear about the polarities of the syncs. + * We assume their non-inverted state is active high. + */ nit: We confirmed their non-inverted state

[PATCH RFC v2] drm/i2c: tda998x: fix sync generation and calculation

2013-06-10 Thread Sebastian Hesselbarth
This fixes the wrong sync generation and sync calculation for progressive and interlaced modes. Sync timings for a bunch of modes have also been verified with an oscilloscope near-end (TDA998x input) and far-end (DVI receiver output). Signed-off-by: Sebastian Hesselbarth

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Tue, Jun 11, 2013 at 12:01:59AM +0200, Daniel Vetter wrote: On Mon, Jun 10, 2013 at 9:59 PM, Rob Clark robdcl...@gmail.com wrote: On Mon, Jun 10, 2013 at 1:06 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 11:57:32AM -0400, Rob Clark wrote: On Sun,

[PATCH RFC v3] drm/i2c: tda998x: fix sync generation and calculation

2013-06-10 Thread Sebastian Hesselbarth
This fixes the wrong sync generation and sync calculation for progressive and interlaced modes. Sync timings for a bunch of modes have also been verified with an oscilloscope near-end (TDA998x input) and far-end (DVI receiver output). Signed-off-by: Sebastian Hesselbarth

Re: [RFC v3 0/4] rmk's Dove DRM/TDA19988 Cubox driver

2013-06-10 Thread Russell King - ARM Linux
Okay, so the previous set didn't contain all the updates I wanted. That's partly because of the timespan between making those changes and re-posting the RFC. This time, the Add Armada DRM driver commit contains all the updates it should've had from last time! However, I'm posting a slightly

[PATCH RFC v3 4/4] DRM: Armada: convert hardware cursor support to 64x32 or 32x64 ARGB

2013-06-10 Thread Russell King
Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/gpu/drm/armada/armada_crtc.c | 125 +++--- drivers/gpu/drm/armada/armada_hw.h |6 +- 2 files changed, 43 insertions(+), 88 deletions(-) diff --git a/drivers/gpu/drm/armada/armada_crtc.c

[PATCH RFC v3 2/4] DRM: Armada: Add support for hardware cursors

2013-06-10 Thread Russell King
This patch adds hardware cursor support to the DRM driver for the Marvell Armada SoCs. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/gpu/drm/armada/Kconfig |7 + drivers/gpu/drm/armada/armada_crtc.c | 201 ++

[PATCH RFC v3 3/4] DRM: Armada: convert Armada hardware cursor support to RGB+transparency

2013-06-10 Thread Russell King
Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/gpu/drm/armada/Kconfig |6 +- drivers/gpu/drm/armada/armada_crtc.c | 186 +++-- drivers/gpu/drm/armada/armada_crtc.h |5 +- 3 files changed, 135 insertions(+), 62 deletions(-) diff

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Mon, Jun 10, 2013 at 06:49:06PM -0400, Rob Clark wrote: I guess in the short term, the best I can think is keep those phys ioctls as a small patch on top of the upstream driver. It is ok to leave place-holder ioctl #'s in the upstream driver so that the ioctl #'s don't shift when you

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Tue, Jun 11, 2013 at 09:24:16AM +1000, Dave Airlie wrote: I'd like to see all the ARM based drivers based on CMA if it can meet their requirements and using close to standard GEM/dma-buf interfaces. Otherwise it'll be come an unmaintainable nightmare for everyone, but mostly for me. I am

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Mon, Jun 10, 2013 at 07:17:22PM -0400, Rob Clark wrote: On Mon, Jun 10, 2013 at 6:56 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jun 10, 2013 at 06:49:06PM -0400, Rob Clark wrote: I guess in the short term, the best I can think is keep those phys ioctls as a small

Re: [PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Russell King - ARM Linux
On Tue, Jun 11, 2013 at 09:48:57AM +1000, Dave Airlie wrote: On Tue, Jun 11, 2013 at 9:36 AM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Tue, Jun 11, 2013 at 09:24:16AM +1000, Dave Airlie wrote: I'd like to see all the ARM based drivers based on CMA if it can meet their

Re: [PATCH] nouveau: Load firmware for BSP/VP engines on NV84-NV96, NVA0

2013-06-10 Thread Ben Skeggs
On Wed, Jun 5, 2013 at 5:16 PM, Ilia Mirkin imir...@alum.mit.edu wrote: On Wed, Jun 5, 2013 at 3:05 AM, Maarten Lankhorst maarten.lankho...@canonical.com wrote: Hey, Op 04-06-13 20:38, Ilia Mirkin schreef: On Mon, Jun 3, 2013 at 5:02 AM, Ilia Mirkin imir...@alum.mit.edu wrote: These

[Intel-gfx] [PATCH] drm/i915: Add a hotplug connector property

2013-06-10 Thread Chris Wilson
On Sat, Jun 08, 2013 at 02:34:20PM +0200, Daniel Vetter wrote: > On Sat, Jun 8, 2013 at 9:08 AM, Chris Wilson > wrote: > > On Wed, Jun 05, 2013 at 10:59:23PM +0100, Chris Wilson wrote: > >> It is useful for userspace to know when it may be able to skip a forced > >> detection cycle as the

[RFC][PATCH 1/2] dma-buf: add importer private data to attachment

2013-06-10 Thread 김승우
On 2013? 06? 07? 20:24, Maarten Lankhorst wrote: > Op 07-06-13 04:32, ??? schreef: >> Hello Maarten, >> >> On 2013? 06? 05? 22:23, Maarten Lankhorst wrote: >>> Op 31-05-13 10:54, Seung-Woo Kim schreef: dma-buf attachment has only exporter private data, but importer private data

[inconsistent HARDIRQ usage] >mode_config.idr_mutex at drm_mode_object_find()

2013-06-10 Thread Fengguang Wu
Maarten, Sorry for the delay! On Sun, Jun 09, 2013 at 08:58:44AM +0200, Maarten Lankhorst wrote: > Hey, > > Op 06-06-13 09:28, Fengguang Wu schreef: > > Hi Maarten, > > > > Thanks for the patch! I'll queue it for the tests. > > > > > I haven't heard back from you yet, did it fix all lockdep

[Bug 65254] opengl flicker in xbmc / glxgears

2013-06-10 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20130610/b6fb7fea/attachment.html>

[inconsistent HARDIRQ usage] >mode_config.idr_mutex at drm_mode_object_find()

2013-06-10 Thread Maarten Lankhorst
Op 10-06-13 03:55, Fengguang Wu schreef: > Maarten, > > Sorry for the delay! > > On Sun, Jun 09, 2013 at 08:58:44AM +0200, Maarten Lankhorst wrote: >> Hey, >> >> Op 06-06-13 09:28, Fengguang Wu schreef: >>> Hi Maarten, >>> >>> Thanks for the patch! I'll queue it for the tests. >>> >>> >> I

[PATCH] drm/cirrus: do not attempt to acquire a reservation while in an interrupt handler

2013-06-10 Thread Maarten Lankhorst
Mutexes should not be acquired in interrupt context. While the trylock fastpath is arguably safe on all implementations, the slowpath unlock path definitely isn't. This fixes the following lockdep splat: [ 13.044313] [ cut here ] [ 13.044367] WARNING: at

[inconsistent HARDIRQ usage] >mode_config.idr_mutex at drm_mode_object_find()

2013-06-10 Thread Daniel Vetter
On Mon, Jun 10, 2013 at 9:04 AM, Maarten Lankhorst wrote: > ^ Stacktrace points at the warning being called from panic. At that point I > no longer trust anything to be sane. > I don't know much about the panic handling in drm, but it's definitely not > related to your original issue. The

[PATCH 3/3] i915: Don't provide ACPI backlight interface if firmware expects Windows 8

2013-06-10 Thread Daniel Vetter
On Sun, Jun 09, 2013 at 07:01:39PM -0400, Matthew Garrett wrote: > Windows 8 leaves backlight control up to individual graphics drivers rather > than making ACPI calls itself. There's plenty of evidence to suggest that > the Intel driver for Windows doesn't use the ACPI interface, including the >

[PATCH v2] drm: Print pretty names for pixel formats

2013-06-10 Thread ville.syrj...@linux.intel.com
From: Ville Syrj?l? Rather than just printing the pixel format as a hex number, decode the fourcc into human readable form, and also decode the LE vs. BE flag. Keep printing the raw hex number too in case it contains non-printable characters. Some examples what

[PATCH 1/5] clk/exynos5250: Fix HDMI clock number in documentation

2013-06-10 Thread Rahul Sharma
This patch is already posted at http://www.mail-archive.com/linux-samsung-soc at vger.kernel.org/msg18331.html and Reviewed-by: Doug Anderson On Mon, Jun 10, 2013 at 4:30 PM, Rahul Sharma wrote: > From: Arun Kumar K > > This patch corrects the HDMI clock number given wrongly > in the

[PATCH v4] drm/exynos: hdmi: use drm_display_mode to check the supported modes

2013-06-10 Thread Rahul Sharma
This patch renames check_timing to check_mode and removes the unnecessary conversion of drm_display_mode to/from fb_videomode in the hdmi driver. v4: 1) Changed the commit message to add information related to renaming the callbacks to check_mode. 2) Changed debug message to print 1/0 for

[PATCH 3/3] i915: Don't provide ACPI backlight interface if firmware expects Windows 8

2013-06-10 Thread joeyli
? ??2013-06-09 ? 19:01 -0400?Matthew Garrett ??? > Windows 8 leaves backlight control up to individual graphics drivers rather > than making ACPI calls itself. There's plenty of evidence to suggest that > the Intel driver for Windows doesn't use the ACPI interface, including the > fact that it's

[PATCH 0/5] clk/exynos5250: add clocks for hdmi subsystem

2013-06-10 Thread Rahul Sharma
Add clock changes for hdmi subsystem for exynos5250 SoC. These include addition of new clocks like mout_hdmi and smmu_tv, associating ID to clk_hdmiphy and some essential corrections. This set is based on kukjin's for-next branch at

[PATCH 1/5] clk/exynos5250: Fix HDMI clock number in documentation

2013-06-10 Thread Rahul Sharma
From: Arun Kumar K This patch corrects the HDMI clock number given wrongly in the documentation. Signed-off-by: Arun Kumar K Signed-off-by: Rahul Sharma --- Documentation/devicetree/bindings/clock/exynos5250-clock.txt |2 +- 1 file changed, 1 insertion(+), 1

[PATCH 2/5] clk/exynos5250: add mout_hdmi mux clock for hdmi

2013-06-10 Thread Rahul Sharma
hdmi driver needs to change the parent of hdmi clock frequently between pixel clock and hdmiphy clock. hdmiphy is not stable after power on and for a short interval while changing the phy configuration. For this duration pixel clock is used to clock hdmi. This patch is exposing the mux for

[PATCH 3/5] clk/exynos5250: add sclk_hdmiphy in the list of special clocks

2013-06-10 Thread Rahul Sharma
hdmi driver needs hdmiphy clock which is one of the parent for hdmi mux clock. This is required while changing the parent of mux clock. Signed-off-by: Rahul Sharma --- Documentation/devicetree/bindings/clock/exynos5250-clock.txt |1 + drivers/clk/samsung/clk-exynos5250.c

[PATCH 4/5] clk/exynos5250: add clock for tv sysmmu

2013-06-10 Thread Rahul Sharma
Adding sysmmu clock for tv for exynos5250 SoC. It also adds aclk200_disp1 mux which is the actual parent of the disp1 block (contains hdmi, mixer, sysmmu_tv). Signed-off-by: Rahul Sharma --- Documentation/devicetree/bindings/clock/exynos5250-clock.txt |1 +

[PATCH 5/5] clk/exynos5250: change parent to aclk200_disp1 for hdmi subsystem

2013-06-10 Thread Rahul Sharma
parent of hdmi and mixer block is mentioned as aclk200 which is not correct. It is clocked by the ouput of aclk200_disp1. Hence parent for mixer and hdmi clocks is changed to aclk200_disp1. Signed-off-by: Rahul Sharma --- drivers/clk/samsung/clk-exynos5250.c |4 ++-- 1 file changed, 2

[PATCH 0/3] Fix backlight issues on some Windows 8 systems

2013-06-10 Thread Rafael J. Wysocki
Hi Matthew, On Sunday, June 09, 2013 07:01:36 PM Matthew Garrett wrote: > Windows 8 introduced new policy for backlight control by pushing it out to > graphics drivers. This appears to have coincided with a range of vendors > adding Windows 8 checks to their backlight control code which trigger

[PATCH 0/4] drm/exynos: fimd: Add support for S3C6400/S3C6410

2013-06-10 Thread Inki Dae
, 68 insertions(+), 22 >>>> deletions(-) >>>> >>> Any comments for this series? >>> >>> Best regards, >>> Tomasz >>> >> Ping. >> >> Best regards, >> Tomasz >> >> >> > This series looks good to me. > > Acked-by: Joonyoung Shim > > -- > To unsubscribe from this list: send the line "unsubscribe > linux-samsung-soc" in > the body of a message to majordomo at vger.kernel.org > More majordomo info at > http://vger.kernel.org/**majordomo-info.html<http://vger.kernel.org/majordomo-info.html> > -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130610/f19102c8/attachment.html>

[PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Sebastian Hesselbarth
On 06/09/13 21:29, Russell King wrote: > This patch adds support for the pair of LCD controllers on the Marvell > Armada 510 SoCs. This driver supports: > - multiple contiguous scanout buffers for video and graphics > - shm backed cacheable buffer objects for X pixmaps for Vivante GPU >

[PATCH 0/2] drm/exynos: clean up logs for next tree

2013-06-10 Thread Inki Dae
_ > dri-devel mailing list > dri-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/dri-devel > -- next part ------ An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130610/592c1047/attachment-0001.html>

[RPC 0/21] DRM: Add VIA DRM driver

2013-06-10 Thread Konrad Rzeszutek Wilk
On Sat, Jun 08, 2013 at 05:42:20PM +0100, James Simmons wrote: > > Hello > > Here is the first run at inspection of the VIA openchrome dri > driver. Now that the Xorg driver has been out over a year with KMS support > most people should be able to use this feature. The driver is totaly >

[Bug 65377] Backlight control via /sys/class/backlight/radeon_bl0 not working

2013-06-10 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/20130610/069948bf/attachment.html>

[PATCH 3/3] i915: Don't provide ACPI backlight interface if firmware expects Windows 8

2013-06-10 Thread Alex Deucher
tch Type: text/x-patch Size: 1094 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130610/63595324/attachment.bin>

[Bug 65611] New: UVD accelerated decoding causes hangs (ARUBA - HD 7540D)

2013-06-10 Thread bugzilla-dae...@freedesktop.org
bed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130610/cd6ac60c/attachment.html>

[RPC 0/21] DRM: Add VIA DRM driver

2013-06-10 Thread Daniel Vetter
On Mon, Jun 10, 2013 at 09:31:38AM -0400, Konrad Rzeszutek Wilk wrote: > On Sat, Jun 08, 2013 at 05:42:20PM +0100, James Simmons wrote: > > > > Hello > > > > Here is the first run at inspection of the VIA openchrome dri > > driver. Now that the Xorg driver has been out over a year with KMS

[PATCH] drm/radeon: fix AVI infoframe generation

2013-06-10 Thread Alex Deucher
On Sat, Jun 8, 2013 at 7:46 AM, Rafa? Mi?ecki wrote: > 2013/6/7 : >> From: Alex Deucher >> >> - remove adding 2 to checksum, this breaks certain monitors >> - properly emit the AVI infoframe version, not emitting >> the version breaks some monitors. >> >> This should fix blank screen when HDMI

[PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Sun, Jun 9, 2013 at 3:29 PM, Russell King wrote: > This patch adds support for the pair of LCD controllers on the Marvell > Armada 510 SoCs. This driver supports: > - multiple contiguous scanout buffers for video and graphics > - shm backed cacheable buffer

[Bug 65438] GTK apps crash X11 since last update of LLVMM

2013-06-10 Thread bugzilla-dae...@freedesktop.org
t;http://lists.freedesktop.org/archives/dri-devel/attachments/20130610/3fe80ec4/attachment.html>

[Bug 65254] opengl flicker in xbmc / glxgears

2013-06-10 Thread bugzilla-dae...@freedesktop.org
org/archives/dri-devel/attachments/20130610/b267bd3c/attachment.html>

[Bug 65254] opengl flicker in xbmc / glxgears

2013-06-10 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130610/97655445/attachment.html>

[PATCH RFC 2/8] DRM: Armada: Add Armada DRM driver

2013-06-10 Thread Rob Clark
On Mon, Jun 10, 2013 at 1:06 PM, Russell King - ARM Linux wrote: > On Mon, Jun 10, 2013 at 11:57:32AM -0400, Rob Clark wrote: >> On Sun, Jun 9, 2013 at 3:29 PM, Russell King >> wrote: >> > This patch adds support for the pair of LCD controllers on the Marvell >> >

[Bug 65438] GTK apps crash X11 since last update of LLVMM

2013-06-10 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130610/2d5a18c4/attachment.html>

  1   2   >