diff mbox series

[14/18] mmc: am654_sdhci: Add support for J7200 devices

Message ID 20200723084718.19430-15-lokeshvutla@ti.com
State Superseded
Delegated to: Lokesh Vutla
Headers show
Series arm: mach-k3: Initial support for Texas Instrument's J7200 Platform | expand

Commit Message

Lokesh Vutla July 23, 2020, 8:47 a.m. UTC
From: Faiz Abbas <faiz_abbas@ti.com>

Add support for SDHCI controllers present on the J7200 device

Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
---
 drivers/mmc/am654_sdhci.c | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Faiz Abbas July 23, 2020, 9:45 a.m. UTC | #1
Hi Lokesh,

On 23/07/20 2:17 pm, Lokesh Vutla wrote:
> From: Faiz Abbas <faiz_abbas@ti.com>
> 
> Add support for SDHCI controllers present on the J7200 device
> 
> Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
> ---

This patch is not required. Lets have both j721e and j7200
compatibles in the dt and use only j721e in the driver for now.

Thanks,
Faiz
diff mbox series

Patch

diff --git a/drivers/mmc/am654_sdhci.c b/drivers/mmc/am654_sdhci.c
index cbc531dc53..9a86eaea4f 100644
--- a/drivers/mmc/am654_sdhci.c
+++ b/drivers/mmc/am654_sdhci.c
@@ -483,6 +483,14 @@  static const struct udevice_id am654_sdhci_ids[] = {
 		.compatible = "ti,j721e-sdhci-4bit",
 		.data = (ulong)&j721e_4bit_drv_data,
 	},
+	{
+		.compatible = "ti,j7200-sdhci-8bit",
+		.data = (ulong)&j721e_8bit_drv_data,
+	},
+	{
+		.compatible = "ti,j7200-sdhci-4bit",
+		.data = (ulong)&j721e_4bit_drv_data,
+	},
 	{ }
 };