All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine
@ 2023-02-10 15:34 Sanjay R Mehta
  2023-02-10 17:13 ` Limonciello, Mario
  2023-02-10 17:16 ` Mika Westerberg
  0 siblings, 2 replies; 5+ messages in thread
From: Sanjay R Mehta @ 2023-02-10 15:34 UTC (permalink / raw)
  To: mika.westerberg, andreas.noever, michael.jamet, YehezkelShB
  Cc: Basavaraj.Natikar, linux-usb, Sanjay R Mehta

From: Sanjay R Mehta <sanju.mehta@amd.com>

AMD Yellow Carp and Pink Sardine don't support CLx state,
hence disabling it.

Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com>
Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
---
 drivers/thunderbolt/nhi.h    |  6 ++++++
 drivers/thunderbolt/quirks.c |  6 ++++++
 drivers/thunderbolt/tb.h     | 35 ++++++++++++++++++++++++++++++++---
 3 files changed, 44 insertions(+), 3 deletions(-)

diff --git a/drivers/thunderbolt/nhi.h b/drivers/thunderbolt/nhi.h
index b071802..3d8cfaf 100644
--- a/drivers/thunderbolt/nhi.h
+++ b/drivers/thunderbolt/nhi.h
@@ -87,6 +87,12 @@ extern const struct tb_nhi_ops icl_nhi_ops;
 #define PCI_DEVICE_ID_INTEL_RPL_NHI0			0xa73e
 #define PCI_DEVICE_ID_INTEL_RPL_NHI1			0xa76d
 
+/* PCI IDs for AMD USB4 controllers */
+#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0		0x162e
+#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1		0x162f
+#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0		0x1668
+#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1		0x1669
+
 #define PCI_CLASS_SERIAL_USB_USB4			0x0c0340
 
 #endif
diff --git a/drivers/thunderbolt/quirks.c b/drivers/thunderbolt/quirks.c
index b5f2ec7..f38db02 100644
--- a/drivers/thunderbolt/quirks.c
+++ b/drivers/thunderbolt/quirks.c
@@ -63,4 +63,10 @@ void tb_check_quirks(struct tb_switch *sw)
 
 		q->hook(sw);
 	}
+
+	/*
+	 * CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine platforms.
+	 */
+	if (tb_switch_is_yellow_carp(sw->tb->nhi) || tb_switch_is_pink_sardine(sw->tb->nhi))
+		sw->quirks |= QUIRK_NO_CLX;
 }
diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
index f978697..d7988ad 100644
--- a/drivers/thunderbolt/tb.h
+++ b/drivers/thunderbolt/tb.h
@@ -23,6 +23,11 @@
 #define NVM_MAX_SIZE		SZ_512K
 #define NVM_DATA_DWORDS		16
 
+/* Keep link controller awake during update */
+#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
+/* Disable CLx if not supported */
+#define QUIRK_NO_CLX					BIT(1)
+
 /**
  * struct tb_nvm - Structure holding NVM information
  * @dev: Owner of the NVM
@@ -905,6 +910,30 @@ static inline bool tb_switch_is_tiger_lake(const struct tb_switch *sw)
 	return false;
 }
 
+static inline bool tb_switch_is_yellow_carp(const struct tb_nhi *nhi)
+{
+	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
+		switch (nhi->pdev->device) {
+		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0:
+		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1:
+			return true;
+		}
+	}
+	return false;
+}
+
+static inline bool tb_switch_is_pink_sardine(const struct tb_nhi *nhi)
+{
+	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
+		switch (nhi->pdev->device) {
+		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0:
+		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1:
+			return true;
+		}
+	}
+	return false;
+}
+
 /**
  * tb_switch_is_usb4() - Is the switch USB4 compliant
  * @sw: Switch to check
@@ -997,6 +1026,9 @@ static inline bool tb_switch_is_clx_enabled(const struct tb_switch *sw,
  */
 static inline bool tb_switch_is_clx_supported(const struct tb_switch *sw)
 {
+	if (sw->quirks & QUIRK_NO_CLX)
+		return false;
+
 	return tb_switch_is_usb4(sw) || tb_switch_is_titan_ridge(sw);
 }
 
@@ -1254,9 +1286,6 @@ struct usb4_port *usb4_port_device_add(struct tb_port *port);
 void usb4_port_device_remove(struct usb4_port *usb4);
 int usb4_port_device_resume(struct usb4_port *usb4);
 
