blob: 1826b779b12f7073bc3b9e6d2668e33355b1b20e [file] [log] [blame]
Shad Ansari01b0e652018-04-05 21:02:53 +00001/*
2 Copyright (C) 2018 Open Networking Foundation
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#include "indications.h"
Shad Ansarib7b0ced2018-05-11 21:53:32 +000018#include "core.h"
Shad Ansari01b0e652018-04-05 21:02:53 +000019#include "utils.h"
Nicolas Palpacuer0f19b1a2018-06-07 17:29:31 -040020#include "stats_collection.h"
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040021#include "translation.h"
Nicolas Palpacuer3cad49d2018-07-02 14:03:24 -040022#include "state.h"
23
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040024#include <string>
Nicolas Palpacuer3cad49d2018-07-02 14:03:24 -040025
Shad Ansari01b0e652018-04-05 21:02:53 +000026extern "C"
27{
28#include <bcmos_system.h>
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000029#include <bcmolt_api.h>
30#include <bcmolt_host_api.h>
31#include <bcmolt_api_model_api_structs.h>
Shad Ansari01b0e652018-04-05 21:02:53 +000032}
33
34using grpc::Status;
35
Shad Ansari627b5782018-08-13 22:49:32 +000036extern Queue<openolt::Indication> oltIndQ;
Shad Ansari01b0e652018-04-05 21:02:53 +000037//Queue<openolt::Indication*> oltIndQ;
38
Nicolas Palpacuer3cad49d2018-07-02 14:03:24 -040039
Shad Ansari01b0e652018-04-05 21:02:53 +000040bool subscribed = false;
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -080041uint32_t nni_intf_id = 0;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000042#define current_device 0
Shad Ansari01b0e652018-04-05 21:02:53 +000043
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000044static void OmciIndication(bcmolt_devid olt, bcmolt_msg *msg);
Shad Ansari01b0e652018-04-05 21:02:53 +000045
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000046#define INTERFACE_STATE_IF_DOWN(state) \
47 ((state == BCMOLT_INTERFACE_STATE_INACTIVE || \
48 state == BCMOLT_INTERFACE_STATE_PROCESSING || \
49 state == BCMOLT_INTERFACE_STATE_ACTIVE_STANDBY) ? BCMOS_TRUE : BCMOS_FALSE)
50#define INTERFACE_STATE_IF_UP(state) \
51 ((state == BCMOLT_INTERFACE_STATE_ACTIVE_WORKING) ? BCMOS_TRUE : BCMOS_FALSE)
52#define ONU_STATE_IF_DOWN(state) \
53 ((state == BCMOLT_ONU_OPERATION_INACTIVE || \
54 state == BCMOLT_ONU_OPERATION_DISABLE || \
55 state == BCMOLT_ONU_OPERATION_ACTIVE_STANDBY) ? BCMOS_TRUE : BCMOS_FALSE)
56#define ONU_STATE_IF_UP(state) \
57 ((state == BCMOLT_ONU_OPERATION_ACTIVE) ? BCMOS_TRUE : BCMOS_FALSE)
58#define ONU_RANGING_STATE_IF_UP(state) \
59 ((state == BCMOLT_RESULT_SUCCESS) ? BCMOS_TRUE : BCMOS_FALSE)
60#define ONU_RANGING_STATE_IF_DOWN(state) \
61 ((state != BCMOLT_RESULT_SUCCESS) ? BCMOS_TRUE : BCMOS_FALSE)
62#define SET_OPER_STATE(indication,state) \
63 (INTERFACE_STATE_IF_UP(state)) ? indication->set_oper_state("up") : \
64 indication->set_oper_state("down")
65#define GET_FLOW_TYPE(type) \
66 (type == BCMOLT_FLOW_TYPE_UPSTREAM) ? "upstream" : \
67 (type == BCMOLT_FLOW_TYPE_DOWNSTREAM) ? "downstream" : \
68 (type == BCMOLT_FLOW_TYPE_MULTICAST) ? "multicast" : "unknown"
69
70std::string bcmolt_to_grpc_intf_type(bcmolt_interface_type intf_type)
Craig Lutgen88a22ad2018-10-04 12:30:46 -050071{
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000072 if (intf_type == BCMOLT_INTERFACE_TYPE_NNI) {
Craig Lutgen88a22ad2018-10-04 12:30:46 -050073 return "nni";
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000074 } else if (intf_type == BCMOLT_INTERFACE_TYPE_PON) {
Craig Lutgen88a22ad2018-10-04 12:30:46 -050075 return "pon";
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000076 } else if (intf_type == BCMOLT_INTERFACE_TYPE_HOST) {
77 return "host";
Craig Lutgen88a22ad2018-10-04 12:30:46 -050078 }
79 return "unknown";
80}
81
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000082std::string bcmolt_to_grpc_flow_intf_type(bcmolt_flow_interface_type intf_type)
83{
84 if (intf_type == BCMOLT_FLOW_INTERFACE_TYPE_NNI) {
85 return "nni";
86 } else if (intf_type == BCMOLT_FLOW_INTERFACE_TYPE_PON) {
87 return "pon";
88 } else if (intf_type == BCMOLT_FLOW_INTERFACE_TYPE_HOST) {
89 return "host";
90 }
91 return "unknown";
92}
93
94/*std::string getOnuRegistrationId(uint32_t intf_id, uint32_t onu_id){
Girish Gowdru376b33c2019-05-06 21:46:31 -070095 bcmbal_subscriber_terminal_key key;
96 bcmbal_subscriber_terminal_cfg sub_term_obj = {};
97 uint8_t *list_mem;// to fetch config details for ONU
98 bcmos_errno err = BCM_ERR_OK;
99
100 key.sub_term_id =onu_id;
101 key.intf_id = intf_id;
102 BCM_LOG(INFO, openolt_log_id,"Processing subscriber terminal cfg get for: %d",key.intf_id);
103
104 BCMBAL_CFG_INIT(&sub_term_obj, subscriber_terminal, key);
105
106 BCMBAL_CFG_PROP_GET(&sub_term_obj, subscriber_terminal, all_properties);
107 char *reg_id = (char*)malloc(sizeof(char)*MAX_REGID_LENGTH);
108 memset(reg_id, '\0', MAX_REGID_LENGTH);
109
110 //set memory to use for variable-sized lists
111 list_mem = (uint8_t*)malloc(BAL_DYNAMIC_LIST_BUFFER_SIZE);
112
113 if (list_mem == NULL)
114 {
115 BCM_LOG(ERROR,openolt_log_id,"Memory allocation failed while handling subscriber terminal \
116 cfg get subscriber_terminal_id(%d), Interface ID(%d)",key.sub_term_id, key.intf_id);
117 return reg_id;
118 }
119
120 memset(list_mem, 0, BAL_DYNAMIC_LIST_BUFFER_SIZE);
121 BCMBAL_CFG_LIST_BUF_SET(&sub_term_obj, subscriber_terminal, list_mem, BAL_DYNAMIC_LIST_BUFFER_SIZE);
122
123 //call API
124 err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &sub_term_obj.hdr);
125
126 if (err != BCM_ERR_OK)
127 {
128 BCM_LOG(ERROR,openolt_log_id, "Failed to get information from BAL subscriber_terminal_id(%d), Interface ID(%d)",
129 key.sub_term_id, key.intf_id);
130 free(list_mem);
131 return reg_id;
132 }
133
134 BCM_LOG(INFO,openolt_log_id, "Get Subscriber cfg sent to OLT for Subscriber Id(%d) on Interface(%d)",
135 key.sub_term_id, key.intf_id);
136
137 for (int i=0; i<MAX_REGID_LENGTH ; i++){
138 reg_id[i]=sub_term_obj.data.registration_id.arr[i];
139 }
140
141 free(list_mem);
142 return reg_id;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000143}*/
Girish Gowdru376b33c2019-05-06 21:46:31 -0700144
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000145static void OltOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000146 openolt::Indication ind;
147 openolt::OltIndication* olt_ind = new openolt::OltIndication;
148 Status status;
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500149 std::string admin_state;
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500150
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000151 switch (msg->subgroup) {
152 case BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_COMPLETE:
153 admin_state = "up";
154 olt_ind->set_oper_state("up");
155 break;
156 case BCMOLT_DEVICE_AUTO_SUBGROUP_DISCONNECTION_COMPLETE:
157 admin_state = "down";
158 olt_ind->set_oper_state("down");
159 break;
160 case BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_FAILURE:
161 admin_state = "failure";
162 olt_ind->set_oper_state("failure");
163 break;
Shad Ansari01b0e652018-04-05 21:02:53 +0000164 }
165 ind.set_allocated_olt_ind(olt_ind);
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500166
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000167 if (msg->subgroup == BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_COMPLETE) {
168 /* register for omci indication */
169 {
170 bcmolt_rx_cfg rx_cfg = {};
171 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
172 rx_cfg.rx_cb = OmciIndication;
173 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_omci_packet;
174 rx_cfg.module = BCMOS_MODULE_ID_OMCI_TRANSPORT;
175 bcmolt_ind_subscribe(current_device, &rx_cfg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000176 }
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500177 state.activate();
178 }
179 else {
180 state.deactivate();
181 }
182
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000183 oltIndQ.push(ind);
184 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000185}
186
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000187static void LosIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000188 openolt::Indication ind;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400189 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
190 openolt::LosIndication* los_ind = new openolt::LosIndication;
191
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000192 switch (msg->obj_type) {
193 case BCMOLT_OBJ_ID_PON_INTERFACE:
194 switch (msg->subgroup) {
195 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_LOS:
196 {
197 bcmolt_pon_interface_los* bcm_los_ind = (bcmolt_pon_interface_los *) msg;
198 int intf_id = interface_key_to_port_no(bcm_los_ind->key.pon_ni,
199 BCMOLT_INTERFACE_TYPE_PON);
200 std::string status = alarm_status_to_string(bcm_los_ind->data.status);
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400201
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000202 OPENOLT_LOG(INFO, openolt_log_id, "LOS indication : intf_id: %d port: %d status %s\n",
203 bcm_los_ind->key.pon_ni, intf_id, status.c_str());
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400204
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000205 los_ind->set_intf_id(intf_id);
206 los_ind->set_status(status);
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400207
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000208 alarm_ind->set_allocated_los_ind(los_ind);
209 ind.set_allocated_alarm_ind(alarm_ind);
210 break;
211 }
212 }
213 }
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400214
215 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000216 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000217}
218
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000219static void IfIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700220 openolt::Indication ind;
221 openolt::IntfIndication* intf_ind = new openolt::IntfIndication;
222
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000223 switch (msg->obj_type) {
224 case BCMOLT_OBJ_ID_PON_INTERFACE:
225 switch (msg->subgroup) {
226 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE_COMPLETED:
227 {
228 bcmolt_pon_interface_key *key =
229 &((bcmolt_pon_interface_state_change_completed*)msg)->key;
230 bcmolt_pon_interface_state_change_completed_data *data =
231 &((bcmolt_pon_interface_state_change_completed*)msg)->data;
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700232
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000233 intf_ind->set_intf_id(key->pon_ni);
234 SET_OPER_STATE(intf_ind, data->new_state);
235 ind.set_allocated_intf_ind(intf_ind);
236 break;
237 }
238 }
239 break;
240 case BCMOLT_OBJ_ID_NNI_INTERFACE:
241 switch (msg->subgroup) {
242 case BCMOLT_NNI_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE:
243 {
244 OPENOLT_LOG(INFO, openolt_log_id, "intf indication, intf_id: %d\n",
245 ((bcmolt_nni_interface_state_change *)msg)->key.id);
246 bcmolt_nni_interface_key *key =
247 &((bcmolt_nni_interface_state_change *)msg)->key;
248 bcmolt_nni_interface_state_change_data *data =
249 &((bcmolt_nni_interface_state_change *)msg)->data;
250
251 intf_ind->set_intf_id(key->id);
252 SET_OPER_STATE(intf_ind, data->new_state);
253 ind.set_allocated_intf_ind(intf_ind);
254 break;
255 }
256 }
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700257 }
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700258
259 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000260 bcmolt_msg_free(msg);
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700261}
262
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000263static void IfOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000264 openolt::Indication ind;
265 openolt::IntfOperIndication* intf_oper_ind = new openolt::IntfOperIndication;
Shad Ansari01b0e652018-04-05 21:02:53 +0000266
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000267 switch (msg->obj_type) {
268 case BCMOLT_OBJ_ID_PON_INTERFACE:
269 switch (msg->subgroup) {
270 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE_COMPLETED:
271 {
272 bcmolt_pon_interface_key *key = &((bcmolt_pon_interface_state_change_completed*)msg)->key;
273 bcmolt_pon_interface_state_change_completed_data *data = &((bcmolt_pon_interface_state_change_completed*)msg)->data;
274 intf_oper_ind->set_intf_id(key->pon_ni);
275 intf_oper_ind->set_type(bcmolt_to_grpc_intf_type(BCMOLT_INTERFACE_TYPE_PON));
276 SET_OPER_STATE(intf_oper_ind, data->new_state);
277 OPENOLT_LOG(INFO, openolt_log_id, "intf oper state indication, intf_type %s, intf_id %d, oper_state %s\n",
278 intf_oper_ind->type().c_str(), key->pon_ni, intf_oper_ind->oper_state().c_str());
279 ind.set_allocated_intf_oper_ind(intf_oper_ind);
280 break;
281 }
282 }
283 case BCMOLT_OBJ_ID_NNI_INTERFACE:
284 switch (msg->subgroup) {
285 case BCMOLT_NNI_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE:
286 {
287 bcmolt_nni_interface_key *key = &((bcmolt_nni_interface_state_change *)msg)->key;
288 bcmolt_nni_interface_state_change_data *data = &((bcmolt_nni_interface_state_change *)msg)->data;
289 bcmolt_interface intf_id = key->id;
290 bcmolt_interface_type intf_type = BCMOLT_INTERFACE_TYPE_NNI;
291 intf_oper_ind->set_intf_id(key->id);
292 intf_oper_ind->set_type(bcmolt_to_grpc_intf_type(BCMOLT_INTERFACE_TYPE_NNI));
293 SET_OPER_STATE(intf_oper_ind, data->new_state);
294 OPENOLT_LOG(INFO, openolt_log_id, "intf oper state indication, intf_type %s, intf_id %d, oper_state %s\n",
295 intf_oper_ind->type().c_str(), key->id, intf_oper_ind->oper_state().c_str());
296 ind.set_allocated_intf_oper_ind(intf_oper_ind);
297 break;
298 }
299 }
Shad Ansari01b0e652018-04-05 21:02:53 +0000300 }
301
Shad Ansari01b0e652018-04-05 21:02:53 +0000302 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000303 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000304}
305
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000306static void OnuAlarmIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000307 openolt::Indication ind;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400308 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
309 openolt::OnuAlarmIndication* onu_alarm_ind = new openolt::OnuAlarmIndication;
310
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000311 switch (msg->obj_type) {
312 case BCMOLT_OBJ_ID_ONU:
313 switch (msg->subgroup) {
314 case BCMOLT_ONU_AUTO_SUBGROUP_XGPON_ALARM:
315 {
316 bcmolt_xgpon_onu_alarms *onu_alarms =
317 &((bcmolt_onu_xgpon_alarm_data *)msg)->xgpon_onu_alarm;
318 onu_alarm_ind->set_los_status(alarm_status_to_string(onu_alarms->losi));
319 onu_alarm_ind->set_lob_status(alarm_status_to_string(onu_alarms->lobi));
320 onu_alarm_ind->set_lopc_miss_status(alarm_status_to_string(
321 onu_alarms->lopci_miss));
322 onu_alarm_ind->set_lopc_mic_error_status(alarm_status_to_string(
323 onu_alarms->lopci_mic_error));
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400324
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000325 alarm_ind->set_allocated_onu_alarm_ind(onu_alarm_ind);
326 ind.set_allocated_alarm_ind(alarm_ind);
327 break;
328 }
329 case BCMOLT_ONU_AUTO_SUBGROUP_GPON_ALARM:
330 {
331 bcmolt_gpon_onu_alarms *onu_alarms =
332 &((bcmolt_onu_gpon_alarm_data *)msg)->gpon_onu_alarm;
333 onu_alarm_ind->set_los_status(alarm_status_to_string(onu_alarms->losi));
334 /* TODO: need to set lofi and loami
335 onu_alarm_ind->set_lof_status(alarm_status_to_string(onu_alarms->lofi));
336 onu_alarm_ind->set_loami_status(alarm_status_to_string(
337 onu_alarms->loami));
338 */
339 alarm_ind->set_allocated_onu_alarm_ind(onu_alarm_ind);
340 ind.set_allocated_alarm_ind(alarm_ind);
341 break;
342 }
343 }
344 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400345
346 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000347 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000348}
349
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000350static void OnuDyingGaspIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000351 openolt::Indication ind;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400352 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000353 openolt::DyingGaspIndication* dgi_ind = new openolt::DyingGaspIndication;
nickc063ffd2018-05-22 14:35:28 -0400354
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000355 switch (msg->obj_type) {
356 case BCMOLT_OBJ_ID_ONU:
357 switch (msg->subgroup) {
358 case BCMOLT_ONU_AUTO_SUBGROUP_DGI:
359 {
360 bcmolt_onu_dgi_data* dgi_data = (bcmolt_onu_dgi_data *)msg;
361 dgi_ind->set_status(alarm_status_to_string(dgi_data->alarm_status));
nickc063ffd2018-05-22 14:35:28 -0400362
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000363 alarm_ind->set_allocated_dying_gasp_ind(dgi_ind);
364 ind.set_allocated_alarm_ind(alarm_ind);
365 break;
366 }
367 }
368 }
nickc063ffd2018-05-22 14:35:28 -0400369
370 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000371 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000372}
373
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000374static void OnuDiscoveryIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000375 openolt::Indication ind;
376 openolt::OnuDiscIndication* onu_disc_ind = new openolt::OnuDiscIndication;
377 openolt::SerialNumber* serial_number = new openolt::SerialNumber;
378
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000379 switch (msg->obj_type) {
380 case BCMOLT_OBJ_ID_PON_INTERFACE:
381 switch (msg->subgroup) {
382 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_ONU_DISCOVERED:
383 {
384 bcmolt_pon_interface_key *key =
385 &((bcmolt_pon_interface_onu_discovered *)msg)->key;
Shad Ansari01b0e652018-04-05 21:02:53 +0000386
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000387 bcmolt_pon_interface_onu_discovered_data *data =
388 &((bcmolt_pon_interface_onu_discovered *)msg)->data;
Shad Ansari01b0e652018-04-05 21:02:53 +0000389
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000390 bcmolt_serial_number *in_serial_number = &(data->serial_number);
Shad Ansari01b0e652018-04-05 21:02:53 +0000391
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000392 OPENOLT_LOG(INFO, openolt_log_id, "onu discover indication, pon_ni %d, serial_number %s\n",
393 key->pon_ni, serial_number_to_str(in_serial_number).c_str());
Shad Ansari01b0e652018-04-05 21:02:53 +0000394
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000395 onu_disc_ind->set_intf_id(key->pon_ni);
396 serial_number->set_vendor_id(reinterpret_cast<const char *>(in_serial_number->vendor_id.arr), 4);
397 serial_number->set_vendor_specific(reinterpret_cast<const char *>(in_serial_number->vendor_specific.arr), 8);
398 onu_disc_ind->set_allocated_serial_number(serial_number);
399 ind.set_allocated_onu_disc_ind(onu_disc_ind);
400 break;
401 }
402 }
403 }
Shad Ansari01b0e652018-04-05 21:02:53 +0000404
405 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000406 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000407}
408
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000409static void OnuIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700410 openolt::Indication ind;
411 openolt::OnuIndication* onu_ind = new openolt::OnuIndication;
412
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000413 switch (msg->obj_type) {
414 case BCMOLT_OBJ_ID_ONU:
415 switch (msg->subgroup) {
416 case BCMOLT_ONU_AUTO_SUBGROUP_RANGING_COMPLETED:
417 {
418 bcmolt_onu_key *key = &((bcmolt_onu_ranging_completed*)msg)->key;
419 bcmolt_onu_ranging_completed_data *data = &((bcmolt_onu_ranging_completed*)msg)->data;
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700420
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000421 onu_ind->set_intf_id(key->pon_ni);
422 onu_ind->set_onu_id(key->onu_id);
423 if (ONU_RANGING_STATE_IF_UP(data->status))
424 onu_ind->set_oper_state("up");
425 if (ONU_RANGING_STATE_IF_DOWN(data->status))
426 onu_ind->set_oper_state("down");
427 (key->onu_id)?onu_ind->set_admin_state("up"):onu_ind->set_admin_state("down");
428 ind.set_allocated_onu_ind(onu_ind);
429 OPENOLT_LOG(INFO, openolt_log_id, "onu indication, pon_ni %d, onu_id %d, onu_state %s, onu_admin %s\n",
430 key->pon_ni, key->onu_id, (data->status==BCMOLT_RESULT_SUCCESS)?"up":"down",
431 (key->onu_id)?"up":"down");
432 }
433 }
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700434 }
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000435 /*const std::string reg_id = getOnuRegistrationId(key->intf_id,key->sub_term_id);
Girish Gowdru376b33c2019-05-06 21:46:31 -0700436 onu_ind->set_registration_id(reg_id);
437
438 BCM_LOG(INFO, openolt_log_id, "onu indication, intf_id %d, onu_id %d, oper state %s, admin_state %s,registration id %s\n",
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000439 onu_ind->intf_id(), onu_ind->onu_id(),onu_ind->oper_state().c_str(), onu_ind->admin_state().c_str(),onu_ind->registration_id().c_str());*/
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700440
441 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000442 bcmolt_msg_free(msg);
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700443}
444
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000445static void OnuOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000446 openolt::Indication ind;
nickc063ffd2018-05-22 14:35:28 -0400447 openolt::OnuIndication* onu_ind = new openolt::OnuIndication;
nickc063ffd2018-05-22 14:35:28 -0400448
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000449 switch (msg->obj_type) {
450 case BCMOLT_OBJ_ID_ONU:
451 switch (msg->subgroup) {
452 case BCMOLT_ONU_AUTO_SUBGROUP_STATE_CHANGE:
453 {
454 bcmolt_onu_key *key = &((bcmolt_onu_state_change*)msg)->key;
455 bcmolt_onu_state_change_data *data = &((bcmolt_onu_state_change*)msg)->data;
nickc063ffd2018-05-22 14:35:28 -0400456
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000457 onu_ind->set_intf_id(key->pon_ni);
458 onu_ind->set_onu_id(key->onu_id);
459 if (ONU_STATE_IF_UP(data->new_onu_state))
460 onu_ind->set_oper_state("up");
461 if (ONU_STATE_IF_DOWN(data->new_onu_state))
462 onu_ind->set_oper_state("down");
463 ind.set_allocated_onu_ind(onu_ind);
nickc063ffd2018-05-22 14:35:28 -0400464
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000465 OPENOLT_LOG(INFO, openolt_log_id, "onu oper state indication, intf_id %d, onu_id %d, old oper state %d, new oper state %s\n",
466 key->pon_ni, key->onu_id, data->new_onu_state, onu_ind->oper_state().c_str());
467 }
468 }
nickc063ffd2018-05-22 14:35:28 -0400469 }
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000470 /*const std::string reg_id = getOnuRegistrationId(key->intf_id,key->sub_term_id);
Girish Gowdru376b33c2019-05-06 21:46:31 -0700471 onu_ind->set_registration_id(reg_id);
nickc063ffd2018-05-22 14:35:28 -0400472 ind.set_allocated_onu_ind(onu_ind);
473
Girish Gowdru376b33c2019-05-06 21:46:31 -0700474 BCM_LOG(INFO, openolt_log_id, "onu oper state indication, intf_id %d, onu_id %d, old oper state %d, new oper state %s, admin_state %s registraion_id %s\n",
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000475 key->intf_id, key->sub_term_id, data->old_oper_status, onu_ind->oper_state().c_str(), onu_ind->admin_state().c_str(),onu_ind->registration_id().c_str());*/
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500476
nickc063ffd2018-05-22 14:35:28 -0400477 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000478 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000479}
480
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000481static void OmciIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000482 openolt::Indication ind;
483 openolt::OmciIndication* omci_ind = new openolt::OmciIndication;
Shad Ansari01b0e652018-04-05 21:02:53 +0000484
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000485 switch (msg->obj_type) {
486 case BCMOLT_OBJ_ID_ONU:
487 switch (msg->subgroup) {
488 case BCMOLT_ONU_AUTO_SUBGROUP_OMCI_PACKET:
489 {
490 bcmolt_onu_key *key = &((bcmolt_onu_omci_packet*)msg)->key;
491 bcmolt_onu_omci_packet_data *data = &((bcmolt_onu_omci_packet*)msg)->data;
Shad Ansari01b0e652018-04-05 21:02:53 +0000492
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000493 OPENOLT_LOG(DEBUG, omci_log_id, "OMCI indication: pon_ni %d, onu_id %d\n",
494 key->pon_ni, key->onu_id);
Shad Ansari01b0e652018-04-05 21:02:53 +0000495
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000496 omci_ind->set_intf_id(key->pon_ni);
497 omci_ind->set_onu_id(key->onu_id);
498 omci_ind->set_pkt(data->buffer.arr, data->buffer.len);
499
500 ind.set_allocated_omci_ind(omci_ind);
501 break;
502 }
503 }
504 }
505
Shad Ansari01b0e652018-04-05 21:02:53 +0000506 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000507 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000508}
509
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000510static void PacketIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000511 openolt::Indication ind;
Shad Ansari5fe93682018-04-26 05:24:19 +0000512 openolt::PacketIndication* pkt_ind = new openolt::PacketIndication;
Shad Ansari5fe93682018-04-26 05:24:19 +0000513
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000514 switch (msg->obj_type) {
515 case BCMOLT_OBJ_ID_FLOW:
516 switch (msg->subgroup) {
517 case BCMOLT_FLOW_AUTO_SUBGROUP_RECEIVE_ETH_PACKET:
518 {
519 bcmolt_flow_receive_eth_packet *pkt =
520 (bcmolt_flow_receive_eth_packet*)msg;
521 bcmolt_flow_receive_eth_packet_data *pkt_data =
522 &((bcmolt_flow_receive_eth_packet*)msg)->data;
Shad Ansari5fe93682018-04-26 05:24:19 +0000523
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000524 uint32_t port_no = GetPortNum_(pkt->key.flow_id);
525 pkt_ind->set_intf_type(bcmolt_to_grpc_flow_intf_type((bcmolt_flow_interface_type)get_flow_status(pkt->key.flow_id, pkt->key.flow_type, INGRESS_INTF_TYPE)));
526 pkt_ind->set_intf_id(get_flow_status(pkt->key.flow_id, pkt->key.flow_type, INGRESS_INTF_ID));
527 pkt_ind->set_gemport_id(get_flow_status(pkt->key.flow_id, pkt->key.flow_type, SVC_PORT_ID));
528 pkt_ind->set_flow_id(pkt->key.flow_id);
529 pkt_ind->set_pkt(pkt_data->buffer.arr, pkt_data->buffer.len);
530 pkt_ind->set_port_no(port_no);
531 pkt_ind->set_cookie(get_flow_status(pkt->key.flow_id, pkt->key.flow_type, COOKIE));
532 ind.set_allocated_pkt_ind(pkt_ind);
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500533
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000534 OPENOLT_LOG(INFO, openolt_log_id, "packet indication, ingress intf_type %s, ingress intf_id %d, egress intf_type %s, egress intf_id %lu, svc_port %d, flow_type %s, flow_id %d, port_no %d, cookie %"PRIu64"\n",
535 pkt_ind->intf_type().c_str(), pkt_ind->intf_id(),
536 bcmolt_to_grpc_flow_intf_type((bcmolt_flow_interface_type)get_flow_status(pkt->key.flow_id, pkt->key.flow_type, EGRESS_INTF_TYPE)).c_str(),
537 get_flow_status(pkt->key.flow_id, pkt->key.flow_type, EGRESS_INTF_ID),
538 pkt_ind->gemport_id(), GET_FLOW_TYPE(pkt->key.flow_type),
539 pkt_ind->flow_id(), port_no, pkt_ind->cookie());
540 }
541 }
542 }
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500543
Shad Ansari5fe93682018-04-26 05:24:19 +0000544 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000545 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000546}
547
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000548static void FlowOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000549 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000550 OPENOLT_LOG(DEBUG, openolt_log_id, "flow oper state indication\n");
551 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000552}
553
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000554static void FlowIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000555 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000556 OPENOLT_LOG(DEBUG, openolt_log_id, "flow indication\n");
557 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000558}
559
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000560static void TmQIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000561 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000562 OPENOLT_LOG(DEBUG, openolt_log_id, "traffic mgmt queue indication\n");
563 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000564}
565
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000566static void TmSchedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000567 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000568 OPENOLT_LOG(DEBUG, openolt_log_id, "traffic mgmt sheduler indication\n");
569 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000570}
571
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000572static void McastGroupIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000573 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000574 OPENOLT_LOG(DEBUG, openolt_log_id, "mcast group indication\n");
575 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000576}
577
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000578static void OnuStartupFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400579 openolt::Indication ind;
580 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
581 openolt::OnuStartupFailureIndication* sufi_ind = new openolt::OnuStartupFailureIndication;
582
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000583 switch (msg->obj_type) {
584 case BCMOLT_OBJ_ID_ONU:
585 switch (msg->subgroup) {
586 case BCMOLT_ONU_AUTO_SUBGROUP_SUFI:
587 {
588 bcmolt_onu_key *key = &((bcmolt_onu_sufi*)msg)->key;
589 bcmolt_onu_sufi_data *data = &((bcmolt_onu_sufi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400590
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000591 OPENOLT_LOG(WARNING, openolt_log_id, "onu startup failure indication, intf_id %d, onu_id %d, alarm %d\n",
592 key->pon_ni, key->onu_id, data->alarm_status);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400593
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000594 sufi_ind->set_intf_id(key->pon_ni);
595 sufi_ind->set_onu_id(key->onu_id);
596 sufi_ind->set_status(alarm_status_to_string(data->alarm_status));
597 alarm_ind->set_allocated_onu_startup_fail_ind(sufi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400598
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000599 ind.set_allocated_alarm_ind(alarm_ind);
600 }
601 }
602 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400603
604 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000605 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400606}
607
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000608static void OnuSignalDegradeIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400609 openolt::Indication ind;
610 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
611 openolt::OnuSignalDegradeIndication* sdi_ind = new openolt::OnuSignalDegradeIndication;
612
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000613 switch (msg->obj_type) {
614 case BCMOLT_OBJ_ID_ONU:
615 switch (msg->subgroup) {
616 case BCMOLT_ONU_AUTO_SUBGROUP_SDI:
617 {
618 bcmolt_onu_key *key = &((bcmolt_onu_sdi*)msg)->key;
619 bcmolt_onu_sdi_data *data = &((bcmolt_onu_sdi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400620
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000621 OPENOLT_LOG(WARNING, openolt_log_id, "onu signal degrade indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
622 key->pon_ni, key->onu_id, data->alarm_status, data->ber);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400623
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000624 sdi_ind->set_intf_id(key->pon_ni);
625 sdi_ind->set_onu_id(key->onu_id);
626 sdi_ind->set_status(alarm_status_to_string(data->alarm_status));
627 sdi_ind->set_inverse_bit_error_rate(data->ber);
628 alarm_ind->set_allocated_onu_signal_degrade_ind(sdi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400629
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000630 ind.set_allocated_alarm_ind(alarm_ind);
631 }
632 }
633 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400634
635 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000636 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400637}
638
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000639static void OnuDriftOfWindowIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400640 openolt::Indication ind;
641 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
642 openolt::OnuDriftOfWindowIndication* dowi_ind = new openolt::OnuDriftOfWindowIndication;
643
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000644 switch (msg->obj_type) {
645 case BCMOLT_OBJ_ID_ONU:
646 switch (msg->subgroup) {
647 case BCMOLT_ONU_AUTO_SUBGROUP_DOWI:
648 {
649 bcmolt_onu_key *key = &((bcmolt_onu_dowi*)msg)->key;
650 bcmolt_onu_dowi_data *data = &((bcmolt_onu_dowi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400651
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000652 OPENOLT_LOG(WARNING, openolt_log_id, "onu drift of window indication, intf_id %d, onu_id %d, alarm %d, drift %d, new_eqd %d\n",
653 key->pon_ni, key->onu_id, data->alarm_status, data->drift_value, data->new_eqd);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400654
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000655 dowi_ind->set_intf_id(key->pon_ni);
656 dowi_ind->set_onu_id(key->onu_id);
657 dowi_ind->set_status(alarm_status_to_string(data->alarm_status));
658 dowi_ind->set_drift(data->drift_value);
659 dowi_ind->set_new_eqd(data->new_eqd);
660 alarm_ind->set_allocated_onu_drift_of_window_ind(dowi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400661
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000662 ind.set_allocated_alarm_ind(alarm_ind);
663 }
664 }
665 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400666
667 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000668 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400669}
670
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000671static void OnuLossOfOmciChannelIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400672 openolt::Indication ind;
673 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
674 openolt::OnuLossOfOmciChannelIndication* looci_ind = new openolt::OnuLossOfOmciChannelIndication;
675
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000676 switch (msg->obj_type) {
677 case BCMOLT_OBJ_ID_ONU:
678 switch (msg->subgroup) {
679 case BCMOLT_ONU_AUTO_SUBGROUP_LOOCI:
680 {
681 bcmolt_onu_key *key = &((bcmolt_onu_looci*)msg)->key;
682 bcmolt_onu_looci_data *data = &((bcmolt_onu_looci*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400683
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000684 OPENOLT_LOG(WARNING, openolt_log_id, "onu loss of OMCI channel indication, intf_id %d, onu_id %d, alarm %d\n",
685 key->pon_ni, key->onu_id, data->alarm_status);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400686
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000687 looci_ind->set_intf_id(key->pon_ni);
688 looci_ind->set_onu_id(key->onu_id);
689 looci_ind->set_status(alarm_status_to_string(data->alarm_status));
690 alarm_ind->set_allocated_onu_loss_omci_ind(looci_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400691
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000692 ind.set_allocated_alarm_ind(alarm_ind);
693 }
694 }
695 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400696
697 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000698 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400699}
700
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000701static void OnuSignalsFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400702 openolt::Indication ind;
703 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
704 openolt::OnuSignalsFailureIndication* sfi_ind = new openolt::OnuSignalsFailureIndication;
705
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000706 switch (msg->obj_type) {
707 case BCMOLT_OBJ_ID_ONU:
708 switch (msg->subgroup) {
709 case BCMOLT_ONU_AUTO_SUBGROUP_SFI:
710 {
711 bcmolt_onu_key *key = &((bcmolt_onu_sfi*)msg)->key;
712 bcmolt_onu_sfi_data *data = &((bcmolt_onu_sfi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400713
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000714 OPENOLT_LOG(WARNING, openolt_log_id, "onu signals failure indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
715 key->pon_ni, key->onu_id, data->alarm_status, data->ber);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400716
717
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000718 sfi_ind->set_intf_id(key->pon_ni);
719 sfi_ind->set_onu_id(key->onu_id);
720 sfi_ind->set_status(alarm_status_to_string(data->alarm_status));
721 sfi_ind->set_inverse_bit_error_rate(data->ber);
722 alarm_ind->set_allocated_onu_signals_fail_ind(sfi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400723
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000724 ind.set_allocated_alarm_ind(alarm_ind);
725 }
726 }
727 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400728
729 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000730 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400731}
732
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000733static void OnuTransmissionInterferenceWarningIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400734 openolt::Indication ind;
735 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
736 openolt::OnuTransmissionInterferenceWarning* tiwi_ind = new openolt::OnuTransmissionInterferenceWarning;
737
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000738 switch (msg->obj_type) {
739 case BCMOLT_OBJ_ID_ONU:
740 switch (msg->subgroup) {
741 case BCMOLT_ONU_AUTO_SUBGROUP_TIWI:
742 {
743 bcmolt_onu_key *key = &((bcmolt_onu_tiwi*)msg)->key;
744 bcmolt_onu_tiwi_data *data = &((bcmolt_onu_tiwi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400745
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000746 OPENOLT_LOG(WARNING, openolt_log_id, "onu transmission interference warning indication, intf_id %d, onu_id %d, alarm %d, drift %d\n",
747 key->pon_ni, key->onu_id, data->alarm_status, data->drift_value);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400748
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000749 tiwi_ind->set_intf_id(key->pon_ni);
750 tiwi_ind->set_onu_id(key->onu_id);
751 tiwi_ind->set_status(alarm_status_to_string(data->alarm_status));
752 tiwi_ind->set_drift(data->drift_value);
753 alarm_ind->set_allocated_onu_tiwi_ind(tiwi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400754
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000755 ind.set_allocated_alarm_ind(alarm_ind);
756 }
757 }
758 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400759
760 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000761 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400762}
763
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000764static void OnuActivationFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400765 openolt::Indication ind;
766 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
767 openolt::OnuActivationFailureIndication* activation_fail_ind = new openolt::OnuActivationFailureIndication;
768
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000769 switch (msg->obj_type) {
770 case BCMOLT_OBJ_ID_ONU:
771 switch (msg->subgroup) {
772 case BCMOLT_ONU_AUTO_SUBGROUP_ONU_DEACTIVATION_COMPLETED:
773 {
774 bcmolt_onu_key *key = &((bcmolt_onu_onu_activation_completed*)msg)->key;
775 bcmolt_onu_onu_activation_completed_data *data =
776 &((bcmolt_onu_onu_activation_completed*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400777
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000778 OPENOLT_LOG(INFO, openolt_log_id, "Got onu deactivation, intf_id %d, onu_id %d, fail_reason %d\n",
779 key->pon_ni, key->onu_id, data->fail_reason);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400780
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000781 activation_fail_ind->set_intf_id(key->pon_ni);
782 activation_fail_ind->set_onu_id(key->onu_id);
783 alarm_ind->set_allocated_onu_activation_fail_ind(activation_fail_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400784
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000785 ind.set_allocated_alarm_ind(alarm_ind);
786 }
787 }
788 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400789
790 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000791 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400792}
793
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000794/* removed by BAL v3.0
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400795bcmos_errno OnuProcessingErrorIndication(bcmbal_obj *obj) {
796 openolt::Indication ind;
797 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
798 openolt::OnuProcessingErrorIndication* onu_proc_error_ind = new openolt::OnuProcessingErrorIndication;
799
800 bcmbal_subscriber_terminal_key *key =
801 &(((bcmbal_subscriber_terminal_processing_error*)obj)->key);
802
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000803 OPENOLT_LOG(WARNING, openolt_log_id, "onu processing error indication, intf_id %d, onu_id %d\n",
Nicolas Palpacuer967438f2018-09-07 14:41:54 -0400804 key->intf_id, key->sub_term_id);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400805
806
807 onu_proc_error_ind->set_intf_id(key->intf_id);
808 onu_proc_error_ind->set_onu_id(key->sub_term_id);
809
810 alarm_ind->set_allocated_onu_processing_error_ind(onu_proc_error_ind);
811 ind.set_allocated_alarm_ind(alarm_ind);
812
813 oltIndQ.push(ind);
814 return BCM_ERR_OK;
815}
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000816*/
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400817
Shad Ansari01b0e652018-04-05 21:02:53 +0000818Status SubscribeIndication() {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000819 bcmolt_rx_cfg rx_cfg = {};
820 bcmos_errno rc;
Shad Ansari01b0e652018-04-05 21:02:53 +0000821
822 if (subscribed) {
823 return Status::OK;
824 }
825
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000826 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
827 rx_cfg.rx_cb = OltOperIndication;
828 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
829 rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_complete;
830 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
831 if(rc != BCM_ERR_OK)
832 return Status(grpc::StatusCode::INTERNAL,
833 "Olt connection complete state indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000834
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000835 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
836 rx_cfg.rx_cb = OltOperIndication;
837 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
838 rx_cfg.subgroup = bcmolt_device_auto_subgroup_disconnection_complete;
839 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
840 if(rc != BCM_ERR_OK)
841 return Status(grpc::StatusCode::INTERNAL,
842 "Olt disconnection complete state indication subscribe failed");
843
844 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
845 rx_cfg.rx_cb = OltOperIndication;
846 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
847 rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_failure;
848 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
849 if(rc != BCM_ERR_OK)
850 return Status(grpc::StatusCode::INTERNAL,
851 "Olt connection failure state indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000852
853 /* Interface LOS indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000854 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
855 rx_cfg.rx_cb = LosIndication;
856 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
857 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_los;
858 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
859 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000860 return Status(grpc::StatusCode::INTERNAL, "LOS indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000861
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000862 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
863 rx_cfg.rx_cb = IfOperIndication;
864 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
865 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_state_change_completed;
866 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
867 if(rc != BCM_ERR_OK)
868 return Status(grpc::StatusCode::INTERNAL,
869 "PON Interface operations state change indication subscribe failed");
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700870
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000871 rx_cfg.obj_type = BCMOLT_OBJ_ID_NNI_INTERFACE;
872 rx_cfg.rx_cb = IfOperIndication;
873 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
874 rx_cfg.subgroup = bcmolt_nni_interface_auto_subgroup_state_change;
875 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
876 if(rc != BCM_ERR_OK)
877 return Status(grpc::StatusCode::INTERNAL,
878 "NNI Interface operations state change indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000879
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000880 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
881 rx_cfg.rx_cb = OnuAlarmIndication;
882 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
883 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_xgpon_alarm;
884 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
885 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000886 return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000887
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000888 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
889 rx_cfg.rx_cb = OnuAlarmIndication;
890 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
891 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_gpon_alarm;
892 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
893 if(rc != BCM_ERR_OK)
894 return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
895
896 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
897 rx_cfg.rx_cb = OnuDyingGaspIndication;
898 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
899 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dgi;
900 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
901 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000902 return Status(grpc::StatusCode::INTERNAL, "onu dying-gasp indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000903
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000904 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
905 rx_cfg.rx_cb = OnuDiscoveryIndication;
906 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
907 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_onu_discovered;
908 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
909 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000910 return Status(grpc::StatusCode::INTERNAL, "onu discovery indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000911
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000912 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
913 rx_cfg.rx_cb = OnuIndication;
914 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
915 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_ranging_completed;
916
917 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
918 if(rc != BCM_ERR_OK)
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700919 return Status(grpc::StatusCode::INTERNAL, "onu indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000920
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000921 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
922 rx_cfg.rx_cb = OnuStartupFailureIndication;
923 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
924 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sufi;
925 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
926 if(rc != BCM_ERR_OK)
927 return Status(grpc::StatusCode::INTERNAL,
928 "onu startup failure indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000929
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000930 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
931 rx_cfg.rx_cb = OnuSignalDegradeIndication;
932 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
933 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sdi;
934 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
935 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400936 return Status(grpc::StatusCode::INTERNAL, "onu sdi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400937
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000938 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
939 rx_cfg.rx_cb = OnuDriftOfWindowIndication;
940 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
941 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dowi;
942 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
943 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400944 return Status(grpc::StatusCode::INTERNAL, "onu dowi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400945
946 /* LOOCI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000947 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
948 rx_cfg.rx_cb = OnuLossOfOmciChannelIndication;
949 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
950 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_looci;
951 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
952 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400953 return Status(grpc::StatusCode::INTERNAL, "onu looci indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400954
955 /* SFI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000956 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
957 rx_cfg.rx_cb = OnuSignalsFailureIndication;
958 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
959 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sfi;
960 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
961 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400962 return Status(grpc::StatusCode::INTERNAL, "onu sfi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400963
964 /* TIWI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000965 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
966 rx_cfg.rx_cb = OnuTransmissionInterferenceWarningIndication;
967 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
968 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_tiwi;
969 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
970 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400971 return Status(grpc::StatusCode::INTERNAL, "onu tiwi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400972
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000973 /* ONU Activation Failure Indiction */
974 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
975 rx_cfg.rx_cb = OnuActivationFailureIndication;
976 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
977 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_onu_deactivation_completed;
978 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
979 if(rc != BCM_ERR_OK)
980 return Status(grpc::StatusCode::INTERNAL,
981 "onu activation falaire indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400982
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000983 rx_cfg.obj_type = BCMOLT_OBJ_ID_FLOW;
984 rx_cfg.rx_cb = PacketIndication;
985 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
986 rx_cfg.subgroup = bcmolt_flow_auto_subgroup_receive_eth_packet;
987 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
988 if(rc != BCM_ERR_OK)
989 return Status(grpc::StatusCode::INTERNAL, "Packet indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400990
Shad Ansari01b0e652018-04-05 21:02:53 +0000991 subscribed = true;
992
993 return Status::OK;
994}