blob: 3bb0673d1e355ad9c6b74230a0b89a6cadfc657c [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;
Zack Williams52209662019-02-07 10:15:31 -0700209 }
210}
211
212message OltIndication {
213 string oper_state = 1; // up, down
214}
215
216message IntfIndication {
217 fixed32 intf_id = 1;
218 string oper_state = 2; // up, down
219}
220
221message OnuDiscIndication {
222 fixed32 intf_id = 1;
223 SerialNumber serial_number = 2;
224}
225
226message OnuIndication {
227 fixed32 intf_id = 1;
228 fixed32 onu_id = 2;
229 string oper_state = 3; // up, down
230 string admin_state = 5; // up, down
231 SerialNumber serial_number = 4;
232}
233
234message IntfOperIndication {
235 string type = 1; // nni, pon
236 fixed32 intf_id = 2;
237 string oper_state = 3; // up, down
238}
239
240message OmciIndication {
241 fixed32 intf_id = 1;
242 fixed32 onu_id = 2;
243 bytes pkt = 3;
244}
245
246message PacketIndication {
247 string intf_type = 5; // nni, pon, unknown
248 fixed32 intf_id = 1;
249 fixed32 gemport_id = 2;
250 fixed32 flow_id = 3;
251 fixed32 port_no = 6;
252 fixed64 cookie = 7;
253 bytes pkt = 4;
254}
255
256message Interface {
257 fixed32 intf_id = 1;
258}
259
260message Heartbeat {
261 fixed32 heartbeat_signature = 1;
262}
263
264message Onu {
265 fixed32 intf_id = 1;
266 fixed32 onu_id = 2;
267 SerialNumber serial_number = 3;
268 fixed32 pir = 4; // peak information rate assigned to onu
269}
270
271message OmciMsg {
272 fixed32 intf_id = 1;
273 fixed32 onu_id = 2;
274 bytes pkt = 3;
275}
276
277message OnuPacket {
278 fixed32 intf_id = 1;
279 fixed32 onu_id = 2;
280 fixed32 port_no = 4;
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400281 fixed32 gemport_id = 5;
Zack Williams52209662019-02-07 10:15:31 -0700282 bytes pkt = 3;
283}
284
285message UplinkPacket {
286 fixed32 intf_id = 1;
287 bytes pkt = 2;
288}
289
290message DeviceInfo {
291 string vendor = 1;
292 string model = 2;
293 string hardware_version = 3;
294 string firmware_version = 4;
295 string device_id = 16;
296 string device_serial_number = 17;
297
298 // Total number of pon intf ports on the device
299 fixed32 pon_ports = 12;
300
301 // If using global per-device technology profile. To be deprecated
302 string technology = 5;
303 fixed32 onu_id_start = 6;
304 fixed32 onu_id_end = 7;
305 fixed32 alloc_id_start = 8;
306 fixed32 alloc_id_end = 9;
307 fixed32 gemport_id_start = 10;
308 fixed32 gemport_id_end = 11;
309 fixed32 flow_id_start = 13;
310 fixed32 flow_id_end = 14;
311
312 message DeviceResourceRanges {
313
314 // List of 0 or more intf_ids that use the same technology and pools.
315 // If 0 intf_ids supplied, it implies ALL interfaces
316 repeated fixed32 intf_ids = 1;
317
318 // Technology profile for this pool
319 string technology = 2;
320
321 message Pool {
322 enum PoolType {
323 ONU_ID = 0;
324 ALLOC_ID = 1;
325 GEMPORT_ID = 2;
326 FLOW_ID = 3;
327 }
328
329 enum SharingType {
330 DEDICATED_PER_INTF = 0;
331 SHARED_BY_ALL_INTF_ALL_TECH = 1; // Shared across all interfaces in all technologies in all ranges
332 SHARED_BY_ALL_INTF_SAME_TECH = 2; // Shared across all interfaces of the same technology used in this range
333 }
334
335 PoolType type = 1;
336 SharingType sharing = 2;
337 fixed32 start = 3; // lower bound on IDs allocated from this pool
338 fixed32 end = 4; // upper bound on IDs allocated from this pool
339 }
340 repeated Pool pools = 3;
341 }
342 repeated DeviceResourceRanges ranges = 15;
343}
344
345message Classifier {
346 fixed32 o_tpid = 1;
347 fixed32 o_vid = 2;
348 fixed32 i_tpid = 3;
349 fixed32 i_vid = 4;
350 fixed32 o_pbits = 5;
351 fixed32 i_pbits = 6;
352 fixed32 eth_type = 7;
353 bytes dst_mac = 8;
354 bytes src_mac = 9;
355 fixed32 ip_proto = 10;
356 fixed32 dst_ip = 11;
357 fixed32 src_ip = 12;
358 fixed32 src_port = 13;
359 fixed32 dst_port = 14;
360 string pkt_tag_type = 15; // untagged, single_tag, double_tag
361}
362
363message ActionCmd {
364 bool add_outer_tag = 1;
365 bool remove_outer_tag = 2;
366 bool trap_to_host = 3;
Burak Gurdag402dd952019-12-10 20:31:11 +0000367 bool remark_outer_pbits = 4;
368 bool remark_inner_pbits = 5;
369 bool add_inner_tag = 6;
370 bool remove_inner_tag = 7;
371 bool translate_inner_tag = 8;
372 bool translate_outer_tag = 9;
Zack Williams52209662019-02-07 10:15:31 -0700373}
374
375message Action {
376 ActionCmd cmd = 1;
377 fixed32 o_vid = 2;
378 fixed32 o_pbits = 3;
379 fixed32 o_tpid = 4;
380 fixed32 i_vid = 5;
381 fixed32 i_pbits = 6;
382 fixed32 i_tpid = 7;
383}
384
385message Flow {
386 sfixed32 access_intf_id = 1;
387 sfixed32 onu_id = 2;
388 sfixed32 uni_id = 11;
389 fixed32 flow_id = 3;
390 string flow_type = 4; // upstream, downstream, broadcast, multicast
391 sfixed32 alloc_id = 10;
392 sfixed32 network_intf_id = 5;
393 sfixed32 gemport_id = 6;
394 Classifier classifier = 7;
395 Action action = 8;
396 sfixed32 priority = 9;
397 fixed64 cookie = 12; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
398 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 +0000399 fixed32 group_id = 14;
Zack Williams52209662019-02-07 10:15:31 -0700400}
401
402message SerialNumber {
403 bytes vendor_id = 1;
404 bytes vendor_specific = 2;
405}
406
407message PortStatistics {
408 fixed32 intf_id = 1;
409 fixed64 rx_bytes = 2;
410 fixed64 rx_packets = 3;
411 fixed64 rx_ucast_packets = 4;
412 fixed64 rx_mcast_packets = 5;
413 fixed64 rx_bcast_packets = 6;
414 fixed64 rx_error_packets = 7;
415 fixed64 tx_bytes = 8;
416 fixed64 tx_packets = 9;
417 fixed64 tx_ucast_packets = 10;
418 fixed64 tx_mcast_packets = 11;
419 fixed64 tx_bcast_packets = 12;
420 fixed64 tx_error_packets = 13;
421 fixed64 rx_crc_errors = 14;
422 fixed64 bip_errors = 15;
423 fixed32 timestamp = 16;
424}
425
426message FlowStatistics {
427 fixed32 flow_id = 1;
428 fixed64 rx_bytes = 2;
429 fixed64 rx_packets = 3;
430 fixed64 tx_bytes = 8;
431 fixed64 tx_packets = 9;
432 fixed32 timestamp = 16;
433}
434
435message LosIndication {
436 fixed32 intf_id = 1;
437 string status = 2;
438}
439
440message DyingGaspIndication {
441 fixed32 intf_id = 1;
442 fixed32 onu_id = 2;
443 string status = 3;
444}
445
446message OnuAlarmIndication {
447 fixed32 intf_id = 1;
448 fixed32 onu_id = 2;
449 string los_status = 3;
450 string lob_status = 4;
451 string lopc_miss_status = 5;
452 string lopc_mic_error_status = 6;
Naga Manjunath0a734252019-11-21 19:00:23 +0530453 string lofi_status = 7;
454 string loami_status = 8;
Zack Williams52209662019-02-07 10:15:31 -0700455}
456
457message OnuStartupFailureIndication {
458 fixed32 intf_id = 1;
459 fixed32 onu_id = 2;
460 string status = 3;
461}
462
463message OnuSignalDegradeIndication {
464 fixed32 intf_id = 1;
465 fixed32 onu_id = 2;
466 string status = 3;
467 fixed32 inverse_bit_error_rate = 4;
468}
469
470message OnuDriftOfWindowIndication {
471 fixed32 intf_id = 1;
472 fixed32 onu_id = 2;
473 string status = 3;
474 fixed32 drift = 4;
475 fixed32 new_eqd = 5;
476}
477
478message OnuLossOfOmciChannelIndication {
479 fixed32 intf_id = 1;
480 fixed32 onu_id = 2;
481 string status = 3;
482}
483
484message OnuSignalsFailureIndication {
485 fixed32 intf_id = 1;
486 fixed32 onu_id = 2;
487 string status = 3;
488 fixed32 inverse_bit_error_rate = 4;
489}
490
491message OnuTransmissionInterferenceWarning {
492 fixed32 intf_id = 1;
493 fixed32 onu_id = 2;
494 string status = 3;
495 fixed32 drift = 4;
496}
497
498message OnuActivationFailureIndication {
499 fixed32 intf_id = 1;
500 fixed32 onu_id = 2;
Naga Manjunath0a734252019-11-21 19:00:23 +0530501 fixed32 fail_reason = 3;
502}
503
504message OnuLossOfKeySyncFailureIndication {
505 fixed32 intf_id = 1;
506 fixed32 onu_id = 2;
507 string status = 3;
508}
509
510message OnuItuPonStatsIndication{
511 fixed32 intf_id = 1;
512 fixed32 onu_id = 2;
513 fixed32 rdi_errors = 3;
Zack Williams52209662019-02-07 10:15:31 -0700514}
515
516message OnuProcessingErrorIndication {
517 fixed32 intf_id = 1;
518 fixed32 onu_id = 2;
519}
520
Devmalya Paulea6eb472020-02-04 20:41:01 -0500521message OnuDeactivationFailureIndication {
522 fixed32 intf_id = 1;
523 fixed32 onu_id = 2;
524 fixed32 fail_reason = 3;
525}
526
Devmalya Paulb0c12472020-02-18 20:08:53 -0500527message OnuRemoteDefectIndication{
528 fixed32 intf_id = 1;
529 fixed32 onu_id = 2;
530 fixed32 rdi_errors = 3;
531}
532
Burak Gurdag402dd952019-12-10 20:31:11 +0000533message GroupMember {
534 enum InterfaceType {
535 PON = 0;
536 EPON_1G_PATH = 1;
537 EPON_10G_PATH = 2;
538 }
539 uint32 interface_id = 1;
540 InterfaceType interface_type = 2;
541 uint32 gem_port_id = 3;
542 uint32 priority = 4; // Priority (and also the ID) of the default fixed queue for the multicast traffic.
543 // This queue is attached to the default PON port scheduler.
544}
545
546message Group {
547 enum GroupMembersCommand {
548 ADD_MEMBERS = 0;
549 REMOVE_MEMBERS = 1;
550 SET_MEMBERS = 2;
551 }
552
553 uint32 group_id = 1;
554 GroupMembersCommand command = 2;
555 repeated GroupMember members = 3;
556 Action action = 4;
557}
558
559
560
Zack Williams52209662019-02-07 10:15:31 -0700561message Empty {}
Burak Gurdag402dd952019-12-10 20:31:11 +0000562