-/* Keep link controller awake during update */
-#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
-
 void tb_check_quirks(struct tb_switch *sw);
 
 #ifdef CONFIG_ACPI
-- 
2.7.4


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

* Re: [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine
  2023-02-10 15:34 [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine Sanjay R Mehta
@ 2023-02-10 17:13 ` Limonciello, Mario
  2023-02-10 18:57   ` Sanjay R Mehta
  2023-02-10 17:16 ` Mika Westerberg
  1 sibling, 1 reply; 5+ messages in thread
From: Limonciello, Mario @ 2023-02-10 17:13 UTC (permalink / raw)
  To: Sanjay R Mehta, mika.westerberg, andreas.noever, michael.jamet,
	YehezkelShB
  Cc: Basavaraj.Natikar, linux-usb

On 2/10/2023 09:34, Sanjay R Mehta wrote:
> From: Sanjay R Mehta <sanju.mehta@amd.com>
> 
> AMD Yellow Carp and Pink Sardine don't support CLx state,
> hence disabling it.
> 
> Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com>
> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
> ---
>   drivers/thunderbolt/nhi.h    |  6 ++++++
>   drivers/thunderbolt/quirks.c |  6 ++++++
>   drivers/thunderbolt/tb.h     | 35 ++++++++++++++++++++++++++++++++---
>   3 files changed, 44 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/thunderbolt/nhi.h b/drivers/thunderbolt/nhi.h
> index b071802..3d8cfaf 100644
> --- a/drivers/thunderbolt/nhi.h
> +++ b/drivers/thunderbolt/nhi.h
> @@ -87,6 +87,12 @@ extern const struct tb_nhi_ops icl_nhi_ops;
>   #define PCI_DEVICE_ID_INTEL_RPL_NHI0			0xa73e
>   #define PCI_DEVICE_ID_INTEL_RPL_NHI1			0xa76d
>   
> +/* PCI IDs for AMD USB4 controllers */
> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0		0x162e
> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1		0x162f
> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0		0x1668
> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1		0x1669
> +
>   #define PCI_CLASS_SERIAL_USB_USB4			0x0c0340
>   
>   #endif
> diff --git a/drivers/thunderbolt/quirks.c b/drivers/thunderbolt/quirks.c
> index b5f2ec7..f38db02 100644
> --- a/drivers/thunderbolt/quirks.c
> +++ b/drivers/thunderbolt/quirks.c
> @@ -63,4 +63,10 @@ void tb_check_quirks(struct tb_switch *sw)
>   
>   		q->hook(sw);
>   	}
> +
> +	/*
> +	 * CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine platforms.
> +	 */
> +	if (tb_switch_is_yellow_carp(sw->tb->nhi) || tb_switch_is_pink_sardine(sw->tb->nhi))
> +		sw->quirks |= QUIRK_NO_CLX;

Any particular reason not to use the 'q->hook' approach like the rest of 
the quirks do?

>   }
> diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
> index f978697..d7988ad 100644
> --- a/drivers/thunderbolt/tb.h
> +++ b/drivers/thunderbolt/tb.h
> @@ -23,6 +23,11 @@
>   #define NVM_MAX_SIZE		SZ_512K
>   #define NVM_DATA_DWORDS		16
>   
> +/* Keep link controller awake during update */
> +#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
> +/* Disable CLx if not supported */
> +#define QUIRK_NO_CLX					BIT(1)
> +
>   /**
>    * struct tb_nvm - Structure holding NVM information
>    * @dev: Owner of the NVM
> @@ -905,6 +910,30 @@ static inline bool tb_switch_is_tiger_lake(const struct tb_switch *sw)
>   	return false;
>   }
>   
> +static inline bool tb_switch_is_yellow_carp(const struct tb_nhi *nhi)
> +{
> +	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
> +		switch (nhi->pdev->device) {
> +		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0:
> +		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1:
> +			return true;
> +		}
> +	}
> +	return false;
> +}
> +
> +static inline bool tb_switch_is_pink_sardine(const struct tb_nhi *nhi)
> +{
> +	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
> +		switch (nhi->pdev->device) {
> +		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0:
> +		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1:
> +			return true;
> +		}
> +	}
> +	return false;
> +}
> +
>   /**
>    * tb_switch_is_usb4() - Is the switch USB4 compliant
>    * @sw: Switch to check
> @@ -997,6 +1026,9 @@ static inline bool tb_switch_is_clx_enabled(const struct tb_switch *sw,
>    */
>   static inline bool tb_switch_is_clx_supported(const struct tb_switch *sw)
>   {
> +	if (sw->quirks & QUIRK_NO_CLX)
> +		return false;
> +
>   	return tb_switch_is_usb4(sw) || tb_switch_is_titan_ridge(sw);
>   }
>   
> @@ -1254,9 +1286,6 @@ struct usb4_port *usb4_port_device_add(struct tb_port *port);
>   void usb4_port_device_remove(struct usb4_port *usb4);
>   int usb4_port_device_resume(struct usb4_port *usb4);
>   
> -/* Keep link controller awake during update */
> -#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
> -
>   void tb_check_quirks(struct tb_switch *sw);
>   
>   #ifdef CONFIG_ACPI
> 


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

* Re: [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine
  2023-02-10 15:34 [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine Sanjay R Mehta
  2023-02-10 17:13 ` Limonciello, Mario
@ 2023-02-10 17:16 ` Mika Westerberg
  2023-02-10 18:58   ` Sanjay R Mehta
  1 sibling, 1 reply; 5+ messages in thread
From: Mika Westerberg @ 2023-02-10 17:16 UTC (permalink / raw)
  To: Sanjay R Mehta
  Cc: andreas.noever, michael.jamet, YehezkelShB, Basavaraj.Natikar, linux-usb

On Fri, Feb 10, 2023 at 09:34:47AM -0600, Sanjay R Mehta wrote:
> From: Sanjay R Mehta <sanju.mehta@amd.com>
> 
> AMD Yellow Carp and Pink Sardine don't support CLx state,
> hence disabling it.
> 
> Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com>
> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
> ---
>  drivers/thunderbolt/nhi.h    |  6 ++++++
>  drivers/thunderbolt/quirks.c |  6 ++++++
>  drivers/thunderbolt/tb.h     | 35 ++++++++++++++++++++++++++++++++---
>  3 files changed, 44 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/thunderbolt/nhi.h b/drivers/thunderbolt/nhi.h
> index b071802..3d8cfaf 100644
> --- a/drivers/thunderbolt/nhi.h
> +++ b/drivers/thunderbolt/nhi.h
> @@ -87,6 +87,12 @@ extern const struct tb_nhi_ops icl_nhi_ops;
>  #define PCI_DEVICE_ID_INTEL_RPL_NHI0			0xa73e
>  #define PCI_DEVICE_ID_INTEL_RPL_NHI1			0xa76d
>  
> +/* PCI IDs for AMD USB4 controllers */
> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0		0x162e
> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1		0x162f
> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0		0x1668
> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1		0x1669
> +
>  #define PCI_CLASS_SERIAL_USB_USB4			0x0c0340
>  
>  #endif
> diff --git a/drivers/thunderbolt/quirks.c b/drivers/thunderbolt/quirks.c
> index b5f2ec7..f38db02 100644
> --- a/drivers/thunderbolt/quirks.c
> +++ b/drivers/thunderbolt/quirks.c
> @@ -63,4 +63,10 @@ void tb_check_quirks(struct tb_switch *sw)
>  
>  		q->hook(sw);
>  	}
> +
> +	/*
> +	 * CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine platforms.
> +	 */
> +	if (tb_switch_is_yellow_carp(sw->tb->nhi) || tb_switch_is_pink_sardine(sw->tb->nhi))

Instead of these, please add them to the tb_quirks[] array.

> +		sw->quirks |= QUIRK_NO_CLX;
>  }
> diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
> index f978697..d7988ad 100644
> --- a/drivers/thunderbolt/tb.h
> +++ b/drivers/thunderbolt/tb.h
> @@ -23,6 +23,11 @@
>  #define NVM_MAX_SIZE		SZ_512K
>  #define NVM_DATA_DWORDS		16
>  
> +/* Keep link controller awake during update */
> +#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
> +/* Disable CLx if not supported */
> +#define QUIRK_NO_CLX					BIT(1)
> +
>  /**
>   * struct tb_nvm - Structure holding NVM information
>   * @dev: Owner of the NVM
> @@ -905,6 +910,30 @@ static inline bool tb_switch_is_tiger_lake(const struct tb_switch *sw)
>  	return false;
>  }
>  
> +static inline bool tb_switch_is_yellow_carp(const struct tb_nhi *nhi)
> +{
> +	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
> +		switch (nhi->pdev->device) {
> +		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0:
> +		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1:
> +			return true;
> +		}
> +	}
> +	return false;
> +}
> +
> +static inline bool tb_switch_is_pink_sardine(const struct tb_nhi *nhi)
> +{
> +	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
> +		switch (nhi->pdev->device) {
> +		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0:
> +		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1:
> +			return true;
> +		}
> +	}
> +	return false;
> +}
> +
>  /**
>   * tb_switch_is_usb4() - Is the switch USB4 compliant
>   * @sw: Switch to check
> @@ -997,6 +1026,9 @@ static inline bool tb_switch_is_clx_enabled(const struct tb_switch *sw,
>   */
>  static inline bool tb_switch_is_clx_supported(const struct tb_switch *sw)
>  {
> +	if (sw->quirks & QUIRK_NO_CLX)
> +		return false;
> +
>  	return tb_switch_is_usb4(sw) || tb_switch_is_titan_ridge(sw);
>  }
>  
> @@ -1254,9 +1286,6 @@ struct usb4_port *usb4_port_device_add(struct tb_port *port);
>  void usb4_port_device_remove(struct usb4_port *usb4);
>  int usb4_port_device_resume(struct usb4_port *usb4);
>  
> -/* Keep link controller awake during update */
> -#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
> -
>  void tb_check_quirks(struct tb_switch *sw);
>  
>  #ifdef CONFIG_ACPI
> -- 
> 2.7.4

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

