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