Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | syntax = "proto3"; |
| 16 | package bbsim; |
| 17 | |
Pragya Arya | 8bdb453 | 2020-03-02 17:08:09 +0530 | [diff] [blame^] | 18 | import "voltha_protos/openolt.proto"; |
Anand S Katti | 0954135 | 2020-01-29 15:54:01 +0530 | [diff] [blame] | 19 | import "voltha_protos/tech_profile.proto"; |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 20 | // Models |
| 21 | |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 22 | message PONPort { |
| 23 | int32 ID = 1; |
| 24 | string OperState = 2; |
| 25 | } |
| 26 | |
| 27 | message NNIPort { |
| 28 | int32 ID = 1; |
| 29 | string OperState = 2; |
| 30 | } |
| 31 | |
| 32 | message Olt { |
| 33 | int32 ID = 1; |
Matteo Scandolo | 8df63df | 2019-09-12 10:34:32 -0700 | [diff] [blame] | 34 | string SerialNumber = 2; |
| 35 | string OperState = 3; |
| 36 | string InternalState = 4; |
| 37 | repeated NNIPort NNIPorts = 5; |
| 38 | repeated PONPort PONPorts = 6; |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | message ONU { |
| 42 | int32 ID = 1; |
| 43 | string SerialNumber = 2; |
| 44 | string OperState = 3; |
| 45 | string InternalState = 4; |
| 46 | int32 PonPortID = 5; |
Matteo Scandolo | 4b3fc7e | 2019-09-17 16:49:54 -0700 | [diff] [blame] | 47 | int32 STag = 6; |
| 48 | int32 CTag = 7; |
| 49 | string HwAddress = 8; |
Matteo Scandolo | 2742870 | 2019-10-11 16:21:16 -0700 | [diff] [blame] | 50 | int32 PortNo = 9; |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Anand S Katti | 0954135 | 2020-01-29 15:54:01 +0530 | [diff] [blame] | 53 | message ONUTrafficSchedulers { |
| 54 | tech_profile.TrafficSchedulers traffSchedulers = 1; |
| 55 | } |
| 56 | |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 57 | message ONUs { |
| 58 | repeated ONU items = 1; |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 61 | // Inputs |
| 62 | |
| 63 | message ONURequest { |
| 64 | string SerialNumber = 1; |
| 65 | } |
| 66 | |
Scott Baker | 41724b8 | 2020-01-21 19:54:53 -0800 | [diff] [blame] | 67 | // Alarms |
| 68 | |
| 69 | message 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 | |
| 98 | message AlarmParameter { |
| 99 | string Key = 1; |
| 100 | string Value = 2; |
| 101 | } |
| 102 | |
Anand S Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 103 | // ONUAlarmRequest includes fields common to every Onu alarm, |
Anand S Katti | 0954135 | 2020-01-29 15:54:01 +0530 | [diff] [blame] | 104 | // plus an optional list of AlarmParameter list that can be used |
Scott Baker | 41724b8 | 2020-01-21 19:54:53 -0800 | [diff] [blame] | 105 | // to set additional fields in alarms that support them. |
Anand S Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 106 | message ONUAlarmRequest { |
Pragya Arya | 694ece0 | 2020-02-07 13:03:47 +0530 | [diff] [blame] | 107 | string AlarmType = 1; // name of alarm to raise |
Scott Baker | 41724b8 | 2020-01-21 19:54:53 -0800 | [diff] [blame] | 108 | 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 Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 113 | // OLT alarm request |
| 114 | message 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 Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 120 | // Utils |
| 121 | |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 122 | message VersionNumber { |
| 123 | string version = 1; |
| 124 | string buildTime = 2; |
| 125 | string commitHash = 3; |
| 126 | string gitStatus = 4; |
| 127 | } |
| 128 | |
Matteo Scandolo | 2bf742a | 2019-10-01 11:33:34 -0700 | [diff] [blame] | 129 | message LogLevel { |
| 130 | string level = 1; |
| 131 | bool caller = 2; |
| 132 | } |
| 133 | |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 134 | message Response { |
| 135 | int32 status_code = 1; |
| 136 | string message = 2; |
| 137 | } |
| 138 | |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 139 | enum SubActionTypes { |
| 140 | JOIN = 0; |
| 141 | LEAVE = 1; |
Arjun E K | dd443f0 | 2020-02-07 15:24:01 +0000 | [diff] [blame] | 142 | JOINV3 = 2; |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | message IgmpRequest { |
| 146 | ONURequest OnuReq = 1; |
| 147 | SubActionTypes SubActionVal = 2; |
| 148 | } |
| 149 | |
Pragya Arya | 8bdb453 | 2020-03-02 17:08:09 +0530 | [diff] [blame^] | 150 | message Flows { |
| 151 | uint32 flow_count = 1; |
| 152 | repeated openolt.Flow flows = 2; |
| 153 | } |
| 154 | |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 155 | message Empty {} |
| 156 | |
| 157 | service BBSim { |
| 158 | rpc Version(Empty) returns (VersionNumber) {} |
| 159 | rpc GetOlt(Empty) returns (Olt) {} |
Zdravko Bozakov | 681364d | 2019-11-10 14:28:46 +0100 | [diff] [blame] | 160 | rpc PoweronOlt(Empty) returns (Response) {} |
| 161 | rpc ShutdownOlt(Empty) returns (Response) {} |
| 162 | rpc RebootOlt(Empty) returns (Response) {} |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 163 | rpc GetONUs(Empty) returns (ONUs) {} |
Matteo Scandolo | d2ca2c7 | 2019-10-04 16:50:22 -0700 | [diff] [blame] | 164 | rpc GetONU(ONURequest) returns (ONU) {} |
Matteo Scandolo | 2bf742a | 2019-10-01 11:33:34 -0700 | [diff] [blame] | 165 | rpc SetLogLevel(LogLevel) returns (LogLevel) {} |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 166 | rpc ShutdownONU (ONURequest) returns (Response) {} |
| 167 | rpc PoweronONU (ONURequest) returns (Response) {} |
Matteo Scandolo | e383d5d | 2019-10-25 14:47:27 -0700 | [diff] [blame] | 168 | rpc RestartEapol (ONURequest) returns (Response) {} |
| 169 | rpc RestartDhcp (ONURequest) returns (Response) {} |
Anand S Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 170 | rpc SetOnuAlarmIndication (ONUAlarmRequest) returns (Response) {} |
| 171 | rpc SetOltAlarmIndication (OLTAlarmRequest) returns (Response) {} |
Pragya Arya | 8bdb453 | 2020-03-02 17:08:09 +0530 | [diff] [blame^] | 172 | rpc GetFlows(ONURequest) returns(Flows) {} |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 173 | rpc ChangeIgmpState (IgmpRequest) returns (Response) {} |
Anand S Katti | 0954135 | 2020-01-29 15:54:01 +0530 | [diff] [blame] | 174 | rpc GetOnuTrafficSchedulers (ONURequest) returns (ONUTrafficSchedulers) {} |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 175 | } |