]> Git Repo - linux.git/commitdiff
drm/dsi: Implement set tear scanline
authorVinay Simha BN <[email protected]>
Tue, 7 Jun 2016 07:45:31 +0000 (13:15 +0530)
committerDaniel Vetter <[email protected]>
Tue, 7 Jun 2016 19:44:29 +0000 (21:44 +0200)
Provide a small convenience wrapper that transmits
a set_tear_scanline command.

v2:
  * helper function suggested by Thierry
    for set_tear_scanline
  * Also includes small build fixes from Sumit Semwal.

v3: one scanline parameter suggested by jani

v4: passing the payload properly as suggested by jani

Cc: Archit Taneja <[email protected]>
Cc: John Stultz <[email protected]>
Cc: Thierry Reding <[email protected]>
Cc: Sumit Semwal <[email protected]>
Cc: Jani Nikula <[email protected]>
Signed-off-by: Vinay Simha BN <[email protected]>
Reviewed-by: Sumit Semwal <[email protected]>
Reviewed-by: Jani Nikula <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/drm_mipi_dsi.c
include/drm/drm_mipi_dsi.h

index f5d80839a90c2941b7d0243ef17df8d949baa079..7938ce7ebed8b2a9a91487032079d2ab8b996952 100644 (file)
@@ -982,6 +982,28 @@ int mipi_dsi_dcs_set_tear_on(struct mipi_dsi_device *dsi,
 }
 EXPORT_SYMBOL(mipi_dsi_dcs_set_tear_on);
 
+/**
+ * mipi_dsi_set_tear_scanline() - turn on the display module's Tearing Effect
+ * output signal on the TE signal line when display module reaches line N
+ * defined by STS[n:0].
+ * @dsi: DSI peripheral device
+ * @param: STS[10:0]
+ * Return: 0 on success or a negative error code on failure
+ */
+int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param)
+{
+       u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, param >> 8,
+                         param & 0xff };
+       ssize_t err;
+
+       err = mipi_dsi_generic_write(dsi, payload, sizeof(payload));
+       if (err < 0)
+               return err;
+
+       return 0;
+}
+EXPORT_SYMBOL(mipi_dsi_set_tear_scanline);
+
 /**
  * mipi_dsi_dcs_set_pixel_format() - sets the pixel format for the RGB image
  *    data used by the interface
index 7a9840f8b38e03a5efc71a216cfae7b6f2e99bb3..ec552854a8f89f0c5f19bac141f7892d3913e2c5 100644 (file)
@@ -263,6 +263,7 @@ int mipi_dsi_dcs_set_column_address(struct mipi_dsi_device *dsi, u16 start,
                                    u16 end);
 int mipi_dsi_dcs_set_page_address(struct mipi_dsi_device *dsi, u16 start,
                                  u16 end);
+int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param);
 int mipi_dsi_dcs_set_tear_off(struct mipi_dsi_device *dsi);
 int mipi_dsi_dcs_set_tear_on(struct mipi_dsi_device *dsi,
                             enum mipi_dsi_dcs_tear_mode mode);
This page took 0.061188 seconds and 4 git commands to generate.