]> git.droids-corp.org - dpdk.git/commitdiff
ethdev: add telemetry command for module EEPROM
authorRobin Zhang <robinx.zhang@intel.com>
Thu, 26 May 2022 07:32:11 +0000 (07:32 +0000)
committerAndrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Tue, 31 May 2022 14:30:30 +0000 (16:30 +0200)
Add a new telemetry command /ethdev/module_eeprom to dump the module
EEPROM of each port. The format of module EEPROM information follows
the SFF(Small Form Factor) Committee specifications.

Signed-off-by: Robin Zhang <robinx.zhang@intel.com>
Signed-off-by: Kevin Liu <kevinx.liu@intel.com>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
devtools/words-case.txt
doc/guides/rel_notes/release_22_07.rst
lib/ethdev/meson.build
lib/ethdev/rte_ethdev.c
lib/ethdev/sff_telemetry.c [new file with mode: 0644]
lib/ethdev/sff_telemetry.h [new file with mode: 0644]

index bc33470532e186d68fb33ebda87c955f44b75d5b..2f1753bdc8d421bf6975d47325c77873a3701580 100644 (file)
@@ -76,6 +76,7 @@ RSS
 RVU
 Rx
 SCTP
+SFF
 SMP
 SoC
 SQ
index 3649d2bfdd9870693a0f344e134b9b94be019ccc..925dac7c21716ba7b7529b5910257795e15d5221 100644 (file)
@@ -64,6 +64,10 @@ New Features
   and updated ``struct rte_mtr_params`` and ``struct rte_mtr_capabilities`` to
   support protocol based input color selection for meter.
 
+* **Added telemetry for module EEPROM.**
+
+  Added telemetry command to dump module EEPROM.
+
 * **Added vhost API to get the number of in-flight packets.**
 
   Added an API which can get the number of in-flight packets in
index a094585bf71536cded822ee8d0a64c0f37843d00..6a14d0b40253c668554e582b45b7fdf9dfea9d42 100644 (file)
@@ -11,6 +11,7 @@ sources = files(
         'rte_flow.c',
         'rte_mtr.c',
         'rte_tm.c',
+        'sff_telemetry.c',
 )
 
 headers = files(
index fe64f8d39da8ebc697294fc0167882202e168e4e..46c088dc8893165a91152e29e8b9af862c03acc8 100644 (file)
@@ -39,6 +39,7 @@
 #include "ethdev_driver.h"
 #include "ethdev_profile.h"
 #include "ethdev_private.h"
+#include "sff_telemetry.h"
 
 struct rte_eth_dev rte_eth_devices[RTE_MAX_ETHPORTS];
 
@@ -5890,4 +5891,6 @@ RTE_INIT(ethdev_init_telemetry)
                        "Returns the link status for a port. Parameters: int port_id");
        rte_telemetry_register_cmd("/ethdev/info", eth_dev_handle_port_info,
                        "Returns the device info for a port. Parameters: int port_id");
+       rte_telemetry_register_cmd("/ethdev/module_eeprom", eth_dev_handle_port_module_eeprom,
+                       "Returns module EEPROM info with SFF specs. Parameters: int port_id");
 }
diff --git a/lib/ethdev/sff_telemetry.c b/lib/ethdev/sff_telemetry.c
new file mode 100644 (file)
index 0000000..d415abd
--- /dev/null
@@ -0,0 +1,109 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2022 Intel Corporation
+ */
+
+#include <errno.h>
+
+#include "rte_ethdev.h"
+#include <rte_common.h>
+#include "sff_telemetry.h"
+#include <telemetry_data.h>
+
+static void
+sff_port_module_eeprom_parse(uint16_t port_id, struct rte_tel_data *d)
+{
+       struct rte_eth_dev_module_info minfo;
+       struct rte_dev_eeprom_info einfo;
+       int ret;
+
+       if (d == NULL) {
+               RTE_ETHDEV_LOG(ERR, "Dict invalid\n");
+               return;
+       }
+
+       ret = rte_eth_dev_get_module_info(port_id, &minfo);
+       if (ret != 0) {
+               switch (ret) {
+               case -ENODEV:
+                       RTE_ETHDEV_LOG(ERR, "Port index %d invalid\n", port_id);
+                       break;
+               case -ENOTSUP:
+                       RTE_ETHDEV_LOG(ERR, "Operation not supported by device\n");
+                       break;
+               case -EIO:
+                       RTE_ETHDEV_LOG(ERR, "Device is removed\n");
+                       break;
+               default:
+                       RTE_ETHDEV_LOG(ERR, "Unable to get port module info, %d\n", ret);
+                       break;
+               }
+               return;
+       }
+
+       einfo.offset = 0;
+       einfo.length = minfo.eeprom_len;
+       einfo.data = calloc(1, minfo.eeprom_len);
+       if (einfo.data == NULL) {
+               RTE_ETHDEV_LOG(ERR, "Allocation of port %u EEPROM data failed\n", port_id);
+               return;
+       }
+
+       ret = rte_eth_dev_get_module_eeprom(port_id, &einfo);
+       if (ret != 0) {
+               switch (ret) {
+               case -ENODEV:
+                       RTE_ETHDEV_LOG(ERR, "Port index %d invalid\n", port_id);
+                       break;
+               case -ENOTSUP:
+                       RTE_ETHDEV_LOG(ERR, "Operation not supported by device\n");
+                       break;
+               case -EIO:
+                       RTE_ETHDEV_LOG(ERR, "Device is removed\n");
+                       break;
+               default:
+                       RTE_ETHDEV_LOG(ERR, "Unable to get port module EEPROM, %d\n", ret);
+                       break;
+               }
+               free(einfo.data);
+               return;
+       }
+
+       switch (minfo.type) {
+       /* parsing module EEPROM data base on different module type */
+       default:
+               RTE_ETHDEV_LOG(NOTICE, "Unsupported module type: %u\n", minfo.type);
+               break;
+       }
+
+       free(einfo.data);
+}
+
+int
+eth_dev_handle_port_module_eeprom(const char *cmd __rte_unused, const char *params,
+                                 struct rte_tel_data *d)
+{
+       char *end_param;
+       int port_id;
+
+       if (params == NULL || strlen(params) == 0 || !isdigit(*params))
+               return -1;
+
+       errno = 0;
+       port_id = strtoul(params, &end_param, 0);
+
+       if (errno != 0) {
+               RTE_ETHDEV_LOG(ERR, "Invalid argument, %d\n", errno);
+               return -1;
+       }
+
+       if (*end_param != '\0')
+               RTE_ETHDEV_LOG(NOTICE,
+                       "Extra parameters [%s] passed to ethdev telemetry command, ignoring\n",
+                               end_param);
+
+       rte_tel_data_start_dict(d);
+
+       sff_port_module_eeprom_parse(port_id, d);
+
+       return 0;
+}
diff --git a/lib/ethdev/sff_telemetry.h b/lib/ethdev/sff_telemetry.h
new file mode 100644 (file)
index 0000000..8c10a88
--- /dev/null
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2022 Intel Corporation
+ */
+
+#ifndef _ETHDEV_SFF_TELEMETRY_H_
+#define _ETHDEV_SFF_TELEMETRY_H_
+
+#include <rte_telemetry.h>
+
+int eth_dev_handle_port_module_eeprom(const char *cmd __rte_unused,
+                                     const char *params,
+                                     struct rte_tel_data *d);
+
+#endif /* _ETHDEV_SFF_TELEMETRY_H_ */