[PATCH] Documentation/drm: Update rotation property

2015-05-28 Thread Sonika Jindal
Moving rotation property to "Drm" and removing from i915 and omap. Also, adding description to the property Cc: DRI Development Suggested-by: Ville Syrjälä Signed-off-by: Sonika Jindal --- Documentation/DocBook/drm.tmpl | 41 ++-- 1 file c

[PATCH] Documentation/drm: Update rotation property with 90/270 and description

2015-04-15 Thread Sonika Jindal
Cc: dri-devel at lists.freedesktop.org Signed-off-by: Sonika Jindal --- Documentation/DocBook/drm.tmpl |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Documentation/DocBook/drm.tmpl b/Documentation/DocBook/drm.tmpl index f4976cd..266d50a 100644 --- a/Documentation

[PATCH 1/4] drm: Adding edp1.4 specific dpcd macros

2015-02-21 Thread Sonika Jindal
Adding dpcd macros related to edp1.4 and link rates v2: Added DP_SUPPORTED_LINK_RATES macros Cc: dri-devel at lists.freedesktop.org Signed-off-by: Sonika Jindal Reviewed-by: Todd Previte --- include/drm/drm_dp_helper.h |8 1 file changed, 8 insertions(+) diff --git a/include/drm

[PATCH] drm: Adding edp1.4 specific dpcd macros

2015-02-19 Thread Sonika Jindal
Adding dpcd macros related to edp1.4 and link rates v2: Added DP_SUPPORTED_LINK_RATES macros Signed-off-by: Sonika Jindal --- include/drm/drm_dp_helper.h |8 1 file changed, 8 insertions(+) diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h index 11f8c84

[PATCH] drm: Adding rotation to drm_plane_helper_check_update

2015-01-14 Thread Sonika Jindal
Taking rotation into account while checking the plane and adjusting the sizes accordingly. v2: Adding parameter in the callers in the same patch(Matt) Removing unnecessary code and allowing scaling(Ville) Signed-off-by: Sonika Jindal --- drivers/gpu/drm/drm_plane_helper.c | 44

[PATCH 2/2] drm/i915: Passing rotation to drm_plane_helper_check_update

2015-01-13 Thread Sonika Jindal
Signed-off-by: Sonika Jindal --- drivers/gpu/drm/i915/intel_display.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index f40288f..d19ed4b 100644 --- a/drivers/gpu/drm/i915/intel_display.c

[PATCH 1/2] drm: Adding rotation to drm_plane_helper_check_update

2015-01-13 Thread Sonika Jindal
Taking rotation into account while checking the plane and adjusting the sizes accordingly. Signed-off-by: Sonika Jindal --- drivers/gpu/drm/drm_plane_helper.c | 79 ++-- include/drm/drm_plane_helper.h |3 +- 2 files changed, 77 insertions(+), 5

[PATCH 0/2] Adding rotattion to drm_plane_helper_check_update

2015-01-13 Thread Sonika Jindal
This adds another parameter rotation to drm_plane_helper_check_update. This will enable this function to do to size updations based upon the rotation if any. Updated the calls to this function in i915 and drm. Rockchip driver also needs to be updated. Sonika Jindal (2): drm: Adding rotation to