Blame SOURCES/0034-sff-8636-Print-Power-set-and-Power-override-bits.patch

89ea86
From 48391fa16592b47d37ef63466111c751a10c3e56 Mon Sep 17 00:00:00 2001
89ea86
From: Ido Schimmel <idosch@nvidia.com>
89ea86
Date: Tue, 23 Nov 2021 19:41:02 +0200
89ea86
Subject: [PATCH 34/35] sff-8636: Print Power set and Power override bits
89ea86
89ea86
Print the SFF-8636 Power set and Power override bits when dumping EEPROM
89ea86
contents via the '-m' option. They can be used to understand low power
89ea86
mode enforcement by the host.
89ea86
89ea86
The 'SFF8636_LOW_PWR_MODE' define is renamed to 'SFF8636_LOW_PWR_SET' to
89ea86
reflect its naming in the standard for QSFP+/QSFP28.
89ea86
89ea86
Example output:
89ea86
89ea86
 # ethtool -m swp13
89ea86
 Identifier                                : 0x11 (QSFP28)
89ea86
 ...
89ea86
 Extended identifier description           : 5.0W max. Power consumption,  High Power Class (> 3.5 W) enabled
89ea86
 Power set                                 : Off
89ea86
 Power override                            : On
89ea86
 ...
89ea86
 Transmit avg optical power (Channel 1)    : 0.7633 mW / -1.17 dBm
89ea86
 Transmit avg optical power (Channel 2)    : 0.7649 mW / -1.16 dBm
89ea86
 Transmit avg optical power (Channel 3)    : 0.7696 mW / -1.14 dBm
89ea86
 Transmit avg optical power (Channel 4)    : 0.7739 mW / -1.11 dBm
89ea86
 Rcvr signal avg optical power(Channel 1)  : 0.9240 mW / -0.34 dBm
89ea86
 Rcvr signal avg optical power(Channel 2)  : 0.9129 mW / -0.40 dBm
89ea86
 Rcvr signal avg optical power(Channel 3)  : 0.9194 mW / -0.36 dBm
89ea86
 Rcvr signal avg optical power(Channel 4)  : 0.8708 mW / -0.60 dBm
89ea86
89ea86
 # ethtool --set-module swp13 power-mode-policy auto
89ea86
89ea86
 # ethtool -m swp13
89ea86
 Identifier                                : 0x11 (QSFP28)
89ea86
 ...
89ea86
 Extended identifier description           : 5.0W max. Power consumption,  High Power Class (> 3.5 W) not enabled
89ea86
 Power set                                 : On
89ea86
 Power override                            : On
89ea86
 ...
89ea86
 Transmit avg optical power (Channel 1)    : 0.0000 mW / -inf dBm
89ea86
 Transmit avg optical power (Channel 2)    : 0.0000 mW / -inf dBm
89ea86
 Transmit avg optical power (Channel 3)    : 0.0000 mW / -inf dBm
89ea86
 Transmit avg optical power (Channel 4)    : 0.0000 mW / -inf dBm
89ea86
 Rcvr signal avg optical power(Channel 1)  : 0.0000 mW / -inf dBm
89ea86
 Rcvr signal avg optical power(Channel 2)  : 0.0000 mW / -inf dBm
89ea86
 Rcvr signal avg optical power(Channel 3)  : 0.0000 mW / -inf dBm
89ea86
 Rcvr signal avg optical power(Channel 4)  : 0.0000 mW / -inf dBm
89ea86
89ea86
 # ethtool --set-module swp13 power-mode-policy high
89ea86
89ea86
 # ethtool -m swp13
89ea86
 Identifier                                : 0x11 (QSFP28)
89ea86
 ...
89ea86
 Extended identifier description           : 5.0W max. Power consumption,  High Power Class (> 3.5 W) enabled
89ea86
 Power set                                 : Off
89ea86
 Power override                            : On
89ea86
 ...
89ea86
 Transmit avg optical power (Channel 1)    : 0.7733 mW / -1.12 dBm
89ea86
 Transmit avg optical power (Channel 2)    : 0.7754 mW / -1.10 dBm
89ea86
 Transmit avg optical power (Channel 3)    : 0.7885 mW / -1.03 dBm
89ea86
 Transmit avg optical power (Channel 4)    : 0.7886 mW / -1.03 dBm
89ea86
 Rcvr signal avg optical power(Channel 1)  : 0.9248 mW / -0.34 dBm
89ea86
 Rcvr signal avg optical power(Channel 2)  : 0.9129 mW / -0.40 dBm
89ea86
 Rcvr signal avg optical power(Channel 3)  : 0.9187 mW / -0.37 dBm
89ea86
 Rcvr signal avg optical power(Channel 4)  : 0.8785 mW / -0.56 dBm
89ea86
89ea86
In the above example, the LPMode signal is ignored (Power override is
89ea86
always on) and low power mode is controlled via software only.
89ea86
89ea86
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
89ea86
---
89ea86
 qsfp.c | 6 ++++++
89ea86
 qsfp.h | 2 +-
89ea86
 2 files changed, 7 insertions(+), 1 deletion(-)
89ea86
89ea86
diff --git a/qsfp.c b/qsfp.c
89ea86
index b3c9e1516af9..57aac86bd5f6 100644
89ea86
--- a/qsfp.c
89ea86
+++ b/qsfp.c
89ea86
@@ -268,6 +268,12 @@ static void sff8636_show_ext_identifier(const struct sff8636_memory_map *map)
89ea86
 		printf(" High Power Class (> 3.5 W) enabled\n");
89ea86
 	else
89ea86
 		printf(" High Power Class (> 3.5 W) not enabled\n");
89ea86
+	printf("\t%-41s : ", "Power set");
89ea86
+	printf("%s\n", ONOFF(map->lower_memory[SFF8636_PWR_MODE_OFFSET] &
89ea86
+			     SFF8636_LOW_PWR_SET));
89ea86
+	printf("\t%-41s : ", "Power override");
89ea86
+	printf("%s\n", ONOFF(map->lower_memory[SFF8636_PWR_MODE_OFFSET] &
89ea86
+			     SFF8636_PWR_OVERRIDE));
89ea86
 }
89ea86
 
89ea86
 static void sff8636_show_connector(const struct sff8636_memory_map *map)
89ea86
diff --git a/qsfp.h b/qsfp.h
89ea86
index 1d8f24b5cbc2..aabf09fdc623 100644
89ea86
--- a/qsfp.h
89ea86
+++ b/qsfp.h
89ea86
@@ -180,7 +180,7 @@
89ea86
 
89ea86
 #define	SFF8636_PWR_MODE_OFFSET		0x5D
89ea86
 #define	 SFF8636_HIGH_PWR_ENABLE		(1 << 2)
89ea86
-#define	 SFF8636_LOW_PWR_MODE			(1 << 1)
89ea86
+#define	 SFF8636_LOW_PWR_SET			(1 << 1)
89ea86
 #define	 SFF8636_PWR_OVERRIDE			(1 << 0)
89ea86
 
89ea86
 #define	SFF8636_TX_APP_SELECT_4_OFFSET	0x5E
89ea86
-- 
89ea86
2.35.1
89ea86