blob: d2a252b79e083fa8cc0b038a4734f5520f6c16fb [file] [log] [blame]
Zack Williams52209662019-02-07 10:15:31 -07001// 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
15syntax = "proto3";
William Kurkian7c151592019-03-27 09:36:15 -040016
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030017option go_package = "github.com/opencord/voltha-protos/v3/go/openolt";
18option java_package = "org.opencord.voltha.openolt";
19option java_outer_classname = "VolthaOpenOLT";
William Kurkian7c151592019-03-27 09:36:15 -040020
Zack Williams52209662019-02-07 10:15:31 -070021package openolt;
22import "google/api/annotations.proto";
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -040023import public "voltha_protos/tech_profile.proto";
Zack Williams52209662019-02-07 10:15:31 -070024
25service Openolt {
26
27 rpc DisableOlt(Empty) returns (Empty) {
28 option (google.api.http) = {
29 post: "/v1/Disable"
30 body: "*"
31 };
32 }
33
34 rpc ReenableOlt(Empty) returns (Empty) {
35 option (google.api.http) = {
36 post: "/v1/Reenable"
37 body: "*"
38 };
39 }
40
41 rpc ActivateOnu(Onu) returns (Empty) {
42 option (google.api.http) = {
43 post: "/v1/EnableOnu"
44 body: "*"
45 };
46 }
47
48 rpc DeactivateOnu(Onu) returns (Empty) {
49 option (google.api.http) = {
50 post: "/v1/DisableOnu"
51 body: "*"
52 };
53 }
54
55 rpc DeleteOnu(Onu) returns (Empty) {
56 option (google.api.http) = {
57 post: "/v1/DeleteOnu"
58 body: "*"
59 };
60 }
61
62 rpc OmciMsgOut(OmciMsg) returns (Empty) {
63 option (google.api.http) = {
64 post: "/v1/OmciMsgOut"
65 body: "*"
66 };
67 }
68
69 rpc OnuPacketOut(OnuPacket) returns (Empty) {
70 option (google.api.http) = {
71 post: "/v1/OnuPacketOut"
72 body: "*"
73 };
74 }
75
76 rpc UplinkPacketOut(UplinkPacket) returns (Empty) {
77 option (google.api.http) = {
78 post: "/v1/UplinkPacketOut"
79 body: "*"
80 };
81 }
82
83 rpc FlowAdd(Flow) returns (Empty) {
84 option (google.api.http) = {
85 post: "/v1/FlowAdd"
86 body: "*"
87 };
88 }
89
90 rpc FlowRemove(Flow) returns (Empty) {
91 option (google.api.http) = {
92 post: "/v1/FlowRemove"
93 body: "*"
94 };
95 }
96
97 rpc HeartbeatCheck(Empty) returns (Heartbeat) {
98 option (google.api.http) = {
99 post: "/v1/HeartbeatCheck"
100 body: "*"
101 };
102 }
103
104 rpc EnablePonIf(Interface) returns (Empty) {
105 option (google.api.http) = {
106 post: "/v1/EnablePonIf"
107 body: "*"
108 };
109 }
110
111 rpc DisablePonIf(Interface) returns (Empty) {
112 option (google.api.http) = {
113 post: "/v1/DisablePonIf"
114 body: "*"
115 };
116 }
117
118 rpc GetDeviceInfo(Empty) returns (DeviceInfo) {
119 option (google.api.http) = {
120 post: "/v1/GetDeviceInfo"
121 body: "*"
122 };
123 }
124
125 rpc Reboot(Empty) returns (Empty) {
126 option (google.api.http) = {
127 post: "/v1/Reboot"
128 body: "*"
129 };
130 }
131
132 rpc CollectStatistics(Empty) returns (Empty) {
133 option (google.api.http) = {
134 post: "/v1/CollectStatistics"
135 body: "*"
136 };
137 }
138
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400139 rpc CreateTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Zack Williams52209662019-02-07 10:15:31 -0700140 option (google.api.http) = {
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400141 post: "/v1/CreateTrafficSchedulers"
Zack Williams52209662019-02-07 10:15:31 -0700142 body: "*"
143 };
144 }
145
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400146 rpc RemoveTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Zack Williams52209662019-02-07 10:15:31 -0700147 option (google.api.http) = {
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400148 post: "/v1/RemoveTrafficSchedulers"
149 body: "*"
150 };
151 }
152
153 rpc CreateTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
154 option (google.api.http) = {
155 post: "/v1/CreateTrafficQueues"
156 body: "*"
157 };
158 }
159
160 rpc RemoveTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
161 option (google.api.http) = {
162 post: "/v1/RemoveTrafficQueues"
Zack Williams52209662019-02-07 10:15:31 -0700163 body: "*"
164 };
165 }
166
167 rpc EnableIndication(Empty) returns (stream Indication) {}
Burak Gurdag402dd952019-12-10 20:31:11 +0000168
169 rpc PerformGroupOperation(Group) returns (Empty) {
170 option (google.api.http) = {
171 post: "/v1/PerformGroupOperation"
172 body: "*"
173 };
174 }
Zack Williams52209662019-02-07 10:15:31 -0700175}
176
177message Indication {
178 oneof data {
179 OltIndication olt_ind = 1;
180 IntfIndication intf_ind = 2;
181 IntfOperIndication intf_oper_ind = 3;
182 OnuDiscIndication onu_disc_ind = 4;
183 OnuIndication onu_ind = 5;
184 OmciIndication omci_ind = 6;
185 PacketIndication pkt_ind = 7;
186 PortStatistics port_stats = 8;
187 FlowStatistics flow_stats = 9;
188 AlarmIndication alarm_ind= 10;
189 }
190}
191
192message AlarmIndication {
193 oneof data {
194 LosIndication los_ind = 1;
195 DyingGaspIndication dying_gasp_ind = 2;
196 OnuAlarmIndication onu_alarm_ind = 3;
197 OnuStartupFailureIndication onu_startup_fail_ind = 4;
198 OnuSignalDegradeIndication onu_signal_degrade_ind = 5;
199 OnuDriftOfWindowIndication onu_drift_of_window_ind = 6;
200 OnuLossOfOmciChannelIndication onu_loss_omci_ind = 7;
201 OnuSignalsFailureIndication onu_signals_fail_ind = 8;
202 OnuTransmissionInterferenceWarning onu_tiwi_ind = 9;
203 OnuActivationFailureIndication onu_activation_fail_ind = 10;
204 OnuProcessingErrorIndication onu_processing_error_ind = 11;
Naga Manjunath0a734252019-11-21 19:00:23 +0530205 OnuLossOfKeySyncFailureIndication onu_loss_of_sync_fail_ind = 12;
206 OnuItuPonStatsIndication onu_itu_pon_stats_ind = 13;
Devmalya Paulea6eb472020-02-04 20:41:01 -0500207 OnuDeactivationFailureIndication onu_deactivation_failure_ind = 14;
Devmalya Paulb0c12472020-02-18 20:08:53 -0500208 OnuRemoteDefectIndication onu_remote_defect_ind = 15;
Devmalya Paul82957962020-03-01 18:49:37 -0500209 OnuLossOfGEMChannelDelineationIndication onu_loss_gem_delineation_ind = 16;
210 OnuPhysicalEquipmentErrorIndication onu_physical_equipment_error_ind = 17;
211 OnuLossOfAcknowledgementIndication onu_loss_of_ack_ind = 18;
Zack Williams52209662019-02-07 10:15:31 -0700212 }
213}
214
215message OltIndication {
216 string oper_state = 1; // up, down
217}
218
219message IntfIndication {
220 fixed32 intf_id = 1;
221 string oper_state = 2; // up, down
222}
223
224message OnuDiscIndication {
225 fixed32 intf_id = 1;
226 SerialNumber serial_number = 2;
227}
228
229message OnuIndication {
230 fixed32 intf_id = 1;
231 fixed32 onu_id = 2;
232 string oper_state = 3; // up, down
233 string admin_state = 5; // up, down
234 SerialNumber serial_number = 4;
235}
236
237message IntfOperIndication {
238 string type = 1; // nni, pon
239 fixed32 intf_id = 2;
240 string oper_state = 3; // up, down
241}
242
243message OmciIndication {
244 fixed32 intf_id = 1;
245 fixed32 onu_id = 2;
246 bytes pkt = 3;
247}
248
249message PacketIndication {
250 string intf_type = 5; // nni, pon, unknown
251 fixed32 intf_id = 1;
252 fixed32 gemport_id = 2;
253 fixed32 flow_id = 3;
254 fixed32 port_no = 6;
255 fixed64 cookie = 7;
256 bytes pkt = 4;
257}
258
259message Interface {
260 fixed32 intf_id = 1;
261}
262
263message Heartbeat {
264 fixed32 heartbeat_signature = 1;
265}
266
267message Onu {
268 fixed32 intf_id = 1;
269 fixed32 onu_id = 2;
270 SerialNumber serial_number = 3;
271 fixed32 pir = 4; // peak information rate assigned to onu
272}
273
274message OmciMsg {
275 fixed32 intf_id = 1;
276 fixed32 onu_id = 2;
277 bytes pkt = 3;
278}
279
280message OnuPacket {
281 fixed32 intf_id = 1;
282 fixed32 onu_id = 2;
283 fixed32 port_no = 4;
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400284 fixed32 gemport_id = 5;
Zack Williams52209662019-02-07 10:15:31 -0700285 bytes pkt = 3;
286}
287
288message UplinkPacket {
289 fixed32 intf_id = 1;
290 bytes pkt = 2;
291}
292
293message DeviceInfo {
294 string vendor = 1;
295 string model = 2;
296 string hardware_version = 3;
297 string firmware_version = 4;
298 string device_id = 16;
299 string device_serial_number = 17;
300
301 // Total number of pon intf ports on the device
302 fixed32 pon_ports = 12;
303
304 // If using global per-device technology profile. To be deprecated
305 string technology = 5;
306 fixed32 onu_id_start = 6;
307 fixed32 onu_id_end = 7;
308 fixed32 alloc_id_start = 8;
309 fixed32 alloc_id_end = 9;
310 fixed32 gemport_id_start = 10;
311 fixed32 gemport_id_end = 11;
312 fixed32 flow_id_start = 13;
313 fixed32 flow_id_end = 14;
314
315 message DeviceResourceRanges {
316
317 // List of 0 or more intf_ids that use the same technology and pools.
318 // If 0 intf_ids supplied, it implies ALL interfaces
319 repeated fixed32 intf_ids = 1;
320
321 // Technology profile for this pool
322 string technology = 2;
323
324 message Pool {
325 enum PoolType {
326 ONU_ID = 0;
327 ALLOC_ID = 1;
328 GEMPORT_ID = 2;
329 FLOW_ID = 3;
330 }
331
332 enum SharingType {
333 DEDICATED_PER_INTF = 0;
334 SHARED_BY_ALL_INTF_ALL_TECH = 1; // Shared across all interfaces in all technologies in all ranges
335 SHARED_BY_ALL_INTF_SAME_TECH = 2; // Shared across all interfaces of the same technology used in this range
336 }
337
338 PoolType type = 1;
339 SharingType sharing = 2;
340 fixed32 start = 3; // lower bound on IDs allocated from this pool
341 fixed32 end = 4; // upper bound on IDs allocated from this pool
342 }
343 repeated Pool pools = 3;
344 }
345 repeated DeviceResourceRanges ranges = 15;
346}
347
348message Classifier {
349 fixed32 o_tpid = 1;
350 fixed32 o_vid = 2;
351 fixed32 i_tpid = 3;
352 fixed32 i_vid = 4;
353 fixed32 o_pbits = 5;
354 fixed32 i_pbits = 6;
355 fixed32 eth_type = 7;
356 bytes dst_mac = 8;
357 bytes src_mac = 9;
358 fixed32 ip_proto = 10;
359 fixed32 dst_ip = 11;
360 fixed32 src_ip = 12;
361 fixed32 src_port = 13;
362 fixed32 dst_port = 14;
363 string pkt_tag_type = 15; // untagged, single_tag, double_tag
364}
365
366message ActionCmd {
367 bool add_outer_tag = 1;
368 bool remove_outer_tag = 2;
369 bool trap_to_host = 3;
Burak Gurdag402dd952019-12-10 20:31:11 +0000370 bool remark_outer_pbits = 4;
371 bool remark_inner_pbits = 5;
372 bool add_inner_tag = 6;
373 bool remove_inner_tag = 7;
374 bool translate_inner_tag = 8;
375 bool translate_outer_tag = 9;
Zack Williams52209662019-02-07 10:15:31 -0700376}
377
378message Action {
379 ActionCmd cmd = 1;
380 fixed32 o_vid = 2;
381 fixed32 o_pbits = 3;
382 fixed32 o_tpid = 4;
383 fixed32 i_vid = 5;
384 fixed32 i_pbits = 6;
385 fixed32 i_tpid = 7;
386}
387
388message Flow {
389 sfixed32 access_intf_id = 1;
390 sfixed32 onu_id = 2;
391 sfixed32 uni_id = 11;
392 fixed32 flow_id = 3;
393 string flow_type = 4; // upstream, downstream, broadcast, multicast
394 sfixed32 alloc_id = 10;
395 sfixed32 network_intf_id = 5;
396 sfixed32 gemport_id = 6;
397 Classifier classifier = 7;
398 Action action = 8;
399 sfixed32 priority = 9;
400 fixed64 cookie = 12; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
401 fixed32 port_no = 13; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
Burak Gurdag402dd952019-12-10 20:31:11 +0000402 fixed32 group_id = 14;
Zack Williams52209662019-02-07 10:15:31 -0700403}
404
405message SerialNumber {
406 bytes vendor_id = 1;
407 bytes vendor_specific = 2;
408}
409
410message PortStatistics {
411 fixed32 intf_id = 1;
412 fixed64 rx_bytes = 2;
413 fixed64 rx_packets = 3;
414 fixed64 rx_ucast_packets = 4;
415 fixed64 rx_mcast_packets = 5;
416 fixed64 rx_bcast_packets = 6;
417 fixed64 rx_error_packets = 7;
418 fixed64 tx_bytes = 8;
419 fixed64 tx_packets = 9;
420 fixed64 tx_ucast_packets = 10;
421 fixed64 tx_mcast_packets = 11;
422 fixed64 tx_bcast_packets = 12;
423 fixed64 tx_error_packets = 13;
424 fixed64 rx_crc_errors = 14;
425 fixed64 bip_errors = 15;
426 fixed32 timestamp = 16;
427}
428
429message FlowStatistics {
430 fixed32 flow_id = 1;
431 fixed64 rx_bytes = 2;
432 fixed64 rx_packets = 3;
433 fixed64 tx_bytes = 8;
434 fixed64 tx_packets = 9;
435 fixed32 timestamp = 16;
436}
437
438message LosIndication {
439 fixed32 intf_id = 1;
440 string status = 2;
441}
442
443message DyingGaspIndication {
444 fixed32 intf_id = 1;
445 fixed32 onu_id = 2;
446 string status = 3;
447}
448
449message OnuAlarmIndication {
450 fixed32 intf_id = 1;
451 fixed32 onu_id = 2;
452 string los_status = 3;
453 string lob_status = 4;
454 string lopc_miss_status = 5;
455 string lopc_mic_error_status = 6;
Naga Manjunath0a734252019-11-21 19:00:23 +0530456 string lofi_status = 7;
457 string loami_status = 8;
Zack Williams52209662019-02-07 10:15:31 -0700458}
459
460message OnuStartupFailureIndication {
461 fixed32 intf_id = 1;
462 fixed32 onu_id = 2;
463 string status = 3;
464}
465
466message OnuSignalDegradeIndication {
467 fixed32 intf_id = 1;
468 fixed32 onu_id = 2;
469 string status = 3;
470 fixed32 inverse_bit_error_rate = 4;
471}
472
473message OnuDriftOfWindowIndication {
474 fixed32 intf_id = 1;
475 fixed32 onu_id = 2;
476 string status = 3;
477 fixed32 drift = 4;
478 fixed32 new_eqd = 5;
479}
480
481message OnuLossOfOmciChannelIndication {
482 fixed32 intf_id = 1;
483 fixed32 onu_id = 2;
484 string status = 3;
485}
486
487message OnuSignalsFailureIndication {
488 fixed32 intf_id = 1;
489 fixed32 onu_id = 2;
490 string status = 3;
491 fixed32 inverse_bit_error_rate = 4;
492}
493
494message OnuTransmissionInterferenceWarning {
495 fixed32 intf_id = 1;
496 fixed32 onu_id = 2;
497 string status = 3;
498 fixed32 drift = 4;
499}
500
501message OnuActivationFailureIndication {
502 fixed32 intf_id = 1;
503 fixed32 onu_id = 2;
Naga Manjunath0a734252019-11-21 19:00:23 +0530504 fixed32 fail_reason = 3;
505}
506
507message OnuLossOfKeySyncFailureIndication {
508 fixed32 intf_id = 1;
509 fixed32 onu_id = 2;
510 string status = 3;
511}
512
513message OnuItuPonStatsIndication{
514 fixed32 intf_id = 1;
515 fixed32 onu_id = 2;
516 fixed32 rdi_errors = 3;
Zack Williams52209662019-02-07 10:15:31 -0700517}
518
519message OnuProcessingErrorIndication {
520 fixed32 intf_id = 1;
521 fixed32 onu_id = 2;
522}
523
Devmalya Paulea6eb472020-02-04 20:41:01 -0500524message OnuDeactivationFailureIndication {
525 fixed32 intf_id = 1;
526 fixed32 onu_id = 2;
527 fixed32 fail_reason = 3;
528}
529
Devmalya Paulb0c12472020-02-18 20:08:53 -0500530message OnuRemoteDefectIndication{
531 fixed32 intf_id = 1;
532 fixed32 onu_id = 2;
533 fixed32 rdi_errors = 3;
534}
535
Devmalya Paul82957962020-03-01 18:49:37 -0500536message OnuLossOfGEMChannelDelineationIndication {
537 fixed32 intf_id = 1;
538 fixed32 onu_id = 2;
539 string status = 3;
540 fixed32 delineation_errors = 4;
541}
542
543message OnuPhysicalEquipmentErrorIndication {
544 fixed32 intf_id = 1;
545 fixed32 onu_id = 2;
546 string status = 3;
547}
548
549message OnuLossOfAcknowledgementIndication {
550 fixed32 intf_id = 1;
551 fixed32 onu_id = 2;
552 string status = 3;
553}
554
Burak Gurdag402dd952019-12-10 20:31:11 +0000555message GroupMember {
556 enum InterfaceType {
557 PON = 0;
558 EPON_1G_PATH = 1;
559 EPON_10G_PATH = 2;
560 }
561 uint32 interface_id = 1;
562 InterfaceType interface_type = 2;
563 uint32 gem_port_id = 3;
564 uint32 priority = 4; // Priority (and also the ID) of the default fixed queue for the multicast traffic.
565 // This queue is attached to the default PON port scheduler.
566}
567
568message Group {
569 enum GroupMembersCommand {
570 ADD_MEMBERS = 0;
571 REMOVE_MEMBERS = 1;
572 SET_MEMBERS = 2;
573 }
574
575 uint32 group_id = 1;
576 GroupMembersCommand command = 2;
577 repeated GroupMember members = 3;
578 Action action = 4;
579}
580
581
582
Zack Williams52209662019-02-07 10:15:31 -0700583message Empty {}
Burak Gurdag402dd952019-12-10 20:31:11 +0000584