|
@@ -668,6 +668,15 @@ void tegra_mmc_init(void)
|
|
|
const void *blob = gd->fdt_blob;
|
|
|
debug("%s entry\n", __func__);
|
|
|
|
|
|
+ /* See if any Tegra124 MMC controllers are present */
|
|
|
+ count = fdtdec_find_aliases_for_id(blob, "sdhci",
|
|
|
+ COMPAT_NVIDIA_TEGRA124_SDMMC, node_list, MAX_HOSTS);
|
|
|
+ debug("%s: count of Tegra124 sdhci nodes is %d\n", __func__, count);
|
|
|
+ if (process_nodes(blob, node_list, count)) {
|
|
|
+ printf("%s: Error processing T30 mmc node(s)!\n", __func__);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
/* See if any Tegra30 MMC controllers are present */
|
|
|
count = fdtdec_find_aliases_for_id(blob, "sdhci",
|
|
|
COMPAT_NVIDIA_TEGRA30_SDMMC, node_list, MAX_HOSTS);
|