* Re: [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine
  2023-02-10 17:13 ` Limonciello, Mario
@ 2023-02-10 18:57   ` Sanjay R Mehta
  0 siblings, 0 replies; 5+ messages in thread
From: Sanjay R Mehta @ 2023-02-10 18:57 UTC (permalink / raw)
  To: Limonciello, Mario, Sanjay R Mehta, mika.westerberg,
	andreas.noever, michael.jamet, YehezkelShB
  Cc: Basavaraj.Natikar, linux-usb



On 2/10/2023 10:43 PM, Limonciello, Mario wrote:
> On 2/10/2023 09:34, Sanjay R Mehta wrote:
>> From: Sanjay R Mehta <sanju.mehta@amd.com>
>>
>> AMD Yellow Carp and Pink Sardine don't support CLx state,
>> hence disabling it.
>>
>> Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com>
>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>> ---
>>   drivers/thunderbolt/nhi.h    |  6 ++++++
>>   drivers/thunderbolt/quirks.c |  6 ++++++
>>   drivers/thunderbolt/tb.h     | 35 ++++++++++++++++++++++++++++++++---
>>   3 files changed, 44 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/thunderbolt/nhi.h b/drivers/thunderbolt/nhi.h
>> index b071802..3d8cfaf 100644
>> --- a/drivers/thunderbolt/nhi.h
>> +++ b/drivers/thunderbolt/nhi.h
>> @@ -87,6 +87,12 @@ extern const struct tb_nhi_ops icl_nhi_ops;
>>   #define PCI_DEVICE_ID_INTEL_RPL_NHI0            0xa73e
>>   #define PCI_DEVICE_ID_INTEL_RPL_NHI1            0xa76d
>>   +/* PCI IDs for AMD USB4 controllers */
>> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0        0x162e
>> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1        0x162f
>> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0        0x1668
>> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1        0x1669
>> +
>>   #define PCI_CLASS_SERIAL_USB_USB4            0x0c0340
>>     #endif
>> diff --git a/drivers/thunderbolt/quirks.c b/drivers/thunderbolt/quirks.c
>> index b5f2ec7..f38db02 100644
>> --- a/drivers/thunderbolt/quirks.c
>> +++ b/drivers/thunderbolt/quirks.c
>> @@ -63,4 +63,10 @@ void tb_check_quirks(struct tb_switch *sw)
>>             q->hook(sw);
>>       }
>> +
>> +    /*
>> +     * CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine
>> platforms.
>> +     */
>> +    if (tb_switch_is_yellow_carp(sw->tb->nhi) ||
>> tb_switch_is_pink_sardine(sw->tb->nhi))
>> +        sw->quirks |= QUIRK_NO_CLX;
> 
> Any particular reason not to use the 'q->hook' approach like the rest of
> the quirks do?
> 
Sure will make this change.
>>   }
>> diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
>> index f978697..d7988ad 100644
>> --- a/drivers/thunderbolt/tb.h
>> +++ b/drivers/thunderbolt/tb.h
>> @@ -23,6 +23,11 @@
>>   #define NVM_MAX_SIZE        SZ_512K
>>   #define NVM_DATA_DWORDS        16
>>   +/* Keep link controller awake during update */
>> +#define QUIRK_FORCE_POWER_LINK_CONTROLLER        BIT(0)
>> +/* Disable CLx if not supported */
>> +#define QUIRK_NO_CLX                    BIT(1)
>> +
>>   /**
>>    * struct tb_nvm - Structure holding NVM information
>>    * @dev: Owner of the NVM
>> @@ -905,6 +910,30 @@ static inline bool tb_switch_is_tiger_lake(const
>> struct tb_switch *sw)
>>       return false;
>>   }
>>   +static inline bool tb_switch_is_yellow_carp(const struct tb_nhi *nhi)
>> +{
>> +    if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
>> +        switch (nhi->pdev->device) {
>> +        case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0:
>> +        case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1:
>> +            return true;
>> +        }
>> +    }
>> +    return false;
>> +}
>> +
>> +static inline bool tb_switch_is_pink_sardine(const struct tb_nhi *nhi)
>> +{
>> +    if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
>> +        switch (nhi->pdev->device) {
>> +        case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0:
>> +        case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1:
>> +            return true;
>> +        }
>> +    }
>> +    return false;
>> +}
>> +
>>   /**
>>    * tb_switch_is_usb4() - Is the switch USB4 compliant
>>    * @sw: Switch to check
>> @@ -997,6 +1026,9 @@ static inline bool tb_switch_is_clx_enabled(const
>> struct tb_switch *sw,
>>    */
>>   static inline bool tb_switch_is_clx_supported(const struct tb_switch
>> *sw)
>>   {
>> +    if (sw->quirks & QUIRK_NO_CLX)
>> +        return false;
>> +
>>       return tb_switch_is_usb4(sw) || tb_switch_is_titan_ridge(sw);
>>   }
>>   @@ -1254,9 +1286,6 @@ struct usb4_port *usb4_port_device_add(struct
>> tb_port *port);
>>   void usb4_port_device_remove(struct usb4_port *usb4);
>>   int usb4_port_device_resume(struct usb4_port *usb4);
>>   -/* Keep link controller awake during update */
>> -#define QUIRK_FORCE_POWER_LINK_CONTROLLER        BIT(0)
>> -
>>   void tb_check_quirks(struct tb_switch *sw);
>>     #ifdef CONFIG_ACPI
>>
> 

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

