Re: [RFC PATCH net-next 0/4] ethtool: Add ability to write to transceiver module EEPROMs
From: Andrew Lunn <andrew@lunn.ch>
Date: 2021-06-23 18:45:04
On Wed, Jun 23, 2021 at 10:59:21AM +0300, Ido Schimmel wrote:
From: Ido Schimmel <idosch@nvidia.com> This patchset adds write support to transceiver module EEPROMs by extending the ethtool netlink API. Motivation ========== The kernel can currently dump the contents of module EEPROMs to user space via the ethtool legacy ioctl API or the new netlink API. These dumps can then be parsed by ethtool(8) according to the specification that defines the memory map of the EEPROM. For example, SFF-8636 [1] for QSFP and CMIS [2] for QSFP-DD. In addition to read-only elements, these specifications also define writeable elements that can be used to control the behavior of the module. For example, controlling whether the module is put in low or high power mode to limit its power consumption.
Hi Ido So power control is part of the specification? All CMIS devices should implement it the same.
The CMIS specification even defines a message exchange mechanism (CDB, Command Data Block) on top of the module's memory map. This allows the host to send various commands to the module. For example, to update its firmware.
This approach allows the kernel to remain ignorant of the various standards and avoids the need to constantly update the kernel to support new registers / commands. More importantly, it allows advanced functionality such as firmware update to be implemented once in user space and shared across all the drivers that support read and write access to module EEPROMs.
I fear we are opening the door for user space binary blob drivers, which do much more than just firmware upgrade. You seems to say that power control is part of the CMIS standard. So we don't need userspace involved for that. We can implement a library which any MAC driver can share. I also wonder if it is safe to perform firmware upgrade from user space? I've not looked at the code yet, but i assume you only allow write when the interface is down? Otherwise isn't there a danger you can brick the SFP if the MAC accesses it at the same time as when an upgrade is happening? Do you have other concrete use cases for write from user space? In general, we don't allow uncontrolled access to hardware from user space. We add specific, well documented API calls, and expect kernel drivers to implement them. I don't see why SFPs should be different. Standardised parts we can implement in common code. None standard parts we need device/vendor specific code. Which just means we need drivers following the usual linux conventions, some sort of bus driver which reads the vendor/device ID from the EEPROM and probes a driver for the specific SFP. Andrew