linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
@ 2020-09-11  6:18 Swapnil Jakhade
  2020-09-11  6:18 ` [PATCH v6 1/2] phy: " Swapnil Jakhade
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Swapnil Jakhade @ 2020-09-11  6:18 UTC (permalink / raw)
  To: vkoul, kishon, linux-kernel, maxime, Laurent.pinchart
  Cc: mparab, sjakhade, yamonkar, nsekhar, tomi.valkeinen, jsarha, praneeth

This patch series adds a new PHY attribute max_link_rate.
It also updates Cadence Torrent PHY driver to set attributes bus_width,
max_link_rate and mode for DisplayPort.

It includes following patches:

1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
This patch adds max_link_rate as a new PHY attribute.

2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
This patch sets PHY attributes in Cadence Torrent PHY driver. This will
enable drivers using this PHY to read these properties.

These attributes will be used in the Cadence MHDP DRM bridge driver [1]
which is in the process of upstreaming.

[1]

https://lkml.org/lkml/2020/8/31/171

Version History:

v6:
   - Remove implementation of new APIs phy_get_attrs/phy_set_attrs
   - Set attributes manually in Torrent PHY driver

v5:
    - Add kernel-doc comments for phy_get_attrs/phy_set_attrs APIs
    - Pass second parameter of phy_set_attrs() as const struct *
    - Add Acked-by: Kishon Vijay Abraham I <kishon@ti.com>

v4:
    - Protect phy_get_attrs/phy_set_attrs APIs with mutex

v3:
    - Add comment describing new PHY attribute max_link_rate
    - Use of memcpy to copy structure members
    - Change commit log a bit

v2:
    - Implemented single pair of functions to get/set all PHY attributes

Swapnil Jakhade (2):
  phy: Add new PHY attribute max_link_rate
  phy: cadence-torrent: Set Torrent PHY attributes

 drivers/phy/cadence/phy-cadence-torrent.c | 4 ++++
 include/linux/phy/phy.h                   | 2 ++
 2 files changed, 6 insertions(+)

-- 
2.26.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH v6 1/2] phy: Add new PHY attribute max_link_rate
  2020-09-11  6:18 [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Swapnil Jakhade
@ 2020-09-11  6:18 ` Swapnil Jakhade
  2020-09-15 23:00   ` Laurent Pinchart
  2020-09-11  6:18 ` [PATCH v6 2/2] phy: cadence-torrent: Set Torrent PHY attributes Swapnil Jakhade
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 12+ messages in thread
From: Swapnil Jakhade @ 2020-09-11  6:18 UTC (permalink / raw)
  To: vkoul, kishon, linux-kernel, maxime, Laurent.pinchart
  Cc: mparab, sjakhade, yamonkar, nsekhar, tomi.valkeinen, jsarha, praneeth

Add new PHY attribute max_link_rate to struct phy_attrs. This indicates
maximum link rate supported by PHY (in Mbps).

