Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1728618 > unrolled thread

[PATCH v3 0/6] Exynos-gsc: Support the hardware rotation limits

Started byHoegeun Kwon <hoegeun.kwon@samsung.com>
First post2017-09-08 08:10 +0200
Last post2017-09-08 08:10 +0200
Articles 2 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v3 0/6] Exynos-gsc: Support the hardware rotation limits Hoegeun Kwon <hoegeun.kwon@samsung.com> - 2017-09-08 08:10 +0200
    [PATCH v3 1/6] [media] exynos-gsc: Add compatible for Exynos 5250  and 5420 specific version Hoegeun Kwon <hoegeun.kwon@samsung.com> - 2017-09-08 08:10 +0200

#1728618 — [PATCH v3 0/6] Exynos-gsc: Support the hardware rotation limits

FromHoegeun Kwon <hoegeun.kwon@samsung.com>
Date2017-09-08 08:10 +0200
Subject[PATCH v3 0/6] Exynos-gsc: Support the hardware rotation limits
Message-ID<unkEh-2Qx-7@gated-at.bofh.it>
Hello all,

The gscaler has hardware rotation limits. So this patch set support
the rotate hardware limits of gsc.

To avoid problems with bisectability, patches 1~4 must be merged and
then merged 5 and 6.

Changes for V3:
- Fixed of_match_node() to of_device_get_match_data() in drm gsc driver.
- Added hardware rotation limits for gsc driver of v4l2.
- Added the remove unnecessary compatible for DT document and Exynos dts.

Changes for V2:
- Added the interface info in binding document.
- Added clean name of compatible in Exynos dts.
- Added maximum supported picture size hardcoded into driver.

Best regards,
Hoegeun

Hoegeun Kwon (6):
  [media] exynos-gsc: Add compatible for Exynos 5250 and 5420 specific
    version
  ARM: dts: exynos: Add clean name of compatible.
  drm/exynos/gsc: Add hardware rotation limits
  [media] exynos-gsc: Add hardware rotation limits
  [media] exynos-gsc: Remove unnecessary compatible
  ARM: dts: exynos: Remove unnecessary compatible

 .../devicetree/bindings/media/exynos5-gsc.txt      |  7 +-
 arch/arm/boot/dts/exynos5250.dtsi                  |  8 +-
 arch/arm/boot/dts/exynos5420.dtsi                  |  4 +-
 drivers/gpu/drm/exynos/exynos_drm_gsc.c            | 93 ++++++++++++++-------
 drivers/media/platform/exynos-gsc/gsc-core.c       | 96 +++++++++++++++++++---
 include/uapi/drm/exynos_drm.h                      |  2 +
 6 files changed, 159 insertions(+), 51 deletions(-)

-- 
1.9.1

[toc] | [next] | [standalone]


#1728621 — [PATCH v3 1/6] [media] exynos-gsc: Add compatible for Exynos 5250 and 5420 specific version

FromHoegeun Kwon <hoegeun.kwon@samsung.com>
Date2017-09-08 08:10 +0200
Subject[PATCH v3 1/6] [media] exynos-gsc: Add compatible for Exynos 5250 and 5420 specific version
Message-ID<unkEi-2Qx-35@gated-at.bofh.it>
In reply to#1728618
Exynos 5250 and 5420 have different hardware rotation limits.
Since we have to distinguish between these two, we add different
compatible(samsung,exynos5250-gsc and samsung,exynos5420-gsc).

Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
---
 Documentation/devicetree/bindings/media/exynos5-gsc.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/media/exynos5-gsc.txt b/Documentation/devicetree/bindings/media/exynos5-gsc.txt
index 26ca25b..daa56d5 100644
--- a/Documentation/devicetree/bindings/media/exynos5-gsc.txt
+++ b/Documentation/devicetree/bindings/media/exynos5-gsc.txt
@@ -5,6 +5,7 @@ G-Scaler is used for scaling and color space conversion on EXYNOS5 SoCs.
 Required properties:
 - compatible: should be "samsung,exynos5-gsc" (for Exynos 5250, 5420 and
 	      5422 SoCs) or "samsung,exynos5433-gsc" (Exynos 5433)
+	      or "samsung,exynos5250-gsc" or "samsung,exynos5420-gsc"
 - reg: should contain G-Scaler physical address location and length.
 - interrupts: should contain G-Scaler interrupt number
 
-- 
1.9.1

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web