mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
drivers: mmc: am654_sdhci: Add new compatible for AM62 SoC
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 <a-govindraju@ti.com> Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
parent
866eab1d28
commit
ed6d781469
1 changed files with 4 additions and 0 deletions
|
@ -670,6 +670,10 @@ static const struct udevice_id am654_sdhci_ids[] = {
|
||||||
.compatible = "ti,am64-sdhci-4bit",
|
.compatible = "ti,am64-sdhci-4bit",
|
||||||
.data = (ulong)&sdhci_am64_4bit_drvdata,
|
.data = (ulong)&sdhci_am64_4bit_drvdata,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.compatible = "ti,am62-sdhci",
|
||||||
|
.data = (ulong)&sdhci_am64_4bit_drvdata,
|
||||||
|
},
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue