blob: ce4abe387f1f0379140c0654dfe3149ee3d01b90 [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;
rajeshf921f882020-03-06 18:24:28 +053037 string IP = 7;
Matteo Scandolo8df63df2019-09-12 10:34:32 -070038 repeated NNIPort NNIPorts = 5;
39 repeated PONPort PONPorts = 6;
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070040}
41
42message ONU {
43 int32 ID = 1;
44 string SerialNumber = 2;
45 string OperState = 3;
46 string InternalState = 4;
47 int32 PonPortID = 5;
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070048 string HwAddress = 8;
Matteo Scandolo27428702019-10-11 16:21:16 -070049 int32 PortNo = 9;
Matteo Scandolo4a036262020-08-17 15:56:13 -070050 repeated Service services = 10;
51}
52
53message Service {
54 string Name = 1;
55 string HwAddress = 2;
56 string OnuSn = 3;
57 int32 STag = 4;
58 int32 CTag = 5;
59 bool NeedsEapol = 6;
60 bool NeedsDhcp = 7;
61 bool NeedsIgmp = 8;
62 int32 GemPort = 9;
63 string EapolState = 10;
64 string DhcpState = 11;
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070065}
66
Anand S Katti09541352020-01-29 15:54:01 +053067message ONUTrafficSchedulers {
68 tech_profile.TrafficSchedulers traffSchedulers = 1;
69}
70
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070071message ONUs {
72 repeated ONU items = 1;
Matteo Scandolo84f7d482019-08-08 19:00:47 -070073}
74
Matteo Scandolo4a036262020-08-17 15:56:13 -070075message Services {
76 repeated Service items = 1;
77}
78
Matteo Scandolo10f965c2019-09-24 10:40:46 -070079// Inputs
80
81message ONURequest {
82 string SerialNumber = 1;
83}
84
Pragya Aryabd731ec2020-02-11 16:38:17 +053085message PONRequest {
86 uint32 PonPortId = 1;
87}
88
Scott Baker41724b82020-01-21 19:54:53 -080089// Alarms
90
91message AlarmType {
92 // These types correspond to the messages permitted in the oneof
93 // in AlarmIndication in the openolt protos
94 enum Types {
95 LOS = 0; // LOS is an OLT alarm for an entire PON
96 DYING_GASP = 1;
97 ONU_ALARM = 2;
98 ONU_STARTUP_FAILURE = 3;
99 ONU_SIGNAL_DEGRADE = 4;
100 ONU_DRIFT_OF_WINDOW = 5;
101 ONU_LOSS_OF_OMCI_CHANNEL = 6;
102 ONU_SIGNALS_FAILURE = 7;
103 ONU_TRANSMISSION_INTERFERENCE_WARNING = 8;
104 ONU_ACTIVATION_FAILURE = 9;
105 ONU_PROCESSING_ERROR = 10;
106 ONU_LOSS_OF_KEY_SYNC_FAILURE = 11;
107 ONU_ITU_PON_STATS = 12;
108
109 // These break out ONU_ALARM, which is a single message, but
110 // includes statuses for these six alarms.
111 ONU_ALARM_LOS = 13;
112 ONU_ALARM_LOB = 14;
113 ONU_ALARM_LOPC_MISS = 15;
114 ONU_ALARM_LOPC_MIC_ERROR = 16;
115 ONU_ALARM_LOFI = 17;
116 ONU_ALARM_LOAMI = 18;
117 }
118}
119
120message AlarmParameter {
121 string Key = 1;
122 string Value = 2;
123}
124
Anand S Katti86552f92020-03-03 21:56:32 +0530125// ONUAlarmRequest includes fields common to every Onu alarm,
Anand S Katti09541352020-01-29 15:54:01 +0530126// plus an optional list of AlarmParameter list that can be used
Scott Baker41724b82020-01-21 19:54:53 -0800127// to set additional fields in alarms that support them.
Anand S Katti86552f92020-03-03 21:56:32 +0530128message ONUAlarmRequest {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700129 string AlarmType = 1; // name of alarm to raise
130 string SerialNumber = 2; // serial number of ONU
131 string Status = 3; // status of Alarm
Scott Baker41724b82020-01-21 19:54:53 -0800132 repeated AlarmParameter Parameters = 4; // optional list of additional parameters
133}
134
Anand S Katti86552f92020-03-03 21:56:32 +0530135// OLT alarm request
136message OLTAlarmRequest {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700137 uint32 InterfaceID = 1; // Switch Interface Id
138 string InterfaceType = 2; // PON or NNI Type
139 string Status = 3; // Interface Operstatus
Anand S Katti86552f92020-03-03 21:56:32 +0530140}
141
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700142// Utils
143
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700144message VersionNumber {
145 string version = 1;
146 string buildTime = 2;
147 string commitHash = 3;
148 string gitStatus = 4;
149}
150
Matteo Scandolo2bf742a2019-10-01 11:33:34 -0700151message LogLevel {
152 string level = 1;
153 bool caller = 2;
154}
155
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700156message Response {
157 int32 status_code = 1;
158 string message = 2;
159}
160
Arjun E K57a7fcb2020-01-30 06:44:45 +0000161enum SubActionTypes {
162 JOIN = 0;
163 LEAVE = 1;
Arjun E Kdd443f02020-02-07 15:24:01 +0000164 JOINV3 = 2;
Arjun E K57a7fcb2020-01-30 06:44:45 +0000165}
166
167message IgmpRequest {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700168 ONURequest OnuReq = 1;
169 SubActionTypes SubActionVal = 2;
Arjun E K57a7fcb2020-01-30 06:44:45 +0000170}
171
Pragya Arya8bdb4532020-03-02 17:08:09 +0530172message Flows {
173 uint32 flow_count = 1;
174 repeated openolt.Flow flows = 2;
175}
176
Matteo Scandolo4a036262020-08-17 15:56:13 -0700177message Empty {
178}
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700179
180service BBSim {
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530181 // Get BBSim version
Matteo Scandolo4a036262020-08-17 15:56:13 -0700182 rpc Version (Empty) returns (VersionNumber) {
183 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530184 // Set BBSim log level
Matteo Scandolo4a036262020-08-17 15:56:13 -0700185 rpc SetLogLevel (LogLevel) returns (LogLevel) {
186 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530187
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530188 // Get current status of OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700189 rpc GetOlt (Empty) returns (Olt) {
190 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530191 // Poweron OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700192 rpc PoweronOlt (Empty) returns (Response) {
193 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530194 // Shutdown OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700195 rpc ShutdownOlt (Empty) returns (Response) {
196 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530197 // Reboot OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700198 rpc RebootOlt (Empty) returns (Response) {
199 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530200
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530201 // Get status of an ONU by serial number
Matteo Scandolo4a036262020-08-17 15:56:13 -0700202 rpc GetONU (ONURequest) returns (ONU) {
203 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530204 // Get status of all ONUs
Matteo Scandolo4a036262020-08-17 15:56:13 -0700205 rpc GetONUs (Empty) returns (ONUs) {
206 }
207
208 // Get all the Services
209 rpc GetServices (Empty) returns (Services) {
210 }
211
212 // Get all the Services of an ONU by serial number
213 rpc GetOnuServices (ONURequest) returns (Services) {
214 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530215
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530216 // Shutdown an ONU by serial number
Matteo Scandolo4a036262020-08-17 15:56:13 -0700217 rpc ShutdownONU (ONURequest) returns (Response) {
218 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530219 // Shutdown all ONUs in OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700220 rpc ShutdownAllONUs (Empty) returns (Response) {
221 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530222 // Shutdown all ONUs under a PON by pon-port-ID
Matteo Scandolo4a036262020-08-17 15:56:13 -0700223 rpc ShutdownONUsOnPON (PONRequest) returns (Response) {
224 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530225
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530226 // Poweron an ONU by serial number
Matteo Scandolo4a036262020-08-17 15:56:13 -0700227 rpc PoweronONU (ONURequest) returns (Response) {
228 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530229 // Poweron all ONUs in OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700230 rpc PoweronAllONUs (Empty) returns (Response) {
231 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530232 // Poweron all ONUs under a PON by pon-port-ID
Matteo Scandolo4a036262020-08-17 15:56:13 -0700233 rpc PoweronONUsOnPON (PONRequest) returns (Response) {
234 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530235
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530236 // Restart EAPOL for ONU
Matteo Scandolo4a036262020-08-17 15:56:13 -0700237 rpc RestartEapol (ONURequest) returns (Response) {
238 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530239 // Resatrt DHCP for ONU
Matteo Scandolo4a036262020-08-17 15:56:13 -0700240 rpc RestartDhcp (ONURequest) returns (Response) {
241 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530242 // Send ONU alarm indication
Matteo Scandolo4a036262020-08-17 15:56:13 -0700243 rpc SetOnuAlarmIndication (ONUAlarmRequest) returns (Response) {
244 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530245 // Send OLT alarm indication for Interface type NNI or PON
Matteo Scandolo4a036262020-08-17 15:56:13 -0700246 rpc SetOltAlarmIndication (OLTAlarmRequest) returns (Response) {
247 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530248 // Get all flows or ONU specific flows
Matteo Scandolo4a036262020-08-17 15:56:13 -0700249 rpc GetFlows (ONURequest) returns (Flows) {
250 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530251 // Chnage IGMP state
Matteo Scandolo4a036262020-08-17 15:56:13 -0700252 rpc ChangeIgmpState (IgmpRequest) returns (Response) {
253 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530254 // Get Traffic scheduler information for ONU
Matteo Scandolo4a036262020-08-17 15:56:13 -0700255 rpc GetOnuTrafficSchedulers (ONURequest) returns (ONUTrafficSchedulers) {
256 }
Arjun E K57a7fcb2020-01-30 06:44:45 +0000257}