Skip to content

Commit

Permalink
Add status flags for transceiver host lanes and media channels
Browse files Browse the repository at this point in the history
These flags are defined in the CMIS spec.  Some of them are also defined
in the earlier specs for management interfaces of SFP+ and QSFP+
modules.

Some of the flags are specific to media channels.  They are defined in
the existing list /components/component/transceiver/physical-channels/channel.

Other flags are specific to electrical host lanes.  This change adds a
new analogous list /components/component/transceiver/host-lanes/lane to
hold them.
  • Loading branch information
nkitchen-arista committed Oct 15, 2024
1 parent b0ef779 commit 84a08c9
Showing 1 changed file with 110 additions and 3 deletions.
113 changes: 110 additions & 3 deletions release/models/platform/openconfig-platform-transceiver.yang
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,25 @@ module openconfig-platform-transceiver {

oc-ext:openconfig-version "0.15.0";

revision "2024-09-21" {
revision "2024-10-09" {
description
"Add status flags for transceiver host lanes and media channels.";
reference "0.15.0";
}

revision "2024-09-21" {
description
"Clearly define how physical channel power leaves are used.";
reference "0.15.0";
}

revision "2023-08-30" {
revision "2023-08-30" {
description
"Clarify transceiver module threshold for input-power.";
reference "0.14.0";
}

revision "2023-08-30" {
revision "2023-08-30" {
description
"Add transceiver module temperature thresholds";
reference "0.13.0";
Expand Down Expand Up @@ -407,6 +413,29 @@ revision "2023-08-30" {
uses oc-opt-types:avg-min-max-instant-stats-precision2-pct;
}

leaf tx-failure {
type boolean;
description
"Transmitter failure flag.
In earlier standards, including SFF-8436, SFF-8472, and QSFP-DD CMIS 4.0,
this flag was named Tx Fault.";
reference "QSFP-DD CMIS 5.0 Table 8-77, SFF-8472 Table 9-11, SFF-8436 Table 19";
}

leaf rx-los {
type boolean;
description
"Receiver loss-of-signal flag.";
reference "QSFP-DD CMIS 5.0 Table 8-78, SFF-8472 Table 9-11, SFF-8436 Table 19";
}

leaf rx-cdr-lol {
type boolean;
description
"Receiver clock-and-data-recovery loss-of-lock flag.";
reference "QSFP-DD CMIS 5.0 Table 8-78";
}

uses output-optical-frequency;
uses optical-power-state;
}
Expand Down Expand Up @@ -455,6 +484,83 @@ revision "2023-08-30" {
}
}

grouping host-lane-config {
description
"Configuration data for electrical host lanes.";

leaf lane-number {
type uint8 {
range 1..max;
}
description
"Number identifying an electrical host lane carrying one serial
signal. Lanes are numbered starting with 1.";
reference "CMIS 5.0 section 2.3.4";
}
}

grouping host-lane-state {
description
"Operational state data for electrical host lanes.";

leaf tx-los {
type boolean;
description
"Transmitter loss-of-signal flag.";
reference "CMIS 5.0 Table 8-77, SFF-8436 Table 19";
}

leaf tx-cdr-lol {
type boolean;
description
"Transmitter clock-and-data-recovery loss-of-lock flag.";
reference "CMIS 5.0 Table 8-77";
}
}

grouping host-lane-top {
description
"Top-level grouping for electrical host lanes.";

container host-lanes {
description
"Enclosing container for host lanes.";

list lane {
key "lane-number";
description
"List of electrical host lanes, keyed by lane number.
The host lanes of a transceiver constitute its electrical interface
with the host system.";
reference "CMIS 5.0 section 4.1";

leaf lane-number {
type leafref {
path "../config/lane-number";
}
description
"Reference to the host lane number.";
}

container config {
description
"Configuration data for host lanes.";

uses host-lane-config;
}

container state {
config false;
description
"Operational state data for host lanes.";

uses host-lane-config;
uses host-lane-state;
}
}
}
}

grouping transceiver-threshold-top {
description
"Top-level grouping for transceiver alarm thresholds for
Expand Down Expand Up @@ -926,6 +1032,7 @@ revision "2023-08-30" {
// physical channels are associated with a transceiver
// component
uses physical-channel-top;
uses host-lane-top;
uses transceiver-threshold-top;
}
}
Expand Down

0 comments on commit 84a08c9

Please sign in to comment.