mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Oleksij Rempel <o.rempel@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Oleksij Rempel <o.rempel@pengutronix.de>
Subject: [PATCH v5 13/14] hexdump: provide support for dev_print_hex_dump()
Date: Wed, 13 Apr 2022 10:22:04 +0200	[thread overview]
Message-ID: <20220413082205.429509-14-o.rempel@pengutronix.de> (raw)
In-Reply-To: <20220413082205.429509-1-o.rempel@pengutronix.de>

In some cases we need to know the interface name of dumped hex. So,
provide optional device_d pointer and use it to get device name.

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
 include/printk.h | 14 +++++++++++---
 lib/hexdump.c    | 22 +++++++++++++++-------
 2 files changed, 26 insertions(+), 10 deletions(-)

diff --git a/include/printk.h b/include/printk.h
index 046b456a9d..8de8202af9 100644
--- a/include/printk.h
+++ b/include/printk.h
@@ -4,6 +4,8 @@
 
 #include <linux/types.h>
 
+struct device_d;
+
 #define KERN_EMERG      ""   /* system is unusable                   */
 #define KERN_ALERT      ""   /* action must be taken immediately     */
 #define KERN_CRIT       ""   /* critical conditions                  */
@@ -45,9 +47,15 @@ enum {
 extern int hex_dump_to_buffer(const void *buf, size_t len, int rowsize,
 			      int groupsize, char *linebuf, size_t linebuflen,
 			      bool ascii);
-extern void print_hex_dump(const char *level, const char *prefix_str,
-			   int prefix_type, int rowsize, int groupsize,
-			   const void *buf, size_t len, bool ascii);
+extern void dev_print_hex_dump(struct device_d *dev, const char *level,
+			       const char *prefix_str, int prefix_type,
+			       int rowsize, int groupsize, const void *buf,
+			       size_t len, bool ascii);
+
+#define print_hex_dump(level, prefix_str, prefix_type, rowsize,		       \
+			     groupsize, buf, len, ascii)		       \
+	dev_print_hex_dump(NULL, level, prefix_str, prefix_type, rowsize,      \
+		       groupsize, buf, len, ascii)
 
 #ifdef CONFIG_ARCH_HAS_STACK_DUMP
 void dump_stack(void);
diff --git a/lib/hexdump.c b/lib/hexdump.c
index fb80ef9724..61bbb10129 100644
--- a/lib/hexdump.c
+++ b/lib/hexdump.c
@@ -4,6 +4,7 @@
  */
 
 #include <common.h>
+#include <driver.h>
 #include <linux/types.h>
 #include <linux/ctype.h>
 #include <linux/log2.h>
@@ -235,13 +236,16 @@ EXPORT_SYMBOL(hex_dump_to_buffer);
  * Example output using %DUMP_PREFIX_ADDRESS and 4-byte mode:
  * ffffffff88089af0: 73727170 77767574 7b7a7978 7f7e7d7c  pqrstuvwxyz{|}~.
  */
-void print_hex_dump(const char *level, const char *prefix_str, int prefix_type,
-		    int rowsize, int groupsize,
-		    const void *buf, size_t len, bool ascii)
+void dev_print_hex_dump(struct device_d *dev, const char *level,
+			const char *prefix_str, int prefix_type, int rowsize,
+			int groupsize, const void *buf, size_t len, bool ascii)
 {
 	const u8 *ptr = buf;
 	int i, linelen, remaining = len;
 	unsigned char linebuf[32 * 3 + 2 + 32 + 1];
+	char *name;
+
+	name = basprintf("%s%s", dev ? dev_name(dev) : "", dev ? ": " : "");
 
 	if (rowsize != 16 && rowsize != 32)
 		rowsize = 16;
@@ -255,16 +259,20 @@ void print_hex_dump(const char *level, const char *prefix_str, int prefix_type,
 
 		switch (prefix_type) {
 		case DUMP_PREFIX_ADDRESS:
-			printk("%s%s%p: %s\n",
-			       level, prefix_str, ptr + i, linebuf);
+			printk("%s%s%s%p: %s\n", level, name, prefix_str,
+			       ptr + i, linebuf);
 			break;
 		case DUMP_PREFIX_OFFSET:
-			printk("%s%s%.8x: %s\n", level, prefix_str, i, linebuf);
+			printk("%s%s%s%.8x: %s\n", level, name, prefix_str,
+			       i, linebuf);
 			break;
 		default:
-			printk("%s%s%s\n", level, prefix_str, linebuf);
+			printk("%s%s%s%s\n", level, name, prefix_str,
+			       linebuf);
 			break;
 		}
 	}
+
+	free(name);
 }
 EXPORT_SYMBOL(print_hex_dump);
-- 
2.30.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


  parent reply	other threads:[~2022-04-13  8:24 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-13  8:21 [PATCH v5 00/14] provide DSA support Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 01/14] net: add RX preprocessor support Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 02/14] net: add of_find_eth_device_by_node() function Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 03/14] net: phy: export of_phy_register_fixed_link() function Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 04/14] net: add DSA framework to support basic switch functionality Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 05/14] driver: add dev_get_priv() helper Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 06/14] net: port part of if_vlan header from kernel v5.17 Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 07/14] spi: port spi_sync_transfer() function " Oleksij Rempel
2022-04-13  8:21 ` [PATCH v5 08/14] net: mdio: add MDIO_DEVAD_NONE define Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 09/14] net: phy: make sure MDIO bus is probed if we search for the PHY Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 10/14] of_net: add rev-rmii support Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 11/14] net: dsa: add support for SJA11xx switches Oleksij Rempel
2022-04-13  8:22 ` [PATCH v5 12/14] net: dsa: add KSZ9477 switch SPI driver Oleksij Rempel
2022-07-30  9:10   ` Ahmad Fatoum
2022-07-30 11:27     ` Oleksij Rempel
2022-04-13  8:22 ` Oleksij Rempel [this message]
2022-04-13  8:22 ` [PATCH v5 14/14] add ethlog command Oleksij Rempel
2022-04-14  7:42 ` [PATCH v5 00/14] provide DSA support Sascha Hauer

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=20220413082205.429509-14-o.rempel@pengutronix.de \
    --to=o.rempel@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