[Bug 54129] [bisected] Kernel 3.5.0 breaks KMS on Radeon RV250

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54129 Simon Kitching changed: What|Removed |Added See Also||https://bugs.freedesktop.or

[Bug 54662] New: [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54662 Bug #: 54662 Summary: [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen) Classification: Unclassified Product: DRI Version: unspecified Platform: x86 (IA3

[PATCH 0/7] Fixes for hybrid graphics Apple machines

2012-09-07 Thread Dave Airlie
On Fri, Sep 7, 2012 at 4:22 PM, Seth Forshee wrote: > Many hybrid graphics Apple laptops fail to set up LVDS on the secondary > GPU due to missing or incorrect mode information for the panel at init > time. The only way to get the LVDS mode on these machines is via the > DDC, but this is muxed to

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #38 from Alex Deucher 2012-09-07 21:52:32 UTC --- You're getting a GPU hang for some reason which may be causing the modeset failure. Can you try with acceleration disabled to take the out of the equation? Try adding: Option "NoAcc

[PATCH] drm: remove property_blob_list

2012-09-07 Thread Rob Clark
From: Rob Clark It isn't used anywhere. Signed-off-by: Rob Clark --- drivers/gpu/drm/drm_crtc.c |2 -- include/drm/drm_crtc.h |1 - 2 files changed, 3 deletions(-) diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index 7552675..21a0a85 100644 --- a/drivers/gpu/

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 diego.abelenda at gmail.com changed: What|Removed |Added Attachment #66819|0 |1 is obsolete|

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 diego.abelenda at gmail.com changed: What|Removed |Added Attachment #66817|0 |1 is obsolete|

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 diego.abelenda at gmail.com changed: What|Removed |Added Attachment #66817|application/octet-stream|text/plain mime ty

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #34 from diego.abelenda at gmail.com 2012-09-07 21:07:16 UTC --- Created attachment 66817 --> https://bugs.freedesktop.org/attachment.cgi?id=66817 dmesg booting with 2 monitors plugged patch applyed on top of drm-fixes-3.6 drm.debug=

[PATCH] drm: remove property_blob_list

2012-09-07 Thread Rob Clark
From: Rob Clark It isn't used anywhere. Signed-off-by: Rob Clark --- drivers/gpu/drm/drm_crtc.c |2 -- include/drm/drm_crtc.h |1 - 2 files changed, 3 deletions(-) diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index 7552675..21a0a85 100644 --- a/drivers/gpu/

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #33 from Alex Deucher 2012-09-07 19:35:20 UTC --- You might try this patch on top of my 3.6 fixees tree: http://cgit.freedesktop.org/~agd5f/linux/commit/?h=drm-next-3.7-wip&id=46b417b3eee694451b5bca8a7863e9174611a2e9 -- Configure b

Re: [PATCH V6] drm: edid: add support for E-DDC

2012-09-07 Thread Shirish S
Hi Dave, Gentle Reminder! This patch is required for passing the very first test case of HDMI Compliance test suite. Regards, Shirish S On Mon, Sep 3, 2012 at 8:54 AM, Shirish S wrote: > Hello Dave, > > My patch-set for adding support for 4 block EDID is now reviewed and ready. > Please let me k

[PATCH V6] drm: edid: add support for E-DDC

2012-09-07 Thread Shirish S
adapter->name); >> break; >> } >> - } while (ret != 2 && --retries); >> + } while (ret != xfers && --retries); >> >> - return ret == 2 ? 0 : -1; >> + return ret == xfers ? 0 : -1; >> } >> >> static bool drm_edid_is_zero(u8 *in_edid, int length) >> -- >> 1.7.0.4 >> >> ___ >> 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/20120907/04e173e9/attachment.html>

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #32 from diego.abelenda at gmail.com 2012-09-07 19:19:10 UTC --- Created attachment 66808 --> https://bugs.freedesktop.org/attachment.cgi?id=66808 dmesg booting with 2 monitors plugged drm.debug=4 This drm-fixes-3.6 branch just give

[PATCH] drm/exynos: remove DRM_FORMAT_NV12M from plane module

