blob: 3b7a92e2bc505667e5fc4bb5ee86836d899fe4a2 [file] [log] [blame]
Shad Ansari01b0e652018-04-05 21:02:53 +00001/*
Girish Gowdraa707e7c2019-11-07 11:36:13 +05302 * Copyright 2018-present Open Networking Foundation
Shad Ansari01b0e652018-04-05 21:02:53 +00003
Girish Gowdraa707e7c2019-11-07 11:36:13 +05304 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Shad Ansari01b0e652018-04-05 21:02:53 +00007
Girish Gowdraa707e7c2019-11-07 11:36:13 +05308 * http://www.apache.org/licenses/LICENSE-2.0
Shad Ansari01b0e652018-04-05 21:02:53 +00009
Girish Gowdraa707e7c2019-11-07 11:36:13 +053010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Shad Ansari01b0e652018-04-05 21:02:53 +000017#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;
Girish Gowdra96461052019-11-22 20:13:59 +053037extern std::map<alloc_cfg_compltd_key, Queue<alloc_cfg_complete_result> *> alloc_cfg_compltd_map;
38extern bcmos_fastlock alloc_cfg_wait_lock;
Shad Ansari01b0e652018-04-05 21:02:53 +000039
Nicolas Palpacuer3cad49d2018-07-02 14:03:24 -040040
Shad Ansari01b0e652018-04-05 21:02:53 +000041bool subscribed = false;
Girish Gowdruc8ed2ef2019-02-13 08:18:44 -080042uint32_t nni_intf_id = 0;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000043#define current_device 0
Shad Ansari01b0e652018-04-05 21:02:53 +000044
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000045static void OmciIndication(bcmolt_devid olt, bcmolt_msg *msg);
Shad Ansari01b0e652018-04-05 21:02:53 +000046
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000047#define INTERFACE_STATE_IF_DOWN(state) \
48 ((state == BCMOLT_INTERFACE_STATE_INACTIVE || \
49 state == BCMOLT_INTERFACE_STATE_PROCESSING || \
50 state == BCMOLT_INTERFACE_STATE_ACTIVE_STANDBY) ? BCMOS_TRUE : BCMOS_FALSE)
51#define INTERFACE_STATE_IF_UP(state) \
52 ((state == BCMOLT_INTERFACE_STATE_ACTIVE_WORKING) ? BCMOS_TRUE : BCMOS_FALSE)
53#define ONU_STATE_IF_DOWN(state) \
54 ((state == BCMOLT_ONU_OPERATION_INACTIVE || \
55 state == BCMOLT_ONU_OPERATION_DISABLE || \
56 state == BCMOLT_ONU_OPERATION_ACTIVE_STANDBY) ? BCMOS_TRUE : BCMOS_FALSE)
57#define ONU_STATE_IF_UP(state) \
58 ((state == BCMOLT_ONU_OPERATION_ACTIVE) ? BCMOS_TRUE : BCMOS_FALSE)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +053059#define ONU_ACTIVATION_COMPLETED_SUCCESS(state) \
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000060 ((state == BCMOLT_RESULT_SUCCESS) ? BCMOS_TRUE : BCMOS_FALSE)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +053061#define ONU_ACTIVATION_COMPLETED_FAIL(state) \
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000062 ((state != BCMOLT_RESULT_SUCCESS) ? BCMOS_TRUE : BCMOS_FALSE)
63#define SET_OPER_STATE(indication,state) \
64 (INTERFACE_STATE_IF_UP(state)) ? indication->set_oper_state("up") : \
65 indication->set_oper_state("down")
66#define GET_FLOW_TYPE(type) \
67 (type == BCMOLT_FLOW_TYPE_UPSTREAM) ? "upstream" : \
68 (type == BCMOLT_FLOW_TYPE_DOWNSTREAM) ? "downstream" : \
69 (type == BCMOLT_FLOW_TYPE_MULTICAST) ? "multicast" : "unknown"
70
71std::string bcmolt_to_grpc_intf_type(bcmolt_interface_type intf_type)
Craig Lutgen88a22ad2018-10-04 12:30:46 -050072{
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000073 if (intf_type == BCMOLT_INTERFACE_TYPE_NNI) {
Craig Lutgen88a22ad2018-10-04 12:30:46 -050074 return "nni";
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000075 } else if (intf_type == BCMOLT_INTERFACE_TYPE_PON) {
Craig Lutgen88a22ad2018-10-04 12:30:46 -050076 return "pon";
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000077 } else if (intf_type == BCMOLT_INTERFACE_TYPE_HOST) {
78 return "host";
Craig Lutgen88a22ad2018-10-04 12:30:46 -050079 }
80 return "unknown";
81}
82
Jason Huang09b73ea2020-01-08 17:52:05 +080083std::string bcmolt_to_grpc_interface_rf__intf_type(bcmolt_interface_type intf_type)
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000084{
Jason Huang09b73ea2020-01-08 17:52:05 +080085 if (intf_type == BCMOLT_INTERFACE_TYPE_NNI) {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000086 return "nni";
Jason Huang09b73ea2020-01-08 17:52:05 +080087 } else if (intf_type == BCMOLT_INTERFACE_TYPE_PON) {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000088 return "pon";
Jason Huang09b73ea2020-01-08 17:52:05 +080089 } else if (intf_type == BCMOLT_INTERFACE_TYPE_HOST) {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000090 return "host";
91 }
92 return "unknown";
93}
94
95/*std::string getOnuRegistrationId(uint32_t intf_id, uint32_t onu_id){
Girish Gowdru376b33c2019-05-06 21:46:31 -070096 bcmbal_subscriber_terminal_key key;
97 bcmbal_subscriber_terminal_cfg sub_term_obj = {};
98 uint8_t *list_mem;// to fetch config details for ONU
99 bcmos_errno err = BCM_ERR_OK;
100
101 key.sub_term_id =onu_id;
102 key.intf_id = intf_id;
103 BCM_LOG(INFO, openolt_log_id,"Processing subscriber terminal cfg get for: %d",key.intf_id);
104
105 BCMBAL_CFG_INIT(&sub_term_obj, subscriber_terminal, key);
106
107 BCMBAL_CFG_PROP_GET(&sub_term_obj, subscriber_terminal, all_properties);
108 char *reg_id = (char*)malloc(sizeof(char)*MAX_REGID_LENGTH);
109 memset(reg_id, '\0', MAX_REGID_LENGTH);
110
111 //set memory to use for variable-sized lists
112 list_mem = (uint8_t*)malloc(BAL_DYNAMIC_LIST_BUFFER_SIZE);
113
114 if (list_mem == NULL)
115 {
116 BCM_LOG(ERROR,openolt_log_id,"Memory allocation failed while handling subscriber terminal \
117 cfg get subscriber_terminal_id(%d), Interface ID(%d)",key.sub_term_id, key.intf_id);
118 return reg_id;
119 }
120
121 memset(list_mem, 0, BAL_DYNAMIC_LIST_BUFFER_SIZE);
122 BCMBAL_CFG_LIST_BUF_SET(&sub_term_obj, subscriber_terminal, list_mem, BAL_DYNAMIC_LIST_BUFFER_SIZE);
123
124 //call API
125 err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &sub_term_obj.hdr);
126
127 if (err != BCM_ERR_OK)
128 {
129 BCM_LOG(ERROR,openolt_log_id, "Failed to get information from BAL subscriber_terminal_id(%d), Interface ID(%d)",
130 key.sub_term_id, key.intf_id);
131 free(list_mem);
132 return reg_id;
133 }
134
135 BCM_LOG(INFO,openolt_log_id, "Get Subscriber cfg sent to OLT for Subscriber Id(%d) on Interface(%d)",
136 key.sub_term_id, key.intf_id);
137
138 for (int i=0; i<MAX_REGID_LENGTH ; i++){
139 reg_id[i]=sub_term_obj.data.registration_id.arr[i];
140 }
141
142 free(list_mem);
143 return reg_id;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000144}*/
Girish Gowdru376b33c2019-05-06 21:46:31 -0700145
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000146static void OltOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000147 openolt::Indication ind;
148 openolt::OltIndication* olt_ind = new openolt::OltIndication;
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
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530202 OPENOLT_LOG(INFO, openolt_log_id, "LOS indication : intf_id: %d port: %d status %s\n",
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000203 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
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530223 switch (msg->obj_type) {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000224 case BCMOLT_OBJ_ID_PON_INTERFACE:
225 switch (msg->subgroup) {
226 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE_COMPLETED:
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530227 {
228 bcmolt_pon_interface_key *key =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000229 &((bcmolt_pon_interface_state_change_completed*)msg)->key;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530230 bcmolt_pon_interface_state_change_completed_data *data =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000231 &((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);
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530246 bcmolt_nni_interface_key *key =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000247 &((bcmolt_nni_interface_state_change *)msg)->key;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530248 bcmolt_nni_interface_state_change_data *data =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000249 &((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));
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530293 SET_OPER_STATE(intf_oper_ind, data->new_state);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000294 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 {
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530316 bcmolt_xgpon_onu_alarms *onu_alarms =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000317 &((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 {
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530331 bcmolt_gpon_onu_alarms *onu_alarms =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000332 &((bcmolt_onu_gpon_alarm_data *)msg)->gpon_onu_alarm;
333 onu_alarm_ind->set_los_status(alarm_status_to_string(onu_alarms->losi));
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530334 /* TODO: need to set lofi and loami
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000335 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));
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530338 */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000339 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 {
Chaitrashree G Sd8feddd2020-01-20 21:42:40 -0500360 bcmolt_onu_dgi* dgi_data = (bcmolt_onu_dgi *)msg;
361 dgi_ind->set_status(alarm_status_to_string(dgi_data->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
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530387 bcmolt_pon_interface_onu_discovered_data *data =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000388 &((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 OmciIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000410 openolt::Indication ind;
411 openolt::OmciIndication* omci_ind = new openolt::OmciIndication;
Shad Ansari01b0e652018-04-05 21:02:53 +0000412
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_OMCI_PACKET:
417 {
418 bcmolt_onu_key *key = &((bcmolt_onu_omci_packet*)msg)->key;
419 bcmolt_onu_omci_packet_data *data = &((bcmolt_onu_omci_packet*)msg)->data;
Shad Ansari01b0e652018-04-05 21:02:53 +0000420
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530421 OPENOLT_LOG(DEBUG, omci_log_id, "OMCI indication: pon_ni %d, onu_id %d\n",
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000422 key->pon_ni, key->onu_id);
Shad Ansari01b0e652018-04-05 21:02:53 +0000423
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000424 omci_ind->set_intf_id(key->pon_ni);
425 omci_ind->set_onu_id(key->onu_id);
426 omci_ind->set_pkt(data->buffer.arr, data->buffer.len);
427
428 ind.set_allocated_omci_ind(omci_ind);
429 break;
430 }
431 }
432 }
433
Shad Ansari01b0e652018-04-05 21:02:53 +0000434 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000435 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000436}
437
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000438static void PacketIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000439 openolt::Indication ind;
Shad Ansari5fe93682018-04-26 05:24:19 +0000440 openolt::PacketIndication* pkt_ind = new openolt::PacketIndication;
Shad Ansari5fe93682018-04-26 05:24:19 +0000441
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000442 switch (msg->obj_type) {
Jason Huang09b73ea2020-01-08 17:52:05 +0800443 case BCMOLT_OBJ_ID_ACCESS_CONTROL:
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000444 switch (msg->subgroup) {
Jason Huang09b73ea2020-01-08 17:52:05 +0800445 case BCMOLT_ACCESS_CONTROL_AUTO_SUBGROUP_RECEIVE_ETH_PACKET:
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000446 {
Jason Huang09b73ea2020-01-08 17:52:05 +0800447 bcmolt_access_control_receive_eth_packet *pkt =
448 (bcmolt_access_control_receive_eth_packet*)msg;
449 bcmolt_access_control_receive_eth_packet_data *pkt_data =
450 &((bcmolt_access_control_receive_eth_packet*)msg)->data;
Shad Ansari5fe93682018-04-26 05:24:19 +0000451
Jason Huang09b73ea2020-01-08 17:52:05 +0800452 pkt_ind->set_intf_type(bcmolt_to_grpc_interface_rf__intf_type(
453 (bcmolt_interface_type)pkt_data->interface_ref.intf_type));
454 pkt_ind->set_intf_id((bcmolt_interface_id)pkt_data->interface_ref.intf_id);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000455 pkt_ind->set_pkt(pkt_data->buffer.arr, pkt_data->buffer.len);
Jason Huang09b73ea2020-01-08 17:52:05 +0800456 //pkt_ind->set_gemport_id(getPacketInGemPort(pkt->key.id));
457 pkt_ind->set_gemport_id(pkt_data->svc_port_id);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000458 ind.set_allocated_pkt_ind(pkt_ind);
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500459
Jason Huang09b73ea2020-01-08 17:52:05 +0800460 if (pkt_data->interface_ref.intf_type == BCMOLT_INTERFACE_TYPE_PON) {
461 OPENOLT_LOG(INFO, openolt_log_id, "packet indication, ingress intf_type %s, ingress intf_id %d, gem_port %d\n",
462 pkt_ind->intf_type().c_str(), pkt_ind->intf_id(), pkt_data->svc_port_id);
463 } else if (pkt_data->interface_ref.intf_type == BCMOLT_INTERFACE_TYPE_NNI ) {
464 OPENOLT_LOG(INFO, openolt_log_id, "packet indication, ingress intf_type %s, ingress intf_id %d\n",
465 pkt_ind->intf_type().c_str(), pkt_ind->intf_id());
466 }
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000467 }
468 }
469 }
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500470
Shad Ansari5fe93682018-04-26 05:24:19 +0000471 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000472 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000473}
474
Girish Gowdra96461052019-11-22 20:13:59 +0530475static void ItuPonAllocConfigCompletedInd(bcmolt_devid olt, bcmolt_msg *msg) {
476
477 switch (msg->obj_type) {
478 case BCMOLT_OBJ_ID_ITUPON_ALLOC:
479 switch (msg->subgroup) {
480 case BCMOLT_ITUPON_ALLOC_AUTO_SUBGROUP_CONFIGURATION_COMPLETED:
481 {
482 bcmolt_itupon_alloc_configuration_completed *pkt =
483 (bcmolt_itupon_alloc_configuration_completed*)msg;
484 bcmolt_itupon_alloc_configuration_completed_data *pkt_data =
485 &((bcmolt_itupon_alloc_configuration_completed*)msg)->data;
486
487 alloc_cfg_compltd_key key((uint32_t)pkt->key.pon_ni, (uint32_t) pkt->key.alloc_id);
488 alloc_cfg_complete_result res;
489 res.pon_intf_id = pkt->key.pon_ni;
490 res.alloc_id = pkt->key.alloc_id;
491
492 pkt_data->status == BCMOLT_RESULT_SUCCESS ? res.status = ALLOC_CFG_STATUS_SUCCESS: res.status = ALLOC_CFG_STATUS_FAIL;
493 switch (pkt_data->new_state) {
494 case BCMOLT_ACTIVATION_STATE_NOT_CONFIGURED:
495 res.state = ALLOC_OBJECT_STATE_NOT_CONFIGURED;
496 break;
497 case BCMOLT_ACTIVATION_STATE_INACTIVE:
498 res.state = ALLOC_OBJECT_STATE_INACTIVE;
499 break;
500 case BCMOLT_ACTIVATION_STATE_PROCESSING:
501 res.state = ALLOC_OBJECT_STATE_PROCESSING;
502 break;
503 case BCMOLT_ACTIVATION_STATE_ACTIVE:
504 res.state = ALLOC_OBJECT_STATE_ACTIVE;
505 break;
506 default:
507 OPENOLT_LOG(ERROR, openolt_log_id, "invalid itu pon alloc activation new_state, pon_intf %u, alloc_id %u, new_state %d\n",
508 pkt->key.pon_ni, pkt->key.alloc_id, pkt_data->new_state);
509 res.state = ALLOC_OBJECT_STATE_NOT_CONFIGURED;
510 }
511 OPENOLT_LOG(INFO, openolt_log_id, "received itu pon alloc cfg complete ind, pon intf %u, alloc_id %u, status %u, new_state %u\n",
512 pkt->key.pon_ni, pkt->key.alloc_id, pkt_data->status, pkt_data->new_state);
513
514 bcmos_fastlock_lock(&alloc_cfg_wait_lock);
515 // Push the result from BAL to queue
516 std::map<alloc_cfg_compltd_key, Queue<alloc_cfg_complete_result> *>::iterator it = alloc_cfg_compltd_map.find(key);
517 if (it == alloc_cfg_compltd_map.end()) {
518 // could be case of spurious aysnc response, OR, the application timed-out waiting for response and cleared the key.
519 bcmolt_msg_free(msg);
520 OPENOLT_LOG(ERROR, openolt_log_id, "alloc config key not found for alloc_id = %u, pon_intf = %u\n", pkt->key.alloc_id, pkt->key.pon_ni);
521 bcmos_fastlock_unlock(&alloc_cfg_wait_lock, 0);
522 return;
523 }
524 if (it->second) {
525 // Push the result
526 it->second->push(res);
527 }
528 bcmos_fastlock_unlock(&alloc_cfg_wait_lock, 0);
529 }
530 }
531 }
532
533 bcmolt_msg_free(msg);
534}
535
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000536static void FlowOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000537 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000538 OPENOLT_LOG(DEBUG, openolt_log_id, "flow oper state indication\n");
539 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000540}
541
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000542static void FlowIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000543 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000544 OPENOLT_LOG(DEBUG, openolt_log_id, "flow indication\n");
545 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000546}
547
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000548static void TmQIndication(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, "traffic mgmt queue 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 TmSchedIndication(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, "traffic mgmt sheduler 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 McastGroupIndication(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, "mcast group 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 OnuStartupFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400567 openolt::Indication ind;
568 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
569 openolt::OnuStartupFailureIndication* sufi_ind = new openolt::OnuStartupFailureIndication;
570
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000571 switch (msg->obj_type) {
572 case BCMOLT_OBJ_ID_ONU:
573 switch (msg->subgroup) {
574 case BCMOLT_ONU_AUTO_SUBGROUP_SUFI:
575 {
576 bcmolt_onu_key *key = &((bcmolt_onu_sufi*)msg)->key;
577 bcmolt_onu_sufi_data *data = &((bcmolt_onu_sufi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400578
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000579 OPENOLT_LOG(WARNING, openolt_log_id, "onu startup failure indication, intf_id %d, onu_id %d, alarm %d\n",
580 key->pon_ni, key->onu_id, data->alarm_status);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400581
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000582 sufi_ind->set_intf_id(key->pon_ni);
583 sufi_ind->set_onu_id(key->onu_id);
584 sufi_ind->set_status(alarm_status_to_string(data->alarm_status));
585 alarm_ind->set_allocated_onu_startup_fail_ind(sufi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400586
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000587 ind.set_allocated_alarm_ind(alarm_ind);
588 }
589 }
590 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400591
592 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000593 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400594}
595
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000596static void OnuSignalDegradeIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400597 openolt::Indication ind;
598 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
599 openolt::OnuSignalDegradeIndication* sdi_ind = new openolt::OnuSignalDegradeIndication;
600
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000601 switch (msg->obj_type) {
602 case BCMOLT_OBJ_ID_ONU:
603 switch (msg->subgroup) {
604 case BCMOLT_ONU_AUTO_SUBGROUP_SDI:
605 {
606 bcmolt_onu_key *key = &((bcmolt_onu_sdi*)msg)->key;
607 bcmolt_onu_sdi_data *data = &((bcmolt_onu_sdi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400608
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000609 OPENOLT_LOG(WARNING, openolt_log_id, "onu signal degrade indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
610 key->pon_ni, key->onu_id, data->alarm_status, data->ber);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400611
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000612 sdi_ind->set_intf_id(key->pon_ni);
613 sdi_ind->set_onu_id(key->onu_id);
614 sdi_ind->set_status(alarm_status_to_string(data->alarm_status));
615 sdi_ind->set_inverse_bit_error_rate(data->ber);
616 alarm_ind->set_allocated_onu_signal_degrade_ind(sdi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400617
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000618 ind.set_allocated_alarm_ind(alarm_ind);
619 }
620 }
621 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400622
623 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000624 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400625}
626
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000627static void OnuDriftOfWindowIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400628 openolt::Indication ind;
629 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
630 openolt::OnuDriftOfWindowIndication* dowi_ind = new openolt::OnuDriftOfWindowIndication;
631
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000632 switch (msg->obj_type) {
633 case BCMOLT_OBJ_ID_ONU:
634 switch (msg->subgroup) {
635 case BCMOLT_ONU_AUTO_SUBGROUP_DOWI:
636 {
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530637 bcmolt_onu_key *key = &((bcmolt_onu_dowi*)msg)->key;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000638 bcmolt_onu_dowi_data *data = &((bcmolt_onu_dowi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400639
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000640 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",
641 key->pon_ni, key->onu_id, data->alarm_status, data->drift_value, data->new_eqd);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400642
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000643 dowi_ind->set_intf_id(key->pon_ni);
644 dowi_ind->set_onu_id(key->onu_id);
645 dowi_ind->set_status(alarm_status_to_string(data->alarm_status));
646 dowi_ind->set_drift(data->drift_value);
647 dowi_ind->set_new_eqd(data->new_eqd);
648 alarm_ind->set_allocated_onu_drift_of_window_ind(dowi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400649
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000650 ind.set_allocated_alarm_ind(alarm_ind);
651 }
652 }
653 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400654
655 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000656 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400657}
658
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000659static void OnuLossOfOmciChannelIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400660 openolt::Indication ind;
661 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
662 openolt::OnuLossOfOmciChannelIndication* looci_ind = new openolt::OnuLossOfOmciChannelIndication;
663
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000664 switch (msg->obj_type) {
665 case BCMOLT_OBJ_ID_ONU:
666 switch (msg->subgroup) {
667 case BCMOLT_ONU_AUTO_SUBGROUP_LOOCI:
668 {
669 bcmolt_onu_key *key = &((bcmolt_onu_looci*)msg)->key;
670 bcmolt_onu_looci_data *data = &((bcmolt_onu_looci*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400671
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000672 OPENOLT_LOG(WARNING, openolt_log_id, "onu loss of OMCI channel indication, intf_id %d, onu_id %d, alarm %d\n",
673 key->pon_ni, key->onu_id, data->alarm_status);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400674
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000675 looci_ind->set_intf_id(key->pon_ni);
676 looci_ind->set_onu_id(key->onu_id);
677 looci_ind->set_status(alarm_status_to_string(data->alarm_status));
678 alarm_ind->set_allocated_onu_loss_omci_ind(looci_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400679
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000680 ind.set_allocated_alarm_ind(alarm_ind);
681 }
682 }
683 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400684
685 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000686 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400687}
688
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000689static void OnuSignalsFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400690 openolt::Indication ind;
691 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
692 openolt::OnuSignalsFailureIndication* sfi_ind = new openolt::OnuSignalsFailureIndication;
693
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000694 switch (msg->obj_type) {
695 case BCMOLT_OBJ_ID_ONU:
696 switch (msg->subgroup) {
697 case BCMOLT_ONU_AUTO_SUBGROUP_SFI:
698 {
699 bcmolt_onu_key *key = &((bcmolt_onu_sfi*)msg)->key;
700 bcmolt_onu_sfi_data *data = &((bcmolt_onu_sfi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400701
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000702 OPENOLT_LOG(WARNING, openolt_log_id, "onu signals failure indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
703 key->pon_ni, key->onu_id, data->alarm_status, data->ber);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400704
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000705 sfi_ind->set_intf_id(key->pon_ni);
706 sfi_ind->set_onu_id(key->onu_id);
707 sfi_ind->set_status(alarm_status_to_string(data->alarm_status));
708 sfi_ind->set_inverse_bit_error_rate(data->ber);
709 alarm_ind->set_allocated_onu_signals_fail_ind(sfi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400710
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000711 ind.set_allocated_alarm_ind(alarm_ind);
712 }
713 }
714 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400715
716 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000717 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400718}
719
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000720static void OnuTransmissionInterferenceWarningIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400721 openolt::Indication ind;
722 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
723 openolt::OnuTransmissionInterferenceWarning* tiwi_ind = new openolt::OnuTransmissionInterferenceWarning;
724
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000725 switch (msg->obj_type) {
726 case BCMOLT_OBJ_ID_ONU:
727 switch (msg->subgroup) {
728 case BCMOLT_ONU_AUTO_SUBGROUP_TIWI:
729 {
730 bcmolt_onu_key *key = &((bcmolt_onu_tiwi*)msg)->key;
731 bcmolt_onu_tiwi_data *data = &((bcmolt_onu_tiwi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400732
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000733 OPENOLT_LOG(WARNING, openolt_log_id, "onu transmission interference warning indication, intf_id %d, onu_id %d, alarm %d, drift %d\n",
734 key->pon_ni, key->onu_id, data->alarm_status, data->drift_value);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400735
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000736 tiwi_ind->set_intf_id(key->pon_ni);
737 tiwi_ind->set_onu_id(key->onu_id);
738 tiwi_ind->set_status(alarm_status_to_string(data->alarm_status));
739 tiwi_ind->set_drift(data->drift_value);
740 alarm_ind->set_allocated_onu_tiwi_ind(tiwi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400741
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000742 ind.set_allocated_alarm_ind(alarm_ind);
743 }
744 }
745 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400746
747 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000748 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400749}
750
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530751static void OnuActivationCompletedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400752 openolt::Indication ind;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530753 openolt::OnuIndication* onu_ind = new openolt::OnuIndication;
754
755 switch (msg->obj_type) {
756 case BCMOLT_OBJ_ID_ONU:
757 switch (msg->subgroup) {
758 case BCMOLT_ONU_AUTO_SUBGROUP_ONU_ACTIVATION_COMPLETED:
759 {
760 bcmolt_onu_key *key = &((bcmolt_onu_onu_activation_completed*)msg)->key;
761 bcmolt_onu_onu_activation_completed_data*data = &((bcmolt_onu_onu_activation_completed*)msg)->data;
762
763 onu_ind->set_intf_id(key->pon_ni);
764 onu_ind->set_onu_id(key->onu_id);
765 if (ONU_ACTIVATION_COMPLETED_SUCCESS(data->status))
766 onu_ind->set_oper_state("up");
767 if (ONU_ACTIVATION_COMPLETED_FAIL(data->status))
768 onu_ind->set_oper_state("down");
769 // Setting the admin_state state field based on a valid onu_id does not make any sense.
770 // The adapter too does not seem to interpret this seriously.
771 // Legacy code, lets keep this as is for now.
772 (key->onu_id)?onu_ind->set_admin_state("up"):onu_ind->set_admin_state("down");
773 ind.set_allocated_onu_ind(onu_ind);
774 OPENOLT_LOG(INFO, openolt_log_id, "onu indication, pon_ni %d, onu_id %d, onu_state %s, onu_admin %s\n",
775 key->pon_ni, key->onu_id, (data->status==BCMOLT_RESULT_SUCCESS)?"up":"down",
776 (key->onu_id)?"up":"down");
777 }
778 }
779 }
780
781 oltIndQ.push(ind);
782 bcmolt_msg_free(msg);
783}
784
785
786static void OnuDeactivationCompletedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
787 openolt::Indication ind;
788
789 openolt::Indication onu_ind;
790 openolt::OnuIndication* onu_ind_data = new openolt::OnuIndication;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400791
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000792 switch (msg->obj_type) {
793 case BCMOLT_OBJ_ID_ONU:
794 switch (msg->subgroup) {
795 case BCMOLT_ONU_AUTO_SUBGROUP_ONU_DEACTIVATION_COMPLETED:
796 {
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530797 bcmolt_onu_key *key = &((bcmolt_onu_onu_deactivation_completed*)msg)->key;
798 bcmolt_onu_onu_deactivation_completed_data *data =
799 &((bcmolt_onu_onu_deactivation_completed*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400800
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530801 OPENOLT_LOG(INFO, openolt_log_id, "Got onu deactivation, intf_id %d, onu_id %d, fail_reason %d, result_status %s\n",
802 key->pon_ni, key->onu_id, data->fail_reason, bcmolt_result_to_string(data->status).c_str());
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400803
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530804 onu_ind_data->set_intf_id(key->pon_ni);
805 onu_ind_data->set_onu_id(key->onu_id);
806 onu_ind_data->set_oper_state("down");
807 onu_ind_data->set_admin_state("down");
808 onu_ind.set_allocated_onu_ind(onu_ind_data);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000809 }
810 }
811 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400812
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530813 oltIndQ.push(onu_ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000814 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400815}
816
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000817/* removed by BAL v3.0
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400818bcmos_errno OnuProcessingErrorIndication(bcmbal_obj *obj) {
819 openolt::Indication ind;
820 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
821 openolt::OnuProcessingErrorIndication* onu_proc_error_ind = new openolt::OnuProcessingErrorIndication;
822
823 bcmbal_subscriber_terminal_key *key =
824 &(((bcmbal_subscriber_terminal_processing_error*)obj)->key);
825
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000826 OPENOLT_LOG(WARNING, openolt_log_id, "onu processing error indication, intf_id %d, onu_id %d\n",
Nicolas Palpacuer967438f2018-09-07 14:41:54 -0400827 key->intf_id, key->sub_term_id);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400828
829
830 onu_proc_error_ind->set_intf_id(key->intf_id);
831 onu_proc_error_ind->set_onu_id(key->sub_term_id);
832
833 alarm_ind->set_allocated_onu_processing_error_ind(onu_proc_error_ind);
834 ind.set_allocated_alarm_ind(alarm_ind);
835
836 oltIndQ.push(ind);
837 return BCM_ERR_OK;
838}
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000839*/
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400840
Burak Gurdagc78b9e12019-11-29 11:14:51 +0000841static void GroupIndication(bcmolt_devid olt, bcmolt_msg *msg) {
842
843 switch (msg->obj_type) {
844 case BCMOLT_OBJ_ID_GROUP:
845 switch (msg->subgroup) {
846 case BCMOLT_GROUP_AUTO_SUBGROUP_COMPLETE_MEMBERS_UPDATE:
847 {
848 bcmolt_group_key *key = &((bcmolt_group_complete_members_update*)msg)->key;
849 bcmolt_group_complete_members_update_data *data =
850 &((bcmolt_group_complete_members_update*)msg)->data;
851
852 if (data->result == BCMOLT_RESULT_SUCCESS) {
853 OPENOLT_LOG(INFO, openolt_log_id, "Complete members update indication for group %d (successful)\n", key->id);
854 } else {
855 OPENOLT_LOG(ERROR, openolt_log_id, "Complete members update indication for group %d (failed with reason %d)\n", key->id, data->fail_reason);
856 }
857 }
858 }
859 }
860 bcmolt_msg_free(msg);
861}
862
Shad Ansari01b0e652018-04-05 21:02:53 +0000863Status SubscribeIndication() {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000864 bcmolt_rx_cfg rx_cfg = {};
865 bcmos_errno rc;
Shad Ansari01b0e652018-04-05 21:02:53 +0000866
867 if (subscribed) {
868 return Status::OK;
869 }
870
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000871 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
872 rx_cfg.rx_cb = OltOperIndication;
873 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
874 rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_complete;
875 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
876 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530877 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000878 "Olt connection complete state 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_DEVICE;
881 rx_cfg.rx_cb = OltOperIndication;
882 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
883 rx_cfg.subgroup = bcmolt_device_auto_subgroup_disconnection_complete;
884 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
885 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530886 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000887 "Olt disconnection complete state indication subscribe failed");
888
889 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
890 rx_cfg.rx_cb = OltOperIndication;
891 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
892 rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_failure;
893 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
894 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530895 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000896 "Olt connection failure state indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000897
898 /* Interface LOS indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000899 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
900 rx_cfg.rx_cb = LosIndication;
901 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
902 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_los;
903 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
904 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000905 return Status(grpc::StatusCode::INTERNAL, "LOS indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000906
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000907 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
908 rx_cfg.rx_cb = IfOperIndication;
909 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
910 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_state_change_completed;
911 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
912 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530913 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000914 "PON Interface operations state change indication subscribe failed");
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700915
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000916 rx_cfg.obj_type = BCMOLT_OBJ_ID_NNI_INTERFACE;
917 rx_cfg.rx_cb = IfOperIndication;
918 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
919 rx_cfg.subgroup = bcmolt_nni_interface_auto_subgroup_state_change;
920 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
921 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530922 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000923 "NNI Interface operations state change indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000924
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000925 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
926 rx_cfg.rx_cb = OnuAlarmIndication;
927 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
928 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_xgpon_alarm;
929 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
930 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000931 return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000932
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000933 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
934 rx_cfg.rx_cb = OnuAlarmIndication;
935 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
936 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_gpon_alarm;
937 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
938 if(rc != BCM_ERR_OK)
939 return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
940
941 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
942 rx_cfg.rx_cb = OnuDyingGaspIndication;
943 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
944 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dgi;
945 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
946 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000947 return Status(grpc::StatusCode::INTERNAL, "onu dying-gasp indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000948
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000949 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
950 rx_cfg.rx_cb = OnuDiscoveryIndication;
951 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
952 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_onu_discovered;
953 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
954 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +0000955 return Status(grpc::StatusCode::INTERNAL, "onu discovery indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000956
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000957 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000958 rx_cfg.rx_cb = OnuStartupFailureIndication;
959 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
960 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sufi;
961 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
962 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530963 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000964 "onu startup failure indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +0000965
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000966 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
967 rx_cfg.rx_cb = OnuSignalDegradeIndication;
968 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
969 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sdi;
970 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
971 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400972 return Status(grpc::StatusCode::INTERNAL, "onu sdi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400973
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000974 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
975 rx_cfg.rx_cb = OnuDriftOfWindowIndication;
976 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
977 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dowi;
978 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
979 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400980 return Status(grpc::StatusCode::INTERNAL, "onu dowi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400981
982 /* LOOCI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000983 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
984 rx_cfg.rx_cb = OnuLossOfOmciChannelIndication;
985 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
986 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_looci;
987 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
988 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400989 return Status(grpc::StatusCode::INTERNAL, "onu looci indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400990
991 /* SFI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000992 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
993 rx_cfg.rx_cb = OnuSignalsFailureIndication;
994 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
995 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sfi;
996 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
997 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400998 return Status(grpc::StatusCode::INTERNAL, "onu sfi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400999
1000 /* TIWI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001001 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1002 rx_cfg.rx_cb = OnuTransmissionInterferenceWarningIndication;
1003 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1004 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_tiwi;
1005 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1006 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001007 return Status(grpc::StatusCode::INTERNAL, "onu tiwi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001008
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301009 /* ONU Activation Completed Indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001010 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301011 rx_cfg.rx_cb = OnuActivationCompletedIndication;
1012 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1013 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_onu_activation_completed;
1014 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1015 if(rc != BCM_ERR_OK)
1016 return Status(grpc::StatusCode::INTERNAL,
1017 "onu activation completed indication subscribe failed");
1018
1019 /* ONU Deactivation Completed Indication */
1020 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1021 rx_cfg.rx_cb = OnuDeactivationCompletedIndication;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001022 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1023 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_onu_deactivation_completed;
1024 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1025 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301026 return Status(grpc::StatusCode::INTERNAL,
1027 "onu deactivation indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001028
Jason Huang09b73ea2020-01-08 17:52:05 +08001029 /* Packet-In by Access_Control */
1030 rx_cfg.obj_type = BCMOLT_OBJ_ID_ACCESS_CONTROL;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001031 rx_cfg.rx_cb = PacketIndication;
1032 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
Jason Huang09b73ea2020-01-08 17:52:05 +08001033 rx_cfg.subgroup = bcmolt_access_control_auto_subgroup_receive_eth_packet;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001034 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1035 if(rc != BCM_ERR_OK)
1036 return Status(grpc::StatusCode::INTERNAL, "Packet indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001037
Girish Gowdra96461052019-11-22 20:13:59 +05301038 rx_cfg.obj_type = BCMOLT_OBJ_ID_ITUPON_ALLOC;
1039 rx_cfg.rx_cb = ItuPonAllocConfigCompletedInd;
1040 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1041 rx_cfg.subgroup = bcmolt_itupon_alloc_auto_subgroup_configuration_completed;
1042 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1043 if(rc != BCM_ERR_OK)
1044 return Status(grpc::StatusCode::INTERNAL, "ITU PON Alloc Configuration \
1045Complete Indication subscribe failed");
1046
Burak Gurdagc78b9e12019-11-29 11:14:51 +00001047 rx_cfg.obj_type = BCMOLT_OBJ_ID_GROUP;
1048 rx_cfg.rx_cb = GroupIndication;
1049 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1050 rx_cfg.subgroup = bcmolt_group_auto_subgroup_complete_members_update;
1051 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1052 if(rc != BCM_ERR_OK)
1053 return Status(grpc::StatusCode::INTERNAL, "Complete members update indication subscribe failed");
1054
Shad Ansari01b0e652018-04-05 21:02:53 +00001055 subscribed = true;
1056
1057 return Status::OK;
1058}