blob: d862c5400fa80e2793c7eb332e2f8132bf10983d [file] [log] [blame]
Matteo Scandolo84f7d482019-08-08 19:00:47 -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";
16package bbsim;
17
Pragya Arya8bdb4532020-03-02 17:08:09 +053018import "voltha_protos/openolt.proto";
Anand S Katti09541352020-01-29 15:54:01 +053019import "voltha_protos/tech_profile.proto";
Matteo Scandolo10f965c2019-09-24 10:40:46 -070020// Models
21
Matteo Scandolo84f7d482019-08-08 19:00:47 -070022message PONPort {
23 int32 ID = 1;
24 string OperState = 2;
25}
26
27message NNIPort {
28 int32 ID = 1;
29 string OperState = 2;
30}
31
32message Olt {
33 int32 ID = 1;
Matteo Scandolo8df63df2019-09-12 10:34:32 -070034 string SerialNumber = 2;
35 string OperState = 3;
36 string InternalState = 4;
37 repeated NNIPort NNIPorts = 5;
38 repeated PONPort PONPorts = 6;
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070039}
40
41message ONU {
42 int32 ID = 1;
43 string SerialNumber = 2;
44 string OperState = 3;
45 string InternalState = 4;
46 int32 PonPortID = 5;
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070047 int32 STag = 6;
48 int32 CTag = 7;
49 string HwAddress = 8;
Matteo Scandolo27428702019-10-11 16:21:16 -070050 int32 PortNo = 9;
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070051}
52
Anand S Katti09541352020-01-29 15:54:01 +053053message ONUTrafficSchedulers {
54 tech_profile.TrafficSchedulers traffSchedulers = 1;
55}
56
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070057message ONUs {
58 repeated ONU items = 1;
Matteo Scandolo84f7d482019-08-08 19:00:47 -070059}
60
Matteo Scandolo10f965c2019-09-24 10:40:46 -070061// Inputs
62
63message ONURequest {
64 string SerialNumber = 1;
65}
66
Scott Baker41724b82020-01-21 19:54:53 -080067// Alarms
68
69message AlarmType {
70 // These types correspond to the messages permitted in the oneof
71 // in AlarmIndication in the openolt protos
72 enum Types {
73 LOS = 0; // LOS is an OLT alarm for an entire PON
74 DYING_GASP = 1;
75 ONU_ALARM = 2;
76 ONU_STARTUP_FAILURE = 3;
77 ONU_SIGNAL_DEGRADE = 4;
78 ONU_DRIFT_OF_WINDOW = 5;
79 ONU_LOSS_OF_OMCI_CHANNEL = 6;
80 ONU_SIGNALS_FAILURE = 7;
81 ONU_TRANSMISSION_INTERFERENCE_WARNING = 8;
82 ONU_ACTIVATION_FAILURE = 9;
83 ONU_PROCESSING_ERROR = 10;
84 ONU_LOSS_OF_KEY_SYNC_FAILURE = 11;
85 ONU_ITU_PON_STATS = 12;
86
87 // These break out ONU_ALARM, which is a single message, but
88 // includes statuses for these six alarms.
89 ONU_ALARM_LOS = 13;
90 ONU_ALARM_LOB = 14;
91 ONU_ALARM_LOPC_MISS = 15;
92 ONU_ALARM_LOPC_MIC_ERROR = 16;
93 ONU_ALARM_LOFI = 17;
94 ONU_ALARM_LOAMI = 18;
95 }
96}
97
98message AlarmParameter {
99 string Key = 1;
100 string Value = 2;
101}
102
Anand S Katti86552f92020-03-03 21:56:32 +0530103// ONUAlarmRequest includes fields common to every Onu alarm,
Anand S Katti09541352020-01-29 15:54:01 +0530104// plus an optional list of AlarmParameter list that can be used
Scott Baker41724b82020-01-21 19:54:53 -0800105// to set additional fields in alarms that support them.
Anand S Katti86552f92020-03-03 21:56:32 +0530106message ONUAlarmRequest {
Pragya Arya694ece02020-02-07 13:03:47 +0530107 string AlarmType = 1; // name of alarm to raise
Scott Baker41724b82020-01-21 19:54:53 -0800108 string SerialNumber = 2; // serial number of ONU
109 string Status = 3; // status of Alarm
110 repeated AlarmParameter Parameters = 4; // optional list of additional parameters
111}
112
Anand S Katti86552f92020-03-03 21:56:32 +0530113// OLT alarm request
114message OLTAlarmRequest {
115 uint32 InterfaceID = 1; // Switch Interface Id
116 string InterfaceType = 2; // PON or NNI Type
117 string Status = 3; // Interface Operstatus
118}
119
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700120// Utils
121
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700122message VersionNumber {
123 string version = 1;
124 string buildTime = 2;
125 string commitHash = 3;
126 string gitStatus = 4;
127}
128
Matteo Scandolo2bf742a2019-10-01 11:33:34 -0700129message LogLevel {
130 string level = 1;
131 bool caller = 2;
132}
133
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700134message Response {
135 int32 status_code = 1;
136 string message = 2;
137}
138
Arjun E K57a7fcb2020-01-30 06:44:45 +0000139enum SubActionTypes {
140 JOIN = 0;
141 LEAVE = 1;
Arjun E Kdd443f02020-02-07 15:24:01 +0000142 JOINV3 = 2;
Arjun E K57a7fcb2020-01-30 06:44:45 +0000143}
144
145message IgmpRequest {
146 ONURequest OnuReq = 1;
147 SubActionTypes SubActionVal = 2;
148}
149
Pragya Arya8bdb4532020-03-02 17:08:09 +0530150message Flows {
151 uint32 flow_count = 1;
152 repeated openolt.Flow flows = 2;
153}
154
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700155message Empty {}
156
157service BBSim {
158 rpc Version(Empty) returns (VersionNumber) {}
159 rpc GetOlt(Empty) returns (Olt) {}
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100160 rpc PoweronOlt(Empty) returns (Response) {}
161 rpc ShutdownOlt(Empty) returns (Response) {}
162 rpc RebootOlt(Empty) returns (Response) {}
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700163 rpc GetONUs(Empty) returns (ONUs) {}
Matteo Scandolod2ca2c72019-10-04 16:50:22 -0700164 rpc GetONU(ONURequest) returns (ONU) {}
Matteo Scandolo2bf742a2019-10-01 11:33:34 -0700165 rpc SetLogLevel(LogLevel) returns (LogLevel) {}
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700166 rpc ShutdownONU (ONURequest) returns (Response) {}
167 rpc PoweronONU (ONURequest) returns (Response) {}
Matteo Scandoloe383d5d2019-10-25 14:47:27 -0700168 rpc RestartEapol (ONURequest) returns (Response) {}
169 rpc RestartDhcp (ONURequest) returns (Response) {}
Anand S Katti86552f92020-03-03 21:56:32 +0530170 rpc SetOnuAlarmIndication (ONUAlarmRequest) returns (Response) {}
171 rpc SetOltAlarmIndication (OLTAlarmRequest) returns (Response) {}
Pragya Arya8bdb4532020-03-02 17:08:09 +0530172 rpc GetFlows(ONURequest) returns(Flows) {}
Arjun E K57a7fcb2020-01-30 06:44:45 +0000173 rpc ChangeIgmpState (IgmpRequest) returns (Response) {}
Anand S Katti09541352020-01-29 15:54:01 +0530174 rpc GetOnuTrafficSchedulers (ONURequest) returns (ONUTrafficSchedulers) {}
Arjun E K57a7fcb2020-01-30 06:44:45 +0000175}