Message ID | 1606123198-6230-2-git-send-email-moshe@mellanox.com (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | Add support for DSFP transceiver type | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net-next |
netdev/subject_prefix | success | Link |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 7624 this patch: 7624 |
netdev/kdoc | success | Errors and warnings before: 59 this patch: 59 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 12 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 8048 this patch: 8048 |
netdev/header_inline | success | Link |
netdev/stable | success | Stable not CCed |
Moshe Shemesh wrote: > From: Vladyslav Tarasiuk <vladyslavt@nvidia.com> > > CMIS 4.0 document describes a universal EEPROM memory layout, which is > used for some modules such as DSFP, OSFP and QSFP-DD modules. In order > to distinguish them in userspace from existing standards, add > corresponding values. > > CMIS 4.0 EERPOM memory includes mandatory and optional pages, the max typo? s/EERPOM/EEPROM > read length 768B includes passive and active cables mandatory pages. > > Signed-off-by: Vladyslav Tarasiuk <vladyslavt@nvidia.com> > Reviewed-by: Moshe Shemesh <moshe@nvidia.com> rest was ok.
On 11/24/2020 12:40 AM, Jesse Brandeburg wrote: > External email: Use caution opening links or attachments > > > Moshe Shemesh wrote: > >> From: Vladyslav Tarasiuk <vladyslavt@nvidia.com> >> >> CMIS 4.0 document describes a universal EEPROM memory layout, which is >> used for some modules such as DSFP, OSFP and QSFP-DD modules. In order >> to distinguish them in userspace from existing standards, add >> corresponding values. >> >> CMIS 4.0 EERPOM memory includes mandatory and optional pages, the max > typo? s/EERPOM/EEPROM Right, thanks. > >> read length 768B includes passive and active cables mandatory pages. >> >> Signed-off-by: Vladyslav Tarasiuk <vladyslavt@nvidia.com> >> Reviewed-by: Moshe Shemesh <moshe@nvidia.com> > rest was ok.
diff --git a/include/uapi/linux/ethtool.h b/include/uapi/linux/ethtool.h index 9ca87bc73c44..0ec4c0ea3235 100644 --- a/include/uapi/linux/ethtool.h +++ b/include/uapi/linux/ethtool.h @@ -1861,9 +1861,12 @@ static inline int ethtool_validate_duplex(__u8 duplex) #define ETH_MODULE_SFF_8636_LEN 256 #define ETH_MODULE_SFF_8436 0x4 #define ETH_MODULE_SFF_8436_LEN 256 +#define ETH_MODULE_CMIS_4 0x5 +#define ETH_MODULE_CMIS_4_LEN 256 #define ETH_MODULE_SFF_8636_MAX_LEN 640 #define ETH_MODULE_SFF_8436_MAX_LEN 640 +#define ETH_MODULE_CMIS_4_MAX_LEN 768 /* Reset flags */ /* The reset() operation must clear the flags for the components which