All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH 1/2] drm/dp: add drm_dp_phy_name() for getting DP PHY name
Date: Tue, 05 Oct 2021 11:33:20 +0300	[thread overview]
Message-ID: <87ilyb27n3.fsf@intel.com> (raw)
In-Reply-To: <YVwLm+Akrbx9ZAG/@intel.com>

On Tue, 05 Oct 2021, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Tue, Oct 05, 2021 at 11:10:52AM +0300, Jani Nikula wrote:
>> Add a helper for getting the DP PHY name. In the interest of caller
>> simplicity and to avoid allocations and passing in of buffers, duplicate
>> the const strings to return. It's a minor penalty to pay for simplicity
>> in all the call sites.
>
> Yeah, the on stack extra buffer is getting a bit annoying, especially
> with the calls multiplying like rabbits in my recent patches.
>
> Series is
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Thanks.

I don't want to block your patches with this, so I can wait and rebase.


BR,
Jani.


>
>> 
>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  drivers/gpu/drm/drm_dp_helper.c | 21 +++++++++++++++++++++
>>  include/drm/drm_dp_helper.h     |  2 ++
>>  2 files changed, 23 insertions(+)
>> 
>> diff --git a/drivers/gpu/drm/drm_dp_helper.c b/drivers/gpu/drm/drm_dp_helper.c
>> index 4d0d1e8e51fa..f1d03b5a4bab 100644
>> --- a/drivers/gpu/drm/drm_dp_helper.c
>> +++ b/drivers/gpu/drm/drm_dp_helper.c
>> @@ -197,6 +197,27 @@ void drm_dp_link_train_channel_eq_delay(const struct drm_dp_aux *aux,
>>  }
>>  EXPORT_SYMBOL(drm_dp_link_train_channel_eq_delay);
>>  
>> +const char *drm_dp_phy_name(enum drm_dp_phy dp_phy)
>> +{
>> +	static const char * const phy_names[] = {
>> +		[DP_PHY_DPRX] = "DPRX",
>> +		[DP_PHY_LTTPR1] = "LTTPR 1",
>> +		[DP_PHY_LTTPR2] = "LTTPR 2",
>> +		[DP_PHY_LTTPR3] = "LTTPR 3",
>> +		[DP_PHY_LTTPR4] = "LTTPR 4",
>> +		[DP_PHY_LTTPR5] = "LTTPR 5",
>> +		[DP_PHY_LTTPR6] = "LTTPR 6",
>> +		[DP_PHY_LTTPR7] = "LTTPR 7",
>> +		[DP_PHY_LTTPR8] = "LTTPR 8",
>> +	};
>> +
>> +	if (dp_phy < 0 || dp_phy >= ARRAY_SIZE(phy_names))
>> +		return "<INVALID DP PHY>";
>> +
>> +	return phy_names[dp_phy];
>> +}
>> +EXPORT_SYMBOL(drm_dp_phy_name);
>> +
>>  void drm_dp_lttpr_link_train_clock_recovery_delay(void)
>>  {
>>  	usleep_range(100, 200);
>> diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h
>> index b52df4db3e8f..c873e6349b41 100644
>> --- a/include/drm/drm_dp_helper.h
>> +++ b/include/drm/drm_dp_helper.h
>> @@ -2115,6 +2115,8 @@ bool drm_dp_read_sink_count_cap(struct drm_connector *connector,
>>  				const struct drm_dp_desc *desc);
>>  int drm_dp_read_sink_count(struct drm_dp_aux *aux);
>>  
>> +const char *drm_dp_phy_name(enum drm_dp_phy dp_phy);
>> +
>>  int drm_dp_read_lttpr_common_caps(struct drm_dp_aux *aux,
>>  				  u8 caps[DP_LTTPR_COMMON_CAP_SIZE]);
>>  int drm_dp_read_lttpr_phy_caps(struct drm_dp_aux *aux,
>> -- 
>> 2.30.2

-- 
Jani Nikula, Intel Open Source Graphics Center

WARNING: multiple messages have this Message-ID (diff)
From: Jani Nikula <jani.nikula@intel.com>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 1/2] drm/dp: add drm_dp_phy_name() for getting DP PHY name
Date: Tue, 05 Oct 2021 11:33:20 +0300	[thread overview]
Message-ID: <87ilyb27n3.fsf@intel.com> (raw)
In-Reply-To: <YVwLm+Akrbx9ZAG/@intel.com>

On Tue, 05 Oct 2021, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Tue, Oct 05, 2021 at 11:10:52AM +0300, Jani Nikula wrote:
>> Add a helper for getting the DP PHY name. In the interest of caller
>> simplicity and to avoid allocations and passing in of buffers, duplicate
>> the const strings to return. It's a minor penalty to pay for simplicity
>> in all the call sites.
>
> Yeah, the on stack extra buffer is getting a bit annoying, especially
> with the calls multiplying like rabbits in my recent patches.
>
> Series is
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Thanks.

I don't want to block your patches with this, so I can wait and rebase.


BR,
Jani.


>
>> 
>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  drivers/gpu/drm/drm_dp_helper.c | 21 +++++++++++++++++++++
>>  include/drm/drm_dp_helper.h     |  2 ++
>>  2 files changed, 23 insertions(+)
>> 
>> diff --git a/drivers/gpu/drm/drm_dp_helper.c b/drivers/gpu/drm/drm_dp_helper.c
>> index 4d0d1e8e51fa..f1d03b5a4bab 100644
>> --- a/drivers/gpu/drm/drm_dp_helper.c
>> +++ b/drivers/gpu/drm/drm_dp_helper.c
>> @@ -197,6 +197,27 @@ void drm_dp_link_train_channel_eq_delay(const struct drm_dp_aux *aux,
>>  }
>>  EXPORT_SYMBOL(drm_dp_link_train_channel_eq_delay);
>>  
>> +const char *drm_dp_phy_name(enum drm_dp_phy dp_phy)
>> +{
>> +	static const char * const phy_names[] = {
>> +		[DP_PHY_DPRX] = "DPRX",
>> +		[DP_PHY_LTTPR1] = "LTTPR 1",
>> +		[DP_PHY_LTTPR2] = "LTTPR 2",
>> +		[DP_PHY_LTTPR3] = "LTTPR 3",
>> +		[DP_PHY_LTTPR4] = "LTTPR 4",
>> +		[DP_PHY_LTTPR5] = "LTTPR 5",
>> +		[DP_PHY_LTTPR6] = "LTTPR 6",
>> +		[DP_PHY_LTTPR7] = "LTTPR 7",
>> +		[DP_PHY_LTTPR8] = "LTTPR 8",
>> +	};
>> +
>> +	if (dp_phy < 0 || dp_phy >= ARRAY_SIZE(phy_names))
>> +		return "<INVALID DP PHY>";
>> +
>> +	return phy_names[dp_phy];
>> +}
>> +EXPORT_SYMBOL(drm_dp_phy_name);
>> +
>>  void drm_dp_lttpr_link_train_clock_recovery_delay(void)
>>  {
>>  	usleep_range(100, 200);
>> diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h
>> index b52df4db3e8f..c873e6349b41 100644
>> --- a/include/drm/drm_dp_helper.h
>> +++ b/include/drm/drm_dp_helper.h
>> @@ -2115,6 +2115,8 @@ bool drm_dp_read_sink_count_cap(struct drm_connector *connector,
>>  				const struct drm_dp_desc *desc);
>>  int drm_dp_read_sink_count(struct drm_dp_aux *aux);
>>  
>> +const char *drm_dp_phy_name(enum drm_dp_phy dp_phy);
>> +
>>  int drm_dp_read_lttpr_common_caps(struct drm_dp_aux *aux,
>>  				  u8 caps[DP_LTTPR_COMMON_CAP_SIZE]);
>>  int drm_dp_read_lttpr_phy_caps(struct drm_dp_aux *aux,
>> -- 
>> 2.30.2

-- 
Jani Nikula, Intel Open Source Graphics Center

  reply	other threads:[~2021-10-05  8:33 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-05  8:10 [Intel-gfx] [PATCH 1/2] drm/dp: add drm_dp_phy_name() for getting DP PHY name Jani Nikula
2021-10-05  8:10 ` Jani Nikula
2021-10-05  8:10 ` [Intel-gfx] [PATCH 2/2] drm/i915/dp: use drm_dp_phy_name() for logging Jani Nikula
2021-10-05  8:10   ` Jani Nikula
2021-10-05  8:23 ` [Intel-gfx] [PATCH 1/2] drm/dp: add drm_dp_phy_name() for getting DP PHY name Ville Syrjälä
2021-10-05  8:23   ` Ville Syrjälä
2021-10-05  8:33   ` Jani Nikula [this message]
2021-10-05  8:33     ` Jani Nikula
2021-10-05 11:15 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/2] " Patchwork
2021-10-05 12:22   ` Jani Nikula
2021-10-05 12:38     ` Sarvela, Tomi P
2021-10-05 11:44 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-10-05 15:54 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2021-10-19 16:13 [Intel-gfx] [PATCH 1/2] " 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=87ilyb27n3.fsf@intel.com \
    --to=jani.nikula@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=ville.syrjala@linux.intel.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.