mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v1] kvx: socinfo: Fix mppa ID read from fuses
@ 2024-10-23  9:00 Julian Vetter
  2024-10-23 12:46 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Julian Vetter @ 2024-10-23  9:00 UTC (permalink / raw)
  To: barebox; +Cc: Yann Sionneau, Louis Morhet, Julian Vetter

From: Louis Morhet <lmorhet@kalrayinc.com>

On kv3-2 the traceability registers order has been fixed. So, the
reversing of 64 Bit register reads can be skipped on kv3-2.

Signed-off-by: Julian Vetter <jvetter@kalrayinc.com>
---
 drivers/soc/kvx/kvx_socinfo.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/drivers/soc/kvx/kvx_socinfo.c b/drivers/soc/kvx/kvx_socinfo.c
index 5f28f08bfb..4b193ebac9 100644
--- a/drivers/soc/kvx/kvx_socinfo.c
+++ b/drivers/soc/kvx/kvx_socinfo.c
@@ -22,7 +22,7 @@
 
 #define LOT_ID_STR_LEN	8
 
-#define EWS_LOT_ID_MASK		0x1ffffffffffULL
+#define EWS_LOT_ID_MASK		0x3ffffffffffULL
 #define EWS_WAFER_ID_SHIFT	42
 #define EWS_WAFER_ID_MASK	0x1fULL
 
@@ -70,8 +70,8 @@ static void kvx_soc_info_read_revision(void)
 static int base38_decode(char *s, u64 val, int nb_char)
 {
 	int i;
-	const char *alphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_?";
-	const int base = strlen(alphabet);
+	const char alphabet[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_";
+	const int base = sizeof(alphabet);
 
 	if (s == NULL)
 		return -1;
@@ -102,7 +102,10 @@ static int kvx_read_mppa_id(struct device_node *socinfo)
 	}
 
 	ews_val = *cell_val64;
+#ifdef CONFIG_ARCH_COOLIDGE_V1
+	/* On kv3-1, 32b regs on traceability are written in reverse order */
 	ews_val = (ews_val >> 32) | (ews_val << 32);
+#endif
 	wafer_id = (ews_val >> EWS_WAFER_ID_SHIFT) & EWS_WAFER_ID_MASK;
 	base38_decode(lot_id, ews_val & EWS_LOT_ID_MASK, LOT_ID_STR_LEN);
 	free(cell_val64);
@@ -118,8 +121,7 @@ static int kvx_read_mppa_id(struct device_node *socinfo)
 	base38_decode(&com_ap, (ft_val >> FT_COM_AP_SHIFT) & FT_COM_AP_MASK, 1);
 	free(cell_val32);
 
-	kvx_mppa_id = basprintf("%sA-%d%c-%03d", lot_id, wafer_id, com_ap,
-			       device_id);
+	kvx_mppa_id = basprintf("%sA-%dE-%03d", lot_id, wafer_id, device_id);
 
 	globalvar_add_simple_string("kvx.mppa_id", &kvx_mppa_id);
 
-- 
2.34.1








^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v1] kvx: socinfo: Fix mppa ID read from fuses
  2024-10-23  9:00 [PATCH v1] kvx: socinfo: Fix mppa ID read from fuses Julian Vetter
@ 2024-10-23 12:46 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2024-10-23 12:46 UTC (permalink / raw)
  To: barebox, Julian Vetter; +Cc: Yann Sionneau, Louis Morhet


On Wed, 23 Oct 2024 11:00:52 +0200, Julian Vetter wrote:
> On kv3-2 the traceability registers order has been fixed. So, the
> reversing of 64 Bit register reads can be skipped on kv3-2.
> 
> 

Applied, thanks!

[1/1] kvx: socinfo: Fix mppa ID read from fuses
      https://git.pengutronix.de/cgit/barebox/commit/?id=b7ddd2fd7903 (link may not be stable)

Best regards,
-- 
Sascha Hauer <s.hauer@pengutronix.de>




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-10-23 12:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-23  9:00 [PATCH v1] kvx: socinfo: Fix mppa ID read from fuses Julian Vetter
2024-10-23 12:46 ` Sascha Hauer

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