* Re: [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine
  2023-02-10 17:16 ` Mika Westerberg
@ 2023-02-10 18:58   ` Sanjay R Mehta
  0 siblings, 0 replies; 5+ messages in thread
From: Sanjay R Mehta @ 2023-02-10 18:58 UTC (permalink / raw)
  To: Mika Westerberg, Sanjay R Mehta
  Cc: andreas.noever, michael.jamet, YehezkelShB, Basavaraj.Natikar, linux-usb



On 2/10/2023 10:46 PM, Mika Westerberg wrote:
> On Fri, Feb 10, 2023 at 09:34:47AM -0600, Sanjay R Mehta wrote:
>> From: Sanjay R Mehta <sanju.mehta@amd.com>
>>
>> AMD Yellow Carp and Pink Sardine don't support CLx state,
>> hence disabling it.
>>
>> Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com>
>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>> ---
>>  drivers/thunderbolt/nhi.h    |  6 ++++++
>>  drivers/thunderbolt/quirks.c |  6 ++++++
>>  drivers/thunderbolt/tb.h     | 35 ++++++++++++++++++++++++++++++++---
>>  3 files changed, 44 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/thunderbolt/nhi.h b/drivers/thunderbolt/nhi.h
>> index b071802..3d8cfaf 100644
>> --- a/drivers/thunderbolt/nhi.h
>> +++ b/drivers/thunderbolt/nhi.h
>> @@ -87,6 +87,12 @@ extern const struct tb_nhi_ops icl_nhi_ops;
>>  #define PCI_DEVICE_ID_INTEL_RPL_NHI0			0xa73e
>>  #define PCI_DEVICE_ID_INTEL_RPL_NHI1			0xa76d
>>  
>> +/* PCI IDs for AMD USB4 controllers */
>> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0		0x162e
>> +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1		0x162f
>> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0		0x1668
>> +#define PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1		0x1669
>> +
>>  #define PCI_CLASS_SERIAL_USB_USB4			0x0c0340
>>  
>>  #endif
>> diff --git a/drivers/thunderbolt/quirks.c b/drivers/thunderbolt/quirks.c
>> index b5f2ec7..f38db02 100644
>> --- a/drivers/thunderbolt/quirks.c
>> +++ b/drivers/thunderbolt/quirks.c
>> @@ -63,4 +63,10 @@ void tb_check_quirks(struct tb_switch *sw)
>>  
>>  		q->hook(sw);
>>  	}
>> +
>> +	/*
>> +	 * CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine platforms.
>> +	 */
>> +	if (tb_switch_is_yellow_carp(sw->tb->nhi) || tb_switch_is_pink_sardine(sw->tb->nhi))
> 
> Instead of these, please add them to the tb_quirks[] array.
> 

