All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@linux.intel.com>
Cc: open list <linux-kernel@vger.kernel.org>,
	"open list:DRM DRIVERS" <dri-devel@lists.freedesktop.org>,
	Vinay Simha BN <simhavcs@gmail.com>,
	Archit Taneja <archit.taneja@gmail.com>
Subject: Re: [PATCH 1/2] drm/dsi: Implement set tear scanline
Date: Mon, 06 Jun 2016 10:23:49 +0300	[thread overview]
Message-ID: <87h9d67pbu.fsf@intel.com> (raw)
In-Reply-To: <1464832099-22402-1-git-send-email-simhavcs@gmail.com>

On Thu, 02 Jun 2016, Vinay Simha BN <simhavcs@gmail.com> wrote:
> Provide a small convenience wrapper that transmits
> ia set_tear_scanline command as suggested by
> Thierry Reding.
>
> Also includes small build fixes from Sumit Semwal.
>
> Cc: Archit Taneja <archit.taneja@gmail.com>
> Cc: John Stultz <john.stultz@linaro.org>
> Cc: Thierry Reding <thierry.reding@gmail.com>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Signed-off-by: Vinay Simha BN <simhavcs@gmail.com>
> ---
>  drivers/gpu/drm/drm_mipi_dsi.c | 23 +++++++++++++++++++++++
>  include/drm/drm_mipi_dsi.h     |  2 ++
>  2 files changed, 25 insertions(+)
>
> diff --git a/drivers/gpu/drm/drm_mipi_dsi.c b/drivers/gpu/drm/drm_mipi_dsi.c
> index f5d8083..2f0b85c 100644
> --- a/drivers/gpu/drm/drm_mipi_dsi.c
> +++ b/drivers/gpu/drm/drm_mipi_dsi.c
> @@ -983,6 +983,29 @@ 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
> + * @param1: STS[10:8]
> + * @param2: STS[7:0]
> + * Return: 0 on success or a negative error code on failure
> + */
> +int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi,
> +			       u8 param1, u8 param2)

If you're making a helper, please make using it easy and have *one*
scanline parameter.

BR,
Jani.

> +{
> +	u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, param1, param2};
> +	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
>   * @dsi: DSI peripheral device
> diff --git a/include/drm/drm_mipi_dsi.h b/include/drm/drm_mipi_dsi.h
> index 7a9840f..2788dbe 100644
> --- a/include/drm/drm_mipi_dsi.h
> +++ b/include/drm/drm_mipi_dsi.h
> @@ -263,6 +263,8 @@ 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, u8 param1,
> +			       u8 param2);
>  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);

-- 
Jani Nikula, Intel Open Source Technology Center

WARNING: multiple messages have this Message-ID (diff)
From: Jani Nikula <jani.nikula@linux.intel.com>
To: Vinay Simha BN <simhavcs@gmail.com>
Cc: open list <linux-kernel@vger.kernel.org>,
	"open list\:DRM DRIVERS" <dri-devel@lists.freedesktop.org>,
	Vinay Simha BN <simhavcs@gmail.com>,
	Archit Taneja <archit.taneja@gmail.com>
Subject: Re: [PATCH 1/2] drm/dsi: Implement set tear scanline
Date: Mon, 06 Jun 2016 10:23:49 +0300	[thread overview]
Message-ID: <87h9d67pbu.fsf@intel.com> (raw)
In-Reply-To: <1464832099-22402-1-git-send-email-simhavcs@gmail.com>

On Thu, 02 Jun 2016, Vinay Simha BN <simhavcs@gmail.com> wrote:
> Provide a small convenience wrapper that transmits
> ia set_tear_scanline command as suggested by
> Thierry Reding.
>
> Also includes small build fixes from Sumit Semwal.
>
> Cc: Archit Taneja <archit.taneja@gmail.com>
> Cc: John Stultz <john.stultz@linaro.org>
> Cc: Thierry Reding <thierry.reding@gmail.com>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Signed-off-by: Vinay Simha BN <simhavcs@gmail.com>
> ---
>  drivers/gpu/drm/drm_mipi_dsi.c | 23 +++++++++++++++++++++++
>  include/drm/drm_mipi_dsi.h     |  2 ++
>  2 files changed, 25 insertions(+)
>
> diff --git a/drivers/gpu/drm/drm_mipi_dsi.c b/drivers/gpu/drm/drm_mipi_dsi.c
> index f5d8083..2f0b85c 100644
> --- a/drivers/gpu/drm/drm_mipi_dsi.c
> +++ b/drivers/gpu/drm/drm_mipi_dsi.c
> @@ -983,6 +983,29 @@ 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
> + * @param1: STS[10:8]
> + * @param2: STS[7:0]
> + * Return: 0 on success or a negative error code on failure
> + */
> +int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi,
> +			       u8 param1, u8 param2)

If you're making a helper, please make using it easy and have *one*
scanline parameter.

BR,
Jani.

> +{
> +	u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, param1, param2};
> +	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
>   * @dsi: DSI peripheral device
> diff --git a/include/drm/drm_mipi_dsi.h b/include/drm/drm_mipi_dsi.h
> index 7a9840f..2788dbe 100644
> --- a/include/drm/drm_mipi_dsi.h
> +++ b/include/drm/drm_mipi_dsi.h
> @@ -263,6 +263,8 @@ 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, u8 param1,
> +			       u8 param2);
>  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);

-- 
Jani Nikula, Intel Open Source Technology Center

  parent reply	other threads:[~2016-06-06  7:23 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-02  1:48 [PATCH 1/2] drm/dsi: Implement set tear scanline Vinay Simha BN
2016-06-02  1:48 ` Vinay Simha BN
2016-06-02  1:48 ` [PATCH 2/2] drm/dsi: Implement dcs backlight brightness Vinay Simha BN
2016-06-02  1:48   ` Vinay Simha BN
2016-06-06  7:37   ` Jani Nikula
2016-06-06  7:37     ` Jani Nikula
2016-06-06 17:48     ` Vinay Simha
2016-06-06 18:04       ` Jani Nikula
2016-06-06 18:04         ` Jani Nikula
2016-06-06  7:23 ` Jani Nikula [this message]
2016-06-06  7:23   ` [PATCH 1/2] drm/dsi: Implement set tear scanline Jani Nikula

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87h9d67pbu.fsf@intel.com \
    --to=jani.nikula@linux.intel.com \
    --cc=archit.taneja@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=simhavcs@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.