RE: [PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-15 Thread Kavuri, Sateesh
Subject: Re: [PATCH] drm: Enable reading 3D capabilities of 3D monitor On Fri, 2011-12-09 at 11:46 +, Kavuri, Sateesh wrote: + if ((multi_val == STRUCTURE_PRESENT) || + (multi_val == STRUCTURE_MASK_PRESENT

[PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-14 Thread Kavuri, Sateesh
; Cc: dri-devel at lists.freedesktop.org > Subject: Re: [PATCH] drm: Enable reading 3D capabilities of 3D monitor > > On Fri, 2011-12-09 at 11:46 +, Kavuri, Sateesh wrote: > > > + if ((multi_val == STRUCTURE_PRESENT) || > > +

[PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-14 Thread Adam Jackson
On Wed, 2011-12-14 at 13:04 +, Kavuri, Sateesh wrote: > + /* Data block offset in CEA extension block */ > + start_offset = 4; > + end_offset = edid_ext[2]; > + > + /* 3D vars */ > + int multi_present = 0; Pretty sure kernel style frowns upon mixed decls and code. > +

RE: [PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-14 Thread Adam Jackson
On Wed, 2011-12-14 at 13:04 +, Kavuri, Sateesh wrote: + /* Data block offset in CEA extension block */ + start_offset = 4; + end_offset = edid_ext[2]; + + /* 3D vars */ + int multi_present = 0; Pretty sure kernel style frowns upon mixed decls and code. + /* +

[PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-13 Thread Adam Jackson
On Fri, 2011-12-09 at 11:46 +, Kavuri, Sateesh wrote: > + if ((multi_val == STRUCTURE_PRESENT) || > + (multi_val == STRUCTURE_MASK_PRESENT) ) { > + if ((edid_ext[i+15+hdmi_vic_len] & 0x01) == > 0x01) > +

Re: [PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-13 Thread Adam Jackson
On Fri, 2011-12-09 at 11:46 +, Kavuri, Sateesh wrote: + if ((multi_val == STRUCTURE_PRESENT) || + (multi_val == STRUCTURE_MASK_PRESENT) ) { + if ((edid_ext[i+15+hdmi_vic_len] 0x01) == 0x01) +

[PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-10 Thread Kavuri, Sateesh
This is first of the patches to enable reading the 3D capabilities of a connected monitor on HDMI. Similar functionality would also be implemented for other interface, eDP, DP The idea is to read the 3D capabilities via EDID and provide this to a user space application that would want to

[PATCH] drm: Enable reading 3D capabilities of 3D monitor

2011-12-09 Thread Kavuri, Sateesh
This is first of the patches to enable reading the 3D capabilities of a connected monitor on HDMI. Similar functionality would also be implemented for other interface, eDP, DP The idea is to read the 3D capabilities via EDID and provide this to a user space application that would want to