blob: 7a67c85672c6af94bd522566ab66199d8307e8d3 [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 Scandolo75ed5b92020-09-03 09:03:16 -070065 string InternalState = 12;
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070066}
67
Anand S Katti09541352020-01-29 15:54:01 +053068message ONUTrafficSchedulers {
69 tech_profile.TrafficSchedulers traffSchedulers = 1;
70}
71
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070072message ONUs {
73 repeated ONU items = 1;
Matteo Scandolo84f7d482019-08-08 19:00:47 -070074}
75
Matteo Scandolo4a036262020-08-17 15:56:13 -070076message Services {
77 repeated Service items = 1;
78}
79
Matteo Scandolo10f965c2019-09-24 10:40:46 -070080// Inputs
81
82message ONURequest {
83 string SerialNumber = 1;
84}
85
Pragya Aryabd731ec2020-02-11 16:38:17 +053086message PONRequest {
87 uint32 PonPortId = 1;
88}
89
Scott Baker41724b82020-01-21 19:54:53 -080090// Alarms
91
92message AlarmType {
93 // These types correspond to the messages permitted in the oneof
94 // in AlarmIndication in the openolt protos
95 enum Types {
96 LOS = 0; // LOS is an OLT alarm for an entire PON
97 DYING_GASP = 1;
98 ONU_ALARM = 2;
99 ONU_STARTUP_FAILURE = 3;
100 ONU_SIGNAL_DEGRADE = 4;
101 ONU_DRIFT_OF_WINDOW = 5;
102 ONU_LOSS_OF_OMCI_CHANNEL = 6;
103 ONU_SIGNALS_FAILURE = 7;
104 ONU_TRANSMISSION_INTERFERENCE_WARNING = 8;
105 ONU_ACTIVATION_FAILURE = 9;
106 ONU_PROCESSING_ERROR = 10;
107 ONU_LOSS_OF_KEY_SYNC_FAILURE = 11;
108 ONU_ITU_PON_STATS = 12;
109
110 // These break out ONU_ALARM, which is a single message, but
111 // includes statuses for these six alarms.
112 ONU_ALARM_LOS = 13;
113 ONU_ALARM_LOB = 14;
114 ONU_ALARM_LOPC_MISS = 15;
115 ONU_ALARM_LOPC_MIC_ERROR = 16;
116 ONU_ALARM_LOFI = 17;
117 ONU_ALARM_LOAMI = 18;
118 }
119}
120
121message AlarmParameter {
122 string Key = 1;
123 string Value = 2;
124}
125
Anand S Katti86552f92020-03-03 21:56:32 +0530126// ONUAlarmRequest includes fields common to every Onu alarm,
Anand S Katti09541352020-01-29 15:54:01 +0530127// plus an optional list of AlarmParameter list that can be used
Scott Baker41724b82020-01-21 19:54:53 -0800128// to set additional fields in alarms that support them.
Anand S Katti86552f92020-03-03 21:56:32 +0530129message ONUAlarmRequest {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700130 string AlarmType = 1; // name of alarm to raise
131 string SerialNumber = 2; // serial number of ONU
132 string Status = 3; // status of Alarm
Scott Baker41724b82020-01-21 19:54:53 -0800133 repeated AlarmParameter Parameters = 4; // optional list of additional parameters
134}
135
Anand S Katti86552f92020-03-03 21:56:32 +0530136// OLT alarm request
137message OLTAlarmRequest {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700138 uint32 InterfaceID = 1; // Switch Interface Id
139 string InterfaceType = 2; // PON or NNI Type
140 string Status = 3; // Interface Operstatus
Anand S Katti86552f92020-03-03 21:56:32 +0530141}
142
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700143// Utils
144
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700145message VersionNumber {
146 string version = 1;
147 string buildTime = 2;
148 string commitHash = 3;
149 string gitStatus = 4;
150}
151
Matteo Scandolo2bf742a2019-10-01 11:33:34 -0700152message LogLevel {
153 string level = 1;
154 bool caller = 2;
155}
156
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700157message Response {
158 int32 status_code = 1;
159 string message = 2;
160}
161
Arjun E K57a7fcb2020-01-30 06:44:45 +0000162enum SubActionTypes {
163 JOIN = 0;
164 LEAVE = 1;
Arjun E Kdd443f02020-02-07 15:24:01 +0000165 JOINV3 = 2;
Arjun E K57a7fcb2020-01-30 06:44:45 +0000166}
167
168message IgmpRequest {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700169 ONURequest OnuReq = 1;
170 SubActionTypes SubActionVal = 2;
Arjun E K57a7fcb2020-01-30 06:44:45 +0000171}
172
Pragya Arya8bdb4532020-03-02 17:08:09 +0530173message Flows {
174 uint32 flow_count = 1;
175 repeated openolt.Flow flows = 2;
176}
177
Matteo Scandolo4a036262020-08-17 15:56:13 -0700178message Empty {
179}
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700180
181service BBSim {
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530182 // Get BBSim version
Matteo Scandolo4a036262020-08-17 15:56:13 -0700183 rpc Version (Empty) returns (VersionNumber) {
184 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530185 // Set BBSim log level
Matteo Scandolo4a036262020-08-17 15:56:13 -0700186 rpc SetLogLevel (LogLevel) returns (LogLevel) {
187 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530188
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530189 // Get current status of OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700190 rpc GetOlt (Empty) returns (Olt) {
191 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530192 // Poweron OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700193 rpc PoweronOlt (Empty) returns (Response) {
194 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530195 // Shutdown OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700196 rpc ShutdownOlt (Empty) returns (Response) {
197 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530198 // Reboot OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700199 rpc RebootOlt (Empty) returns (Response) {
200 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530201
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530202 // Get status of an ONU by serial number
Matteo Scandolo4a036262020-08-17 15:56:13 -0700203 rpc GetONU (ONURequest) returns (ONU) {
204 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530205 // Get status of all ONUs
Matteo Scandolo4a036262020-08-17 15:56:13 -0700206 rpc GetONUs (Empty) returns (ONUs) {
207 }
208
209 // Get all the Services
210 rpc GetServices (Empty) returns (Services) {
211 }
212
213 // Get all the Services of an ONU by serial number
214 rpc GetOnuServices (ONURequest) returns (Services) {
215 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530216
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530217 // Shutdown an ONU by serial number
Matteo Scandolo4a036262020-08-17 15:56:13 -0700218 rpc ShutdownONU (ONURequest) returns (Response) {
219 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530220 // Shutdown all ONUs in OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700221 rpc ShutdownAllONUs (Empty) returns (Response) {
222 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530223 // Shutdown all ONUs under a PON by pon-port-ID
Matteo Scandolo4a036262020-08-17 15:56:13 -0700224 rpc ShutdownONUsOnPON (PONRequest) returns (Response) {
225 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530226
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530227 // Poweron an ONU by serial number
Matteo Scandolo4a036262020-08-17 15:56:13 -0700228 rpc PoweronONU (ONURequest) returns (Response) {
229 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530230 // Poweron all ONUs in OLT
Matteo Scandolo4a036262020-08-17 15:56:13 -0700231 rpc PoweronAllONUs (Empty) returns (Response) {
232 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530233 // Poweron all ONUs under a PON by pon-port-ID
Matteo Scandolo4a036262020-08-17 15:56:13 -0700234 rpc PoweronONUsOnPON (PONRequest) returns (Response) {
235 }
Pragya Aryabd731ec2020-02-11 16:38:17 +0530236
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530237 // Restart EAPOL for ONU
Matteo Scandolo4a036262020-08-17 15:56:13 -0700238 rpc RestartEapol (ONURequest) returns (Response) {
239 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530240 // Resatrt DHCP for ONU
Matteo Scandolo4a036262020-08-17 15:56:13 -0700241 rpc RestartDhcp (ONURequest) returns (Response) {
242 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530243 // Send ONU alarm indication
Matteo Scandolo4a036262020-08-17 15:56:13 -0700244 rpc SetOnuAlarmIndication (ONUAlarmRequest) returns (Response) {
245 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530246 // Send OLT alarm indication for Interface type NNI or PON
Matteo Scandolo4a036262020-08-17 15:56:13 -0700247 rpc SetOltAlarmIndication (OLTAlarmRequest) returns (Response) {
248 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530249 // Get all flows or ONU specific flows
Matteo Scandolo4a036262020-08-17 15:56:13 -0700250 rpc GetFlows (ONURequest) returns (Flows) {
251 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530252 // Chnage IGMP state
Matteo Scandolo4a036262020-08-17 15:56:13 -0700253 rpc ChangeIgmpState (IgmpRequest) returns (Response) {
254 }
Pragya Arya3f8fdc62020-03-16 11:12:27 +0530255 // Get Traffic scheduler information for ONU
Matteo Scandolo4a036262020-08-17 15:56:13 -0700256 rpc GetOnuTrafficSchedulers (ONURequest) returns (ONUTrafficSchedulers) {
257 }
Arjun E K57a7fcb2020-01-30 06:44:45 +0000258}