Sure will make this change.

>> +		sw->quirks |= QUIRK_NO_CLX;
>>  }
>> diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
>> index f978697..d7988ad 100644
>> --- a/drivers/thunderbolt/tb.h
>> +++ b/drivers/thunderbolt/tb.h
>> @@ -23,6 +23,11 @@
>>  #define NVM_MAX_SIZE		SZ_512K
>>  #define NVM_DATA_DWORDS		16
>>  
>> +/* Keep link controller awake during update */
>> +#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
>> +/* Disable CLx if not supported */
>> +#define QUIRK_NO_CLX					BIT(1)
>> +
>>  /**
>>   * struct tb_nvm - Structure holding NVM information
>>   * @dev: Owner of the NVM
>> @@ -905,6 +910,30 @@ static inline bool tb_switch_is_tiger_lake(const struct tb_switch *sw)
>>  	return false;
>>  }
>>  
>> +static inline bool tb_switch_is_yellow_carp(const struct tb_nhi *nhi)
>> +{
>> +	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
>> +		switch (nhi->pdev->device) {
>> +		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI0:
>> +		case PCI_DEVICE_ID_AMD_YELLOW_CARP_NHI1:
>> +			return true;
>> +		}
>> +	}
>> +	return false;
>> +}
>> +
>> +static inline bool tb_switch_is_pink_sardine(const struct tb_nhi *nhi)
>> +{
>> +	if (nhi->pdev->vendor == PCI_VENDOR_ID_AMD) {
>> +		switch (nhi->pdev->device) {
>> +		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI0:
>> +		case PCI_DEVICE_ID_AMD_PINK_SARDINE_NHI1:
>> +			return true;
>> +		}
>> +	}
>> +	return false;
>> +}
>> +
>>  /**
>>   * tb_switch_is_usb4() - Is the switch USB4 compliant
>>   * @sw: Switch to check
>> @@ -997,6 +1026,9 @@ static inline bool tb_switch_is_clx_enabled(const struct tb_switch *sw,
>>   */
>>  static inline bool tb_switch_is_clx_supported(const struct tb_switch *sw)
>>  {
>> +	if (sw->quirks & QUIRK_NO_CLX)
>> +		return false;
>> +
>>  	return tb_switch_is_usb4(sw) || tb_switch_is_titan_ridge(sw);
>>  }
>>  
>> @@ -1254,9 +1286,6 @@ struct usb4_port *usb4_port_device_add(struct tb_port *port);
>>  void usb4_port_device_remove(struct usb4_port *usb4);
>>  int usb4_port_device_resume(struct usb4_port *usb4);
>>  
>> -/* Keep link controller awake during update */
>> -#define QUIRK_FORCE_POWER_LINK_CONTROLLER		BIT(0)
>> -
>>  void tb_check_quirks(struct tb_switch *sw);
>>  
>>  #ifdef CONFIG_ACPI
>> -- 
>> 2.7.4

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

end of thread, other threads:[~2023-02-10 18:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-10 15:34 [PATCH v2] thunderbolt: Disable CLx state for AMD Yellow Carp and Pink Sardine Sanjay R Mehta
2023-02-10 17:13 ` Limonciello, Mario
2023-02-10 18:57   ` Sanjay R Mehta
2023-02-10 17:16 ` Mika Westerberg
2023-02-10 18:58   ` Sanjay R Mehta

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.