summaryrefslogtreecommitdiff
path: root/tools/gen_ethaddr_crc.c
diff options
context:
space:
mode:
authoroliver@schinagl.nl <oliver@schinagl.nl>2016-11-25 15:30:32 (GMT)
committerJoe Hershberger <joe.hershberger@ni.com>2017-02-07 16:54:33 (GMT)
commitc25f01a63ac21ddfa522d972b09a0e9e5ab4b4cd (patch)
treefe36c8e27ba2d31e54259cc071e1b2cb207a5eb3 /tools/gen_ethaddr_crc.c
parent1d3c5392396726915558e95e08947e44d994d9bb (diff)
downloadu-boot-c25f01a63ac21ddfa522d972b09a0e9e5ab4b4cd.tar.xz
tools: Add tool to add crc8 to a mac address
This patch adds a little tool that takes a generic MAC address and generates a CRC byte for it. The output is the full MAC address without any separators, ready written into an EEPROM. Signed-off-by: Olliver Schinagl <o.schinagl@ultimaker.com> Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'tools/gen_ethaddr_crc.c')
-rw-r--r--tools/gen_ethaddr_crc.c75
1 files changed, 75 insertions, 0 deletions
diff --git a/tools/gen_ethaddr_crc.c b/tools/gen_ethaddr_crc.c
new file mode 100644
index 0000000..fe9896d
--- /dev/null
+++ b/tools/gen_ethaddr_crc.c
@@ -0,0 +1,75 @@
+/*
+ * (C) Copyright 2016
+ * Olliver Schinagl <oliver@schinagl.nl>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <ctype.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <u-boot/crc.h>
+
+#define ARP_HLEN 6 /* Length of hardware address */
+#define ARP_HLEN_ASCII (ARP_HLEN * 2) + (ARP_HLEN - 1) /* with separators */
+#define ARP_HLEN_LAZY (ARP_HLEN * 2) /* separatorless hardware address length */
+
+uint8_t nibble_to_hex(const char *nibble, bool lo)
+{
+ return (strtol(nibble, NULL, 16) << (lo ? 0 : 4)) & (lo ? 0x0f : 0xf0);
+}
+
+int process_mac(const char *mac_address)
+{
+ uint8_t ethaddr[ARP_HLEN + 1] = { 0x00 };
+ uint_fast8_t i = 0;
+
+ while (*mac_address != '\0') {
+ char nibble[2] = { 0x00, '\n' }; /* for strtol */
+
+ nibble[0] = *mac_address++;
+ if (isxdigit(nibble[0])) {
+ if (isupper(nibble[0]))
+ nibble[0] = tolower(nibble[0]);
+ ethaddr[i >> 1] |= nibble_to_hex(nibble, (i % 2) != 0);
+ i++;
+ }
+ }
+
+ for (i = 0; i < ARP_HLEN; i++)
+ printf("%.2x", ethaddr[i]);
+ printf("%.2x\n", crc8(0, ethaddr, ARP_HLEN));
+
+ return 0;
+}
+
+void print_usage(char *cmdname)
+{
+ printf("Usage: %s <mac_address>\n", cmdname);
+ puts("<mac_address> may be with or without separators.");
+ puts("Valid seperators are ':' and '-'.");
+ puts("<mac_address> digits are in base 16.\n");
+}
+
+int main(int argc, char *argv[])
+{
+ if (argc < 2) {
+ print_usage(argv[0]);
+ return 1;
+ }
+
+ if (!((strlen(argv[1]) == ARP_HLEN_ASCII) || (strlen(argv[1]) == ARP_HLEN_LAZY))) {
+ puts("The MAC address is not valid.\n");
+ print_usage(argv[0]);
+ return 1;
+ }
+
+ if (process_mac(argv[1])) {
+ puts("Failed to calculate the MAC's checksum.");
+ return 1;
+ }
+
+ return 0;
+}