From patchwork Thu Jan 16 15:25:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Szyprowski X-Patchwork-Id: 239672 List-Id: U-Boot discussion From: m.szyprowski at samsung.com (Marek Szyprowski) Date: Thu, 16 Jan 2020 16:25:33 +0100 Subject: [PATCH 1/3] mmc: s5p_sdhci: Read generic MMC properties from DT In-Reply-To: <20200116152535.2170-1-m.szyprowski@samsung.com> References: <20200116152535.2170-1-m.szyprowski@samsung.com> Message-ID: <20200116152535.2170-2-m.szyprowski@samsung.com> Read generic MMC properties from device-tree. This allows to specify for example cd-inverted property and let MMC core to properly handle such case. Signed-off-by: Marek Szyprowski Reviewed-by: Anand Moon --- drivers/mmc/s5p_sdhci.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/mmc/s5p_sdhci.c b/drivers/mmc/s5p_sdhci.c index 53efa968cf..b5fe828dd6 100644 --- a/drivers/mmc/s5p_sdhci.c +++ b/drivers/mmc/s5p_sdhci.c @@ -204,8 +204,13 @@ static int s5p_sdhci_probe(struct udevice *dev) if (ret) return ret; + ret = mmc_of_parse(dev, &plat->cfg); + if (ret) + return ret; + host->mmc = &plat->mmc; host->mmc->dev = dev; + ret = sdhci_setup_cfg(&plat->cfg, host, 0, 400000); if (ret) return ret;