Signed-off-by: Yuti Amonkar <yamonkar@cadence.com>
Signed-off-by: Swapnil Jakhade <sjakhade@cadence.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 include/linux/phy/phy.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h
index bcee8eba62b3..e435bdb0bab3 100644
--- a/include/linux/phy/phy.h
+++ b/include/linux/phy/phy.h
@@ -115,10 +115,12 @@ struct phy_ops {
 /**
  * struct phy_attrs - represents phy attributes
  * @bus_width: Data path width implemented by PHY
+ * @max_link_rate: Maximum link rate supported by PHY (in Mbps)
  * @mode: PHY mode
  */
 struct phy_attrs {
 	u32			bus_width;
+	u32			max_link_rate;
 	enum phy_mode		mode;
 };
 
-- 
2.26.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH v6 2/2] phy: cadence-torrent: Set Torrent PHY attributes
  2020-09-11  6:18 [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Swapnil Jakhade
  2020-09-11  6:18 ` [PATCH v6 1/2] phy: " Swapnil Jakhade
@ 2020-09-11  6:18 ` Swapnil Jakhade
  2020-09-15 23:01   ` Laurent Pinchart
  2020-09-16  7:41 ` [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Sekhar Nori
  2020-09-16 12:08 ` Vinod Koul
  3 siblings, 1 reply; 12+ messages in thread
From: Swapnil Jakhade @ 2020-09-11  6:18 UTC (permalink / raw)
  To: vkoul, kishon, linux-kernel, maxime, Laurent.pinchart
  Cc: mparab, sjakhade, yamonkar, nsekhar, tomi.valkeinen, jsarha, praneeth

Set Torrent PHY attributes bus_width, max_link_rate and mode
for DisplayPort.

Signed-off-by: Swapnil Jakhade <sjakhade@cadence.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 drivers/phy/cadence/phy-cadence-torrent.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/phy/cadence/phy-cadence-torrent.c b/drivers/phy/cadence/phy-cadence-torrent.c
index 7116127358ee..116aca36f7dd 100644
--- a/drivers/phy/cadence/phy-cadence-torrent.c
+++ b/drivers/phy/cadence/phy-cadence-torrent.c
@@ -1852,6 +1852,10 @@ static int cdns_torrent_phy_probe(struct platform_device *pdev)
 				 cdns_phy->phys[node].num_lanes,
 				 cdns_phy->max_bit_rate / 1000,
 				 cdns_phy->max_bit_rate % 1000);
+
+			gphy->attrs.bus_width = cdns_phy->phys[node].num_lanes;
+			gphy->attrs.max_link_rate = cdns_phy->max_bit_rate;
+			gphy->attrs.mode = PHY_MODE_DP;
 		} else {
 			dev_err(dev, "Driver supports only PHY_TYPE_DP\n");
 			ret = -ENOTSUPP;
-- 
2.26.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 1/2] phy: Add new PHY attribute max_link_rate
  2020-09-11  6:18 ` [PATCH v6 1/2] phy: " Swapnil Jakhade
@ 2020-09-15 23:00   ` Laurent Pinchart
  0 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2020-09-15 23:00 UTC (permalink / raw)
  To: Swapnil Jakhade
  Cc: vkoul, kishon, linux-kernel, maxime, mparab, yamonkar, nsekhar,
	tomi.valkeinen, jsarha, praneeth

Hi Swapnil,

Thank you for the patch.

On Fri, Sep 11, 2020 at 08:18:33AM +0200, Swapnil Jakhade wrote:
> Add new PHY attribute max_link_rate to struct phy_attrs. This indicates
> maximum link rate supported by PHY (in Mbps).
> 
> Signed-off-by: Yuti Amonkar <yamonkar@cadence.com>
> Signed-off-by: Swapnil Jakhade <sjakhade@cadence.com>
> Acked-by: Kishon Vijay Abraham I <kishon@ti.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  include/linux/phy/phy.h | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h
> index bcee8eba62b3..e435bdb0bab3 100644
> --- a/include/linux/phy/phy.h
> +++ b/include/linux/phy/phy.h
> @@ -115,10 +115,12 @@ struct phy_ops {
>  /**
>   * struct phy_attrs - represents phy attributes
>   * @bus_width: Data path width implemented by PHY
> + * @max_link_rate: Maximum link rate supported by PHY (in Mbps)
>   * @mode: PHY mode
>   */
>  struct phy_attrs {
>  	u32			bus_width;
> +	u32			max_link_rate;
>  	enum phy_mode		mode;
>  };
>  

-- 
Regards,

Laurent Pinchart

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 2/2] phy: cadence-torrent: Set Torrent PHY attributes
  2020-09-11  6:18 ` [PATCH v6 2/2] phy: cadence-torrent: Set Torrent PHY attributes Swapnil Jakhade
@ 2020-09-15 23:01   ` Laurent Pinchart
  0 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2020-09-15 23:01 UTC (permalink / raw)
  To: Swapnil Jakhade
  Cc: vkoul, kishon, linux-kernel, maxime, mparab, yamonkar, nsekhar,
	tomi.valkeinen, jsarha, praneeth

Hi Swapnil,

Thank you for the patch.

On Fri, Sep 11, 2020 at 08:18:34AM +0200, Swapnil Jakhade wrote:
> Set Torrent PHY attributes bus_width, max_link_rate and mode
> for DisplayPort.
> 
> Signed-off-by: Swapnil Jakhade <sjakhade@cadence.com>
> Acked-by: Kishon Vijay Abraham I <kishon@ti.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/phy/cadence/phy-cadence-torrent.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/phy/cadence/phy-cadence-torrent.c b/drivers/phy/cadence/phy-cadence-torrent.c
> index 7116127358ee..116aca36f7dd 100644
> --- a/drivers/phy/cadence/phy-cadence-torrent.c
> +++ b/drivers/phy/cadence/phy-cadence-torrent.c
> @@ -1852,6 +1852,10 @@ static int cdns_torrent_phy_probe(struct platform_device *pdev)
>  				 cdns_phy->phys[node].num_lanes,
>  				 cdns_phy->max_bit_rate / 1000,
>  				 cdns_phy->max_bit_rate % 1000);
> +
> +			gphy->attrs.bus_width = cdns_phy->phys[node].num_lanes;
> +			gphy->attrs.max_link_rate = cdns_phy->max_bit_rate;
> +			gphy->attrs.mode = PHY_MODE_DP;
>  		} else {
>  			dev_err(dev, "Driver supports only PHY_TYPE_DP\n");
>  			ret = -ENOTSUPP;

-- 
Regards,

Laurent Pinchart

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
  2020-09-11  6:18 [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Swapnil Jakhade
  2020-09-11  6:18 ` [PATCH v6 1/2] phy: " Swapnil Jakhade
  2020-09-11  6:18 ` [PATCH v6 2/2] phy: cadence-torrent: Set Torrent PHY attributes Swapnil Jakhade
@ 2020-09-16  7:41 ` Sekhar Nori
  2020-09-16 12:09   ` Vinod Koul
  2020-09-16 12:18   ` Laurent Pinchart
  2020-09-16 12:08 ` Vinod Koul
  3 siblings, 2 replies; 12+ messages in thread
From: Sekhar Nori @ 2020-09-16  7:41 UTC (permalink / raw)
  To: Swapnil Jakhade, vkoul, kishon, linux-kernel, maxime, Laurent.pinchart
  Cc: mparab, yamonkar, tomi.valkeinen, jsarha, praneeth

Hi Vinod,

On 11/09/20 11:48 AM, Swapnil Jakhade wrote:
> This patch series adds a new PHY attribute max_link_rate.
> It also updates Cadence Torrent PHY driver to set attributes bus_width,
> max_link_rate and mode for DisplayPort.
> 
> It includes following patches:
> 
> 1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
> This patch adds max_link_rate as a new PHY attribute.
> 
> 2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
> This patch sets PHY attributes in Cadence Torrent PHY driver. This will
> enable drivers using this PHY to read these properties.
> 
> These attributes will be used in the Cadence MHDP DRM bridge driver [1]
> which is in the process of upstreaming.

Can you please add these patches on an immutable branch/tag when you are
ready to apply them - will try to see if we can use it to get the
DisplayPort driver merged in v5.10 too.

Hi Laurent, any other ideas on managing the dependency?

Thanks,
Sekhar

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
  2020-09-11  6:18 [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Swapnil Jakhade
                   ` (2 preceding siblings ...)
  2020-09-16  7:41 ` [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Sekhar Nori
@ 2020-09-16 12:08 ` Vinod Koul
  3 siblings, 0 replies; 12+ messages in thread
From: Vinod Koul @ 2020-09-16 12:08 UTC (permalink / raw)
  To: Swapnil Jakhade
  Cc: kishon, linux-kernel, maxime, Laurent.pinchart, mparab, yamonkar,
	nsekhar, tomi.valkeinen, jsarha, praneeth

On 11-09-20, 08:18, Swapnil Jakhade wrote:
> This patch series adds a new PHY attribute max_link_rate.
> It also updates Cadence Torrent PHY driver to set attributes bus_width,
> max_link_rate and mode for DisplayPort.
> 
> It includes following patches:
> 
> 1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
> This patch adds max_link_rate as a new PHY attribute.
> 
> 2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
> This patch sets PHY attributes in Cadence Torrent PHY driver. This will
> enable drivers using this PHY to read these properties.
> 
> These attributes will be used in the Cadence MHDP DRM bridge driver [1]
> which is in the process of upstreaming.

Applied, thanks

-- 
~Vinod

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
  2020-09-16  7:41 ` [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Sekhar Nori
@ 2020-09-16 12:09   ` Vinod Koul
  2020-09-16 12:18   ` Laurent Pinchart
  1 sibling, 0 replies; 12+ messages in thread
From: Vinod Koul @ 2020-09-16 12:09 UTC (permalink / raw)
  To: Sekhar Nori
  Cc: Swapnil Jakhade, kishon, linux-kernel, maxime, Laurent.pinchart,
	mparab, yamonkar, tomi.valkeinen, jsarha, praneeth

Hi Sekhar,

On 16-09-20, 13:11, Sekhar Nori wrote:
> Hi Vinod,
> 
> On 11/09/20 11:48 AM, Swapnil Jakhade wrote:
> > This patch series adds a new PHY attribute max_link_rate.
> > It also updates Cadence Torrent PHY driver to set attributes bus_width,
> > max_link_rate and mode for DisplayPort.
> > 
> > It includes following patches:
> > 
> > 1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
> > This patch adds max_link_rate as a new PHY attribute.
> > 
> > 2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
> > This patch sets PHY attributes in Cadence Torrent PHY driver. This will
> > enable drivers using this PHY to read these properties.
> > 
> > These attributes will be used in the Cadence MHDP DRM bridge driver [1]
> > which is in the process of upstreaming.
> 
> Can you please add these patches on an immutable branch/tag when you are
> ready to apply them - will try to see if we can use it to get the
> DisplayPort driver merged in v5.10 too.

I have pushed in into topic/phy_attrs, please let me know if you need a
tag for this

> 
> Hi Laurent, any other ideas on managing the dependency?
> 
> Thanks,
> Sekhar

-- 
~Vinod

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
  2020-09-16  7:41 ` [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Sekhar Nori
  2020-09-16 12:09   ` Vinod Koul
@ 2020-09-16 12:18   ` Laurent Pinchart
  2020-09-16 12:43     ` Vinod Koul
  1 sibling, 1 reply; 12+ messages in thread
From: Laurent Pinchart @ 2020-09-16 12:18 UTC (permalink / raw)
  To: Sekhar Nori
  Cc: Swapnil Jakhade, vkoul, kishon, linux-kernel, maxime, mparab,
	yamonkar, tomi.valkeinen, jsarha, praneeth

Hi Sekhar,

On Wed, Sep 16, 2020 at 01:11:17PM +0530, Sekhar Nori wrote:
> On 11/09/20 11:48 AM, Swapnil Jakhade wrote:
> > This patch series adds a new PHY attribute max_link_rate.
> > It also updates Cadence Torrent PHY driver to set attributes bus_width,
> > max_link_rate and mode for DisplayPort.
> > 
> > It includes following patches:
> > 
> > 1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
> > This patch adds max_link_rate as a new PHY attribute.
> > 
> > 2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
> > This patch sets PHY attributes in Cadence Torrent PHY driver. This will
> > enable drivers using this PHY to read these properties.
> > 
> > These attributes will be used in the Cadence MHDP DRM bridge driver [1]
> > which is in the process of upstreaming.
> 
> Can you please add these patches on an immutable branch/tag when you are
> ready to apply them - will try to see if we can use it to get the
> DisplayPort driver merged in v5.10 too.
> 
> Hi Laurent, any other ideas on managing the dependency?

I think that will work fine.

-- 
Regards,

Laurent Pinchart

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
  2020-09-16 12:18   ` Laurent Pinchart
@ 2020-09-16 12:43     ` Vinod Koul
  2020-09-16 17:27       ` Sekhar Nori
  0 siblings, 1 reply; 12+ messages in thread
From: Vinod Koul @ 2020-09-16 12:43 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: Sekhar Nori, Swapnil Jakhade, kishon, linux-kernel, maxime,
	mparab, yamonkar, tomi.valkeinen, jsarha, praneeth

On 16-09-20, 15:18, Laurent Pinchart wrote:
> Hi Sekhar,
> 
> On Wed, Sep 16, 2020 at 01:11:17PM +0530, Sekhar Nori wrote:
> > On 11/09/20 11:48 AM, Swapnil Jakhade wrote:
> > > This patch series adds a new PHY attribute max_link_rate.
> > > It also updates Cadence Torrent PHY driver to set attributes bus_width,
> > > max_link_rate and mode for DisplayPort.
> > > 
> > > It includes following patches:
> > > 
> > > 1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
> > > This patch adds max_link_rate as a new PHY attribute.
> > > 
> > > 2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
> > > This patch sets PHY attributes in Cadence Torrent PHY driver. This will
> > > enable drivers using this PHY to read these properties.
> > > 
> > > These attributes will be used in the Cadence MHDP DRM bridge driver [1]
> > > which is in the process of upstreaming.
> > 
> > Can you please add these patches on an immutable branch/tag when you are
> > ready to apply them - will try to see if we can use it to get the
> > DisplayPort driver merged in v5.10 too.
> > 
> > Hi Laurent, any other ideas on managing the dependency?
> 
> I think that will work fine.

Please pull tag phy-attrs-5.10 for phy tree

Thanks
-- 
~Vinod

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
  2020-09-16 12:43     ` Vinod Koul
@ 2020-09-16 17:27       ` Sekhar Nori
  2020-09-16 17:34         ` Laurent Pinchart
  0 siblings, 1 reply; 12+ messages in thread
From: Sekhar Nori @ 2020-09-16 17:27 UTC (permalink / raw)
  To: Vinod Koul, Laurent Pinchart
  Cc: Swapnil Jakhade, kishon, linux-kernel, maxime, mparab, yamonkar,
	tomi.valkeinen, jsarha, praneeth

On 16/09/20 6:13 PM, Vinod Koul wrote:
> On 16-09-20, 15:18, Laurent Pinchart wrote:
>> Hi Sekhar,
>>
>> On Wed, Sep 16, 2020 at 01:11:17PM +0530, Sekhar Nori wrote:
>>> On 11/09/20 11:48 AM, Swapnil Jakhade wrote:
>>>> This patch series adds a new PHY attribute max_link_rate.
>>>> It also updates Cadence Torrent PHY driver to set attributes bus_width,
>>>> max_link_rate and mode for DisplayPort.
>>>>
>>>> It includes following patches:
>>>>
>>>> 1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
>>>> This patch adds max_link_rate as a new PHY attribute.
>>>>
>>>> 2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
>>>> This patch sets PHY attributes in Cadence Torrent PHY driver. This will
>>>> enable drivers using this PHY to read these properties.
>>>>
>>>> These attributes will be used in the Cadence MHDP DRM bridge driver [1]
>>>> which is in the process of upstreaming.
>>>
>>> Can you please add these patches on an immutable branch/tag when you are
>>> ready to apply them - will try to see if we can use it to get the
>>> DisplayPort driver merged in v5.10 too.
>>>
>>> Hi Laurent, any other ideas on managing the dependency?
>>
>> I think that will work fine.
> 
> Please pull tag phy-attrs-5.10 for phy tree

Thanks Vinod!

Swapnil, please be sure to let DRM maintainers know about the PHY tree
and the tag they can use when the DP patches are ready for merge.

Please keep Vinod in the loop too so he is aware of the tag being pulled.

Thanks,
Sekhar

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate
  2020-09-16 17:27       ` Sekhar Nori
@ 2020-09-16 17:34         ` Laurent Pinchart
  0 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2020-09-16 17:34 UTC (permalink / raw)
  To: Sekhar Nori
  Cc: Vinod Koul, Swapnil Jakhade, kishon, linux-kernel, maxime,
	mparab, yamonkar, tomi.valkeinen, jsarha, praneeth

On Wed, Sep 16, 2020 at 10:57:46PM +0530, Sekhar Nori wrote:
> On 16/09/20 6:13 PM, Vinod Koul wrote:
> > On 16-09-20, 15:18, Laurent Pinchart wrote:
> >> Hi Sekhar,
> >>
> >> On Wed, Sep 16, 2020 at 01:11:17PM +0530, Sekhar Nori wrote:
> >>> On 11/09/20 11:48 AM, Swapnil Jakhade wrote:
> >>>> This patch series adds a new PHY attribute max_link_rate.
> >>>> It also updates Cadence Torrent PHY driver to set attributes bus_width,
> >>>> max_link_rate and mode for DisplayPort.
> >>>>
> >>>> It includes following patches:
> >>>>
> >>>> 1. 0001-phy-Add-new-PHY-attribute-max_link_rate.patch
> >>>> This patch adds max_link_rate as a new PHY attribute.
> >>>>
> >>>> 2. 0002-phy-cadence-torrent-Set-Torrent-PHY-attributes.patch
> >>>> This patch sets PHY attributes in Cadence Torrent PHY driver. This will
> >>>> enable drivers using this PHY to read these properties.
> >>>>
> >>>> These attributes will be used in the Cadence MHDP DRM bridge driver [1]
> >>>> which is in the process of upstreaming.
> >>>
> >>> Can you please add these patches on an immutable branch/tag when you are
> >>> ready to apply them - will try to see if we can use it to get the
> >>> DisplayPort driver merged in v5.10 too.
> >>>
> >>> Hi Laurent, any other ideas on managing the dependency?
> >>
> >> I think that will work fine.
> > 
> > Please pull tag phy-attrs-5.10 for phy tree
> 
> Thanks Vinod!
> 
> Swapnil, please be sure to let DRM maintainers know about the PHY tree
> and the tag they can use when the DP patches are ready for merge.

This should be mentioned in the pull request, but as the branch
submitted for DRM/KMS has to be based on 

The simplest (and maybe only) option is to base the branch for the
DRM/KMS subsystem on Vinod's branch. It's however good to mention this
explicitly in the pull request, stating that the base branch is
scheduled for merge in v5.10 through the PHY tree.

> Please keep Vinod in the loop too so he is aware of the tag being pulled.

-- 
Regards,

Laurent Pinchart

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-09-16 20:02 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-11  6:18 [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Swapnil Jakhade
2020-09-11  6:18 ` [PATCH v6 1/2] phy: " Swapnil Jakhade
2020-09-15 23:00   ` Laurent Pinchart
2020-09-11  6:18 ` [PATCH v6 2/2] phy: cadence-torrent: Set Torrent PHY attributes Swapnil Jakhade
2020-09-15 23:01   ` Laurent Pinchart
2020-09-16  7:41 ` [PATCH v6 0/2] PHY: Add new PHY attribute max_link_rate Sekhar Nori
2020-09-16 12:09   ` Vinod Koul
2020-09-16 12:18   ` Laurent Pinchart
2020-09-16 12:43     ` Vinod Koul
2020-09-16 17:27       ` Sekhar Nori
2020-09-16 17:34         ` Laurent Pinchart
2020-09-16 12:08 ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).