From: Robin Zhang <robinx.zhang@intel.com>
To: dev@dpdk.org
Cc: qiming.yang@intel.com, qi.z.zhang@intel.com,
stevex.yang@intel.com, thomas@monjalon.net,
andrew.rybchenko@oktetlabs.ru, bruce.richardson@intel.com,
david.marchand@redhat.com, Robin Zhang <robinx.zhang@intel.com>
Subject: [PATCH v3 3/5] ethdev: format module EEPROM for SFF-8079
Date: Wed, 20 Apr 2022 07:00:15 +0000 [thread overview]
Message-ID: <20220420070017.119739-4-robinx.zhang@intel.com> (raw)
In-Reply-To: <20220420070017.119739-1-robinx.zhang@intel.com>
This patch implements format module EEPROM information for
SFF-8079 Rev 1.7
Signed-off-by: Robin Zhang <robinx.zhang@intel.com>
---
lib/ethdev/sff_8079.c | 672 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 672 insertions(+)
create mode 100644 lib/ethdev/sff_8079.c
diff --git a/lib/ethdev/sff_8079.c b/lib/ethdev/sff_8079.c
new file mode 100644
index 0000000000..535f54817b
--- /dev/null
+++ b/lib/ethdev/sff_8079.c
@@ -0,0 +1,672 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2022 Intel Corporation
+ *
+ * Implements SFF-8079 optics diagnostics.
+ *
+ */
+
+#include <stdio.h>
+#include <rte_mbuf.h>
+#include <rte_ethdev.h>
+#include <rte_flow.h>
+#include "sff_common.h"
+#include "ethdev_sff_telemetry.h"
+
+static void sff_8079_show_identifier(const uint8_t *id, sff_item *items)
+{
+ sff_8024_show_identifier(id, 0, items);
+}
+
+static void sff_8079_show_ext_identifier(const uint8_t *id, sff_item *items)
+{
+ char val_string[TMP_STRING_SIZE];
+
+ printf("%-41s : 0x%02x", "Extended identifier", id[1]);
+ sprintf(val_string, "0x%02x", id[1]);
+ if (id[1] == 0x00) {
+ printf(" (GBIC not specified / not MOD_DEF compliant)\n");
+ strcat(val_string, " (GBIC not specified / not MOD_DEF compliant)");
+ } else if (id[1] == 0x04) {
+ printf(" (GBIC/SFP defined by 2-wire interface ID)\n");
+ strcat(val_string, " (GBIC/SFP defined by 2-wire interface ID)");
+ } else if (id[1] <= 0x07) {
+ printf(" (GBIC compliant with MOD_DEF %u)\n", id[1]);
+ char tmp[TMP_STRING_SIZE];
+ sprintf(tmp, " (GBIC compliant with MOD_DEF %u)", id[1]);
+ strcat(val_string, tmp);
+ } else {
+ printf(" (unknown)\n");
+ strcat(val_string, " (unknown)");
+ }
+ add_item_string(items, "Extended identifier", val_string);
+}
+
+static void sff_8079_show_connector(const uint8_t *id, sff_item *items)
+{
+ sff_8024_show_connector(id, 2, items);
+}
+
+static void sff_8079_show_transceiver(const uint8_t *id, sff_item *items)
+{
+ static const char *pfx =
+ "Transceiver type :";
+ char val_string[TMP_STRING_SIZE];
+
+ printf("%-41s : 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
+ "Transceiver codes",
+ id[3], id[4], id[5], id[6],
+ id[7], id[8], id[9], id[10], id[36]);
+ sprintf(val_string,
+ "0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x",
+ id[3], id[4], id[5], id[6], id[7], id[8], id[9], id[10], id[36]);
+ add_item_string(items, "Transceiver codes", val_string);
+
+ /* 10G Ethernet Compliance Codes */
+ if (id[3] & (1 << 7)) {
+ printf("%s 10G Ethernet: 10G Base-ER [SFF-8472 rev10.4 onwards]\n", pfx);
+ add_item_string(items, "10G Ethernet transceiver type",
+ "10G Ethernet: 10G Base-ER [SFF-8472 rev10.4 onwards]");
+ }
+ if (id[3] & (1 << 6)) {
+ printf("%s 10G Ethernet: 10G Base-LRM\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "10G Ethernet: 10G Base-LRM");
+ }
+ if (id[3] & (1 << 5)) {
+ printf("%s 10G Ethernet: 10G Base-LR\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "10G Ethernet: 10G Base-LR");
+ }
+ if (id[3] & (1 << 4)) {
+ printf("%s 10G Ethernet: 10G Base-SR\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "10G Ethernet: 10G Base-SR");
+ }
+
+ /* Infiniband Compliance Codes */
+ if (id[3] & (1 << 3)) {
+ printf("%s Infiniband: 1X SX\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Infiniband: 1X SX");
+ }
+ if (id[3] & (1 << 2)) {
+ printf("%s Infiniband: 1X LX\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Infiniband: 1X LX");
+ }
+ if (id[3] & (1 << 1)) {
+ printf("%s Infiniband: 1X Copper Active\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Infiniband: 1X Copper Active");
+ }
+ if (id[3] & (1 << 0)) {
+ printf("%s Infiniband: 1X Copper Passive\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Infiniband: 1X Copper Passive");
+ }
+
+ /* ESCON Compliance Codes */
+ if (id[4] & (1 << 7)) {
+ printf("%s ESCON: ESCON MMF, 1310nm LED\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "ESCON: ESCON MMF, 1310nm LED");
+ }
+ if (id[4] & (1 << 6)) {
+ printf("%s ESCON: ESCON SMF, 1310nm Laser\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "ESCON: ESCON SMF, 1310nm Laser");
+ }
+
+ /* SONET Compliance Codes */
+ if (id[4] & (1 << 5)) {
+ printf("%s SONET: OC-192, short reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-192, short reach");
+ }
+ if (id[4] & (1 << 4)) {
+ printf("%s SONET: SONET reach specifier bit 1\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: SONET reach specifier bit 1");
+ }
+ if (id[4] & (1 << 3)) {
+ printf("%s SONET: SONET reach specifier bit 2\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: SONET reach specifier bit 2");
+ }
+ if (id[4] & (1 << 2)) {
+ printf("%s SONET: OC-48, long reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-48, long reach");
+ }
+ if (id[4] & (1 << 1)) {
+ printf("%s SONET: OC-48, intermediate reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-48, intermediate reach");
+ }
+ if (id[4] & (1 << 0)) {
+ printf("%s SONET: OC-48, short reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-48, short reach");
+ }
+ if (id[5] & (1 << 6)) {
+ printf("%s SONET: OC-12, single mode, long reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-12, single mode, long reach");
+ }
+ if (id[5] & (1 << 5)) {
+ printf("%s SONET: OC-12, single mode, inter. reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-12, single mode, inter. reach");
+ }
+ if (id[5] & (1 << 4)) {
+ printf("%s SONET: OC-12, short reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-12, short reach");
+ }
+ if (id[5] & (1 << 2)) {
+ printf("%s SONET: OC-3, single mode, long reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-3, single mode, long reach");
+ }
+ if (id[5] & (1 << 1)) {
+ printf("%s SONET: OC-3, single mode, inter. reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-3, single mode, inter. reach");
+ }
+ if (id[5] & (1 << 0)) {
+ printf("%s SONET: OC-3, short reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "SONET: OC-3, short reach");
+ }
+
+ /* Ethernet Compliance Codes */
+ if (id[6] & (1 << 7)) {
+ printf("%s Ethernet: BASE-PX\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: BASE-PX");
+ }
+ if (id[6] & (1 << 6)) {
+ printf("%s Ethernet: BASE-BX10\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: BASE-BX10");
+ }
+ if (id[6] & (1 << 5)) {
+ printf("%s Ethernet: 100BASE-FX\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: 100BASE-FX");
+ }
+ if (id[6] & (1 << 4)) {
+ printf("%s Ethernet: 100BASE-LX/LX10\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: 100BASE-LX/LX10");
+ }
+ if (id[6] & (1 << 3)) {
+ printf("%s Ethernet: 1000BASE-T\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: 1000BASE-T");
+ }
+ if (id[6] & (1 << 2)) {
+ printf("%s Ethernet: 1000BASE-CX\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: 1000BASE-CX");
+ }
+ if (id[6] & (1 << 1)) {
+ printf("%s Ethernet: 1000BASE-LX\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: 1000BASE-LX");
+ }
+ if (id[6] & (1 << 0)) {
+ printf("%s Ethernet: 1000BASE-SX\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Ethernet: 1000BASE-SX");
+ }
+
+ /* Fibre Channel link length */
+ if (id[7] & (1 << 7)) {
+ printf("%s FC: very long distance (V)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: very long distance (V)");
+ }
+ if (id[7] & (1 << 6)) {
+ printf("%s FC: short distance (S)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: short distance (S)");
+ }
+ if (id[7] & (1 << 5)) {
+ printf("%s FC: intermediate distance (I)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: intermediate distance (I)");
+ }
+ if (id[7] & (1 << 4)) {
+ printf("%s FC: long distance (L)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: long distance (L)");
+ }
+ if (id[7] & (1 << 3)) {
+ printf("%s FC: medium distance (M)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: medium distance (M)");
+ }
+
+ /* Fibre Channel transmitter technology */
+ if (id[7] & (1 << 2)) {
+ printf("%s FC: Shortwave laser, linear Rx (SA)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Shortwave laser, linear Rx (SA)");
+ }
+ if (id[7] & (1 << 1)) {
+ printf("%s FC: Longwave laser (LC)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Longwave laser (LC)");
+ }
+ if (id[7] & (1 << 0)) {
+ printf("%s FC: Electrical inter-enclosure (EL)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Electrical inter-enclosure (EL)");
+ }
+ if (id[8] & (1 << 7)) {
+ printf("%s FC: Electrical intra-enclosure (EL)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Electrical intra-enclosure (EL)");
+ }
+ if (id[8] & (1 << 6)) {
+ printf("%s FC: Shortwave laser w/o OFC (SN)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Shortwave laser w/o OFC (SN)");
+ }
+ if (id[8] & (1 << 5)) {
+ printf("%s FC: Shortwave laser with OFC (SL)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Shortwave laser with OFC (SL)");
+ }
+ if (id[8] & (1 << 4)) {
+ printf("%s FC: Longwave laser (LL)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Longwave laser (LL)");
+ }
+ if (id[8] & (1 << 3)) {
+ printf("%s Active Cable\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Active Cable");
+ }
+ if (id[8] & (1 << 2)) {
+ printf("%s Passive Cable\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Passive Cable");
+ }
+ if (id[8] & (1 << 1)) {
+ printf("%s FC: Copper FC-BaseT\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Copper FC-BaseT");
+ }
+
+ /* Fibre Channel transmission media */
+ if (id[9] & (1 << 7)) {
+ printf("%s FC: Twin Axial Pair (TW)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Twin Axial Pair (TW)");
+ }
+ if (id[9] & (1 << 6)) {
+ printf("%s FC: Twisted Pair (TP)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Twisted Pair (TP)");
+ }
+ if (id[9] & (1 << 5)) {
+ printf("%s FC: Miniature Coax (MI)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Miniature Coax (MI)");
+ }
+ if (id[9] & (1 << 4)) {
+ printf("%s FC: Video Coax (TV)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Video Coax (TV)");
+ }
+ if (id[9] & (1 << 3)) {
+ printf("%s FC: Multimode, 62.5um (M6)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Multimode, 62.5um (M6)");
+ }
+ if (id[9] & (1 << 2)) {
+ printf("%s FC: Multimode, 50um (M5)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Multimode, 50um (M5)");
+ }
+ if (id[9] & (1 << 0)) {
+ printf("%s FC: Single Mode (SM)\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: Single Mode (SM)");
+ }
+
+ /* Fibre Channel speed */
+ if (id[10] & (1 << 7)) {
+ printf("%s FC: 1200 MBytes/sec\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: 1200 MBytes/sec");
+ }
+ if (id[10] & (1 << 6)) {
+ printf("%s FC: 800 MBytes/sec\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: 800 MBytes/sec");
+ }
+ if (id[10] & (1 << 4)) {
+ printf("%s FC: 400 MBytes/sec\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: 400 MBytes/sec");
+ }
+ if (id[10] & (1 << 2)) {
+ printf("%s FC: 200 MBytes/sec\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: 200 MBytes/sec");
+ }
+ if (id[10] & (1 << 0)) {
+ printf("%s FC: 100 MBytes/sec\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "FC: 100 MBytes/sec");
+ }
+
+ /* Extended Specification Compliance Codes from SFF-8024 */
+ switch (id[36]) {
+ case 0x1:
+ printf("%s Extended: 100G AOC or 25GAUI C2M AOC with worst BER of 5x10^(-5)\n",
+ pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G AOC or 25GAUI C2M AOC with worst BER of 5x10^(-5)");
+ break;
+ case 0x2:
+ printf("%s Extended: 100G Base-SR4 or 25GBase-SR\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G Base-SR4 or 25GBase-SR");
+ break;
+ case 0x3:
+ printf("%s Extended: 100G Base-LR4 or 25GBase-LR\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G Base-LR4 or 25GBase-LR");
+ break;
+ case 0x4:
+ printf("%s Extended: 100G Base-ER4 or 25GBase-ER\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G Base-ER4 or 25GBase-ER");
+ break;
+ case 0x8:
+ printf("%s Extended: 100G ACC or 25GAUI C2M ACC with worst BER of 5x10^(-5)\n",
+ pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G ACC or 25GAUI C2M ACC with worst BER of 5x10^(-5)");
+ break;
+ case 0xb:
+ printf("%s Extended: 100G Base-CR4 or 25G Base-CR CA-L\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G Base-CR4 or 25G Base-CR CA-L");
+ break;
+ case 0xc:
+ printf("%s Extended: 25G Base-CR CA-S\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 25G Base-CR CA-S");
+ break;
+ case 0xd:
+ printf("%s Extended: 25G Base-CR CA-N\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 25G Base-CR CA-N");
+ break;
+ case 0x16:
+ printf("%s Extended: 10Gbase-T with SFI electrical interface\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 10Gbase-T with SFI electrical interface");
+ break;
+ case 0x18:
+ printf("%s Extended: 100G AOC or 25GAUI C2M AOC with worst BER of 10^(-12)\n",
+ pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G AOC or 25GAUI C2M AOC with worst BER of 10^(-12)");
+ break;
+ case 0x19:
+ printf("%s Extended: 100G ACC or 25GAUI C2M ACC with worst BER of 10^(-12)\n",
+ pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 100G ACC or 25GAUI C2M ACC with worst BER of 10^(-12)");
+ break;
+ case 0x1c:
+ printf("%s Extended: 10Gbase-T Short Reach\n", pfx);
+ add_item_string(items, "Transceiver type",
+ "Extended: 10Gbase-T Short Reach");
+ break;
+ default:
+ break;
+ }
+}
+
+static void sff_8079_show_encoding(const uint8_t *id, sff_item *items)
+{
+ sff_8024_show_encoding(id, 11, RTE_ETH_MODULE_SFF_8472, items);
+}
+
+static void sff_8079_show_rate_identifier(const uint8_t *id, sff_item *items)
+{
+ char val_string[TMP_STRING_SIZE];
+
+ printf("%-41s : 0x%02x", "Rate identifier", id[13]);
+ sprintf(val_string, "0x%02x", id[13]);
+
+ switch (id[13]) {
+ case 0x00:
+ printf(" (unspecified)\n");
+ strcat(val_string, " (unspecified)");
+ break;
+ case 0x01:
+ printf(" (4/2/1G Rate_Select & AS0/AS1)\n");
+ strcat(val_string, " (4/2/1G Rate_Select & AS0/AS1)");
+ break;
+ case 0x02:
+ printf(" (8/4/2G Rx Rate_Select only)\n");
+ strcat(val_string, " (8/4/2G Rx Rate_Select only)");
+ break;
+ case 0x03:
+ printf(" (8/4/2G Independent Rx & Tx Rate_Select)\n");
+ strcat(val_string, " (8/4/2G Independent Rx & Tx Rate_Select)");
+ break;
+ case 0x04:
+ printf(" (8/4/2G Tx Rate_Select only)\n");
+ strcat(val_string, " (8/4/2G Tx Rate_Select only)");
+ break;
+ default:
+ printf(" (reserved or unknown)\n");
+ strcat(val_string, " (reserved or unknown)");
+ break;
+ }
+ add_item_string(items, "Rate identifier", val_string);
+}
+
+static void sff_8079_show_oui(const uint8_t *id, sff_item *items)
+{
+ sff_8024_show_oui(id, 37, items);
+}
+
+static void
+sff_8079_show_wavelength_or_copper_compliance(const uint8_t *id,
+ sff_item *items)
+{
+ char val_string[TMP_STRING_SIZE];
+
+ if (id[8] & (1 << 2)) {
+ printf("%-41s : 0x%02x", "Passive Cu cmplnce.", id[60]);
+ sprintf(val_string, "0x%02x", id[60]);
+ switch (id[60]) {
+ case 0x00:
+ printf(" (unspecified)");
+ strcat(val_string, " (unspecified)");
+ break;
+ case 0x01:
+ printf(" (SFF-8431 appendix E)");
+ strcat(val_string, " (SFF-8431 appendix E)");
+ break;
+ default:
+ printf(" (unknown)");
+ strcat(val_string, " (unknown)");
+ break;
+ }
+ printf(" [SFF-8472 rev10.4 only]\n");
+ strcat(val_string, " [SFF-8472 rev10.4 only]");
+ add_item_string(items, "Passive Cu cmplnce.", val_string);
+ } else if (id[8] & (1 << 3)) {
+ printf("%-41s : 0x%02x", "Active Cu cmplnce.", id[60]);
+ sprintf(val_string, "0x%02x", id[60]);
+ switch (id[60]) {
+ case 0x00:
+ printf(" (unspecified)");
+ strcat(val_string, " (unspecified)");
+ break;
+ case 0x01:
+ printf(" (SFF-8431 appendix E)");
+ strcat(val_string, " (SFF-8431 appendix E)");
+ break;
+ case 0x04:
+ printf(" (SFF-8431 limiting)");
+ strcat(val_string, " (SFF-8431 limiting)");
+ break;
+ default:
+ printf(" (unknown)");
+ strcat(val_string, " (unknown)");
+ break;
+ }
+ printf(" [SFF-8472 rev10.4 only]\n");
+ strcat(val_string, " [SFF-8472 rev10.4 only]");
+ add_item_string(items, "Active Cu cmplnce.", val_string);
+ } else {
+ printf("%-41s : %unm\n", "Laser wavelength",
+ (id[60] << 8) | id[61]);
+ sprintf(val_string, "%unm", (id[60] << 8) | id[61]);
+ add_item_string(items, "Laser wavelength", val_string);
+ }
+}
+
+static void sff_8079_show_options(const uint8_t *id, sff_item *items)
+{
+ static const char *pfx =
+ "Option :";
+ char val_string[TMP_STRING_SIZE];
+
+ printf("%-41s : 0x%02x 0x%02x\n", "Option values", id[64], id[65]);
+ sprintf(val_string, "0x%02x 0x%02x", id[64], id[65]);
+ add_item_string(items, "Option values", val_string);
+
+ if (id[65] & (1 << 1)) {
+ printf("%s RX_LOS implemented\n", pfx);
+ add_item_string(items, "Option",
+ "RX_LOS implemented");
+ }
+ if (id[65] & (1 << 2)) {
+ printf("%s RX_LOS implemented, inverted\n", pfx);
+ add_item_string(items, "Option",
+ "RX_LOS implemented, inverted");
+ }
+ if (id[65] & (1 << 3)) {
+ printf("%s TX_FAULT implemented\n", pfx);
+ add_item_string(items, "Option",
+ "TX_FAULT implemented");
+ }
+ if (id[65] & (1 << 4)) {
+ printf("%s TX_DISABLE implemented\n", pfx);
+ add_item_string(items, "Option",
+ "TX_DISABLE implemented");
+ }
+ if (id[65] & (1 << 5)) {
+ printf("%s RATE_SELECT implemented\n", pfx);
+ add_item_string(items, "Option",
+ "RATE_SELECT implemented");
+ }
+ if (id[65] & (1 << 6)) {
+ printf("%s Tunable transmitter technology\n", pfx);
+ add_item_string(items, "Option",
+ "Tunable transmitter technology");
+ }
+ if (id[65] & (1 << 7)) {
+ printf("%s Receiver decision threshold implemented\n", pfx);
+ add_item_string(items, "Option",
+ "Receiver decision threshold implemented");
+ }
+ if (id[64] & (1 << 0)) {
+ printf("%s Linear receiver output implemented\n", pfx);
+ add_item_string(items, "Option",
+ "Linear receiver output implemented");
+ }
+ if (id[64] & (1 << 1)) {
+ printf("%s Power level 2 requirement\n", pfx);
+ add_item_string(items, "Option",
+ "Power level 2 requirement");
+ }
+ if (id[64] & (1 << 2)) {
+ printf("%s Cooled transceiver implemented\n", pfx);
+ add_item_string(items, "Option",
+ "Cooled transceiver implemented");
+ }
+ if (id[64] & (1 << 3)) {
+ printf("%s Retimer or CDR implemented\n", pfx);
+ add_item_string(items, "Option",
+ "Retimer or CDR implemented");
+ }
+ if (id[64] & (1 << 4)) {
+ printf("%s Paging implemented\n", pfx);
+ add_item_string(items, "Option",
+ "Paging implemented");
+ }
+ if (id[64] & (1 << 5)) {
+ printf("%s Power level 3 requirement\n", pfx);
+ add_item_string(items, "Option",
+ "Power level 3 requirement");
+ }
+}
+
+void sff_8079_show_all(const uint8_t *id, sff_item *items)
+{
+ sff_8079_show_identifier(id, items);
+ if (((id[0] == 0x02) || (id[0] == 0x03)) && (id[1] == 0x04)) {
+ unsigned int br_nom, br_min, br_max;
+ char val_string[TMP_STRING_SIZE];
+
+ if (id[12] == 0) {
+ br_nom = br_min = br_max = 0;
+ } else if (id[12] == 255) {
+ br_nom = id[66] * 250;
+ br_max = id[67];
+ br_min = id[67];
+ } else {
+ br_nom = id[12] * 100;
+ br_max = id[66];
+ br_min = id[67];
+ }
+ sff_8079_show_ext_identifier(id, items);
+ sff_8079_show_connector(id, items);
+ sff_8079_show_transceiver(id, items);
+ sff_8079_show_encoding(id, items);
+
+ printf("%-41s : %u%s\n", "BR, Nominal", br_nom, "MBd");
+ sprintf(val_string, "%uMBd", br_nom);
+ add_item_string(items, "BR, Nominal", val_string);
+
+ sff_8079_show_rate_identifier(id, items);
+ sff_show_value_with_unit(id, 14,
+ "Length (SMF,km)", 1, "km", items);
+ sff_show_value_with_unit(id, 15, "Length (SMF)", 100, "m", items);
+ sff_show_value_with_unit(id, 16, "Length (50um)", 10, "m", items);
+ sff_show_value_with_unit(id, 17,
+ "Length (62.5um)", 10, "m", items);
+ sff_show_value_with_unit(id, 18, "Length (Copper)", 1, "m", items);
+ sff_show_value_with_unit(id, 19, "Length (OM3)", 10, "m", items);
+ sff_8079_show_wavelength_or_copper_compliance(id, items);
+ sff_show_ascii(id, 20, 35, "Vendor name", items);
+ sff_8079_show_oui(id, items);
+ sff_show_ascii(id, 40, 55, "Vendor PN", items);
+ sff_show_ascii(id, 56, 59, "Vendor rev", items);
+ sff_8079_show_options(id, items);
+
+ printf("%-41s : %u%s\n", "BR margin, max", br_max, "%");
+ sprintf(val_string, "%u%%", br_max);
+ add_item_string(items, "BR margin, max", val_string);
+ printf("%-41s : %u%s\n", "BR margin, min", br_min, "%");
+ sprintf(val_string, "%u%%", br_min);
+ add_item_string(items, "BR margin, min", val_string);
+
+ sff_show_ascii(id, 68, 83, "Vendor SN", items);
+ sff_show_ascii(id, 84, 91, "Date code", items);
+ }
+}
--
2.25.1
next prev parent reply other threads:[~2022-04-20 7:05 UTC|newest]
Thread overview: 77+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-15 10:18 [PATCH] app/testpmd: format dump information of module EEPROM Robin Zhang
2022-02-15 13:28 ` Ferruh Yigit
2022-02-15 15:07 ` Thomas Monjalon
2022-02-16 2:26 ` Zhang, RobinX
2022-02-16 8:03 ` David Marchand
2022-02-16 8:45 ` Thomas Monjalon
2022-02-16 9:30 ` Bruce Richardson
2022-02-16 9:41 ` David Marchand
2022-02-16 10:02 ` Bruce Richardson
2022-02-16 10:15 ` David Marchand
2022-04-08 10:23 ` [PATCH v2] common/sff_module: add telemetry command to dump " Robin Zhang
2022-04-08 10:33 ` Bruce Richardson
2022-04-08 10:55 ` Zhang, RobinX
2022-04-08 11:00 ` Bruce Richardson
2022-04-08 11:20 ` Zhang, RobinX
2022-04-08 11:26 ` Bruce Richardson
2022-04-11 8:13 ` Zhang, RobinX
2022-04-11 9:13 ` Bruce Richardson
2022-04-13 12:13 ` Thomas Monjalon
2022-04-14 7:41 ` David Marchand
2022-04-20 7:00 ` [PATCH v3 0/5] add telemetry command for show " Robin Zhang
2022-04-20 7:00 ` [PATCH v3 1/5] ethdev: add telemetry command for " Robin Zhang
2022-04-20 9:16 ` Andrew Rybchenko
2022-04-20 7:00 ` [PATCH v3 2/5] ethdev: common utilities for different SFF specs Robin Zhang
2022-04-20 7:00 ` Robin Zhang [this message]
2022-04-20 7:00 ` [PATCH v3 4/5] ethdev: format module EEPROM for SFF-8472 Robin Zhang
2022-04-20 7:00 ` [PATCH v3 5/5] ethdev: format module EEPROM for SFF-8636 Robin Zhang
2022-04-20 8:49 ` [PATCH v3 0/5] add telemetry command for show module EEPROM Morten Brørup
2022-04-25 5:34 ` [PATCH v4 " Robin Zhang
2022-04-25 5:34 ` [PATCH v4 1/5] ethdev: add telemetry command for " Robin Zhang
2022-04-25 5:34 ` [PATCH v4 2/5] ethdev: common utilities for different SFF specs Robin Zhang
2022-04-25 5:34 ` [PATCH v4 3/5] ethdev: format module EEPROM for SFF-8079 Robin Zhang
2022-04-25 5:34 ` [PATCH v4 4/5] ethdev: format module EEPROM for SFF-8472 Robin Zhang
2022-04-25 5:34 ` [PATCH v4 5/5] ethdev: format module EEPROM for SFF-8636 Robin Zhang
2022-04-26 2:43 ` [PATCH v5 0/5] add telemetry command for show module EEPROM Robin Zhang
2022-04-26 2:43 ` [PATCH v5 1/5] ethdev: add telemetry command for " Robin Zhang
2022-05-04 10:16 ` Andrew Rybchenko
2022-04-26 2:43 ` [PATCH v5 2/5] ethdev: common utilities for different SFF specs Robin Zhang
2022-04-26 2:43 ` [PATCH v5 3/5] ethdev: format module EEPROM for SFF-8079 Robin Zhang
2022-04-26 2:43 ` [PATCH v5 4/5] ethdev: format module EEPROM for SFF-8472 Robin Zhang
2022-04-26 2:43 ` [PATCH v5 5/5] ethdev: format module EEPROM for SFF-8636 Robin Zhang
2022-05-04 8:13 ` [PATCH v5 0/5] add telemetry command for show module EEPROM Andrew Rybchenko
2022-05-11 2:14 ` [PATCH v6 " Robin Zhang
2022-05-11 2:14 ` [PATCH v6 1/5] ethdev: add telemetry command for " Robin Zhang
2022-05-11 2:14 ` [PATCH v6 2/5] ethdev: common utilities for different SFF specs Robin Zhang
2022-05-11 2:14 ` [PATCH v6 3/5] ethdev: format module EEPROM for SFF-8079 Robin Zhang
2022-05-11 2:14 ` [PATCH v6 4/5] ethdev: format module EEPROM for SFF-8472 Robin Zhang
2022-05-19 8:33 ` Andrew Rybchenko
2022-05-11 2:14 ` [PATCH v6 5/5] ethdev: format module EEPROM for SFF-8636 Robin Zhang
2022-05-24 6:24 ` [PATCH v7 0/5] add telemetry command for show module EEPROM Robin Zhang
2022-05-24 6:24 ` [PATCH v7 1/5] ethdev: add telemetry command for " Robin Zhang
2022-05-24 6:24 ` [PATCH v7 2/5] ethdev: common utilities for different SFF specs Robin Zhang
2022-05-24 6:24 ` [PATCH v7 3/5] ethdev: format module EEPROM for SFF-8079 Robin Zhang
2022-05-24 6:24 ` [PATCH v7 4/5] ethdev: format module EEPROM for SFF-8472 Robin Zhang
2022-05-24 6:24 ` [PATCH v7 5/5] ethdev: format module EEPROM for SFF-8636 Robin Zhang
2022-05-24 9:03 ` David Marchand
2022-05-25 2:43 ` Zhang, RobinX
2022-05-25 3:14 ` [PATCH v8 0/5] add telemetry command for show module EEPROM Robin Zhang
2022-05-25 3:14 ` [PATCH v8 1/5] ethdev: add telemetry command for " Robin Zhang
2022-05-25 9:24 ` Andrew Rybchenko
2022-05-25 3:14 ` [PATCH v8 2/5] ethdev: common utilities for different SFF specs Robin Zhang
2022-05-25 8:51 ` Andrew Rybchenko
2022-05-25 9:40 ` Andrew Rybchenko
2022-05-25 3:14 ` [PATCH v8 3/5] ethdev: format module EEPROM for SFF-8079 Robin Zhang
2022-05-25 9:55 ` Andrew Rybchenko
2022-05-25 3:14 ` [PATCH v8 4/5] ethdev: format module EEPROM for SFF-8472 Robin Zhang
2022-05-25 11:58 ` Andrew Rybchenko
2022-05-25 3:14 ` [PATCH v8 5/5] ethdev: format module EEPROM for SFF-8636 Robin Zhang
2022-05-25 9:01 ` Andrew Rybchenko
2022-05-25 12:01 ` Andrew Rybchenko
2022-05-26 7:32 ` [PATCH v9 0/5] add telemetry command for show module EEPROM Robin Zhang
2022-05-26 7:32 ` [PATCH v9 1/5] ethdev: add telemetry command for " Robin Zhang
2022-05-26 7:32 ` [PATCH v9 2/5] ethdev: add common code for different SFF specs Robin Zhang
2022-05-26 7:32 ` [PATCH v9 3/5] ethdev: support SFF-8079 module information telemetry Robin Zhang
2022-05-26 7:32 ` [PATCH v9 4/5] ethdev: support SFF-8472 " Robin Zhang
2022-05-26 7:32 ` [PATCH v9 5/5] ethdev: support SFF-8636 " Robin Zhang
2022-05-31 14:43 ` [PATCH v9 0/5] add telemetry command for show module EEPROM Andrew Rybchenko
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=20220420070017.119739-4-robinx.zhang@intel.com \
--to=robinx.zhang@intel.com \
--cc=andrew.rybchenko@oktetlabs.ru \
--cc=bruce.richardson@intel.com \
--cc=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=qi.z.zhang@intel.com \
--cc=qiming.yang@intel.com \
--cc=stevex.yang@intel.com \
--cc=thomas@monjalon.net \
/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;
as well as URLs for NNTP newsgroup(s).