From: Stefan Kerkmann <s.kerkmann@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>,
BAREBOX <barebox@lists.infradead.org>
Cc: Stefan Kerkmann <s.kerkmann@pengutronix.de>
Subject: [PATCH 5/9] mci: core: parse cid into parameters
Date: Tue, 28 May 2024 17:39:24 +0200 [thread overview]
Message-ID: <20240528-feature-mmc-cid-as-parameters-v1-5-e5dc0c1d3eaa@pengutronix.de> (raw)
In-Reply-To: <20240528-feature-mmc-cid-as-parameters-v1-0-e5dc0c1d3eaa@pengutronix.de>
To make the MMC/SD CID information accessible for scripting all
available CID fields are added as parameters during device probing. As
some fields have different data types for MMC and SD cards a string
representation is chosen these cases.
Signed-off-by: Stefan Kerkmann <s.kerkmann@pengutronix.de>
---
drivers/mci/mci-core.c | 35 +++++++++++++++++++++++++----------
1 file changed, 25 insertions(+), 10 deletions(-)
diff --git a/drivers/mci/mci-core.c b/drivers/mci/mci-core.c
index 48eee35f2c..d1c425dda6 100644
--- a/drivers/mci/mci-core.c
+++ b/drivers/mci/mci-core.c
@@ -2119,16 +2119,29 @@ static void mci_info(struct device *dev)
mci->csd[2], mci->csd[3]);
printf(" Max. transfer speed: %u Hz\n", mci->tran_speed);
mci_print_caps(mci->card_caps);
- printf(" Manufacturer ID: 0x%02X\n", extract_mid(mci));
- printf(" OEM/Application ID: 0x%04X\n", extract_oid(mci));
- printf(" Product name: '%c%c%c%c%c'\n", mci->cid[0] & 0xff,
- (mci->cid[1] >> 24), (mci->cid[1] >> 16) & 0xff,
- (mci->cid[1] >> 8) & 0xff, mci->cid[1] & 0xff);
- printf(" Product revision: %u.%u\n", extract_prv(mci) >> 4,
- extract_prv(mci) & 0xf);
- printf(" Serial no: %0u\n", extract_psn(mci));
- printf(" Manufacturing date: %u.%u\n", extract_mdt_month(mci),
- extract_mdt_year(mci));
+ printf(" Manufacturer ID: %s\n", dev_get_param(dev, "cid_mid"));
+ printf(" OEM/Application ID: %s\n", dev_get_param(dev, "cid_oid"));
+ printf(" Product name: '%s'\n", dev_get_param(dev, "cid_pnm"));
+ printf(" Product revision: %s\n", dev_get_param(dev, "cid_prv"));
+ printf(" Serial no: %s\n", dev_get_param(dev, "cid_psn"));
+ printf(" Manufacturing date: %s\n", dev_get_param(dev, "cid_mdt"));
+}
+
+static void mci_parse_cid(struct mci *mci) {
+ struct device *dev = &mci->dev;
+ char buffer[8];
+ unsigned int prv;
+
+ dev_add_param_uint32_fixed(dev, "cid_mid", extract_mid(mci), "0x%02X");
+ dev_add_param_uint32_fixed(dev, "cid_oid", extract_oid(mci), "0x%04X");
+ extract_pnm(mci, buffer);
+ dev_add_param_string_fixed(dev, "cid_pnm", buffer);
+ prv = extract_prv(mci);
+ snprintf(buffer, sizeof(buffer), "%u.%u", (prv >> 4) & 0xf, prv & 0xf);
+ dev_add_param_string_fixed(dev, "cid_prv", buffer);
+ dev_add_param_uint32_fixed(dev, "cid_psn", extract_psn(mci), "%0u");
+ extract_mdt(mci, buffer);
+ dev_add_param_string_fixed(dev, "cid_mdt", buffer);
}
/**
@@ -2406,6 +2419,8 @@ static int mci_card_probe(struct mci *mci)
dev_add_param_bool_fixed(&mci->dev, "partitioning_completed", ret);
}
+ mci_parse_cid(mci);
+
dev_dbg(&mci->dev, "SD Card successfully added\n");
on_error:
--
2.39.2
next prev parent reply other threads:[~2024-05-28 15:40 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-28 15:39 [PATCH 0/9] mci: core: add CID as parameters and fix parsing Stefan Kerkmann
2024-05-28 15:39 ` [PATCH 1/9] mci: core: rename mtd to mdt Stefan Kerkmann
2024-05-28 15:39 ` [PATCH 2/9] mci: core: add cbx extraction function Stefan Kerkmann
2024-05-28 15:39 ` [PATCH 3/9] mci: core: add product name " Stefan Kerkmann
2024-05-28 15:39 ` [PATCH 4/9] mci: core: add manufacturing date " Stefan Kerkmann
2024-05-28 15:39 ` Stefan Kerkmann [this message]
2024-05-28 15:39 ` [PATCH 6/9] mci: core: fix extract_prv and write to string buffer Stefan Kerkmann
2024-05-28 15:39 ` [PATCH 7/9] mci: core: add CBX field as parameter and print it Stefan Kerkmann
2024-05-28 15:39 ` [PATCH 8/9] mci: core: fix extract_oid and write to string buffer Stefan Kerkmann
2024-05-28 15:39 ` [PATCH 9/9] mci: core: add missing slice range for extract_psn function Stefan Kerkmann
2024-05-29 6:17 ` [PATCH 0/9] mci: core: add CID as parameters and fix parsing Sascha Hauer
2024-05-29 7:24 ` 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=20240528-feature-mmc-cid-as-parameters-v1-5-e5dc0c1d3eaa@pengutronix.de \
--to=s.kerkmann@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/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