2012-09-07 Thread Inki Dae
this patch removes DRM_FORMAT_NV12M from plane module because this format is same as DRM_FORMAT_NV12. DRM_FORMAT_NV12M will be identified by mode_cmd->handles and mode_cmd->offsets fields internally. Signed-off-by: Inki Dae Signed-off-by: Kyungmin.park --- drivers/gpu/drm/exynos/exynos_drm_plan

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

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53511 --- Comment #1 from almos 2012-09-07 18:05:39 UTC --- I see that testing is the first item on the r600todo list, and to see if there are any differences between the two shader compilers. Maybe this should be a prerequisite of that, because most o

[Bug 54649] Image in Quake 3 is dark

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54649 Sven Arvidsson changed: What|Removed |Added CC||sa at whiz.se --- Comment #1 from Sven

[Bug 54649] New: Image in Quake 3 is dark

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54649 Bug #: 54649 Summary: Image in Quake 3 is dark Classification: Unclassified Product: Mesa Version: git Platform: All OS/Version: All Status: NEW Severity: no

PCI Radeon RV100 detection hang on sparc64

2012-09-07 Thread Dave Airlie
On Fri, Sep 7, 2012 at 4:18 AM, David Miller wrote: > From: Michel D?nzer > Date: Thu, 06 Sep 2012 18:55:51 +0200 > >> On Don, 2012-09-06 at 17:41 +0300, Meelis Roos wrote: >>> This is with initialyy unmodified 3.6.0-rc4-00101-g0809095 kernel in >>> Ultra 10 (clean, without my "Video RAM" hack th

[PATCH V5 0/2] video: drm: Add Device tree support to DRM-FIMD

2012-09-07 Thread Inki Dae
Applied. Thanks. Inki Dae 2012/9/7 Leela Krishna Amudala : > This patch set adds device tree support for DRM-FIMD for Samsung's Exynos5250. > It includes parsing platform data from dts file. Also, adds the driver data > for exynos4 and exynos5 devices. > > This patchset is based and tested on top

[PATCH V4 2/2] video: drm: exynos: Add device tree support

2012-09-07 Thread Inki Dae
2012/9/7 Inki Dae : > Hi > > 2012/9/7 Leela Krishna Amudala : >> Hi, >> >> On Thu, Sep 6, 2012 at 4:35 PM, Sylwester Nawrocki >> wrote: >>> Hi, >>> >>> On 09/06/2012 09:21 AM, InKi Dae wrote: >> +Required properties: >> + - compatible: Should be "samsung,exynos5-fimd" or "samsung,exynos4-f

[PATCH] libkms: link against libdrm

2012-09-07 Thread Marcin Slusarz
Signed-off-by: Marcin Slusarz --- libkms/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libkms/Makefile.am b/libkms/Makefile.am index fa379a4..215450a 100644 --- a/libkms/Makefile.am +++ b/libkms/Makefile.am @@ -6,7 +6,7 @@ AM_CFLAGS = \ libkms_la_LTLIBRARIES =

Re: [PATCH] drm/fb helper: don't call drm_helper_connector_dpms directly

2012-09-07 Thread Daniel Vetter
On Fri, Sep 07, 2012 at 02:28:28PM -0700, Jesse Barnes wrote: > On Fri, 7 Sep 2012 10:14:52 +0200 > Daniel Vetter wrote: > > > Yet again a case where the fb helper is too intimate with the crtc > > helper and calls a crtc helepr function directly instead of going > > through the interface vtable

[PATCH V4 2/2] video: drm: exynos: Add device tree support

2012-09-07 Thread Inki Dae
Hi 2012/9/7 Leela Krishna Amudala : > Hi, > > On Thu, Sep 6, 2012 at 4:35 PM, Sylwester Nawrocki > wrote: >> Hi, >> >> On 09/06/2012 09:21 AM, InKi Dae wrote: > +Required properties: > + - compatible: Should be "samsung,exynos5-fimd" or "samsung,exynos4-fb" > for Doesn't better

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #38 from Alex Deucher 2012-09-07 21:52:32 UTC --- You're getting a GPU hang for some reason which may be causing the modeset failure. Can you try with acceleration disabled to take the out of the equation? Try adding: Option "NoAcce

[PATCH V5 2/2] video: drm: exynos: Add device tree support

2012-09-07 Thread Leela Krishna Amudala
Add device tree based discovery support for DRM-FIMD driver. Signed-off-by: Leela Krishna Amudala --- Documentation/devicetree/bindings/fb/drm-fimd.txt | 80 + drivers/gpu/drm/exynos/exynos_drm_fimd.c | 95 - 2 files changed, 173 insertions(+), 2

[PATCH V5 1/2] drm/exynos: add platform_device_id table and driver data for drm fimd

2012-09-07 Thread Leela Krishna Amudala
Two device ids are created for exynos4-fb and exynos5-fb. Also, added driver data for exynos4 and exynos5 to pick the timing base address at runtime to write data into appropriate register address. Signed-off-by: Leela Krishna Amudala --- drivers/gpu/drm/exynos/exynos_drm_fimd.c | 43 +

[PATCH V5 0/2] video: drm: Add Device tree support to DRM-FIMD

2012-09-07 Thread Leela Krishna Amudala
This patch set adds device tree support for DRM-FIMD for Samsung's Exynos5250. It includes parsing platform data from dts file. Also, adds the driver data for exynos4 and exynos5 devices. This patchset is based and tested on top of v3.6-rc4 on smdk5250 board Also depends on below patchset http://l

Re: [PATCH 0/7] Fixes for hybrid graphics Apple machines

2012-09-07 Thread Dave Airlie
On Fri, Sep 7, 2012 at 4:22 PM, Seth Forshee wrote: > Many hybrid graphics Apple laptops fail to set up LVDS on the secondary > GPU due to missing or incorrect mode information for the panel at init > time. The only way to get the LVDS mode on these machines is via the > DDC, but this is muxed to

Re: [PATCH] drm/fb helper: don't call drm_helper_connector_dpms directly

2012-09-07 Thread Jesse Barnes
On Fri, 7 Sep 2012 10:14:52 +0200 Daniel Vetter wrote: > Yet again a case where the fb helper is too intimate with the crtc > helper and calls a crtc helepr function directly instead of going > through the interface vtable. > > This fixes console blanking in drm/i915 with the new i915-specific

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490 diego.abele...@gmail.com changed: What|Removed |Added Attachment #66819|0 |1 is obsolete|

[PATCH] drm/fb helper: don't call drm_helper_connector_dpms directly

2012-09-07 Thread Jesse Barnes
On Fri, 7 Sep 2012 10:14:52 +0200 Daniel Vetter wrote: > Yet again a case where the fb helper is too intimate with the crtc > helper and calls a crtc helepr function directly instead of going > through the interface vtable. > > This fixes console blanking in drm/i915 with the new i915-specific

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490 diego.abele...@gmail.com changed: What|Removed |Added Attachment #66817|0 |1 is obsolete|

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490 diego.abele...@gmail.com changed: What|Removed |Added Attachment #66817|application/octet-stream|text/plain mime type|

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #34 from diego.abele...@gmail.com 2012-09-07 21:07:16 UTC --- Created attachment 66817 --> https://bugs.freedesktop.org/attachment.cgi?id=66817 dmesg booting with 2 monitors plugged patch applyed on top of drm-fixes-3.6 drm.debug=4

[PATCH] drm/exynos: fix double call of drm_prime_(init/destroy)_file_private

2012-09-07 Thread Inki Dae
Applied. Thanks, Inki Dae 2012/9/7 Mandeep Singh Baines : > The double invocations are incorrect but seem to be safe so I don't > think this will fix any bugs. > > Before: > > [7.639366] drm_prime_init_file ee3675d0 > [7.639377] drm_prime_init_file ee3675d0 > [7.639507] drm_prime_dest

[PATCH] drm/omap: add more new timings fields

2012-09-07 Thread Rob Clark
From: Rob Clark Without these, DVI is broken. Signed-off-by: Rob Clark --- Greg, it looks like the omapdss changes which added these fields, as well as the interlaced field, where merged in Linux 3.5-rc5. So I think both this and the 'update for interlaced' patch are needed for both 3.6 and 3.

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #33 from Alex Deucher 2012-09-07 19:35:20 UTC --- You might try this patch on top of my 3.6 fixees tree: http://cgit.freedesktop.org/~agd5f/linux/commit/?h=drm-next-3.7-wip&id=46b417b3eee694451b5bca8a7863e9174611a2e9 -- Configure bu

[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #32 from diego.abele...@gmail.com 2012-09-07 19:19:10 UTC --- Created attachment 66808 --> https://bugs.freedesktop.org/attachment.cgi?id=66808 dmesg booting with 2 monitors plugged drm.debug=4 This drm-fixes-3.6 branch just gives m

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

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=53490 Joeri Capens changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

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

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53511 --- Comment #1 from almos 2012-09-07 18:05:39 UTC --- I see that testing is the first item on the r600todo list, and to see if there are any differences between the two shader compilers. Maybe this should be a prerequisite of that, because most o

[PATCH] drm/omap: add more new timings fields

2012-09-07 Thread Rob Clark
From: Rob Clark Without these, DVI is broken. Signed-off-by: Rob Clark --- Greg, it looks like the omapdss changes which added these fields, as well as the interlaced field, where merged in Linux 3.5-rc5. So I think both this and the 'update for interlaced' patch are needed for both 3.6 and 3.

[Bug 54649] Image in Quake 3 is dark

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54649 Sven Arvidsson changed: What|Removed |Added CC||s...@whiz.se --- Comment #1 from Sven A

[Bug 54649] New: Image in Quake 3 is dark

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54649 Bug #: 54649 Summary: Image in Quake 3 is dark Classification: Unclassified Product: Mesa Version: git Platform: All OS/Version: All Status: NEW Severity: no

[PATCH 7/7] drm/pci: Defer initialization of secondary graphics devices until switcheroo is ready

2012-09-07 Thread Seth Forshee
Many Apple laptops with hybrid graphics require switching the i2c mux to the integrated GPU when that device is being initialized in order to get correct mode information for the LVDS panel. This requires that switcheroo is ready at the time the device is initialized, which is not guaranteed. To s

[PATCH 6/7] drm/pci: Add drm_put_pci_dev()

2012-09-07 Thread Seth Forshee
When deferred initialization support for pci devices is added some additional cleanup will be needed. Add a pci-specific put function to serve this purpose, and convert the pci drivers over to using it. For now it just calls drm_put_dev(), so this commit has no functional change. Signed-off-by: Se

[PATCH 5/7] drm/edid: Switch DDC when reading the EDID

2012-09-07 Thread Seth Forshee
Some dual graphics machines support muxing the DDC separately from the display, so make use of this functionality when reading the EDID on the inactive GPU. Also serialize drm_get_edid() with a mutex to avoid races on the DDC mux state. Signed-off-by: Seth Forshee --- drivers/gpu/drm/drm_edid.c

[PATCH 4/7] apple-gmux: Add switch_ddc support

2012-09-07 Thread Seth Forshee
The gmux allows muxing the DDC independently from the display, so support this functionality. This will allow reading the EDID for the inactive GPU, fixing issues with machines that either don't have a VBT or have invalid mode data in the VBT. Signed-off-by: Seth Forshee --- drivers/platform/x86

[PATCH 3/7] vga_switcheroo: Add notifier call chain for switcheroo events

2012-09-07 Thread Seth Forshee
DRM needs to be notified of client and handler registration in order to defer initialization of the secondary GPU until the EDID can be read from the LVDS panel. To support this add a notifier call chain to vga_switcheroo for subscribing to switcheroo events. Events are generated for registration a

[PATCH 2/7] vga_switcheroo: Add helper function to get the active client

2012-09-07 Thread Seth Forshee
Add vga_switcheroo_get_active_client() to allow drivers to get the active video client. This will be used by drivers wishing to temporarily mux only the DDC to the inactive client. Signed-off-by: Seth Forshee --- drivers/gpu/vga/vga_switcheroo.c | 14 ++ include/linux/vga_switchero

[PATCH 1/7] vga_switcheroo: Add support for switching only the DDC

2012-09-07 Thread Seth Forshee
During graphics driver initialization its useful to be able to mux only the DDC to the inactive client in order to read the EDID. Add a switch_ddc callback to allow capable handlers to provide this functionality, and add vga_switcheroo_switch_ddc() to allow DRM to mux only the DDC. Signed-off-by:

[PATCH 0/7] Fixes for hybrid graphics Apple machines

2012-09-07 Thread Seth Forshee
Many hybrid graphics Apple laptops fail to set up LVDS on the secondary GPU due to missing or incorrect mode information for the panel at init time. The only way to get the LVDS mode on these machines is via the DDC, but this is muxed to the active GPU at boot. However, the graphics mux on these ma

[PATCH] drm/fb helper: don't call drm_helper_connector_dpms directly

2012-09-07 Thread Daniel Vetter
Yet again a case where the fb helper is too intimate with the crtc helper and calls a crtc helepr function directly instead of going through the interface vtable. This fixes console blanking in drm/i915 with the new i915-specific modeset code. Reported-by: Jesse Barnes Signed-off-by: Daniel Vett

[Bug 36602] Hierarchical Z support for R600

2012-09-07 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36602 --- Comment #51 from Zolt?n B?sz?rm?nyi 2012-09-07 10:08:21 UTC --- I saw this: commit 5ceb87286f2e1b5b8527ba18a844abf450903175 Author: Jerome Glisse Date: Wed Sep 5 15:18:24 2012 -0400 r600g: order atom emission v3 To avoid GPU lo

[PATCH V4 2/2] video: drm: exynos: Add device tree support

2012-09-07 Thread Leela Krishna Amudala
Hi, On Thu, Sep 6, 2012 at 4:35 PM, Sylwester Nawrocki wrote: > Hi, > > On 09/06/2012 09:21 AM, InKi Dae wrote: +Required properties: + - compatible: Should be "samsung,exynos5-fimd" or "samsung,exynos4-fb" for >>> Doesn't better to use single word? fimd or fb?. I think 'fb' is us

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

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53490 Joeri Capens changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 36602] Hierarchical Z support for R600

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36602 --- Comment #51 from Zoltán Böszörményi 2012-09-07 10:08:21 UTC --- I saw this: commit 5ceb87286f2e1b5b8527ba18a844abf450903175 Author: Jerome Glisse Date: Wed Sep 5 15:18:24 2012 -0400 r600g: order atom emission v3 To avoid GPU lo

[PATCH] drm/fb helper: don't call drm_helper_connector_dpms directly

2012-09-07 Thread Daniel Vetter
Yet again a case where the fb helper is too intimate with the crtc helper and calls a crtc helepr function directly instead of going through the interface vtable. This fixes console blanking in drm/i915 with the new i915-specific modeset code. Reported-by: Jesse Barnes Signed-off-by: Daniel Vett

[PATCH] drm/exynos: remove DRM_FORMAT_NV12M from plane module

2012-09-07 Thread Inki Dae
this patch removes DRM_FORMAT_NV12M from plane module because this format is same as DRM_FORMAT_NV12. DRM_FORMAT_NV12M will be identified by mode_cmd->handles and mode_cmd->offsets fields internally. Signed-off-by: Inki Dae Signed-off-by: Kyungmin.park --- drivers/gpu/drm/exynos/exynos_drm_plan

Re: PCI Radeon RV100 detection hang on sparc64

2012-09-07 Thread Dave Airlie
On Fri, Sep 7, 2012 at 4:18 AM, David Miller wrote: > From: Michel Dänzer > Date: Thu, 06 Sep 2012 18:55:51 +0200 > >> On Don, 2012-09-06 at 17:41 +0300, Meelis Roos wrote: >>> This is with initialyy unmodified 3.6.0-rc4-00101-g0809095 kernel in >>> Ultra 10 (clean, without my "Video RAM" hack th

Re: [PATCH V5 0/2] video: drm: Add Device tree support to DRM-FIMD

2012-09-07 Thread Inki Dae
Applied. Thanks. Inki Dae 2012/9/7 Leela Krishna Amudala : > This patch set adds device tree support for DRM-FIMD for Samsung's Exynos5250. > It includes parsing platform data from dts file. Also, adds the driver data > for exynos4 and exynos5 devices. > > This patchset is based and tested on top

Re: [PATCH V4 2/2] video: drm: exynos: Add device tree support

2012-09-07 Thread Inki Dae
2012/9/7 Inki Dae : > Hi > > 2012/9/7 Leela Krishna Amudala : >> Hi, >> >> On Thu, Sep 6, 2012 at 4:35 PM, Sylwester Nawrocki >> wrote: >>> Hi, >>> >>> On 09/06/2012 09:21 AM, InKi Dae wrote: >> +Required properties: >> + - compatible: Should be "samsung,exynos5-fimd" or "samsung,exynos4-f