amit.ghosh | 9f6af0e | 2020-11-04 14:09:25 +0100 | [diff] [blame] | 1 | // Copyright (c) 2018 Open Networking Foundation |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at: |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | syntax = "proto3"; |
| 16 | |
khenaidoo | 5fc5cea | 2021-08-11 17:39:16 -0400 | [diff] [blame^] | 17 | option go_package = "github.com/opencord/voltha-protos/v5/go/extension"; |
amit.ghosh | 9f6af0e | 2020-11-04 14:09:25 +0100 | [diff] [blame] | 18 | option java_package = "org.opencord.voltha.extension"; |
| 19 | |
| 20 | package extension; |
| 21 | |
| 22 | import public "voltha_protos/ext_config.proto"; |
kesavand | 763d800 | 2021-01-04 16:24:42 +0530 | [diff] [blame] | 23 | import "google/protobuf/empty.proto"; |
amit.ghosh | 9f6af0e | 2020-11-04 14:09:25 +0100 | [diff] [blame] | 24 | |
| 25 | message GetDistanceRequest { |
| 26 | string onuDeviceId = 1; |
| 27 | } |
| 28 | |
| 29 | message GetDistanceResponse { |
| 30 | uint32 distance = 1; // distance in meters |
| 31 | } |
| 32 | |
| 33 | message GetOnuUniInfoRequest { |
| 34 | uint32 uniIndex = 1; // Index of the uni starting from 0 |
| 35 | } |
| 36 | |
| 37 | message GetOnuUniInfoResponse { |
| 38 | enum ConfigurationInd { |
| 39 | UNKOWN = 0; |
| 40 | TEN_BASE_T_FDX = 1; |
| 41 | HUNDRED_BASE_T_FDX = 2; |
| 42 | GIGABIT_ETHERNET_FDX = 3; |
| 43 | TEN_G_ETHERNET_FDX = 4; |
| 44 | TEN_BASE_T_HDX = 5; |
| 45 | HUNDRED_BASE_T_HDX = 6; |
| 46 | GIGABIT_ETHERNET_HDX = 7; |
| 47 | } |
| 48 | |
| 49 | enum AdministrativeState { |
| 50 | ADMSTATE_UNDEFINED = 0; |
| 51 | LOCKED = 1; |
| 52 | UNLOCKED = 2; |
| 53 | } |
| 54 | |
| 55 | enum OperationalState { |
| 56 | OPERSTATE_UNDEFINED = 0; |
| 57 | ENABLED = 1; |
| 58 | DISABLED = 2; |
| 59 | } |
| 60 | |
| 61 | AdministrativeState admState = 1; |
| 62 | OperationalState operState = 2; |
| 63 | ConfigurationInd configInd = 3; |
| 64 | } |
| 65 | |
kesavand | 763d800 | 2021-01-04 16:24:42 +0530 | [diff] [blame] | 66 | message GetOltPortCounters { |
| 67 | enum PortType { |
| 68 | Port_UNKNOWN = 0; |
| 69 | Port_ETHERNET_NNI = 1; |
| 70 | Port_PON_OLT = 2; |
| 71 | } |
| 72 | uint32 portNo = 1; // Device-unique port number |
| 73 | PortType portType = 2; |
| 74 | } |
| 75 | |
| 76 | message GetOltPortCountersResponse { |
| 77 | uint64 txBytes = 1; |
| 78 | uint64 rxBytes = 2; |
| 79 | uint64 txPackets = 3; |
| 80 | uint64 rxPackets = 4; |
| 81 | uint64 txErrorPackets = 5; |
| 82 | uint64 rxErrorPackets = 6; |
| 83 | uint64 txBcastPackets = 7; |
| 84 | uint64 rxBcastPackets = 8; |
| 85 | uint64 txUcastPackets = 9; |
| 86 | uint64 rxUcastPackets = 10; |
| 87 | uint64 txMcastPackets = 11; |
| 88 | uint64 rxMcastPackets = 12; |
| 89 | } |
| 90 | |
| 91 | message GetOnuPonOpticalInfo { |
| 92 | google.protobuf.Empty empty = 1; |
| 93 | } |
| 94 | |
Girish Gowdra | b1d742d | 2021-05-01 15:34:32 -0700 | [diff] [blame] | 95 | // These values correspond to the Optical Line Supervision Test results |
| 96 | // described in section A3.39.5 of ITU-T G.988 (11/2017) specification. |
kesavand | 763d800 | 2021-01-04 16:24:42 +0530 | [diff] [blame] | 97 | message GetOnuPonOpticalInfoResponse{ |
Girish Gowdra | b1d742d | 2021-05-01 15:34:32 -0700 | [diff] [blame] | 98 | float powerFeedVoltage = 1; // unit of value is voltage |
| 99 | float receivedOpticalPower = 2; // unit of value is dBm |
| 100 | float meanOpticalLaunchPower = 3; // unit of value is dBm |
Girish Gowdra | bce9ea7 | 2021-05-05 08:47:49 -0700 | [diff] [blame] | 101 | float laserBiasCurrent = 4; // unit of value is milli-amphere (mA) |
Girish Gowdra | b1d742d | 2021-05-01 15:34:32 -0700 | [diff] [blame] | 102 | float temperature = 5; // unit of value is degree celsius |
kesavand | 763d800 | 2021-01-04 16:24:42 +0530 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | message GetOnuEthernetBridgePortHistory { |
| 106 | enum Direction { |
| 107 | UNDEFINED = 0; |
| 108 | UPSTREAM = 1; |
| 109 | DOWNSTREAM = 2; |
| 110 | } |
| 111 | Direction direction = 1; |
| 112 | } |
| 113 | |
| 114 | message GetOnuEthernetBridgePortHistoryResponse { |
| 115 | uint32 dropEvents = 1; |
| 116 | uint32 octets = 2; |
| 117 | uint32 packets= 3; |
| 118 | uint32 broadcastPackets = 4; |
| 119 | uint32 multicastPackets = 5; |
| 120 | uint32 crcErroredPackets = 6; |
| 121 | uint32 undersizePackets = 7; |
| 122 | uint32 oversizePackets = 8; |
| 123 | uint32 packets64octets = 9; |
| 124 | uint32 packets65To127octets = 10; |
| 125 | uint32 packets128To255Octets = 11; |
| 126 | uint32 packets256To511octets = 12; |
| 127 | uint32 packets512To1023octets = 13; |
| 128 | uint32 packets1024To1518octets = 14; |
| 129 | } |
| 130 | |
| 131 | message GetOnuFecHistory { |
| 132 | google.protobuf.Empty empty = 1; |
| 133 | } |
| 134 | |
| 135 | message GetOnuFecHistoryResponse { |
| 136 | uint32 correctedBytes = 1; |
| 137 | uint32 correctedCodeWords = 2; |
| 138 | uint32 fecSeconds = 3; |
| 139 | uint32 totalCodeWords = 4; |
| 140 | uint32 uncorrectableCodeWords = 5; |
| 141 | } |
| 142 | |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 143 | message GetOnuCountersRequest { |
| 144 | fixed32 intf_id = 1; |
| 145 | fixed32 onu_id = 2; |
| 146 | } |
| 147 | |
Himani Chawla | 9a49739 | 2021-05-28 13:04:42 +0530 | [diff] [blame] | 148 | message GetOmciEthernetFrameExtendedPmRequest { |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 149 | string onuDeviceId = 1; |
| 150 | } |
| 151 | |
Gamze Abaka | 0868307 | 2021-05-26 13:38:02 +0000 | [diff] [blame] | 152 | message GetRxPowerRequest { |
| 153 | fixed32 intf_id = 1; |
| 154 | fixed32 onu_id = 2; |
| 155 | } |
| 156 | |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 157 | message GetOnuCountersResponse { |
| 158 | oneof is_intf_id { |
| 159 | fixed32 intf_id = 1; |
| 160 | } |
| 161 | oneof is_onu_id { |
| 162 | fixed32 onu_id = 2; |
| 163 | } |
| 164 | oneof is_positive_drift { |
| 165 | fixed64 positive_drift = 3; |
| 166 | } |
| 167 | oneof is_negative_drift { |
| 168 | fixed64 negative_drift = 4; |
| 169 | } |
| 170 | oneof is_delimiter_miss_detection { |
| 171 | fixed64 delimiter_miss_detection = 5; |
| 172 | } |
| 173 | oneof is_bip_errors { |
| 174 | fixed64 bip_errors = 6; |
| 175 | } |
| 176 | oneof is_bip_units { |
| 177 | fixed64 bip_units = 7; |
| 178 | } |
| 179 | oneof is_fec_corrected_symbols { |
| 180 | fixed64 fec_corrected_symbols = 8; |
| 181 | } |
| 182 | oneof is_fec_codewords_corrected { |
| 183 | fixed64 fec_codewords_corrected = 9; |
| 184 | } |
| 185 | oneof is_fec_codewords_uncorrectable { |
| 186 | fixed64 fec_codewords_uncorrectable = 10; |
| 187 | } |
| 188 | oneof is_fec_codewords { |
| 189 | fixed64 fec_codewords = 11; |
| 190 | } |
| 191 | oneof is_fec_corrected_units { |
| 192 | fixed64 fec_corrected_units = 12; |
| 193 | } |
| 194 | oneof is_xgem_key_errors { |
| 195 | fixed64 xgem_key_errors = 13; |
| 196 | } |
| 197 | oneof is_xgem_loss { |
| 198 | fixed64 xgem_loss = 14; |
| 199 | } |
| 200 | oneof is_rx_ploams_error { |
| 201 | fixed64 rx_ploams_error = 15; |
| 202 | } |
| 203 | oneof is_rx_ploams_non_idle { |
| 204 | fixed64 rx_ploams_non_idle = 16; |
| 205 | } |
| 206 | oneof is_rx_omci { |
| 207 | fixed64 rx_omci = 17; |
| 208 | } |
| 209 | oneof is_tx_omci { |
| 210 | fixed64 tx_omci = 18; |
| 211 | } |
| 212 | oneof is_rx_omci_packets_crc_error { |
| 213 | fixed64 rx_omci_packets_crc_error = 19; |
| 214 | } |
| 215 | oneof is_rx_bytes { |
| 216 | fixed64 rx_bytes = 20; |
| 217 | } |
| 218 | oneof is_rx_packets { |
| 219 | fixed64 rx_packets = 21; |
| 220 | } |
| 221 | oneof is_tx_bytes { |
| 222 | fixed64 tx_bytes = 22; |
| 223 | } |
| 224 | oneof is_tx_packets { |
| 225 | fixed64 tx_packets = 23; |
| 226 | } |
| 227 | oneof is_ber_reported { |
| 228 | fixed64 ber_reported = 24; |
| 229 | } |
| 230 | oneof is_lcdg_errors { |
| 231 | fixed64 lcdg_errors = 25; |
| 232 | } |
| 233 | oneof is_rdi_errors { |
| 234 | fixed64 rdi_errors = 26; |
| 235 | } |
| 236 | oneof is_timestamp { |
| 237 | // reported timestamp in seconds since epoch |
| 238 | fixed32 timestamp = 27; |
| 239 | } |
| 240 | } |
| 241 | |
Himani Chawla | 9a49739 | 2021-05-28 13:04:42 +0530 | [diff] [blame] | 242 | message OmciEthernetFrameExtendedPm { |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 243 | fixed64 drop_events = 1; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 244 | fixed64 octets = 2; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 245 | fixed64 frames = 3; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 246 | fixed64 broadcast_frames = 4; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 247 | fixed64 multicast_frames = 5; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 248 | fixed64 crc_errored_frames = 6; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 249 | fixed64 undersize_frames = 7; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 250 | fixed64 oversize_frames = 8; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 251 | fixed64 frames_64_octets = 9; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 252 | fixed64 frames_65_to_127_octets = 10; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 253 | fixed64 frames_128_to_255_octets = 11; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 254 | fixed64 frames_256_to_511_octets = 12; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 255 | fixed64 frames_512_to_1023_octets = 13; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 256 | fixed64 frames_1024_to_1518_octets = 14; |
Himani Chawla | 9a49739 | 2021-05-28 13:04:42 +0530 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | message GetOmciEthernetFrameExtendedPmResponse { |
| 260 | OmciEthernetFrameExtendedPm upstream = 1; |
| 261 | OmciEthernetFrameExtendedPm downstream = 2; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 262 | } |
| 263 | |
Gamze Abaka | 0868307 | 2021-05-26 13:38:02 +0000 | [diff] [blame] | 264 | message GetRxPowerResponse { |
| 265 | fixed32 intf_id= 1; |
| 266 | fixed32 onu_id = 2; |
| 267 | string status = 3; |
| 268 | string fail_reason = 4; |
| 269 | double rx_power = 5; |
| 270 | } |
| 271 | |
amit.ghosh | 9f6af0e | 2020-11-04 14:09:25 +0100 | [diff] [blame] | 272 | message GetValueRequest { |
| 273 | oneof request { |
| 274 | GetDistanceRequest distance = 1; |
| 275 | GetOnuUniInfoRequest uniInfo = 2; |
kesavand | 763d800 | 2021-01-04 16:24:42 +0530 | [diff] [blame] | 276 | // Corresponds to PmMetricId.PON_PORT_COUNTERS, PmMetricId.NNI_PORT_COUNTERS |
| 277 | GetOltPortCounters oltPortInfo = 3; |
| 278 | // Corresponds to PmMetricId.PON_OPTICAL |
| 279 | GetOnuPonOpticalInfo onuOpticalInfo = 4; |
| 280 | // Corresponds to PmMetricId.ETHERNET_BRIDGE_PORT_HISTORY |
| 281 | GetOnuEthernetBridgePortHistory ethBridgePort = 5; |
| 282 | // Corresponds to PmMetricId.FEC_HISTORY |
Gamze Abaka | 0868307 | 2021-05-26 13:38:02 +0000 | [diff] [blame] | 283 | GetOnuFecHistory fecHistory = 6; |
| 284 | GetOnuCountersRequest onuPonInfo = 7; |
Himani Chawla | 9a49739 | 2021-05-28 13:04:42 +0530 | [diff] [blame] | 285 | GetOmciEthernetFrameExtendedPmRequest onuInfo = 8; |
Gamze Abaka | 0868307 | 2021-05-26 13:38:02 +0000 | [diff] [blame] | 286 | GetRxPowerRequest rxPower = 9; |
amit.ghosh | 9f6af0e | 2020-11-04 14:09:25 +0100 | [diff] [blame] | 287 | } |
| 288 | } |
| 289 | |
| 290 | message GetValueResponse { |
| 291 | enum Status { |
| 292 | STATUS_UNDEFINED = 0; |
| 293 | OK = 1; |
| 294 | ERROR = 2; |
| 295 | } |
| 296 | |
| 297 | enum ErrorReason { |
| 298 | REASON_UNDEFINED = 0; |
| 299 | UNSUPPORTED = 1; |
kesavand | 763d800 | 2021-01-04 16:24:42 +0530 | [diff] [blame] | 300 | INVALID_DEVICE_ID = 2; |
| 301 | INVALID_PORT_TYPE = 3; |
| 302 | TIMEOUT = 4; |
| 303 | INVALID_REQ_TYPE = 5; |
Himani Chawla | e5bb7ca | 2021-05-17 15:48:32 +0530 | [diff] [blame] | 304 | INTERNAL_ERROR = 6; |
| 305 | INVALID_DEVICE = 7; |
amit.ghosh | 9f6af0e | 2020-11-04 14:09:25 +0100 | [diff] [blame] | 306 | } |
| 307 | Status status = 1; |
| 308 | ErrorReason errReason = 2; |
| 309 | |
| 310 | oneof response { |
| 311 | GetDistanceResponse distance = 3; |
| 312 | GetOnuUniInfoResponse uniInfo = 4; |
kesavand | 763d800 | 2021-01-04 16:24:42 +0530 | [diff] [blame] | 313 | GetOltPortCountersResponse portCoutners = 5; |
| 314 | GetOnuPonOpticalInfoResponse onuOpticalInfo = 6; |
| 315 | GetOnuEthernetBridgePortHistoryResponse ethBridgePortInfo = 7; |
| 316 | GetOnuFecHistoryResponse fecHistory = 8; |
Gamze Abaka | 0868307 | 2021-05-26 13:38:02 +0000 | [diff] [blame] | 317 | GetOnuCountersResponse onuPonCounters = 9; |
Himani Chawla | 9a49739 | 2021-05-28 13:04:42 +0530 | [diff] [blame] | 318 | GetOmciEthernetFrameExtendedPmResponse onuCounters = 10; |
Gamze Abaka | 0868307 | 2021-05-26 13:38:02 +0000 | [diff] [blame] | 319 | GetRxPowerResponse rxPower = 11; |
amit.ghosh | 9f6af0e | 2020-11-04 14:09:25 +0100 | [diff] [blame] | 320 | } |
| 321 | } |
| 322 | |
| 323 | message SetValueRequest { |
| 324 | oneof request { |
| 325 | config.AlarmConfig alarm_config = 1; |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | message SetValueResponse { |
| 330 | enum Status { |
| 331 | STATUS_UNDEFINED = 0; |
| 332 | OK = 1; |
| 333 | ERROR = 2; |
| 334 | } |
| 335 | |
| 336 | enum ErrorReason { |
| 337 | REASON_UNDEFINED = 0; |
| 338 | UNSUPPORTED = 1; |
| 339 | } |
| 340 | Status status = 1; |
| 341 | ErrorReason errReason = 2; |
| 342 | |
| 343 | // As of now we don't have any explicit response for the supported SetValueRequests |
| 344 | // to be used later |
| 345 | //oneof response { |
| 346 | // |
| 347 | //} |
| 348 | } |
| 349 | |
| 350 | message SingleGetValueRequest { |
| 351 | string targetId = 1; |
| 352 | GetValueRequest request = 2; |
| 353 | } |
| 354 | |
| 355 | message SingleGetValueResponse{ |
| 356 | GetValueResponse response = 1; |
| 357 | } |
| 358 | |
| 359 | message SingleSetValueRequest { |
| 360 | string targetId = 1; |
| 361 | SetValueRequest request = 2; |
| 362 | } |
| 363 | message SingleSetValueResponse { |
| 364 | SetValueResponse response = 1; |
| 365 | } |
| 366 | |
| 367 | // Extension is a service to get and set specific attributes |
| 368 | service Extension { |
| 369 | // Get a single attribute |
| 370 | rpc GetExtValue(SingleGetValueRequest) returns (SingleGetValueResponse); |
| 371 | // Set a single attribute |
| 372 | rpc SetExtValue(SingleSetValueRequest) returns (SingleSetValueResponse); |
| 373 | } |