mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Michael Grzeschik <m.grzeschik@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH] mci: core: add write_reliable device parameter
Date: Wed,  9 Oct 2024 01:12:28 +0200	[thread overview]
Message-ID: <20241008231228.2106435-1-m.grzeschik@pengutronix.de> (raw)

Add mmcX.write_reliable parameter so it can be queried by
scripts and board code.

Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
---
 drivers/mci/mci-core.c | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/drivers/mci/mci-core.c b/drivers/mci/mci-core.c
index 48a3df9ec9..1b7526abfa 100644
--- a/drivers/mci/mci-core.c
+++ b/drivers/mci/mci-core.c
@@ -2680,6 +2680,22 @@ static int mci_get_partition_setting_completed(struct mci *mci)
 	return ret;
 }
 
+static int mci_get_write_reliable(struct mci *mci)
+{
+	u8 *ext_csd;
+	int ret;
+
+	ext_csd = mci_get_ext_csd(mci);
+	if (IS_ERR(ext_csd))
+		return PTR_ERR(ext_csd);
+
+	ret = ext_csd[EXT_CSD_WR_REL_SET] & 0x1f;
+
+	dma_free(ext_csd);
+
+	return ret;
+}
+
 /**
  * Probe an MCI card at the given host interface
  * @param mci MCI device instance
@@ -2796,6 +2812,13 @@ static int mci_card_probe(struct mci *mci)
 				"Failed to determine EXT_CSD_PARTITION_SETTING_COMPLETED\n");
 		else
 			dev_add_param_bool_fixed(&mci->dev, "partitioning_completed", ret);
+
+		ret = mci_get_write_reliable(mci);
+		if (ret < 0)
+			dev_dbg(&mci->dev,
+				"Failed to determine EXT_CSD_WR_REL_SET\n");
+		else
+			dev_add_param_bool_fixed(&mci->dev, "write_reliable", ret);
 	}
 
 	mci_parse_cid(mci);
-- 
2.39.5




             reply	other threads:[~2024-10-09  0:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-08 23:12 Michael Grzeschik [this message]
2024-10-09  5:40 ` Ahmad Fatoum

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241008231228.2106435-1-m.grzeschik@pengutronix.de \
    --to=m.grzeschik@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox