blob: 0583ddbc6087931ca56799a553b9f33a5aaa7663 [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"
Girish Gowdraddf9a162020-01-27 12:56:27 +053019#include "core_data.h"
20#include "core_utils.h"
Nicolas Palpacuer0f19b1a2018-06-07 17:29:31 -040021#include "stats_collection.h"
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040022#include "translation.h"
Nicolas Palpacuer3cad49d2018-07-02 14:03:24 -040023#include "state.h"
24
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -040025#include <string>
Nicolas Palpacuer3cad49d2018-07-02 14:03:24 -040026
Shad Ansari01b0e652018-04-05 21:02:53 +000027extern "C"
28{
29#include <bcmos_system.h>
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000030#include <bcmolt_api.h>
31#include <bcmolt_host_api.h>
32#include <bcmolt_api_model_api_structs.h>
Shad Ansari01b0e652018-04-05 21:02:53 +000033}
34
35using grpc::Status;
36
Shad Ansari627b5782018-08-13 22:49:32 +000037extern Queue<openolt::Indication> oltIndQ;
Girish Gowdra96461052019-11-22 20:13:59 +053038extern std::map<alloc_cfg_compltd_key, Queue<alloc_cfg_complete_result> *> alloc_cfg_compltd_map;
39extern bcmos_fastlock alloc_cfg_wait_lock;
Shad Ansari01b0e652018-04-05 21:02:53 +000040
41bool 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
Jason Huang5d9ab1a2020-04-15 16:53:49 +080095inline uint64_t get_pon_stats_alarms_data(bcmolt_interface pon_ni, bcmolt_onu_id onu_id, bcmolt_onu_itu_pon_stats_data_id stat) {
96 bcmos_errno err;
97 bcmolt_onu_itu_pon_stats itu_pon_stat; /* declare main API struct */
98 bcmolt_onu_key key = {}; /* declare key */
99 bcmolt_stat_flags clear_on_read = BCMOLT_STAT_FLAGS_NONE; /* declare 'clear on read' flag */
100
101 key.pon_ni = pon_ni;
102 key.onu_id = onu_id;
103
104 /* Initialize the API struct. */
105 BCMOLT_STAT_INIT(&itu_pon_stat, onu, itu_pon_stats, key);
106 switch (stat) {
107 case BCMOLT_ONU_ITU_PON_STATS_DATA_ID_RDI_ERRORS:
108 BCMOLT_FIELD_SET_PRESENT(&itu_pon_stat.data, onu_itu_pon_stats_data, rdi_errors);
109 err = bcmolt_stat_get(dev_id, &itu_pon_stat.hdr, clear_on_read ? BCMOLT_STAT_FLAGS_CLEAR_ON_READ : BCMOLT_STAT_FLAGS_NONE);
110 if (err) {
111 OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get rdi_errors, err = %s\n", bcmos_strerror(err));
112 return err;
113 }
114 return itu_pon_stat.data.rdi_errors;
115 /* It is a further requirement
116 case BCMOLT_ONU_ITU_PON_STATS_DATA_ID_BIP_ERRORS:
117 BCMOLT_FIELD_SET_PRESENT(&itu_pon_stat.data, onu_itu_pon_stats_data, bip_errors);
118 err = bcmolt_stat_get(dev_id, &itu_pon_stat.hdr, clear_on_read ? BCMOLT_STAT_FLAGS_CLEAR_ON_READ : BCMOLT_STAT_FLAGS_NONE);
119 if (err) {
120 OPENOLT_LOG(ERROR, openolt_log_id, "Failed to get bip_errors, err = %s\n", bcmos_strerror(err));
121 return err;
122 }
123 return itu_pon_stat.data.bip_errors;
124 */
125 default:
126 return BCM_ERR_INTERNAL;
127 }
128
129 return err;
130}
131
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000132/*std::string getOnuRegistrationId(uint32_t intf_id, uint32_t onu_id){
Girish Gowdru376b33c2019-05-06 21:46:31 -0700133 bcmbal_subscriber_terminal_key key;
134 bcmbal_subscriber_terminal_cfg sub_term_obj = {};
135 uint8_t *list_mem;// to fetch config details for ONU
136 bcmos_errno err = BCM_ERR_OK;
137
138 key.sub_term_id =onu_id;
139 key.intf_id = intf_id;
140 BCM_LOG(INFO, openolt_log_id,"Processing subscriber terminal cfg get for: %d",key.intf_id);
141
142 BCMBAL_CFG_INIT(&sub_term_obj, subscriber_terminal, key);
143
144 BCMBAL_CFG_PROP_GET(&sub_term_obj, subscriber_terminal, all_properties);
145 char *reg_id = (char*)malloc(sizeof(char)*MAX_REGID_LENGTH);
146 memset(reg_id, '\0', MAX_REGID_LENGTH);
147
148 //set memory to use for variable-sized lists
149 list_mem = (uint8_t*)malloc(BAL_DYNAMIC_LIST_BUFFER_SIZE);
150
151 if (list_mem == NULL)
152 {
153 BCM_LOG(ERROR,openolt_log_id,"Memory allocation failed while handling subscriber terminal \
154 cfg get subscriber_terminal_id(%d), Interface ID(%d)",key.sub_term_id, key.intf_id);
155 return reg_id;
156 }
157
158 memset(list_mem, 0, BAL_DYNAMIC_LIST_BUFFER_SIZE);
159 BCMBAL_CFG_LIST_BUF_SET(&sub_term_obj, subscriber_terminal, list_mem, BAL_DYNAMIC_LIST_BUFFER_SIZE);
160
161 //call API
162 err = bcmbal_cfg_get(DEFAULT_ATERM_ID, &sub_term_obj.hdr);
163
164 if (err != BCM_ERR_OK)
165 {
166 BCM_LOG(ERROR,openolt_log_id, "Failed to get information from BAL subscriber_terminal_id(%d), Interface ID(%d)",
167 key.sub_term_id, key.intf_id);
168 free(list_mem);
169 return reg_id;
170 }
171
172 BCM_LOG(INFO,openolt_log_id, "Get Subscriber cfg sent to OLT for Subscriber Id(%d) on Interface(%d)",
173 key.sub_term_id, key.intf_id);
174
175 for (int i=0; i<MAX_REGID_LENGTH ; i++){
176 reg_id[i]=sub_term_obj.data.registration_id.arr[i];
177 }
178
179 free(list_mem);
180 return reg_id;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000181}*/
Girish Gowdru376b33c2019-05-06 21:46:31 -0700182
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000183static void OltOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000184 openolt::Indication ind;
185 openolt::OltIndication* olt_ind = new openolt::OltIndication;
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500186 std::string admin_state;
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500187
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000188 switch (msg->subgroup) {
189 case BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_COMPLETE:
190 admin_state = "up";
191 olt_ind->set_oper_state("up");
192 break;
193 case BCMOLT_DEVICE_AUTO_SUBGROUP_DISCONNECTION_COMPLETE:
194 admin_state = "down";
195 olt_ind->set_oper_state("down");
196 break;
197 case BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_FAILURE:
198 admin_state = "failure";
199 olt_ind->set_oper_state("failure");
200 break;
Shad Ansari01b0e652018-04-05 21:02:53 +0000201 }
202 ind.set_allocated_olt_ind(olt_ind);
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500203
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000204 if (msg->subgroup == BCMOLT_DEVICE_AUTO_SUBGROUP_CONNECTION_COMPLETE) {
205 /* register for omci indication */
206 {
207 bcmolt_rx_cfg rx_cfg = {};
208 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
209 rx_cfg.rx_cb = OmciIndication;
210 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_omci_packet;
211 rx_cfg.module = BCMOS_MODULE_ID_OMCI_TRANSPORT;
212 bcmolt_ind_subscribe(current_device, &rx_cfg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000213 }
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500214 state.activate();
215 }
216 else {
217 state.deactivate();
218 }
219
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000220 oltIndQ.push(ind);
221 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000222}
223
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000224static void LosIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000225 openolt::Indication ind;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400226 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
227 openolt::LosIndication* los_ind = new openolt::LosIndication;
228
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000229 switch (msg->obj_type) {
230 case BCMOLT_OBJ_ID_PON_INTERFACE:
231 switch (msg->subgroup) {
232 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_LOS:
233 {
234 bcmolt_pon_interface_los* bcm_los_ind = (bcmolt_pon_interface_los *) msg;
235 int intf_id = interface_key_to_port_no(bcm_los_ind->key.pon_ni,
236 BCMOLT_INTERFACE_TYPE_PON);
237 std::string status = alarm_status_to_string(bcm_los_ind->data.status);
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400238
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530239 OPENOLT_LOG(INFO, openolt_log_id, "LOS indication : intf_id: %d port: %d status %s\n",
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000240 bcm_los_ind->key.pon_ni, intf_id, status.c_str());
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400241
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000242 los_ind->set_intf_id(intf_id);
243 los_ind->set_status(status);
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400244
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000245 alarm_ind->set_allocated_los_ind(los_ind);
246 ind.set_allocated_alarm_ind(alarm_ind);
247 break;
248 }
249 }
250 }
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400251
252 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000253 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000254}
255
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000256static void IfIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700257 openolt::Indication ind;
258 openolt::IntfIndication* intf_ind = new openolt::IntfIndication;
259
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530260 switch (msg->obj_type) {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000261 case BCMOLT_OBJ_ID_PON_INTERFACE:
262 switch (msg->subgroup) {
263 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE_COMPLETED:
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530264 {
265 bcmolt_pon_interface_key *key =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000266 &((bcmolt_pon_interface_state_change_completed*)msg)->key;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530267 bcmolt_pon_interface_state_change_completed_data *data =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000268 &((bcmolt_pon_interface_state_change_completed*)msg)->data;
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700269
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000270 intf_ind->set_intf_id(key->pon_ni);
271 SET_OPER_STATE(intf_ind, data->new_state);
Thiyagarajan Subramaniad463232020-02-28 19:10:43 +0530272
273 OPENOLT_LOG(INFO, openolt_log_id, "intf indication, intf_type %s, intf_id %d, oper_state %s\n",
274 bcmolt_to_grpc_intf_type(BCMOLT_INTERFACE_TYPE_PON).c_str(), key->pon_ni, intf_ind->oper_state().c_str());
275
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000276 ind.set_allocated_intf_ind(intf_ind);
277 break;
278 }
279 }
280 break;
281 case BCMOLT_OBJ_ID_NNI_INTERFACE:
282 switch (msg->subgroup) {
283 case BCMOLT_NNI_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE:
284 {
285 OPENOLT_LOG(INFO, openolt_log_id, "intf indication, intf_id: %d\n",
286 ((bcmolt_nni_interface_state_change *)msg)->key.id);
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530287 bcmolt_nni_interface_key *key =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000288 &((bcmolt_nni_interface_state_change *)msg)->key;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530289 bcmolt_nni_interface_state_change_data *data =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000290 &((bcmolt_nni_interface_state_change *)msg)->data;
291
292 intf_ind->set_intf_id(key->id);
293 SET_OPER_STATE(intf_ind, data->new_state);
294 ind.set_allocated_intf_ind(intf_ind);
295 break;
296 }
297 }
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700298 }
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700299
300 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000301 bcmolt_msg_free(msg);
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -0700302}
303
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000304static void IfOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000305 openolt::Indication ind;
306 openolt::IntfOperIndication* intf_oper_ind = new openolt::IntfOperIndication;
Shad Ansari01b0e652018-04-05 21:02:53 +0000307
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000308 switch (msg->obj_type) {
309 case BCMOLT_OBJ_ID_PON_INTERFACE:
310 switch (msg->subgroup) {
311 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE_COMPLETED:
312 {
313 bcmolt_pon_interface_key *key = &((bcmolt_pon_interface_state_change_completed*)msg)->key;
314 bcmolt_pon_interface_state_change_completed_data *data = &((bcmolt_pon_interface_state_change_completed*)msg)->data;
315 intf_oper_ind->set_intf_id(key->pon_ni);
316 intf_oper_ind->set_type(bcmolt_to_grpc_intf_type(BCMOLT_INTERFACE_TYPE_PON));
317 SET_OPER_STATE(intf_oper_ind, data->new_state);
318 OPENOLT_LOG(INFO, openolt_log_id, "intf oper state indication, intf_type %s, intf_id %d, oper_state %s\n",
319 intf_oper_ind->type().c_str(), key->pon_ni, intf_oper_ind->oper_state().c_str());
320 ind.set_allocated_intf_oper_ind(intf_oper_ind);
321 break;
322 }
323 }
324 case BCMOLT_OBJ_ID_NNI_INTERFACE:
325 switch (msg->subgroup) {
326 case BCMOLT_NNI_INTERFACE_AUTO_SUBGROUP_STATE_CHANGE:
327 {
328 bcmolt_nni_interface_key *key = &((bcmolt_nni_interface_state_change *)msg)->key;
329 bcmolt_nni_interface_state_change_data *data = &((bcmolt_nni_interface_state_change *)msg)->data;
330 bcmolt_interface intf_id = key->id;
331 bcmolt_interface_type intf_type = BCMOLT_INTERFACE_TYPE_NNI;
332 intf_oper_ind->set_intf_id(key->id);
333 intf_oper_ind->set_type(bcmolt_to_grpc_intf_type(BCMOLT_INTERFACE_TYPE_NNI));
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530334 SET_OPER_STATE(intf_oper_ind, data->new_state);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000335 OPENOLT_LOG(INFO, openolt_log_id, "intf oper state indication, intf_type %s, intf_id %d, oper_state %s\n",
336 intf_oper_ind->type().c_str(), key->id, intf_oper_ind->oper_state().c_str());
337 ind.set_allocated_intf_oper_ind(intf_oper_ind);
338 break;
339 }
340 }
Shad Ansari01b0e652018-04-05 21:02:53 +0000341 }
342
Shad Ansari01b0e652018-04-05 21:02:53 +0000343 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000344 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000345}
346
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000347static void OnuAlarmIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000348 openolt::Indication ind;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400349 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
350 openolt::OnuAlarmIndication* onu_alarm_ind = new openolt::OnuAlarmIndication;
351
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000352 switch (msg->obj_type) {
353 case BCMOLT_OBJ_ID_ONU:
354 switch (msg->subgroup) {
355 case BCMOLT_ONU_AUTO_SUBGROUP_XGPON_ALARM:
356 {
Jason Huang93430532020-02-04 17:16:02 +0800357 bcmolt_onu_xgpon_alarm_data *data = &((bcmolt_onu_xgpon_alarm *)msg)->data;
358 bcmolt_onu_key *key = &((bcmolt_onu_xgpon_alarm *)msg)->key;
Thiyagarajan Subramaniad463232020-02-28 19:10:43 +0530359
360 int port_no = interface_key_to_port_no(key->pon_ni, BCMOLT_INTERFACE_TYPE_PON);
361
362 OPENOLT_LOG(INFO, openolt_log_id, "onu alarm indication, pon_ni %d, onu_id %d, port_no %d, los_status %s, lob_status %s, lopc_miss_status %s, lopc_mic_error_status %s\n", key->pon_ni, key->onu_id, port_no, alarm_status_to_string(data->xgpon_onu_alarm.losi).c_str(), alarm_status_to_string(data->xgpon_onu_alarm.lobi).c_str(), alarm_status_to_string(data->xgpon_onu_alarm.lopci_miss).c_str(), alarm_status_to_string(data->xgpon_onu_alarm.lopci_mic_error).c_str());
363
Jason Huang93430532020-02-04 17:16:02 +0800364 onu_alarm_ind->set_los_status(alarm_status_to_string(data->xgpon_onu_alarm.losi));
365 onu_alarm_ind->set_lob_status(alarm_status_to_string(data->xgpon_onu_alarm.lobi));
366 onu_alarm_ind->set_lopc_miss_status(alarm_status_to_string(data->xgpon_onu_alarm.lopci_miss));
367 onu_alarm_ind->set_lopc_mic_error_status(alarm_status_to_string(data->xgpon_onu_alarm.lopci_mic_error));
368 onu_alarm_ind->set_intf_id(key->pon_ni);
369 onu_alarm_ind->set_onu_id(key->onu_id);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000370 alarm_ind->set_allocated_onu_alarm_ind(onu_alarm_ind);
371 ind.set_allocated_alarm_ind(alarm_ind);
372 break;
373 }
374 case BCMOLT_ONU_AUTO_SUBGROUP_GPON_ALARM:
375 {
Jason Huang93430532020-02-04 17:16:02 +0800376 bcmolt_onu_gpon_alarm_data *data = &((bcmolt_onu_gpon_alarm *)msg)->data;
377 bcmolt_onu_key *key = &((bcmolt_onu_gpon_alarm *)msg)->key;
378 onu_alarm_ind->set_los_status(alarm_status_to_string(data->gpon_onu_alarm.losi));
379 onu_alarm_ind->set_lofi_status(alarm_status_to_string(data->gpon_onu_alarm.lofi));
380 onu_alarm_ind->set_loami_status(alarm_status_to_string(data->gpon_onu_alarm.loami));
381 onu_alarm_ind->set_intf_id(key->pon_ni);
382 onu_alarm_ind->set_onu_id(key->onu_id);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000383 alarm_ind->set_allocated_onu_alarm_ind(onu_alarm_ind);
384 ind.set_allocated_alarm_ind(alarm_ind);
385 break;
386 }
387 }
388 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400389
390 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000391 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000392}
393
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000394static void OnuDyingGaspIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000395 openolt::Indication ind;
Nicolas Palpacuera32f4c32018-06-28 12:55:10 -0400396 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000397 openolt::DyingGaspIndication* dgi_ind = new openolt::DyingGaspIndication;
nickc063ffd2018-05-22 14:35:28 -0400398
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000399 switch (msg->obj_type) {
400 case BCMOLT_OBJ_ID_ONU:
401 switch (msg->subgroup) {
402 case BCMOLT_ONU_AUTO_SUBGROUP_DGI:
403 {
Chaitrashree G Sd8feddd2020-01-20 21:42:40 -0500404 bcmolt_onu_dgi* dgi_data = (bcmolt_onu_dgi *)msg;
Chaitrashree G S7bc19ce2020-01-28 18:27:42 -0500405 bcmolt_onu_key *key = &((bcmolt_onu_dgi *)msg)->key;
406
Thiyagarajan Subramaniad463232020-02-28 19:10:43 +0530407 int port_no = interface_key_to_port_no(key->pon_ni, BCMOLT_INTERFACE_TYPE_PON);
408
409 OPENOLT_LOG(INFO, openolt_log_id, "onu dyinggasp indication, pon_ni %d, onu_id %d, port_no %d, status %s\n",
410 key->pon_ni, key->onu_id, port_no, alarm_status_to_string(dgi_data->data.alarm_status).c_str());
411
Chaitrashree G Sd8feddd2020-01-20 21:42:40 -0500412 dgi_ind->set_status(alarm_status_to_string(dgi_data->data.alarm_status));
Chaitrashree G S7bc19ce2020-01-28 18:27:42 -0500413 dgi_ind->set_intf_id(key->pon_ni);
414 dgi_ind->set_onu_id(key->onu_id);
nickc063ffd2018-05-22 14:35:28 -0400415
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000416 alarm_ind->set_allocated_dying_gasp_ind(dgi_ind);
417 ind.set_allocated_alarm_ind(alarm_ind);
418 break;
419 }
420 }
421 }
nickc063ffd2018-05-22 14:35:28 -0400422
423 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000424 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000425}
426
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000427static void OnuDiscoveryIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000428 openolt::Indication ind;
429 openolt::OnuDiscIndication* onu_disc_ind = new openolt::OnuDiscIndication;
430 openolt::SerialNumber* serial_number = new openolt::SerialNumber;
431
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000432 switch (msg->obj_type) {
433 case BCMOLT_OBJ_ID_PON_INTERFACE:
434 switch (msg->subgroup) {
435 case BCMOLT_PON_INTERFACE_AUTO_SUBGROUP_ONU_DISCOVERED:
436 {
437 bcmolt_pon_interface_key *key =
438 &((bcmolt_pon_interface_onu_discovered *)msg)->key;
Shad Ansari01b0e652018-04-05 21:02:53 +0000439
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530440 bcmolt_pon_interface_onu_discovered_data *data =
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000441 &((bcmolt_pon_interface_onu_discovered *)msg)->data;
Shad Ansari01b0e652018-04-05 21:02:53 +0000442
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000443 bcmolt_serial_number *in_serial_number = &(data->serial_number);
Shad Ansari01b0e652018-04-05 21:02:53 +0000444
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000445 OPENOLT_LOG(INFO, openolt_log_id, "onu discover indication, pon_ni %d, serial_number %s\n",
446 key->pon_ni, serial_number_to_str(in_serial_number).c_str());
Shad Ansari01b0e652018-04-05 21:02:53 +0000447
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000448 onu_disc_ind->set_intf_id(key->pon_ni);
449 serial_number->set_vendor_id(reinterpret_cast<const char *>(in_serial_number->vendor_id.arr), 4);
450 serial_number->set_vendor_specific(reinterpret_cast<const char *>(in_serial_number->vendor_specific.arr), 8);
451 onu_disc_ind->set_allocated_serial_number(serial_number);
452 ind.set_allocated_onu_disc_ind(onu_disc_ind);
453 break;
454 }
455 }
456 }
Shad Ansari01b0e652018-04-05 21:02:53 +0000457
458 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000459 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000460}
461
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000462static void OmciIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000463 openolt::Indication ind;
464 openolt::OmciIndication* omci_ind = new openolt::OmciIndication;
Shad Ansari01b0e652018-04-05 21:02:53 +0000465
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000466 switch (msg->obj_type) {
467 case BCMOLT_OBJ_ID_ONU:
468 switch (msg->subgroup) {
469 case BCMOLT_ONU_AUTO_SUBGROUP_OMCI_PACKET:
470 {
471 bcmolt_onu_key *key = &((bcmolt_onu_omci_packet*)msg)->key;
472 bcmolt_onu_omci_packet_data *data = &((bcmolt_onu_omci_packet*)msg)->data;
Shad Ansari01b0e652018-04-05 21:02:53 +0000473
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530474 OPENOLT_LOG(DEBUG, omci_log_id, "OMCI indication: pon_ni %d, onu_id %d\n",
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000475 key->pon_ni, key->onu_id);
Shad Ansari01b0e652018-04-05 21:02:53 +0000476
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000477 omci_ind->set_intf_id(key->pon_ni);
478 omci_ind->set_onu_id(key->onu_id);
479 omci_ind->set_pkt(data->buffer.arr, data->buffer.len);
480
481 ind.set_allocated_omci_ind(omci_ind);
482 break;
483 }
484 }
485 }
486
Shad Ansari01b0e652018-04-05 21:02:53 +0000487 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000488 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000489}
490
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000491static void PacketIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000492 openolt::Indication ind;
Shad Ansari5fe93682018-04-26 05:24:19 +0000493
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000494 switch (msg->obj_type) {
Jason Huang09b73ea2020-01-08 17:52:05 +0800495 case BCMOLT_OBJ_ID_ACCESS_CONTROL:
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000496 switch (msg->subgroup) {
Jason Huang09b73ea2020-01-08 17:52:05 +0800497 case BCMOLT_ACCESS_CONTROL_AUTO_SUBGROUP_RECEIVE_ETH_PACKET:
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000498 {
Girish Gowdra1935e6a2020-10-31 21:48:22 -0700499 int32_t gemport_id;
Jason Huang09b73ea2020-01-08 17:52:05 +0800500 bcmolt_access_control_receive_eth_packet *pkt =
501 (bcmolt_access_control_receive_eth_packet*)msg;
502 bcmolt_access_control_receive_eth_packet_data *pkt_data =
503 &((bcmolt_access_control_receive_eth_packet*)msg)->data;
Shad Ansari5fe93682018-04-26 05:24:19 +0000504
Girish Gowdra1935e6a2020-10-31 21:48:22 -0700505 // Set the gemport_id to be passed to is_packet_allowed function
506 gemport_id = pkt_data->svc_port_id == BCMOLT_SERVICE_PORT_ID_INVALID ? -1 : pkt_data->svc_port_id;
507
508 // Allow the packet to host only if "is_packet_allowed" routine returns true, else drop the packet.
509 if (! is_packet_allowed(pkt_data, gemport_id) ) {
510 OPENOLT_LOG(WARNING, openolt_log_id, "packet not allowed to host\n");
511 bcmolt_msg_free(msg);
512 return;
513 }
514 openolt::PacketIndication* pkt_ind = new openolt::PacketIndication;
Jason Huang09b73ea2020-01-08 17:52:05 +0800515 pkt_ind->set_intf_type(bcmolt_to_grpc_interface_rf__intf_type(
516 (bcmolt_interface_type)pkt_data->interface_ref.intf_type));
517 pkt_ind->set_intf_id((bcmolt_interface_id)pkt_data->interface_ref.intf_id);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000518 pkt_ind->set_pkt(pkt_data->buffer.arr, pkt_data->buffer.len);
Jason Huang09b73ea2020-01-08 17:52:05 +0800519 pkt_ind->set_gemport_id(pkt_data->svc_port_id);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000520 ind.set_allocated_pkt_ind(pkt_ind);
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500521
Jason Huang09b73ea2020-01-08 17:52:05 +0800522 if (pkt_data->interface_ref.intf_type == BCMOLT_INTERFACE_TYPE_PON) {
523 OPENOLT_LOG(INFO, openolt_log_id, "packet indication, ingress intf_type %s, ingress intf_id %d, gem_port %d\n",
524 pkt_ind->intf_type().c_str(), pkt_ind->intf_id(), pkt_data->svc_port_id);
525 } else if (pkt_data->interface_ref.intf_type == BCMOLT_INTERFACE_TYPE_NNI ) {
Girish Gowdra1935e6a2020-10-31 21:48:22 -0700526 OPENOLT_LOG(INFO, openolt_log_id, "packet indication, ingress intf_type %s, ingress intf_id %d, gem_port %d \n",
527 pkt_ind->intf_type().c_str(), pkt_ind->intf_id(), pkt_data->svc_port_id);
Jason Huang09b73ea2020-01-08 17:52:05 +0800528 }
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000529 }
530 }
531 }
Craig Lutgen88a22ad2018-10-04 12:30:46 -0500532
Shad Ansari5fe93682018-04-26 05:24:19 +0000533 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000534 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000535}
536
Girish Gowdra96461052019-11-22 20:13:59 +0530537static void ItuPonAllocConfigCompletedInd(bcmolt_devid olt, bcmolt_msg *msg) {
538
539 switch (msg->obj_type) {
540 case BCMOLT_OBJ_ID_ITUPON_ALLOC:
541 switch (msg->subgroup) {
542 case BCMOLT_ITUPON_ALLOC_AUTO_SUBGROUP_CONFIGURATION_COMPLETED:
543 {
544 bcmolt_itupon_alloc_configuration_completed *pkt =
545 (bcmolt_itupon_alloc_configuration_completed*)msg;
546 bcmolt_itupon_alloc_configuration_completed_data *pkt_data =
547 &((bcmolt_itupon_alloc_configuration_completed*)msg)->data;
548
549 alloc_cfg_compltd_key key((uint32_t)pkt->key.pon_ni, (uint32_t) pkt->key.alloc_id);
550 alloc_cfg_complete_result res;
551 res.pon_intf_id = pkt->key.pon_ni;
552 res.alloc_id = pkt->key.alloc_id;
553
554 pkt_data->status == BCMOLT_RESULT_SUCCESS ? res.status = ALLOC_CFG_STATUS_SUCCESS: res.status = ALLOC_CFG_STATUS_FAIL;
555 switch (pkt_data->new_state) {
556 case BCMOLT_ACTIVATION_STATE_NOT_CONFIGURED:
557 res.state = ALLOC_OBJECT_STATE_NOT_CONFIGURED;
558 break;
559 case BCMOLT_ACTIVATION_STATE_INACTIVE:
560 res.state = ALLOC_OBJECT_STATE_INACTIVE;
561 break;
562 case BCMOLT_ACTIVATION_STATE_PROCESSING:
563 res.state = ALLOC_OBJECT_STATE_PROCESSING;
564 break;
565 case BCMOLT_ACTIVATION_STATE_ACTIVE:
566 res.state = ALLOC_OBJECT_STATE_ACTIVE;
567 break;
568 default:
569 OPENOLT_LOG(ERROR, openolt_log_id, "invalid itu pon alloc activation new_state, pon_intf %u, alloc_id %u, new_state %d\n",
570 pkt->key.pon_ni, pkt->key.alloc_id, pkt_data->new_state);
571 res.state = ALLOC_OBJECT_STATE_NOT_CONFIGURED;
572 }
573 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",
574 pkt->key.pon_ni, pkt->key.alloc_id, pkt_data->status, pkt_data->new_state);
575
576 bcmos_fastlock_lock(&alloc_cfg_wait_lock);
577 // Push the result from BAL to queue
578 std::map<alloc_cfg_compltd_key, Queue<alloc_cfg_complete_result> *>::iterator it = alloc_cfg_compltd_map.find(key);
579 if (it == alloc_cfg_compltd_map.end()) {
580 // could be case of spurious aysnc response, OR, the application timed-out waiting for response and cleared the key.
581 bcmolt_msg_free(msg);
582 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);
583 bcmos_fastlock_unlock(&alloc_cfg_wait_lock, 0);
584 return;
585 }
586 if (it->second) {
587 // Push the result
588 it->second->push(res);
589 }
590 bcmos_fastlock_unlock(&alloc_cfg_wait_lock, 0);
591 }
592 }
593 }
594
595 bcmolt_msg_free(msg);
596}
597
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000598static void FlowOperIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000599 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000600 OPENOLT_LOG(DEBUG, openolt_log_id, "flow oper state indication\n");
601 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000602}
603
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000604static void FlowIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000605 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000606 OPENOLT_LOG(DEBUG, openolt_log_id, "flow indication\n");
607 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000608}
609
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000610static void TmQIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000611 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000612 OPENOLT_LOG(DEBUG, openolt_log_id, "traffic mgmt queue indication\n");
613 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000614}
615
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000616static void TmSchedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000617 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000618 OPENOLT_LOG(DEBUG, openolt_log_id, "traffic mgmt sheduler indication\n");
619 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000620}
621
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000622static void McastGroupIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Shad Ansari01b0e652018-04-05 21:02:53 +0000623 openolt::Indication ind;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000624 OPENOLT_LOG(DEBUG, openolt_log_id, "mcast group indication\n");
625 bcmolt_msg_free(msg);
Shad Ansari01b0e652018-04-05 21:02:53 +0000626}
627
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000628static void OnuStartupFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400629 openolt::Indication ind;
630 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
631 openolt::OnuStartupFailureIndication* sufi_ind = new openolt::OnuStartupFailureIndication;
632
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000633 switch (msg->obj_type) {
634 case BCMOLT_OBJ_ID_ONU:
635 switch (msg->subgroup) {
636 case BCMOLT_ONU_AUTO_SUBGROUP_SUFI:
637 {
638 bcmolt_onu_key *key = &((bcmolt_onu_sufi*)msg)->key;
639 bcmolt_onu_sufi_data *data = &((bcmolt_onu_sufi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400640
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000641 OPENOLT_LOG(WARNING, openolt_log_id, "onu startup failure indication, intf_id %d, onu_id %d, alarm %d\n",
642 key->pon_ni, key->onu_id, data->alarm_status);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400643
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000644 sufi_ind->set_intf_id(key->pon_ni);
645 sufi_ind->set_onu_id(key->onu_id);
646 sufi_ind->set_status(alarm_status_to_string(data->alarm_status));
647 alarm_ind->set_allocated_onu_startup_fail_ind(sufi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400648
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000649 ind.set_allocated_alarm_ind(alarm_ind);
650 }
651 }
652 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400653
654 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000655 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400656}
657
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000658static void OnuSignalDegradeIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400659 openolt::Indication ind;
660 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
661 openolt::OnuSignalDegradeIndication* sdi_ind = new openolt::OnuSignalDegradeIndication;
662
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000663 switch (msg->obj_type) {
664 case BCMOLT_OBJ_ID_ONU:
665 switch (msg->subgroup) {
666 case BCMOLT_ONU_AUTO_SUBGROUP_SDI:
667 {
668 bcmolt_onu_key *key = &((bcmolt_onu_sdi*)msg)->key;
669 bcmolt_onu_sdi_data *data = &((bcmolt_onu_sdi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400670
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000671 OPENOLT_LOG(WARNING, openolt_log_id, "onu signal degrade indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
672 key->pon_ni, key->onu_id, data->alarm_status, data->ber);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400673
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000674 sdi_ind->set_intf_id(key->pon_ni);
675 sdi_ind->set_onu_id(key->onu_id);
676 sdi_ind->set_status(alarm_status_to_string(data->alarm_status));
677 sdi_ind->set_inverse_bit_error_rate(data->ber);
678 alarm_ind->set_allocated_onu_signal_degrade_ind(sdi_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 OnuDriftOfWindowIndication(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::OnuDriftOfWindowIndication* dowi_ind = new openolt::OnuDriftOfWindowIndication;
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_DOWI:
698 {
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530699 bcmolt_onu_key *key = &((bcmolt_onu_dowi*)msg)->key;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000700 bcmolt_onu_dowi_data *data = &((bcmolt_onu_dowi*)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 drift of window indication, intf_id %d, onu_id %d, alarm %d, drift %d, new_eqd %d\n",
703 key->pon_ni, key->onu_id, data->alarm_status, data->drift_value, data->new_eqd);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400704
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000705 dowi_ind->set_intf_id(key->pon_ni);
706 dowi_ind->set_onu_id(key->onu_id);
707 dowi_ind->set_status(alarm_status_to_string(data->alarm_status));
708 dowi_ind->set_drift(data->drift_value);
709 dowi_ind->set_new_eqd(data->new_eqd);
710 alarm_ind->set_allocated_onu_drift_of_window_ind(dowi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400711
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000712 ind.set_allocated_alarm_ind(alarm_ind);
713 }
714 }
715 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400716
717 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000718 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400719}
720
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000721static void OnuLossOfOmciChannelIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400722 openolt::Indication ind;
723 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
724 openolt::OnuLossOfOmciChannelIndication* looci_ind = new openolt::OnuLossOfOmciChannelIndication;
725
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000726 switch (msg->obj_type) {
727 case BCMOLT_OBJ_ID_ONU:
728 switch (msg->subgroup) {
729 case BCMOLT_ONU_AUTO_SUBGROUP_LOOCI:
730 {
731 bcmolt_onu_key *key = &((bcmolt_onu_looci*)msg)->key;
732 bcmolt_onu_looci_data *data = &((bcmolt_onu_looci*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400733
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000734 OPENOLT_LOG(WARNING, openolt_log_id, "onu loss of OMCI channel indication, intf_id %d, onu_id %d, alarm %d\n",
735 key->pon_ni, key->onu_id, data->alarm_status);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400736
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000737 looci_ind->set_intf_id(key->pon_ni);
738 looci_ind->set_onu_id(key->onu_id);
739 looci_ind->set_status(alarm_status_to_string(data->alarm_status));
740 alarm_ind->set_allocated_onu_loss_omci_ind(looci_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
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000751static void OnuSignalsFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400752 openolt::Indication ind;
753 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
754 openolt::OnuSignalsFailureIndication* sfi_ind = new openolt::OnuSignalsFailureIndication;
755
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000756 switch (msg->obj_type) {
757 case BCMOLT_OBJ_ID_ONU:
758 switch (msg->subgroup) {
759 case BCMOLT_ONU_AUTO_SUBGROUP_SFI:
760 {
761 bcmolt_onu_key *key = &((bcmolt_onu_sfi*)msg)->key;
762 bcmolt_onu_sfi_data *data = &((bcmolt_onu_sfi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400763
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000764 OPENOLT_LOG(WARNING, openolt_log_id, "onu signals failure indication, intf_id %d, onu_id %d, alarm %d, BER %d\n",
765 key->pon_ni, key->onu_id, data->alarm_status, data->ber);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400766
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000767 sfi_ind->set_intf_id(key->pon_ni);
768 sfi_ind->set_onu_id(key->onu_id);
769 sfi_ind->set_status(alarm_status_to_string(data->alarm_status));
770 sfi_ind->set_inverse_bit_error_rate(data->ber);
771 alarm_ind->set_allocated_onu_signals_fail_ind(sfi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400772
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000773 ind.set_allocated_alarm_ind(alarm_ind);
774 }
775 }
776 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400777
778 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000779 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400780}
781
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000782static void OnuTransmissionInterferenceWarningIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400783 openolt::Indication ind;
784 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
785 openolt::OnuTransmissionInterferenceWarning* tiwi_ind = new openolt::OnuTransmissionInterferenceWarning;
786
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000787 switch (msg->obj_type) {
788 case BCMOLT_OBJ_ID_ONU:
789 switch (msg->subgroup) {
790 case BCMOLT_ONU_AUTO_SUBGROUP_TIWI:
791 {
792 bcmolt_onu_key *key = &((bcmolt_onu_tiwi*)msg)->key;
793 bcmolt_onu_tiwi_data *data = &((bcmolt_onu_tiwi*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400794
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000795 OPENOLT_LOG(WARNING, openolt_log_id, "onu transmission interference warning indication, intf_id %d, onu_id %d, alarm %d, drift %d\n",
796 key->pon_ni, key->onu_id, data->alarm_status, data->drift_value);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400797
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000798 tiwi_ind->set_intf_id(key->pon_ni);
799 tiwi_ind->set_onu_id(key->onu_id);
800 tiwi_ind->set_status(alarm_status_to_string(data->alarm_status));
801 tiwi_ind->set_drift(data->drift_value);
802 alarm_ind->set_allocated_onu_tiwi_ind(tiwi_ind);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400803
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000804 ind.set_allocated_alarm_ind(alarm_ind);
805 }
806 }
807 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400808
809 oltIndQ.push(ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +0000810 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400811}
812
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530813static void OnuActivationCompletedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -0400814 openolt::Indication ind;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530815 openolt::OnuIndication* onu_ind = new openolt::OnuIndication;
816
817 switch (msg->obj_type) {
818 case BCMOLT_OBJ_ID_ONU:
819 switch (msg->subgroup) {
820 case BCMOLT_ONU_AUTO_SUBGROUP_ONU_ACTIVATION_COMPLETED:
821 {
822 bcmolt_onu_key *key = &((bcmolt_onu_onu_activation_completed*)msg)->key;
823 bcmolt_onu_onu_activation_completed_data*data = &((bcmolt_onu_onu_activation_completed*)msg)->data;
824
825 onu_ind->set_intf_id(key->pon_ni);
826 onu_ind->set_onu_id(key->onu_id);
827 if (ONU_ACTIVATION_COMPLETED_SUCCESS(data->status))
828 onu_ind->set_oper_state("up");
829 if (ONU_ACTIVATION_COMPLETED_FAIL(data->status))
830 onu_ind->set_oper_state("down");
kesavand88fdddd2020-09-04 12:06:34 +0530831 switch (data->fail_reason) {
832 case BCMOLT_ACTIVATION_FAIL_REASON_RANGING:
833 onu_ind->set_fail_reason(openolt::OnuIndication_ActivationFailReason_ONU_ACTIVATION_FAIL_REASON_RANGING);
834 break;
835 case BCMOLT_ACTIVATION_FAIL_REASON_PASSWORD_AUTHENTICATION:
836 onu_ind->set_fail_reason(openolt::OnuIndication_ActivationFailReason_ONU_ACTIVATION_FAIL_REASON_PASSWORD_AUTHENTICATION);
837 break;
838 case BCMOLT_ACTIVATION_FAIL_REASON_LOS:
839 onu_ind->set_fail_reason(openolt::OnuIndication_ActivationFailReason_ONU_ACTIVATION_FAIL_REASON_LOS);
840 break;
841 case BCMOLT_ACTIVATION_FAIL_REASON_ONU_ALARM:
842 onu_ind->set_fail_reason(openolt::OnuIndication_ActivationFailReason_ONU_ACTIVATION_FAIL_ONU_ALARM);
843 break;
844 case BCMOLT_ACTIVATION_FAIL_REASON_SWITCH_OVER:
845 onu_ind->set_fail_reason(openolt::OnuIndication_ActivationFailReason_ONU_ACTIVATION_FAIL_SWITCH_OVER);
846 break;
847 default:
848 onu_ind->set_fail_reason(openolt::OnuIndication_ActivationFailReason_ONU_ACTIVATION_FAIL_REASON_NONE);
849 }
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530850 // Setting the admin_state state field based on a valid onu_id does not make any sense.
851 // The adapter too does not seem to interpret this seriously.
852 // Legacy code, lets keep this as is for now.
853 (key->onu_id)?onu_ind->set_admin_state("up"):onu_ind->set_admin_state("down");
854 ind.set_allocated_onu_ind(onu_ind);
855 OPENOLT_LOG(INFO, openolt_log_id, "onu indication, pon_ni %d, onu_id %d, onu_state %s, onu_admin %s\n",
856 key->pon_ni, key->onu_id, (data->status==BCMOLT_RESULT_SUCCESS)?"up":"down",
857 (key->onu_id)?"up":"down");
858 }
859 }
860 }
861
862 oltIndQ.push(ind);
863 bcmolt_msg_free(msg);
864}
865
Jason Huang93430532020-02-04 17:16:02 +0800866static void OnuLossOfKeySyncFailureIndication(bcmolt_devid olt, bcmolt_msg *msg) {
867 openolt::Indication ind;
868 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
869 openolt::OnuLossOfKeySyncFailureIndication* loss_of_sync_fail_ind = new openolt::OnuLossOfKeySyncFailureIndication;
870
871 switch (msg->obj_type) {
872 case BCMOLT_OBJ_ID_ONU:
873 switch (msg->subgroup) {
874 case BCMOLT_ONU_AUTO_SUBGROUP_LOKI:
875 {
876 bcmolt_onu_key *key = &((bcmolt_onu_loki*)msg)->key;
877 bcmolt_onu_loki_data *data = &((bcmolt_onu_loki*)msg)->data;
878
879 OPENOLT_LOG(INFO, openolt_log_id, "Got onu loss of key sync, intf_id %d, onu_id %d, alarm_status %d\n",
880 key->pon_ni, key->onu_id, data->alarm_status);
881
882 loss_of_sync_fail_ind->set_intf_id(key->pon_ni);
883 loss_of_sync_fail_ind->set_onu_id(key->onu_id);
884 loss_of_sync_fail_ind->set_status(alarm_status_to_string(data->alarm_status));
885 alarm_ind->set_allocated_onu_loss_of_sync_fail_ind(loss_of_sync_fail_ind);
886
887 ind.set_allocated_alarm_ind(alarm_ind);
888 }
889 }
890 }
891
892 oltIndQ.push(ind);
893 bcmolt_msg_free(msg);
894}
895
Jason Huang5d9ab1a2020-04-15 16:53:49 +0800896static void OnuItuPonStatsAlarmRaisedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
Jason Huang93430532020-02-04 17:16:02 +0800897 openolt::Indication ind;
898 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
899 openolt::OnuItuPonStatsIndication* onu_itu_pon_stats_ind = new openolt::OnuItuPonStatsIndication;
900
901 switch (msg->obj_type) {
902 case BCMOLT_OBJ_ID_ONU:
903 switch (msg->subgroup) {
Jason Huang5d9ab1a2020-04-15 16:53:49 +0800904 case BCMOLT_ONU_AUTO_SUBGROUP_ITU_PON_STATS_ALARM_RAISED:
Jason Huang93430532020-02-04 17:16:02 +0800905 {
Jason Huang5d9ab1a2020-04-15 16:53:49 +0800906 bcmolt_onu_key *onu_key = &((bcmolt_onu_itu_pon_stats_alarm_raised*)msg)->key;
907 bcmolt_onu_itu_pon_stats_alarm_raised_data *data = &((bcmolt_onu_itu_pon_stats_alarm_raised*)msg)->data;
Jason Huang93430532020-02-04 17:16:02 +0800908
Jason Huang5d9ab1a2020-04-15 16:53:49 +0800909 if (_BCMOLT_FIELD_MASK_BIT_IS_SET(data->presence_mask, BCMOLT_ONU_ITU_PON_STATS_ALARM_RAISED_DATA_ID_STAT)) {
910 switch (data->stat)
911 {
912 case BCMOLT_ONU_ITU_PON_STATS_DATA_ID_RDI_ERRORS:
913 uint64_t rdi_errors;
914 openolt::RdiErrorIndication* rdi_err_ind = new openolt::RdiErrorIndication;
915 rdi_errors = get_pon_stats_alarms_data(onu_key->pon_ni, onu_key->onu_id, data->stat);
916 onu_itu_pon_stats_ind->set_intf_id(onu_key->pon_ni);
917 onu_itu_pon_stats_ind->set_onu_id(onu_key->onu_id);
918 rdi_err_ind->set_rdi_error_count(rdi_errors);
919 rdi_err_ind->set_status("on");
920 onu_itu_pon_stats_ind->set_allocated_rdi_error_ind(rdi_err_ind);
921 OPENOLT_LOG(INFO, openolt_log_id, "Got onu raised alarm indication, intf_id %d, onu_id %d, \
922 rdi_errors %"PRIu64"\n", onu_key->pon_ni, onu_key->onu_id, rdi_errors);
923 alarm_ind->set_allocated_onu_itu_pon_stats_ind(onu_itu_pon_stats_ind);
924 break;
925 /* It is a further requirement
926 case BCMOLT_ONU_ITU_PON_STATS_DATA_ID_BIP_ERRORS:
927 uint64_t bip_errors;
928 bip_errors = get_pon_stats_alarms_data(onu_key->pon_ni, onu_key->onu_id, data->stat);
929 onu_itu_pon_stats_ind->set_intf_id(onu_key->pon_ni);
930 onu_itu_pon_stats_ind->set_onu_id(onu_key->onu_id);
931 OPENOLT_LOG(INFO, openolt_log_id, "Got onu raised alarm indication, intf_id %d, onu_id %d, \
932 bip_errors %"PRIu64"\n", onu_key->pon_ni, onu_key->onu_id, bip_errors);
933 alarm_ind->set_allocated_onu_itu_pon_stats_ind(onu_itu_pon_stats_ind);
934 break;
935 */
936 }
937 ind.set_allocated_alarm_ind(alarm_ind);
938 }
Jason Huang93430532020-02-04 17:16:02 +0800939 }
940 }
941 }
942
943 oltIndQ.push(ind);
944 bcmolt_msg_free(msg);
945}
946
Jason Huang5d9ab1a2020-04-15 16:53:49 +0800947static void OnuItuPonStatsAlarmClearedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
948 openolt::Indication ind;
949 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
950 openolt::OnuItuPonStatsIndication* onu_itu_pon_stats_ind = new openolt::OnuItuPonStatsIndication;
Jason Huang93430532020-02-04 17:16:02 +0800951
Jason Huang5d9ab1a2020-04-15 16:53:49 +0800952 switch (msg->obj_type) {
953 case BCMOLT_OBJ_ID_ONU:
954 switch (msg->subgroup) {
955 case BCMOLT_ONU_AUTO_SUBGROUP_ITU_PON_STATS_ALARM_CLEARED:
956 {
957 bcmolt_onu_key *onu_key = &((bcmolt_onu_itu_pon_stats_alarm_cleared*)msg)->key;
958 bcmolt_onu_itu_pon_stats_alarm_cleared_data *data = &((bcmolt_onu_itu_pon_stats_alarm_cleared*)msg)->data;
959
960 if (_BCMOLT_FIELD_MASK_BIT_IS_SET(data->presence_mask, BCMOLT_ONU_ITU_PON_STATS_ALARM_CLEARED_DATA_ID_STAT)) {
961 switch (data->stat)
962 {
963 case BCMOLT_ONU_ITU_PON_STATS_DATA_ID_RDI_ERRORS:
964 uint64_t rdi_errors;
965 openolt::RdiErrorIndication* rdi_err_ind = new openolt::RdiErrorIndication;
966
967 rdi_errors = get_pon_stats_alarms_data(onu_key->pon_ni, onu_key->onu_id, data->stat);
968 onu_itu_pon_stats_ind->set_intf_id(onu_key->pon_ni);
969 onu_itu_pon_stats_ind->set_onu_id(onu_key->onu_id);
970 rdi_err_ind->set_rdi_error_count(rdi_errors);
971 rdi_err_ind->set_status("off");
972 onu_itu_pon_stats_ind->set_allocated_rdi_error_ind(rdi_err_ind);
973 OPENOLT_LOG(INFO, openolt_log_id, "Got onu cleared alarm indication, intf_id %d, onu_id %d, \
974 rdi_errors %"PRIu64"\n", onu_key->pon_ni, onu_key->onu_id, rdi_errors);
975 alarm_ind->set_allocated_onu_itu_pon_stats_ind(onu_itu_pon_stats_ind);
976 break;
977 /* It is a further requirement
978 case BCMOLT_ONU_ITU_PON_STATS_DATA_ID_BIP_ERRORS:
979 uint64_t bip_errors;
980 bip_errors = get_pon_stats_alarms_data(onu_key->pon_ni, onu_key->onu_id, data->stat);
981 onu_itu_pon_stats_ind->set_intf_id(onu_key->pon_ni);
982 onu_itu_pon_stats_ind->set_onu_id(onu_key->onu_id);
983 onu_itu_pon_stats_ind->set_bip_errors(bip_errors);
984 OPENOLT_LOG(INFO, openolt_log_id, "Got onu cleared alarm indication, intf_id %d, onu_id %d, \
985 bip_errors %"PRIu64"\n", onu_key->pon_ni, onu_key->onu_id, bip_errors);
986 alarm_ind->set_allocated_onu_itu_pon_stats_ind(onu_itu_pon_stats_ind);
987 break;
988 */
989 }
990 ind.set_allocated_alarm_ind(alarm_ind);
991 }
992 }
993 }
994 }
995
996 oltIndQ.push(ind);
997 bcmolt_msg_free(msg);
998}
Girish Gowdra0c0b5c02019-12-16 14:11:08 +0530999
1000static void OnuDeactivationCompletedIndication(bcmolt_devid olt, bcmolt_msg *msg) {
1001 openolt::Indication ind;
1002
1003 openolt::Indication onu_ind;
1004 openolt::OnuIndication* onu_ind_data = new openolt::OnuIndication;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001005
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001006 switch (msg->obj_type) {
1007 case BCMOLT_OBJ_ID_ONU:
1008 switch (msg->subgroup) {
1009 case BCMOLT_ONU_AUTO_SUBGROUP_ONU_DEACTIVATION_COMPLETED:
1010 {
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301011 bcmolt_onu_key *key = &((bcmolt_onu_onu_deactivation_completed*)msg)->key;
1012 bcmolt_onu_onu_deactivation_completed_data *data =
1013 &((bcmolt_onu_onu_deactivation_completed*)msg)->data;
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001014
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301015 OPENOLT_LOG(INFO, openolt_log_id, "Got onu deactivation, intf_id %d, onu_id %d, fail_reason %d, result_status %s\n",
1016 key->pon_ni, key->onu_id, data->fail_reason, bcmolt_result_to_string(data->status).c_str());
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001017
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301018 onu_ind_data->set_intf_id(key->pon_ni);
1019 onu_ind_data->set_onu_id(key->onu_id);
1020 onu_ind_data->set_oper_state("down");
1021 onu_ind_data->set_admin_state("down");
1022 onu_ind.set_allocated_onu_ind(onu_ind_data);
Girish Gowdra7a79dae2020-02-10 18:22:11 +05301023
1024 onu_deact_compltd_key onu_key((uint32_t)key->pon_ni, (uint32_t) key->onu_id);
1025 onu_deactivate_complete_result res;
1026 res.pon_intf_id = (uint32_t)key->pon_ni;
1027 res.onu_id = (uint32_t) key->onu_id;
1028 res.result = data->status;
1029 res.reason = data->fail_reason;
1030
1031 OPENOLT_LOG(INFO, openolt_log_id, "received onu deactivate result, pon intf %u, onu_id %u, status %u, reason %u\n",
1032 key->pon_ni, key->onu_id, data->status, data->fail_reason);
1033
1034 bcmos_fastlock_lock(&onu_deactivate_wait_lock);
1035 // Push the result from BAL to queue
1036 std::map<onu_deact_compltd_key, Queue<onu_deactivate_complete_result> *>::iterator it = onu_deact_compltd_map.find(onu_key);
1037 if (it == onu_deact_compltd_map.end()) {
1038 // could be case of spurious aysnc response, OR, the application timed-out waiting for response and cleared the key.
Girish Gowdra6675fa02020-03-03 20:27:50 -08001039 // OR most importantly, could be a case of ONU going down (reboot, PON cable plug-out) where
1040 // BCMOLT_ONU_AUTO_SUBGROUP_ONU_DEACTIVATION_COMPLETED is received without any explicit request from the application.
1041 // The application has to take care handling spurious indications.
Thiyagarajan Subramaniad463232020-02-28 19:10:43 +05301042 OPENOLT_LOG(WARNING, openolt_log_id, "onu deactivate completed key not found for pon intf %u, onu_id %u\n",
Girish Gowdra7a79dae2020-02-10 18:22:11 +05301043 key->pon_ni, key->onu_id);
Girish Gowdra7a79dae2020-02-10 18:22:11 +05301044 }
Girish Gowdra6675fa02020-03-03 20:27:50 -08001045 else if (it->second) {
Girish Gowdra7a79dae2020-02-10 18:22:11 +05301046 // Push the result
1047 it->second->push(res);
1048 }
1049 bcmos_fastlock_unlock(&onu_deactivate_wait_lock, 0);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001050 }
1051 }
1052 }
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001053
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301054 oltIndQ.push(onu_ind);
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001055 bcmolt_msg_free(msg);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001056}
1057
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001058/* removed by BAL v3.0
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001059bcmos_errno OnuProcessingErrorIndication(bcmbal_obj *obj) {
1060 openolt::Indication ind;
1061 openolt::AlarmIndication* alarm_ind = new openolt::AlarmIndication;
1062 openolt::OnuProcessingErrorIndication* onu_proc_error_ind = new openolt::OnuProcessingErrorIndication;
1063
1064 bcmbal_subscriber_terminal_key *key =
1065 &(((bcmbal_subscriber_terminal_processing_error*)obj)->key);
1066
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001067 OPENOLT_LOG(WARNING, openolt_log_id, "onu processing error indication, intf_id %d, onu_id %d\n",
Nicolas Palpacuer967438f2018-09-07 14:41:54 -04001068 key->intf_id, key->sub_term_id);
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001069
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001070 onu_proc_error_ind->set_intf_id(key->intf_id);
1071 onu_proc_error_ind->set_onu_id(key->sub_term_id);
1072
1073 alarm_ind->set_allocated_onu_processing_error_ind(onu_proc_error_ind);
1074 ind.set_allocated_alarm_ind(alarm_ind);
1075
1076 oltIndQ.push(ind);
1077 return BCM_ERR_OK;
1078}
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001079*/
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001080
Burak Gurdagc78b9e12019-11-29 11:14:51 +00001081static void GroupIndication(bcmolt_devid olt, bcmolt_msg *msg) {
1082
1083 switch (msg->obj_type) {
1084 case BCMOLT_OBJ_ID_GROUP:
1085 switch (msg->subgroup) {
1086 case BCMOLT_GROUP_AUTO_SUBGROUP_COMPLETE_MEMBERS_UPDATE:
1087 {
1088 bcmolt_group_key *key = &((bcmolt_group_complete_members_update*)msg)->key;
1089 bcmolt_group_complete_members_update_data *data =
1090 &((bcmolt_group_complete_members_update*)msg)->data;
1091
1092 if (data->result == BCMOLT_RESULT_SUCCESS) {
1093 OPENOLT_LOG(INFO, openolt_log_id, "Complete members update indication for group %d (successful)\n", key->id);
1094 } else {
1095 OPENOLT_LOG(ERROR, openolt_log_id, "Complete members update indication for group %d (failed with reason %d)\n", key->id, data->fail_reason);
1096 }
1097 }
1098 }
1099 }
1100 bcmolt_msg_free(msg);
1101}
1102
Shad Ansari01b0e652018-04-05 21:02:53 +00001103Status SubscribeIndication() {
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001104 bcmolt_rx_cfg rx_cfg = {};
1105 bcmos_errno rc;
Shad Ansari01b0e652018-04-05 21:02:53 +00001106
1107 if (subscribed) {
1108 return Status::OK;
1109 }
1110
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001111 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
1112 rx_cfg.rx_cb = OltOperIndication;
1113 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1114 rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_complete;
1115 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1116 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301117 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001118 "Olt connection complete state indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001119
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001120 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
1121 rx_cfg.rx_cb = OltOperIndication;
1122 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1123 rx_cfg.subgroup = bcmolt_device_auto_subgroup_disconnection_complete;
1124 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1125 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301126 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001127 "Olt disconnection complete state indication subscribe failed");
1128
1129 rx_cfg.obj_type = BCMOLT_OBJ_ID_DEVICE;
1130 rx_cfg.rx_cb = OltOperIndication;
1131 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1132 rx_cfg.subgroup = bcmolt_device_auto_subgroup_connection_failure;
1133 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1134 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301135 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001136 "Olt connection failure state indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001137
1138 /* Interface LOS indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001139 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
1140 rx_cfg.rx_cb = LosIndication;
1141 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1142 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_los;
1143 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1144 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +00001145 return Status(grpc::StatusCode::INTERNAL, "LOS indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001146
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001147 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
1148 rx_cfg.rx_cb = IfOperIndication;
1149 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1150 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_state_change_completed;
1151 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1152 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301153 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001154 "PON Interface operations state change indication subscribe failed");
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -07001155
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001156 rx_cfg.obj_type = BCMOLT_OBJ_ID_NNI_INTERFACE;
1157 rx_cfg.rx_cb = IfOperIndication;
1158 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1159 rx_cfg.subgroup = bcmolt_nni_interface_auto_subgroup_state_change;
1160 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1161 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301162 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001163 "NNI Interface operations state change indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001164
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001165 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1166 rx_cfg.rx_cb = OnuAlarmIndication;
1167 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1168 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_xgpon_alarm;
1169 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1170 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +00001171 return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001172
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001173 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1174 rx_cfg.rx_cb = OnuAlarmIndication;
1175 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1176 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_gpon_alarm;
1177 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1178 if(rc != BCM_ERR_OK)
1179 return Status(grpc::StatusCode::INTERNAL, "onu alarm indication subscribe failed");
1180
1181 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1182 rx_cfg.rx_cb = OnuDyingGaspIndication;
1183 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1184 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dgi;
1185 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1186 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +00001187 return Status(grpc::StatusCode::INTERNAL, "onu dying-gasp indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001188
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001189 rx_cfg.obj_type = BCMOLT_OBJ_ID_PON_INTERFACE;
1190 rx_cfg.rx_cb = OnuDiscoveryIndication;
1191 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1192 rx_cfg.subgroup = bcmolt_pon_interface_auto_subgroup_onu_discovered;
1193 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1194 if(rc != BCM_ERR_OK)
Shad Ansari01b0e652018-04-05 21:02:53 +00001195 return Status(grpc::StatusCode::INTERNAL, "onu discovery indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001196
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001197 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001198 rx_cfg.rx_cb = OnuStartupFailureIndication;
1199 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1200 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sufi;
1201 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1202 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301203 return Status(grpc::StatusCode::INTERNAL,
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001204 "onu startup failure indication subscribe failed");
Shad Ansari01b0e652018-04-05 21:02:53 +00001205
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001206 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1207 rx_cfg.rx_cb = OnuSignalDegradeIndication;
1208 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1209 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sdi;
1210 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1211 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001212 return Status(grpc::StatusCode::INTERNAL, "onu sdi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001213
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001214 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1215 rx_cfg.rx_cb = OnuDriftOfWindowIndication;
1216 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1217 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_dowi;
1218 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1219 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001220 return Status(grpc::StatusCode::INTERNAL, "onu dowi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001221
1222 /* LOOCI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001223 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1224 rx_cfg.rx_cb = OnuLossOfOmciChannelIndication;
1225 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1226 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_looci;
1227 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1228 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001229 return Status(grpc::StatusCode::INTERNAL, "onu looci indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001230
1231 /* SFI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001232 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1233 rx_cfg.rx_cb = OnuSignalsFailureIndication;
1234 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1235 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_sfi;
1236 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1237 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001238 return Status(grpc::StatusCode::INTERNAL, "onu sfi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001239
1240 /* TIWI indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001241 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1242 rx_cfg.rx_cb = OnuTransmissionInterferenceWarningIndication;
1243 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1244 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_tiwi;
1245 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1246 if(rc != BCM_ERR_OK)
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001247 return Status(grpc::StatusCode::INTERNAL, "onu tiwi indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001248
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301249 /* ONU Activation Completed Indication */
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001250 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301251 rx_cfg.rx_cb = OnuActivationCompletedIndication;
1252 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1253 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_onu_activation_completed;
1254 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1255 if(rc != BCM_ERR_OK)
1256 return Status(grpc::StatusCode::INTERNAL,
1257 "onu activation completed indication subscribe failed");
1258
1259 /* ONU Deactivation Completed Indication */
1260 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1261 rx_cfg.rx_cb = OnuDeactivationCompletedIndication;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001262 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1263 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_onu_deactivation_completed;
1264 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1265 if(rc != BCM_ERR_OK)
Girish Gowdra0c0b5c02019-12-16 14:11:08 +05301266 return Status(grpc::StatusCode::INTERNAL,
1267 "onu deactivation indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001268
Jason Huang93430532020-02-04 17:16:02 +08001269 /* ONU Loss of Key Sync Indiction */
1270 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1271 rx_cfg.rx_cb = OnuLossOfKeySyncFailureIndication;
1272 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1273 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_loki;
1274 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1275 if(rc != BCM_ERR_OK)
1276 return Status(grpc::StatusCode::INTERNAL, "onu loss of key sync indication subscribe failed");
1277
Jason Huang5d9ab1a2020-04-15 16:53:49 +08001278 /* ONU ITU-PON Raised Stats Indiction */
Jason Huang93430532020-02-04 17:16:02 +08001279 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
Jason Huang5d9ab1a2020-04-15 16:53:49 +08001280 rx_cfg.rx_cb = OnuItuPonStatsAlarmRaisedIndication;
Jason Huang93430532020-02-04 17:16:02 +08001281 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
Jason Huang5d9ab1a2020-04-15 16:53:49 +08001282 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_itu_pon_stats_alarm_raised;
Jason Huang93430532020-02-04 17:16:02 +08001283 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1284 if(rc != BCM_ERR_OK)
Jason Huang5d9ab1a2020-04-15 16:53:49 +08001285 return Status(grpc::StatusCode::INTERNAL, "onu itu-pon raised stats indication subscribe failed");
1286
1287 /* ONU ITU-PON Cleared Stats Indiction */
1288 rx_cfg.obj_type = BCMOLT_OBJ_ID_ONU;
1289 rx_cfg.rx_cb = OnuItuPonStatsAlarmClearedIndication;
1290 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1291 rx_cfg.subgroup = bcmolt_onu_auto_subgroup_itu_pon_stats_alarm_cleared;
1292 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1293 if(rc != BCM_ERR_OK)
1294 return Status(grpc::StatusCode::INTERNAL, "onu itu-pon cleared stats indication subscribe failed");
Jason Huang93430532020-02-04 17:16:02 +08001295
Jason Huang09b73ea2020-01-08 17:52:05 +08001296 /* Packet-In by Access_Control */
1297 rx_cfg.obj_type = BCMOLT_OBJ_ID_ACCESS_CONTROL;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001298 rx_cfg.rx_cb = PacketIndication;
1299 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
Jason Huang09b73ea2020-01-08 17:52:05 +08001300 rx_cfg.subgroup = bcmolt_access_control_auto_subgroup_receive_eth_packet;
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001301 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1302 if(rc != BCM_ERR_OK)
1303 return Status(grpc::StatusCode::INTERNAL, "Packet indication subscribe failed");
Nicolas Palpacuerde4325b2018-07-03 11:18:42 -04001304
Girish Gowdra252f4972020-09-07 21:24:01 -07001305#ifndef SCALE_AND_PERF
Girish Gowdra96461052019-11-22 20:13:59 +05301306 rx_cfg.obj_type = BCMOLT_OBJ_ID_ITUPON_ALLOC;
1307 rx_cfg.rx_cb = ItuPonAllocConfigCompletedInd;
1308 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1309 rx_cfg.subgroup = bcmolt_itupon_alloc_auto_subgroup_configuration_completed;
1310 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1311 if(rc != BCM_ERR_OK)
Jason Huang93430532020-02-04 17:16:02 +08001312 return Status(grpc::StatusCode::INTERNAL, "ITU PON Alloc Configuration Complete Indication subscribe failed");
Girish Gowdra252f4972020-09-07 21:24:01 -07001313#endif
Girish Gowdra96461052019-11-22 20:13:59 +05301314
Burak Gurdagc78b9e12019-11-29 11:14:51 +00001315 rx_cfg.obj_type = BCMOLT_OBJ_ID_GROUP;
1316 rx_cfg.rx_cb = GroupIndication;
1317 rx_cfg.flags = BCMOLT_AUTO_FLAGS_NONE;
1318 rx_cfg.subgroup = bcmolt_group_auto_subgroup_complete_members_update;
1319 rc = bcmolt_ind_subscribe(current_device, &rx_cfg);
1320 if(rc != BCM_ERR_OK)
1321 return Status(grpc::StatusCode::INTERNAL, "Complete members update indication subscribe failed");
1322
Shad Ansari01b0e652018-04-05 21:02:53 +00001323 subscribed = true;
1324
1325 return Status::OK;
1326}