public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/7] mmc: uniphier-sd: Use mmc_of_parse()
@ 2018-01-06 19:29 Marek Vasut
  2018-01-06 19:29 ` [U-Boot] [PATCH 2/7] mmc: uniphier-sd: Properly handle pin voltage configuration Marek Vasut
                   ` (6 more replies)
  0 siblings, 7 replies; 13+ messages in thread
From: Marek Vasut @ 2018-01-06 19:29 UTC (permalink / raw)
  To: u-boot

Drop the ad-hoc DT caps parsing in favor of common framework function.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
---
 drivers/mmc/uniphier-sd.c | 23 +++++++----------------
 1 file changed, 7 insertions(+), 16 deletions(-)

diff --git a/drivers/mmc/uniphier-sd.c b/drivers/mmc/uniphier-sd.c
index 741f9dfd9c..552e37d852 100644
--- a/drivers/mmc/uniphier-sd.c
+++ b/drivers/mmc/uniphier-sd.c
@@ -799,24 +799,15 @@ static int uniphier_sd_probe(struct udevice *dev)
 		return ret;
 	}
 
-	plat->cfg.name = dev->name;
-	plat->cfg.host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
-
-	switch (fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), "bus-width",
-			       1)) {
-	case 8:
-		plat->cfg.host_caps |= MMC_MODE_8BIT;
-		break;
-	case 4:
-		plat->cfg.host_caps |= MMC_MODE_4BIT;
-		break;
-	case 1:
-		break;
-	default:
-		dev_err(dev, "Invalid \"bus-width\" value\n");
-		return -EINVAL;
+	ret = mmc_of_parse(dev, &plat->cfg);
+	if (ret < 0) {
+		dev_err(dev, "failed to parse host caps\n");
+		return ret;
 	}
 
+	plat->cfg.name = dev->name;
+	plat->cfg.host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
+
 	if (quirks) {
 		priv->caps = quirks;
 	} else {
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread
[parent not found: <CGME20180116171714epcas3p3db32fc8c4d3c5b3eafd906c509d8daf2@epcas3p3.samsung.com>]

end of thread, other threads:[~2018-01-25 10:22 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-06 19:29 [U-Boot] [PATCH 1/7] mmc: uniphier-sd: Use mmc_of_parse() Marek Vasut
2018-01-06 19:29 ` [U-Boot] [PATCH 2/7] mmc: uniphier-sd: Properly handle pin voltage configuration Marek Vasut
2018-01-12  9:15   ` Jaehoon Chung
2018-01-16 17:13     ` Marek Vasut
2018-01-06 19:29 ` [U-Boot] [PATCH 3/7] mmc: uniphier-sd: Add Renesas RCar quirks Marek Vasut
2018-01-06 19:29 ` [U-Boot] [PATCH 4/7] mmc: uniphier-sd: Handle Renesas div-by-1 Marek Vasut
2018-01-06 19:29 ` [U-Boot] [PATCH 5/7] mmc: uniphier-sd: Add Renesas SDR104/HS200 tuning support Marek Vasut
2018-01-06 19:29 ` [U-Boot] [PATCH 6/7] mmc: uniphier-sd: Handle DMA completion flag differences Marek Vasut
2018-01-06 19:29 ` [U-Boot] [PATCH 7/7] mmc: uniphier-sd: Always check controller version Marek Vasut
2018-01-06 19:39 ` [U-Boot] [PATCH 1/7] mmc: uniphier-sd: Use mmc_of_parse() Marek Vasut
     [not found] <CGME20180116171714epcas3p3db32fc8c4d3c5b3eafd906c509d8daf2@epcas3p3.samsung.com>
2018-01-16 17:16 ` Marek Vasut
2018-01-25  1:01   ` Jaehoon Chung
2018-01-25 10:22     ` Masahiro Yamada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox