From: Vidya Sagar Ravipati <vi...@cumulusnetworks.com>

This patch  provides following support
a) Support for diagnostics information for QSFP Plus/QSFP28 modules
   based on SFF-8436/SFF-8636

Standards for QSFP+/QSFP28
a) QSFP+/QSFP28 - SFF 8636 Rev 2.7 dated January 26,2016
b) SFF-8024 Rev 4.0 dated May 31, 2016

Signed-off-by: Vidya Sagar Ravipati <vi...@cumulusnetworks.com>
Acked-by: Bert Kenward <bkenw...@solarflare.com>
---
 Makefile.am |   2 +-
 ethtool.c   |   5 +
 internal.h  |   3 +
 qsfp.c      | 876 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 qsfp.h      | 595 +++++++++++++++++++++++++++++++++++++++++
 5 files changed, 1480 insertions(+), 1 deletion(-)
 create mode 100644 qsfp.c
 create mode 100644 qsfp.h

diff --git a/Makefile.am b/Makefile.am
index 6814bc9..1f3d767 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -13,7 +13,7 @@ ethtool_SOURCES += \
                  fec_8xx.c ibm_emac.c ixgb.c ixgbe.c natsemi.c \
                  pcnet32.c realtek.c tg3.c marvell.c vioc.c    \
                  smsc911x.c at76c50x-usb.c sfc.c stmmac.c      \
-                 sfpid.c sfpdiag.c ixgbevf.c tse.c vmxnet3.c
+                 sff-common.c sfpid.c sfpdiag.c ixgbevf.c tse.c vmxnet3.c 
qsfp.c
 endif
 
 TESTS = test-cmdline test-features
diff --git a/ethtool.c b/ethtool.c
index 4aa4762..1d6564e 100644
--- a/ethtool.c
+++ b/ethtool.c
@@ -4353,6 +4353,11 @@ static int do_getmodule(struct cmd_context *ctx)
                                sff8079_show_all(eeprom->data);
                                sff8472_show_all(eeprom->data);
                                break;
+                       case ETH_MODULE_SFF_8436:
+                       case ETH_MODULE_SFF_8636:
+                               sff8636_show_all(eeprom->data,
+                                                modinfo.eeprom_len);
+                               break;
 #endif
                        default:
                                geeprom_dump_hex = 1;
diff --git a/internal.h b/internal.h
index ef27ab2..3c08b74 100644
--- a/internal.h
+++ b/internal.h
@@ -345,4 +345,7 @@ void sff8079_show_all(const __u8 *id);
 /* Optics diagnostics */
 void sff8472_show_all(const __u8 *id);
 
+/* QSFP Optics diagnostics */
+void sff8636_show_all(const __u8 *id, __u32 eeprom_len);
+
 #endif /* ETHTOOL_INTERNAL_H__ */
diff --git a/qsfp.c b/qsfp.c
new file mode 100644
index 0000000..b22c5b7
--- /dev/null
+++ b/qsfp.c
@@ -0,0 +1,876 @@
+/*
+ * qsfp.c: Implements SFF-8636 based QSFP+/QSFP28 Diagnostics Memory map.
+ *
+ * Copyright 2010 Solarflare Communications Inc.
+ * Aurelien Guillaume <aurel...@iwi.me> (C) 2012
+ * Copyright (C) 2014 Cumulus networks Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Freeoftware Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ *  Vidya Ravipati <vi...@cumulusnetworks.com>
+ *   This implementation is loosely based on current SFP parser
+ *   and SFF-8636 spec Rev 2.7 (ftp://ftp.seagate.com/pub/sff/SFF-8636.PDF)
+ *   by SFF Committee.
+ */
+
+/*
+ *     Description:
+ *     a) The register/memory layout is up to 5 128 byte pages defined by
+ *             a "pages valid" register and switched via a "page select"
+ *             register. Memory of 256 bytes can be memory mapped at a time
+ *             according to SFF 8636.
+ *     b) SFF 8636 based 640 bytes memory layout is presented for parser
+ *
+ *           SFF 8636 based QSFP Memory Map
+ *
+ *           2-Wire Serial Address: 1010000x
+ *
+ *           Lower Page 00h (128 bytes)
+ *           ======================
+ *           |                     |
+ *           |Page Select Byte(127)|
+ *           ======================
+ *                    |
+ *                    V
+ *          ----------------------------------------
+ *         |             |            |             |
+ *         V             V            V             V
+ *      ----------   ----------   ---------    ------------
+ *     | Upper    | | Upper    | | Upper    | | Upper      |
+ *     | Page 00h | | Page 01h | | Page 02h | | Page 03h   |
+ *     |          | |(Optional)| |(Optional)| | (Optional) |
+ *     |          | |          | |          | |            |
+ *     |          | |          | |          | |            |
+ *     |    ID    | |   AST    | |  User    | |  For       |
+ *     |  Fields  | |  Table   | | EEPROM   | |  Cable     |
+ *     |          | |          | | Data     | | Assemblies |
+ *     |          | |          | |          | |            |
+ *     |          | |          | |          | |            |
+ *     -----------  -----------   ----------  --------------
+ *
+ *
+ **/
+#include <stdio.h>
+#include <math.h>
+#include "internal.h"
+#include "sff-common.h"
+#include "qsfp.h"
+
+#define MAX_DESC_SIZE  42
+
+/* Channel Monitoring Fields */
+struct sff8636_channel_diags {
+       __u16 bias_cur;      /* Measured bias current in 2uA units */
+       __u16 rx_power;      /* Measured RX Power */
+       __u16 tx_power;      /* Measured TX Power */
+};
+
+/* Module Monitoring Fields */
+struct sff8636_diags {
+#define MAX_CHANNEL_NUM 4
+#define LWARN 0
+#define HWARN 1
+#define LALRM 2
+#define HALRM 3
+
+        /* Supports DOM */
+       __u8 supports_dom;
+       /* Supports alarm/warning thold */
+       __u8 supports_alarms;
+       /* RX Power: 0 = OMA, 1 = Average power */
+       __u8  rx_power_type;
+       /* TX Power: 0 = Not supported, 1 = Average power */
+       __u8  tx_power_type;
+       /* SFP voltage in 0.1mV units */
+       __u16 sfp_voltage;
+       /* SFP Temp in 16-bit signed 1/256 Celcius */
+       __s16 sfp_temp;
+       /* [4] tables are low/high warn, low/high alarm */
+       /* SFP voltage in 0.1mV units */
+       __u16 thresh_sfp_voltage[4];
+       /* SFP Temp in 16-bit signed 1/256 Celcius */
+       __s16 thresh_sfp_temp[4];
+       /* Measured bias current in 2uA units */
+       __u16 thresh_bias_cur[4];
+       /* Measured TX Power */
+       __u16 thresh_tx_power[4];
+       /* Measured RX Power */
+       __u16 thresh_rx_power[4];
+       struct sff8636_channel_diags scd[MAX_CHANNEL_NUM];
+};
+
+static struct sff8636_aw_flags {
+       const char *str;        /* Human-readable string, null at the end */
+       int offset;             /* A2-relative address offset */
+       __u8 value;             /* Alarm is on if (offset & value) != 0. */
+} sff8636_aw_flags[] = {
+       { "Laser bias current high alarm   (Chan 1)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_1_HALARM) },
+       { "Laser bias current low alarm    (Chan 1)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_1_LALARM) },
+       { "Laser bias current high warning (Chan 1)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_1_HWARN) },
+       { "Laser bias current low warning  (Chan 1)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_1_LWARN) },
+
+       { "Laser bias current high alarm   (Chan 2)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_2_HALARM) },
+       { "Laser bias current low alarm    (Chan 2)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_2_LALARM) },
+       { "Laser bias current high warning (Chan 2)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_2_HWARN) },
+       { "Laser bias current low warning  (Chan 2)",
+               SFF8636_TX_BIAS_12_AW_OFFSET, (SFF8636_TX_BIAS_2_LWARN) },
+
+       { "Laser bias current high alarm   (Chan 3)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_3_HALARM) },
+       { "Laser bias current low alarm    (Chan 3)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_3_LALARM) },
+       { "Laser bias current high warning (Chan 3)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_3_HWARN) },
+       { "Laser bias current low warning  (Chan 3)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_3_LWARN) },
+
+       { "Laser bias current high alarm   (Chan 4)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_4_HALARM) },
+       { "Laser bias current low alarm    (Chan 4)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_4_LALARM) },
+       { "Laser bias current high warning (Chan 4)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_4_HWARN) },
+       { "Laser bias current low warning  (Chan 4)",
+               SFF8636_TX_BIAS_34_AW_OFFSET, (SFF8636_TX_BIAS_4_LWARN) },
+
+       { "Module temperature high alarm",
+               SFF8636_TEMP_AW_OFFSET, (SFF8636_TEMP_HALARM_STATUS) },
+       { "Module temperature low alarm",
+               SFF8636_TEMP_AW_OFFSET, (SFF8636_TEMP_LALARM_STATUS) },
+       { "Module temperature high warning",
+               SFF8636_TEMP_AW_OFFSET, (SFF8636_TEMP_HWARN_STATUS) },
+       { "Module temperature low warning",
+               SFF8636_TEMP_AW_OFFSET, (SFF8636_TEMP_LWARN_STATUS) },
+
+       { "Module voltage high alarm",
+               SFF8636_VCC_AW_OFFSET, (SFF8636_VCC_HALARM_STATUS) },
+       { "Module voltage low alarm",
+               SFF8636_VCC_AW_OFFSET, (SFF8636_VCC_LALARM_STATUS) },
+       { "Module voltage high warning",
+               SFF8636_VCC_AW_OFFSET, (SFF8636_VCC_HWARN_STATUS) },
+       { "Module voltage low warning",
+               SFF8636_VCC_AW_OFFSET, (SFF8636_VCC_LWARN_STATUS) },
+
+       { "Laser tx power high alarm   (Channel 1)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_1_HALARM) },
+       { "Laser tx power low alarm    (Channel 1)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_1_LALARM) },
+       { "Laser tx power high warning (Channel 1)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_1_HWARN) },
+       { "Laser tx power low warning  (Channel 1)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_1_LWARN) },
+
+       { "Laser tx power high alarm   (Channel 2)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_2_HALARM) },
+       { "Laser tx power low alarm    (Channel 2)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_2_LALARM) },
+       { "Laser tx power high warning (Channel 2)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_2_HWARN) },
+       { "Laser tx power low warning  (Channel 2)",
+               SFF8636_TX_PWR_12_AW_OFFSET, (SFF8636_TX_PWR_2_LWARN) },
+
+       { "Laser tx power high alarm   (Channel 3)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_3_HALARM) },
+       { "Laser tx power low alarm    (Channel 3)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_3_LALARM) },
+       { "Laser tx power high warning (Channel 3)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_3_HWARN) },
+       { "Laser tx power low warning  (Channel 3)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_3_LWARN) },
+
+       { "Laser tx power high alarm   (Channel 4)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_4_HALARM) },
+       { "Laser tx power low alarm    (Channel 4)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_4_LALARM) },
+       { "Laser tx power high warning (Channel 4)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_4_HWARN) },
+       { "Laser tx power low warning  (Channel 4)",
+               SFF8636_TX_PWR_34_AW_OFFSET, (SFF8636_TX_PWR_4_LWARN) },
+
+       { "Laser rx power high alarm   (Channel 1)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_1_HALARM) },
+       { "Laser rx power low alarm    (Channel 1)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_1_LALARM) },
+       { "Laser rx power high warning (Channel 1)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_1_HWARN) },
+       { "Laser rx power low warning  (Channel 1)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_1_LWARN) },
+
+       { "Laser rx power high alarm   (Channel 2)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_2_HALARM) },
+       { "Laser rx power low alarm    (Channel 2)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_2_LALARM) },
+       { "Laser rx power high warning (Channel 2)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_2_HWARN) },
+       { "Laser rx power low warning  (Channel 2)",
+               SFF8636_RX_PWR_12_AW_OFFSET, (SFF8636_RX_PWR_2_LWARN) },
+
+       { "Laser rx power high alarm   (Channel 3)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_3_HALARM) },
+       { "Laser rx power low alarm    (Channel 3)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_3_LALARM) },
+       { "Laser rx power high warning (Channel 3)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_3_HWARN) },
+       { "Laser rx power low warning  (Channel 3)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_3_LWARN) },
+
+       { "Laser rx power high alarm   (Channel 4)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_4_HALARM) },
+       { "Laser rx power low alarm    (Channel 4)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_4_LALARM) },
+       { "Laser rx power high warning (Channel 4)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_4_HWARN) },
+       { "Laser rx power low warning  (Channel 4)",
+               SFF8636_RX_PWR_34_AW_OFFSET, (SFF8636_RX_PWR_4_LWARN) },
+
+       { NULL, 0, 0 },
+};
+
+static void sff8636_show_identifier(const __u8 *id)
+{
+       sff8024_show_identifier(id, SFF8636_ID_OFFSET);
+}
+
+static void sff8636_show_ext_identifier(const __u8 *id)
+{
+       printf("\t%-41s : 0x%02x\n", "Extended identifier",
+              id[SFF8636_EXT_ID_OFFSET]);
+
+       static const char *pfx =
+               "\tExtended identifier description           :";
+
+       switch (id[SFF8636_EXT_ID_OFFSET] & SFF8636_EXT_ID_PWR_CLASS_MASK) {
+       case SFF8636_EXT_ID_PWR_CLASS_1:
+               printf("%s 1.5W max. Power consumption\n", pfx);
+               break;
+       case SFF8636_EXT_ID_PWR_CLASS_2:
+               printf("%s 2.0W max. Power consumption\n", pfx);
+               break;
+       case SFF8636_EXT_ID_PWR_CLASS_3:
+               printf("%s 2.5W max. Power consumption\n", pfx);
+               break;
+       case SFF8636_EXT_ID_PWR_CLASS_4:
+               printf("%s 3.5W max. Power consumption\n", pfx);
+               break;
+       }
+
+       if (id[SFF8636_EXT_ID_OFFSET] & SFF8636_EXT_ID_CDR_TX_MASK)
+               printf("%s CDR present in TX,", pfx);
+       else
+               printf("%s No CDR in TX,", pfx);
+
+       if (id[SFF8636_EXT_ID_OFFSET] & SFF8636_EXT_ID_CDR_RX_MASK)
+               printf(" CDR present in RX\n");
+       else
+               printf(" No CDR in RX\n");
+
+       switch (id[SFF8636_EXT_ID_OFFSET] & SFF8636_EXT_ID_EPWR_CLASS_MASK) {
+       case SFF8636_EXT_ID_PWR_CLASS_LEGACY:
+               printf("%s", pfx);
+               break;
+       case SFF8636_EXT_ID_PWR_CLASS_5:
+               printf("%s 4.0W max. Power consumption,", pfx);
+               break;
+       case SFF8636_EXT_ID_PWR_CLASS_6:
+               printf("%s 4.5W max. Power consumption, ", pfx);
+               break;
+       case SFF8636_EXT_ID_PWR_CLASS_7:
+               printf("%s 5.0W max. Power consumption, ", pfx);
+               break;
+       }
+       if (id[SFF8636_PWR_MODE_OFFSET] & SFF8636_HIGH_PWR_ENABLE)
+               printf(" High Power Class (> 3.5 W) enabled\n");
+       else
+               printf(" High Power Class (> 3.5 W) not enabled\n");
+}
+
+static void sff8636_show_connector(const __u8 *id)
+{
+       sff8024_show_connector(id, SFF8636_CTOR_OFFSET);
+}
+
+static void sff8636_show_transceiver(const __u8 *id)
+{
+       static const char *pfx =
+               "\tTransceiver type                          :";
+
+       printf("\t%-41s : 0x%02x 0x%02x 0x%02x "
+                       "0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
+                       "Transceiver codes",
+                       id[SFF8636_ETHERNET_COMP_OFFSET],
+                       id[SFF8636_SONET_COMP_OFFSET],
+                       id[SFF8636_SAS_COMP_OFFSET],
+                       id[SFF8636_GIGE_COMP_OFFSET],
+                       id[SFF8636_FC_LEN_OFFSET],
+                       id[SFF8636_FC_TECH_OFFSET],
+                       id[SFF8636_FC_TRANS_MEDIA_OFFSET],
+                       id[SFF8636_FC_SPEED_OFFSET]);
+
+       /* 10G/40G Ethernet Compliance Codes */
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_10G_LRM)
+               printf("%s 10G Ethernet: 10G Base-LRM\n", pfx);
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_10G_LR)
+               printf("%s 10G Ethernet: 10G Base-LR\n", pfx);
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_10G_SR)
+               printf("%s 10G Ethernet: 10G Base-SR\n", pfx);
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_40G_CR4)
+               printf("%s 40G Ethernet: 40G Base-CR4\n", pfx);
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_40G_SR4)
+               printf("%s 40G Ethernet: 40G Base-SR4\n", pfx);
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_40G_LR4)
+               printf("%s 40G Ethernet: 40G Base-LR4\n", pfx);
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_40G_ACTIVE)
+               printf("%s 40G Ethernet: 40G Active Cable (XLPPI)\n", pfx);
+       /* Extended Specification Compliance Codes from SFF-8024 */
+       if (id[SFF8636_ETHERNET_COMP_OFFSET] & SFF8636_ETHERNET_RSRVD) {
+               switch (id[SFF8636_OPTION_1_OFFSET]) {
+               case SFF8636_ETHERNET_UNSPECIFIED:
+                       printf("%s (reserved or unknown)\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_AOC:
+                       printf("%s 100G Ethernet: 100G AOC or 25GAUI C2M AOC 
with worst BER of 5x10^(-5)\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_SR4:
+                       printf("%s 100G Ethernet: 100G Base-SR4 or 
25GBase-SR\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_LR4:
+                       printf("%s 100G Ethernet: 100G Base-LR4\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_ER4:
+                       printf("%s 100G Ethernet: 100G Base-ER4\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_SR10:
+                       printf("%s 100G Ethernet: 100G Base-SR10\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_CWDM4_FEC:
+                       printf("%s 100G Ethernet: 100G CWDM4 MSA with FEC\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_PSM4:
+                       printf("%s 100G Ethernet: 100G PSM4 Parallel SMF\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_ACC:
+                       printf("%s 100G Ethernet: 100G ACC or 25GAUI C2M ACC 
with worst BER of 5x10^(-5)\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_CWDM4_NO_FEC:
+                       printf("%s 100G Ethernet: 100G CWDM4 MSA without FEC\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_RSVD1:
+                       printf("%s (reserved or unknown)\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_CR4:
+                       printf("%s 100G Ethernet: 100G Base-CR4 or 25G Base-CR 
CA-L\n",
+                               pfx);
+                       break;
+               case SFF8636_ETHERNET_25G_CR_CA_S:
+                       printf("%s 25G Ethernet: 25G Base-CR CA-S\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_25G_CR_CA_N:
+                       printf("%s 25G Ethernet: 25G Base-CR CA-N\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_40G_ER4:
+                       printf("%s 40G Ethernet: 40G Base-ER4\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_4X10_SR:
+                       printf("%s 4x10G Ethernet: 10G Base-SR\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_40G_PSM4:
+                       printf("%s 40G Ethernet: 40G PSM4 Parallel SMF\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_G959_P1I1_2D1:
+                       printf("%s Ethernet: G959.1 profile P1I1-2D1 (10709 
MBd, 2km, 1310nm SM)\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_G959_P1S1_2D2:
+                       printf("%s Ethernet: G959.1 profile P1S1-2D2 (10709 
MBd, 40km, 1550nm SM)\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_G959_P1L1_2D2:
+                       printf("%s Ethernet: G959.1 profile P1L1-2D2 (10709 
MBd, 80km, 1550nm SM)\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_10GT_SFI:
+                       printf("%s 10G Ethernet: 10G Base-T with SFI electrical 
interface\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_CLR4:
+                       printf("%s 100G Ethernet: 100G CLR4\n", pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_AOC2:
+                       printf("%s 100G Ethernet: 100G AOC or 25GAUI C2M AOC 
with worst BER of 10^(-12)\n",
+                              pfx);
+                       break;
+               case SFF8636_ETHERNET_100G_ACC2:
+                       printf("%s 100G Ethernet: 100G ACC or 25GAUI C2M ACC 
with worst BER of 10^(-12)\n",
+                              pfx);
+                       break;
+               default:
+                       printf("%s (reserved or unknown)\n", pfx);
+                       break;
+               }
+       }
+
+       /* SONET Compliance Codes */
+       if (id[SFF8636_SONET_COMP_OFFSET] & (SFF8636_SONET_40G_OTN))
+               printf("%s 40G OTN (OTU3B/OTU3C)\n", pfx);
+       if (id[SFF8636_SONET_COMP_OFFSET] & (SFF8636_SONET_OC48_LR))
+               printf("%s SONET: OC-48, long reach\n", pfx);
+       if (id[SFF8636_SONET_COMP_OFFSET] & (SFF8636_SONET_OC48_IR))
+               printf("%s SONET: OC-48, intermediate reach\n", pfx);
+       if (id[SFF8636_SONET_COMP_OFFSET] & (SFF8636_SONET_OC48_SR))
+               printf("%s SONET: OC-48, short reach\n", pfx);
+
+       /* SAS/SATA Compliance Codes */
+       if (id[SFF8636_SAS_COMP_OFFSET] & (SFF8636_SAS_6G))
+               printf("%s SAS 6.0G\n", pfx);
+       if (id[SFF8636_SAS_COMP_OFFSET] & (SFF8636_SAS_3G))
+               printf("%s SAS 3.0G\n", pfx);
+
+       /* Ethernet Compliance Codes */
+       if (id[SFF8636_GIGE_COMP_OFFSET] & SFF8636_GIGE_1000_BASE_T)
+               printf("%s Ethernet: 1000BASE-T\n", pfx);
+       if (id[SFF8636_GIGE_COMP_OFFSET] & SFF8636_GIGE_1000_BASE_CX)
+               printf("%s Ethernet: 1000BASE-CX\n", pfx);
+       if (id[SFF8636_GIGE_COMP_OFFSET] & SFF8636_GIGE_1000_BASE_LX)
+               printf("%s Ethernet: 1000BASE-LX\n", pfx);
+       if (id[SFF8636_GIGE_COMP_OFFSET] & SFF8636_GIGE_1000_BASE_SX)
+               printf("%s Ethernet: 1000BASE-SX\n", pfx);
+
+       /* Fibre Channel link length */
+       if (id[SFF8636_FC_LEN_OFFSET] & SFF8636_FC_LEN_VERY_LONG)
+               printf("%s FC: very long distance (V)\n", pfx);
+       if (id[SFF8636_FC_LEN_OFFSET] & SFF8636_FC_LEN_SHORT)
+               printf("%s FC: short distance (S)\n", pfx);
+       if (id[SFF8636_FC_LEN_OFFSET] & SFF8636_FC_LEN_INT)
+               printf("%s FC: intermediate distance (I)\n", pfx);
+       if (id[SFF8636_FC_LEN_OFFSET] & SFF8636_FC_LEN_LONG)
+               printf("%s FC: long distance (L)\n", pfx);
+       if (id[SFF8636_FC_LEN_OFFSET] & SFF8636_FC_LEN_MED)
+               printf("%s FC: medium distance (M)\n", pfx);
+
+       /* Fibre Channel transmitter technology */
+       if (id[SFF8636_FC_LEN_OFFSET] & SFF8636_FC_TECH_LONG_LC)
+               printf("%s FC: Longwave laser (LC)\n", pfx);
+       if (id[SFF8636_FC_LEN_OFFSET] & SFF8636_FC_TECH_ELEC_INTER)
+               printf("%s FC: Electrical inter-enclosure (EL)\n", pfx);
+       if (id[SFF8636_FC_TECH_OFFSET] & SFF8636_FC_TECH_ELEC_INTRA)
+               printf("%s FC: Electrical intra-enclosure (EL)\n", pfx);
+       if (id[SFF8636_FC_TECH_OFFSET] & SFF8636_FC_TECH_SHORT_WO_OFC)
+               printf("%s FC: Shortwave laser w/o OFC (SN)\n", pfx);
+       if (id[SFF8636_FC_TECH_OFFSET] & SFF8636_FC_TECH_SHORT_W_OFC)
+               printf("%s FC: Shortwave laser with OFC (SL)\n", pfx);
+       if (id[SFF8636_FC_TECH_OFFSET] & SFF8636_FC_TECH_LONG_LL)
+               printf("%s FC: Longwave laser (LL)\n", pfx);
+
+       /* Fibre Channel transmission media */
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_TW)
+               printf("%s FC: Twin Axial Pair (TW)\n", pfx);
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_TP)
+               printf("%s FC: Twisted Pair (TP)\n", pfx);
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_MI)
+               printf("%s FC: Miniature Coax (MI)\n", pfx);
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_TV)
+               printf("%s FC: Video Coax (TV)\n", pfx);
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_M6)
+               printf("%s FC: Multimode, 62.5m (M6)\n", pfx);
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_M5)
+               printf("%s FC: Multimode, 50m (M5)\n", pfx);
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_OM3)
+               printf("%s FC: Multimode, 50um (OM3)\n", pfx);
+       if (id[SFF8636_FC_TRANS_MEDIA_OFFSET] & SFF8636_FC_TRANS_MEDIA_SM)
+               printf("%s FC: Single Mode (SM)\n", pfx);
+
+       /* Fibre Channel speed */
+       if (id[SFF8636_FC_SPEED_OFFSET] & SFF8636_FC_SPEED_1200_MBPS)
+               printf("%s FC: 1200 MBytes/sec\n", pfx);
+       if (id[SFF8636_FC_SPEED_OFFSET] & SFF8636_FC_SPEED_800_MBPS)
+               printf("%s FC: 800 MBytes/sec\n", pfx);
+       if (id[SFF8636_FC_SPEED_OFFSET] & SFF8636_FC_SPEED_1600_MBPS)
+               printf("%s FC: 1600 MBytes/sec\n", pfx);
+       if (id[SFF8636_FC_SPEED_OFFSET] & SFF8636_FC_SPEED_400_MBPS)
+               printf("%s FC: 400 MBytes/sec\n", pfx);
+       if (id[SFF8636_FC_SPEED_OFFSET] & SFF8636_FC_SPEED_200_MBPS)
+               printf("%s FC: 200 MBytes/sec\n", pfx);
+       if (id[SFF8636_FC_SPEED_OFFSET] & SFF8636_FC_SPEED_100_MBPS)
+               printf("%s FC: 100 MBytes/sec\n", pfx);
+}
+
+static void sff8636_show_encoding(const __u8 *id)
+{
+       sff8024_show_encoding(id, SFF8636_ENCODING_OFFSET, ETH_MODULE_SFF_8636);
+}
+
+static void sff8636_show_rate_identifier(const __u8 *id)
+{
+       /* TODO: Need to fix rate select logic */
+       printf("\t%-41s : 0x%02x\n", "Rate identifier",
+              id[SFF8636_EXT_RS_OFFSET]);
+}
+
+static void sff8636_show_oui(const __u8 *id)
+{
+       sff8024_show_oui(id, SFF8636_VENDOR_OUI_OFFSET);
+}
+
+static void sff8636_show_wavelength_or_copper_compliance(const __u8 *id)
+{
+       printf("\t%-41s : 0x%02x", "Transmitter technology",
+              (id[SFF8636_DEVICE_TECH_OFFSET] & SFF8636_TRANS_TECH_MASK));
+
+       switch (id[SFF8636_DEVICE_TECH_OFFSET] & SFF8636_TRANS_TECH_MASK) {
+       case SFF8636_TRANS_850_VCSEL:
+               printf(" (850 nm VCSEL)\n");
+               break;
+       case SFF8636_TRANS_1310_VCSEL:
+               printf(" (1310 nm VCSEL)\n");
+               break;
+       case SFF8636_TRANS_1550_VCSEL:
+               printf(" (1550 nm VCSEL)\n");
+               break;
+       case SFF8636_TRANS_1310_FP:
+               printf(" (1310 nm FP)\n");
+               break;
+       case SFF8636_TRANS_1310_DFB:
+               printf(" (1310 nm DFB)\n");
+               break;
+       case SFF8636_TRANS_1550_DFB:
+               printf(" (1550 nm DFB)\n");
+               break;
+       case SFF8636_TRANS_1310_EML:
+               printf(" (1310 nm EML)\n");
+               break;
+       case SFF8636_TRANS_1550_EML:
+               printf(" (1550 nm EML)\n");
+               break;
+       case SFF8636_TRANS_OTHERS:
+               printf(" (Others/Undefined)\n");
+               break;
+       case SFF8636_TRANS_1490_DFB:
+               printf(" (1490 nm DFB)\n");
+               break;
+       case SFF8636_TRANS_COPPER_PAS_UNEQUAL:
+               printf(" (Copper cable unequalized)\n");
+               break;
+       case SFF8636_TRANS_COPPER_PAS_EQUAL:
+               printf(" (Copper cable passive equalized)\n");
+               break;
+       case SFF8636_TRANS_COPPER_LNR_FAR_EQUAL:
+               printf(" (Copper cable, near and far end limiting active 
equalizers)\n");
+               break;
+       case SFF8636_TRANS_COPPER_FAR_EQUAL:
+               printf(" (Copper cable, far end limiting active equalizers)\n");
+               break;
+       case SFF8636_TRANS_COPPER_NEAR_EQUAL:
+               printf(" (Copper cable, near end limiting active 
equalizers)\n");
+               break;
+       case SFF8636_TRANS_COPPER_LNR_EQUAL:
+               printf(" (Copper cable, linear active equalizers)\n");
+               break;
+       }
+
+       if ((id[SFF8636_DEVICE_TECH_OFFSET] & SFF8636_TRANS_TECH_MASK)
+                       >= SFF8636_TRANS_COPPER_PAS_UNEQUAL) {
+               printf("\t%-41s : %udb\n", "Attenuation at 2.5GHz",
+                      id[SFF8636_WAVELEN_HIGH_BYTE_OFFSET]);
+               printf("\t%-41s : %udb\n", "Attenuation at 5.0GHz",
+                      id[SFF8636_WAVELEN_LOW_BYTE_OFFSET]);
+               printf("\t%-41s : %udb\n", "Attenuation at 7.0GHz",
+                      id[SFF8636_WAVE_TOL_HIGH_BYTE_OFFSET]);
+               printf("\t%-41s : %udb\n", "Attenuation at 12.9GHz",
+                      id[SFF8636_WAVE_TOL_LOW_BYTE_OFFSET]);
+       } else {
+               printf("\t%-41s : %.3lfnm\n", "Laser wavelength",
+                      (((id[SFF8636_WAVELEN_HIGH_BYTE_OFFSET] << 8) |
+                        id[SFF8636_WAVELEN_LOW_BYTE_OFFSET]) * 0.05));
+               printf("\t%-41s : %.3lfnm\n", "Laser wavelength tolerance",
+                      (((id[SFF8636_WAVE_TOL_HIGH_BYTE_OFFSET] << 8) |
+                        id[SFF8636_WAVE_TOL_LOW_BYTE_OFFSET]) * 0.005));
+       }
+}
+
+static void sff8636_show_revision_compliance(const __u8 *id)
+{
+       static const char *pfx =
+               "\tRevision Compliance                       :";
+
+       switch (id[SFF8636_REV_COMPLIANCE_OFFSET]) {
+       case SFF8636_REV_UNSPECIFIED:
+               printf("%s Revision not specified\n", pfx);
+               break;
+       case SFF8636_REV_8436_48:
+               printf("%s SFF-8436 Rev 4.8 or earlier\n", pfx);
+               break;
+       case SFF8636_REV_8436_8636:
+               printf("%s SFF-8436 Rev 4.8 or earlier\n", pfx);
+               break;
+       case SFF8636_REV_8636_13:
+               printf("%s SFF-8636 Rev 1.3 or earlier\n", pfx);
+               break;
+       case SFF8636_REV_8636_14:
+               printf("%s SFF-8636 Rev 1.4\n", pfx);
+               break;
+       case SFF8636_REV_8636_15:
+               printf("%s SFF-8636 Rev 1.5\n", pfx);
+               break;
+       case SFF8636_REV_8636_20:
+               printf("%s SFF-8636 Rev 2.0\n", pfx);
+               break;
+       case SFF8636_REV_8636_27:
+               printf("%s SFF-8636 Rev 2.5/2.6/2.7\n", pfx);
+               break;
+       default:
+               printf("%s Unallocated\n", pfx);
+               break;
+       }
+}
+
+/*
+ * 2-byte internal temperature conversions:
+ * First byte is a signed 8-bit integer, which is the temp decimal part
+ * Second byte are 1/256th of degree, which are added to the dec part.
+ */
+#define SFF8636_OFFSET_TO_TEMP(offset) ((__s16)OFFSET_TO_U16(offset))
+
+static void sff8636_dom_parse(const __u8 *id, struct sff8636_diags *sd)
+{
+       int i = 0;
+
+       /* Monitoring Thresholds for Alarms and Warnings */
+       sd->thresh_sfp_voltage[HALRM] = OFFSET_TO_U16(SFF8636_VCC_HALRM);
+       sd->thresh_sfp_voltage[LALRM] = OFFSET_TO_U16(SFF8636_VCC_LALRM);
+       sd->thresh_sfp_voltage[HWARN] = OFFSET_TO_U16(SFF8636_VCC_HWARN);
+       sd->thresh_sfp_voltage[LWARN] = OFFSET_TO_U16(SFF8636_VCC_LWARN);
+
+       sd->thresh_sfp_temp[HALRM] = SFF8636_OFFSET_TO_TEMP(SFF8636_TEMP_HALRM);
+       sd->thresh_sfp_temp[LALRM] = SFF8636_OFFSET_TO_TEMP(SFF8636_TEMP_LALRM);
+       sd->thresh_sfp_temp[HWARN] = SFF8636_OFFSET_TO_TEMP(SFF8636_TEMP_HWARN);
+       sd->thresh_sfp_temp[LWARN] = SFF8636_OFFSET_TO_TEMP(SFF8636_TEMP_LWARN);
+
+       sd->thresh_bias_cur[HALRM] = OFFSET_TO_U16(SFF8636_TX_BIAS_HALRM);
+       sd->thresh_bias_cur[LALRM] = OFFSET_TO_U16(SFF8636_TX_BIAS_LALRM);
+       sd->thresh_bias_cur[HWARN] = OFFSET_TO_U16(SFF8636_TX_BIAS_HWARN);
+       sd->thresh_bias_cur[LWARN] = OFFSET_TO_U16(SFF8636_TX_BIAS_LWARN);
+
+       sd->thresh_tx_power[HALRM] = OFFSET_TO_U16(SFF8636_TX_PWR_HALRM);
+       sd->thresh_tx_power[LALRM] = OFFSET_TO_U16(SFF8636_TX_PWR_LALRM);
+       sd->thresh_tx_power[HWARN] = OFFSET_TO_U16(SFF8636_TX_PWR_HWARN);
+       sd->thresh_tx_power[LWARN] = OFFSET_TO_U16(SFF8636_TX_PWR_LWARN);
+
+       sd->thresh_rx_power[HALRM] = OFFSET_TO_U16(SFF8636_RX_PWR_HALRM);
+       sd->thresh_rx_power[LALRM] = OFFSET_TO_U16(SFF8636_RX_PWR_LALRM);
+       sd->thresh_rx_power[HWARN] = OFFSET_TO_U16(SFF8636_RX_PWR_HWARN);
+       sd->thresh_rx_power[LWARN] = OFFSET_TO_U16(SFF8636_RX_PWR_LWARN);
+
+       /* Current Values for Module */
+       sd->sfp_voltage = OFFSET_TO_U16(SFF8636_VCC_CURR);
+       sd->sfp_temp = SFF8636_OFFSET_TO_TEMP(SFF8636_TEMP_CURR);
+
+       /* Channel Specific Data */
+       for (i = 0; i < MAX_CHANNEL_NUM; i++) {
+               u8 rx_power_offset, tx_bias_offset;
+               u8 tx_power_offset;
+
+               switch (i) {
+               case 0:
+                       rx_power_offset = SFF8636_RX_PWR_1_OFFSET;
+                       tx_power_offset = SFF8636_TX_PWR_1_OFFSET;
+                       tx_bias_offset = SFF8636_TX_BIAS_1_OFFSET;
+                       break;
+               case 1:
+                       rx_power_offset = SFF8636_RX_PWR_2_OFFSET;
+                       tx_power_offset = SFF8636_TX_PWR_2_OFFSET;
+                       tx_bias_offset = SFF8636_TX_BIAS_2_OFFSET;
+                       break;
+               case 2:
+                       rx_power_offset = SFF8636_RX_PWR_3_OFFSET;
+                       tx_power_offset = SFF8636_TX_PWR_3_OFFSET;
+                       tx_bias_offset = SFF8636_TX_BIAS_3_OFFSET;
+                       break;
+               case 3:
+                       rx_power_offset = SFF8636_RX_PWR_4_OFFSET;
+                       tx_power_offset = SFF8636_TX_PWR_4_OFFSET;
+                       tx_bias_offset = SFF8636_TX_BIAS_4_OFFSET;
+                       break;
+               default:
+                       printf(" Invalid channel: %d\n", i);
+                       break;
+               }
+               sd->scd[i].bias_cur = OFFSET_TO_U16(tx_bias_offset);
+               sd->scd[i].rx_power = OFFSET_TO_U16(rx_power_offset);
+               sd->scd[i].tx_power = OFFSET_TO_U16(tx_power_offset);
+       }
+}
+
+static void sff8636_show_dom(const __u8 *id, __u32 eeprom_len)
+{
+       struct sff8636_diags sd;
+       char *rx_power_string = NULL;
+       char power_string[MAX_DESC_SIZE];
+       int i;
+
+       /*
+        * There is no clear identifier to signify the existence of
+        * optical diagnostics similar to SFF-8472. So checking existence
+        * of page 3, will provide the gurantee for existence of alarms
+        * and thresholds
+        * If pagging support exists, then support_alarms is marked as 1
+        */
+
+       if (eeprom_len == ETH_MODULE_SFF_8636_MAX_LEN) {
+               if (!(id[SFF8636_STATUS_2_OFFSET] &
+                                       SFF8636_STATUS_PAGE_3_PRESENT)) {
+                       sd.supports_alarms = 1;
+               }
+       }
+
+       sd.rx_power_type = id[SFF8636_DIAG_TYPE_OFFSET] &
+                                               SFF8636_RX_PWR_TYPE_MASK;
+       sd.tx_power_type = id[SFF8636_DIAG_TYPE_OFFSET] &
+                                               SFF8636_RX_PWR_TYPE_MASK;
+
+       sff8636_dom_parse(id, &sd);
+
+       PRINT_TEMP("Module temperature", sd.sfp_temp);
+       PRINT_VCC("Module voltage", sd.sfp_voltage);
+
+       /*
+        * SFF-8636/8436 spec is not clear whether RX power/ TX bias current
+        * current fields are supported or not. A valid temperature reading
+        * is used as existence for TX/RX power.
+        */
+       if ((sd.sfp_temp == 0x0) || (sd.sfp_temp == 0xFFFF))
+               return;
+
+       printf("\t%-41s : %s\n", "Alarm/warning flags implemented",
+              (sd.supports_alarms ? "Yes" : "No"));
+
+       for (i = 0; i < MAX_CHANNEL_NUM; i++) {
+               snprintf(power_string, MAX_DESC_SIZE, "%s (Channel %d)",
+                        "Laser tx bias current", i + 1);
+               PRINT_BIAS(power_string, sd.scd[i].bias_cur);
+       }
+
+       for (i = 0; i < MAX_CHANNEL_NUM; i++) {
+               snprintf(power_string, MAX_DESC_SIZE, "%s (Channel %d)",
+                        "Transmit avg optical power", i + 1);
+               PRINT_xX_PWR(power_string, sd.scd[i].tx_power);
+       }
+
+       if (!sd.rx_power_type)
+               rx_power_string = "Receiver signal OMA";
+       else
+               rx_power_string = "Rcvr signal avg optical power";
+
+       for (i = 0; i < MAX_CHANNEL_NUM; i++) {
+               snprintf(power_string, MAX_DESC_SIZE, "%s(Channel %d)",
+                        rx_power_string, i + 1);
+               PRINT_xX_PWR(power_string, sd.scd[i].rx_power);
+       }
+
+       if (sd.supports_alarms) {
+               for (i = 0; sff8636_aw_flags[i].str; ++i) {
+                       printf("\t%-41s : %s\n", sff8636_aw_flags[i].str,
+                              id[sff8636_aw_flags[i].offset]
+                              & sff8636_aw_flags[i].value ? "On" : "Off");
+               }
+
+               PRINT_THRESH_BIAS("Laser bias current high alarm threshold",
+                                 HALRM);
+               PRINT_THRESH_BIAS("Laser bias current low alarm threshold",
+                                 LALRM);
+               PRINT_THRESH_BIAS("Laser bias current high warning threshold",
+                                 HWARN);
+               PRINT_THRESH_BIAS("Laser bias current low warning threshold",
+                                 LWARN);
+
+               PRINT_THRESH_TEMP("Module temperature high alarm threshold",
+                                 HALRM);
+               PRINT_THRESH_TEMP("Module temperature low alarm threshold",
+                                 LALRM);
+               PRINT_THRESH_TEMP("Module temperature high warning threshold",
+                                 HWARN);
+               PRINT_THRESH_TEMP("Module temperature low warning threshold",
+                                 LWARN);
+
+               PRINT_THRESH_VCC("Module voltage high alarm threshold",
+                                HALRM);
+               PRINT_THRESH_VCC("Module voltage low alarm threshold",
+                                LALRM);
+               PRINT_THRESH_VCC("Module voltage high warning threshold",
+                                HWARN);
+               PRINT_THRESH_VCC("Module voltage low warning threshold",
+                                LWARN);
+
+               PRINT_xX_THRESH_PWR("Laser tx power high alarm threshold",
+                                   sd.thresh_tx_power, HALRM);
+               PRINT_xX_THRESH_PWR("Laser tx power low alarm threshold",
+                                   sd.thresh_tx_power, LALRM);
+               PRINT_xX_THRESH_PWR("Laser tx power high warning threshold",
+                                   sd.thresh_tx_power, HWARN);
+               PRINT_xX_THRESH_PWR("Laser tx power low warning threshold",
+                                   sd.thresh_tx_power, LWARN);
+
+               PRINT_xX_THRESH_PWR("Laser rx power high alarm threshold",
+                                   sd.thresh_rx_power, HALRM);
+               PRINT_xX_THRESH_PWR("Laser rx power low alarm threshold",
+                                   sd.thresh_rx_power, LALRM);
+               PRINT_xX_THRESH_PWR("Laser rx power high warning threshold",
+                                   sd.thresh_rx_power, HWARN);
+               PRINT_xX_THRESH_PWR("Laser rx power low warning threshold",
+                                   sd.thresh_rx_power, LWARN);
+       }
+}
+
+void sff8636_show_all(const __u8 *id, __u32 eeprom_len)
+{
+       sff8636_show_identifier(id);
+       if ((id[SFF8636_ID_OFFSET] == SFF8024_ID_QSFP) ||
+           (id[SFF8636_ID_OFFSET] == SFF8024_ID_QSFP_PLUS) ||
+           (id[SFF8636_ID_OFFSET] == SFF8024_ID_QSFP28)) {
+               sff8636_show_ext_identifier(id);
+               sff8636_show_connector(id);
+               sff8636_show_transceiver(id);
+               sff8636_show_encoding(id);
+               sff_show_value_with_unit(id, SFF8636_BR_NOMINAL_OFFSET,
+                                        "BR, Nominal", 100, "Mbps");
+               sff8636_show_rate_identifier(id);
+               sff_show_value_with_unit(id, SFF8636_SM_LEN_OFFSET,
+                                        "Length (SMF,km)", 1, "km");
+               sff_show_value_with_unit(id, SFF8636_OM3_LEN_OFFSET,
+                                        "Length (OM3 50um)", 2, "m");
+               sff_show_value_with_unit(id, SFF8636_OM2_LEN_OFFSET,
+                                        "Length (OM2 50um)", 1, "m");
+               sff_show_value_with_unit(id, SFF8636_OM1_LEN_OFFSET,
+                                        "Length (OM1 62.5um)", 1, "m");
+               sff_show_value_with_unit(id, SFF8636_CBL_LEN_OFFSET,
+                                        "Length (Copper or Active cable)",
+                                        1, "m");
+               sff8636_show_wavelength_or_copper_compliance(id);
+               sff_show_ascii(id, SFF8636_VENDOR_NAME_START_OFFSET,
+                              SFF8636_VENDOR_NAME_END_OFFSET, "Vendor name");
+               sff8636_show_oui(id);
+               sff_show_ascii(id, SFF8636_VENDOR_PN_START_OFFSET,
+                              SFF8636_VENDOR_PN_END_OFFSET, "Vendor PN");
+               sff_show_ascii(id, SFF8636_VENDOR_REV_START_OFFSET,
+                              SFF8636_VENDOR_REV_END_OFFSET, "Vendor rev");
+               sff_show_ascii(id, SFF8636_VENDOR_SN_START_OFFSET,
+                              SFF8636_VENDOR_SN_END_OFFSET, "Vendor SN");
+               sff8636_show_revision_compliance(id);
+               sff8636_show_dom(id, eeprom_len);
+       }
+}
diff --git a/qsfp.h b/qsfp.h
new file mode 100644
index 0000000..553ca5f
--- /dev/null
+++ b/qsfp.h
@@ -0,0 +1,595 @@
+/*
+ * SFF 8636 standards based QSFP EEPROM Field Definitions
+ *
+ * Vidya Ravipati <vi...@cumulusnetworks.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ */
+
+#ifndef QSFP_H__
+#define QSFP_H__
+
+/*------------------------------------------------------------------------------
+ *
+ * QSFP EEPROM data structures
+ *
+ * register info from SFF-8636 Rev 2.7
+ */
+
+/*------------------------------------------------------------------------------
+ *
+ * Lower Memory Page 00h
+ * Measurement, Diagnostic and Control Functions
+ *
+ */
+/* Identifier - 0 */
+/* Values are defined under SFF8024_ID_OFFSET */
+#define        SFF8636_ID_OFFSET       0x00
+
+#define        SFF8636_REV_COMPLIANCE_OFFSET   0x01
+#define         SFF8636_REV_UNSPECIFIED                0x00
+#define         SFF8636_REV_8436_48                    0x01
+#define         SFF8636_REV_8436_8636                  0x02
+#define         SFF8636_REV_8636_13                    0x03
+#define         SFF8636_REV_8636_14                    0x04
+#define         SFF8636_REV_8636_15                    0x05
+#define         SFF8636_REV_8636_20                    0x06
+#define         SFF8636_REV_8636_27                    0x07
+
+#define        SFF8636_STATUS_2_OFFSET 0x02
+/* Flat Memory:0- Paging, 1- Page 0 only */
+#define         SFF8636_STATUS_PAGE_3_PRESENT          (1 << 2)
+#define         SFF8636_STATUS_INTL_OUTPUT             (1 << 1)
+#define         SFF8636_STATUS_DATA_NOT_READY          (1 << 0)
+
+/* Channel Status Interrupt Flags - 3-5 */
+#define        SFF8636_LOS_AW_OFFSET   0x03
+#define         SFF8636_TX4_LOS_AW             (1 << 7)
+#define         SFF8636_TX3_LOS_AW             (1 << 6)
+#define         SFF8636_TX2_LOS_AW             (1 << 5)
+#define         SFF8636_TX1_LOS_AW             (1 << 4)
+#define         SFF8636_RX4_LOS_AW             (1 << 3)
+#define         SFF8636_RX3_LOS_AW             (1 << 2)
+#define         SFF8636_RX2_LOS_AW             (1 << 1)
+#define         SFF8636_RX1_LOS_AW             (1 << 0)
+
+#define        SFF8636_FAULT_AW_OFFSET 0x04
+#define         SFF8636_TX4_FAULT_AW   (1 << 3)
+#define         SFF8636_TX3_FAULT_AW   (1 << 2)
+#define         SFF8636_TX2_FAULT_AW   (1 << 1)
+#define         SFF8636_TX1_FAULT_AW   (1 << 0)
+
+/* Module Monitor Interrupt Flags - 6-8 */
+#define        SFF8636_TEMP_AW_OFFSET  0x06
+#define         SFF8636_TEMP_HALARM_STATUS             (1 << 7)
+#define         SFF8636_TEMP_LALARM_STATUS             (1 << 6)
+#define         SFF8636_TEMP_HWARN_STATUS              (1 << 5)
+#define         SFF8636_TEMP_LWARN_STATUS              (1 << 4)
+
+#define        SFF8636_VCC_AW_OFFSET   0x07
+#define         SFF8636_VCC_HALARM_STATUS              (1 << 7)
+#define         SFF8636_VCC_LALARM_STATUS              (1 << 6)
+#define         SFF8636_VCC_HWARN_STATUS               (1 << 5)
+#define         SFF8636_VCC_LWARN_STATUS               (1 << 4)
+
+/* Channel Monitor Interrupt Flags - 9-21 */
+#define        SFF8636_RX_PWR_12_AW_OFFSET     0x09
+#define         SFF8636_RX_PWR_1_HALARM                (1 << 7)
+#define         SFF8636_RX_PWR_1_LALARM                (1 << 6)
+#define         SFF8636_RX_PWR_1_HWARN                 (1 << 5)
+#define         SFF8636_RX_PWR_1_LWARN                 (1 << 4)
+#define         SFF8636_RX_PWR_2_HALARM                (1 << 3)
+#define         SFF8636_RX_PWR_2_LALARM                (1 << 2)
+#define         SFF8636_RX_PWR_2_HWARN                 (1 << 1)
+#define         SFF8636_RX_PWR_2_LWARN                 (1 << 0)
+
+#define        SFF8636_RX_PWR_34_AW_OFFSET     0x0A
+#define         SFF8636_RX_PWR_3_HALARM                (1 << 7)
+#define         SFF8636_RX_PWR_3_LALARM                (1 << 6)
+#define         SFF8636_RX_PWR_3_HWARN                 (1 << 5)
+#define         SFF8636_RX_PWR_3_LWARN                 (1 << 4)
+#define         SFF8636_RX_PWR_4_HALARM                (1 << 3)
+#define         SFF8636_RX_PWR_4_LALARM                (1 << 2)
+#define         SFF8636_RX_PWR_4_HWARN                 (1 << 1)
+#define         SFF8636_RX_PWR_4_LWARN                 (1 << 0)
+
+#define        SFF8636_TX_BIAS_12_AW_OFFSET    0x0B
+#define         SFF8636_TX_BIAS_1_HALARM               (1 << 7)
+#define         SFF8636_TX_BIAS_1_LALARM               (1 << 6)
+#define         SFF8636_TX_BIAS_1_HWARN                (1 << 5)
+#define         SFF8636_TX_BIAS_1_LWARN                (1 << 4)
+#define         SFF8636_TX_BIAS_2_HALARM               (1 << 3)
+#define         SFF8636_TX_BIAS_2_LALARM               (1 << 2)
+#define         SFF8636_TX_BIAS_2_HWARN                (1 << 1)
+#define         SFF8636_TX_BIAS_2_LWARN                (1 << 0)
+
+#define        SFF8636_TX_BIAS_34_AW_OFFSET    0xC
+#define         SFF8636_TX_BIAS_3_HALARM               (1 << 7)
+#define         SFF8636_TX_BIAS_3_LALARM               (1 << 6)
+#define         SFF8636_TX_BIAS_3_HWARN                (1 << 5)
+#define         SFF8636_TX_BIAS_3_LWARN                (1 << 4)
+#define         SFF8636_TX_BIAS_4_HALARM               (1 << 3)
+#define         SFF8636_TX_BIAS_4_LALARM               (1 << 2)
+#define         SFF8636_TX_BIAS_4_HWARN                (1 << 1)
+#define         SFF8636_TX_BIAS_4_LWARN                (1 << 0)
+
+#define        SFF8636_TX_PWR_12_AW_OFFSET     0x0D
+#define         SFF8636_TX_PWR_1_HALARM                (1 << 7)
+#define         SFF8636_TX_PWR_1_LALARM                (1 << 6)
+#define         SFF8636_TX_PWR_1_HWARN                 (1 << 5)
+#define         SFF8636_TX_PWR_1_LWARN                 (1 << 4)
+#define         SFF8636_TX_PWR_2_HALARM                (1 << 3)
+#define         SFF8636_TX_PWR_2_LALARM                (1 << 2)
+#define         SFF8636_TX_PWR_2_HWARN                 (1 << 1)
+#define         SFF8636_TX_PWR_2_LWARN                 (1 << 0)
+
+#define        SFF8636_TX_PWR_34_AW_OFFSET     0x0E
+#define         SFF8636_TX_PWR_3_HALARM                (1 << 7)
+#define         SFF8636_TX_PWR_3_LALARM                (1 << 6)
+#define         SFF8636_TX_PWR_3_HWARN                 (1 << 5)
+#define         SFF8636_TX_PWR_3_LWARN                 (1 << 4)
+#define         SFF8636_TX_PWR_4_HALARM                (1 << 3)
+#define         SFF8636_TX_PWR_4_LALARM                (1 << 2)
+#define         SFF8636_TX_PWR_4_HWARN                 (1 << 1)
+#define         SFF8636_TX_PWR_4_LWARN                 (1 << 0)
+
+/* Module Monitoring Values - 22-33 */
+#define        SFF8636_TEMP_CURR               0x16
+#define        SFF8636_TEMP_MSB_OFFSET         0x16
+#define        SFF8636_TEMP_LSB_OFFSET         0x17
+
+#define        SFF8636_VCC_CURR                0x1A
+#define        SFF8636_VCC_MSB_OFFSET          0x1A
+#define        SFF8636_VCC_LSB_OFFSET          0x1B
+
+/* Channel Monitoring Values - 34-81 */
+#define        SFF8636_RX_PWR_1_OFFSET         0x22
+#define        SFF8636_RX_PWR_2_OFFSET         0x24
+#define        SFF8636_RX_PWR_3_OFFSET         0x26
+#define        SFF8636_RX_PWR_4_OFFSET         0x28
+
+#define        SFF8636_TX_BIAS_1_OFFSET        0x2A
+#define        SFF8636_TX_BIAS_2_OFFSET        0x2C
+#define        SFF8636_TX_BIAS_3_OFFSET        0x2E
+#define        SFF8636_TX_BIAS_4_OFFSET        0x30
+
+#define        SFF8636_TX_PWR_1_OFFSET         0x32
+#define        SFF8636_TX_PWR_2_OFFSET         0x34
+#define        SFF8636_TX_PWR_3_OFFSET         0x36
+#define        SFF8636_TX_PWR_4_OFFSET         0x38
+
+/* Control Bytes - 86 - 99 */
+#define        SFF8636_TX_DISABLE_OFFSET       0x56
+#define         SFF8636_TX_DISABLE_4                   (1 << 3)
+#define         SFF8636_TX_DISABLE_3                   (1 << 2)
+#define         SFF8636_TX_DISABLE_2                   (1 << 1)
+#define         SFF8636_TX_DISABLE_1                   (1 << 0)
+
+#define        SFF8636_RX_RATE_SELECT_OFFSET   0x57
+#define         SFF8636_RX_RATE_SELECT_4_MASK          (3 << 6)
+#define         SFF8636_RX_RATE_SELECT_3_MASK          (3 << 4)
+#define         SFF8636_RX_RATE_SELECT_2_MASK          (3 << 2)
+#define         SFF8636_RX_RATE_SELECT_1_MASK          (3 << 0)
+
+#define        SFF8636_TX_RATE_SELECT_OFFSET   0x58
+#define         SFF8636_TX_RATE_SELECT_4_MASK          (3 << 6)
+#define         SFF8636_TX_RATE_SELECT_3_MASK          (3 << 4)
+#define         SFF8636_TX_RATE_SELECT_2_MASK          (3 << 2)
+#define         SFF8636_TX_RATE_SELECT_1_MASK          (3 << 0)
+
+#define        SFF8636_RX_APP_SELECT_4_OFFSET  0x58
+#define        SFF8636_RX_APP_SELECT_3_OFFSET  0x59
+#define        SFF8636_RX_APP_SELECT_2_OFFSET  0x5A
+#define        SFF8636_RX_APP_SELECT_1_OFFSET  0x5B
+
+#define        SFF8636_PWR_MODE_OFFSET         0x5D
+#define         SFF8636_HIGH_PWR_ENABLE                (1 << 2)
+#define         SFF8636_LOW_PWR_MODE                   (1 << 1)
+#define         SFF8636_PWR_OVERRIDE                   (1 << 0)
+
+#define        SFF8636_TX_APP_SELECT_4_OFFSET  0x5E
+#define        SFF8636_TX_APP_SELECT_3_OFFSET  0x5F
+#define        SFF8636_TX_APP_SELECT_2_OFFSET  0x60
+#define        SFF8636_TX_APP_SELECT_1_OFFSET  0x61
+
+#define        SFF8636_LOS_MASK_OFFSET         0x64
+#define         SFF8636_TX_LOS_4_MASK                  (1 << 7)
+#define         SFF8636_TX_LOS_3_MASK                  (1 << 6)
+#define         SFF8636_TX_LOS_2_MASK                  (1 << 5)
+#define         SFF8636_TX_LOS_1_MASK                  (1 << 4)
+#define         SFF8636_RX_LOS_4_MASK                  (1 << 3)
+#define         SFF8636_RX_LOS_3_MASK                  (1 << 2)
+#define         SFF8636_RX_LOS_2_MASK                  (1 << 1)
+#define         SFF8636_RX_LOS_1_MASK                  (1 << 0)
+
+#define        SFF8636_FAULT_MASK_OFFSET       0x65
+#define         SFF8636_TX_FAULT_1_MASK                (1 << 3)
+#define         SFF8636_TX_FAULT_2_MASK                (1 << 2)
+#define         SFF8636_TX_FAULT_3_MASK                (1 << 1)
+#define         SFF8636_TX_FAULT_4_MASK                (1 << 0)
+
+#define        SFF8636_TEMP_MASK_OFFSET        0x67
+#define         SFF8636_TEMP_HALARM_MASK               (1 << 7)
+#define         SFF8636_TEMP_LALARM_MASK               (1 << 6)
+#define         SFF8636_TEMP_HWARN_MASK                (1 << 5)
+#define         SFF8636_TEMP_LWARN_MASK                (1 << 4)
+
+#define        SFF8636_VCC_MASK_OFFSET         0x68
+#define         SFF8636_VCC_HALARM_MASK                (1 << 7)
+#define         SFF8636_VCC_LALARM_MASK                (1 << 6)
+#define         SFF8636_VCC_HWARN_MASK                 (1 << 5)
+#define         SFF8636_VCC_LWARN_MASK                 (1 << 4)
+
+/*------------------------------------------------------------------------------
+ *
+ * Upper Memory Page 00h
+ * Serial ID - Base ID, Extended ID and Vendor Specific ID fields
+ *
+ */
+/* Identifier - 128 */
+/* Identifier values same as Lower Memory Page 00h */
+#define        SFF8636_UPPER_PAGE_0_ID_OFFSET          0x80
+
+/* Extended Identifier - 128 */
+#define SFF8636_EXT_ID_OFFSET          0x81
+#define         SFF8636_EXT_ID_PWR_CLASS_MASK          0xC0
+#define          SFF8636_EXT_ID_PWR_CLASS_1            (0 << 6)
+#define          SFF8636_EXT_ID_PWR_CLASS_2            (1 << 6)
+#define          SFF8636_EXT_ID_PWR_CLASS_3            (2 << 6)
+#define          SFF8636_EXT_ID_PWR_CLASS_4            (3 << 6)
+#define         SFF8636_EXT_ID_CLIE_MASK               0x10
+#define          SFF8636_EXT_ID_CLIEI_CODE_PRESENT     (1 << 4)
+#define         SFF8636_EXT_ID_CDR_TX_MASK             0x08
+#define          SFF8636_EXT_ID_CDR_TX_PRESENT         (1 << 3)
+#define         SFF8636_EXT_ID_CDR_RX_MASK             0x04
+#define          SFF8636_EXT_ID_CDR_RX_PRESENT         (1 << 2)
+#define         SFF8636_EXT_ID_EPWR_CLASS_MASK         0x03
+#define          SFF8636_EXT_ID_PWR_CLASS_LEGACY       0
+#define          SFF8636_EXT_ID_PWR_CLASS_5            1
+#define          SFF8636_EXT_ID_PWR_CLASS_6            2
+#define          SFF8636_EXT_ID_PWR_CLASS_7            3
+
+/* Connector Values offset - 130 */
+/* Values are defined under SFF8024_CTOR */
+#define        SFF8636_CTOR_OFFSET             0x82
+#define         SFF8636_CTOR_UNKNOWN                   0x00
+#define         SFF8636_CTOR_SC                        0x01
+#define         SFF8636_CTOR_FC_STYLE_1                0x02
+#define         SFF8636_CTOR_FC_STYLE_2                0x03
+#define         SFF8636_CTOR_BNC_TNC                   0x04
+#define         SFF8636_CTOR_FC_COAX                   0x05
+#define         SFF8636_CTOR_FIBER_JACK                0x06
+#define         SFF8636_CTOR_LC                        0x07
+#define         SFF8636_CTOR_MT_RJ                     0x08
+#define         SFF8636_CTOR_MU                        0x09
+#define         SFF8636_CTOR_SG                        0x0A
+#define         SFF8636_CTOR_OPT_PT                    0x0B
+#define         SFF8636_CTOR_MPO                       0x0C
+/* 0D-1Fh --- Reserved */
+#define         SFF8636_CTOR_HSDC_II                   0x20
+#define         SFF8636_CTOR_COPPER_PT                 0x21
+#define         SFF8636_CTOR_RJ45                      0x22
+#define         SFF8636_CTOR_NO_SEPARABLE              0x23
+#define         SFF8636_CTOR_MXC_2X16                  0x24
+
+/* Specification Compliance - 131-138 */
+/* Ethernet Compliance Codes - 131 */
+#define        SFF8636_ETHERNET_COMP_OFFSET    0x83
+#define         SFF8636_ETHERNET_RSRVD                 (1 << 7)
+#define         SFF8636_ETHERNET_10G_LRM               (1 << 6)
+#define         SFF8636_ETHERNET_10G_LR                (1 << 5)
+#define         SFF8636_ETHERNET_10G_SR                (1 << 4)
+#define         SFF8636_ETHERNET_40G_CR4               (1 << 3)
+#define         SFF8636_ETHERNET_40G_SR4               (1 << 2)
+#define         SFF8636_ETHERNET_40G_LR4               (1 << 1)
+#define         SFF8636_ETHERNET_40G_ACTIVE    (1 << 0)
+
+/* SONET Compliance Codes - 132 */
+#define        SFF8636_SONET_COMP_OFFSET       0x84
+#define         SFF8636_SONET_40G_OTN                  (1 << 3)
+#define         SFF8636_SONET_OC48_LR                  (1 << 2)
+#define         SFF8636_SONET_OC48_IR                  (1 << 1)
+#define         SFF8636_SONET_OC48_SR                  (1 << 0)
+
+/* SAS/SATA Complaince Codes - 133 */
+#define        SFF8636_SAS_COMP_OFFSET         0x85
+#define         SFF8636_SAS_12G                        (1 << 6)
+#define         SFF8636_SAS_6G                         (1 << 5)
+#define         SFF8636_SAS_3G                         (1 << 4)
+
+/* Gigabit Ethernet Compliance Codes - 134 */
+#define        SFF8636_GIGE_COMP_OFFSET        0x86
+#define         SFF8636_GIGE_1000_BASE_T               (1 << 3)
+#define         SFF8636_GIGE_1000_BASE_CX              (1 << 2)
+#define         SFF8636_GIGE_1000_BASE_LX              (1 << 1)
+#define         SFF8636_GIGE_1000_BASE_SX              (1 << 0)
+
+/* Fibre Channel Link length/Transmitter Tech. - 135,136 */
+#define        SFF8636_FC_LEN_OFFSET           0x87
+#define         SFF8636_FC_LEN_VERY_LONG               (1 << 7)
+#define         SFF8636_FC_LEN_SHORT                   (1 << 6)
+#define         SFF8636_FC_LEN_INT                     (1 << 5)
+#define         SFF8636_FC_LEN_LONG                    (1 << 4)
+#define         SFF8636_FC_LEN_MED                     (1 << 3)
+#define         SFF8636_FC_TECH_LONG_LC                (1 << 1)
+#define         SFF8636_FC_TECH_ELEC_INTER             (1 << 0)
+
+#define        SFF8636_FC_TECH_OFFSET          0x88
+#define         SFF8636_FC_TECH_ELEC_INTRA             (1 << 7)
+#define         SFF8636_FC_TECH_SHORT_WO_OFC           (1 << 6)
+#define         SFF8636_FC_TECH_SHORT_W_OFC            (1 << 5)
+#define         SFF8636_FC_TECH_LONG_LL                (1 << 4)
+
+/* Fibre Channel Transmitter Media - 137 */
+#define        SFF8636_FC_TRANS_MEDIA_OFFSET   0x89
+/* Twin Axial Pair */
+#define         SFF8636_FC_TRANS_MEDIA_TW              (1 << 7)
+/* Shielded Twisted Pair */
+#define         SFF8636_FC_TRANS_MEDIA_TP              (1 << 6)
+/* Miniature Coax */
+#define         SFF8636_FC_TRANS_MEDIA_MI              (1 << 5)
+/* Video Coax */
+#define         SFF8636_FC_TRANS_MEDIA_TV              (1 << 4)
+/* Multi-mode 62.5m */
+#define         SFF8636_FC_TRANS_MEDIA_M6              (1 << 3)
+/* Multi-mode 50m */
+#define         SFF8636_FC_TRANS_MEDIA_M5              (1 << 2)
+/* Multi-mode 50um */
+#define         SFF8636_FC_TRANS_MEDIA_OM3             (1 << 1)
+/* Single Mode */
+#define         SFF8636_FC_TRANS_MEDIA_SM              (1 << 0)
+
+/* Fibre Channel Speed - 138 */
+#define        SFF8636_FC_SPEED_OFFSET         0x8A
+#define         SFF8636_FC_SPEED_1200_MBPS             (1 << 7)
+#define         SFF8636_FC_SPEED_800_MBPS              (1 << 6)
+#define         SFF8636_FC_SPEED_1600_MBPS             (1 << 5)
+#define         SFF8636_FC_SPEED_400_MBPS              (1 << 4)
+#define         SFF8636_FC_SPEED_200_MBPS              (1 << 2)
+#define         SFF8636_FC_SPEED_100_MBPS              (1 << 0)
+
+/* Encoding - 139 */
+/* Values are defined under SFF8024_ENCODING */
+#define        SFF8636_ENCODING_OFFSET         0x8B
+#define         SFF8636_ENCODING_MANCHESTER    0x06
+#define         SFF8636_ENCODING_64B66B                0x05
+#define         SFF8636_ENCODING_SONET                 0x04
+#define         SFF8636_ENCODING_NRZ                   0x03
+#define         SFF8636_ENCODING_4B5B                  0x02
+#define         SFF8636_ENCODING_8B10B                 0x01
+#define         SFF8636_ENCODING_UNSPEC                0x00
+
+/* BR, Nominal - 140 */
+#define        SFF8636_BR_NOMINAL_OFFSET       0x8C
+
+/* Extended RateSelect - 141 */
+#define        SFF8636_EXT_RS_OFFSET           0x8D
+#define         SFF8636_EXT_RS_V1                      (1 << 0)
+
+/* Length (Standard SM Fiber)-km - 142 */
+#define        SFF8636_SM_LEN_OFFSET           0x8E
+
+/* Length (OM3)-Unit 2m - 143 */
+#define        SFF8636_OM3_LEN_OFFSET          0x8F
+
+/* Length (OM2)-Unit 1m - 144 */
+#define        SFF8636_OM2_LEN_OFFSET          0x90
+
+/* Length (OM1)-Unit 1m - 145 */
+#define        SFF8636_OM1_LEN_OFFSET          0x91
+
+/* Cable Assembly Length -Unit 1m - 146 */
+#define        SFF8636_CBL_LEN_OFFSET          0x92
+
+/* Device Technology - 147 */
+#define        SFF8636_DEVICE_TECH_OFFSET      0x93
+/* Transmitter Technology */
+#define         SFF8636_TRANS_TECH_MASK                0xF0
+/* Copper cable, linear active equalizers */
+#define         SFF8636_TRANS_COPPER_LNR_EQUAL         (15 << 4)
+/* Copper cable, near end limiting active equalizers */
+#define         SFF8636_TRANS_COPPER_NEAR_EQUAL        (14 << 4)
+/* Copper cable, far end limiting active equalizers */
+#define         SFF8636_TRANS_COPPER_FAR_EQUAL         (13 << 4)
+/* Copper cable, near & far end limiting active equalizers */
+#define         SFF8636_TRANS_COPPER_LNR_FAR_EQUAL     (12 << 4)
+/* Copper cable, passive equalized */
+#define         SFF8636_TRANS_COPPER_PAS_EQUAL         (11 << 4)
+/* Copper cable, unequalized */
+#define         SFF8636_TRANS_COPPER_PAS_UNEQUAL       (10 << 4)
+/* 1490 nm DFB */
+#define         SFF8636_TRANS_1490_DFB                 (9 << 4)
+/* Others */
+#define         SFF8636_TRANS_OTHERS                   (8 << 4)
+/* 1550 nm EML */
+#define         SFF8636_TRANS_1550_EML                 (7 << 4)
+/* 1310 nm EML */
+#define         SFF8636_TRANS_1310_EML                 (6 << 4)
+/* 1550 nm DFB */
+#define         SFF8636_TRANS_1550_DFB                 (5 << 4)
+/* 1310 nm DFB */
+#define         SFF8636_TRANS_1310_DFB                 (4 << 4)
+/* 1310 nm FP */
+#define         SFF8636_TRANS_1310_FP                  (3 << 4)
+/* 1550 nm VCSEL */
+#define         SFF8636_TRANS_1550_VCSEL               (2 << 4)
+/* 1310 nm VCSEL */
+#define         SFF8636_TRANS_1310_VCSEL               (1 << 4)
+/* 850 nm VCSEL */
+#define         SFF8636_TRANS_850_VCSEL                (0 << 4)
+
+ /* Active/No wavelength control */
+#define         SFF8636_DEV_TECH_ACTIVE_WAVE_LEN       (1 << 3)
+/* Cooled transmitter */
+#define         SFF8636_DEV_TECH_COOL_TRANS            (1 << 2)
+/* APD/Pin Detector */
+#define         SFF8636_DEV_TECH_APD_DETECTOR          (1 << 1)
+/* Transmitter tunable */
+#define         SFF8636_DEV_TECH_TUNABLE               (1 << 0)
+
+/* Vendor Name - 148-163 */
+#define         SFF8636_VENDOR_NAME_START_OFFSET       0x94
+#define         SFF8636_VENDOR_NAME_END_OFFSET         0xA3
+
+/* Extended Module Codes - 164 */
+#define         SFF8636_EXT_MOD_CODE_OFFSET    0xA4
+#define          SFF8636_EXT_MOD_INFINIBAND_EDR        (1 << 4)
+#define          SFF8636_EXT_MOD_INFINIBAND_FDR        (1 << 3)
+#define          SFF8636_EXT_MOD_INFINIBAND_QDR        (1 << 2)
+#define          SFF8636_EXT_MOD_INFINIBAND_DDR        (1 << 1)
+#define          SFF8636_EXT_MOD_INFINIBAND_SDR        (1 << 0)
+
+/* Vendor OUI - 165-167 */
+#define         SFF8636_VENDOR_OUI_OFFSET              0xA5
+#define          SFF8636_VENDOR_OUI_LEN                3
+
+/* Vendor OUI - 165-167 */
+#define         SFF8636_VENDOR_PN_START_OFFSET         0xA8
+#define         SFF8636_VENDOR_PN_END_OFFSET           0xB7
+
+/* Vendor Revision - 184-185 */
+#define         SFF8636_VENDOR_REV_START_OFFSET        0xB8
+#define         SFF8636_VENDOR_REV_END_OFFSET          0xB9
+
+/* Wavelength - 186-187 */
+#define         SFF8636_WAVELEN_HIGH_BYTE_OFFSET       0xBA
+#define         SFF8636_WAVELEN_LOW_BYTE_OFFSET        0xBB
+
+/* Wavelength  Tolerance- 188-189 */
+#define         SFF8636_WAVE_TOL_HIGH_BYTE_OFFSET      0xBC
+#define         SFF8636_WAVE_TOL_LOW_BYTE_OFFSET       0xBD
+
+/* Max case temp - Other than 70 C - 190 */
+#define         SFF8636_MAXCASE_TEMP_OFFSET    0xBE
+
+/* CC_BASE - 191 */
+#define         SFF8636_CC_BASE_OFFSET         0xBF
+
+/* Option Values - 192-195 */
+#define         SFF8636_OPTION_1_OFFSET        0xC0
+#define         SFF8636_ETHERNET_UNSPECIFIED           0x00
+#define         SFF8636_ETHERNET_100G_AOC              0x01
+#define         SFF8636_ETHERNET_100G_SR4              0x02
+#define         SFF8636_ETHERNET_100G_LR4              0x03
+#define         SFF8636_ETHERNET_100G_ER4              0x04
+#define         SFF8636_ETHERNET_100G_SR10             0x05
+#define         SFF8636_ETHERNET_100G_CWDM4_FEC        0x06
+#define         SFF8636_ETHERNET_100G_PSM4             0x07
+#define         SFF8636_ETHERNET_100G_ACC              0x08
+#define         SFF8636_ETHERNET_100G_CWDM4_NO_FEC     0x09
+#define         SFF8636_ETHERNET_100G_RSVD1            0x0A
+#define         SFF8636_ETHERNET_100G_CR4              0x0B
+#define         SFF8636_ETHERNET_25G_CR_CA_S           0x0C
+#define         SFF8636_ETHERNET_25G_CR_CA_N           0x0D
+#define         SFF8636_ETHERNET_40G_ER4               0x10
+#define         SFF8636_ETHERNET_4X10_SR               0x11
+#define         SFF8636_ETHERNET_40G_PSM4              0x12
+#define         SFF8636_ETHERNET_G959_P1I1_2D1         0x13
+#define         SFF8636_ETHERNET_G959_P1S1_2D2         0x14
+#define         SFF8636_ETHERNET_G959_P1L1_2D2         0x15
+#define         SFF8636_ETHERNET_10GT_SFI              0x16
+#define         SFF8636_ETHERNET_100G_CLR4             0x17
+#define         SFF8636_ETHERNET_100G_AOC2             0x18
+#define         SFF8636_ETHERNET_100G_ACC2             0x19
+
+#define         SFF8636_OPTION_2_OFFSET        0xC1
+/* Rx output amplitude */
+#define          SFF8636_O2_RX_OUTPUT_AMP      (1 << 0)
+#define         SFF8636_OPTION_3_OFFSET        0xC2
+/* Rx Squelch Disable */
+#define          SFF8636_O3_RX_SQL_DSBL        (1 << 3)
+/* Rx Output Disable capable */
+#define          SFF8636_O3_RX_OUTPUT_DSBL     (1 << 2)
+/* Tx Squelch Disable */
+#define          SFF8636_O3_TX_SQL_DSBL        (1 << 1)
+/* Tx Squelch Impl */
+#define          SFF8636_O3_TX_SQL_IMPL        (1 << 0)
+#define         SFF8636_OPTION_4_OFFSET        0xC3
+/* Memory Page 02 present */
+#define          SFF8636_O4_PAGE_02_PRESENT    (1 << 7)
+/* Memory Page 01 present */
+#define          SFF8636_O4_PAGE_01_PRESENT    (1 << 6)
+/* Rate Select implemented */
+#define          SFF8636_O4_RATE_SELECT        (1 << 5)
+/* Tx_DISABLE implemented */
+#define          SFF8636_O4_TX_DISABLE         (1 << 4)
+/* Tx_FAULT implemented */
+#define          SFF8636_O4_TX_FAULT           (1 << 3)
+/* Tx Squelch implemented */
+#define          SFF8636_O4_TX_SQUELCH         (1 << 2)
+/* Tx Loss of Signal */
+#define          SFF8636_O4_TX_LOS             (1 << 1)
+
+/* Vendor SN - 196-211 */
+#define         SFF8636_VENDOR_SN_START_OFFSET 0xC4
+#define         SFF8636_VENDOR_SN_END_OFFSET   0xD3
+
+/* Vendor Date - 212-219 */
+#define         SFF8636_DATE_YEAR_OFFSET       0xD4
+#define          SFF8636_DATE_YEAR_LEN                 2
+#define         SFF8636_DATE_MONTH_OFFSET      0xD6
+#define          SFF8636_DATE_MONTH_LEN                2
+#define         SFF8636_DATE_DAY_OFFSET        0xD8
+#define          SFF8636_DATE_DAY_LEN                  2
+
+/* Diagnostic Monitoring Type - 220 */
+#define         SFF8636_DIAG_TYPE_OFFSET       0xDC
+#define          SFF8636_RX_PWR_TYPE_MASK      0x8
+#define           SFF8636_RX_PWR_TYPE_AVG_PWR  (1 << 3)
+#define           SFF8636_RX_PWR_TYPE_OMA      (0 << 3)
+#define          SFF8636_TX_PWR_TYPE_MASK      0x4
+#define           SFF8636_TX_PWR_TYPE_AVG_PWR  (1 << 2)
+
+/* Enhanced Options - 221 */
+#define         SFF8636_ENH_OPTIONS_OFFSET     0xDD
+#define          SFF8636_RATE_SELECT_EXT_SUPPORT       (1 << 3)
+#define          SFF8636_RATE_SELECT_APP_TABLE_SUPPORT (1 << 2)
+
+/* Check code - 223 */
+#define         SFF8636_CC_EXT_OFFSET          0xDF
+#define          SFF8636_CC_EXT_LEN            1
+
+/*------------------------------------------------------------------------------
+ *
+ * Upper Memory Page 03h
+ * Contains module thresholds, channel thresholds and masks,
+ * and optional channel controls
+ *
+ * Offset - Page Num(3) * PageSize(0x80) + Page offset
+ */
+
+/* Module Thresholds (48 Bytes) 128-175 */
+/* MSB at low address, LSB at high address */
+#define        SFF8636_TEMP_HALRM              0x200
+#define        SFF8636_TEMP_LALRM              0x202
+#define        SFF8636_TEMP_HWARN              0x204
+#define        SFF8636_TEMP_LWARN              0x206
+
+#define        SFF8636_VCC_HALRM               0x210
+#define        SFF8636_VCC_LALRM               0x212
+#define        SFF8636_VCC_HWARN               0x214
+#define        SFF8636_VCC_LWARN               0x216
+
+#define        SFF8636_RX_PWR_HALRM            0x230
+#define        SFF8636_RX_PWR_LALRM            0x232
+#define        SFF8636_RX_PWR_HWARN            0x234
+#define        SFF8636_RX_PWR_LWARN            0x236
+
+#define        SFF8636_TX_BIAS_HALRM           0x238
+#define        SFF8636_TX_BIAS_LALRM           0x23A
+#define        SFF8636_TX_BIAS_HWARN           0x23C
+#define        SFF8636_TX_BIAS_LWARN           0x23E
+
+#define        SFF8636_TX_PWR_HALRM            0x240
+#define        SFF8636_TX_PWR_LALRM            0x242
+#define        SFF8636_TX_PWR_HWARN            0x244
+#define        SFF8636_TX_PWR_LWARN            0x246
+
+#define        ETH_MODULE_SFF_8636_MAX_LEN     640
+#define        ETH_MODULE_SFF_8436_MAX_LEN     640
+
+#endif /* QSFP_H__ */
-- 
2.1.4

Reply via email to