Re: [PATCH v2 01/12] drivers: mmc: am654_sdhci: Add new compatible for AM62 SoC

2022-06-10 Thread Tom Rini
On Wed, May 25, 2022 at 01:38:39PM +0530, Vignesh Raghavendra wrote:

> From: Aswath Govindraju 
> 
> The phy used in the 8 bit instance has been changed to the phy used in 4
> bit instance on AM62 SoC. This implies the phy configuration required for
> both the instances of mmc are similar. Therefore, add a new compatible
> for AM62 SoC using the driver data of am64 4 bit instance.
> 
> Signed-off-by: Aswath Govindraju 
> Signed-off-by: Vignesh Raghavendra 
> Reviewed-by: Jaehoon Chung 

For the series, applied to u-boot/next, thanks!

-- 
Tom


signature.asc
Description: PGP signature


Re: [PATCH v2 01/12] drivers: mmc: am654_sdhci: Add new compatible for AM62 SoC

2022-05-25 Thread Jaehoon Chung
On 5/25/22 17:08, Vignesh Raghavendra wrote:
> From: Aswath Govindraju 
> 
> The phy used in the 8 bit instance has been changed to the phy used in 4
> bit instance on AM62 SoC. This implies the phy configuration required for
> both the instances of mmc are similar. Therefore, add a new compatible
> for AM62 SoC using the driver data of am64 4 bit instance.
> 
> Signed-off-by: Aswath Govindraju 
> Signed-off-by: Vignesh Raghavendra 

Reviewed-by: Jaehoon Chung 

Best Regards,
Jaehoon Chung

> ---
>  drivers/mmc/am654_sdhci.c | 4 
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/mmc/am654_sdhci.c b/drivers/mmc/am654_sdhci.c
> index 4305967d78..42a6134364 100644
> --- a/drivers/mmc/am654_sdhci.c
> +++ b/drivers/mmc/am654_sdhci.c
> @@ -670,6 +670,10 @@ static const struct udevice_id am654_sdhci_ids[] = {
>   .compatible = "ti,am64-sdhci-4bit",
>   .data = (ulong)&sdhci_am64_4bit_drvdata,
>   },
> + {
> + .compatible = "ti,am62-sdhci",
> + .data = (ulong)&sdhci_am64_4bit_drvdata,
> + },
>   { }
>  };
>  



[PATCH v2 01/12] drivers: mmc: am654_sdhci: Add new compatible for AM62 SoC

2022-05-25 Thread Vignesh Raghavendra
From: Aswath Govindraju 

The phy used in the 8 bit instance has been changed to the phy used in 4
bit instance on AM62 SoC. This implies the phy configuration required for
both the instances of mmc are similar. Therefore, add a new compatible
for AM62 SoC using the driver data of am64 4 bit instance.

Signed-off-by: Aswath Govindraju 
Signed-off-by: Vignesh Raghavendra 
---
 drivers/mmc/am654_sdhci.c | 4 
 1 file changed, 4 insertions(+)

diff --git a/drivers/mmc/am654_sdhci.c b/drivers/mmc/am654_sdhci.c
index 4305967d78..42a6134364 100644
--- a/drivers/mmc/am654_sdhci.c
+++ b/drivers/mmc/am654_sdhci.c
@@ -670,6 +670,10 @@ static const struct udevice_id am654_sdhci_ids[] = {
.compatible = "ti,am64-sdhci-4bit",
.data = (ulong)&sdhci_am64_4bit_drvdata,
},
+   {
+   .compatible = "ti,am62-sdhci",
+   .data = (ulong)&sdhci_am64_4bit_drvdata,
+   },
{ }
 };
 
-- 
2.36.1